diff --git a/README.md b/README.md index 82a89284..edf44877 100644 --- a/README.md +++ b/README.md @@ -4,13 +4,16 @@ The mlrun/demos repository provides full end-to-end ML demo use-case application #### In This Document -- [Overview](#overview) -- [Prerequisites](#prerequisites) -- [scikit-learn demo](#demo-sklearn-pipe) — full AutoML pipeline (Iris data set) -- [Horovod demo](#demo-horovd-image-classification) — image classification with distributed training -- [Faces demo](#demo-face-recognition)— real-time image recognition, classification, and tracking with deep learning -- [Churn demo](#demo-churn)— real-time customer-churn prediction (Telco Customer Churn data set) -- [NetOps demo](#demo-netops)— predictive network operations/telemetry +- [MLRun Demos](#mlrun-demos) + - [In This Document](#in-this-document) + - [Overview](#overview) + - [General ML Workflow](#general-ml-workflow) + - [Prerequisites](#prerequisites) + - [scikit-learn Demo: Full AutoML Pipeline](#scikit-learn-demo-full-automl-pipeline) + - [Horovod Demo: Image Classification with Distributed Training](#horovod-demo-image-classification-with-distributed-training) + - [Faces Demo: Real-Time Image Recognition with Deep Learning](#faces-demo-real-time-image-recognition-with-deep-learning) + - [Churn Demo: Real-Time Customer-Churn Prediction](#churn-demo-real-time-customer-churn-prediction) + - [NetOps Demo: Predictive Network Operations/Telemetry](#netops-demo-predictive-network-operationstelemetry) ## Overview @@ -43,10 +46,10 @@ To run the MLRun demos, first do the following: See the instructions in the [MLRun documentation](https://github.com/mlrun/mlrun/blob/master/README.md#installation). - Ensure that your cluster has a shared file or object storage for storing the data (artifacts). - + ## scikit-learn Demo: Full AutoML Pipeline -The [**sklearn-pipe**](./sklearn-pipe/README.md) demo demonstrates how to build a full end-to-end automated-ML (AutoML) pipeline using [scikit-learn](https://scikit-learn.org) and the UCI [Iris data set](http://archive.ics.uci.edu/ml/datasets/iris). +The [**scikit-learn-pipeline**](./scikit-learn-pipeline/README.md) demo demonstrates how to build a full end-to-end automated-ML (AutoML) pipeline using [scikit-learn](https://scikit-learn.org) and the UCI [Iris data set](http://archive.ics.uci.edu/ml/datasets/iris). The combined CI/data/ML pipeline includes the following steps: @@ -57,21 +60,21 @@ The combined CI/data/ML pipeline includes the following steps: - Deploy the model as a real-time serverless function. - Test the serverless function's REST API with a test data set. -To run the demo, download the [**sklearn-project.ipynb**](./sklearn-pipe/sklearn-project.ipynb) notebook into an empty directory and execute the cells sequentially. +To run the demo, download the [**sklearn-project.ipynb**](./scikit-learn-pipeline/sklearn-project.ipynb) notebook into an empty directory and execute the cells sequentially.


- + **Pipeline Output** -The output plots can be viewed as static HTML files in the [sklearn-pipe/plots](sklearn-pipe/plots) directory. +The output plots can be viewed as static HTML files in the [scikit-learn-pipeline/plots](scikit-learn-pipeline/plots) directory.


## Horovod Demo: Image Classification with Distributed Training -The [**horovod-pipe**](horovod-pipe/README.md) demo demonstrates an end-to-end image-classification solution using [TensorFlow](https://www.tensorflow.org/) (versions 1 or 2), [Keras](https://keras.io/), [Horovod](https://eng.uber.com/horovod/), and [Nuclio](https://nuclio.io/). +The [**image-classification-with-distributed-training**](image-classification-with-distributed-training/README.md) demo demonstrates an end-to-end image-classification solution using [TensorFlow](https://www.tensorflow.org/) (versions 1 or 2), [Keras](https://keras.io/), [Horovod](https://eng.uber.com/horovod/), and [Nuclio](https://nuclio.io/). The demo consists of four MLRun and Nuclio functions and a Kubeflow Pipelines orchestration: @@ -93,7 +96,7 @@ The demo consists of four MLRun and Nuclio functions and a Kubeflow Pipelines or ## Faces Demo: Real-Time Image Recognition with Deep Learning -The [**faces**](faces/README.md) demo demonstrates real-time capture, recognition, and classification of face images over a video stream, as well as location tracking of identities. +The [**faces**](realtime-face-recognition/README.md) demo demonstrates real-time capture, recognition, and classification of face images over a video stream, as well as location tracking of identities. This comprehensive demonstration includes multiple components: @@ -106,12 +109,12 @@ This comprehensive demonstration includes multiple components: **Pipeline Output** -


+


## Churn Demo: Real-Time Customer-Churn Prediction -The [**chrun**](./churn/README.md) demo demonstrates analyses of customer-churn data using the Kaggle [Telco Customer Churn data set](https://www.kaggle.com/blastchar/telco-customer-churn), model training and validation using [XGBoost](https://xgboost.readthedocs.io), and model serving using real-time Nuclio serverless functions. +The [**chrun**](./customer-churn-prediction/README.md) demo demonstrates analyses of customer-churn data using the Kaggle [Telco Customer Churn data set](https://www.kaggle.com/blastchar/telco-customer-churn), model training and validation using [XGBoost](https://xgboost.readthedocs.io), and model serving using real-time Nuclio serverless functions. The demo consists of few MLRun and Nuclio functions and a Kubeflow Pipelines orchestration: @@ -125,14 +128,14 @@ The demo consists of few MLRun and Nuclio functions and a Kubeflow Pipelines orc **Pipeline Output** -


+


## NetOps Demo: Predictive Network Operations/Telemetry -The [NetOps demo](https://github.com/mlrun/demo-network-operations/blob/master/README.md) demonstrates ingestion of telemetry/Network Operations (NetOps) data from a simulator or live stream, feature exploration, data preparation (aggregation), model training, and automated model deployment. +The [NetOps demo](network-operations/README.md) demonstrates ingestion of telemetry/Network Operations (NetOps) data from a simulator or live stream, feature exploration, data preparation (aggregation), model training, and automated model deployment. The demo is maintained in a separate Git repository and also demonstrates how to manage a project life cycle using Git. diff --git a/churn/LICENSE b/customer-churn-prediction/LICENSE similarity index 100% rename from churn/LICENSE rename to customer-churn-prediction/LICENSE diff --git a/churn/README.md b/customer-churn-prediction/README.md similarity index 100% rename from churn/README.md rename to customer-churn-prediction/README.md diff --git a/churn/WA_Fn-UseC_-Telco-Customer-Churn.csv b/customer-churn-prediction/WA_Fn-UseC_-Telco-Customer-Churn.csv similarity index 100% rename from churn/WA_Fn-UseC_-Telco-Customer-Churn.csv rename to customer-churn-prediction/WA_Fn-UseC_-Telco-Customer-Churn.csv diff --git a/churn/assets/pipeline-3.png b/customer-churn-prediction/assets/pipeline-3.png similarity index 100% rename from churn/assets/pipeline-3.png rename to customer-churn-prediction/assets/pipeline-3.png diff --git a/churn/churn-project.ipynb b/customer-churn-prediction/churn-project.ipynb similarity index 96% rename from churn/churn-project.ipynb rename to customer-churn-prediction/churn-project.ipynb index 69f95927..12d4b6ca 100644 --- a/churn/churn-project.ipynb +++ b/customer-churn-prediction/churn-project.ipynb @@ -228,7 +228,7 @@ "metadata": {}, "outputs": [], "source": [ - "DATA_URL = \"https://raw.githubusercontent.com/mlrun/demos/master/churn/WA_Fn-UseC_-Telco-Customer-Churn.csv\"\n", + "DATA_URL = \"https://raw.githubusercontent.com/mlrun/demos/master/customer-churn-prediction/WA_Fn-UseC_-Telco-Customer-Churn.csv\"\n", "\n", "churn_proj.log_artifact(\"raw-data\", target_path=DATA_URL)" ] @@ -438,7 +438,7 @@ "
src
\n", "
file_ext=csv
apply_tenure_map=False
\n", " \n", - "
preproc-column_map.json
preproc-numcat_map.json
cleaned-data
encoded-data
model
\n", + "
preproc-column_map.json
preproc-numcat_map.json
cleaned-data
encoded-data
model
\n", " \n", " \n", "\n", @@ -616,7 +616,7 @@ " for f in functions.values():\n", " f.apply(mount_v3io())\n", " \n", - " functions[\"server\"].set_env(\"INFERENCE_STREAM\", \"users/admin/artifacts/churn/model_stream\")\n", + " functions[\"server\"].set_env(\"INFERENCE_STREAM\", \"users/admin/artifacts/customer-churn-prediction/model_stream\")\n", "\n", " \n", "@dsl.pipeline(\n", @@ -696,14 +696,14 @@ " test_xgb = funcs[\"xgbtest\"].as_step(\n", " name=\"test-classifier\",\n", " params={\"label_column\": \"labels\",\n", - " \"plots_dest\" : \"churn/test/xgb\"},\n", + " \"plots_dest\" : \"customer-churn-prediction/test/xgb\"},\n", " inputs={\"models_path\" : xgb.outputs[\"model\"],\n", " \"test_set\" : xgb.outputs[\"test_set\"]})\n", "\n", " test_cox = funcs[\"coxtest\"].as_step(\n", " name=\"test-regressor\",\n", " params={\"label_column\": \"labels\",\n", - " \"plots_dest\" : \"churn/test/cox\"},\n", + " \"plots_dest\" : \"customer-churn-prediction/test/cox\"},\n", " inputs={\"models_path\" : cox.outputs[\"cx-model\"],\n", " \"test_set\" : cox.outputs[\"tenured-test-set\"]})\n", "\n", diff --git a/churn/project/project.yaml b/customer-churn-prediction/project/project.yaml similarity index 97% rename from churn/project/project.yaml rename to customer-churn-prediction/project/project.yaml index 35788a86..55971a67 100644 --- a/churn/project/project.yaml +++ b/customer-churn-prediction/project/project.yaml @@ -88,7 +88,7 @@ workflows: \ False\n\n# init functions is used to configure function resources and local\ \ settings\ndef init_functions(functions: dict, project=None, secrets=None):\n\ \ for f in functions.values():\n f.apply(mount_v3io())\n \n \ - \ functions[\"server\"].set_env(\"INFERENCE_STREAM\", \"users/admin/artifacts/churn/model_stream\"\ + \ functions[\"server\"].set_env(\"INFERENCE_STREAM\", \"users/admin/artifacts/customer-churn-prediction/model_stream\"\ )\n\n \n@dsl.pipeline(\n name=\"Demo training pipeline\",\n description=\"\ Shows how to use mlrun.\"\n)\ndef kfpipeline():\n \n # encode the data\n\ \ clean = funcs[\"clean-data\"].as_step(\n name=\"clean-data\",\n \ @@ -133,11 +133,11 @@ workflows: csv\"\n },\n inputs={\"dataset\" : clean.outputs[\"encoded-data\"\ ]},\n outputs=[\"cx-model\", \"tenured-test-set\"])\n\n test_xgb = funcs[\"\ xgbtest\"].as_step(\n name=\"test-classifier\",\n params={\"label_column\"\ - : \"labels\",\n \"plots_dest\" : \"churn/test/xgb\"},\n \ + : \"labels\",\n \"plots_dest\" : \"customer-churn-prediction/test/xgb\"},\n \ \ inputs={\"models_path\" : xgb.outputs[\"model\"],\n \"test_set\"\ \ : xgb.outputs[\"test_set\"]})\n\n test_cox = funcs[\"coxtest\"].as_step(\n\ \ name=\"test-regressor\",\n params={\"label_column\": \"labels\"\ - ,\n \"plots_dest\" : \"churn/test/cox\"},\n inputs={\"\ + ,\n \"plots_dest\" : \"customer-churn-prediction/test/cox\"},\n inputs={\"\ models_path\" : cox.outputs[\"cx-model\"],\n \"test_set\" :\ \ cox.outputs[\"tenured-test-set\"]})\n\n # deploy our model as a serverless\ \ function\n deploy_xgb = funcs[\"server\"].deploy_step(\n models={\"\ @@ -147,5 +147,5 @@ artifacts: kind: '' iter: 0 tree: latest - target_path: https://raw.githubusercontent.com/mlrun/demos/master/churn/WA_Fn-UseC_-Telco-Customer-Churn.csv + target_path: https://raw.githubusercontent.com/mlrun/demos/master/customer-churn-prediction/WA_Fn-UseC_-Telco-Customer-Churn.csv db_key: raw-data diff --git a/churn/project/workflow.py b/customer-churn-prediction/project/workflow.py similarity index 95% rename from churn/project/workflow.py rename to customer-churn-prediction/project/workflow.py index bb86274f..55cf7041 100644 --- a/churn/project/workflow.py +++ b/customer-churn-prediction/project/workflow.py @@ -10,7 +10,7 @@ def init_functions(functions: dict, project=None, secrets=None): for f in functions.values(): f.apply(mount_v3io()) - functions["server"].set_env("INFERENCE_STREAM", "users/admin/artifacts/churn/model_stream") + functions["server"].set_env("INFERENCE_STREAM", "users/admin/artifacts/customer-churn-prediction/model_stream") @dsl.pipeline( @@ -90,14 +90,14 @@ def kfpipeline(): test_xgb = funcs["xgbtest"].as_step( name="test-classifier", params={"label_column": "labels", - "plots_dest" : "churn/test/xgb"}, + "plots_dest" : "customer-churn-prediction/test/xgb"}, inputs={"models_path" : xgb.outputs["model"], "test_set" : xgb.outputs["test_set"]}) test_cox = funcs["coxtest"].as_step( name="test-regressor", params={"label_column": "labels", - "plots_dest" : "churn/test/cox"}, + "plots_dest" : "customer-churn-prediction/test/cox"}, inputs={"models_path" : cox.outputs["cx-model"], "test_set" : cox.outputs["tenured-test-set"]}) diff --git a/horovod-pipe/README.md b/image-classification-with-distributed-training/README.md similarity index 85% rename from horovod-pipe/README.md rename to image-classification-with-distributed-training/README.md index 14181779..38e7473c 100644 --- a/horovod-pipe/README.md +++ b/image-classification-with-distributed-training/README.md @@ -12,10 +12,10 @@ The demo consists of four MLRun and Nuclio functions and a Kubeflow Pipelines or > **Note:** The demo supports both TensorFlow versions 1 and 2. > There's one shared notebook and two code files — one for each TensorFlow version. -


+


## Pipeline Output -


+


diff --git a/horovod-pipe/horovod-project.ipynb b/image-classification-with-distributed-training/horovod-project.ipynb similarity index 99% rename from horovod-pipe/horovod-project.ipynb rename to image-classification-with-distributed-training/horovod-project.ipynb index f8e9a905..746dfbdd 100644 --- a/horovod-pipe/horovod-project.ipynb +++ b/image-classification-with-distributed-training/horovod-project.ipynb @@ -196,7 +196,7 @@ { "data": { "text/plain": [ - "('/User/mlrun-demos/demos/horovod-pipe/src-tfv2', '/User/artifacts/images')" + "('/User/mlrun-demos/demos/image-classification-with-distributed-training/src-tfv2', '/User/artifacts/images')" ] }, "execution_count": 8, @@ -1134,7 +1134,7 @@ " completed\n", " train\n", "
loss=0.4674202799797058
accuracy=0.808407723903656
\n", - "
summary.html
model-weights
model
\n", + "
summary.html
model-weights
model
\n", " \n", " \n", "
...b815a5f6
\n", @@ -1142,7 +1142,7 @@ " completed\n", " label\n", " \n", - "
categories_map
file_categories
\n", + "
categories_map
file_categories
\n", " \n", " \n", "
...f57d1e3f
\n", @@ -1150,7 +1150,7 @@ " completed\n", " download\n", " \n", - "
content
\n", + "
content
\n", " \n", " \n", "" diff --git a/horovod-pipe/project.yaml b/image-classification-with-distributed-training/project.yaml similarity index 98% rename from horovod-pipe/project.yaml rename to image-classification-with-distributed-training/project.yaml index 86c46959..9b50a0b0 100644 --- a/horovod-pipe/project.yaml +++ b/image-classification-with-distributed-training/project.yaml @@ -73,7 +73,7 @@ functions: project: cat-and-dog-servers categories: [] spec: - command: /User/mlrun-demos/demos/horovod-pipe/src-tfv2/horovod-training.py + command: /User/mlrun-demos/demos/image-classification-with-distributed-training/src-tfv2/horovod-training.py args: [] image: mlrun/ml-models-gpu env: [] diff --git a/horovod-pipe/src-tfv1/horovod-training.py b/image-classification-with-distributed-training/src-tfv1/horovod-training.py similarity index 100% rename from horovod-pipe/src-tfv1/horovod-training.py rename to image-classification-with-distributed-training/src-tfv1/horovod-training.py diff --git a/horovod-pipe/src-tfv2/horovod-training.py b/image-classification-with-distributed-training/src-tfv2/horovod-training.py similarity index 100% rename from horovod-pipe/src-tfv2/horovod-training.py rename to image-classification-with-distributed-training/src-tfv2/horovod-training.py diff --git a/horovod-pipe/workflow.py b/image-classification-with-distributed-training/workflow.py similarity index 100% rename from horovod-pipe/workflow.py rename to image-classification-with-distributed-training/workflow.py diff --git a/network-operations/.gitignore b/network-operations/.gitignore new file mode 100644 index 00000000..b6e47617 --- /dev/null +++ b/network-operations/.gitignore @@ -0,0 +1,129 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +pip-wheel-metadata/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py,cover +.hypothesis/ +.pytest_cache/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 +db.sqlite3-journal + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +.python-version + +# pipenv +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. +# However, in case of collaboration, if having platform-specific dependencies or dependencies +# having no cross-platform support, pipenv may install dependencies that don't work, or not +# install all needed dependencies. +#Pipfile.lock + +# PEP 582; used by e.g. github.com/David-OConnor/pyflow +__pypackages__/ + +# Celery stuff +celerybeat-schedule +celerybeat.pid + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ diff --git a/network-operations/LICENSE b/network-operations/LICENSE new file mode 100644 index 00000000..261eeb9e --- /dev/null +++ b/network-operations/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/network-operations/README.md b/network-operations/README.md new file mode 100644 index 00000000..97927656 --- /dev/null +++ b/network-operations/README.md @@ -0,0 +1,97 @@ +# Network Operations - MLRun MLOps Demo +--- +This demo shows a full ML Pipeline for error prediction based on network device telematry using MLRun. + +In this demo we show: +- Managing an MLRun Project +- Using github as a source for functions to use in our pipeline workflows +- Use MLRun logging to track results and artifacts +- Running a Kubeflow Pipeline using MLRun +- Deploy live endpoints +- Deploy Concept Drift + +The demo applications are tested on the Iguazio's Data Science PaaS, and use Iguazio's shared data fabric (v3io), and can be modified to work with any shared file storage by replacing the `apply(v3io_mount())` calls with other KubeFlow volume modifiers (e.g. `apply(mlrun.platforms.mount_pvc())`) . You can request a free trial of Iguazio PaaS. + +## How the system is built +This demo aims to show an example of a production system deployed fully by an automated pipeline. + +There are three main parts to this demo. +- Training pipeline to create new model. +- Streaming pipeline endpoints for production +- Concept Drift detection to monitor the model's performance + +You can select which parts of the workflow to run via the `deploy_streaming` flag for the Production deployment and the `deploy_concept_drift` for the drift detection flags. + +For retraining purposes and scheduling of workflows we can use the [project runner]() function from the marketplace to create an HTTP endpoint (or any other nuclio trigger) that can run a workflow based on an event. + +### Training pipeline +The training pipeline includes the following process (based on our [functions market](https://github.com/mlrun/functions)): +**[Exploratory Data Analysis](https://github.com/mlrun/functions/blob/master/describe/describe.ipynb):** Provides histogram maps, class imbalance, correlation matrix, etc... +**[Aggregation](https://github.com/mlrun/functions/tree/master/aggregate/aggregate.ipynb):** run different rolling aggregations on top of the dataset to create temporal features. +**[Feature Selection](https://github.com/mlrun/functions/blob/master/feature_selection/feature_selection.ipynb):** Select the best features to use using a vote based on multiple metrics and basic model estimators. +**[Training](https://github.com/mlrun/functions/blob/master/sklearn_classifier/sklearn_classifier.ipynb):** Train multiple SKLearn API based models (Using automated hyperparams search) and select the best one according to a selected metric. +**[Test](https://github.com/mlrun/functions/blob/master/test_classifier/test_classifier.ipynb):** Using a dedicated Test dataset, provide performence benchmarks for the model. + +### Production deployment pipeline +In the production deployment phase we aim to deploy a full system to ingest new data, create the necessary features and provide predictions. +We are using the Nuclio serverless runtime to create the live endpoints, which for ease-of-use as open source will work by passing parquets at a set directory between each other. (Using a streaming engine would require many dependencies which will make open-source deployment difficult) + +Our production process is made of a setup stage to start the [generator](notebooks/generator.ipynb) to mimic incoming data and the [(done automatically in the pipeline). +The netops pipeline itself is made from the following components: +**[Preprocessor](notebooks/preprocessor.ipynb):** Taking the selected features and creating them upon ingestion. +**[Model Server](notebooks/server.ipynb):** Deploy the model to a live endpoint. +**[Model Server Tester](https://github.com/mlrun/functions/blob/master/model_server_tester/model_server_tester.ipynb):** Verify our model endpoint is live and provides good predictions. +**[Labeled stream creator](notebooks/labeled_stream_creator.ipynb):** Join the incoming labels and predictions to a single source to assess the model's performence. + +### Concept drift deployment pipeline +The concept drift pipeline is made of two main components: +**[Concept Drift Detectors](https://github.com/mlrun/functions/blob/master/concept_drift/concept_drift.ipynb):** Using streaming drift detectors like DDM and PH. +we use a `job` to initialise the models with a base labeled dataset and produce a live Nuclio endpoint to enlist to the labeled stream. +**[Drift Magnitude](https://github.com/mlrun/functions/blob/e236a6b006e9e5a095a93c4822e422ebce5ac2dc/virtual_drift/virtual_drift.ipynb):** Taking batches of data via parquet, we apply multiple drift magnitude metrics like TVD, Helinger and KL Divergence to assess the drift between a base dataset and the latest data. + +


+ +## Running the demo +--- +Pre-requisites: +* A Kubernetes cluster with pre-installed KubeFlow, Nuclio. +* MLRun Service and UI installed, [see MLRun readme](https://github.com/mlrun/mlrun). + +1. Clone this repo to your own Git.
+2. in a client or notebook properly configured with MLRun and KubeFlow run: + +`mlrun project demos/network-operations/ -u git://github.com//demos/network-operations.git` + +3. Run the [Generator](notebooks/generator.ipynb) notebook to create the metrics dataset. + +4. Open the [project notebook](project.ipynb) and follow the instructions to develop and run an automated ML Pipeline. + +> Note: alternatively you can run the `main` pipeline from the CLI and specify artifacts path using: + +`mlrun project demos/network-operations/ -r main -p "/User/kfp/{{workflow.uid}}/"` + + +## Files +### Notebooks +* [Generator notebook (Generate metrics dataset)](notebooks/generator.ipynb) +* [Preprocessor notebook](notebooks/preprocessor.ipynb) +* [Model server notebook](notebooks/server.ipynb) +* [Labeled stream creator](notebooks/labeled_stream_creator.ipynb) +* [Project creation and testing notebook](project.ipynb) + +### Project Files +* [Project spec (functions, workflows, etc)](project.yaml) + +### Workflow code +* [Workflow code (init + dsl)](src/workflow.py) + + +## Pipeline + +


+ + + + + + diff --git a/network-operations/docs/run-pipeline.png b/network-operations/docs/run-pipeline.png new file mode 100644 index 00000000..1b12eb9d Binary files /dev/null and b/network-operations/docs/run-pipeline.png differ diff --git a/network-operations/docs/workflow.png b/network-operations/docs/workflow.png new file mode 100644 index 00000000..cca24fb2 Binary files /dev/null and b/network-operations/docs/workflow.png differ diff --git a/network-operations/notebooks/generator.ipynb b/network-operations/notebooks/generator.ipynb new file mode 100644 index 00000000..02680c16 --- /dev/null +++ b/network-operations/notebooks/generator.ipynb @@ -0,0 +1,592 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Nuclio - Generator function" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Environment" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "# nuclio: ignore\n", + "import nuclio" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "%nuclio: setting kind to 'nuclio'\n" + ] + } + ], + "source": [ + "%nuclio config kind = \"nuclio\"" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Configurations" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Setups\n", + "> Please make sure all the packages in the following `nuclio cmd` cell are installed, if not, please remove the `-c` flag and run the cell" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "%%nuclio cmd -c\n", + " \n", + "# Utils\n", + "pip install pyarrow\n", + "pip install pandas\n", + "pip install pytimeparse\n", + "\n", + "# Igz DB\n", + "pip install v3io_frames --upgrade\n", + "\n", + "# Function\n", + "pip install -i https://test.pypi.org/simple/ v3io-generator\n", + "pip install faker" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Show location to copy to `%nuclio env` configuration" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "%nuclio: setting 'SAVE_DEPLOYMENT' environment variable\n", + "%nuclio: setting 'DEPLOYMENT_TABLE' environment variable\n", + "%nuclio: setting 'METRICS_CONFIGURATION_FILEPATH' environment variable\n", + "%nuclio: setting 'SAVE_TO' environment variable\n", + "%nuclio: setting '# SAVE_TO' environment variable\n", + "%nuclio: setting 'SECS_TO_GENERATE' environment variable\n", + "%nuclio: setting 'SAVE_TO_TSDB' environment variable\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "%nuclio: cannot find \"=\" in line\n", + "%nuclio: cannot find \"=\" in line\n", + "%nuclio: cannot find \"=\" in line\n", + "%nuclio: cannot find \"=\" in line\n" + ] + } + ], + "source": [ + "%%nuclio env\n", + "\n", + "# Deployment\n", + "SAVE_DEPLOYMENT=1\n", + "DEPLOYMENT_TABLE=devices\n", + "\n", + "# Metrics\n", + "METRICS_CONFIGURATION_FILEPATH = /User/demos/network-operations/src/metric_configurations.yaml\n", + "\n", + "# Parquet\n", + "SAVE_TO=/User/demos/network-operations/streaming/metrics\n", + "# SAVE_TO=metrics\n", + "\n", + "SECS_TO_GENERATE=3600\n", + "\n", + "# Save as\n", + "SAVE_TO_TSDB=0" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Function" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "# nuclio: start-code" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "import os\n", + "import time\n", + "import yaml\n", + "import pandas as pd\n", + "import itertools\n", + "import datetime\n", + "\n", + "# DB Connection\n", + "import v3io_frames as v3f\n", + "\n", + "# Data generator\n", + "from v3io_generator import metrics_generator, deployment_generator" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Helper functions" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "def _create_deployment():\n", + " print('creating deployment')\n", + " # Create meta-data factory\n", + " dep_gen = deployment_generator.deployment_generator()\n", + " faker=dep_gen.get_faker()\n", + "\n", + " # Design meta-data\n", + " dep_gen.add_level(name='company',number=2,level_type=faker.company)\n", + " dep_gen.add_level('data_center',number=2,level_type=faker.street_name)\n", + " dep_gen.add_level('device',number=2,level_type=faker.msisdn)\n", + "\n", + " # Create meta-data\n", + " deployment_df = dep_gen.generate_deployment()\n", + " return deployment_df" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [], + "source": [ + "def _is_deployment_exist(path):\n", + " # Checking shared path for the devices table\n", + " return os.path.exists(f'/v3io/bigdata/{path}')" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [], + "source": [ + "def _get_deployment_from_kv(client, path):\n", + " print(f'Retrieving deployment from {path}')\n", + " context.logger.debug(f'Retrieving deployment from {path}')\n", + " # Read the devices table from our KV store\n", + " deployment_df = client.read(backend='kv', table=path)\n", + " \n", + " # Reset index to column\n", + " deployment_df.index.name = 'device'\n", + " deployment_df = deployment_df.reset_index()\n", + " return deployment_df" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [], + "source": [ + "def _save_deployment_to_kv(path, df, client=v3f.Client('framesd:8081')):\n", + " # Save deployment to our KV store\n", + " client.write(backend='kv', table='netops_devices',dfs=df, index_cols=['device'])" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [], + "source": [ + "def get_or_create_deployment(path, save_to_cloud=False, client=None):\n", + " if client and _is_deployment_exist(path):\n", + " # Get deployment from KV\n", + " deployment_df = _get_deployment_from_kv(client, path)\n", + " else:\n", + " # Create deployment\n", + " deployment_df = _create_deployment()\n", + " \n", + " if client and save_to_cloud:\n", + " _save_deployment_to_kv(path, deployment_df, client)\n", + "\n", + " return deployment_df" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [], + "source": [ + "def set_indexes(df):\n", + " df = df.set_index(['timestamp', 'company', 'data_center', 'device'])\n", + " return df" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [], + "source": [ + "def save_metrics_to_tsdb(context, metrics: pd.DataFrame):\n", + " print('Saving metrics to TSDB')\n", + " \n", + " context.v3f.write('tsdb', context.metrics_table, metrics)" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [], + "source": [ + "def save_metrics_to_parquet(context, metrics):\n", + " print('Saving metrics to Parquet')\n", + " df = pd.concat(itertools.chain(metrics))\n", + " \n", + " # Need to fix timestamps from ns to ms if we write to parquet\n", + " df = df.reset_index()\n", + " df['timestamp'] = df.loc[:, 'timestamp'].astype('datetime64[ms]')\n", + " \n", + " # Fix indexes\n", + " df = set_indexes(df)\n", + " \n", + " # Save parquet\n", + " first_timestamp = df.index[0][0].strftime('%Y%m%dT%H%M%S')\n", + " last_timestamp = df.index[-1][0].strftime('%Y%m%dT%H%M%S')\n", + " filename = first_timestamp + '-' + last_timestamp + '.parquet'\n", + " print(filename)\n", + " filepath = os.path.join(context.metrics_table, filename)\n", + " print(filepath)\n", + " with open(filepath, 'wb+') as f:\n", + " df.to_parquet(f)" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [], + "source": [ + "def is_deployment_initialized(context):\n", + " return hasattr(context, 'metric_generator')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Init context" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [], + "source": [ + "def init_context(context):\n", + " \n", + " # Get saving configuration\n", + " save_to_tsdb = (int(os.getenv('SAVE_TO_TSDB', 1)) == 1)\n", + " \n", + " # Set metrics table\n", + " metrics_table = os.getenv('SAVE_TO', 'netops_metrics')\n", + " setattr(context, 'metrics_table', metrics_table) \n", + "\n", + " # TSDB Based demo\n", + " if save_to_tsdb:\n", + " context.logger.debug('Saving to TSDB')\n", + " # Create our DB client\n", + " client = v3f.Client(address='framesd:8081', container='bigdata')\n", + " \n", + " # Create TSDB table if needed\n", + " client.create('tsdb', metrics_table, rate='1/s', if_exists=1)\n", + " \n", + " # Set saving function\n", + " setattr(context, 'write', save_metrics_to_tsdb)\n", + " \n", + " # Parquet based demo\n", + " else:\n", + " context.logger.debug('Saving to Parquet')\n", + " # Set empty client for verification purposes\n", + " client = None\n", + " \n", + " # Create saving directory\n", + " filepath = os.path.join(metrics_table)\n", + " if not os.path.exists(filepath):\n", + " os.makedirs(filepath)\n", + " \n", + " # Set saving function\n", + " setattr(context, 'write', save_metrics_to_parquet)\n", + " \n", + " \n", + " # Set batch endtime\n", + " secs_to_generate = os.getenv('SECS_TO_GENERATE', 10)\n", + " setattr(context, 'secs_to_generate', secs_to_generate)\n", + " \n", + " \n", + " \n", + " # Generate or create deployment\n", + " deployment_df = get_or_create_deployment(os.environ['DEPLOYMENT_TABLE'], os.environ['SAVE_DEPLOYMENT'], client)\n", + " # Convert to log_dataset\n", + " \n", + " deployment_df['cpu_utilization'] = 70\n", + " deployment_df['latency'] = 0\n", + " deployment_df['packet_loss'] = 0\n", + " deployment_df['throughput'] = 290\n", + " deployment_df.head()\n", + " \n", + " # Get metrics configuration\n", + " # Move to get-object from store:///\n", + " with open(os.getenv('METRICS_CONFIGURATION_FILEPATH', '/configurations/metrics_configuration.yaml'), 'r') as f:\n", + " metrics_configuration = yaml.load(f)\n", + " \n", + " # Create metrics generator\n", + " initial_timestamp = int(os.getenv('initial_timestamp', (datetime.datetime.now()-datetime.timedelta(days=1)).timestamp()))\n", + " met_gen = metrics_generator.Generator_df(metrics_configuration, \n", + " user_hierarchy=deployment_df, \n", + " initial_timestamp=initial_timestamp)\n", + " setattr(context, 'metric_generator', met_gen)\n", + " \n", + " # Set client\n", + " setattr(context, 'v3f', client)\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Handler" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [], + "source": [ + "def handler(context, event):\n", + " \n", + " # Create metrics generator based on YAML configuration and deployment\n", + " metrics = context.metric_generator.generate_range(start_time=datetime.datetime.now(),\n", + " end_time=datetime.datetime.now()+datetime.timedelta(seconds=int(context.secs_to_generate)),\n", + " as_df=True,\n", + " as_iterator=True)\n", + " \n", + " # Save Generated metrics\n", + " context.write(context, metrics)" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [], + "source": [ + "# nuclio: end-code" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Generate data configuration file" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Overwriting ../src/metric_configurations.yaml\n" + ] + } + ], + "source": [ + "%%writefile ../src/metric_configurations.yaml\n", + "errors: {length_in_ticks: 50, rate_in_ticks: 150}\n", + "timestamps: {interval: 5s, stochastic_interval: true}\n", + "metrics:\n", + " cpu_utilization:\n", + " accuracy: 2\n", + " distribution: normal\n", + " distribution_params: {mu: 70, noise: 0, sigma: 10}\n", + " is_threshold_below: true\n", + " past_based_value: false\n", + " produce_max: false\n", + " produce_min: false\n", + " validation:\n", + " distribution: {max: 1, min: -1, validate: false}\n", + " metric: {max: 100, min: 0, validate: true}\n", + " latency:\n", + " accuracy: 2\n", + " distribution: normal\n", + " distribution_params: {mu: 0, noise: 0, sigma: 5}\n", + " is_threshold_below: true\n", + " past_based_value: false\n", + " produce_max: false\n", + " produce_min: false\n", + " validation:\n", + " distribution: {max: 1, min: -1, validate: false}\n", + " metric: {max: 100, min: 0, validate: true}\n", + " packet_loss:\n", + " accuracy: 0\n", + " distribution: normal\n", + " distribution_params: {mu: 0, noise: 0, sigma: 2}\n", + " is_threshold_below: true\n", + " past_based_value: false\n", + " produce_max: false\n", + " produce_min: false\n", + " validation:\n", + " distribution: {max: 1, min: -1, validate: false}\n", + " metric: {max: 50, min: 0, validate: true}\n", + " throughput:\n", + " accuracy: 2\n", + " distribution: normal\n", + " distribution_params: {mu: 250, noise: 0, sigma: 20}\n", + " is_threshold_below: false\n", + " past_based_value: false\n", + " produce_max: false\n", + " produce_min: false\n", + " validation:\n", + " distribution: {max: 1, min: -1, validate: false}\n", + " metric: {max: 300, min: 0, validate: true}" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Generate dataset locally" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# nuclio: ignore\n", + "init_context(context)\n", + "event = nuclio.Event(body='')\n", + "output = handler(context, event)\n", + "output" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Deploy to cluster\n", + "(For streaming demo)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "from mlrun import code_to_function, mount_v3io\n", + "\n", + "fn = code_to_function(name='nuclio-generator',\n", + " kind='nuclio', with_doc=False)\n", + "fn.spec.base_spec['spec']['build']['baseImage'] = 'mlrun/ml-models'\n", + "fn.apply(mount_v3io())\n", + "fn.add_trigger('cron', nuclio.triggers.CronTrigger(interval='1m'))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "fn.save()\n", + "fn.export('../src/generator.yaml')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "fn.deploy()" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.8" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/network-operations/notebooks/labeled_stream_creator.ipynb b/network-operations/notebooks/labeled_stream_creator.ipynb new file mode 100644 index 00000000..cf84dab7 --- /dev/null +++ b/network-operations/notebooks/labeled_stream_creator.ipynb @@ -0,0 +1,772 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Labeled Stream Creator" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [], + "source": [ + "import nuclio" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "%nuclio cmd -c python -m pip install v3io --upgrade" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "%nuclio: setting 'METRICS_TABLE' environment variable\n", + "%nuclio: setting 'PREDICTIONS_TABLE' environment variable\n", + "%nuclio: setting 'OUTPUT_STREAM' environment variable\n", + "%nuclio: setting 'prediction_col' environment variable\n", + "%nuclio: setting 'label_col' environment variable\n", + "%nuclio: setting 'output_stream_shards' environment variable\n" + ] + } + ], + "source": [ + "%%nuclio env\n", + "METRICS_TABLE = /User/demos/network-operations/streaming/metrics\n", + "PREDICTIONS_TABLE = /User/demos/network-operations/streaming/predictions\n", + "OUTPUT_STREAM = /users/admin/demos/network-operations/streaming/labels_stream_v1\n", + "prediction_col = predictions\n", + "label_col = is_error\n", + "output_stream_shards = 1" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Function" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "# nuclio: start-code" + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "metadata": {}, + "outputs": [], + "source": [ + "import os\n", + "import pandas as pd\n", + "import json\n", + "import v3io\n", + "import v3io.dataplane\n", + "import socket" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "def split_path(mntpath=''):\n", + " if mntpath[0] == '/':\n", + " mntpath = mntpath[1:]\n", + " paths = mntpath.split('/')\n", + " container = paths[0]\n", + " subpath = ''\n", + " if len(paths) > 1:\n", + " subpath = mntpath[len(container):]\n", + " return container, subpath" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "def create_stream(context, path, shards=1):\n", + " # create a stream w/8 shards\n", + " container, stream_path = split_path(path)\n", + " context.logger.info(f'Creating stream in Container: {container} & Path {stream_path}')\n", + " response = context.v3io_client.create_stream(container=container,\n", + " path=stream_path, \n", + " shard_count=shards,\n", + " raise_for_status=v3io.dataplane.RaiseForStatus.never)\n", + " response.raise_for_status([409, 204])" + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "metadata": {}, + "outputs": [], + "source": [ + "def push_to_stream(context, stream_path, data):\n", + " def restructure_stream_event(context, event):\n", + " instances = [dict()]\n", + " for key in data.keys():\n", + " if key not in ['when', 'class', 'model', 'worker', 'hostname', context.prediction_col]:\n", + " instances[0].update({key: event.pop(key)})\n", + " event['request'] = {'instances': instances}\n", + " event['resp'] = [int(event.pop(context.prediction_col))]\n", + " return event\n", + " \n", + " records = json.loads(data.to_json(orient='records'))\n", + " records = [{'data': json.dumps(restructure_stream_event(context, record))} for record in records]\n", + " context.logger.info(f'Logging {len(records)} records, Record example: {records[0]}')\n", + " container, stream_path = split_path(stream_path)\n", + " # batch\n", + " step = 10\n", + " for idx in range(0, len(records), step):\n", + " response = context.v3io_client.put_records(container=container,\n", + " path=stream_path, \n", + " records=records[idx:idx+step])" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [], + "source": [ + "def get_data_parquet(table, files_to_select=1):\n", + " mpath = [os.path.join(table, file) for file in os.listdir(table) if file.endswith(('parquet', 'pq'))]\n", + " files_by_updated = sorted(mpath, key=os.path.getmtime, reverse=False)\n", + " context.logger.debug_with('Input', input_files=files_by_updated[:files_to_select])\n", + " dfs = pd.concat([pd.read_parquet(file) for file in files_by_updated[:files_to_select]])\n", + " return dfs" + ] + }, + { + "cell_type": "code", + "execution_count": 38, + "metadata": {}, + "outputs": [], + "source": [ + "def init_context(context):\n", + " setattr(context, 'metrics_table', os.environ['METRICS_TABLE'])\n", + " setattr(context, 'predictions_table', os.environ['PREDICTIONS_TABLE'])\n", + " setattr(context, 'output_stream', os.environ['OUTPUT_STREAM'])\n", + " setattr(context, 'timestamp_col', os.getenv('timestamp_col', 'when'))\n", + " setattr(context, 'orig_timestamp_col', os.getenv('orig_timestamp_col', 'timestamp'))\n", + " \n", + " v3io_client = v3io.dataplane.Client(endpoint='http://v3io-webapi:8081', logger_verbosity='DEBUG', transport_verbosity='DEBUG')\n", + " setattr(context, 'v3io_client', v3io_client)\n", + " if hasattr(context, 'trigger') and context.trigger.kind == 'cron':\n", + " create_stream(context, context.output_stream)\n", + " \n", + " setattr(context, 'label_col', os.environ['label_col'])\n", + " setattr(context, 'prediction_col', os.environ['prediction_col'])" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [], + "source": [ + "def handler(context, event):\n", + " metrics = get_data_parquet(context.metrics_table, 2).loc[:, context.label_col].astype('int')\n", + " metrics.index.names = list([name if name != context.orig_timestamp_col else context.timestamp_col for name in metrics.index.names])\n", + " predictions = get_data_parquet(context.predictions_table, 2)\n", + " context.logger.debug(f'Labeling metrics ({metrics.shape}) and predictions ({predictions.shape})')\n", + " context.logger.debug_with('Indexes', metrics_index=metrics.index.names, predictions_index=predictions.index.names)\n", + " \n", + " full_df = pd.merge(left=predictions, right=metrics, left_on=list(metrics.index.names), left_index=True, right_index=True)\n", + " full_df = full_df.reset_index()\n", + " context.logger.debug(f'Fully labeled batch size is {full_df.shape}')\n", + " context.logger.debug(f'Indexes: {list(full_df.index.names)}')\n", + " context.logger.debug(f'Columns: {full_df.columns}')\n", + " context.logger.debug_with('sample', full_df=full_df.head(1))\n", + " full_df = full_df.loc[:10]\n", + " \n", + " push_to_stream(context, context.output_stream, full_df)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [], + "source": [ + "# nuclio: end-code" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [], + "source": [ + "context.set_logger_level(False)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Test" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "init_context(context)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "event = nuclio.Event(body='')\n", + "out = handler(context, event)\n", + "out" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Stream test" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": {}, + "outputs": [], + "source": [ + "from v3io.dataplane import Client\n", + "from pprint import pprint" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [], + "source": [ + "v3io_client = Client()" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": {}, + "outputs": [], + "source": [ + "# v3io_client.delete_stream(container='users', path='/admin/demos/network-operations/streaming/labeled_stream')" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [], + "source": [ + "def print_stream(path, shard='0', seek_type='EARLIEST', last=100):\n", + " # seek the shard to the first record in it\n", + " container, stream_path = split_path(path)\n", + " shard_path = os.path.join(stream_path, shard)\n", + " response = v3io_client.seek_shard(container=container,\n", + " path=shard_path, \n", + " seek_type=seek_type)\n", + " response.raise_for_status()\n", + "\n", + " # get records, starting from the location we got from seek\n", + " response = v3io_client.get_records(container=container,\n", + " path=shard_path, \n", + " location=response.output.location)\n", + " response.raise_for_status()\n", + " \n", + " models = ['pagehinkley', 'eddm', 'ddm']\n", + " result_record = response.output.records\n", + " records = [json.loads(record.data) for record in result_record[:last]]\n", + " pprint(records)" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[{'class': 'RandomForestClassifier',\n", + " 'hostname': 'jupyter-558bf7fbc8-sq5kd',\n", + " 'model': 'netops_predictor_v1',\n", + " 'request': {'instances': [{'company': 'Wilson_LLC',\n", + " 'cpu_utilization': 66.9391393542,\n", + " 'data_center': 'Zachary_Drives',\n", + " 'device': '6001003522699',\n", + " 'is_error': 0,\n", + " 'latency': 0.5372793066,\n", + " 'packet_loss': 0.0,\n", + " 'throughput': 256.4821896882}]},\n", + " 'resp': [0],\n", + " 'when': 1593499337454,\n", + " 'worker': None},\n", + " {'class': 'RandomForestClassifier',\n", + " 'hostname': 'jupyter-558bf7fbc8-sq5kd',\n", + " 'model': 'netops_predictor_v1',\n", + " 'request': {'instances': [{'company': 'Wilson_LLC',\n", + " 'cpu_utilization': 72.4927066691,\n", + " 'data_center': 'Obrien_Mountain',\n", + " 'device': '0966571261270',\n", + " 'is_error': 0,\n", + " 'latency': 0.0,\n", + " 'packet_loss': 4.961307962,\n", + " 'throughput': 264.1226480676}]},\n", + " 'resp': [0],\n", + " 'when': 1593499337454,\n", + " 'worker': None}]\n" + ] + } + ], + "source": [ + "print_stream(context.output_stream, seek_type='EARLIEST', last=2)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Deploy" + ] + }, + { + "cell_type": "code", + "execution_count": 42, + "metadata": {}, + "outputs": [], + "source": [ + "from mlrun import code_to_function, mount_v3io" + ] + }, + { + "cell_type": "code", + "execution_count": 43, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 43, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "fn = code_to_function('labeled-stream-creator',\n", + " kind='nuclio',\n", + " project='network-operations')\n", + "fn.spec.base_spec['spec']['build']['baseImage'] = 'mlrun/ml-models'\n", + "fn.apply(mount_v3io())\n", + "fn.add_trigger('cron', nuclio.triggers.CronTrigger(interval='1m'))" + ] + }, + { + "cell_type": "code", + "execution_count": 44, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "> 2020-08-11 09:28:55,659 [info] function spec saved to path: ../src/labeled_stream_creator.yaml\n" + ] + }, + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 44, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "fn.save()\n", + "fn.export('../src/labeled_stream_creator.yaml')" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "> 2020-08-10 13:51:08,258 [info] deploy started\n", + "[nuclio] 2020-08-10 13:54:42,507 (info) Build complete\n", + "[nuclio] 2020-08-10 13:54:52,646 (info) Function deploy complete\n", + "[nuclio] 2020-08-10 13:54:52,655 done creating network-operations-labeled-stream-creator, function address: 192.168.224.209:31059\n" + ] + }, + { + "data": { + "text/plain": [ + "'http://192.168.224.209:31059'" + ] + }, + "execution_count": 34, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "fn.deploy(project='network-operations')" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
cpu_utilizationlatencypacket_lossthroughputpredictions
whencompanydata_centerdevicemodelclassworkerhostname
2020-06-30 06:42:17.454Wilson_LLCZachary_Drives6001003522699netops_predictor_v1RandomForestClassifierNaNjupyter-558bf7fbc8-sq5kd66.9391390.5372790.000000256.482190False
Obrien_Mountain0966571261270netops_predictor_v1RandomForestClassifierNaNjupyter-558bf7fbc8-sq5kd72.4927070.0000004.961308264.122648False
8069812479542netops_predictor_v1RandomForestClassifierNaNjupyter-558bf7fbc8-sq5kd69.1168782.6069340.000000263.528599False
Bennett__Delacruz_and_WallsNatasha_Harbors5863502247054netops_predictor_v1RandomForestClassifierNaNjupyter-558bf7fbc8-sq5kd64.9441071.5710460.172451241.149554False
4285071567351netops_predictor_v1RandomForestClassifierNaNjupyter-558bf7fbc8-sq5kd78.6411280.0000000.000000263.688823False
.......................................
2020-06-30 07:42:12.454Wilson_LLCObrien_Mountain8069812479542netops_predictor_v1RandomForestClassifierNaNjupyter-558bf7fbc8-sq5kd59.5744870.0000000.000000269.816306False
Bennett__Delacruz_and_WallsNatasha_Harbors5863502247054netops_predictor_v1RandomForestClassifierNaNjupyter-558bf7fbc8-sq5kd100.000000100.00000050.0000000.000000True
4285071567351netops_predictor_v1RandomForestClassifierNaNjupyter-558bf7fbc8-sq5kd100.000000100.00000050.0000000.000000True
Dominique_Branch4579248894449netops_predictor_v1RandomForestClassifierNaNjupyter-558bf7fbc8-sq5kd69.0530140.0646570.000000255.943689False
7731097392608netops_predictor_v1RandomForestClassifierNaNjupyter-558bf7fbc8-sq5kd69.6299880.0000001.153888238.072156False
\n", + "

5759 rows × 5 columns

\n", + "
" + ], + "text/plain": [ + " cpu_utilization \\\n", + "when company data_center device model class worker hostname \n", + "2020-06-30 06:42:17.454 Wilson_LLC Zachary_Drives 6001003522699 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 66.939139 \n", + " Obrien_Mountain 0966571261270 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 72.492707 \n", + " 8069812479542 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 69.116878 \n", + " Bennett__Delacruz_and_Walls Natasha_Harbors 5863502247054 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 64.944107 \n", + " 4285071567351 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 78.641128 \n", + "... ... \n", + "2020-06-30 07:42:12.454 Wilson_LLC Obrien_Mountain 8069812479542 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 59.574487 \n", + " Bennett__Delacruz_and_Walls Natasha_Harbors 5863502247054 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 100.000000 \n", + " 4285071567351 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 100.000000 \n", + " Dominique_Branch 4579248894449 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 69.053014 \n", + " 7731097392608 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 69.629988 \n", + "\n", + " latency \\\n", + "when company data_center device model class worker hostname \n", + "2020-06-30 06:42:17.454 Wilson_LLC Zachary_Drives 6001003522699 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 0.537279 \n", + " Obrien_Mountain 0966571261270 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 0.000000 \n", + " 8069812479542 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 2.606934 \n", + " Bennett__Delacruz_and_Walls Natasha_Harbors 5863502247054 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 1.571046 \n", + " 4285071567351 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 0.000000 \n", + "... ... \n", + "2020-06-30 07:42:12.454 Wilson_LLC Obrien_Mountain 8069812479542 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 0.000000 \n", + " Bennett__Delacruz_and_Walls Natasha_Harbors 5863502247054 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 100.000000 \n", + " 4285071567351 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 100.000000 \n", + " Dominique_Branch 4579248894449 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 0.064657 \n", + " 7731097392608 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 0.000000 \n", + "\n", + " packet_loss \\\n", + "when company data_center device model class worker hostname \n", + "2020-06-30 06:42:17.454 Wilson_LLC Zachary_Drives 6001003522699 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 0.000000 \n", + " Obrien_Mountain 0966571261270 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 4.961308 \n", + " 8069812479542 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 0.000000 \n", + " Bennett__Delacruz_and_Walls Natasha_Harbors 5863502247054 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 0.172451 \n", + " 4285071567351 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 0.000000 \n", + "... ... \n", + "2020-06-30 07:42:12.454 Wilson_LLC Obrien_Mountain 8069812479542 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 0.000000 \n", + " Bennett__Delacruz_and_Walls Natasha_Harbors 5863502247054 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 50.000000 \n", + " 4285071567351 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 50.000000 \n", + " Dominique_Branch 4579248894449 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 0.000000 \n", + " 7731097392608 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 1.153888 \n", + "\n", + " throughput \\\n", + "when company data_center device model class worker hostname \n", + "2020-06-30 06:42:17.454 Wilson_LLC Zachary_Drives 6001003522699 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 256.482190 \n", + " Obrien_Mountain 0966571261270 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 264.122648 \n", + " 8069812479542 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 263.528599 \n", + " Bennett__Delacruz_and_Walls Natasha_Harbors 5863502247054 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 241.149554 \n", + " 4285071567351 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 263.688823 \n", + "... ... \n", + "2020-06-30 07:42:12.454 Wilson_LLC Obrien_Mountain 8069812479542 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 269.816306 \n", + " Bennett__Delacruz_and_Walls Natasha_Harbors 5863502247054 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 0.000000 \n", + " 4285071567351 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 0.000000 \n", + " Dominique_Branch 4579248894449 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 255.943689 \n", + " 7731097392608 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 238.072156 \n", + "\n", + " predictions \n", + "when company data_center device model class worker hostname \n", + "2020-06-30 06:42:17.454 Wilson_LLC Zachary_Drives 6001003522699 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd False \n", + " Obrien_Mountain 0966571261270 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd False \n", + " 8069812479542 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd False \n", + " Bennett__Delacruz_and_Walls Natasha_Harbors 5863502247054 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd False \n", + " 4285071567351 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd False \n", + "... ... \n", + "2020-06-30 07:42:12.454 Wilson_LLC Obrien_Mountain 8069812479542 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd False \n", + " Bennett__Delacruz_and_Walls Natasha_Harbors 5863502247054 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd True \n", + " 4285071567351 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd True \n", + " Dominique_Branch 4579248894449 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd False \n", + " 7731097392608 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd False \n", + "\n", + "[5759 rows x 5 columns]" + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "predictions = pd.read_parquet('/User/demos/network-operations/streaming/predictions/20200630T064217-20200630T074212.parquet')\n", + "predictions" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.8" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/network-operations/notebooks/preprocessor.ipynb b/network-operations/notebooks/preprocessor.ipynb new file mode 100644 index 00000000..126080c7 --- /dev/null +++ b/network-operations/notebooks/preprocessor.ipynb @@ -0,0 +1,483 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Pre-Processor" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "import nuclio" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "%nuclio: setting kind to 'nuclio'\n" + ] + } + ], + "source": [ + "%nuclio config kind = \"nuclio\"" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "%nuclio: setting 'aggregate_fn_url' environment variable\n", + "%nuclio: setting 'METRICS_TABLE' environment variable\n", + "%nuclio: setting 'FEATURES_TABLE' environment variable\n", + "%nuclio: setting 'base_dataset' environment variable\n", + "%nuclio: setting 'keys' environment variable\n", + "%nuclio: setting 'metrics' environment variable\n", + "%nuclio: setting 'metric_aggs' environment variable\n", + "%nuclio: setting 'suffix' environment variable\n", + "%nuclio: setting 'window' environment variable\n", + "%nuclio: setting 'center' environment variable\n", + "%nuclio: setting 'inplace' environment variable\n", + "%nuclio: setting 'drop_na' environment variable\n", + "%nuclio: setting 'files_to_select' environment variable\n", + "%nuclio: setting 'label_col' environment variable\n", + "%nuclio: setting 'is_save_to_tsdb' environment variable\n" + ] + } + ], + "source": [ + "%%nuclio env\n", + "\n", + "aggregate_fn_url = /User/functions/aggregate/function.yaml\n", + "METRICS_TABLE = /User/demos/network-operations/data\n", + "FEATURES_TABLE = /User/demos/network-operations/features\n", + "\n", + "base_dataset = /User/demos/network-operations/artifacts/selected_features.parquet\n", + "\n", + "keys = timestamp,company,data_center,device\n", + "metrics = [\"cpu_utilization\", \"throughput\", \"packet_loss\", \"latency\"]\n", + "metric_aggs = [\"mean\", \"sum\", \"std\", \"var\", \"min\", \"max\", \"median\"]\n", + "suffix = daily\n", + "window = 3\n", + "center = 0\n", + "inplace = 0\n", + "drop_na = 1\n", + "files_to_select = 1\n", + "label_col = is_error\n", + "\n", + "is_save_to_tsdb = 0" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "# %%nuclio env -c\n", + "\n", + "# aggregate_fn_url = hub://aggregate\n", + "# METRICS_TABLE = network-operations/metrics\n", + "# FEATURES_TABLE = network-operations/features\n", + "\n", + "# keys = company,data_center,device\n", + "# metrics = timestamp, cpu_utilization,latency,packet_loss,throughput\n", + "# metric_aggs = mean,max\n", + "# suffix = daily\n", + "# window = 3\n", + "# center = 0\n", + "# inplace = 1\n", + "# drop_na = 1\n", + "\n", + "# is_save_to_tsdb = 0" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Function" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "# nuclio: start-code" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "import os\n", + "import pandas as pd\n", + "from mlrun.datastore import DataItem\n", + "import ast\n", + "\n", + "from typing import Union\n", + "from mlrun import mlconf, import_function, mount_v3io, NewTask, function_to_module, get_or_create_ctx\n", + "from mlrun.run import get_dataitem" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [], + "source": [ + "def get_data_tsdb(context):\n", + " df = context.v3f.read(backend='tsdb', query=f'select cpu_utilization, latency, packet_loss, throughput, is_error from {context.metrics_table}',\n", + " start=f'now-2h', end='now', multi_index=True)\n", + " df = format_df_from_tsdb(context, df)\n", + " return df" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [], + "source": [ + "def get_data_parquet(context):\n", + " mpath = [os.path.join(context.metrics_table, file) for file in os.listdir(context.metrics_table) if file.endswith(('parquet', 'pq'))]\n", + " files_by_updated = sorted(mpath, key=os.path.getmtime, reverse=True)\n", + " context.logger.info(files_by_updated)\n", + " latest = files_by_updated[:context.files_to_select]\n", + " context.logger.info(f'Aggregating {latest}')\n", + " input_df = pd.concat([pd.read_parquet(df) for df in latest])\n", + " return input_df" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [], + "source": [ + "def save_to_tsdb(context, features: pd.DataFrame): \n", + " context.v3f.write('tsdb', context.features_table, features)" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [], + "source": [ + "def save_to_parquet(context, df: pd.DataFrame):\n", + " print('Saving features to Parquet')\n", + " \n", + " # Need to fix timestamps from ns to ms if we write to parquet\n", + " df = df.reset_index()\n", + " df['timestamp'] = df.loc[:, 'timestamp'].astype('datetime64[ms]')\n", + " \n", + " # Fix indexes\n", + " df = df.set_index(context.keys)\n", + " \n", + " # Save parquet\n", + " first_timestamp = df.index[0][0].strftime('%Y%m%dT%H%M%S')\n", + " last_timestamp = df.index[-1][0].strftime('%Y%m%dT%H%M%S')\n", + " filename = first_timestamp + '-' + last_timestamp + '.parquet'\n", + " filepath = os.path.join(context.features_table, filename)\n", + " with open(filepath, 'wb+') as f:\n", + " df.to_parquet(f)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [], + "source": [ + "def init_context(context):\n", + " \n", + " mlconf.dbpath = 'http://mlrun-api:8080'\n", + " \n", + " # Setup aggregate function\n", + " aggregate_fn = import_function(os.getenv('aggregate_fn_url', 'hub://aggregate'))\n", + " mod = function_to_module(aggregate_fn)\n", + " setattr(context, 'aggregate', mod.aggregate)\n", + " \n", + " ag_context = get_or_create_ctx('aggregate')\n", + " setattr(context, 'mlrun_ctx', ag_context)\n", + " \n", + " # Set vars from env\n", + " setattr(context, 'metrics_table', os.getenv('METRICS_TABLE', 'netops_metrics'))\n", + " setattr(context, 'features_table', os.getenv('FEATURES_TABLE', 'netops_features'))\n", + " setattr(context, 'keys', os.getenv('keys', '').split(','))\n", + " setattr(context, 'metrics', ast.literal_eval(os.getenv('metrics', '')))\n", + " setattr(context, 'metric_aggs', ast.literal_eval(os.getenv('metric_aggs', '')))\n", + " setattr(context, 'suffix', os.getenv('suffix', '_agg'))\n", + " setattr(context, 'window', int(os.getenv('window', '3')))\n", + " setattr(context, 'center', bool(int(os.getenv('center', '0'))))\n", + " setattr(context, 'inplace', bool(int(os.getenv('inplace', '0'))))\n", + " setattr(context, 'drop_na', bool(int(os.getenv('drop_na', '1'))))\n", + " setattr(context, 'files_to_select', int(os.getenv('files_to_select', 1)))\n", + " \n", + " sample_dataset = get_dataitem(os.environ['base_dataset']).as_df()\n", + " selected_features = [col for col in list(sample_dataset.columns) if col != os.getenv('label_col', '')]\n", + " aggregated_features = [feature.split('_')[:-1] for feature in selected_features if feature.endswith(context.suffix)]\n", + " base_features = set([f[0] for f in aggregated_features])\n", + " aggregations = set([f[1] for f in aggregated_features])\n", + " setattr(context, 'features', selected_features)\n", + " setattr(context, 'base_features', base_features)\n", + " setattr(context, 'aggregations', aggregations)\n", + " \n", + " \n", + " \n", + " # Save to TSDB\n", + " is_save_to_tsdb = bool(int(os.getenv('save_to_tsdb', '0')))\n", + " if is_save_to_tsdb:\n", + " # Create our DB client\n", + " v3io_client = v3f.Client(address='framesd:8081', container='bigdata')\n", + " setattr(context, 'v3f', v3io_client)\n", + " \n", + " # Create features table if neede\n", + " context.v3f.create('tsdb', context.features_table, attrs={'rate': '1/s'}, if_exists=1)\n", + " \n", + " # Set TSDB reading function\n", + " setattr(context, 'read', get_data_tsdb)\n", + " \n", + " # Set TSDB saving function\n", + " setattr(context, 'write', save_to_tsdb)\n", + " \n", + " # Save to Parquet\n", + " else:\n", + " # Create saving directory if needed\n", + " filepath = os.path.join(context.features_table)\n", + " if not os.path.exists(filepath):\n", + " os.makedirs(filepath)\n", + " \n", + " # Set Parquet reading function\n", + " setattr(context, 'read', get_data_parquet)\n", + " \n", + " # Set Parquet saving function\n", + " setattr(context, 'write', save_to_parquet)" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [], + "source": [ + "def handler(context, event):\n", + " \n", + " # Get latest parquets\n", + " df = context.read(context)\n", + " \n", + " # Call aggregate\n", + " res = context.aggregate(context=context.mlrun_ctx,\n", + " df_artifact=df,\n", + " save_to=context.features_table, \n", + " keys=context.keys, \n", + " metrics=context.metrics, \n", + " metric_aggs=context.metric_aggs, \n", + " suffix=context.suffix, \n", + " window=context.window, \n", + " center=context.center, \n", + " inplace=context.inplace,\n", + " drop_na=context.drop_na)\n", + " \n", + " context.logger.info(f'res.columns: {res.columns}')\n", + " context.logger.info(f'context.columns: {context.features}')\n", + " res = res[context.features]\n", + " \n", + " # Save\n", + " context.write(context, res)" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [], + "source": [ + "# nuclio: end-code" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Local test" + ] + }, + { + "cell_type": "code", + "execution_count": 223, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[mlrun] 2020-07-08 12:47:04,161 logging run results to: http://mlrun-api:8080\n" + ] + } + ], + "source": [ + "init_context(context)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "event = nuclio.Event(body='')\n", + "out = handler(context, event)\n", + "out" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Test" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [], + "source": [ + "from mlrun import code_to_function, mount_v3io" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "fn = code_to_function('nuclio-preprocessor',\n", + " kind='nuclio',\n", + " project='network-operations')\n", + "fn.spec.base_spec['spec']['build']['baseImage'] = 'mlrun/ml-models'\n", + "fn.apply(mount_v3io())\n", + "fn.add_trigger('cron', nuclio.triggers.CronTrigger(interval='1m'))" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "> 2020-07-27 06:47:07,600 [debug] saving function: nuclio-preprocessor, tag: \n", + "> 2020-07-27 06:47:07,659 [info] function spec saved to path: ../src/preprocessor.yaml\n" + ] + }, + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "fn.save()\n", + "fn.export('../src/preprocessor.yaml')" + ] + }, + { + "cell_type": "code", + "execution_count": 202, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[mlrun] 2020-07-08 12:37:26,608 deploy started\n", + "[nuclio] 2020-07-08 12:37:28,726 (info) Build complete\n", + "[nuclio] 2020-07-08 12:37:40,864 (info) Function deploy complete\n", + "[nuclio] 2020-07-08 12:37:40,870 done updating network-operations-nuclio-preprocessor, function address: 192.168.224.209:31857\n" + ] + }, + { + "data": { + "text/plain": [ + "'http://192.168.224.209:31857'" + ] + }, + "execution_count": 202, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "fn.deploy(project='network-operations')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.8" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/network-operations/notebooks/server.ipynb b/network-operations/notebooks/server.ipynb new file mode 100644 index 00000000..d3a514bb --- /dev/null +++ b/network-operations/notebooks/server.ipynb @@ -0,0 +1,703 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Model Server" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "import nuclio" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "%nuclio: setting kind to 'nuclio'\n" + ] + } + ], + "source": [ + "%nuclio config kind = \"nuclio\"" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "%nuclio: setting 'FEATURES_TABLE' environment variable\n", + "%nuclio: setting 'PREDICTIONS_TABLE' environment variable\n", + "%nuclio: setting 'prediction_col' environment variable\n", + "%nuclio: setting '# model_path' environment variable\n", + "%nuclio: setting 'model_path' environment variable\n", + "%nuclio: setting 'model_name' environment variable\n", + "%nuclio: setting 'model_class' environment variable\n", + "%nuclio: setting 'model_col' environment variable\n", + "%nuclio: setting 'model_class_col' environment variable\n", + "%nuclio: setting 'worker_col' environment variable\n", + "%nuclio: setting 'hostname_col' environment variable\n", + "%nuclio: setting 'timestamp_col' environment variable\n", + "%nuclio: setting 'orig_timestamp_col' environment variable\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "%nuclio: cannot find \"=\" in line\n" + ] + } + ], + "source": [ + "%%nuclio env\n", + "\n", + "FEATURES_TABLE = /User/demos/network-operations/data/ \n", + "#streaming/features\n", + "PREDICTIONS_TABLE = /User/demos/network-operations/streaming/predictions\n", + "prediction_col = predictions\n", + "# model_path = /User/demos/network-operations/artifacts/model/2/model.pkl\n", + "model_path = store://network-operations/train_model#f2ea18dd-504d-4d14-83d2-a326fe5afc37\n", + "model_name = netops_predictor_v1\n", + "model_class = MLRunModel\n", + "model_col = model\n", + "model_class_col = class\n", + "worker_col = worker\n", + "hostname_col = hostname\n", + "timestamp_col = when\n", + "orig_timestamp_col = timestamp" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Function" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [], + "source": [ + "# nuclio: start-code" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [], + "source": [ + "import os\n", + "import pandas as pd\n", + "import cloudpickle\n", + "import numpy as np\n", + "import json\n", + "from mlrun import get_or_create_ctx\n", + "import socket" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [], + "source": [ + "def get_data_parquet(context):\n", + " mpath = [os.path.join(context.features_table, file) for file in os.listdir(context.features_table) if file.endswith(('parquet', 'pq'))]\n", + " files_by_updated = sorted(mpath, key=os.path.getmtime, reverse=True)\n", + " return pd.read_parquet(files_by_updated[:1][0])" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [], + "source": [ + "def save_to_parquet(context, df: pd.DataFrame):\n", + " print('Saving features to Parquet')\n", + " \n", + " # Need to fix timestamps from ns to ms if we write to parquet \n", + " # And add this model name to indexes\n", + " keys = list([name if name != context.orig_timestamp_col else context.timestamp_col for name in df.index.names]) + [context.model_col, context.model_class_col, context.worker_col, context.hostname_col]\n", + " df = df.reset_index()\n", + " df[context.timestamp_col] = df.pop(context.orig_timestamp_col).astype('datetime64[ms]')\n", + " \n", + " # Fix indexes\n", + " df = df.set_index(keys)\n", + " \n", + " # Save parquet\n", + " first_timestamp = df.index[0][0].strftime('%Y%m%dT%H%M%S')\n", + " last_timestamp = df.index[-1][0].strftime('%Y%m%dT%H%M%S')\n", + " filename = first_timestamp + '-' + last_timestamp + '.parquet'\n", + " filepath = os.path.join(context.predictions_table, filename)\n", + " with open(filepath, 'wb+') as f:\n", + " df.to_parquet(f)" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [], + "source": [ + "def init_context(context):\n", + " # Set vars from env\n", + " setattr(context, 'model_name', os.getenv('model_name', 'netops_model'))\n", + " setattr(context, 'model_col', os.getenv('model_col', 'model'))\n", + " setattr(context, 'model_class_col', os.getenv('model_class_col', 'class'))\n", + " setattr(context, 'worker_col', os.getenv('worker_col', 'worker'))\n", + " setattr(context, 'hostname_col', os.getenv('hostname_col', 'hostname'))\n", + " setattr(context, 'timestamp_col', os.getenv('timestamp_col', 'when'))\n", + " setattr(context, 'orig_timestamp_col', os.getenv('orig_timestamp_col', 'timestamp'))\n", + " setattr(context, 'features_table', os.getenv('FEATURES_TABLE', 'netops_features'))\n", + " setattr(context, 'predictions_table', os.getenv('PREDICTIONS_TABLE', 'netops_predictions'))\n", + " setattr(context, 'prediction_col', os.getenv('prediction_col', 'prediction'))\n", + " \n", + " # Load model\n", + " model_path = os.environ['model_path']\n", + " if model_path.startswith('store://'):\n", + " mlctx = get_or_create_ctx('inference')\n", + " model = mlctx.get_dataitem(model_path)\n", + " model_path = os.path.join(model.url, 'model.pkl')\n", + " with open(model_path, 'rb') as f:\n", + " model = cloudpickle.load(f)\n", + " setattr(context, 'model', model)\n", + " setattr(context, 'model_class', type(model).__name__)\n", + " \n", + " # Create saving directory if needed\n", + " filepath = os.path.join(context.predictions_table)\n", + " if not os.path.exists(filepath):\n", + " os.makedirs(filepath)" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [], + "source": [ + "def handler(context, event):\n", + " \n", + " if getattr(event.trigger, 'kind', 'cron') == 'cron':\n", + " # Get latest parquets\n", + " df = pd.read_parquet('/User/demos/network-operations/artifacts/selected_features.parquet').iloc[:, :-1] #get_data_parquet(context)\n", + "\n", + " # Predict\n", + " df[context.prediction_col] = context.model.predict(df.values)\n", + " \n", + " # Add server metadata\n", + " df[context.model_col] = context.model_name\n", + " df[context.model_class_col] = context.model_class\n", + " df[context.worker_col] = context.worker_id\n", + " df[context.hostname_col] = socket.gethostname()\n", + "\n", + " # Save\n", + " save_to_parquet(context, df)\n", + " else:\n", + " body = json.loads(event.body)\n", + " feats = np.asarray(body['instances'])\n", + " result: np.ndarray = context.model.predict(feats)\n", + " return result.tolist()" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": {}, + "outputs": [], + "source": [ + "# nuclio: end-code" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Local test" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "> 2020-08-10 10:50:29,470 [info] logging run results to: http://mlrun-api:8080\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/conda/lib/python3.6/site-packages/sklearn/base.py:318: UserWarning: Trying to unpickle estimator DecisionTreeClassifier from version 0.23.1 when using version 0.22.1. This might lead to breaking code or invalid results. Use at your own risk.\n", + " UserWarning)\n", + "/conda/lib/python3.6/site-packages/sklearn/base.py:318: UserWarning: Trying to unpickle estimator RandomForestClassifier from version 0.23.1 when using version 0.22.1. This might lead to breaking code or invalid results. Use at your own risk.\n", + " UserWarning)\n" + ] + } + ], + "source": [ + "init_context(context)" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Saving features to Parquet\n" + ] + } + ], + "source": [ + "event = nuclio.Event(body='', trigger={'kind': 'cron'})\n", + "out = handler(context, event)\n", + "out" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Test" + ] + }, + { + "cell_type": "code", + "execution_count": 166, + "metadata": {}, + "outputs": [], + "source": [ + "from mlrun import code_to_function, mount_v3io" + ] + }, + { + "cell_type": "code", + "execution_count": 167, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 167, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "fn = code_to_function('inference-server',\n", + " kind='nuclio',\n", + " project='network-operations')\n", + "fn.spec.base_spec['spec']['build']['baseImage'] = 'mlrun/ml-models'\n", + "fn.apply(mount_v3io())\n", + "fn.add_trigger('cron', nuclio.triggers.CronTrigger(interval='1m'))" + ] + }, + { + "cell_type": "code", + "execution_count": 168, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "> 2020-08-09 13:09:30,711 [info] function spec saved to path: ../src/inference-server.yaml\n" + ] + }, + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 168, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "fn.save()\n", + "fn.export('../src/inference-server.yaml')" + ] + }, + { + "cell_type": "code", + "execution_count": 169, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "> 2020-08-09 13:09:30,717 [info] deploy started\n", + "[nuclio] 2020-08-09 13:09:37,916 (info) Build complete\n", + "[nuclio] 2020-08-09 13:09:47,072 done updating network-operations-inference-server, function address: 192.168.224.209:32279\n" + ] + }, + { + "data": { + "text/plain": [ + "'http://192.168.224.209:32279'" + ] + }, + "execution_count": 169, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "fn.deploy(project='network-operations')" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
cpu_utilizationlatencypacket_lossthroughputpredictions
whencompanydata_centerdevicemodelclassworkerhostname
2020-06-30 06:42:17.454Wilson_LLCZachary_Drives6001003522699netops_predictor_v1RandomForestClassifierNaNjupyter-558bf7fbc8-sq5kd66.9391390.5372790.000000256.482190False
Obrien_Mountain0966571261270netops_predictor_v1RandomForestClassifierNaNjupyter-558bf7fbc8-sq5kd72.4927070.0000004.961308264.122648False
8069812479542netops_predictor_v1RandomForestClassifierNaNjupyter-558bf7fbc8-sq5kd69.1168782.6069340.000000263.528599False
Bennett__Delacruz_and_WallsNatasha_Harbors5863502247054netops_predictor_v1RandomForestClassifierNaNjupyter-558bf7fbc8-sq5kd64.9441071.5710460.172451241.149554False
4285071567351netops_predictor_v1RandomForestClassifierNaNjupyter-558bf7fbc8-sq5kd78.6411280.0000000.000000263.688823False
.......................................
2020-06-30 07:42:12.454Wilson_LLCObrien_Mountain8069812479542netops_predictor_v1RandomForestClassifierNaNjupyter-558bf7fbc8-sq5kd59.5744870.0000000.000000269.816306False
Bennett__Delacruz_and_WallsNatasha_Harbors5863502247054netops_predictor_v1RandomForestClassifierNaNjupyter-558bf7fbc8-sq5kd100.000000100.00000050.0000000.000000True
4285071567351netops_predictor_v1RandomForestClassifierNaNjupyter-558bf7fbc8-sq5kd100.000000100.00000050.0000000.000000True
Dominique_Branch4579248894449netops_predictor_v1RandomForestClassifierNaNjupyter-558bf7fbc8-sq5kd69.0530140.0646570.000000255.943689False
7731097392608netops_predictor_v1RandomForestClassifierNaNjupyter-558bf7fbc8-sq5kd69.6299880.0000001.153888238.072156False
\n", + "

5759 rows × 5 columns

\n", + "
" + ], + "text/plain": [ + " cpu_utilization \\\n", + "when company data_center device model class worker hostname \n", + "2020-06-30 06:42:17.454 Wilson_LLC Zachary_Drives 6001003522699 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 66.939139 \n", + " Obrien_Mountain 0966571261270 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 72.492707 \n", + " 8069812479542 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 69.116878 \n", + " Bennett__Delacruz_and_Walls Natasha_Harbors 5863502247054 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 64.944107 \n", + " 4285071567351 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 78.641128 \n", + "... ... \n", + "2020-06-30 07:42:12.454 Wilson_LLC Obrien_Mountain 8069812479542 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 59.574487 \n", + " Bennett__Delacruz_and_Walls Natasha_Harbors 5863502247054 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 100.000000 \n", + " 4285071567351 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 100.000000 \n", + " Dominique_Branch 4579248894449 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 69.053014 \n", + " 7731097392608 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 69.629988 \n", + "\n", + " latency \\\n", + "when company data_center device model class worker hostname \n", + "2020-06-30 06:42:17.454 Wilson_LLC Zachary_Drives 6001003522699 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 0.537279 \n", + " Obrien_Mountain 0966571261270 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 0.000000 \n", + " 8069812479542 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 2.606934 \n", + " Bennett__Delacruz_and_Walls Natasha_Harbors 5863502247054 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 1.571046 \n", + " 4285071567351 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 0.000000 \n", + "... ... \n", + "2020-06-30 07:42:12.454 Wilson_LLC Obrien_Mountain 8069812479542 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 0.000000 \n", + " Bennett__Delacruz_and_Walls Natasha_Harbors 5863502247054 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 100.000000 \n", + " 4285071567351 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 100.000000 \n", + " Dominique_Branch 4579248894449 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 0.064657 \n", + " 7731097392608 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 0.000000 \n", + "\n", + " packet_loss \\\n", + "when company data_center device model class worker hostname \n", + "2020-06-30 06:42:17.454 Wilson_LLC Zachary_Drives 6001003522699 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 0.000000 \n", + " Obrien_Mountain 0966571261270 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 4.961308 \n", + " 8069812479542 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 0.000000 \n", + " Bennett__Delacruz_and_Walls Natasha_Harbors 5863502247054 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 0.172451 \n", + " 4285071567351 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 0.000000 \n", + "... ... \n", + "2020-06-30 07:42:12.454 Wilson_LLC Obrien_Mountain 8069812479542 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 0.000000 \n", + " Bennett__Delacruz_and_Walls Natasha_Harbors 5863502247054 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 50.000000 \n", + " 4285071567351 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 50.000000 \n", + " Dominique_Branch 4579248894449 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 0.000000 \n", + " 7731097392608 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 1.153888 \n", + "\n", + " throughput \\\n", + "when company data_center device model class worker hostname \n", + "2020-06-30 06:42:17.454 Wilson_LLC Zachary_Drives 6001003522699 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 256.482190 \n", + " Obrien_Mountain 0966571261270 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 264.122648 \n", + " 8069812479542 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 263.528599 \n", + " Bennett__Delacruz_and_Walls Natasha_Harbors 5863502247054 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 241.149554 \n", + " 4285071567351 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 263.688823 \n", + "... ... \n", + "2020-06-30 07:42:12.454 Wilson_LLC Obrien_Mountain 8069812479542 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 269.816306 \n", + " Bennett__Delacruz_and_Walls Natasha_Harbors 5863502247054 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 0.000000 \n", + " 4285071567351 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 0.000000 \n", + " Dominique_Branch 4579248894449 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 255.943689 \n", + " 7731097392608 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd 238.072156 \n", + "\n", + " predictions \n", + "when company data_center device model class worker hostname \n", + "2020-06-30 06:42:17.454 Wilson_LLC Zachary_Drives 6001003522699 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd False \n", + " Obrien_Mountain 0966571261270 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd False \n", + " 8069812479542 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd False \n", + " Bennett__Delacruz_and_Walls Natasha_Harbors 5863502247054 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd False \n", + " 4285071567351 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd False \n", + "... ... \n", + "2020-06-30 07:42:12.454 Wilson_LLC Obrien_Mountain 8069812479542 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd False \n", + " Bennett__Delacruz_and_Walls Natasha_Harbors 5863502247054 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd True \n", + " 4285071567351 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd True \n", + " Dominique_Branch 4579248894449 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd False \n", + " 7731097392608 netops_predictor_v1 RandomForestClassifier NaN jupyter-558bf7fbc8-sq5kd False \n", + "\n", + "[5759 rows x 5 columns]" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pd.read_parquet('../streaming/predictions/20200630T064217-20200630T074212.parquet')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.8" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/network-operations/project.ipynb b/network-operations/project.ipynb new file mode 100644 index 00000000..ab3b7838 --- /dev/null +++ b/network-operations/project.ipynb @@ -0,0 +1,1432 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Network Operations\n", + "\n", + "In this notebook we will assemble our project. We will explore different functions on our dataset and compile them into a workflow ready for production.\n", + "\n", + "The functions we will use will be a mix of `hub` based functions from our [MLRun Functions](http://github.com/mlrun/functions) repo, local and git based notebooks.\n", + "\n", + "> The notebook should be run after generating the data in the [Generator Notebook](generator.ipynb)\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "we will start by setting up our environment, Loading MLRun and some utilities we will need" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "# Utils\n", + "import os\n", + "import json\n", + "import urllib\n", + "import numpy as np\n", + "\n", + "# MLRun imports\n", + "from mlrun import mlconf\n", + "\n", + "# Setup API Endpoint\n", + "mlconf.dbpath = 'http://mlrun-api:8080'" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "> If you are using another version of our `hub://` please set it up in the following cell.\n", + "* The url can parse {name} and {tag} to the given url" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "# Set Hub URL address if using a local version\n", + "# mlconf.hub_url = '/User/functions/{name}/function.yaml'" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Now lets define our current project " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Create a project from a git repository" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "from mlrun import new_project\n", + "\n", + "# update the dir and repo to reflect real locations \n", + "# the remote git repo must be initialized in GitHub\n", + "project_dir = os.path.abspath('./')\n", + "remote_git = 'https://github.com/mlrun/demos.git'\n", + "\n", + "# Create the project\n", + "newproj = new_project('network-operations', project_dir, init_git=True)\n", + "\n", + "# We can update our project directory to the latest status by running\n", + "# newproj.pull()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Now that we have our project directory, lets forword our artifacts there to keep track of them" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "# Define an artifact path to keep track of where our artifacts are going\n", + "ARTIFACT_PATH = os.path.join(os.path.abspath(newproj.context), 'artifacts')\n", + "mlconf.artifact_path = ARTIFACT_PATH" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Create and run functions" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "As we receive a new dataset, the first thing we would like to do is to explore it a bit, we can do that using our `describe` function in `mlrun/functions`" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "from mlrun import mount_v3io, new_model_server" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Import the functions\n", + "# Functions From hub\n", + "tag = 'master'\n", + "newproj.set_function(func=f'hub://aggregate:{tag}', name='aggregate')\n", + "newproj.set_function(func=f'hub://describe:{tag}', name='describe')\n", + "newproj.set_function(func=f'hub://feature_selection:{tag}', name=\"feature_selection\")\n", + "newproj.set_function(func=f'hub://sklearn_classifier:{tag}', name='train')\n", + "newproj.set_function(func=f'hub://test_classifier:{tag}', name='test')\n", + "newproj.set_function(func=f'hub://model_server_tester:{tag}', name=\"model_server-tester\")\n", + "newproj.set_function(func=f'hub://concept_drift:{tag}', name=\"concept_drift\")\n", + "newproj.set_function(func=f'hub://stream_to_parquet:{tag}', name=\"s2p\")\n", + "newproj.set_function(func=f'hub://virtual_drift:{tag}', name=\"virtual_drift\")\n", + "\n", + "# Streaming\n", + "src_path = os.path.abspath('src/')\n", + "newproj.set_function(func=os.path.join(src_path, 'generator.yaml'), name='generator')\n", + "newproj.set_function(func=os.path.join(src_path, 'preprocessor.yaml'), name='create_feature_vector')\n", + "newproj.set_function(func=os.path.join(src_path, 'inference-server.yaml'), name=\"serving\")\n", + "newproj.set_function(func=os.path.join(src_path, 'labeled_stream_creator.yaml'), name=\"labeled_stream\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Generate the dataset\n", + "If needed go to [Generator](./generator.ipynb) and run the local workflow to generate the metrics dataset to `data/metrics`" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Run the functions locally to develop the workflow" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "now we can **Run** the function locally on our sample data, we would like to get some details on our `raw` data" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Register raw data as project level artifact" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Define base Dataset\n", + "import random\n", + "data_dir = os.path.join(os.path.abspath(newproj.context), 'data')\n", + "dataset_filename = random.choice(list(filter(lambda x: (x.endswith('pq') or x.endswith('parquet')), os.listdir(data_dir))))\n", + "metrics_path = os.path.join(data_dir, dataset_filename)\n", + "print(f'Selected {metrics_path} as base dataset, Prepearing dataset')\n", + "\n", + "import pandas as pd\n", + "# Drop alternate error columns\n", + "label_column = 'is_error'\n", + "raw = pd.read_parquet(metrics_path)\n", + "raw = raw.drop([col for col in raw.columns if (col != label_column) & (col.endswith(label_column))], axis=1)\n", + "dataset_path = os.path.join(data_dir, 'metrics.pq')\n", + "raw.to_parquet(dataset_path)\n", + "print(f'Finished prepearing dataset {raw.shape}, logging artifact to store://{newproj.name}/metrics')\n", + "\n", + "# Add to the project as a Dataset Artifact\n", + "from mlrun.artifacts import DatasetArtifact\n", + "metrics_artifact = DatasetArtifact(key='metrics', df=raw, format='parquet', target_path=dataset_path)\n", + "newproj.log_artifact(metrics_artifact)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Get statistics about the metrics data" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [], + "source": [ + "from mlrun import NewTask\n", + "from mlrun.platforms import auto_mount" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "metadata": {}, + "outputs": [], + "source": [ + "describe_task = NewTask(\n", + " name=\"describe\", \n", + " handler=\"summarize\", \n", + " params={\"key\": \"summary\", \n", + " \"label_column\": label_column, \n", + " 'class_labels': ['0', '1'],\n", + " 'plot_hist': True,\n", + " 'plot_dest': 'plots-metrics'},\n", + " inputs={\"table\": f'/User/demos/network-operations/data/metrics.pq'},\n", + " artifact_path=ARTIFACT_PATH)" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "> 2020-08-03 06:36:37,761 [info] starting run describe uid=62718a8574ca48f8abd8434a3926db1f -> http://mlrun-api:8080\n", + "> 2020-08-03 06:36:37,901 [info] Job is running in the background, pod: describe-h64vm\n", + "> 2020-08-03 06:36:50,055 [info] run executed, status=completed\n", + "/opt/conda/lib/python3.7/site-packages/seaborn/distributions.py:288: UserWarning: Data must have variance to compute a kernel density estimate.\n", + " warnings.warn(msg, UserWarning)\n", + "/opt/conda/lib/python3.7/site-packages/seaborn/distributions.py:288: UserWarning: Data must have variance to compute a kernel density estimate.\n", + " warnings.warn(msg, UserWarning)\n", + "/opt/conda/lib/python3.7/site-packages/seaborn/distributions.py:288: UserWarning: Data must have variance to compute a kernel density estimate.\n", + " warnings.warn(msg, UserWarning)\n", + "/opt/conda/lib/python3.7/site-packages/seaborn/distributions.py:288: UserWarning: Data must have variance to compute a kernel density estimate.\n", + " warnings.warn(msg, UserWarning)\n", + "final state: succeeded\n" + ] + }, + { + "data": { + "text/html": [ + "\n", + "
\n", + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
projectuiditerstartstatenamelabelsinputsparametersresultsartifacts
default0Aug 03 06:36:44completeddescribe
v3io_user=admin
kind=job
owner=admin
host=describe-h64vm
table
key=summary
label_column=is_error
class_labels=['0', '1']
plot_hist=True
plot_dest=plots-metrics
histograms
violin
imbalance
imbalance-weights-vec
correlation-matrix
correlation
\n", + "
\n", + "
\n", + "
\n", + " Title\n", + " ×\n", + "
\n", + " \n", + "
\n", + "
\n" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "to track results use .show() or .logs() or in CLI: \n", + "!mlrun get run 62718a8574ca48f8abd8434a3926db1f --project default , !mlrun logs 62718a8574ca48f8abd8434a3926db1f --project default\n", + "> 2020-08-03 06:36:57,131 [info] run executed, status=completed\n" + ] + } + ], + "source": [ + "decsribe_run = newproj.func('describe').apply(auto_mount()).run(describe_task)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Create the feature vector" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We will use our [Aggregate](https://github.com/mlrun/functions/blob/master/aggregate/aggregate.ipynb) function to create rolling window features for our feature vector.\n", + "\n", + "In doing so we hope that we could help our algorithms identify local errors by using a windowed trend" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Define aggregate task\n", + "from mlrun import NewTask\n", + "aggregate_task = NewTask(\n", + " name='aggregate',\n", + " params={'metrics': ['cpu_utilization', 'throughput', 'packet_loss', 'latency'],\n", + " 'metric_aggs': ['mean', 'sum', 'std', 'var', 'min', 'max', 'median'],\n", + " 'suffix': 'daily',\n", + " 'append_to_df': True,\n", + " 'window': 20,\n", + " 'center': False,\n", + " 'save_to': os.path.join('data', 'aggregate.pq'),\n", + " 'drop_na': True},\n", + " inputs={'df_artifact': f'store://{newproj.name}/metrics'},\n", + " handler='aggregate')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "aggregate_run = newproj.func('aggregate').apply(mount_v3io()).run(aggregate_task)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Get statistics about the feature vector" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "aggregate_describe_task = NewTask(\n", + " name=\"describe-aggregate\", \n", + " handler=\"summarize\", \n", + " params={\"key\": \"summary\", \n", + " \"label_column\": label_column, \n", + " 'class_labels': ['0', '1'],\n", + " 'plot_hist': True,\n", + " 'plot_dest': 'plots-aggregate',\n", + " 'sample': 0.3},\n", + " inputs={\"table\": aggregate_run.outputs['aggregate']},\n", + " artifact_path=ARTIFACT_PATH)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "aggregate_decsribe_run = newproj.func('describe').apply(mount_v3io()).run(aggregate_describe_task)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Create workflow to train the model\n", + "After reviewing the data and creating the feature vector we move to training our model. \n", + "For this task we will use an **LGBM** classifier. To control the training process we will supply a `model_config` dictionary with the following parameters:\n", + "- **CLASS**: Model-specific parameters.\n", + "- **FIT**: Training parameters (like epoch when needed)\n", + "- **META**: Model and Package version" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Setup model configurations" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "model_configs = {\n", + " \"CLASS\" : {\n", + " \"boosting_type\" : \"gbdt\",\n", + " \"num_leaves\" : 300,\n", + " \"max_depth\" : 50,\n", + " \"learning_rate\" : 0.1,\n", + " \"n_estimators\" : 300,\n", + " \"objective\" : \"binary\",\n", + " \"scale_pos_weight\" : 1, \n", + " \"min_split_gain\" : 0.0,\n", + " \"min_child_samples\" : 20,\n", + " \"subsample\" : 1,\n", + " \"colsample_bytree\" : 1,\n", + " \"reg_alpha\" : 0,\n", + " \"reg_lambda\" : 1,\n", + " \"n_jobs\" : 16,\n", + " \"silent\" : True,\n", + " \"importance_type\" : \"split\",\n", + " \"random_state\" : 1},\n", + " \"FIT\" : {\n", + " \"verbose\" : False\n", + " },\n", + " \"META\" : {\n", + " \"class\" : \"lightgbm.sklearn.LGBMClassifier\",\n", + " \"version\" : \"2.3.1\"\n", + " }\n", + "}\n", + "model_config_path = os.path.join(os.path.abspath(newproj.context), 'data', 'lgb_model.json')\n", + "with open(model_config_path, 'w') as f:\n", + " f.write(json.dumps(model_configs))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "newproj.log_artifact('lgb_configs',\n", + " target_path = os.path.abspath(model_config_path))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Create Pipeline Workflow" + ] + }, + { + "cell_type": "code", + "execution_count": 53, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Overwriting src/workflow.py\n" + ] + } + ], + "source": [ + "%%writefile src/workflow.py\n", + "from kfp import dsl\n", + "from mlrun import mount_v3io, mlconf\n", + "import os\n", + "from nuclio.triggers import V3IOStreamTrigger\n", + "\n", + "funcs = {}\n", + "projdir = os.getcwd()\n", + "# mlconf.hub_url = 'https://raw.githubusercontent.com/mlrun/functions/{tag}/{name}/function.yaml'\n", + "# mlconf.hub_url |= '/User/functions/{name}/function.yaml'\n", + "model_inference_stream = '/users/admin/demos/network-operations/streaming/predictions'\n", + "labeled_stream = '/users/admin/demos/network-operations/streaming/labeled_stream'\n", + "webapi_url = 'http://v3io-webapi:8081'\n", + "model_inference_url = f'{webapi_url}{model_inference_stream}'\n", + "labeled_stream_url = f'{webapi_url}{labeled_stream}'\n", + "\n", + "def init_functions(functions: dict, project=None, secrets=None):\n", + " for f in functions.values():\n", + " # Add V3IO Mount\n", + " f.apply(mount_v3io())\n", + " \n", + " # Always pull images to keep updates\n", + " f.spec.image_pull_policy = 'Always'\n", + " \n", + " # Define inference-stream related triggers\n", + " functions['s2p'].add_trigger('labeled_stream', V3IOStreamTrigger(url=f'{labeled_stream_url}@s2p'))\n", + " \n", + " \n", + "@dsl.pipeline(\n", + " name='Network Operations Demo',\n", + " description='Train a Failure Prediction LGBM Model over sensor data'\n", + ")\n", + "def kfpipeline(\n", + " # aggregate\n", + " df_artifact = '/User/demos/network-operations/data/metrics.pq',\n", + " metrics = ['cpu_utilization', 'throughput', 'packet_loss', 'latency'],\n", + " metric_aggs = ['mean', 'sum', 'std', 'var', 'min', 'max', 'median'],\n", + " suffix = 'daily',\n", + " window = 10,\n", + "\n", + " # describe\n", + " describe_table = 'netops',\n", + " describe_sample = 0.3,\n", + " label_column = 'is_error',\n", + " class_labels = [1, 0],\n", + " plot_hist = True,\n", + " \n", + " # Feature selection\n", + " k = 5,\n", + " min_votes = 3,\n", + " \n", + " # Train\n", + " sample_size = -1, # -n for random sample of n obs, -1 for entire dataset, +n for n consecutive rows\n", + " test_size = 0.1, # 10% set aside\n", + " train_val_split = 0.75, # remainder split into train and val\n", + " \n", + " # Test\n", + " predictions_col = 'predictions',\n", + " \n", + " # Deploy\n", + " deploy_streaming = True,\n", + " aggregate_fn_url = 'hub://aggregate',\n", + " streaming_features_table = '/User/demos/network-operations/streaming/features',\n", + " streaming_predictions_table = '/User/demos/network-operations/streaming/predictions',\n", + " \n", + " # Streaming\n", + " streaming_metrics_table = '/User/demos/network-operations/streaming/metrics',\n", + " \n", + " # labeled stream creator\n", + " streaming_labeled_table = labeled_stream,\n", + " \n", + " # Concept drift\n", + " deploy_concept_drift = True,\n", + " secs_to_generate = 10,\n", + " concept_drift_models = ['ddm', 'eddm', 'pagehinkley'],\n", + " output_tsdb = '/User/demos/network-operations/streaming/drift_tsdb',\n", + " input_stream = labeled_stream_url,\n", + " output_stream = '/User/demos/network-operations/streaming/drift_stream',\n", + " streaming_parquet_table = '/User/demos/network-operations/streaming/inference_pq/',\n", + " \n", + " # Virtual drift\n", + " results_tsdb_container = 'users',\n", + " results_tsdb_table = 'admin/demo_network_operations/streaming/drift_magnitude'\n", + " ):\n", + " \n", + " # Run preprocessing on the data\n", + " aggregate = funcs['aggregate'].as_step(name='aggregate',\n", + " params={'metrics': metrics,\n", + " 'metric_aggs': metric_aggs,\n", + " 'suffix': suffix,\n", + " 'window': window},\n", + " inputs={'df_artifact': df_artifact},\n", + " outputs=['aggregate'],\n", + " handler='aggregate',\n", + " image='mlrun/ml-models')\n", + "\n", + " describe = funcs['describe'].as_step(name='describe-aggregation',\n", + " handler=\"summarize\", \n", + " params={\"key\": f\"{describe_table}_aggregate\", \n", + " \"label_column\": label_column, \n", + " 'class_labels': class_labels,\n", + " 'plot_hist': plot_hist,\n", + " 'plot_dest': 'plots/aggregation',\n", + " 'sample': describe_sample},\n", + " inputs={\"table\": aggregate.outputs['aggregate']},\n", + " outputs=[\"summary\", \"scale_pos_weight\"])\n", + " \n", + " feature_selection = funcs['feature_selection'].as_step(name='feature_selection',\n", + " handler='feature_selection',\n", + " params={'k': k,\n", + " 'min_votes': min_votes,\n", + " 'label_column': label_column},\n", + " inputs={'df_artifact': aggregate.outputs['aggregate']},\n", + " outputs=['feature_scores', \n", + " 'max_scaled_scores_feature_scores'\n", + " 'selected_features_count', \n", + " 'selected_features'],\n", + " image='mlrun/ml-models')\n", + " \n", + " describe = funcs['describe'].as_step(name='describe-feature-vector',\n", + " handler=\"summarize\", \n", + " params={\"key\": f'{describe_table}_features', \n", + " \"label_column\": label_column, \n", + " 'class_labels': class_labels,\n", + " 'plot_hist': plot_hist,\n", + " 'plot_dest': 'plots/feature_vector'},\n", + " inputs={\"table\": feature_selection.outputs['selected_features']},\n", + " outputs=[\"summary\", \"scale_pos_weight\"])\n", + " \n", + " train = funcs['train'].as_step(name='train',\n", + " params={\"sample\" : sample_size, \n", + " \"label_column\" : label_column,\n", + " \"test_size\" : test_size,\n", + " \"train_val_split\" : train_val_split},\n", + " inputs={\"dataset\" : feature_selection.outputs['selected_features']},\n", + " hyperparams={'model_pkg_class': [\"sklearn.ensemble.RandomForestClassifier\", \n", + " \"sklearn.linear_model.LogisticRegression\",\n", + " \"sklearn.ensemble.AdaBoostClassifier\"]},\n", + " selector='max.accuracy',\n", + " outputs=['model', 'test_set'],\n", + " image='mlrun/ml-models')\n", + " \n", + " test = funcs['test'].as_step(name='test',\n", + " handler='test_classifier',\n", + " params={'label_column': label_column,\n", + " 'predictions_column': predictions_col},\n", + " inputs={'models_path': train.outputs['model'],\n", + " 'test_set': train.outputs['test_set']},\n", + " outputs=['test_set_preds'],\n", + " image='mlrun/ml-models')\n", + "\n", + " \n", + " with dsl.Condition(deploy_streaming == True):\n", + " \n", + " # deploy the model using nuclio functions\n", + " deploy = funcs['serving'].deploy_step(env={'model_path': train.outputs['model'],\n", + " 'FEATURES_TABLE': streaming_features_table,\n", + " 'PREDICTIONS_TABLE': streaming_predictions_table,\n", + " 'prediction_col': predictions_col}, \n", + " tag='v1')\n", + "\n", + " # test out new model server (via REST API calls)\n", + " tester = funcs[\"model_server-tester\"].as_step(name='model-tester',\n", + " params={'addr': deploy.outputs['endpoint'], \n", + " 'model': \"predictor\",\n", + " 'label_column': label_column},\n", + " inputs={'table': train.outputs['test_set']},\n", + " outputs=['test_set_preds'])\n", + " \n", + " # Streaming demo functions\n", + " preprocessor = funcs['create_feature_vector'].deploy_step(env={ 'aggregate_fn_url': aggregate_fn_url,\n", + " 'METRICS_TABLE': streaming_metrics_table,\n", + " 'FEATURES_TABLE': streaming_features_table,\n", + " 'metrics': metrics,\n", + " 'metric_aggs': metric_aggs,\n", + " 'suffix': suffix,\n", + " 'base_dataset': train.outputs['test_set'],\n", + " 'label_col': label_column}).after(tester)\n", + "\n", + " labeled_stream_creator = funcs['labeled_stream'].deploy_step(env={'METRICS_TABLE': streaming_metrics_table,\n", + " 'PREDICTIONS_TABLE': streaming_predictions_table,\n", + " 'OUTPUT_STREAM': streaming_labeled_table,\n", + " 'label_col': label_column,\n", + " 'prediction_col': predictions_col}).after(tester)\n", + "\n", + " generator = funcs['generator'].deploy_step(env={'SAVE_TO': streaming_metrics_table,\n", + " 'SECS_TO_GENERATE': secs_to_generate}).after(preprocessor)\n", + " \n", + " with dsl.Condition(deploy_concept_drift == True):\n", + "\n", + " concept_builder = funcs['concept_drift'].deploy_step(skip_deployed=True)\n", + "\n", + " concept_drift = funcs['concept_drift'].as_step(name='concept_drift_deployer',\n", + " params={'models': concept_drift_models,\n", + " 'label_col': label_column,\n", + " 'prediction_col': predictions_col,\n", + " 'output_tsdb': output_tsdb,\n", + " 'input_stream': f'{input_stream}@cds',\n", + " 'output_stream': output_stream},\n", + " inputs={'base_dataset': test.outputs['test_set_preds']},\n", + " artifact_path=mlconf.artifact_path,\n", + " image=concept_builder.outputs['image']).after(labeled_stream_creator)\n", + "\n", + " s2p = funcs['s2p'].deploy_step(env={'window': 10,\n", + " 'features': metrics,\n", + " 'save_to': streaming_parquet_table,\n", + " 'base_dataset': test.outputs['test_set_preds'],\n", + " 'results_tsdb_container': 'users',\n", + " 'results_tsdb_table': results_tsdb_table,\n", + " 'mount_path': '/users/admin',\n", + " 'mount_remote': '/User'}).after(tester)\n", + " " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Add workflow" + ] + }, + { + "cell_type": "code", + "execution_count": 54, + "metadata": {}, + "outputs": [], + "source": [ + "newproj.set_workflow('main', os.path.join(os.path.abspath(newproj.context), 'src', 'workflow.py'))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Save Project" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "newproj.save(os.path.join(newproj.context, 'project.yaml'))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Run workflow" + ] + }, + { + "cell_type": "code", + "execution_count": 55, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "> 2020-08-04 09:33:31,943 [warning] WARNING!, you seem to have uncommitted git changes, use .push()\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/conda/lib/python3.6/site-packages/kfp/components/_data_passing.py:168: UserWarning: Missing type name was inferred as \"JsonArray\" based on the value \"['cpu_utilization', 'throughput', 'packet_loss', 'latency']\".\n", + " warnings.warn('Missing type name was inferred as \"{}\" based on the value \"{}\".'.format(type_name, str(value)))\n", + "/conda/lib/python3.6/site-packages/kfp/components/_data_passing.py:168: UserWarning: Missing type name was inferred as \"JsonArray\" based on the value \"['mean', 'sum', 'std', 'var', 'min', 'max', 'median']\".\n", + " warnings.warn('Missing type name was inferred as \"{}\" based on the value \"{}\".'.format(type_name, str(value)))\n", + "/conda/lib/python3.6/site-packages/kfp/components/_data_passing.py:168: UserWarning: Missing type name was inferred as \"Integer\" based on the value \"10\".\n", + " warnings.warn('Missing type name was inferred as \"{}\" based on the value \"{}\".'.format(type_name, str(value)))\n", + "/conda/lib/python3.6/site-packages/kfp/components/_data_passing.py:168: UserWarning: Missing type name was inferred as \"Float\" based on the value \"0.3\".\n", + " warnings.warn('Missing type name was inferred as \"{}\" based on the value \"{}\".'.format(type_name, str(value)))\n", + "/conda/lib/python3.6/site-packages/kfp/components/_data_passing.py:168: UserWarning: Missing type name was inferred as \"JsonArray\" based on the value \"[1, 0]\".\n", + " warnings.warn('Missing type name was inferred as \"{}\" based on the value \"{}\".'.format(type_name, str(value)))\n", + "/conda/lib/python3.6/site-packages/kfp/components/_data_passing.py:168: UserWarning: Missing type name was inferred as \"Boolean\" based on the value \"True\".\n", + " warnings.warn('Missing type name was inferred as \"{}\" based on the value \"{}\".'.format(type_name, str(value)))\n", + "/conda/lib/python3.6/site-packages/kfp/components/_data_passing.py:168: UserWarning: Missing type name was inferred as \"Integer\" based on the value \"5\".\n", + " warnings.warn('Missing type name was inferred as \"{}\" based on the value \"{}\".'.format(type_name, str(value)))\n", + "/conda/lib/python3.6/site-packages/kfp/components/_data_passing.py:168: UserWarning: Missing type name was inferred as \"Integer\" based on the value \"3\".\n", + " warnings.warn('Missing type name was inferred as \"{}\" based on the value \"{}\".'.format(type_name, str(value)))\n", + "/conda/lib/python3.6/site-packages/kfp/components/_data_passing.py:168: UserWarning: Missing type name was inferred as \"Integer\" based on the value \"-1\".\n", + " warnings.warn('Missing type name was inferred as \"{}\" based on the value \"{}\".'.format(type_name, str(value)))\n", + "/conda/lib/python3.6/site-packages/kfp/components/_data_passing.py:168: UserWarning: Missing type name was inferred as \"Float\" based on the value \"0.1\".\n", + " warnings.warn('Missing type name was inferred as \"{}\" based on the value \"{}\".'.format(type_name, str(value)))\n", + "/conda/lib/python3.6/site-packages/kfp/components/_data_passing.py:168: UserWarning: Missing type name was inferred as \"Float\" based on the value \"0.75\".\n", + " warnings.warn('Missing type name was inferred as \"{}\" based on the value \"{}\".'.format(type_name, str(value)))\n", + "/conda/lib/python3.6/site-packages/kfp/components/_data_passing.py:168: UserWarning: Missing type name was inferred as \"JsonArray\" based on the value \"['ddm', 'eddm', 'pagehinkley']\".\n", + " warnings.warn('Missing type name was inferred as \"{}\" based on the value \"{}\".'.format(type_name, str(value)))\n" + ] + }, + { + "data": { + "text/html": [ + "Experiment link here" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "Run link here" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "> 2020-08-04 09:33:33,588 [info] Pipeline run id=2dd5af9d-341c-4775-8bea-5f1f3476ae22, check UI or DB for progress\n" + ] + }, + { + "data": { + "text/plain": [ + "'2dd5af9d-341c-4775-8bea-5f1f3476ae22'" + ] + }, + "execution_count": 55, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "newproj.run('main', artifact_path=ARTIFACT_PATH, dirty=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 38, + "metadata": { + "collapsed": true, + "jupyter": { + "outputs_hidden": true + } + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
cpu_utilizationlatencypacket_lossthroughputpredictions
timestampcompanydata_centerdevice
2020-07-28 02:12:24.670Sanchez__Nunez_and_FullerKristin_Road845250117669278.6489909.6716230.000000261.119679False
977483591427363.2296308.3930252.178797263.886592False
Richardson_GroupMichael_Fords870798432364959.7959000.0000000.547518259.218969False
098563415299783.6603150.0000000.000000267.094270False
Moody_Causeway966081835420863.8253770.0000000.000000227.297569False
863160818072264.6007092.2388994.058517232.341376False
2020-07-28 02:12:29.670Sanchez__Nunez_and_FullerBrown_Camp818180041788656.4869868.2321131.944722243.471848False
911967719016867.8124180.0000003.000112237.461574False
Kristin_Road845250117669260.2192260.0000000.000000294.262109False
977483591427367.7903050.0000000.000000252.992391False
Richardson_GroupMichael_Fords870798432364954.2485830.0000000.073655213.119981False
098563415299771.3330912.7822310.947214213.371509False
Moody_Causeway966081835420860.4400960.0000000.000000239.855870False
863160818072294.5386911.6481333.806341229.520344False
2020-07-28 02:12:34.670Sanchez__Nunez_and_FullerBrown_Camp818180041788669.5163290.0000001.408562249.635498False
911967719016867.5996322.3057620.000000256.062876False
Kristin_Road845250117669259.6292670.0000000.000000242.300090False
977483591427355.8995860.0000000.000000254.062317False
Richardson_GroupMichael_Fords870798432364970.8814290.0000000.000000282.630599False
098563415299772.7064300.5696870.000000244.160857False
Moody_Causeway966081835420859.6133815.7194020.000000231.289114False
863160818072268.3412360.0000005.997846281.906543False
\n", + "
" + ], + "text/plain": [ + " cpu_utilization \\\n", + "timestamp company data_center device \n", + "2020-07-28 02:12:24.670 Sanchez__Nunez_and_Fuller Kristin_Road 8452501176692 78.648990 \n", + " 9774835914273 63.229630 \n", + " Richardson_Group Michael_Fords 8707984323649 59.795900 \n", + " 0985634152997 83.660315 \n", + " Moody_Causeway 9660818354208 63.825377 \n", + " 8631608180722 64.600709 \n", + "2020-07-28 02:12:29.670 Sanchez__Nunez_and_Fuller Brown_Camp 8181800417886 56.486986 \n", + " 9119677190168 67.812418 \n", + " Kristin_Road 8452501176692 60.219226 \n", + " 9774835914273 67.790305 \n", + " Richardson_Group Michael_Fords 8707984323649 54.248583 \n", + " 0985634152997 71.333091 \n", + " Moody_Causeway 9660818354208 60.440096 \n", + " 8631608180722 94.538691 \n", + "2020-07-28 02:12:34.670 Sanchez__Nunez_and_Fuller Brown_Camp 8181800417886 69.516329 \n", + " 9119677190168 67.599632 \n", + " Kristin_Road 8452501176692 59.629267 \n", + " 9774835914273 55.899586 \n", + " Richardson_Group Michael_Fords 8707984323649 70.881429 \n", + " 0985634152997 72.706430 \n", + " Moody_Causeway 9660818354208 59.613381 \n", + " 8631608180722 68.341236 \n", + "\n", + " latency \\\n", + "timestamp company data_center device \n", + "2020-07-28 02:12:24.670 Sanchez__Nunez_and_Fuller Kristin_Road 8452501176692 9.671623 \n", + " 9774835914273 8.393025 \n", + " Richardson_Group Michael_Fords 8707984323649 0.000000 \n", + " 0985634152997 0.000000 \n", + " Moody_Causeway 9660818354208 0.000000 \n", + " 8631608180722 2.238899 \n", + "2020-07-28 02:12:29.670 Sanchez__Nunez_and_Fuller Brown_Camp 8181800417886 8.232113 \n", + " 9119677190168 0.000000 \n", + " Kristin_Road 8452501176692 0.000000 \n", + " 9774835914273 0.000000 \n", + " Richardson_Group Michael_Fords 8707984323649 0.000000 \n", + " 0985634152997 2.782231 \n", + " Moody_Causeway 9660818354208 0.000000 \n", + " 8631608180722 1.648133 \n", + "2020-07-28 02:12:34.670 Sanchez__Nunez_and_Fuller Brown_Camp 8181800417886 0.000000 \n", + " 9119677190168 2.305762 \n", + " Kristin_Road 8452501176692 0.000000 \n", + " 9774835914273 0.000000 \n", + " Richardson_Group Michael_Fords 8707984323649 0.000000 \n", + " 0985634152997 0.569687 \n", + " Moody_Causeway 9660818354208 5.719402 \n", + " 8631608180722 0.000000 \n", + "\n", + " packet_loss \\\n", + "timestamp company data_center device \n", + "2020-07-28 02:12:24.670 Sanchez__Nunez_and_Fuller Kristin_Road 8452501176692 0.000000 \n", + " 9774835914273 2.178797 \n", + " Richardson_Group Michael_Fords 8707984323649 0.547518 \n", + " 0985634152997 0.000000 \n", + " Moody_Causeway 9660818354208 0.000000 \n", + " 8631608180722 4.058517 \n", + "2020-07-28 02:12:29.670 Sanchez__Nunez_and_Fuller Brown_Camp 8181800417886 1.944722 \n", + " 9119677190168 3.000112 \n", + " Kristin_Road 8452501176692 0.000000 \n", + " 9774835914273 0.000000 \n", + " Richardson_Group Michael_Fords 8707984323649 0.073655 \n", + " 0985634152997 0.947214 \n", + " Moody_Causeway 9660818354208 0.000000 \n", + " 8631608180722 3.806341 \n", + "2020-07-28 02:12:34.670 Sanchez__Nunez_and_Fuller Brown_Camp 8181800417886 1.408562 \n", + " 9119677190168 0.000000 \n", + " Kristin_Road 8452501176692 0.000000 \n", + " 9774835914273 0.000000 \n", + " Richardson_Group Michael_Fords 8707984323649 0.000000 \n", + " 0985634152997 0.000000 \n", + " Moody_Causeway 9660818354208 0.000000 \n", + " 8631608180722 5.997846 \n", + "\n", + " throughput \\\n", + "timestamp company data_center device \n", + "2020-07-28 02:12:24.670 Sanchez__Nunez_and_Fuller Kristin_Road 8452501176692 261.119679 \n", + " 9774835914273 263.886592 \n", + " Richardson_Group Michael_Fords 8707984323649 259.218969 \n", + " 0985634152997 267.094270 \n", + " Moody_Causeway 9660818354208 227.297569 \n", + " 8631608180722 232.341376 \n", + "2020-07-28 02:12:29.670 Sanchez__Nunez_and_Fuller Brown_Camp 8181800417886 243.471848 \n", + " 9119677190168 237.461574 \n", + " Kristin_Road 8452501176692 294.262109 \n", + " 9774835914273 252.992391 \n", + " Richardson_Group Michael_Fords 8707984323649 213.119981 \n", + " 0985634152997 213.371509 \n", + " Moody_Causeway 9660818354208 239.855870 \n", + " 8631608180722 229.520344 \n", + "2020-07-28 02:12:34.670 Sanchez__Nunez_and_Fuller Brown_Camp 8181800417886 249.635498 \n", + " 9119677190168 256.062876 \n", + " Kristin_Road 8452501176692 242.300090 \n", + " 9774835914273 254.062317 \n", + " Richardson_Group Michael_Fords 8707984323649 282.630599 \n", + " 0985634152997 244.160857 \n", + " Moody_Causeway 9660818354208 231.289114 \n", + " 8631608180722 281.906543 \n", + "\n", + " predictions \n", + "timestamp company data_center device \n", + "2020-07-28 02:12:24.670 Sanchez__Nunez_and_Fuller Kristin_Road 8452501176692 False \n", + " 9774835914273 False \n", + " Richardson_Group Michael_Fords 8707984323649 False \n", + " 0985634152997 False \n", + " Moody_Causeway 9660818354208 False \n", + " 8631608180722 False \n", + "2020-07-28 02:12:29.670 Sanchez__Nunez_and_Fuller Brown_Camp 8181800417886 False \n", + " 9119677190168 False \n", + " Kristin_Road 8452501176692 False \n", + " 9774835914273 False \n", + " Richardson_Group Michael_Fords 8707984323649 False \n", + " 0985634152997 False \n", + " Moody_Causeway 9660818354208 False \n", + " 8631608180722 False \n", + "2020-07-28 02:12:34.670 Sanchez__Nunez_and_Fuller Brown_Camp 8181800417886 False \n", + " 9119677190168 False \n", + " Kristin_Road 8452501176692 False \n", + " 9774835914273 False \n", + " Richardson_Group Michael_Fords 8707984323649 False \n", + " 0985634152997 False \n", + " Moody_Causeway 9660818354208 False \n", + " 8631608180722 False " + ] + }, + "execution_count": 38, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pd.read_parquet('streaming/predictions/20200728T021224-20200728T021234.parquet')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python [conda env:root] *", + "language": "python", + "name": "conda-root-py" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.8" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/faces/client/__init__.py b/network-operations/project.yaml similarity index 100% rename from faces/client/__init__.py rename to network-operations/project.yaml diff --git a/network-operations/src/generator.yaml b/network-operations/src/generator.yaml new file mode 100644 index 00000000..a8cf7dee --- /dev/null +++ b/network-operations/src/generator.yaml @@ -0,0 +1,62 @@ +kind: remote +metadata: + name: nuclio-generator + tag: '' + hash: eb70efde7419915820f5e88d0134fe9737c80281 + project: '' +spec: + command: '' + args: [] + image: '' + description: '' + min_replicas: 1 + max_replicas: 4 + env: + - name: V3IO_API + value: '' + - name: V3IO_USERNAME + value: '' + - name: V3IO_ACCESS_KEY + value: '' + config: + spec.triggers.cron: + kind: cron + attributes: + interval: 1m + base_spec: + apiVersion: nuclio.io/v1 + kind: Function + metadata: + annotations: + nuclio.io/generated_by: function generated from 08-07-2020 by admin + labels: {} + name: nuclio-generator + spec: + build: + commands: + - pip install pyarrow + - pip install pandas + - pip install pytimeparse + - pip install v3io_frames --upgrade + - pip install -i https://test.pypi.org/simple/ v3io-generator + - pip install faker + functionSourceCode: IyBHZW5lcmF0ZWQgYnkgbnVjbGlvLmV4cG9ydC5OdWNsaW9FeHBvcnRlcgoKaW1wb3J0IG9zCmltcG9ydCB0aW1lCmltcG9ydCB5YW1sCmltcG9ydCBwYW5kYXMgYXMgcGQKaW1wb3J0IGl0ZXJ0b29scwppbXBvcnQgZGF0ZXRpbWUKCmltcG9ydCB2M2lvX2ZyYW1lcyBhcyB2M2YKCmZyb20gdjNpb19nZW5lcmF0b3IgaW1wb3J0IG1ldHJpY3NfZ2VuZXJhdG9yLCBkZXBsb3ltZW50X2dlbmVyYXRvcgoKZGVmIF9jcmVhdGVfZGVwbG95bWVudCgpOgogICAgcHJpbnQoJ2NyZWF0aW5nIGRlcGxveW1lbnQnKQogICAgZGVwX2dlbiA9IGRlcGxveW1lbnRfZ2VuZXJhdG9yLmRlcGxveW1lbnRfZ2VuZXJhdG9yKCkKICAgIGZha2VyPWRlcF9nZW4uZ2V0X2Zha2VyKCkKCiAgICBkZXBfZ2VuLmFkZF9sZXZlbChuYW1lPSdjb21wYW55JyxudW1iZXI9MixsZXZlbF90eXBlPWZha2VyLmNvbXBhbnkpCiAgICBkZXBfZ2VuLmFkZF9sZXZlbCgnZGF0YV9jZW50ZXInLG51bWJlcj0yLGxldmVsX3R5cGU9ZmFrZXIuc3RyZWV0X25hbWUpCiAgICBkZXBfZ2VuLmFkZF9sZXZlbCgnZGV2aWNlJyxudW1iZXI9MixsZXZlbF90eXBlPWZha2VyLm1zaXNkbikKCiAgICBkZXBsb3ltZW50X2RmID0gZGVwX2dlbi5nZW5lcmF0ZV9kZXBsb3ltZW50KCkKICAgIHJldHVybiBkZXBsb3ltZW50X2RmCgpkZWYgX2lzX2RlcGxveW1lbnRfZXhpc3QocGF0aCk6CiAgICByZXR1cm4gb3MucGF0aC5leGlzdHMoZicvdjNpby9iaWdkYXRhL3twYXRofScpCgpkZWYgX2dldF9kZXBsb3ltZW50X2Zyb21fa3YoY2xpZW50LCBwYXRoKToKICAgIHByaW50KGYnUmV0cmlldmluZyBkZXBsb3ltZW50IGZyb20ge3BhdGh9JykKICAgIGNvbnRleHQubG9nZ2VyLmRlYnVnKGYnUmV0cmlldmluZyBkZXBsb3ltZW50IGZyb20ge3BhdGh9JykKICAgIGRlcGxveW1lbnRfZGYgPSBjbGllbnQucmVhZChiYWNrZW5kPSdrdicsIHRhYmxlPXBhdGgpCiAgICAKICAgIGRlcGxveW1lbnRfZGYuaW5kZXgubmFtZSA9ICdkZXZpY2UnCiAgICBkZXBsb3ltZW50X2RmID0gZGVwbG95bWVudF9kZi5yZXNldF9pbmRleCgpCiAgICByZXR1cm4gZGVwbG95bWVudF9kZgoKZGVmIF9zYXZlX2RlcGxveW1lbnRfdG9fa3YocGF0aCwgZGYsIGNsaWVudD12M2YuQ2xpZW50KCdmcmFtZXNkOjgwODEnKSk6CiAgICBjbGllbnQud3JpdGUoYmFja2VuZD0na3YnLCB0YWJsZT0nbmV0b3BzX2RldmljZXMnLGRmcz1kZiwgaW5kZXhfY29scz1bJ2RldmljZSddKQoKZGVmIGdldF9vcl9jcmVhdGVfZGVwbG95bWVudChwYXRoLCBzYXZlX3RvX2Nsb3VkPUZhbHNlLCBjbGllbnQ9Tm9uZSk6CiAgICBpZiBjbGllbnQgYW5kIF9pc19kZXBsb3ltZW50X2V4aXN0KHBhdGgpOgogICAgICAgIGRlcGxveW1lbnRfZGYgPSBfZ2V0X2RlcGxveW1lbnRfZnJvbV9rdihjbGllbnQsIHBhdGgpCiAgICBlbHNlOgogICAgICAgIGRlcGxveW1lbnRfZGYgPSBfY3JlYXRlX2RlcGxveW1lbnQoKQogICAgICAgIAogICAgICAgIGlmIGNsaWVudCBhbmQgc2F2ZV90b19jbG91ZDoKICAgICAgICAgICAgX3NhdmVfZGVwbG95bWVudF90b19rdihwYXRoLCBkZXBsb3ltZW50X2RmLCBjbGllbnQpCgogICAgcmV0dXJuIGRlcGxveW1lbnRfZGYKCmRlZiBzZXRfaW5kZXhlcyhkZik6CiAgICBkZiA9IGRmLnNldF9pbmRleChbJ3RpbWVzdGFtcCcsICdjb21wYW55JywgJ2RhdGFfY2VudGVyJywgJ2RldmljZSddKQogICAgcmV0dXJuIGRmCgpkZWYgc2F2ZV9tZXRyaWNzX3RvX3RzZGIoY29udGV4dCwgbWV0cmljczogcGQuRGF0YUZyYW1lKToKICAgIHByaW50KCdTYXZpbmcgbWV0cmljcyB0byBUU0RCJykKICAgIAogICAgY29udGV4dC52M2Yud3JpdGUoJ3RzZGInLCBjb250ZXh0Lm1ldHJpY3NfdGFibGUsIG1ldHJpY3MpCgpkZWYgc2F2ZV9tZXRyaWNzX3RvX3BhcnF1ZXQoY29udGV4dCwgbWV0cmljcyk6CiAgICBwcmludCgnU2F2aW5nIG1ldHJpY3MgdG8gUGFycXVldCcpCiAgICBkZiA9IHBkLmNvbmNhdChpdGVydG9vbHMuY2hhaW4obWV0cmljcykpCiAgICAKICAgIGRmID0gZGYucmVzZXRfaW5kZXgoKQogICAgZGZbJ3RpbWVzdGFtcCddID0gZGYubG9jWzosICd0aW1lc3RhbXAnXS5hc3R5cGUoJ2RhdGV0aW1lNjRbbXNdJykKICAgIAogICAgZGYgPSBzZXRfaW5kZXhlcyhkZikKICAgIAogICAgZmlyc3RfdGltZXN0YW1wID0gZGYuaW5kZXhbMF1bMF0uc3RyZnRpbWUoJyVZJW0lZFQlSCVNJVMnKQogICAgbGFzdF90aW1lc3RhbXAgPSBkZi5pbmRleFstMV1bMF0uc3RyZnRpbWUoJyVZJW0lZFQlSCVNJVMnKQogICAgZmlsZW5hbWUgPSBmaXJzdF90aW1lc3RhbXAgKyAnLScgKyBsYXN0X3RpbWVzdGFtcCArICcucGFycXVldCcKICAgIHByaW50KGZpbGVuYW1lKQogICAgZmlsZXBhdGggPSBvcy5wYXRoLmpvaW4oY29udGV4dC5tZXRyaWNzX3RhYmxlLCBmaWxlbmFtZSkKICAgIHByaW50KGZpbGVwYXRoKQogICAgd2l0aCBvcGVuKGZpbGVwYXRoLCAnd2IrJykgYXMgZjoKICAgICAgICBkZi50b19wYXJxdWV0KGYpCgpkZWYgaXNfZGVwbG95bWVudF9pbml0aWFsaXplZChjb250ZXh0KToKICAgIHJldHVybiBoYXNhdHRyKGNvbnRleHQsICdtZXRyaWNfZ2VuZXJhdG9yJykKCmRlZiBpbml0X2NvbnRleHQoY29udGV4dCk6CiAgICAKICAgIHNhdmVfdG9fdHNkYiA9IChpbnQob3MuZ2V0ZW52KCdTQVZFX1RPX1RTREInLCAxKSkgPT0gMSkKICAgIAogICAgbWV0cmljc190YWJsZSA9IG9zLmdldGVudignU0FWRV9UTycsICduZXRvcHNfbWV0cmljcycpCiAgICBzZXRhdHRyKGNvbnRleHQsICdtZXRyaWNzX3RhYmxlJywgbWV0cmljc190YWJsZSkgCgogICAgaWYgc2F2ZV90b190c2RiOgogICAgICAgIGNvbnRleHQubG9nZ2VyLmRlYnVnKCdTYXZpbmcgdG8gVFNEQicpCiAgICAgICAgY2xpZW50ID0gdjNmLkNsaWVudChhZGRyZXNzPSdmcmFtZXNkOjgwODEnLCBjb250YWluZXI9J2JpZ2RhdGEnKQogICAgICAgIAogICAgICAgIGNsaWVudC5jcmVhdGUoJ3RzZGInLCBtZXRyaWNzX3RhYmxlLCByYXRlPScxL3MnLCBpZl9leGlzdHM9MSkKICAgICAgICAKICAgICAgICBzZXRhdHRyKGNvbnRleHQsICd3cml0ZScsIHNhdmVfbWV0cmljc190b190c2RiKQogICAgCiAgICBlbHNlOgogICAgICAgIGNvbnRleHQubG9nZ2VyLmRlYnVnKCdTYXZpbmcgdG8gUGFycXVldCcpCiAgICAgICAgY2xpZW50ID0gTm9uZQogICAgICAgICAgCiAgICAgICAgZmlsZXBhdGggPSBvcy5wYXRoLmpvaW4obWV0cmljc190YWJsZSkKICAgICAgICBpZiBub3Qgb3MucGF0aC5leGlzdHMoZmlsZXBhdGgpOgogICAgICAgICAgICBvcy5tYWtlZGlycyhmaWxlcGF0aCkKICAgICAgICAKICAgICAgICBzZXRhdHRyKGNvbnRleHQsICd3cml0ZScsIHNhdmVfbWV0cmljc190b19wYXJxdWV0KQogICAgCiAgICAgICAgICAKICAgIHNlY3NfdG9fZ2VuZXJhdGUgPSBvcy5nZXRlbnYoJ1NFQ1NfVE9fR0VORVJBVEUnLCAxMCkKICAgIHNldGF0dHIoY29udGV4dCwgJ3NlY3NfdG9fZ2VuZXJhdGUnLCBzZWNzX3RvX2dlbmVyYXRlKQogICAgCiAgICAgCiAgICAKICAgIGRlcGxveW1lbnRfZGYgPSBnZXRfb3JfY3JlYXRlX2RlcGxveW1lbnQob3MuZW52aXJvblsnREVQTE9ZTUVOVF9UQUJMRSddLCBvcy5lbnZpcm9uWydTQVZFX0RFUExPWU1FTlQnXSwgY2xpZW50KQogICAgCiAgICBkZXBsb3ltZW50X2RmWydjcHVfdXRpbGl6YXRpb24nXSA9IDcwCiAgICBkZXBsb3ltZW50X2RmWydsYXRlbmN5J10gPSAwCiAgICBkZXBsb3ltZW50X2RmWydwYWNrZXRfbG9zcyddID0gMAogICAgZGVwbG95bWVudF9kZlsndGhyb3VnaHB1dCddID0gMjkwCiAgICBkZXBsb3ltZW50X2RmLmhlYWQoKQogICAgCiAgICB3aXRoIG9wZW4ob3MuZ2V0ZW52KCdNRVRSSUNTX0NPTkZJR1VSQVRJT05fRklMRVBBVEgnLCAnL2NvbmZpZ3VyYXRpb25zL21ldHJpY3NfY29uZmlndXJhdGlvbi55YW1sJyksICdyJykgYXMgZjoKICAgICAgICBtZXRyaWNzX2NvbmZpZ3VyYXRpb24gPSB5YW1sLmxvYWQoZikKICAgICAgICAKICAgIGluaXRpYWxfdGltZXN0YW1wID0gaW50KG9zLmdldGVudignaW5pdGlhbF90aW1lc3RhbXAnLCAoZGF0ZXRpbWUuZGF0ZXRpbWUubm93KCktZGF0ZXRpbWUudGltZWRlbHRhKGRheXM9MSkpLnRpbWVzdGFtcCgpKSkKICAgIG1ldF9nZW4gPSBtZXRyaWNzX2dlbmVyYXRvci5HZW5lcmF0b3JfZGYobWV0cmljc19jb25maWd1cmF0aW9uLCAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgdXNlcl9oaWVyYXJjaHk9ZGVwbG95bWVudF9kZiwgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGluaXRpYWxfdGltZXN0YW1wPWluaXRpYWxfdGltZXN0YW1wKQogICAgc2V0YXR0cihjb250ZXh0LCAnbWV0cmljX2dlbmVyYXRvcicsIG1ldF9nZW4pCiAgICAKICAgIHNldGF0dHIoY29udGV4dCwgJ3YzZicsIGNsaWVudCkKCmRlZiBoYW5kbGVyKGNvbnRleHQsIGV2ZW50KToKICAgICAgIAogICAgbWV0cmljcyA9IGNvbnRleHQubWV0cmljX2dlbmVyYXRvci5nZW5lcmF0ZV9yYW5nZShzdGFydF90aW1lPWRhdGV0aW1lLmRhdGV0aW1lLm5vdygpLAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgZW5kX3RpbWU9ZGF0ZXRpbWUuZGF0ZXRpbWUubm93KCkrZGF0ZXRpbWUudGltZWRlbHRhKHNlY29uZHM9aW50KGNvbnRleHQuc2Vjc190b19nZW5lcmF0ZSkpLAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgYXNfZGY9VHJ1ZSwKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGFzX2l0ZXJhdG9yPVRydWUpCiAgICAKICAgIGNvbnRleHQud3JpdGUoY29udGV4dCwgbWV0cmljcykKCg== + noBaseImagesPull: true + baseImage: mlrun/ml-models:unstable + env: + - name: SAVE_DEPLOYMENT + value: '1' + - name: DEPLOYMENT_TABLE + value: devices + - name: METRICS_CONFIGURATION_FILEPATH + value: /User/demos/network-operations/src/metric_configurations.yaml + - name: SAVE_TO + value: /User/demos/network-operations/streaming/metrics + - name: SECS_TO_GENERATE + value: '3600' + - name: SAVE_TO_TSDB + value: '0' + handler: generator:handler + runtime: python:3.6 + volumes: [] + source: '' diff --git a/network-operations/src/inference-server.yaml b/network-operations/src/inference-server.yaml new file mode 100644 index 00000000..72c8d3f1 --- /dev/null +++ b/network-operations/src/inference-server.yaml @@ -0,0 +1,106 @@ +kind: remote +metadata: + name: inference-server + tag: '' + hash: fe43dd9dc63569c6c7eaa34a31beef89a34bccb8 + project: network-operations +spec: + command: '' + args: [] + image: '' + entry_points: + get_data_parquet: + name: get_data_parquet + doc: '' + parameters: + - name: context + default: '' + outputs: + - default: '' + lineno: 11 + save_to_parquet: + name: save_to_parquet + doc: '' + parameters: + - name: context + default: '' + - name: df + type: DataFrame + default: '' + outputs: + - default: '' + lineno: 16 + init_context: + name: init_context + doc: '' + parameters: + - name: context + default: '' + outputs: + - default: '' + lineno: 32 + handler: + name: handler + doc: '' + parameters: + - name: context + default: '' + - name: event + default: '' + outputs: + - default: '' + lineno: 56 + description: '' + min_replicas: 1 + max_replicas: 4 + env: + - name: V3IO_API + value: '' + - name: V3IO_USERNAME + value: '' + - name: V3IO_ACCESS_KEY + value: '' + config: + spec.triggers.cron: + kind: cron + attributes: + interval: 1m + base_spec: + apiVersion: nuclio.io/v1 + kind: Function + metadata: + annotations: + nuclio.io/generated_by: function generated from 09-08-2020 by admin + labels: {} + name: inference-server + spec: + build: + commands: [] + functionSourceCode: IyBHZW5lcmF0ZWQgYnkgbnVjbGlvLmV4cG9ydC5OdWNsaW9FeHBvcnRlcgoKaW1wb3J0IG9zCmltcG9ydCBwYW5kYXMgYXMgcGQKaW1wb3J0IGNsb3VkcGlja2xlCmltcG9ydCBudW1weSBhcyBucAppbXBvcnQganNvbgpmcm9tIG1scnVuIGltcG9ydCBnZXRfb3JfY3JlYXRlX2N0eAppbXBvcnQgc29ja2V0CgpkZWYgZ2V0X2RhdGFfcGFycXVldChjb250ZXh0KToKICAgIG1wYXRoID0gW29zLnBhdGguam9pbihjb250ZXh0LmZlYXR1cmVzX3RhYmxlLCBmaWxlKSBmb3IgZmlsZSBpbiBvcy5saXN0ZGlyKGNvbnRleHQuZmVhdHVyZXNfdGFibGUpIGlmIGZpbGUuZW5kc3dpdGgoKCdwYXJxdWV0JywgJ3BxJykpXQogICAgZmlsZXNfYnlfdXBkYXRlZCA9IHNvcnRlZChtcGF0aCwga2V5PW9zLnBhdGguZ2V0bXRpbWUsIHJldmVyc2U9VHJ1ZSkKICAgIHJldHVybiBwZC5yZWFkX3BhcnF1ZXQoZmlsZXNfYnlfdXBkYXRlZFs6MV1bMF0pCgpkZWYgc2F2ZV90b19wYXJxdWV0KGNvbnRleHQsIGRmOiBwZC5EYXRhRnJhbWUpOgogICAgcHJpbnQoJ1NhdmluZyBmZWF0dXJlcyB0byBQYXJxdWV0JykKICAgIAogICAga2V5cyA9IGxpc3QoZGYuaW5kZXgubmFtZXMpICsgW2NvbnRleHQubW9kZWxfY29sLCBjb250ZXh0Lm1vZGVsX2NsYXNzX2NvbCwgY29udGV4dC53b3JrZXJfY29sLCBjb250ZXh0Lmhvc3RuYW1lX2NvbF0KICAgIGRmID0gZGYucmVzZXRfaW5kZXgoKQogICAgZGZbJ3RpbWVzdGFtcCddID0gZGYubG9jWzosICd0aW1lc3RhbXAnXS5hc3R5cGUoJ2RhdGV0aW1lNjRbbXNdJykKICAgIAogICAgZGYgPSBkZi5zZXRfaW5kZXgoa2V5cykKICAgIAogICAgZmlyc3RfdGltZXN0YW1wID0gZGYuaW5kZXhbMF1bMF0uc3RyZnRpbWUoJyVZJW0lZFQlSCVNJVMnKQogICAgbGFzdF90aW1lc3RhbXAgPSBkZi5pbmRleFstMV1bMF0uc3RyZnRpbWUoJyVZJW0lZFQlSCVNJVMnKQogICAgZmlsZW5hbWUgPSBmaXJzdF90aW1lc3RhbXAgKyAnLScgKyBsYXN0X3RpbWVzdGFtcCArICcucGFycXVldCcKICAgIGZpbGVwYXRoID0gb3MucGF0aC5qb2luKGNvbnRleHQucHJlZGljdGlvbnNfdGFibGUsIGZpbGVuYW1lKQogICAgd2l0aCBvcGVuKGZpbGVwYXRoLCAnd2IrJykgYXMgZjoKICAgICAgICBkZi50b19wYXJxdWV0KGYpCgpkZWYgaW5pdF9jb250ZXh0KGNvbnRleHQpOgogICAgc2V0YXR0cihjb250ZXh0LCAnbW9kZWxfbmFtZScsIG9zLmdldGVudignbW9kZWxfbmFtZScsICduZXRvcHNfbW9kZWwnKSkKICAgIHNldGF0dHIoY29udGV4dCwgJ21vZGVsX2NvbCcsIG9zLmdldGVudignbW9kZWxfY29sJywgJ21vZGVsJykpCiAgICBzZXRhdHRyKGNvbnRleHQsICdtb2RlbF9jbGFzc19jb2wnLCBvcy5nZXRlbnYoJ21vZGVsX2NsYXNzX2NvbCcsICdjbGFzcycpKQogICAgc2V0YXR0cihjb250ZXh0LCAnd29ya2VyX2NvbCcsIG9zLmdldGVudignd29ya2VyX2NvbCcsICd3b3JrZXInKSkKICAgIHNldGF0dHIoY29udGV4dCwgJ2hvc3RuYW1lX2NvbCcsIG9zLmdldGVudignaG9zdG5hbWVfY29sJywgJ2hvc3RuYW1lJykpCiAgICBzZXRhdHRyKGNvbnRleHQsICdmZWF0dXJlc190YWJsZScsIG9zLmdldGVudignRkVBVFVSRVNfVEFCTEUnLCAnbmV0b3BzX2ZlYXR1cmVzJykpCiAgICBzZXRhdHRyKGNvbnRleHQsICdwcmVkaWN0aW9uc190YWJsZScsIG9zLmdldGVudignUFJFRElDVElPTlNfVEFCTEUnLCAnbmV0b3BzX3ByZWRpY3Rpb25zJykpCiAgICBzZXRhdHRyKGNvbnRleHQsICdwcmVkaWN0aW9uX2NvbCcsIG9zLmdldGVudigncHJlZGljdGlvbl9jb2wnLCAncHJlZGljdGlvbicpKQogICAgCiAgICBtb2RlbF9wYXRoID0gb3MuZW52aXJvblsnbW9kZWxfcGF0aCddCiAgICBpZiBtb2RlbF9wYXRoLnN0YXJ0c3dpdGgoJ3N0b3JlOi8vJyk6CiAgICAgICAgbWxjdHggPSBnZXRfb3JfY3JlYXRlX2N0eCgnaW5mZXJlbmNlJykKICAgICAgICBtb2RlbCA9IG1sY3R4LmdldF9kYXRhaXRlbShtb2RlbF9wYXRoKQogICAgICAgIG1vZGVsX3BhdGggPSBvcy5wYXRoLmpvaW4obW9kZWwudXJsLCAnbW9kZWwucGtsJykKICAgIHdpdGggb3Blbihtb2RlbF9wYXRoLCAncmInKSBhcyBmOgogICAgICAgIG1vZGVsID0gY2xvdWRwaWNrbGUubG9hZChmKQogICAgc2V0YXR0cihjb250ZXh0LCAnbW9kZWwnLCBtb2RlbCkKICAgIHNldGF0dHIoY29udGV4dCwgJ21vZGVsX2NsYXNzJywgdHlwZShtb2RlbCkuX19uYW1lX18pCiAgICAKICAgIGZpbGVwYXRoID0gb3MucGF0aC5qb2luKGNvbnRleHQucHJlZGljdGlvbnNfdGFibGUpCiAgICBpZiBub3Qgb3MucGF0aC5leGlzdHMoZmlsZXBhdGgpOgogICAgICAgIG9zLm1ha2VkaXJzKGZpbGVwYXRoKQoKZGVmIGhhbmRsZXIoY29udGV4dCwgZXZlbnQpOgogICAgCiAgICBpZiBnZXRhdHRyKGV2ZW50LnRyaWdnZXIsICdraW5kJywgJ2Nyb24nKSA9PSAnY3Jvbic6CiAgICAgICAgZGYgPSBnZXRfZGF0YV9wYXJxdWV0KGNvbnRleHQpCgogICAgICAgIGRmW2NvbnRleHQucHJlZGljdGlvbl9jb2xdID0gY29udGV4dC5tb2RlbC5wcmVkaWN0KGRmLnZhbHVlcykKICAgICAgICAKICAgICAgICBkZltjb250ZXh0Lm1vZGVsX2NvbF0gPSBjb250ZXh0Lm1vZGVsX25hbWUKICAgICAgICBkZltjb250ZXh0Lm1vZGVsX2NsYXNzX2NvbF0gPSBjb250ZXh0Lm1vZGVsX2NsYXNzCiAgICAgICAgZGZbY29udGV4dC53b3JrZXJfY29sXSA9IGNvbnRleHQud29ya2VyX2lkCiAgICAgICAgZGZbY29udGV4dC5ob3N0bmFtZV9jb2xdID0gc29ja2V0LmdldGhvc3RuYW1lKCkKCiAgICAgICAgc2F2ZV90b19wYXJxdWV0KGNvbnRleHQsIGRmKQogICAgZWxzZToKICAgICAgICBib2R5ID0ganNvbi5sb2FkcyhldmVudC5ib2R5KQogICAgICAgIGZlYXRzID0gbnAuYXNhcnJheShib2R5WydpbnN0YW5jZXMnXSkKICAgICAgICByZXN1bHQ6IG5wLm5kYXJyYXkgPSBjb250ZXh0Lm1vZGVsLnByZWRpY3QoZmVhdHMpCiAgICAgICAgcmV0dXJuIHJlc3VsdC50b2xpc3QoKQoK + noBaseImagesPull: true + baseImage: mlrun/ml-models + env: + - name: FEATURES_TABLE + value: /User/demos/network-operations/streaming/features + - name: PREDICTIONS_TABLE + value: /User/demos/network-operations/streaming/predictions + - name: prediction_col + value: predictions + - name: model_path + value: store://network-operations/train_model#f2ea18dd-504d-4d14-83d2-a326fe5afc37 + - name: model_name + value: netops_predictor_v1 + - name: model_class + value: MLRunModel + - name: model_col + value: model + - name: model_class_col + value: class + - name: worker_col + value: worker + - name: hostname_col + value: hostname + handler: server:handler + runtime: python:3.6 + volumes: [] + source: '' diff --git a/network-operations/src/labeled_stream_creator.yaml b/network-operations/src/labeled_stream_creator.yaml new file mode 100644 index 00000000..0f25b79e --- /dev/null +++ b/network-operations/src/labeled_stream_creator.yaml @@ -0,0 +1,135 @@ +kind: remote +metadata: + name: labeled-stream-creator + tag: '' + hash: 4fe9e5827cbec3d3ea0bddc62cd99dabafe36d8e + project: network-operations +spec: + command: '' + args: [] + image: '' + entry_points: + split_path: + name: split_path + doc: '' + parameters: + - name: mntpath + default: '' + outputs: + - default: '' + lineno: 10 + create_stream: + name: create_stream + doc: '' + parameters: + - name: context + default: '' + - name: path + default: '' + - name: shards + default: 1 + outputs: + - default: '' + lineno: 20 + push_to_stream: + name: push_to_stream + doc: '' + parameters: + - name: context + default: '' + - name: stream_path + default: '' + - name: data + default: '' + outputs: + - default: '' + lineno: 29 + restructure_stream_event: + name: restructure_stream_event + doc: '' + parameters: + - name: context + default: '' + - name: event + default: '' + outputs: + - default: '' + lineno: 30 + get_data_parquet: + name: get_data_parquet + doc: '' + parameters: + - name: table + default: '' + - name: files_to_select + default: 1 + outputs: + - default: '' + lineno: 49 + init_context: + name: init_context + doc: '' + parameters: + - name: context + default: '' + outputs: + - default: '' + lineno: 56 + handler: + name: handler + doc: '' + parameters: + - name: context + default: '' + - name: event + default: '' + outputs: + - default: '' + lineno: 71 + description: '' + min_replicas: 1 + max_replicas: 4 + env: + - name: V3IO_API + value: '' + - name: V3IO_USERNAME + value: '' + - name: V3IO_ACCESS_KEY + value: '' + config: + spec.triggers.cron: + kind: cron + attributes: + interval: 1m + base_spec: + apiVersion: nuclio.io/v1 + kind: Function + metadata: + annotations: + nuclio.io/generated_by: function generated from 11-08-2020 by admin + labels: {} + name: labeled-stream-creator + spec: + build: + commands: + - python -m pip install v3io --upgrade + functionSourceCode: IyBHZW5lcmF0ZWQgYnkgbnVjbGlvLmV4cG9ydC5OdWNsaW9FeHBvcnRlcgoKaW1wb3J0IG9zCmltcG9ydCBwYW5kYXMgYXMgcGQKaW1wb3J0IGpzb24KaW1wb3J0IHYzaW8KaW1wb3J0IHYzaW8uZGF0YXBsYW5lCmltcG9ydCBzb2NrZXQKCmRlZiBzcGxpdF9wYXRoKG1udHBhdGg9JycpOgogICAgaWYgbW50cGF0aFswXSA9PSAnLyc6CiAgICAgICAgbW50cGF0aCA9IG1udHBhdGhbMTpdCiAgICBwYXRocyA9IG1udHBhdGguc3BsaXQoJy8nKQogICAgY29udGFpbmVyID0gcGF0aHNbMF0KICAgIHN1YnBhdGggPSAnJwogICAgaWYgbGVuKHBhdGhzKSA+IDE6CiAgICAgICAgc3VicGF0aCA9IG1udHBhdGhbbGVuKGNvbnRhaW5lcik6XQogICAgcmV0dXJuIGNvbnRhaW5lciwgc3VicGF0aAoKZGVmIGNyZWF0ZV9zdHJlYW0oY29udGV4dCwgcGF0aCwgc2hhcmRzPTEpOgogICAgY29udGFpbmVyLCBzdHJlYW1fcGF0aCA9IHNwbGl0X3BhdGgocGF0aCkKICAgIGNvbnRleHQubG9nZ2VyLmluZm8oZidDcmVhdGluZyBzdHJlYW0gaW4gQ29udGFpbmVyOiB7Y29udGFpbmVyfSAmIFBhdGgge3N0cmVhbV9wYXRofScpCiAgICByZXNwb25zZSA9IGNvbnRleHQudjNpb19jbGllbnQuY3JlYXRlX3N0cmVhbShjb250YWluZXI9Y29udGFpbmVyLAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgcGF0aD1zdHJlYW1fcGF0aCwgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBzaGFyZF9jb3VudD1zaGFyZHMsCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICByYWlzZV9mb3Jfc3RhdHVzPXYzaW8uZGF0YXBsYW5lLlJhaXNlRm9yU3RhdHVzLm5ldmVyKQogICAgcmVzcG9uc2UucmFpc2VfZm9yX3N0YXR1cyhbNDA5LCAyMDRdKQoKZGVmIHB1c2hfdG9fc3RyZWFtKGNvbnRleHQsIHN0cmVhbV9wYXRoLCBkYXRhKToKICAgIGRlZiByZXN0cnVjdHVyZV9zdHJlYW1fZXZlbnQoY29udGV4dCwgZXZlbnQpOgogICAgICAgIGluc3RhbmNlcyA9IFtkaWN0KCldCiAgICAgICAgZm9yIGtleSBpbiBkYXRhLmtleXMoKToKICAgICAgICAgICAgaWYga2V5IG5vdCBpbiBbJ3doZW4nLCAnY2xhc3MnLCAnbW9kZWwnLCAnd29ya2VyJywgJ2hvc3RuYW1lJywgY29udGV4dC5wcmVkaWN0aW9uX2NvbF06CiAgICAgICAgICAgICAgICBpbnN0YW5jZXNbMF0udXBkYXRlKHtrZXk6IGV2ZW50LnBvcChrZXkpfSkKICAgICAgICBldmVudFsncmVxdWVzdCddID0geydpbnN0YW5jZXMnOiBpbnN0YW5jZXN9CiAgICAgICAgZXZlbnRbJ3Jlc3AnXSA9IFtpbnQoZXZlbnQucG9wKGNvbnRleHQucHJlZGljdGlvbl9jb2wpKV0KICAgICAgICByZXR1cm4gZXZlbnQKICAgIAogICAgcmVjb3JkcyA9IGpzb24ubG9hZHMoZGF0YS50b19qc29uKG9yaWVudD0ncmVjb3JkcycpKQogICAgcmVjb3JkcyA9IFt7J2RhdGEnOiBqc29uLmR1bXBzKHJlc3RydWN0dXJlX3N0cmVhbV9ldmVudChjb250ZXh0LCByZWNvcmQpKX0gZm9yIHJlY29yZCBpbiByZWNvcmRzXQogICAgY29udGV4dC5sb2dnZXIuaW5mbyhmJ0xvZ2dpbmcge2xlbihyZWNvcmRzKX0gcmVjb3JkcywgUmVjb3JkIGV4YW1wbGU6IHtyZWNvcmRzWzBdfScpCiAgICBjb250YWluZXIsIHN0cmVhbV9wYXRoID0gc3BsaXRfcGF0aChzdHJlYW1fcGF0aCkKICAgIHN0ZXAgPSAxMAogICAgZm9yIGlkeCBpbiByYW5nZSgwLCBsZW4ocmVjb3JkcyksIHN0ZXApOgogICAgICAgIHJlc3BvbnNlID0gY29udGV4dC52M2lvX2NsaWVudC5wdXRfcmVjb3Jkcyhjb250YWluZXI9Y29udGFpbmVyLAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBwYXRoPXN0cmVhbV9wYXRoLCAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgcmVjb3Jkcz1yZWNvcmRzW2lkeDppZHgrc3RlcF0pCgpkZWYgZ2V0X2RhdGFfcGFycXVldCh0YWJsZSwgZmlsZXNfdG9fc2VsZWN0PTEpOgogICAgbXBhdGggPSBbb3MucGF0aC5qb2luKHRhYmxlLCBmaWxlKSBmb3IgZmlsZSBpbiBvcy5saXN0ZGlyKHRhYmxlKSBpZiBmaWxlLmVuZHN3aXRoKCgncGFycXVldCcsICdwcScpKV0KICAgIGZpbGVzX2J5X3VwZGF0ZWQgPSBzb3J0ZWQobXBhdGgsIGtleT1vcy5wYXRoLmdldG10aW1lLCByZXZlcnNlPUZhbHNlKQogICAgY29udGV4dC5sb2dnZXIuZGVidWdfd2l0aCgnSW5wdXQnLCBpbnB1dF9maWxlcz1maWxlc19ieV91cGRhdGVkWzpmaWxlc190b19zZWxlY3RdKQogICAgZGZzID0gcGQuY29uY2F0KFtwZC5yZWFkX3BhcnF1ZXQoZmlsZSkgZm9yIGZpbGUgaW4gZmlsZXNfYnlfdXBkYXRlZFs6ZmlsZXNfdG9fc2VsZWN0XV0pCiAgICByZXR1cm4gZGZzCgpkZWYgaW5pdF9jb250ZXh0KGNvbnRleHQpOgogICAgc2V0YXR0cihjb250ZXh0LCAnbWV0cmljc190YWJsZScsIG9zLmVudmlyb25bJ01FVFJJQ1NfVEFCTEUnXSkKICAgIHNldGF0dHIoY29udGV4dCwgJ3ByZWRpY3Rpb25zX3RhYmxlJywgb3MuZW52aXJvblsnUFJFRElDVElPTlNfVEFCTEUnXSkKICAgIHNldGF0dHIoY29udGV4dCwgJ291dHB1dF9zdHJlYW0nLCBvcy5lbnZpcm9uWydPVVRQVVRfU1RSRUFNJ10pCiAgICBzZXRhdHRyKGNvbnRleHQsICd0aW1lc3RhbXBfY29sJywgb3MuZ2V0ZW52KCd0aW1lc3RhbXBfY29sJywgJ3doZW4nKSkKICAgIHNldGF0dHIoY29udGV4dCwgJ29yaWdfdGltZXN0YW1wX2NvbCcsIG9zLmdldGVudignb3JpZ190aW1lc3RhbXBfY29sJywgJ3RpbWVzdGFtcCcpKQogICAgCiAgICB2M2lvX2NsaWVudCA9IHYzaW8uZGF0YXBsYW5lLkNsaWVudChlbmRwb2ludD0naHR0cDovL3YzaW8td2ViYXBpOjgwODEnLCBsb2dnZXJfdmVyYm9zaXR5PSdERUJVRycsIHRyYW5zcG9ydF92ZXJib3NpdHk9J0RFQlVHJykKICAgIHNldGF0dHIoY29udGV4dCwgJ3YzaW9fY2xpZW50JywgdjNpb19jbGllbnQpCiAgICBpZiBoYXNhdHRyKGNvbnRleHQsICd0cmlnZ2VyJykgYW5kIGNvbnRleHQudHJpZ2dlci5raW5kID09ICdjcm9uJzoKICAgICAgICBjcmVhdGVfc3RyZWFtKGNvbnRleHQsIGNvbnRleHQub3V0cHV0X3N0cmVhbSkKICAgIAogICAgc2V0YXR0cihjb250ZXh0LCAnbGFiZWxfY29sJywgb3MuZW52aXJvblsnbGFiZWxfY29sJ10pCiAgICBzZXRhdHRyKGNvbnRleHQsICdwcmVkaWN0aW9uX2NvbCcsIG9zLmVudmlyb25bJ3ByZWRpY3Rpb25fY29sJ10pCgpkZWYgaGFuZGxlcihjb250ZXh0LCBldmVudCk6CiAgICBtZXRyaWNzID0gZ2V0X2RhdGFfcGFycXVldChjb250ZXh0Lm1ldHJpY3NfdGFibGUsIDIpLmxvY1s6LCBjb250ZXh0LmxhYmVsX2NvbF0uYXN0eXBlKCdpbnQnKQogICAgbWV0cmljcy5pbmRleC5uYW1lcyA9IGxpc3QoW25hbWUgaWYgbmFtZSAhPSBjb250ZXh0Lm9yaWdfdGltZXN0YW1wX2NvbCBlbHNlIGNvbnRleHQudGltZXN0YW1wX2NvbCBmb3IgbmFtZSBpbiBtZXRyaWNzLmluZGV4Lm5hbWVzXSkKICAgIHByZWRpY3Rpb25zID0gZ2V0X2RhdGFfcGFycXVldChjb250ZXh0LnByZWRpY3Rpb25zX3RhYmxlLCAyKQogICAgY29udGV4dC5sb2dnZXIuZGVidWcoZidMYWJlbGluZyBtZXRyaWNzICh7bWV0cmljcy5zaGFwZX0pIGFuZCBwcmVkaWN0aW9ucyAoe3ByZWRpY3Rpb25zLnNoYXBlfSknKQogICAgY29udGV4dC5sb2dnZXIuZGVidWdfd2l0aCgnSW5kZXhlcycsIG1ldHJpY3NfaW5kZXg9bWV0cmljcy5pbmRleC5uYW1lcywgcHJlZGljdGlvbnNfaW5kZXg9cHJlZGljdGlvbnMuaW5kZXgubmFtZXMpCiAgICAKICAgIGZ1bGxfZGYgPSBwZC5tZXJnZShsZWZ0PXByZWRpY3Rpb25zLCByaWdodD1tZXRyaWNzLCBsZWZ0X29uPWxpc3QobWV0cmljcy5pbmRleC5uYW1lcyksIGxlZnRfaW5kZXg9VHJ1ZSwgcmlnaHRfaW5kZXg9VHJ1ZSkKICAgIGZ1bGxfZGYgPSBmdWxsX2RmLnJlc2V0X2luZGV4KCkKICAgIGNvbnRleHQubG9nZ2VyLmRlYnVnKGYnRnVsbHkgbGFiZWxlZCBiYXRjaCBzaXplIGlzIHtmdWxsX2RmLnNoYXBlfScpCiAgICBjb250ZXh0LmxvZ2dlci5kZWJ1ZyhmJ0luZGV4ZXM6IHtsaXN0KGZ1bGxfZGYuaW5kZXgubmFtZXMpfScpCiAgICBjb250ZXh0LmxvZ2dlci5kZWJ1ZyhmJ0NvbHVtbnM6IHtmdWxsX2RmLmNvbHVtbnN9JykKICAgIGNvbnRleHQubG9nZ2VyLmRlYnVnX3dpdGgoJ3NhbXBsZScsIGZ1bGxfZGY9ZnVsbF9kZi5oZWFkKDEpKQogICAgZnVsbF9kZiA9IGZ1bGxfZGYubG9jWzoxMF0KICAgIAogICAgcHVzaF90b19zdHJlYW0oY29udGV4dCwgY29udGV4dC5vdXRwdXRfc3RyZWFtLCBmdWxsX2RmKQoK + noBaseImagesPull: true + baseImage: mlrun/ml-models + env: + - name: METRICS_TABLE + value: /User/demos/network-operations/streaming/metrics + - name: PREDICTIONS_TABLE + value: /User/demos/network-operations/streaming/predictions + - name: OUTPUT_STREAM + value: /users/admin/demos/network-operations/streaming/labels_stream_v1 + - name: prediction_col + value: predictions + - name: label_col + value: is_error + - name: output_stream_shards + value: '1' + handler: labeled_stream_creator:handler + runtime: python:3.6 + volumes: [] + source: '' diff --git a/network-operations/src/metric_configurations.yaml b/network-operations/src/metric_configurations.yaml new file mode 100644 index 00000000..7a55cd32 --- /dev/null +++ b/network-operations/src/metric_configurations.yaml @@ -0,0 +1,47 @@ +errors: {length_in_ticks: 50, rate_in_ticks: 150} +timestamps: {interval: 5s, stochastic_interval: true} +metrics: + cpu_utilization: + accuracy: 2 + distribution: normal + distribution_params: {mu: 70, noise: 0, sigma: 10} + is_threshold_below: true + past_based_value: false + produce_max: false + produce_min: false + validation: + distribution: {max: 1, min: -1, validate: false} + metric: {max: 100, min: 0, validate: true} + latency: + accuracy: 2 + distribution: normal + distribution_params: {mu: 0, noise: 0, sigma: 5} + is_threshold_below: true + past_based_value: false + produce_max: false + produce_min: false + validation: + distribution: {max: 1, min: -1, validate: false} + metric: {max: 100, min: 0, validate: true} + packet_loss: + accuracy: 0 + distribution: normal + distribution_params: {mu: 0, noise: 0, sigma: 2} + is_threshold_below: true + past_based_value: false + produce_max: false + produce_min: false + validation: + distribution: {max: 1, min: -1, validate: false} + metric: {max: 50, min: 0, validate: true} + throughput: + accuracy: 2 + distribution: normal + distribution_params: {mu: 250, noise: 0, sigma: 20} + is_threshold_below: false + past_based_value: false + produce_max: false + produce_min: false + validation: + distribution: {max: 1, min: -1, validate: false} + metric: {max: 300, min: 0, validate: true} diff --git a/network-operations/src/preprocessor.yaml b/network-operations/src/preprocessor.yaml new file mode 100644 index 00000000..66d7c8c9 --- /dev/null +++ b/network-operations/src/preprocessor.yaml @@ -0,0 +1,137 @@ +kind: remote +metadata: + name: nuclio-preprocessor + tag: '' + hash: dfe9e88bee7eddafd59d09cadf84d5594a5c9d05 + project: network-operations +spec: + command: '' + args: [] + image: '' + entry_points: + get_data_tsdb: + name: get_data_tsdb + doc: '' + parameters: + - name: context + default: '' + outputs: + - default: '' + lineno: 12 + get_data_parquet: + name: get_data_parquet + doc: '' + parameters: + - name: context + default: '' + outputs: + - default: '' + lineno: 18 + save_to_tsdb: + name: save_to_tsdb + doc: '' + parameters: + - name: context + default: '' + - name: features + type: DataFrame + default: '' + outputs: + - default: '' + lineno: 27 + save_to_parquet: + name: save_to_parquet + doc: '' + parameters: + - name: context + default: '' + - name: df + type: DataFrame + default: '' + outputs: + - default: '' + lineno: 30 + init_context: + name: init_context + doc: '' + parameters: + - name: context + default: '' + outputs: + - default: '' + lineno: 45 + handler: + name: handler + doc: '' + parameters: + - name: context + default: '' + - name: event + default: '' + outputs: + - default: '' + lineno: 99 + description: '' + min_replicas: 1 + max_replicas: 4 + env: + - name: V3IO_API + value: '' + - name: V3IO_USERNAME + value: '' + - name: V3IO_ACCESS_KEY + value: '' + config: + spec.triggers.cron: + kind: cron + attributes: + interval: 1m + base_spec: + apiVersion: nuclio.io/v1 + kind: Function + metadata: + annotations: + nuclio.io/generated_by: function generated from 27-07-2020 by admin + labels: {} + name: nuclio-preprocessor + spec: + build: + commands: [] + functionSourceCode: IyBHZW5lcmF0ZWQgYnkgbnVjbGlvLmV4cG9ydC5OdWNsaW9FeHBvcnRlcgoKaW1wb3J0IG9zCmltcG9ydCBwYW5kYXMgYXMgcGQKZnJvbSBtbHJ1bi5kYXRhc3RvcmUgaW1wb3J0IERhdGFJdGVtCmltcG9ydCBhc3QKCmZyb20gdHlwaW5nIGltcG9ydCBVbmlvbgpmcm9tIG1scnVuIGltcG9ydCBtbGNvbmYsIGltcG9ydF9mdW5jdGlvbiwgbW91bnRfdjNpbywgTmV3VGFzaywgZnVuY3Rpb25fdG9fbW9kdWxlLCBnZXRfb3JfY3JlYXRlX2N0eApmcm9tIG1scnVuLnJ1biBpbXBvcnQgZ2V0X2RhdGFpdGVtCgpkZWYgZ2V0X2RhdGFfdHNkYihjb250ZXh0KToKICAgIGRmID0gY29udGV4dC52M2YucmVhZChiYWNrZW5kPSd0c2RiJywgcXVlcnk9ZidzZWxlY3QgY3B1X3V0aWxpemF0aW9uLCBsYXRlbmN5LCBwYWNrZXRfbG9zcywgdGhyb3VnaHB1dCwgaXNfZXJyb3IgZnJvbSB7Y29udGV4dC5tZXRyaWNzX3RhYmxlfScsCiAgICAgICAgICAgICAgICAgICAgICAgICAgc3RhcnQ9Zidub3ctMmgnLCBlbmQ9J25vdycsIG11bHRpX2luZGV4PVRydWUpCiAgICBkZiA9IGZvcm1hdF9kZl9mcm9tX3RzZGIoY29udGV4dCwgZGYpCiAgICByZXR1cm4gZGYKCmRlZiBnZXRfZGF0YV9wYXJxdWV0KGNvbnRleHQpOgogICAgbXBhdGggPSBbb3MucGF0aC5qb2luKGNvbnRleHQubWV0cmljc190YWJsZSwgZmlsZSkgZm9yIGZpbGUgaW4gb3MubGlzdGRpcihjb250ZXh0Lm1ldHJpY3NfdGFibGUpIGlmIGZpbGUuZW5kc3dpdGgoKCdwYXJxdWV0JywgJ3BxJykpXQogICAgZmlsZXNfYnlfdXBkYXRlZCA9IHNvcnRlZChtcGF0aCwga2V5PW9zLnBhdGguZ2V0bXRpbWUsIHJldmVyc2U9VHJ1ZSkKICAgIGNvbnRleHQubG9nZ2VyLmluZm8oZmlsZXNfYnlfdXBkYXRlZCkKICAgIGxhdGVzdCA9IGZpbGVzX2J5X3VwZGF0ZWRbOmNvbnRleHQuZmlsZXNfdG9fc2VsZWN0XQogICAgY29udGV4dC5sb2dnZXIuaW5mbyhmJ0FnZ3JlZ2F0aW5nIHtsYXRlc3R9JykKICAgIGlucHV0X2RmID0gcGQuY29uY2F0KFtwZC5yZWFkX3BhcnF1ZXQoZGYpIGZvciBkZiBpbiBsYXRlc3RdKQogICAgcmV0dXJuIGlucHV0X2RmCgpkZWYgc2F2ZV90b190c2RiKGNvbnRleHQsIGZlYXR1cmVzOiBwZC5EYXRhRnJhbWUpOiAgIAogICAgY29udGV4dC52M2Yud3JpdGUoJ3RzZGInLCBjb250ZXh0LmZlYXR1cmVzX3RhYmxlLCBmZWF0dXJlcykKCmRlZiBzYXZlX3RvX3BhcnF1ZXQoY29udGV4dCwgZGY6IHBkLkRhdGFGcmFtZSk6CiAgICBwcmludCgnU2F2aW5nIGZlYXR1cmVzIHRvIFBhcnF1ZXQnKQogICAgCiAgICBkZiA9IGRmLnJlc2V0X2luZGV4KCkKICAgIGRmWyd0aW1lc3RhbXAnXSA9IGRmLmxvY1s6LCAndGltZXN0YW1wJ10uYXN0eXBlKCdkYXRldGltZTY0W21zXScpCiAgICAKICAgIGRmID0gZGYuc2V0X2luZGV4KGNvbnRleHQua2V5cykKICAgIAogICAgZmlyc3RfdGltZXN0YW1wID0gZGYuaW5kZXhbMF1bMF0uc3RyZnRpbWUoJyVZJW0lZFQlSCVNJVMnKQogICAgbGFzdF90aW1lc3RhbXAgPSBkZi5pbmRleFstMV1bMF0uc3RyZnRpbWUoJyVZJW0lZFQlSCVNJVMnKQogICAgZmlsZW5hbWUgPSBmaXJzdF90aW1lc3RhbXAgKyAnLScgKyBsYXN0X3RpbWVzdGFtcCArICcucGFycXVldCcKICAgIGZpbGVwYXRoID0gb3MucGF0aC5qb2luKGNvbnRleHQuZmVhdHVyZXNfdGFibGUsIGZpbGVuYW1lKQogICAgd2l0aCBvcGVuKGZpbGVwYXRoLCAnd2IrJykgYXMgZjoKICAgICAgICBkZi50b19wYXJxdWV0KGYpCgpkZWYgaW5pdF9jb250ZXh0KGNvbnRleHQpOgogICAgCiAgICBtbGNvbmYuZGJwYXRoID0gJ2h0dHA6Ly9tbHJ1bi1hcGk6ODA4MCcKICAgIAogICAgYWdncmVnYXRlX2ZuID0gaW1wb3J0X2Z1bmN0aW9uKG9zLmdldGVudignYWdncmVnYXRlX2ZuX3VybCcsICdodWI6Ly9hZ2dyZWdhdGUnKSkKICAgIG1vZCA9IGZ1bmN0aW9uX3RvX21vZHVsZShhZ2dyZWdhdGVfZm4pCiAgICBzZXRhdHRyKGNvbnRleHQsICdhZ2dyZWdhdGUnLCBtb2QuYWdncmVnYXRlKQogICAgCiAgICBhZ19jb250ZXh0ID0gZ2V0X29yX2NyZWF0ZV9jdHgoJ2FnZ3JlZ2F0ZScpCiAgICBzZXRhdHRyKGNvbnRleHQsICdtbHJ1bl9jdHgnLCBhZ19jb250ZXh0KQogICAgCiAgICBzZXRhdHRyKGNvbnRleHQsICdtZXRyaWNzX3RhYmxlJywgb3MuZ2V0ZW52KCdNRVRSSUNTX1RBQkxFJywgJ25ldG9wc19tZXRyaWNzJykpCiAgICBzZXRhdHRyKGNvbnRleHQsICdmZWF0dXJlc190YWJsZScsIG9zLmdldGVudignRkVBVFVSRVNfVEFCTEUnLCAnbmV0b3BzX2ZlYXR1cmVzJykpCiAgICBzZXRhdHRyKGNvbnRleHQsICdrZXlzJywgb3MuZ2V0ZW52KCdrZXlzJywgJycpLnNwbGl0KCcsJykpCiAgICBzZXRhdHRyKGNvbnRleHQsICdtZXRyaWNzJywgYXN0LmxpdGVyYWxfZXZhbChvcy5nZXRlbnYoJ21ldHJpY3MnLCAnJykpKQogICAgc2V0YXR0cihjb250ZXh0LCAnbWV0cmljX2FnZ3MnLCBhc3QubGl0ZXJhbF9ldmFsKG9zLmdldGVudignbWV0cmljX2FnZ3MnLCAnJykpKQogICAgc2V0YXR0cihjb250ZXh0LCAnc3VmZml4Jywgb3MuZ2V0ZW52KCdzdWZmaXgnLCAnX2FnZycpKQogICAgc2V0YXR0cihjb250ZXh0LCAnd2luZG93JywgaW50KG9zLmdldGVudignd2luZG93JywgJzMnKSkpCiAgICBzZXRhdHRyKGNvbnRleHQsICdjZW50ZXInLCBib29sKGludChvcy5nZXRlbnYoJ2NlbnRlcicsICcwJykpKSkKICAgIHNldGF0dHIoY29udGV4dCwgJ2lucGxhY2UnLCBib29sKGludChvcy5nZXRlbnYoJ2lucGxhY2UnLCAnMCcpKSkpCiAgICBzZXRhdHRyKGNvbnRleHQsICdkcm9wX25hJywgYm9vbChpbnQob3MuZ2V0ZW52KCdkcm9wX25hJywgJzEnKSkpKQogICAgc2V0YXR0cihjb250ZXh0LCAnZmlsZXNfdG9fc2VsZWN0JywgaW50KG9zLmdldGVudignZmlsZXNfdG9fc2VsZWN0JywgMSkpKQogICAgCiAgICBzYW1wbGVfZGF0YXNldCA9IGdldF9kYXRhaXRlbShvcy5lbnZpcm9uWydiYXNlX2RhdGFzZXQnXSkuYXNfZGYoKQogICAgc2VsZWN0ZWRfZmVhdHVyZXMgPSBbY29sIGZvciBjb2wgaW4gbGlzdChzYW1wbGVfZGF0YXNldC5jb2x1bW5zKSBpZiBjb2wgIT0gb3MuZ2V0ZW52KCdsYWJlbF9jb2wnLCAnJyldCiAgICBhZ2dyZWdhdGVkX2ZlYXR1cmVzID0gW2ZlYXR1cmUuc3BsaXQoJ18nKVs6LTFdIGZvciBmZWF0dXJlIGluIHNlbGVjdGVkX2ZlYXR1cmVzIGlmIGZlYXR1cmUuZW5kc3dpdGgoY29udGV4dC5zdWZmaXgpXQogICAgYmFzZV9mZWF0dXJlcyA9IHNldChbZlswXSBmb3IgZiBpbiBhZ2dyZWdhdGVkX2ZlYXR1cmVzXSkKICAgIGFnZ3JlZ2F0aW9ucyA9IHNldChbZlsxXSBmb3IgZiBpbiBhZ2dyZWdhdGVkX2ZlYXR1cmVzXSkKICAgIHNldGF0dHIoY29udGV4dCwgJ2ZlYXR1cmVzJywgc2VsZWN0ZWRfZmVhdHVyZXMpCiAgICBzZXRhdHRyKGNvbnRleHQsICdiYXNlX2ZlYXR1cmVzJywgYmFzZV9mZWF0dXJlcykKICAgIHNldGF0dHIoY29udGV4dCwgJ2FnZ3JlZ2F0aW9ucycsIGFnZ3JlZ2F0aW9ucykKICAgIAogICAgCiAgICAKICAgIGlzX3NhdmVfdG9fdHNkYiA9IGJvb2woaW50KG9zLmdldGVudignc2F2ZV90b190c2RiJywgJzAnKSkpCiAgICBpZiBpc19zYXZlX3RvX3RzZGI6CiAgICAgICAgdjNpb19jbGllbnQgPSB2M2YuQ2xpZW50KGFkZHJlc3M9J2ZyYW1lc2Q6ODA4MScsIGNvbnRhaW5lcj0nYmlnZGF0YScpCiAgICAgICAgc2V0YXR0cihjb250ZXh0LCAndjNmJywgdjNpb19jbGllbnQpCiAgICAgICAgCiAgICAgICAgY29udGV4dC52M2YuY3JlYXRlKCd0c2RiJywgY29udGV4dC5mZWF0dXJlc190YWJsZSwgYXR0cnM9eydyYXRlJzogJzEvcyd9LCBpZl9leGlzdHM9MSkKICAgICAgICAKICAgICAgICBzZXRhdHRyKGNvbnRleHQsICdyZWFkJywgZ2V0X2RhdGFfdHNkYikKICAgICAgICAKICAgICAgICBzZXRhdHRyKGNvbnRleHQsICd3cml0ZScsIHNhdmVfdG9fdHNkYikKICAgICAgICAKICAgIGVsc2U6CiAgICAgICAgZmlsZXBhdGggPSBvcy5wYXRoLmpvaW4oY29udGV4dC5mZWF0dXJlc190YWJsZSkKICAgICAgICBpZiBub3Qgb3MucGF0aC5leGlzdHMoZmlsZXBhdGgpOgogICAgICAgICAgICBvcy5tYWtlZGlycyhmaWxlcGF0aCkKICAgICAgICAgICAgCiAgICAgICAgc2V0YXR0cihjb250ZXh0LCAncmVhZCcsIGdldF9kYXRhX3BhcnF1ZXQpCiAgICAgICAgCiAgICAgICAgc2V0YXR0cihjb250ZXh0LCAnd3JpdGUnLCBzYXZlX3RvX3BhcnF1ZXQpCgpkZWYgaGFuZGxlcihjb250ZXh0LCBldmVudCk6CiAgICAKICAgIGRmID0gY29udGV4dC5yZWFkKGNvbnRleHQpCiAgICAKICAgIHJlcyA9IGNvbnRleHQuYWdncmVnYXRlKGNvbnRleHQ9Y29udGV4dC5tbHJ1bl9jdHgsCiAgICAgICAgICAgICAgZGZfYXJ0aWZhY3Q9ZGYsCiAgICAgICAgICAgICAgc2F2ZV90bz1jb250ZXh0LmZlYXR1cmVzX3RhYmxlLCAKICAgICAgICAgICAgICBrZXlzPWNvbnRleHQua2V5cywgCiAgICAgICAgICAgICAgbWV0cmljcz1jb250ZXh0Lm1ldHJpY3MsIAogICAgICAgICAgICAgIG1ldHJpY19hZ2dzPWNvbnRleHQubWV0cmljX2FnZ3MsIAogICAgICAgICAgICAgIHN1ZmZpeD1jb250ZXh0LnN1ZmZpeCwgCiAgICAgICAgICAgICAgd2luZG93PWNvbnRleHQud2luZG93LCAKICAgICAgICAgICAgICBjZW50ZXI9Y29udGV4dC5jZW50ZXIsIAogICAgICAgICAgICAgIGlucGxhY2U9Y29udGV4dC5pbnBsYWNlLAogICAgICAgICAgICAgIGRyb3BfbmE9Y29udGV4dC5kcm9wX25hKQogICAgCiAgICBjb250ZXh0LmxvZ2dlci5pbmZvKGYncmVzLmNvbHVtbnM6IHtyZXMuY29sdW1uc30nKQogICAgY29udGV4dC5sb2dnZXIuaW5mbyhmJ2NvbnRleHQuY29sdW1uczoge2NvbnRleHQuZmVhdHVyZXN9JykKICAgIHJlcyA9IHJlc1tjb250ZXh0LmZlYXR1cmVzXQogICAgCiAgICBjb250ZXh0LndyaXRlKGNvbnRleHQsIHJlcykKCg== + noBaseImagesPull: true + baseImage: mlrun/ml-models + env: + - name: aggregate_fn_url + value: /User/functions/aggregate/function.yaml + - name: METRICS_TABLE + value: /User/demos/network-operations/data + - name: FEATURES_TABLE + value: /User/demos/network-operations/features + - name: base_dataset + value: /User/demos/network-operations/artifacts/selected_features.parquet + - name: keys + value: timestamp,company,data_center,device + - name: metrics + value: '["cpu_utilization", "throughput", "packet_loss", "latency"]' + - name: metric_aggs + value: '["mean", "sum", "std", "var", "min", "max", "median"]' + - name: suffix + value: daily + - name: window + value: '3' + - name: center + value: '0' + - name: inplace + value: '0' + - name: drop_na + value: '1' + - name: files_to_select + value: '1' + - name: label_col + value: is_error + - name: is_save_to_tsdb + value: '0' + handler: preprocessor:handler + runtime: python:3.6 + volumes: [] + source: '' diff --git a/network-operations/src/workflow.py b/network-operations/src/workflow.py new file mode 100644 index 00000000..11995495 --- /dev/null +++ b/network-operations/src/workflow.py @@ -0,0 +1,211 @@ +from kfp import dsl +from mlrun import mount_v3io, mlconf +import os +from nuclio.triggers import V3IOStreamTrigger + +funcs = {} +projdir = os.getcwd() +# mlconf.hub_url = 'https://raw.githubusercontent.com/mlrun/functions/{tag}/{name}/function.yaml' +# mlconf.hub_url |= '/User/functions/{name}/function.yaml' +model_inference_stream = '/users/admin/demos/network-operations/streaming/predictions' +labeled_stream = '/users/admin/demos/network-operations/streaming/labeled_stream' +webapi_url = 'http://v3io-webapi:8081' +model_inference_url = f'{webapi_url}{model_inference_stream}' +labeled_stream_url = f'{webapi_url}{labeled_stream}' + +def init_functions(functions: dict, project=None, secrets=None): + for f in functions.values(): + # Add V3IO Mount + f.apply(mount_v3io()) + + # Always pull images to keep updates + f.spec.image_pull_policy = 'Always' + + # Define inference-stream related triggers + functions['s2p'].add_trigger('labeled_stream', V3IOStreamTrigger(url=f'{labeled_stream_url}@s2p')) + + +@dsl.pipeline( + name='Network Operations Demo', + description='Train a Failure Prediction LGBM Model over sensor data' +) +def kfpipeline( + # aggregate + df_artifact = '/User/demos/network-operations/data/metrics.pq', + metrics = ['cpu_utilization', 'throughput', 'packet_loss', 'latency'], + metric_aggs = ['mean', 'sum', 'std', 'var', 'min', 'max', 'median'], + suffix = 'daily', + window = 10, + + # describe + describe_table = 'netops', + describe_sample = 0.3, + label_column = 'is_error', + class_labels = [1, 0], + plot_hist = True, + + # Feature selection + k = 5, + min_votes = 3, + + # Train + sample_size = -1, # -n for random sample of n obs, -1 for entire dataset, +n for n consecutive rows + test_size = 0.1, # 10% set aside + train_val_split = 0.75, # remainder split into train and val + + # Test + predictions_col = 'predictions', + + # Deploy + deploy_streaming = True, + aggregate_fn_url = 'hub://aggregate', + streaming_features_table = '/User/demos/network-operations/streaming/features', + streaming_predictions_table = '/User/demos/network-operations/streaming/predictions', + + # Streaming + streaming_metrics_table = '/User/demos/network-operations/streaming/metrics', + + # labeled stream creator + streaming_labeled_table = labeled_stream, + + # Concept drift + deploy_concept_drift = True, + secs_to_generate = 10, + concept_drift_models = ['ddm', 'eddm', 'pagehinkley'], + output_tsdb = '/User/demos/network-operations/streaming/drift_tsdb', + input_stream = labeled_stream_url, + output_stream = '/User/demos/network-operations/streaming/drift_stream', + streaming_parquet_table = '/User/demos/network-operations/streaming/inference_pq/', + + # Virtual drift + results_tsdb_container = 'users', + results_tsdb_table = 'admin/demo_network_operations/streaming/drift_magnitude' + ): + + # Run preprocessing on the data + aggregate = funcs['aggregate'].as_step(name='aggregate', + params={'metrics': metrics, + 'metric_aggs': metric_aggs, + 'suffix': suffix, + 'window': window}, + inputs={'df_artifact': df_artifact}, + outputs=['aggregate'], + handler='aggregate', + image='mlrun/ml-models') + + describe = funcs['describe'].as_step(name='describe-aggregation', + handler="summarize", + params={"key": f"{describe_table}_aggregate", + "label_column": label_column, + 'class_labels': class_labels, + 'plot_hist': plot_hist, + 'plot_dest': 'plots/aggregation', + 'sample': describe_sample}, + inputs={"table": aggregate.outputs['aggregate']}, + outputs=["summary", "scale_pos_weight"]) + + feature_selection = funcs['feature_selection'].as_step(name='feature_selection', + handler='feature_selection', + params={'k': k, + 'min_votes': min_votes, + 'label_column': label_column}, + inputs={'df_artifact': aggregate.outputs['aggregate']}, + outputs=['feature_scores', + 'max_scaled_scores_feature_scores' + 'selected_features_count', + 'selected_features'], + image='mlrun/ml-models') + + describe = funcs['describe'].as_step(name='describe-feature-vector', + handler="summarize", + params={"key": f'{describe_table}_features', + "label_column": label_column, + 'class_labels': class_labels, + 'plot_hist': plot_hist, + 'plot_dest': 'plots/feature_vector'}, + inputs={"table": feature_selection.outputs['selected_features']}, + outputs=["summary", "scale_pos_weight"]) + + train = funcs['train'].as_step(name='train', + params={"sample" : sample_size, + "label_column" : label_column, + "test_size" : test_size, + "train_val_split" : train_val_split}, + inputs={"dataset" : feature_selection.outputs['selected_features']}, + hyperparams={'model_pkg_class': ["sklearn.ensemble.RandomForestClassifier", + "sklearn.linear_model.LogisticRegression", + "sklearn.ensemble.AdaBoostClassifier"]}, + selector='max.accuracy', + outputs=['model', 'test_set'], + image='mlrun/ml-models') + + test = funcs['test'].as_step(name='test', + handler='test_classifier', + params={'label_column': label_column, + 'predictions_column': predictions_col}, + inputs={'models_path': train.outputs['model'], + 'test_set': train.outputs['test_set']}, + outputs=['test_set_preds'], + image='mlrun/ml-models') + + + with dsl.Condition(deploy_streaming == True): + + # deploy the model using nuclio functions + deploy = funcs['serving'].deploy_step(env={'model_path': train.outputs['model'], + 'FEATURES_TABLE': streaming_features_table, + 'PREDICTIONS_TABLE': streaming_predictions_table, + 'prediction_col': predictions_col}, + tag='v1') + + # test out new model server (via REST API calls) + tester = funcs["model_server-tester"].as_step(name='model-tester', + params={'addr': deploy.outputs['endpoint'], + 'model': "predictor", + 'label_column': label_column}, + inputs={'table': train.outputs['test_set']}, + outputs=['test_set_preds']) + + # Streaming demo functions + preprocessor = funcs['create_feature_vector'].deploy_step(env={ 'aggregate_fn_url': aggregate_fn_url, + 'METRICS_TABLE': streaming_metrics_table, + 'FEATURES_TABLE': streaming_features_table, + 'metrics': metrics, + 'metric_aggs': metric_aggs, + 'suffix': suffix, + 'base_dataset': train.outputs['test_set'], + 'label_col': label_column}).after(tester) + + labeled_stream_creator = funcs['labeled_stream'].deploy_step(env={'METRICS_TABLE': streaming_metrics_table, + 'PREDICTIONS_TABLE': streaming_predictions_table, + 'OUTPUT_STREAM': streaming_labeled_table, + 'label_col': label_column, + 'prediction_col': predictions_col}).after(tester) + + generator = funcs['generator'].deploy_step(env={'SAVE_TO': streaming_metrics_table, + 'SECS_TO_GENERATE': secs_to_generate}).after(preprocessor) + + with dsl.Condition(deploy_concept_drift == True): + + concept_builder = funcs['concept_drift'].deploy_step(skip_deployed=True) + + concept_drift = funcs['concept_drift'].as_step(name='concept_drift_deployer', + params={'models': concept_drift_models, + 'label_col': label_column, + 'prediction_col': predictions_col, + 'output_tsdb': output_tsdb, + 'input_stream': f'{input_stream}@cds', + 'output_stream': output_stream}, + inputs={'base_dataset': test.outputs['test_set_preds']}, + artifact_path=mlconf.artifact_path, + image=concept_builder.outputs['image']).after(labeled_stream_creator) + + s2p = funcs['s2p'].deploy_step(env={'window': 10, + 'features': metrics, + 'save_to': streaming_parquet_table, + 'base_dataset': test.outputs['test_set_preds'], + 'results_tsdb_container': 'users', + 'results_tsdb_table': results_tsdb_table, + 'mount_path': '/users/admin', + 'mount_remote': '/User'}).after(tester) + diff --git a/faces/README.md b/realtime-face-recognition/README.md similarity index 100% rename from faces/README.md rename to realtime-face-recognition/README.md diff --git a/faces/client/README.md b/realtime-face-recognition/client/README.md similarity index 94% rename from faces/client/README.md rename to realtime-face-recognition/client/README.md index a13f8442..15ea2b54 100644 --- a/faces/client/README.md +++ b/realtime-face-recognition/client/README.md @@ -11,7 +11,7 @@ Clone the [mlrun/demos](https://github.com/mlrun/demos) repository (Git clone UR ## Go to the Client Directory ```sh -cd mlrun/demos/faces/client +cd mlrun/demos/realtime-face-recognition/client ``` diff --git a/faces/client/config/__init__.py b/realtime-face-recognition/client/__init__.py similarity index 100% rename from faces/client/config/__init__.py rename to realtime-face-recognition/client/__init__.py diff --git a/faces/client/utils/__init__.py b/realtime-face-recognition/client/config/__init__.py similarity index 100% rename from faces/client/utils/__init__.py rename to realtime-face-recognition/client/config/__init__.py diff --git a/faces/client/config/app_conf.py b/realtime-face-recognition/client/config/app_conf.py similarity index 100% rename from faces/client/config/app_conf.py rename to realtime-face-recognition/client/config/app_conf.py diff --git a/faces/client/config/init.ini b/realtime-face-recognition/client/config/init.ini similarity index 100% rename from faces/client/config/init.ini rename to realtime-face-recognition/client/config/init.ini diff --git a/faces/client/stream/__init__.py b/realtime-face-recognition/client/stream/__init__.py similarity index 100% rename from faces/client/stream/__init__.py rename to realtime-face-recognition/client/stream/__init__.py diff --git a/faces/client/stream/image_sender.py b/realtime-face-recognition/client/stream/image_sender.py similarity index 100% rename from faces/client/stream/image_sender.py rename to realtime-face-recognition/client/stream/image_sender.py diff --git a/faces/client/stream/stream_abs.py b/realtime-face-recognition/client/stream/stream_abs.py similarity index 100% rename from faces/client/stream/stream_abs.py rename to realtime-face-recognition/client/stream/stream_abs.py diff --git a/faces/client/video/__init__.py b/realtime-face-recognition/client/utils/__init__.py similarity index 100% rename from faces/client/video/__init__.py rename to realtime-face-recognition/client/utils/__init__.py diff --git a/faces/client/utils/file_system.py b/realtime-face-recognition/client/utils/file_system.py similarity index 100% rename from faces/client/utils/file_system.py rename to realtime-face-recognition/client/utils/file_system.py diff --git a/faces/client/utils/logger.py b/realtime-face-recognition/client/utils/logger.py similarity index 100% rename from faces/client/utils/logger.py rename to realtime-face-recognition/client/utils/logger.py diff --git a/realtime-face-recognition/client/video/__init__.py b/realtime-face-recognition/client/video/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/faces/client/video/image_abs.py b/realtime-face-recognition/client/video/image_abs.py similarity index 100% rename from faces/client/video/image_abs.py rename to realtime-face-recognition/client/video/image_abs.py diff --git a/faces/client/video/v3io_image.py b/realtime-face-recognition/client/video/v3io_image.py similarity index 100% rename from faces/client/video/v3io_image.py rename to realtime-face-recognition/client/video/v3io_image.py diff --git a/faces/client/video_capture.py b/realtime-face-recognition/client/video_capture.py similarity index 100% rename from faces/client/video_capture.py rename to realtime-face-recognition/client/video_capture.py diff --git a/faces/dashboards/dashboard.py b/realtime-face-recognition/dashboards/dashboard.py similarity index 98% rename from faces/dashboards/dashboard.py rename to realtime-face-recognition/dashboards/dashboard.py index 0f9062bb..bf8d4611 100644 --- a/faces/dashboards/dashboard.py +++ b/realtime-face-recognition/dashboards/dashboard.py @@ -85,7 +85,7 @@ def load_images(data_path): def load_enc_df(): - return client.read(backend="kv", table='iguazio/demos/demos/faces/artifacts/encodings', reset_index=True) + return client.read(backend="kv", table='iguazio/demos/demos/realtime-face-recognition/artifacts/encodings', reset_index=True) def handler(context, event): diff --git a/faces/dashboards/labeling.py b/realtime-face-recognition/dashboards/labeling.py similarity index 98% rename from faces/dashboards/labeling.py rename to realtime-face-recognition/dashboards/labeling.py index 75b3d2f2..60395cfd 100644 --- a/faces/dashboards/labeling.py +++ b/realtime-face-recognition/dashboards/labeling.py @@ -198,8 +198,8 @@ def list_to_html_table(lol, table_id, table_head): def handler(context, event): - data_path = '/User/demos/demos/faces/dataset/' - artifact_path = 'User/demos/demos/faces/artifacts/' + data_path = '/User/demos/demos/realtime-face-recognition/dataset/' + artifact_path = 'User/demos/demos/realtime-face-recognition/artifacts/' classes_url = artifact_path + 'idx2name.csv' classes_df = pd.read_csv(classes_url) diff --git a/faces/models.py b/realtime-face-recognition/models.py similarity index 100% rename from faces/models.py rename to realtime-face-recognition/models.py diff --git a/faces/notebooks/face-recognition.ipynb b/realtime-face-recognition/notebooks/face-recognition.ipynb similarity index 97% rename from faces/notebooks/face-recognition.ipynb rename to realtime-face-recognition/notebooks/face-recognition.ipynb index fbb234cf..b6fa8d5d 100644 --- a/faces/notebooks/face-recognition.ipynb +++ b/realtime-face-recognition/notebooks/face-recognition.ipynb @@ -99,9 +99,9 @@ "metadata": {}, "outputs": [], "source": [ - "DATA_PATH = '/User/demos/demos/faces/dataset/'\n", - "ARTIFACTS_PATH = '/User/demos/demos/faces/artifacts/'\n", - "MODELS_PATH = '/User/demos/demos/faces/models.py'" + "DATA_PATH = '/User/demos/demos/realtime-face-recognition/dataset/'\n", + "ARTIFACTS_PATH = '/User/demos/demos/realtime-face-recognition/artifacts/'\n", + "MODELS_PATH = '/User/demos/demos/realtime-face-recognition/models.py'" ] }, { @@ -245,10 +245,10 @@ " data_df = pd.concat([df_x, df_y, df_details], axis=1)\n", " data_df['fileName'] = fileNames\n", " \n", - " client.write(backend='kv', table='iguazio/demos/demos/faces/artifacts/encodings', dfs=data_df, index_cols=['fileName'])\n", + " client.write(backend='kv', table='iguazio/demos/demos/realtime-face-recognition/artifacts/encodings', dfs=data_df, index_cols=['fileName'])\n", " \n", " with open('encodings_path.txt', 'w+') as f:\n", - " f.write('iguazio/demos/demos/faces/artifacts/encodings')\n", + " f.write('iguazio/demos/demos/realtime-face-recognition/artifacts/encodings')\n", " context.log_artifact('encodings_path', src_path=f.name, target_path=f.name)\n", " os.remove('encodings_path.txt')" ] diff --git a/faces/notebooks/nuclio-api-serving.ipynb b/realtime-face-recognition/notebooks/nuclio-api-serving.ipynb similarity index 94% rename from faces/notebooks/nuclio-api-serving.ipynb rename to realtime-face-recognition/notebooks/nuclio-api-serving.ipynb index 0de675d4..39040046 100644 --- a/faces/notebooks/nuclio-api-serving.ipynb +++ b/realtime-face-recognition/notebooks/nuclio-api-serving.ipynb @@ -49,7 +49,7 @@ "outputs": [], "source": [ "%%nuclio env\n", - "DATA_PATH = /User/demos/demos/faces/dataset/\n", + "DATA_PATH = /User/demos/demos/realtime-face-recognition/dataset/\n", "V3IO_ACCESS_KEY=${V3IO_ACCESS_KEY}" ] }, @@ -110,7 +110,7 @@ " new_row_df = pd.DataFrame(new_row, index=[0])\n", " new_row_df = new_row_df.set_index('fileName')\n", " print(new_row['fileName'])\n", - " client.write(backend='kv', table='iguazio/demos/demos/faces/artifacts/encodings', dfs=new_row_df) #, save_mode='createNewItemsOnly') \n", + " client.write(backend='kv', table='iguazio/demos/demos/realtime-face-recognition/artifacts/encodings', dfs=new_row_df) #, save_mode='createNewItemsOnly') \n", " \n", "def init_context(context):\n", " setattr(context.user_data, 'client', v3f.Client(\"framesd:8081\", container=\"users\"))\n", @@ -166,7 +166,7 @@ "fn.with_http(workers=2).apply(mount_v3io())\n", "\n", "# set environment variables\n", - "fn.set_env('DATA_PATH', '/User/demos/demos/faces/dataset/')\n", + "fn.set_env('DATA_PATH', '/User/demos/demos/realtime-face-recognition/dataset/')\n", "fn.set_env('V3IO_ACCESS_KEY', os.environ['V3IO_ACCESS_KEY'])\n", "addr = fn.deploy(project='default')" ] diff --git a/faces/notebooks/nuclio-face-prediction.ipynb b/realtime-face-recognition/notebooks/nuclio-face-prediction.ipynb similarity index 90% rename from faces/notebooks/nuclio-face-prediction.ipynb rename to realtime-face-recognition/notebooks/nuclio-face-prediction.ipynb index 13b62630..07bf4711 100644 --- a/faces/notebooks/nuclio-face-prediction.ipynb +++ b/realtime-face-recognition/notebooks/nuclio-face-prediction.ipynb @@ -98,10 +98,10 @@ "outputs": [], "source": [ "%%nuclio env\n", - "MODELS_PATH = /User/demos/demos/faces/models.py\n", - "MODEL_PATH = /User/demos/demos/faces/artifacts/model.bst\n", - "DATA_PATH = /User/demos/demos/faces/dataset/\n", - "CLASSES_MAP = /User/demos/demos/faces/artifacts/idx2name.csv" + "MODELS_PATH = /User/demos/demos/realtime-face-recognition/models.py\n", + "MODEL_PATH = /User/demos/demos/realtime-face-recognition/artifacts/model.bst\n", + "DATA_PATH = /User/demos/demos/realtime-face-recognition/dataset/\n", + "CLASSES_MAP = /User/demos/demos/realtime-face-recognition/artifacts/idx2name.csv" ] }, { @@ -266,9 +266,9 @@ "fn.with_http(workers=2).apply(mount_v3io())\n", "\n", "# set environment variables\n", - "fn.set_env('MODELS_PATH', '/User/demos/demos/faces/models.py')\n", - "fn.set_env('MODEL_PATH', '/User/demos/demos/faces/artifacts/model.bst')\n", - "fn.set_env('CLASSES_MAP', '/User/demos/demos/faces/artifacts/idx2name.csv')\n", + "fn.set_env('MODELS_PATH', '/User/demos/demos/realtime-face-recognition/models.py')\n", + "fn.set_env('MODEL_PATH', '/User/demos/demos/realtime-face-recognition/artifacts/model.bst')\n", + "fn.set_env('CLASSES_MAP', '/User/demos/demos/realtime-face-recognition/artifacts/idx2name.csv')\n", "fn.set_env('V3IO_ACCESS_KEY', os.environ['V3IO_ACCESS_KEY'])" ] }, @@ -298,10 +298,10 @@ "import nuclio_sdk\n", "import logging\n", "\n", - "os.environ['MODEL_PATH']='/User/demos/demos/faces/artifacts/model.bst'\n", - "os.environ['CLASSES_MAP']='/User/demos/demos/faces/artifacts/idx2name.csv'\n", - "os.environ['MODELS_PATH']='/User/demos/demos/faces/models.py'\n", - "os.environ['DATA_PATH']='/User/demos/demos/faces/dataset/'\n", + "os.environ['MODEL_PATH']='/User/demos/demos/realtime-face-recognition/artifacts/model.bst'\n", + "os.environ['CLASSES_MAP']='/User/demos/demos/realtime-face-recognition/artifacts/idx2name.csv'\n", + "os.environ['MODELS_PATH']='/User/demos/demos/realtime-face-recognition/models.py'\n", + "os.environ['DATA_PATH']='/User/demos/demos/realtime-face-recognition/dataset/'\n", "\n", "logger = logging.Logger('triggering')\n", "ctx = nuclio_sdk.Context(logger=logger)\n", diff --git a/faces/streamlit/README.md b/realtime-face-recognition/streamlit/README.md similarity index 86% rename from faces/streamlit/README.md rename to realtime-face-recognition/streamlit/README.md index b0a1ec68..86764898 100644 --- a/faces/streamlit/README.md +++ b/realtime-face-recognition/streamlit/README.md @@ -2,7 +2,7 @@ Perform the following steps to deploy an interactive [Streamlit](Streamlit) dashboard for classifying (labeling) and browsing collected images in your Iguazio Data Science Platform (**"the platform"**) environment: -1. On your local computer, edit the [**faces/streamlit/streamlit.yaml**](streamlit.yaml) demo configuration file to replace the two `` placeholder instances with a valid access key for your platform environment: +1. On your local computer, edit the [**realtime-face-recognition/streamlit/streamlit.yaml**](streamlit.yaml) demo configuration file to replace the two `` placeholder instances with a valid access key for your platform environment: ```yaml spec: @@ -26,7 +26,7 @@ Perform the following steps to deploy an interactive [Streamlit](Streamlit) dash ``` 2. In your platform environment, create a Jupyter Notebook service and then clone the [mlrun/demos](https://github.com/mlrun/demos/) repository (clone URL https://github.com/mlrun/demos.git). - Use the clone path **/User/demos/demos**, and ensure that at the end, the **dashboard.py** script exists in the following path — **/User/demos/demos/faces/streamlit/dashboard.py**. + Use the clone path **/User/demos/demos**, and ensure that at the end, the **dashboard.py** script exists in the following path — **/User/demos/demos/realtime-face-recognition/streamlit/dashboard.py**. > **Note:** The demo currently requires that you log into the platform as user "iguazio". diff --git a/faces/streamlit/dashboard.png b/realtime-face-recognition/streamlit/dashboard.png similarity index 100% rename from faces/streamlit/dashboard.png rename to realtime-face-recognition/streamlit/dashboard.png diff --git a/faces/streamlit/dashboard.py b/realtime-face-recognition/streamlit/dashboard.py similarity index 93% rename from faces/streamlit/dashboard.py rename to realtime-face-recognition/streamlit/dashboard.py index eefb0889..6d11e13c 100644 --- a/faces/streamlit/dashboard.py +++ b/realtime-face-recognition/streamlit/dashboard.py @@ -15,13 +15,13 @@ def load_images(data_path): @st.cache def load_enc_df(): - return client.read(backend="kv", table='iguazio/demos/demos/faces/artifacts/encodings', reset_index=True, filter="label!=-1") + return client.read(backend="kv", table='iguazio/demos/demos/realtime-face-recognition/artifacts/encodings', reset_index=True, filter="label!=-1") if __name__ == '__main__': client = v3f.Client("framesd:8081", container="users") - data_path = '/User/demos/demos/faces/dataset/' - artifact_path = 'User/demos/demos/faces/artifacts/' + data_path = '/User/demos/demos/realtime-face-recognition/dataset/' + artifact_path = 'User/demos/demos/realtime-face-recognition/artifacts/' classes_url = artifact_path + 'idx2name.csv' classes_df = pd.read_csv(classes_url) known_classes = [n.replace('_', ' ') for n in classes_df['name'].values] diff --git a/faces/streamlit/dockerfile b/realtime-face-recognition/streamlit/dockerfile similarity index 100% rename from faces/streamlit/dockerfile rename to realtime-face-recognition/streamlit/dockerfile diff --git a/faces/streamlit/streamlit.yaml b/realtime-face-recognition/streamlit/streamlit.yaml similarity index 89% rename from faces/streamlit/streamlit.yaml rename to realtime-face-recognition/streamlit/streamlit.yaml index 320b88b8..dca39435 100644 --- a/faces/streamlit/streamlit.yaml +++ b/realtime-face-recognition/streamlit/streamlit.yaml @@ -23,7 +23,7 @@ spec: value: ports: - containerPort: 8501 - command: ["streamlit", "run", "/User/demos/demos/faces/streamlit/dashboard.py" ] + command: ["streamlit", "run", "/User/demos/demos/realtime-face-recognition/streamlit/dashboard.py" ] args: [] volumeMounts: - mountPath: User diff --git a/faces/workflow.png b/realtime-face-recognition/workflow.png similarity index 100% rename from faces/workflow.png rename to realtime-face-recognition/workflow.png diff --git a/sklearn-pipe/README.md b/scikit-learn-pipeline/README.md similarity index 86% rename from sklearn-pipe/README.md rename to scikit-learn-pipeline/README.md index b19841b7..f3743c93 100644 --- a/sklearn-pipe/README.md +++ b/scikit-learn-pipeline/README.md @@ -15,12 +15,12 @@ See the [**sklearn-project.ipynb**](./sklearn-project.ipynb) notebook for detail
To run the demo, download this notebook into an empty directory and execute the cells sequentially. -


+


## Pipeline Output The output plots can be viewed as static HTML files in the [**plots**](./plots) directory. -


+


diff --git a/sklearn-pipe/plots/confusion.html b/scikit-learn-pipeline/plots/confusion.html similarity index 100% rename from sklearn-pipe/plots/confusion.html rename to scikit-learn-pipeline/plots/confusion.html diff --git a/sklearn-pipe/plots/corr.html b/scikit-learn-pipeline/plots/corr.html similarity index 100% rename from sklearn-pipe/plots/corr.html rename to scikit-learn-pipeline/plots/corr.html diff --git a/sklearn-pipe/plots/hist.html b/scikit-learn-pipeline/plots/hist.html similarity index 100% rename from sklearn-pipe/plots/hist.html rename to scikit-learn-pipeline/plots/hist.html diff --git a/sklearn-pipe/plots/imbalance.html b/scikit-learn-pipeline/plots/imbalance.html similarity index 100% rename from sklearn-pipe/plots/imbalance.html rename to scikit-learn-pipeline/plots/imbalance.html diff --git a/sklearn-pipe/plots/roc.html b/scikit-learn-pipeline/plots/roc.html similarity index 100% rename from sklearn-pipe/plots/roc.html rename to scikit-learn-pipeline/plots/roc.html diff --git a/sklearn-pipe/project/project.yaml b/scikit-learn-pipeline/project/project.yaml similarity index 100% rename from sklearn-pipe/project/project.yaml rename to scikit-learn-pipeline/project/project.yaml diff --git a/sklearn-pipe/project/workflow.py b/scikit-learn-pipeline/project/workflow.py similarity index 100% rename from sklearn-pipe/project/workflow.py rename to scikit-learn-pipeline/project/workflow.py diff --git a/sklearn-pipe/sklearn-project.ipynb b/scikit-learn-pipeline/sklearn-project.ipynb similarity index 89% rename from sklearn-pipe/sklearn-project.ipynb rename to scikit-learn-pipeline/sklearn-project.ipynb index c9f989cb..77214dcf 100644 --- a/sklearn-pipe/sklearn-project.ipynb +++ b/scikit-learn-pipeline/sklearn-project.ipynb @@ -178,8 +178,8 @@ "output_type": "stream", "text": [ "[mlrun] 2020-06-11 16:24:50,053 starting run iris_gen uid=7ba5b1aab9f14abbb393fdfafca8d98c -> http://mlrun-api:8080\n", - "[mlrun] 2020-06-11 16:24:50,091 saving iris dataframe to /User/ml3/demos/sklearn-pipe/data\n", - "[mlrun] 2020-06-11 16:24:50,278 log artifact iris_dataset at /User/ml3/demos/sklearn-pipe/data/iris_dataset.csv, size: 2776, db: Y\n", + "[mlrun] 2020-06-11 16:24:50,091 saving iris dataframe to /User/ml3/demos/scikit-learn-pipeline/data\n", + "[mlrun] 2020-06-11 16:24:50,278 log artifact iris_dataset at /User/ml3/demos/scikit-learn-pipeline/data/iris_dataset.csv, size: 2776, db: Y\n", "\n" ] }, @@ -363,7 +363,7 @@ " \n", " \n", " \n", - "
iris_dataset
\n", + "
iris_dataset
\n", " \n", " \n", "\n", @@ -508,11 +508,11 @@ "[mlrun] 2020-06-11 16:25:15,465 starting run describe-summarize uid=bfc89df69c0c4ab1851a8201d7887a1a -> http://mlrun-api:8080\n", "[mlrun] 2020-06-11 16:25:15,535 Job is running in the background, pod: describe-summarize-7ztmz\n", "[mlrun] 2020-06-11 16:25:21,228 starting local run: main.py # summarize\n", - "[mlrun] 2020-06-11 16:25:25,273 log artifact histograms at /User/ml3/demos/sklearn-pipe/plots/hist.html, size: 254343, db: Y\n", - "[mlrun] 2020-06-11 16:25:25,749 log artifact imbalance at /User/ml3/demos/sklearn-pipe/plots/imbalance.html, size: 21657, db: Y\n", - "[mlrun] 2020-06-11 16:25:25,764 log artifact imbalance-weights-vec at /User/ml3/demos/sklearn-pipe/plots/imbalance-weights-vec.csv, size: 65, db: Y\n", - "[mlrun] 2020-06-11 16:25:25,778 log artifact correlation-matrix at /User/ml3/demos/sklearn-pipe/plots/correlation-matrix.csv, size: 324, db: Y\n", - "[mlrun] 2020-06-11 16:25:25,942 log artifact correlation at /User/ml3/demos/sklearn-pipe/plots/corr.html, size: 26385, db: Y\n", + "[mlrun] 2020-06-11 16:25:25,273 log artifact histograms at /User/ml3/demos/scikit-learn-pipeline/plots/hist.html, size: 254343, db: Y\n", + "[mlrun] 2020-06-11 16:25:25,749 log artifact imbalance at /User/ml3/demos/scikit-learn-pipeline/plots/imbalance.html, size: 21657, db: Y\n", + "[mlrun] 2020-06-11 16:25:25,764 log artifact imbalance-weights-vec at /User/ml3/demos/scikit-learn-pipeline/plots/imbalance-weights-vec.csv, size: 65, db: Y\n", + "[mlrun] 2020-06-11 16:25:25,778 log artifact correlation-matrix at /User/ml3/demos/scikit-learn-pipeline/plots/correlation-matrix.csv, size: 324, db: Y\n", + "[mlrun] 2020-06-11 16:25:25,942 log artifact correlation at /User/ml3/demos/scikit-learn-pipeline/plots/corr.html, size: 26385, db: Y\n", "\n", "[mlrun] 2020-06-11 16:25:26,013 run executed, status=completed\n", "final state: succeeded\n" @@ -698,7 +698,7 @@ "
table
\n", "
label_column=label
\n", " \n", - "
histograms
imbalance
imbalance-weights-vec
correlation-matrix
correlation
\n", + "
histograms
imbalance
imbalance-weights-vec
correlation-matrix
correlation
\n", " \n", " \n", "\n", @@ -987,7 +987,7 @@ " completed\n", " model-tester\n", "
total_tests=15
errors=0
match=14
avg_latency=6025
min_latency=5165
max_latency=8560
\n", - "
latency
\n", + "
latency
\n", " \n", " \n", " \n", @@ -995,7 +995,7 @@ " completed\n", " test\n", "
accuracy=0.9333333333333333
test-error=0.06666666666666667
auc-micro=0.9977777777777778
auc-weighted=1.0
f1-score=0.9137254901960784
precision_score=0.8888888888888888
recall_score=0.9629629629629629
\n", - "
confusion-matrix
precision-recall-multiclass
roc-multiclass
test_set_preds
\n", + "
confusion-matrix
precision-recall-multiclass
roc-multiclass
test_set_preds
\n", " \n", " \n", " \n", @@ -1003,7 +1003,7 @@ " completed\n", " summary\n", " \n", - "
histograms
imbalance
imbalance-weights-vec
correlation-matrix
correlation
\n", + "
histograms
imbalance
imbalance-weights-vec
correlation-matrix
correlation
\n", " \n", " \n", " \n", @@ -1011,7 +1011,7 @@ " completed\n", " train-skrf\n", "
best_iteration=2
accuracy=0.9705882352941176
test-error=0.029411764705882353
auc-micro=0.9961072664359862
auc-weighted=0.9949732620320856
f1-score=0.9679633867276888
precision_score=0.9666666666666667
recall_score=0.9722222222222222
\n", - "
test_set
confusion-matrix
precision-recall-multiclass
roc-multiclass
model
iteration_results
\n", + "
test_set
confusion-matrix
precision-recall-multiclass
roc-multiclass
model
iteration_results
\n", " \n", " \n", " \n", @@ -1019,7 +1019,7 @@ " completed\n", " get-data\n", " \n", - "
iris_dataset
\n", + "
iris_dataset
\n", " \n", " \n", "" diff --git a/stock-analysis/README.md b/stock-analysis/README.md new file mode 100644 index 00000000..1839740c --- /dev/null +++ b/stock-analysis/README.md @@ -0,0 +1,89 @@ +# Stocks Demo + +A common requirement is to run your data engineering pipeline as part of the serving. This is often done by reading data from external data sources and generating insights using machine learning models. + + +This demo reads stock data, analyzes the related market news, and displays a dashboard of the data. In this demo we show how to: + +1. Train a sentiment analysis model using BERT and deploy the model. +2. Deploy Python code to a scalable function (using Nuclio). +3. Integrate with Iguazio’s Real-Time Multi-Model Data Layer (time-series and key-value storage). +4. Leverage machine-learning to generate insights. +5. Process streaming data to a user friendly dashboard. + +The demo flow is as follows: +![stocks demo flow](assets/images/stocks-demo-diagram.png) + +## Prerequisites +This demo is pre-configured to run on the Iguazio Data Science Platform. + +Make sure your conda environment has MLRun installed. You can install MLRun by running: + +``` sh +python -m pip install mlrun +``` + +Also ensure that you have a Grafana service named `grafana`. You can add a new service in the Services tab of your Iguazio Data Science Platform UI. If you need permissions to create or access the Grafana dashboard, contact your system administrator. + +## Quick-Start + +To run the demo, Open and run [**project.ipynb**](project.ipynb) and run the pipeline. + +This will create a pipeline as displayed below: + +![pipeline](assets/images/stocks-demo-pipeline.png) + +The output of this pipeline is available in the Grafana dashboard as follows: + +![Grafana dashboard](assets/images/stocks-demo-dashboard.png) + +You can review the output using the [explore notebook](code/05-explore.ipynb) using Spark and Presto, as well as generate time-series graphs such as: + +![Stocks time-series graph](assets/images/stocks-demo-explore.png) + + +## Notebooks + +- [**project.ipynb**](project.ipynb) - The main notebook. Run this notebook for the entire pipeline. +- [**00-train-sentiment-analysis-model.ipynb**](code/00-train-sentiment-analysis-model.ipynb) - Training & validation (BERT model). +- [**01-read-stocks.ipynb**](code/01-read-stocks.ipynb) - Deploy the stock symbol price and volume Nuclio function. +- [**02-read-news.ipynb**](code/02-read-news.ipynb) - Deploy the news reader Nuclio function. +- [**03-stream-viewer.ipynb**](code/03-stream-viewer.ipynb) - Create a source of the news stream for Grafana. +- [**04-grafana.ipynb**](code/04-grafana.ipynb) - Deploy the Grafana dashboard. +- [**05-explore.ipynb**](code/05-explore.ipynb) - Explore the output. + +## Training & validation (BERT model) +This step is implemented by the [**00-train-sentiment-analysis-model.ipynb**](code/00-train-sentiment-analysis-model.ipynb). We have trained this model in advance, and therefore you can download the model and skip this step entirely. + +The training notebook downloads the pre-trained huggingface transformers BERT model ([bert-base-cased model](https://huggingface.co/bert-base-cased)) and and further trains it using a custom [local customer reviews CSV file](data/reviews.csv). This yields a sentiment analysis model based on the prior knowledge of BERT. + +You can run the training process as part of the pipeline by changing `RUN_TRAINER` to `True` in the [**project notebook**](project.ipynb). + +## Sentiment Analysis + +The model server is given a list of texts and outputs a list of labels corresponding to its prediction. The labels express the sentiment of the writer towards the topic of the text: +- (-1) for negative sentiment. +- 0 for neutral sentiment. +- 1 for positive sentiment. + +This step deploys a Nuclio function called `stocks-sentiment-analysis` that serves the model. The model file can be downloaded from . + +## Ingest News + Sentiments + +This step deploys a Nuclio function called `stocks-read-news` which is triggered every 5 minutes. The function reads the latest news updates for the selected stock symbols, calculates their sentiment based on the sentiment analysis function, and updates the feature store with the news stream as well as updates to the stock sentiment in the time-series database. + +You can review the code and deploy this function with the [**read-news notebook**](code/02-read-news.ipynb). + +## Ingest Stocks + +This step deploys another Nuclio function called `stocks-read-stocks`. When initially loaded, the function updates the feature store with the stock prices and volume of the last 7 days. Then, the function is triggered every 5 minutes and updates the feature store with the stock prices and volume data of that interval. + +You can review the code and deploy this function with the [**read-stocks notebook**](code/01-read-stocks.ipynb). + +## News Viewer and Dashboard + +The news stream in the feature store is read by the [**stream viewer**](code/03-stream-viewer.ipynb) which serves as a data source for the Grafana dashboard. The dashboard is created programmatically [**Grafana notebook**](code/04-grafana.ipynb). + +## Explore + +Use the Iguazio real-time multi-model data layer to read data using query engines, such as Spark and Presto to explore the data. diff --git a/stock-analysis/assets/images/stocks-demo-dashboard.png b/stock-analysis/assets/images/stocks-demo-dashboard.png new file mode 100644 index 00000000..0f876c41 Binary files /dev/null and b/stock-analysis/assets/images/stocks-demo-dashboard.png differ diff --git a/stock-analysis/assets/images/stocks-demo-diagram.png b/stock-analysis/assets/images/stocks-demo-diagram.png new file mode 100644 index 00000000..3cc364a5 Binary files /dev/null and b/stock-analysis/assets/images/stocks-demo-diagram.png differ diff --git a/stock-analysis/assets/images/stocks-demo-explore.png b/stock-analysis/assets/images/stocks-demo-explore.png new file mode 100644 index 00000000..d20cde1b Binary files /dev/null and b/stock-analysis/assets/images/stocks-demo-explore.png differ diff --git a/stock-analysis/assets/images/stocks-demo-pipeline.png b/stock-analysis/assets/images/stocks-demo-pipeline.png new file mode 100644 index 00000000..9bf18b93 Binary files /dev/null and b/stock-analysis/assets/images/stocks-demo-pipeline.png differ diff --git a/stock-analysis/code/00-train-sentiment-analysis-model.ipynb b/stock-analysis/code/00-train-sentiment-analysis-model.ipynb new file mode 100644 index 00000000..6a9ec3c4 --- /dev/null +++ b/stock-analysis/code/00-train-sentiment-analysis-model.ipynb @@ -0,0 +1,849 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Traing BERT sentiment analysis model" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import nuclio" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Environment" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 615 + }, + "colab_type": "code", + "id": "ucTPIIJy8QjS", + "outputId": "ab54a2ea-8cb6-4925-a9e8-e506f804cbf4" + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "%nuclio: setting kind to 'job'\n", + "%nuclio: setting spec.image to 'mlrun/ml-models-gpu'\n" + ] + } + ], + "source": [ + "%nuclio config kind=\"job\"\n", + "%nuclio config spec.image=\"mlrun/ml-models-gpu\"\n", + "%nuclio cmd -c python -m pip install transformers==3.0.1 torch==1.6.0" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Function" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "#nuclio: start-code" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 71 + }, + "colab_type": "code", + "id": "XpEvMc9v-hla", + "outputId": "551914c8-e8e7-412a-92d0-2688ef4f47ea" + }, + "outputs": [], + "source": [ + "import os\n", + "import pandas as pd\n", + "from transformers import BertTokenizer, AdamW, get_linear_schedule_with_warmup, BertModel\n", + "import torch\n", + "import torch.nn as nn\n", + "from torch.utils import data\n", + "import matplotlib.pyplot as plt\n", + "from sklearn.model_selection import train_test_split\n", + "import numpy as np\n", + "import seaborn as sns\n", + "from collections import defaultdict\n", + "from mlrun.artifacts import PlotArtifact, ChartArtifact, TableArtifact\n", + "from mlrun.datastore import DataItem\n", + "from mlrun import MLClientCtx" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "class BertSentimentClassifier(nn.Module):\n", + " def __init__(self, pretrained_model, n_classes):\n", + " super(BertSentimentClassifier, self).__init__()\n", + " self.bert = BertModel.from_pretrained(pretrained_model)\n", + " self.dropout = nn.Dropout(p=0.2)\n", + " self.out_linear = nn.Linear(self.bert.config.hidden_size, n_classes)\n", + " self.softmax = nn.Softmax(dim=1)\n", + "\n", + " def forward(self, input_ids, attention_mask):\n", + " _, pooled_out = self.bert(\n", + " input_ids=input_ids,\n", + " attention_mask=attention_mask\n", + " )\n", + " out = self.dropout(pooled_out)\n", + " out = self.out_linear(out)\n", + " return self.softmax(out)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "colab": {}, + "colab_type": "code", + "id": "LA_e_S8b8Qjo" + }, + "outputs": [], + "source": [ + "class ReviewsDataset(data.Dataset):\n", + " def __init__(self, review, target, tokenizer, max_len):\n", + " self.review = review\n", + " self.target = target\n", + " self.tokenizer = tokenizer\n", + " self.max_len = max_len\n", + " \n", + " def __len__(self):\n", + " return len(self.review)\n", + " \n", + " def __getitem__(self, item):\n", + " review = str(self.review[item])\n", + " enc = self.tokenizer.encode_plus(\n", + " review,\n", + " max_length=self.max_len,\n", + " add_special_tokens=True,\n", + " pad_to_max_length=True,\n", + " return_attention_mask=True,\n", + " return_token_type_ids=False,\n", + " return_tensors='pt',\n", + " truncation=True)\n", + " \n", + " return {'input_ids': enc['input_ids'].squeeze(0), \n", + " 'attention_mask': enc['attention_mask'].squeeze(0),\n", + " 'targets': torch.tensor(self.target[item], dtype=torch.long)}" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "colab": {}, + "colab_type": "code", + "id": "4NVlWc-o8Qjh" + }, + "outputs": [], + "source": [ + "def score_to_sents(score):\n", + " if score <= 2:\n", + " return 0\n", + " if score == 3:\n", + " return 1\n", + " return 2" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [], + "source": [ + "def create_data_loader(df, tokenizer, max_len, batch_size):\n", + " dataset = ReviewsDataset(\n", + " review=df.content.to_numpy(),\n", + " target=df.sentiment.to_numpy(),\n", + " tokenizer=tokenizer,\n", + " max_len=max_len)\n", + " \n", + " return data.DataLoader(dataset, batch_size=batch_size, num_workers=4)" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [], + "source": [ + "def train_epoch(\n", + " model,\n", + " data_loader,\n", + " criterion,\n", + " optimizer,\n", + " scheduler,\n", + " n_examples,\n", + " device\n", + "):\n", + " model.train()\n", + " losses = []\n", + " correct_preds = 0\n", + " \n", + " for i, d in enumerate(data_loader):\n", + " if i % 50 == 0:\n", + " print(f'batch {i + 1}/ {len(data_loader)}')\n", + " input_ids = d['input_ids'].to(device)\n", + " attention_mask = d['attention_mask'].to(device)\n", + " targets = d['targets'].to(device)\n", + " \n", + " outputs = model(\n", + " input_ids=input_ids,\n", + " attention_mask=attention_mask\n", + " )\n", + " \n", + " _, pred = torch.max(outputs, dim=1)\n", + " \n", + " loss = criterion(outputs, targets)\n", + " correct_preds += torch.sum(pred == targets)\n", + " losses.append(loss.item())\n", + " \n", + " loss.backward()\n", + " nn.utils.clip_grad_norm_(model.parameters(), max_norm=1.0)\n", + " optimizer.step()\n", + " scheduler.step()\n", + " optimizer.zero_grad()\n", + " return (correct_preds.double() / n_examples).detach().cpu().numpy(), np.mean(losses)" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [], + "source": [ + "def eval_model(\n", + " model,\n", + " data_loader,\n", + " criterion,\n", + " n_examples,\n", + " device\n", + "):\n", + " print('evaluation')\n", + " model = model.eval()\n", + " correct_preds = 0\n", + " losses = []\n", + " \n", + " with torch.no_grad():\n", + " for i, d in enumerate(data_loader):\n", + " if i % 50 == 0:\n", + " print(f'batch {i + 1}/ {len(data_loader)}')\n", + " input_ids = d['input_ids'].to(device)\n", + " attention_mask = d['attention_mask'].to(device)\n", + " targets = d['targets'].to(device)\n", + " \n", + " outputs = model(\n", + " input_ids=input_ids,\n", + " attention_mask=attention_mask\n", + " )\n", + " \n", + " _, pred = torch.max(outputs, dim=1)\n", + "\n", + " loss = criterion(outputs, targets)\n", + " correct_preds += torch.sum(pred == targets)\n", + " losses.append(loss.item())\n", + " return (correct_preds.double() / n_examples).detach().cpu().numpy(), np.mean(losses)" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [], + "source": [ + "def eval_on_test(model_path, data_loader, device, n_examples, pretrained_model, n_classes):\n", + " model = BertSentimentClassifier(pretrained_model, n_classes).to(device)\n", + " model.load_state_dict(torch.load(model_path))\n", + " model.eval()\n", + "\n", + " correct_preds = 0\n", + "\n", + " with torch.no_grad():\n", + " for i, d in enumerate(data_loader):\n", + " if i % 50 == 0:\n", + " print(f'batch {i + 1}/ {len(data_loader)}')\n", + "\n", + " input_ids = d['input_ids'].to(device)\n", + " attention_mask = d['attention_mask'].to(device)\n", + " targets = d['targets'].to(device)\n", + "\n", + " outputs = model(\n", + " input_ids=input_ids,\n", + " attention_mask=attention_mask\n", + " )\n", + "\n", + " _, pred = torch.max(outputs, dim=1)\n", + " correct_preds += torch.sum(pred == targets)\n", + " return correct_preds.double() / n_examples" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [], + "source": [ + "def train_sentiment_analysis_model(context: MLClientCtx, \n", + " reviews_dataset: DataItem,\n", + " pretrained_model: str = 'bert-base-cased', \n", + " models_dir: str = 'models',\n", + " model_filename: str = 'bert_sentiment_analysis_model.pt',\n", + " n_classes: int = 3,\n", + " MAX_LEN: int = 128,\n", + " BATCH_SIZE: int = 16,\n", + " EPOCHS: int = 50,\n", + " random_state: int = 42):\n", + "\n", + " # Check for CPU or GPU \n", + " device = torch.device('cuda:0') if torch.cuda.is_available() else torch.device('cpu')\n", + " base_path = os.path.abspath(context.artifact_path)\n", + " plots_path = os.path.join(base_path, 'plots')\n", + " data_path = os.path.join(base_path, 'data')\n", + " context.logger.info(f'Using {device}')\n", + " \n", + " models_basepath = os.path.join(context.artifact_path, models_dir)\n", + " os.makedirs(models_basepath, exist_ok=True)\n", + " model_filepath = os.path.join(models_basepath, model_filename)\n", + " \n", + " # Get dataset\n", + " df = reviews_dataset.as_df()\n", + " \n", + " # Save score plot\n", + " df = df[['content', 'score']]\n", + " sns.distplot(df.score)\n", + " reviews_scores_artifact = context.log_artifact(PlotArtifact(f\"reviews-scores\", body=plt.gcf()),\n", + " target_path=f\"{plots_path}/reviews-scores.html\")\n", + " \n", + " # Turn scores to sentiment label\n", + " df['sentiment'] = df['score'].apply(score_to_sents)\n", + " \n", + " # Load bert tokenizer\n", + " tokenizer = BertTokenizer.from_pretrained(pretrained_model)\n", + " \n", + " # Tokenize reviews\n", + " lens = [len(tokenizer.encode(df.loc[review]['content'])) for review in df.index]\n", + " max_length = max(lens)\n", + " context.logger.info(f'longest review: {max_length}')\n", + " plt.clf()\n", + " sns.distplot(lens)\n", + " reviews_lengths_artifact = context.log_artifact(PlotArtifact(f\"reviews-lengths\", body=plt.gcf()),\n", + " target_path=f\"{plots_path}/reviews-lengths.html\")\n", + " \n", + " # Create training and validation datasets\n", + " df_train, df_test = train_test_split(df, test_size=0.2, random_state=random_state)\n", + " df_dev, df_test = train_test_split(df_test, test_size = 0.5, random_state=random_state)\n", + " \n", + " # Create dataloaders for all datasets\n", + " train_loader = create_data_loader(df_train, tokenizer, MAX_LEN, BATCH_SIZE)\n", + " dev_loader = create_data_loader(df_dev, tokenizer, MAX_LEN, BATCH_SIZE)\n", + " test_loader = create_data_loader(df_test, tokenizer, MAX_LEN, BATCH_SIZE)\n", + " \n", + " # Load the bert sentiment classifier base\n", + " model = BertSentimentClassifier(pretrained_model, n_classes=n_classes).to(device)\n", + " \n", + " # training\n", + " optimizer = AdamW(model.parameters(), lr=2e-5, correct_bias=False)\n", + " total_steps = len(train_loader) * EPOCHS\n", + " scheduler = get_linear_schedule_with_warmup(optimizer=optimizer, num_warmup_steps=0, num_training_steps=total_steps)\n", + " criterion = nn.CrossEntropyLoss().to(device)\n", + " \n", + " history = defaultdict(list)\n", + " best_acc = train_acc = train_loss = dev_acc = dev_loss = 0\n", + "\n", + " context.logger.info('Started training the model')\n", + " for epoch in range(EPOCHS):\n", + " train_acc, train_loss = train_epoch(\n", + " model,\n", + " train_loader,\n", + " criterion,\n", + " optimizer,\n", + " scheduler,\n", + " len(df_train),\n", + " device\n", + " )\n", + " \n", + " dev_acc, dev_loss = eval_model(\n", + " model,\n", + " dev_loader,\n", + " criterion,\n", + " len(df_dev),\n", + " device\n", + " )\n", + "\n", + " # Append results to history\n", + " history['train_acc'].append(train_acc)\n", + " history['train_loss'].append(train_loss)\n", + " history['dev_acc'].append(dev_acc)\n", + " history['dev_loss'].append(dev_loss)\n", + " context.logger.info(f'Epoch: {epoch + 1}/{EPOCHS}: Train loss: {train_loss}, accuracy: {train_acc} Val loss: {dev_loss}, accuracy: {dev_acc}')\n", + "\n", + " if dev_acc > best_acc:\n", + " torch.save(model.state_dict(), model_filepath)\n", + " context.logger.info(f'Updating model, Current models is better then the previous one ({best_acc} vs. {dev_acc}).')\n", + " best_acc = dev_acc\n", + " \n", + " context.logger.info('Finished training, testing and logging results')\n", + " chart = ChartArtifact('summary')\n", + " chart.header = ['epoch', 'accuracy', 'val_accuracy', 'loss', 'val_loss']\n", + " for i in range(len(history['train_acc'])):\n", + " chart.add_row([i + 1, history['train_acc'][i],\n", + " history['train_loss'][i],\n", + " history['dev_acc'][i],\n", + " history['dev_loss'][i]])\n", + " summary = context.log_artifact(chart, local_path=os.path.join('plots', 'summary.html'))\n", + "\n", + " history_df = pd.DataFrame(history)\n", + " history_table = TableArtifact('history', df=history_df)\n", + " history_artifact = context.log_artifact(history_table, target_path=os.path.join(data_path, 'history.csv'))\n", + "\n", + " test_acc = eval_on_test(model_filepath, test_loader, device, len(df_test), pretrained_model, n_classes)\n", + " context.logger.info(f'Received {test_acc} on test dataset')\n", + " results = {'train_accuracy': train_acc,\n", + " 'train_loss': train_loss,\n", + " 'best_acccuracy': best_acc,\n", + " 'validation_accuracy': dev_acc,\n", + " 'validation_loss': dev_loss}\n", + " context.log_results(results)\n", + " context.log_model(key='bert_sentiment_analysis_model',\n", + " model_file=model_filename,\n", + " model_dir=models_dir,\n", + " artifact_path=context.artifact_path,\n", + " upload=False,\n", + " labels={'framework': 'pytorch',\n", + " 'category': 'nlp',\n", + " 'action': 'sentiment_analysis'},\n", + " metrics=context.results,\n", + " parameters={'pretrained_model': pretrained_model,\n", + " 'MAX_LEN': MAX_LEN,\n", + " 'BATCH_SIZE': BATCH_SIZE,\n", + " 'EPOCHS': EPOCHS,\n", + " 'random_state': random_state},\n", + " extra_data={'reviews_scores': reviews_scores_artifact,\n", + " 'reviews_length': reviews_lengths_artifact,\n", + " 'training_history': history_artifact})\n", + " " + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [], + "source": [ + "#nuclio: end-code" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Test locally" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [], + "source": [ + "from mlrun import code_to_function, mount_v3io, run_local, NewTask\n", + "\n", + "reviews_datafile = os.path.join(os.path.abspath('..'), 'data', 'reviews.csv')\n", + "pretrained_model = 'bert-base-cased'\n", + "\n", + "task = NewTask(params={'pretrained_model': pretrained_model,\n", + " 'EPOCHS': 2},\n", + " inputs={'reviews_dataset': reviews_datafile})\n", + "# lrun = run_local(task, handler=train_sentiment_analysis_model)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Deploy to cluster" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "> 2020-10-14 09:55:39,793 [info] function spec saved to path: bert_sentiment_classification.yaml\n" + ] + }, + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "fn = code_to_function(name='train_sentiment_analysis',\n", + " project='stocks',\n", + " handler='train_sentiment_analysis_model')\n", + "fn.gpus(1)\n", + "fn.export('bert_sentiment_classification.yaml')\n", + "fn.apply(mount_v3io())" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "> 2020-10-14 08:38:17,960 [info] starting run train-sentiment-analysis-train_sentiment_analysis_model uid=cc7a4299758244f6a51574bc2db371f9 -> http://mlrun-api:8080\n", + "> 2020-10-14 08:38:18,106 [info] Job is running in the background, pod: train-sentiment-analysis-train-sentiment-analysis-model-8q2s9\n", + "Downloading: 100%|██████████| 213k/213k [00:00<00:00, 496kB/s] \n", + "Token indices sequence length is longer than the specified maximum sequence length for this model (518 > 512). Running this sequence through the model will result in indexing errors\n", + "Token indices sequence length is longer than the specified maximum sequence length for this model (518 > 512). Running this sequence through the model will result in indexing errors\n", + "Downloading: 100%|██████████| 433/433 [00:00<00:00, 274kB/s]\n", + "Downloading: 100%|██████████| 436M/436M [00:11<00:00, 38.2MB/s] \n", + "> 2020-10-14 08:38:28,729 [info] Using cuda:0\n", + "> 2020-10-14 08:38:43,330 [info] longest review: 520\n", + "> 2020-10-14 08:39:02,284 [info] Started training the model\n", + "batch 1/ 788\n", + "batch 51/ 788\n", + "batch 101/ 788\n", + "batch 151/ 788\n", + "batch 201/ 788\n", + "batch 251/ 788\n", + "batch 301/ 788\n", + "batch 351/ 788\n", + "batch 401/ 788\n", + "batch 451/ 788\n", + "batch 501/ 788\n", + "batch 551/ 788\n", + "batch 601/ 788\n", + "batch 651/ 788\n", + "batch 701/ 788\n", + "batch 751/ 788\n", + "evaluation\n", + "batch 1/ 99\n", + "batch 51/ 99\n", + "> 2020-10-14 08:47:00,564 [info] Epoch: 1/2: Train loss: 0.9106895937229776, accuracy: 0.6201174976182915 Val loss: 0.8440537663421246, accuracy: 0.7003174603174603\n", + "> 2020-10-14 08:47:04,137 [info] Updating model, Current models is better then the previous one (0 vs. 0.7003174603174603).\n", + "batch 1/ 788\n", + "batch 51/ 788\n", + "batch 101/ 788\n", + "batch 151/ 788\n", + "batch 201/ 788\n", + "batch 251/ 788\n", + "batch 301/ 788\n", + "batch 351/ 788\n", + "batch 401/ 788\n", + "batch 451/ 788\n", + "batch 501/ 788\n", + "batch 551/ 788\n", + "batch 601/ 788\n", + "batch 651/ 788\n", + "batch 701/ 788\n", + "batch 751/ 788\n", + "evaluation\n", + "batch 1/ 99\n", + "batch 51/ 99\n", + "> 2020-10-14 08:57:38,559 [info] Epoch: 2/2: Train loss: 0.7954725730540183, accuracy: 0.7526992696093998 Val loss: 0.8184037906954987, accuracy: 0.7263492063492063\n", + "> 2020-10-14 08:57:42,181 [info] Updating model, Current models is better then the previous one (0.7003174603174603 vs. 0.7263492063492063).\n", + "> 2020-10-14 08:57:42,181 [info] Finished training, testing and logging results\n", + "batch 1/ 99\n", + "batch 51/ 99\n", + "> 2020-10-14 08:58:06,515 [info] Received 0.7320634920634921 on test dataset\n", + "> 2020-10-14 08:58:06,598 [info] run executed, status=completed\n", + "final state: succeeded\n" + ] + }, + { + "data": { + "text/html": [ + "\n", + "
\n", + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
projectuiditerstartstatenamelabelsinputsparametersresultsartifacts
stocks0Oct 14 08:38:28completedtrain-sentiment-analysis-train_sentiment_analysis_model
v3io_user=admin
kind=job
owner=admin
host=train-sentiment-analysis-train-sentiment-analysis-model-8q2s9
reviews_dataset
pretrained_model=bert-base-cased
EPOCHS=2
train_accuracy=0.7526992696093998
train_loss=0.7954725730540183
best_acccuracy=0.7263492063492063
validation_accuracy=0.7263492063492063
validation_loss=0.8184037906954987
reviews-scores
reviews-lengths
summary
history
bert_sentiment_analysis_model
\n", + "
\n", + "
\n", + "
\n", + " Title\n", + " ×\n", + "
\n", + " \n", + "
\n", + "
\n" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "to track results use .show() or .logs() or in CLI: \n", + "!mlrun get run cc7a4299758244f6a51574bc2db371f9 --project stocks , !mlrun logs cc7a4299758244f6a51574bc2db371f9 --project stocks\n", + "> 2020-10-14 08:58:11,565 [info] run executed, status=completed\n" + ] + } + ], + "source": [ + "run = fn.with_code().run(task, artifact_path='/User/stock-trading/')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "colab": { + "collapsed_sections": [], + "name": "Copy of bert_sentiment_classification.ipynb", + "provenance": [], + "toc_visible": true + }, + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/stock-analysis/code/01-read-stocks.ipynb b/stock-analysis/code/01-read-stocks.ipynb new file mode 100644 index 00000000..fc497347 --- /dev/null +++ b/stock-analysis/code/01-read-stocks.ipynb @@ -0,0 +1,398 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Ingest Real-Time Stock Data to Iguazio NoSQL and Time-series DB\n", + "the following example function ingest real-time stock information from an internet service (Yahoo finance api) into iguazio platform.
\n", + "everytime the data is updated it updates a NoSQL table with the recent metadata and updates the time-series DB with the new metrics (price and volume)\n", + "\n", + "The same code can run inside a nuclio (serverless) function and be automatically triggered on a predefined schedule (cron) or through HTTP requests
\n", + "\n", + "the example demonstrate the use of `%nuclio` magic commands to specify environment variables, package dependencies,
configurations (such as the cron schedule), and to deploy functions automatically onto a cluster." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "# if the nuclio-jupyter package is not installed run !pip install nuclio-jupyter\n", + "import nuclio " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Environment" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "copy the local credentials to the nuclio function config (-c option doesn't initialize locally)" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "%nuclio env -c V3IO_ACCESS_KEY=${V3IO_ACCESS_KEY}\n", + "%nuclio env -c V3IO_USERNAME=${V3IO_USERNAME}\n", + "%nuclio env -c V3IO_API=${V3IO_API}" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Set function configuration \n", + "use a cron trigger with 5min interval and define the base image
\n", + "for more details check [nuclio function configuration reference](https://github.com/nuclio/nuclio/blob/master/docs/reference/function-configuration/function-configuration-reference.md)" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "%nuclio: setting kind to 'nuclio'\n", + "%nuclio: setting spec.build.baseImage to 'python:3.6-jessie'\n" + ] + } + ], + "source": [ + "%%nuclio config \n", + "kind = \"nuclio\"\n", + "spec.build.baseImage = \"python:3.6-jessie\"" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Install required packages\n", + "`%nuclio cmd` allows you to run image build instructions and install packages
\n", + "Note: `-c` option will only install in nuclio, not locally" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "%%nuclio cmd -c\n", + "pip install lxml\n", + "pip install yfinance\n", + "pip install requests\n", + "pip install v3io_frames" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Nuclio function implementation\n", + "this function can run in Jupyter or in nuclio (real-time serverless)" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "# nuclio: start-code" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "import json\n", + "import requests\n", + "import yfinance as yf\n", + "import os\n", + "import pandas as pd\n", + "import datetime\n", + "import v3io_frames as v3f\n", + "import ast" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "def update_tickers(context, perdiod, interval):\n", + " stocks=[]; times=[]; volumes=[]; prices=[]\n", + " \n", + " stocks_df = pd.DataFrame()\n", + " for sym in context.stock_syms:\n", + " hist = yf.Ticker(sym).history(period=perdiod, interval='1m')\n", + " time = hist.index[len(hist) - 1]\n", + " record = hist.loc[time]\n", + " last = context.last_trade_times.get(sym)\n", + " context.logger.info(f'Received {sym} data from yfinance, including {len(hist)} candles ending at {last}')\n", + "\n", + " \n", + " # update the stocks table and TSDB metrics in case of new data \n", + " if not last or time > last:\n", + " \n", + " # update NoSQL table with stock data\n", + " stock = {'symbol': sym, 'price': record['Close'], 'volume': record['Volume'], 'last_updated': time}\n", + " expr = context.expr_template.format(**stock)\n", + " context.logger.debug_with('update expression', symbol=sym, expr=expr)\n", + " context.v3c.execute('kv', context.stocks_kv_table, 'update', args={'key': sym, 'expression': expr})\n", + " context.logger.info(f'Updated records from {last} to {time}')\n", + " # update time-series DB with price and volume metrics (use pandas dataframe with a single row, indexed by date)\n", + " context.last_trade_times[sym] = time\n", + " hist['symbol'] = sym\n", + " hist = hist.reset_index()\n", + " hist = hist.set_index(['Datetime', 'symbol'])\n", + " hist = hist.loc[:, ['Close', 'Volume']]\n", + " hist = hist.rename(columns={'Close': 'price', 'Volume': 'volume'})\n", + " stocks_df = stocks_df.append(hist)\n", + " context.logger.info(f'Added records {hist.shape[0]} records for {sym} to history')\n", + " else:\n", + " context.logger.info(f'No update was made, current TS: {last} vs. new data {time}')\n", + " \n", + " # write price and volume metrics to the Time-Series DB, add exchange label\n", + " if stocks_df.shape[0]>0:\n", + " stocks_df = stocks_df.sort_index(level=0)\n", + " context.logger.debug_with('writing data to TSDB', stocks=stocks_df)\n", + " stocks_df.to_csv('history.csv')\n", + " context.v3c.write(backend='tsdb', table=context.stocks_tsdb_table, dfs=stocks_df)" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [], + "source": [ + "def init_context(context):\n", + " # Setup V3IO Client\n", + " client = v3f.Client('framesd:8081',container=os.getenv('V3IO_CONTAINER', 'bigdata'))\n", + " setattr(context, 'v3c', client)\n", + " \n", + " # Create V3IO Tables and add reference to context\n", + " setattr(context, 'stocks_kv_table', os.getenv('STOCKS_KV_TABLE', 'stocks/stocks_kv'))\n", + " setattr(context, 'stocks_tsdb_table', os.getenv('STOCKS_TSDB_TABLE', 'stocks/stocks_tsdb'))\n", + " context.v3c.create(backend='tsdb', table=context.stocks_tsdb_table, rate='1/m', if_exists=1)\n", + " \n", + " stocks = os.getenv('STOCK_LIST','GOOGL,MSFT,AMZN,AAPL,INTC')\n", + " if stocks.startswith('['):\n", + " stock_syms = ast.literal_eval(stocks)\n", + " else: \n", + " stock_syms = stocks.split(',')\n", + " setattr(context, 'stock_syms', stock_syms)\n", + " \n", + "\n", + " # v3io update expression template \n", + " expr_template = os.getenv('EXPRESSION_TEMPLATE', \"symbol='{symbol}';price={price};volume={volume};last_updated='{last_updated}'\")\n", + " setattr(context, 'expr_template', expr_template)\n", + "\n", + " last_trade_times = {}\n", + " setattr(context, 'last_trade_times', last_trade_times)\n", + " \n", + " # Run first initial data preperation\n", + " update_tickers(context, '7d', '1m')" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [], + "source": [ + "def handler(context, event):\n", + " update_tickers(context, '5m', '1m')\n", + " return 'done'" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [], + "source": [ + "# nuclio: end-code" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Function invocation\n", + "### Local test\n", + "the following section simulates nuclio function invocation and will emit the function results" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Python> 2020-10-14 06:54:17,178 [info] Received GOOGL data from yfinance, including 2678 candles ending at None\n", + "Python> 2020-10-14 06:54:17,181 [info] Updated records from None to 2020-10-13 15:59:00-04:00\n", + "Python> 2020-10-14 06:54:17,191 [info] Added records 2678 records for GOOGL to history\n", + "Python> 2020-10-14 06:54:17,660 [info] Received MSFT data from yfinance, including 2722 candles ending at None\n", + "Python> 2020-10-14 06:54:17,664 [info] Updated records from None to 2020-10-13 15:59:00-04:00\n", + "Python> 2020-10-14 06:54:17,674 [info] Added records 2722 records for MSFT to history\n", + "Python> 2020-10-14 06:54:18,187 [info] Received AMZN data from yfinance, including 2718 candles ending at None\n", + "Python> 2020-10-14 06:54:18,192 [info] Updated records from None to 2020-10-13 15:59:00-04:00\n", + "Python> 2020-10-14 06:54:18,203 [info] Added records 2718 records for AMZN to history\n", + "Python> 2020-10-14 06:54:18,686 [info] Received AAPL data from yfinance, including 2721 candles ending at None\n", + "Python> 2020-10-14 06:54:18,689 [info] Updated records from None to 2020-10-13 15:59:00-04:00\n", + "Python> 2020-10-14 06:54:18,700 [info] Added records 2721 records for AAPL to history\n", + "Python> 2020-10-14 06:54:19,185 [info] Received INTC data from yfinance, including 2720 candles ending at None\n", + "Python> 2020-10-14 06:54:19,189 [info] Updated records from None to 2020-10-13 15:59:00-04:00\n", + "Python> 2020-10-14 06:54:19,200 [info] Added records 2720 records for INTC to history\n", + "Python> 2020-10-14 06:54:20,136 [info] Received GOOGL data from yfinance, including 5 candles ending at 2020-10-13 15:59:00-04:00\n", + "Python> 2020-10-14 06:54:20,137 [info] No update was made, current TS: 2020-10-13 15:59:00-04:00 vs. new data 2020-10-13 15:59:00-04:00\n", + "Python> 2020-10-14 06:54:20,406 [info] Received MSFT data from yfinance, including 5 candles ending at 2020-10-13 15:59:00-04:00\n", + "Python> 2020-10-14 06:54:20,407 [info] No update was made, current TS: 2020-10-13 15:59:00-04:00 vs. new data 2020-10-13 15:59:00-04:00\n", + "Python> 2020-10-14 06:54:20,685 [info] Received AMZN data from yfinance, including 5 candles ending at 2020-10-13 15:59:00-04:00\n", + "Python> 2020-10-14 06:54:20,686 [info] No update was made, current TS: 2020-10-13 15:59:00-04:00 vs. new data 2020-10-13 15:59:00-04:00\n", + "Python> 2020-10-14 06:54:20,962 [info] Received AAPL data from yfinance, including 5 candles ending at 2020-10-13 15:59:00-04:00\n", + "Python> 2020-10-14 06:54:20,962 [info] No update was made, current TS: 2020-10-13 15:59:00-04:00 vs. new data 2020-10-13 15:59:00-04:00\n", + "Python> 2020-10-14 06:54:21,229 [info] Received INTC data from yfinance, including 5 candles ending at 2020-10-13 15:59:00-04:00\n", + "Python> 2020-10-14 06:54:21,229 [info] No update was made, current TS: 2020-10-13 15:59:00-04:00 vs. new data 2020-10-13 15:59:00-04:00\n" + ] + }, + { + "data": { + "text/plain": [ + "'done'" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# create a test event and invoke the function locally \n", + "init_context(context)\n", + "event = nuclio.Event(body='')\n", + "handler(context, event)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Deploy to cluster" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "> 2020-10-14 06:54:26,152 [info] function spec saved to path: 01-read-stocks.yaml\n" + ] + } + ], + "source": [ + "from mlrun import code_to_function\n", + "\n", + "# Export bare function\n", + "fn = code_to_function('read-stocks',\n", + " handler='handler')\n", + "fn.export('01-read-stocks.yaml')\n", + "\n", + "# Set parameters for current deployment\n", + "fn.add_trigger('cron', nuclio.triggers.CronTrigger('300s'))\n", + "fn.set_envs({'STOCK_LIST': ['GOOG', 'MSFT', 'AMZN', 'AAPL', 'INTC'],\n", + " 'V3IO_CONTAINER': 'bigdata',\n", + " 'STOCKS_TSDB_TABLE': 'stocks/stocks_tsdb',\n", + " 'STOCKS_KV_TABLE': 'stocks/stocks_kv',\n", + " 'EXPRESSION_TEMPLATE': \"symbol='{symbol}';price={price};volume={volume};last_updated='{last_updated}'\"})\n", + "fn.spec.max_replicas = 1" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "> 2020-10-14 06:54:26,728 [info] deploy started\n", + "[nuclio] 2020-10-14 06:54:28,852 (info) Build complete\n", + "[nuclio] 2020-10-14 06:54:40,055 done updating stocks-read-stocks, function address: 192.168.224.209:30654\n", + "> 2020-10-14 06:54:40,077 [warning] warning!, server (0.5.1) and client (0.5.2) ver dont match\n" + ] + }, + { + "data": { + "text/plain": [ + "'http://192.168.224.209:30654'" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "fn.deploy(project='stocks')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.6" + }, + "toc-autonumbering": false + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/stock-analysis/code/02-read-news.ipynb b/stock-analysis/code/02-read-news.ipynb new file mode 100644 index 00000000..9816dea7 --- /dev/null +++ b/stock-analysis/code/02-read-news.ipynb @@ -0,0 +1,415 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Scrape news and Analyse sentiments\n", + "This notebook shows an example of scraping news articles linked to specific traded companies and utilizing our predeployed sentiment analysis model server to predict the sentiment of the author towards said companies." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "# if the nuclio-jupyter package is not installed run !pip install nuclio-jupyter\n", + "import nuclio " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Environment" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "%nuclio env -c V3IO_ACCESS_KEY=${V3IO_ACCESS_KEY}\n", + "%nuclio env -c V3IO_USERNAME=${V3IO_USERNAME}\n", + "%nuclio env -c V3IO_API=${V3IO_API}" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "%%nuclio cmd -c\n", + "pip install beautifulsoup4\n", + "pip install pandas\n", + "pip install v3io_frames" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "%nuclio: setting kind to 'nuclio'\n", + "%nuclio: setting spec.build.baseImage to 'python:3.6-jessie'\n" + ] + } + ], + "source": [ + "%nuclio config kind = \"nuclio\"\n", + "%nuclio config spec.build.baseImage = \"python:3.6-jessie\"" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Function" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "# nuclio: start-code" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "from bs4 import BeautifulSoup as bs\n", + "from urllib.request import Request, urlopen\n", + "import requests\n", + "import pandas as pd\n", + "import v3io_frames as v3f\n", + "from unicodedata import normalize\n", + "from datetime import datetime\n", + "import re\n", + "import os\n", + "import json" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "def get_stock_news_page(stock_string):\n", + " request = Request('https://www.investing.com/equities/' + stock_string + '-news', headers={\"User-Agent\": \"Mozilla/5.0\"})\n", + " content = urlopen(request).read()\n", + " return bs(content, 'html.parser')\n", + "\n", + "def get_internal_article_links(page):\n", + " news = page.find_all('div', attrs={'class': 'mediumTitle1'})[1]\n", + " articles = news.find_all('article', attrs={'class': 'js-article-item articleItem'})\n", + " return ['https://www.investing.com' + a.find('a').attrs['href'] for a in articles]\n", + "\n", + "def get_article_page(article_link):\n", + " request = Request(article_link, headers={\"User-Agent\": \"Mozilla/5.0\"})\n", + " content = urlopen(request).read()\n", + " return bs(content, 'html.parser')\n", + "\n", + "def clean_paragraph(paragraph):\n", + " paragraph = re.sub(r'\\(http\\S+', '', paragraph)\n", + " paragraph = re.sub(r'\\([A-Z]+:[A-Z]+\\)', '', paragraph)\n", + " paragraph = re.sub(r'[\\n\\t\\s\\']', ' ', paragraph)\n", + " return normalize('NFKD', paragraph) \n", + "\n", + "def extract_text(article_page):\n", + " text_tag = article_page.find('div', attrs={'class': 'WYSIWYG articlePage'})\n", + " paragraphs = text_tag.find_all('p')\n", + " text = '\\n'.join([clean_paragraph(p.get_text()) for p in paragraphs[:-1]])\n", + " return text\n", + "\n", + "def get_publish_time(article_page):\n", + " details = article_page.find('meta', attrs={'itemprop': 'dateModified'})\n", + " publish_date = details.get_attribute_list('content')[0]\n", + " return str(datetime.strptime(publish_date, '%Y-%m-%d %H:%M:%S'))\n", + "\n", + "def get_score(paragraph_scores):\n", + " return sum([score - 1 for score in paragraph_scores]) / len(paragraph_scores) \n", + "\n", + "def get_article_scores(context, articles, endpoint):\n", + " scores = [] \n", + " for i, article in enumerate(articles):\n", + " context.logger.info(f'getting score for article {i + 1}\\\\{len(articles)}')\n", + " event_data = {'instances': article.split('\\n')}\n", + " resp = requests.put(endpoint+'/bert_classifier_v1/predict', json=json.dumps(event_data))\n", + " scores.append(get_score(json.loads(resp.text)))\n", + " return scores" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [], + "source": [ + "def init_context(context):\n", + " # Setup V3IO Client\n", + " client = v3f.Client('framesd:8081',container=os.getenv('V3IO_CONTAINER', 'bigdata'))\n", + " setattr(context, 'v3c', client)\n", + " \n", + " # Create stocks stream\n", + " setattr(context, 'stocks_stream', os.getenv('STOCKS_STREAM', 'stocks/stocks_stream'))\n", + " context.v3c.create(backend='stream', table=context.stocks_stream, if_exists=1)\n", + " \n", + " # Create TSDB table\n", + " setattr(context, 'stocks_tsdb', os.getenv('STOCKS_TSDB_TABLE', 'stocks/stocks_tsdb'))\n", + " context.v3c.create(backend='tsdb', table=context.stocks_tsdb, rate='1/s', if_exists=1)\n", + " \n", + " # Supply the endpoint provided at the end of execution of 00-deploy-sentiment-model.ipynb.\n", + " setattr(context, 'sentiment_model_endpoint', os.getenv('SENTIMENT_MODEL_ENDPOINT', 'http://nuclio-stocks-sentiment-analysis-server:8080'))\n", + "\n", + " sym_to_url={'GOOGL': 'google-inc', 'MSFT': 'microsoft-corp', 'AMZN': 'amazon-com-inc', 'AAPL': 'apple-computer-inc'}\n", + " setattr(context, 'sym_to_url', sym_to_url)\n", + " setattr(context, 'stocks_kv', os.getenv('STOCKS_KV', 'stocks/stocks_kv'))" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [], + "source": [ + "def handler(context, handler):\n", + " \n", + " syms = []\n", + " contents = []\n", + " links = []\n", + " times = []\n", + " sentiments = []\n", + " \n", + " for sym, url_string in context.sym_to_url.items():\n", + " context.logger.info(f'Getting news about {sym}')\n", + " news_page = get_stock_news_page(url_string)\n", + " article_links = get_internal_article_links(news_page)\n", + " article_pages = [get_article_page(link) for link in article_links]\n", + " articles = [extract_text(article_page) for article_page in article_pages]\n", + " curr_sentiments = get_article_scores(context, articles, context.sentiment_model_endpoint)\n", + " curr_times = [get_publish_time(article_page) for article_page in article_pages]\n", + " \n", + " sentiments += curr_sentiments\n", + " times += curr_times\n", + " for article, link, sentiment, time in zip(articles, article_links, curr_sentiments, curr_times):\n", + " record = {\n", + " 'content': article,\n", + " 'time': time,\n", + " 'symbol': sym,\n", + " 'link': link,\n", + " 'sentiment': sentiment\n", + " }\n", + " context.v3c.execute('stream', context.stocks_stream, 'put', args={'data': json.dumps(record)})\n", + " \n", + " \n", + " syms.append(sym)\n", + " contents.append(article)\n", + " links.append(link)\n", + " context.v3c.execute('kv', context.stocks_kv, command='update', args={'key': sym,\n", + " 'expression': f'SET sentiment={sentiments[-1]}'})\n", + " \n", + " if len(sentiments)>0:\n", + " df = pd.DataFrame.from_dict({'sentiment': sentiments,\n", + " 'time': times,\n", + " 'symbol': syms})\n", + " df = df.set_index(['time', 'symbol'])\n", + " df.index = df.index.set_levels([pd.to_datetime(df.index.levels[0]), df.index.levels[1]])\n", + " df = df.sort_index(level=0, axis=0)\n", + " context.v3c.write(backend='tsdb', table=context.stocks_tsdb, dfs=df)" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [], + "source": [ + "# nuclio: end-code" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Test locally" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [], + "source": [ + "init_context(context)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [], + "source": [ + "from nuclio import Event\n", + "event = Event()" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Python> 2020-10-18 07:37:20,858 [info] Getting news about GOOGL\n", + "Python> 2020-10-18 07:37:32,099 [info] getting score for article 1\\6\n", + "Python> 2020-10-18 07:37:33,830 [info] getting score for article 2\\6\n", + "Python> 2020-10-18 07:37:35,535 [info] getting score for article 3\\6\n", + "Python> 2020-10-18 07:37:36,975 [info] getting score for article 4\\6\n", + "Python> 2020-10-18 07:37:37,670 [info] getting score for article 5\\6\n", + "Python> 2020-10-18 07:37:38,311 [info] getting score for article 6\\6\n", + "Python> 2020-10-18 07:37:39,058 [info] Getting news about MSFT\n", + "Python> 2020-10-18 07:37:55,395 [info] getting score for article 1\\9\n", + "Python> 2020-10-18 07:37:56,646 [info] getting score for article 2\\9\n", + "Python> 2020-10-18 07:37:58,076 [info] getting score for article 3\\9\n", + "Python> 2020-10-18 07:37:59,197 [info] getting score for article 4\\9\n", + "Python> 2020-10-18 07:38:00,132 [info] getting score for article 5\\9\n", + "Python> 2020-10-18 07:38:01,556 [info] getting score for article 6\\9\n", + "Python> 2020-10-18 07:38:02,083 [info] getting score for article 7\\9\n", + "Python> 2020-10-18 07:38:03,386 [info] getting score for article 8\\9\n", + "Python> 2020-10-18 07:38:04,779 [info] getting score for article 9\\9\n", + "Python> 2020-10-18 07:38:06,117 [info] Getting news about AMZN\n", + "Python> 2020-10-18 07:38:16,168 [info] getting score for article 1\\5\n", + "Python> 2020-10-18 07:38:17,031 [info] getting score for article 2\\5\n", + "Python> 2020-10-18 07:38:17,765 [info] getting score for article 3\\5\n", + "Python> 2020-10-18 07:38:19,593 [info] getting score for article 4\\5\n", + "Python> 2020-10-18 07:38:20,146 [info] getting score for article 5\\5\n", + "Python> 2020-10-18 07:38:21,082 [info] Getting news about AAPL\n", + "Python> 2020-10-18 07:38:36,367 [info] getting score for article 1\\9\n", + "Python> 2020-10-18 07:38:36,881 [info] getting score for article 2\\9\n", + "Python> 2020-10-18 07:38:37,477 [info] getting score for article 3\\9\n", + "Python> 2020-10-18 07:38:39,165 [info] getting score for article 4\\9\n", + "Python> 2020-10-18 07:38:40,200 [info] getting score for article 5\\9\n", + "Python> 2020-10-18 07:38:41,073 [info] getting score for article 6\\9\n", + "Python> 2020-10-18 07:38:41,844 [info] getting score for article 7\\9\n", + "Python> 2020-10-18 07:38:50,409 [info] getting score for article 8\\9\n", + "Python> 2020-10-18 07:38:51,836 [info] getting score for article 9\\9\n" + ] + } + ], + "source": [ + "handler(context, event)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Deploy to cluster" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "> 2020-10-14 07:00:08,593 [info] function spec saved to path: 02-read-news.yaml\n" + ] + } + ], + "source": [ + "from mlrun import code_to_function\n", + "\n", + "# Export bare function\n", + "fn = code_to_function('read-news',\n", + " handler='handler')\n", + "fn.export('02-read-news.yaml')\n", + "\n", + "# Set parameters for current deployment\n", + "fn.add_trigger('cron', nuclio.triggers.CronTrigger('300s'))\n", + "fn.set_envs({'V3IO_CONTAINER': 'bigdata',\n", + " 'STOCKS_STREAM': 'stocks/stocks_stream',\n", + " 'STOCKS_TSDB_TABLE': 'stocks/stocks_tsdb',\n", + " 'SENTIMENT_MODEL_ENDPOINT': 'http://nuclio-stocks-sentiment-analysis-serving:8080'})\n", + "fn.spec.max_replicas = 1" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "> 2020-10-14 07:00:08,600 [info] deploy started\n", + "[nuclio] 2020-10-14 07:01:08,879 (info) Build complete\n", + "[nuclio] 2020-10-14 07:01:17,040 (info) Function deploy complete\n", + "[nuclio] 2020-10-14 07:01:17,048 done updating stocks-read-news, function address: 192.168.224.209:30776\n", + "> 2020-10-14 07:01:17,057 [warning] warning!, server (0.5.1) and client (0.5.2) ver dont match\n" + ] + }, + { + "data": { + "text/plain": [ + "'http://192.168.224.209:30776'" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "fn.deploy(project='stocks')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/stock-analysis/code/03-stream-viewer.ipynb b/stock-analysis/code/03-stream-viewer.ipynb new file mode 100644 index 00000000..d61105ac --- /dev/null +++ b/stock-analysis/code/03-stream-viewer.ipynb @@ -0,0 +1,287 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Real-Time Stream Viewer (HTTP)\n", + "the following function responds to HTTP requests with the list of last 10 processed twitter messages + sentiments in reverse order (newest on top), it reads records from the enriched stream, take the recent 10 messages, and reverse sort them. the function is using nuclio context to store the last results and stream pointers for max efficiency.
\n", + "\n", + "The code is automatically converted into a nuclio (serverless) function and and respond to HTTP requests
\n", + "\n", + "the example demonstrate the use of `%nuclio` magic commands to specify environment variables, package dependencies,
configurations, and to deploy functions automatically onto a cluster.\n", + "\n", + "\n", + "## Initialize nuclio emulation, environment variables and configuration\n", + "use `# nuclio: ignore` for sections that don't need to be copied to the function" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "# nuclio: ignore\n", + "# if the nuclio-jupyter package is not installed run !pip install nuclio-jupyter\n", + "import nuclio " + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "%nuclio env -c V3IO_ACCESS_KEY=${V3IO_ACCESS_KEY}\n", + "%nuclio env -c V3IO_USERNAME=${V3IO_USERNAME}\n", + "%nuclio env -c V3IO_API=${V3IO_API}" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Set function configuration \n", + "use a cron trigger with 5min interval and define the base image
\n", + "for more details check [nuclio function configuration reference](https://github.com/nuclio/nuclio/blob/master/docs/reference/function-configuration/function-configuration-reference.md)" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "%nuclio: setting kind to 'nuclio'\n", + "%nuclio: setting spec.build.baseImage to 'mlrun/mlrun'\n" + ] + } + ], + "source": [ + "%%nuclio config \n", + "kind = \"nuclio\"\n", + "spec.build.baseImage = \"mlrun/mlrun\"" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Install required packages\n", + "`%nuclio cmd` allows you to run image build instructions and install packages
\n", + "Note: `-c` option will only install in nuclio, not locally" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "%nuclio cmd -c pip install v3io" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Nuclio function implementation\n", + "this function can run in Jupyter or in nuclio (real-time serverless)" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "import v3io.dataplane\n", + "import json\n", + "import os\n", + "\n", + "def init_context(context):\n", + " access_key = os.getenv('V3IO_ACCESS_KEY', None)\n", + " setattr(context, 'container', os.getenv('V3IO_CONTAINER', 'bigdata'))\n", + " setattr(context, 'stream_path', os.getenv('STOCKS_STREAM', 'stocks/stocks_stream'))\n", + " \n", + " v3io_client = v3io.dataplane.Client(endpoint=os.getenv('V3IO_API', None), access_key=access_key)\n", + " setattr(context, 'data', [])\n", + " setattr(context, 'v3io_client', v3io_client) \n", + " setattr(context, 'limit', os.getenv('LIMIT', 10))\n", + " try:\n", + " resp = v3io_client.seek_shard(container=context.container, path=f'{context.stream_path}/0', seek_type='EARLIEST')\n", + " setattr(context, 'next_location', resp.output.location)\n", + " except:\n", + " context.logger.info('Stream not updated yet')\n", + " \n", + "\n", + " \n", + "def handler(context, event):\n", + " \n", + " if hasattr(context, 'next_location'):\n", + " resp = context.v3io_client.get_records(container=context.container, path=f'{context.stream_path}/0', location=context.next_location, limit=context.limit)\n", + " else:\n", + " resp = context.v3io_client.seek_shard(container=context.container, path=f'{context.stream_path}/0', seek_type='EARLIEST')\n", + " setattr(context, 'next_location', resp.output.location)\n", + " context.next_location = resp.output.next_location\n", + " context.logger.info('location: %s', context.next_location)\n", + "\n", + " for rec in resp.output.records:\n", + " rec_data = rec.data.decode('utf-8')\n", + " rec_json = json.loads(rec_data)\n", + " context.data.append({'Time': rec_json['time'],\n", + " 'Symbol': rec_json['symbol'],\n", + " 'Sentiment': rec_json['sentiment'],\n", + " 'Link': rec_json['link'],\n", + " 'Content': rec_json['content']})\n", + "\n", + " context.data = context.data[-context.limit:]\n", + " \n", + " columns = [{'text': key, 'type': 'object'} for key in ['Time', 'Symbol', 'Sentiment', 'Link', 'Content']]\n", + " data = [list(item.values()) for item in context.data]\n", + " response = [{'columns': columns,\n", + " 'rows': data,\n", + " 'type': 'table'}]\n", + "\n", + " return response\n", + " " + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "# nuclio: end-code" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Function invocation\n", + "the following section simulates nuclio function invocation and will emit the function results" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# create a test event and invoke the function locally\n", + "init_context(context)\n", + "event = nuclio.Event(body='')\n", + "handler(context, event)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Deploy a function onto a cluster\n", + "the `%nuclio deploy` command deploy functions into a cluster, make sure the notebook is saved prior to running it !
check the help (`%nuclio help deploy`) for more information" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "> 2020-10-14 07:14:08,052 [info] function spec saved to path: 03-stream-viewer.yaml\n" + ] + } + ], + "source": [ + "from mlrun import code_to_function\n", + "\n", + "# Export the bare function\n", + "fn = code_to_function('stream-viewer',\n", + " handler='handler')\n", + "fn.export('03-stream-viewer.yaml')\n", + "\n", + "# Set parameters for current deployment\n", + "fn.set_envs({'V3IO_CONTAINER': 'bigdata',\n", + " 'STOCKS_STREAM': 'stocks/stocks_stream'})\n", + "fn.spec.max_replicas = 2" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "> 2020-10-14 07:14:13,248 [info] deploy started\n", + "[nuclio] 2020-10-14 07:14:36,645 (info) Build complete\n", + "[nuclio] 2020-10-14 07:14:44,750 (info) Function deploy complete\n", + "[nuclio] 2020-10-14 07:14:44,758 done updating stocks-stream-viewer, function address: 192.168.224.209:30617\n", + "> 2020-10-14 07:14:44,771 [warning] warning!, server (0.5.1) and client (0.5.2) ver dont match\n" + ] + } + ], + "source": [ + "addr = fn.deploy(project='stocks')" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[{\"columns\": [{\"text\": \"Time\", \"type\": \"object\"}, {\"text\": \"Symbol\", \"type\": \"object\"}, {\"text\": \"Sentiment\", \"type\": \"object\"}, {\"text\": \"Link\", \"type\": \"object\"}, {\"text\": \"Content\", \"type\": \"object\"}], \"rows\": [[\"2020-10-04 12:11:05\", \"GOOGL\", -0.12, \"https://www.investing.com/news/world-news/shorthanded-us-supreme-court-returns-with-major-challenges-ahead-2315028\", \"By Lawrence Hurley\\nWASHINGTON (Reuters) - The U.S. Supreme Court begins its new nine-month term on Monday buffeted by the death of liberal Justice Ruth Bader Ginsburg, a Senate confirmation battle over her successor, the coronavirus pandemic and the approaching presidential election whose outcome the justices may be called upon to help decide.\\nAmid the maelstrom, the shorthanded court - with eight justices rather than a full complement of nine - also has a series of major cases to tackle, including a Republican bid to invalidate the Obamacare healthcare law set to be argued on Nov. 10, a week after Election Day.\\nIf President Donald Trump s nominee to replace Ginsburg, federal appeals court judge Amy Coney Barrett, is confirmed as expected by a Senate controlled by his fellow Republicans, the court s ideological balance would tilt further rightward with a potent 6-3 conservative majority.\\nThe court kicks off its term according to custom on the first Monday of October. It will begin unlike any other, with two cases being argued by teleconference due to the coronavirus pandemic. The court for the first time began hearing cases that way in May, and will continue doing so at least at the term s outset.\\nThe court building, where large crowds of mourners gathered outside after Ginsburg s death of Sept. 18, remains closed to the public because of the pandemic.\\nThe confluence of events is a test of leadership for conservative Chief Justice John Roberts, who in February also presided over a Senate impeachment trial that ended in Trump s acquittal on charges of abuse of power and obstruction of Congress for pressing Ukraine to investigate his Democratic election rival Joe Biden. \\nRoberts is known as a institutionalist who prizes the court s independence.\\n\\\"He would like to be a steady hand and wants the court to be on a steady path,\\\" said Nicole Saharsky, a lawyer who argues cases before the justices.\\nThe most anticipated case in the term s first week comes on Wednesday, when the justices weigh a multibillion-dollar software copyright dispute between Alphabet Inc s Google and Oracle Corp . The case involves Oracle s accusation that Google infringed its software copyrights to build the Android operating system used in smartphones.\\nIn the Obamacare case, Barrett could cast a pivotal vote.\\nA group of Democratic-led states including California and New York are striving to preserve the 2010 law, formally known as the Affordable Care Act, in a case in which Republican-led states and Trump s administration are trying to strike it down.\\nObamacare has helped roughly 20 million Americans obtain medical insurance either through government programs or through policies from private insurers made available in Obamacare marketplaces. It also bars insurers from refusing to cover people with pre-existing medical conditions. Republican opponents have called the law an unwarranted intervention by government in health insurance markets.\\nThe Supreme Court previously upheld it 5-4 in a 2012 ruling in which Roberts cast the crucial vote. It rejected another challenge 6-3 in 2015. Ginsburg was in the majority both times.\\nBarrett in the past criticized those two rulings. Democrats opposing her nomination have emphasized that she might vote to strike down Obamacare, although legal experts think the court is unlikely to do so.\\nRELIGIOUS RIGHTS\\nThe court hears another major case on Nov. 4 concerning the scope of religious-rights exemptions to certain federal laws. The dispute arose from Philadelphia s decision to bar a local Roman Catholic entity from participating in the city s foster-care program because the organization prohibits same-sex couples from serving as foster parents.\\nThe justices already have tackled multiple election-related emergency requests this year, some related to rules changes prompted by the pandemic. More are likely.\\nThe conservative majority has sided with state officials opposed to courts imposing changes to election procedures to make it easier to vote during the pandemic.\\nTrump has said he wants Barrett to be confirmed before Election Day so she could cast a decisive vote in any election-related dispute, potentially in his favor. He has said he expects the Supreme Court to decide the outcome of the election, though it has done so only once - the disputed 2000 contest ultimately awarded to Republican George W. Bush.\\nDemocrats have said they will query Barrett during confirmation hearings set to begin on Oct. 12 on whether she should recuse herself in certain election-related cases. Justices have the final say on whether they step aside in a case.\\nJeffrey Rosen, president of the nonprofit National Constitution Center, said at an event on Friday hosted by the libertarian Pacific Legal Foundation that he expects the court either to stay out of major election cases or, if unable to do so, to try to reach a unanimous outcome.\\n\\\"The court s legitimacy is crucially important to all the justices in this extraordinarily fragile time,\\\" Rosen added. \\n\\nIf the court is divided 4-4 in any cases argued before a new justice is seated, it could hold a second round of oral arguments so the new justice could participate. \"], [\"2020-10-04 09:00:16\", \"GOOGL\", -0.5, \"https://www.investing.com/news/cryptocurrency-news/xrp-ledger-blockchain-energizes-decarbonization-but-tokenization-a-challenge-2315010\", \"As tech giants like Google and Facebook announce plans to become carbon-neutral businesses by 2030, smaller companies are doing the same. The only difference is that innovative startups are taking clever approaches that seek to be more effective than those implemented by large, centralized companies.\\nFor example, Ripple \\u2014 a fintech company that allows banks, payment providers and digital asset exchanges to send money using blockchain \\u2014 has committed to becoming carbon net-zero by 2030. In order to meet this goal, Ripple has unveiled a set of initiatives driven largely by blockchain technology.\"], [\"2020-10-04 07:05:43\", \"GOOGL\", -0.20833333333333334, \"https://www.investing.com/news/stock-market-news/trumps-diagnosis-fuels-uncertainty-for-skittish-us-stock-market-2314978\", \"By April Joyner and Lewis Krauskopf\\n(Reuters) - Investors are gauging how a potential deterioration in President Donald Trump s health could impact asset prices in coming weeks, as the U.S. leader remains hospitalized after being diagnosed with COVID-19.\\nSo far, markets have been comparatively sanguine: hopes of a breakthrough in talks among U.S. lawmakers on another stimulus package took the edge off a stock market selloff on Friday, with the S&P 500 losing less than 1% and so-called safe-haven assets seeing limited demand. News of Trump s hospitalization at a military medical center outside Washington, where he remained on Saturday, came after trading ended on Friday. \\nMany investors are concerned, however, that a serious decline in Trump\\u2019s health less than a month before Americans go to the polls on Nov. 3 could roil a U.S. stock market that recently notched its worst monthly performance since its selloff in March while causing turbulence in other assets. \\nIf the president\\u2019s health is in jeopardy, there s \\\"too much uncertainty in the situation for the markets just to shrug it off,\\\" said Willie Delwiche, investment strategist at Baird. \\nThe various outcomes investors currently envision run the gamut from a quick recovery that bolsters Trump s image as a fighter to a drawn-out illness or death stoking uncertainty and drying up risk appetite across markets. \\nShould uncertainty persist, technology and momentum stocks that have led this year s rally may be particularly vulnerable to a selloff, some investors said. The tech-heavy Nasdaq fell more than 2% on Friday, double the S&P 500 s decline. \\n\\\"If people ... get nervous right now, probably it manifests itself in crowded trades like tech and mega-cap being unwound a bit,\\\" Delwiche said\\nA record 80% of fund managers surveyed last month by BofA Global Research said that buying technology stocks was the market s \\\"most crowded\\\" trade. \\nThe concentration of investors in big tech stocks has also raised concerns over their outsized sway on moves in the broader market.\\nThe largest five U.S. companies \\u2013 Google parent Alphabet , Amazon , Apple , Facebook , and Microsoft \\u2013 now account for almost 25% of the S&P 500 s market capitalization, according to research firm Oxford Economics.\\nFISCAL STIMULUS TALKS\\nTrump\\u2019s diagnosis has intensified the spotlight on the fiscal stimulus talks in Washington, with investors saying agreement on another aid package could act as a stabilizing force on markets in the face of election-related uncertainty. \\nU.S. House of Representatives Speaker Nancy Pelosi, a Democrat, said on Friday that negotiations were continuing, but she is waiting for a response from the White House on key areas. \\nFresh stimulus could speed economic healing from the impact of the pandemic, which has put millions of Americans out of work, and benefit economically-sensitive companies whose stock performance has lagged this year, investors said. \\nFor those who are underweight stocks, \\\"we would be using this volatility as an opportunity to increase equities because we think we re in an early-stage economic recovery,\\\" said Keith Lerner, chief market strategist at Truist/SunTrust Advisory.\\nMarket action on Friday suggested some investors may have been positioning for a stimulus announcement in the midst of the selloff.\\nThe S&P 500 sectors representing industrials and financials, two groups that are more sensitive to a broad economic recovery, rallied 1.1% and 0.7%, respectively, while the broader index declined.\\nEven with worries over Trump s condition, \\\"the fiscal program has been the loudest noise in the market,\\\" said Arnim Holzer, macro and correlation defense strategist at EAB Investment Group.\\nInvestor hedges against election-related market swings put in place over the last few months may have softened Friday s decline and could, to a degree, mitigate future volatility, said Christopher Stanton of hedge fund Sunrise Capital Partners LLC.\\nDespite Trump s illness, futures on the Cboe Volatility Index continued to show expectations of elevated volatility after the Nov. 3 vote, a pattern consistent with concerns of a contested election.\\nNagging doubts over whether the Republican president would agree to hand over the keys to the White House if he loses have grown in recent weeks. During his first debate with Democratic challenger Joe Biden on Tuesday, Trump declined to commit to accepting the results, repeating his unfounded complaint that mail-in ballots would lead to election fraud.\\n\\n\\\"If Trump s health does not recover ... then he might give up on contesting the election,\\\" said Michael Purves, chief executive of Tallbacken Capital Advisors. But \\\"markets are not shifting off the contested election thing right now.\\\"\"], [\"2020-10-03 12:37:59\", \"GOOGL\", -0.0625, \"https://www.investing.com/news/stock-market-news/pointcounterpoint-the-case-for-palantir-2314278\", \"By Peter Nurse and Yasin Ebrahim\\nInvesting.com -- It\\u2019s taken some time in coming but Palantir Technologies Inc has finally gone public, providing investors with an excellent opportunity to benefit from growth at a major player in the key area of data analysis.\\nAs American management consultant Geoffrey Moore said, \\u201cwithout big data, you are blind and deaf and in the middle of a freeway.\\u201d\\nFollowing years of secrecy, given its ties with customers including spy, law enforcement and military agencies, Palantir\\u2019s foray into the public market has forced it to pull back the curtain on its operations and revealed fundamentals that have some scratching their hands.\\nInvesting.com s Peter Nurse argues the bull case for the newly minted stock, while Yasin Ebrahim explains why it s a wait-and-see. This is Point/Counterpoint.\\nThe Bull Case\\nPalantir provides governments and corporations with the tools required to organize and glean insights from mounds of data, helping in areas as varied as detailing the spread of the novel coronavirus to tracking the activities of terrorists.\\nThe U.S. data analytics firm made its debut on New York Stock Exchange debut on Wednesday, after years of speculation, via a direct listing and without the usual razzmatazz surrounding a traditional IPO. \\nIt\\u2019s true the stock is trading below its $10 opening price, but this is still well above its reference price of $7.25 and things are likely to look very different when the Street starts its coverage.\\nThe company has yet to make a profit, but surely that won t be long in coming given its losses in the first six months of 2020 totaled $164 million, down from $280 million the same period a year prior.\\nPalantir anticipates 42% revenue growth in 2020 to about $1.06 billion, according to a filing earlier this week, with gross margins for the first half of this year at an impressive 73%. It also forecasts revenue growth of more than 30% next year. \\nPalantir was formed in 2003 in the wake of the 9-11 attacks, with its first major backer \\u2013 the CIA\\u2019s venture arm, In-Q-Tel. It was one of the first companies in this space and thus has had a head start in developing the required technology.\\nWhile Palantir still analyzes large amounts of data for U.S. government defense and intelligence agencies -- contracts which tend to be frequently rolled over -- the private sector has become increasingly more important. \\nIn fact, Palantir now says that a little more than half of its customers come from the private sector instead of governments. And there will undoubtedly be increasing demand from companies given the massive amounts of data they generate.\\n\\\"Broadly speaking Covid has been a tailwind for our business,\\\" Chief Operating Officer Shyam Sankar said in a recent interview. \\\"We started 83 new engagements with customers in the first three weeks of Covid without getting on a plane.\\\"\\nThe coronavirus pandemic has forced companies to revisit how they do business, and the Covid era doesn\\u2019t look like ending anytime soon.\"], [\"2020-10-03 11:30:27\", \"GOOGL\", -0.76, \"https://www.investing.com/news/stock-market-news/paytm-other-indian-startups-vow-to-fight-big-daddy-googles-clout-sources-2314771\", \"By Aditya Kalra\\nNEW DELHI (Reuters) - Dozens of India s technology startups, chafing at Google s local dominance of key apps, are banding together to consider ways to challenge the U.S. tech giant, including by lodging complaints with the government and courts, executives told Reuters.\\nAlthough Google, owned by Alphabet Inc , has worked closely with India s booming startup sector and is ramping up its investments, it has recently angered many tech companies with what they say are unfair practices.\\nSetting the stage for a potential showdown, entrepreneurs held two video conferences this week to strategise, three executives told Reuters.\\n\\\"It s definitely going to be a bitter fight,\\\" said Dinesh Agarwal, CEO of e-commerce firm IndiaMART . \\\"Google will lose this battle. It s just a matter of time.\\\"\\nHe said executives have discussed forming a new startup association aimed chiefly at lodging protests with the Indian government and courts against the Silicon Valley company.\\nNearly 99% of the smartphones of India s half a billion users run on Google s Android mobile operating system. Some Indian startups say that allows Google to exert excessive control over the types of apps and other services they can offer, an allegation the company denies.\\nThe uproar began last month when Google removed popular payments app Paytm from its Play Store, citing policy violations. This led to a sharp rebuke from the Indian firm s founder, Vijay Shekhar Sharma, whose app returned to the Google platform a few hours later, after Paytm made certain changes.\\nIn a video call on Tuesday, Sharma called Google the \\\"big daddy\\\" that controls the \\\"oxygen supply of (app) distribution\\\" on Android phones, according to an attendee. He urged the roughly 50 executives on the call to join hands to \\\"stop this tsunami.\\\"\\n\\\"If we together don t do anything, then history will not be kind to us. We have to control our digital destiny,\\\" Sharma said.\\nOne idea raised was to launch a local rival to Google s app store, but Sharma said this would not be immediately effective given Google s dominance, one source said.\\nSharma and Paytm, which is backed by Japan s SoftBank Group Corp (T:9984), did not respond to requests for comment.\\nGoogle declined to comment. It has previously said its policies aim to protect Android users and that it applies and enforces them consistently on developers.\\nSTRAINING TIES\\nThis week the U.S. company angered some Indian startups by deciding to enforce a 30% commission it charges on payments made within apps on the Android store.\\nTwo dozen executives were on a call on Friday where many slammed that decision. They discussed filing antitrust complaints and approaching Google s India head for discussions, said two sources with direct knowledge of the call.\\nParticipants included sports technology firm Dream Sports, backed by U.S. hedge fund Tiger Global, social media company ShareChat and digital payments firm PhonePe, the sources said. None of those companies responded to requests for comment.\\nGoogle defends the policy, saying 97% of apps worldwide comply with it.\\nGoogle already faces an antitrust case related to its payments app in India and a competition investigation into claims it abused Android s dominant position. The company says it complies with all laws. \\nThese spats strain Google s strong ties to Indian startups. It has invested in some and helped hundreds with product development. In July, its Indian-born CEO Sundar Pichai committed $10 billion in new investments over five to seven years.\\nThe conflict \\\"is counterproductive to what Google has been doing - it s an odd place for them to be,\\\" said a senior tech executive familiar with Google s thinking. \\\"It s a reputation issue. It s in the interest of Google to resolve this issue.\\\"\\nGoogle looms over every aspect of the industry.\\nPaytm on Saturday told several startup founders, in a communication seen by Reuters, that it was collating input on challenges to Google Play Store and its policies to submit to the authorities.\\n\\nTo craft their attack, they are using a shared Google document.\"], [\"2020-10-03 08:40:14\", \"GOOGL\", -0.5, \"https://www.investing.com/news/cryptocurrency-news/xrp-ledger-blockchain-energizes-decarbonization-but-tokenization-a-challenge-2314731\", \"As tech giants like Google and Facebook announce plans to become carbon-neutral businesses by 2030, smaller companies are doing the same. The only difference is that innovative startups are taking clever approaches that seek to be more effective than those implemented by large, centralized companies.\\nFor example, Ripple \\u2014 a fintech company that allows banks, payment providers and digital asset exchanges to send money using blockchain \\u2014 has committed to becoming carbon net-zero by 2030. In order to meet this goal, Ripple has unveiled a set of initiatives driven largely by blockchain technology.\"], [\"2020-10-03 00:35:40\", \"GOOGL\", -0.4, \"https://www.investing.com/news/technology-news/twitter-ceo-dorsey-will-testify-before-us-senate-committee-on-october-28-2314628\", \"By David Shepardson and Nandita Bose\\nWASHINGTON (Reuters) - The chief executives of Facebook TWTR) and Alphabet-owned Google have agreed to voluntarily testify at a hearing before the Senate Commerce Committee on Oct. 28 about a key law protecting internet companies. \\nFacebook and Twitter confirmed on Friday that their CEOs, Mark Zuckerberg and Jack Dorsey, respectively, will appear, while a source said that Google s Sundar Pichai will appear. That came a day after the committee unanimously voted to approve a plan to subpoena the three CEOs to appear before the panel.\\nTwitter s Dorsey tweeted on Friday that the hearing \\\"must be constructive & focused on what matters most to the American people: how we work together to protect elections.\\\"\\nThe CEOs are to appear virtually. \\nIn addition to discussions on reforming the law called Section 230 of the Communications Decency Act, which protects internet companies from liability over content posted by users, the hearing will bring up issues about consumer privacy and media consolidation.\\nRepublican President Donald Trump has made holding tech companies accountable for allegedly stifling conservative voices a theme of his administration. As a result, calls for a reform of Section 230 have been intensifying ahead of the Nov. 3 elections, but there is little chance of approval by Congress this year.\\nLast week Trump met with nine Republican state attorneys general to discuss the fate of Section 230 after the Justice Department unveiled a legislative proposal aimed at reforming the law.\\n\\nThe chief executives of Google, Facebook, Apple Inc and Amazon.com Inc recently testified before the House of Representatives Judiciary Committee\\u2019s antitrust panel. The panel, which is investigating how the companies\\u2019 practices hurt rivals, is expected to release its report as early as next Monday.\"], [\"2020-10-04 07:05:43\", \"MSFT\", -0.20833333333333334, \"https://www.investing.com/news/stock-market-news/trumps-diagnosis-fuels-uncertainty-for-skittish-us-stock-market-2314978\", \"By April Joyner and Lewis Krauskopf\\n(Reuters) - Investors are gauging how a potential deterioration in President Donald Trump s health could impact asset prices in coming weeks, as the U.S. leader remains hospitalized after being diagnosed with COVID-19.\\nSo far, markets have been comparatively sanguine: hopes of a breakthrough in talks among U.S. lawmakers on another stimulus package took the edge off a stock market selloff on Friday, with the S&P 500 losing less than 1% and so-called safe-haven assets seeing limited demand. News of Trump s hospitalization at a military medical center outside Washington, where he remained on Saturday, came after trading ended on Friday. \\nMany investors are concerned, however, that a serious decline in Trump\\u2019s health less than a month before Americans go to the polls on Nov. 3 could roil a U.S. stock market that recently notched its worst monthly performance since its selloff in March while causing turbulence in other assets. \\nIf the president\\u2019s health is in jeopardy, there s \\\"too much uncertainty in the situation for the markets just to shrug it off,\\\" said Willie Delwiche, investment strategist at Baird. \\nThe various outcomes investors currently envision run the gamut from a quick recovery that bolsters Trump s image as a fighter to a drawn-out illness or death stoking uncertainty and drying up risk appetite across markets. \\nShould uncertainty persist, technology and momentum stocks that have led this year s rally may be particularly vulnerable to a selloff, some investors said. The tech-heavy Nasdaq fell more than 2% on Friday, double the S&P 500 s decline. \\n\\\"If people ... get nervous right now, probably it manifests itself in crowded trades like tech and mega-cap being unwound a bit,\\\" Delwiche said\\nA record 80% of fund managers surveyed last month by BofA Global Research said that buying technology stocks was the market s \\\"most crowded\\\" trade. \\nThe concentration of investors in big tech stocks has also raised concerns over their outsized sway on moves in the broader market.\\nThe largest five U.S. companies \\u2013 Google parent Alphabet , Amazon , Apple , Facebook , and Microsoft \\u2013 now account for almost 25% of the S&P 500 s market capitalization, according to research firm Oxford Economics.\\nFISCAL STIMULUS TALKS\\nTrump\\u2019s diagnosis has intensified the spotlight on the fiscal stimulus talks in Washington, with investors saying agreement on another aid package could act as a stabilizing force on markets in the face of election-related uncertainty. \\nU.S. House of Representatives Speaker Nancy Pelosi, a Democrat, said on Friday that negotiations were continuing, but she is waiting for a response from the White House on key areas. \\nFresh stimulus could speed economic healing from the impact of the pandemic, which has put millions of Americans out of work, and benefit economically-sensitive companies whose stock performance has lagged this year, investors said. \\nFor those who are underweight stocks, \\\"we would be using this volatility as an opportunity to increase equities because we think we re in an early-stage economic recovery,\\\" said Keith Lerner, chief market strategist at Truist/SunTrust Advisory.\\nMarket action on Friday suggested some investors may have been positioning for a stimulus announcement in the midst of the selloff.\\nThe S&P 500 sectors representing industrials and financials, two groups that are more sensitive to a broad economic recovery, rallied 1.1% and 0.7%, respectively, while the broader index declined.\\nEven with worries over Trump s condition, \\\"the fiscal program has been the loudest noise in the market,\\\" said Arnim Holzer, macro and correlation defense strategist at EAB Investment Group.\\nInvestor hedges against election-related market swings put in place over the last few months may have softened Friday s decline and could, to a degree, mitigate future volatility, said Christopher Stanton of hedge fund Sunrise Capital Partners LLC.\\nDespite Trump s illness, futures on the Cboe Volatility Index continued to show expectations of elevated volatility after the Nov. 3 vote, a pattern consistent with concerns of a contested election.\\nNagging doubts over whether the Republican president would agree to hand over the keys to the White House if he loses have grown in recent weeks. During his first debate with Democratic challenger Joe Biden on Tuesday, Trump declined to commit to accepting the results, repeating his unfounded complaint that mail-in ballots would lead to election fraud.\\n\\n\\\"If Trump s health does not recover ... then he might give up on contesting the election,\\\" said Michael Purves, chief executive of Tallbacken Capital Advisors. But \\\"markets are not shifting off the contested election thing right now.\\\"\"], [\"2020-10-02 21:25:59\", \"MSFT\", -0.5, \"https://www.investing.com/news/coronavirus/futures-sink-as-trump-tests-positive-for-covid19-2313994\", \"By Stephen Culp\\nNEW YORK (Reuters) - U.S. stocks closed lower on Friday as news that U.S. President Donald Trump tested positive for COVID-19 put investors in a risk-off mood and added to mounting uncertainties surrounding the looming election.\\nTech shares weighed heaviest on the indexes, but the blue-chip Dow s losses were mitigated by gains in economically sensitive cyclical stocks.\\nDespite Friday s sell-off, the S&P and the Nasdaq both gained 1.5% on the week, while the Dow ended the session 1.9% higher than last Friday s close.\\nTrump tweeted late Thursday that he had contracted the coronavirus and would be placed under quarantine, compounding the unknowns for an already volatile market. \\nBut stocks pared losses after the White House provided assurances that Trump, while experiencing mild symptoms, is not incapacitated. \\n\\\"This injects further uncertainty into the outcome of the election,\\\" said Roberto Perli, head of global policy research at Cornerstone Macro in Washington. \\\"My read is that markets have demonstrated an aversion of late especially to uncertainty, not so much to one or the other candidate winning.\\\" \\nEquities also got a brief boost after U.S. House of Representatives Speaker Nancy Pelosi s announcement that an agreement to provide another $25 billion in government assistance to the airline industry was \\\"imminent.\\\" \\n\\\"Markets are also paying attention to the likelihood that another stimulus package will pass soon,\\\" Perli added. \\\"If that happens it could offset at least in part the uncertainty generated by the COVID news.\\\" \\nHouse Democrats passed a $2.2 trillion fiscal aid package on Thursday, but the bill is unlikely to be approved in the Republican-controlled Senate.\\nPartisan wrangling over the size and details of a new round of stimulus have stalled, over two months after emergency unemployment benefits expired for millions of Americans. \\nData released on Friday showed the recovery of the labor market could be losing steam. The U.S. economy added 661,000 jobs in September, fewer than expected and the slowest increase since the recovery began in May.\\nPayrolls remain a long way from regaining the 22 million jobs lost since the initial shutdown, and the ranks of the permanently unemployed are swelling. \\nThe Dow Jones Industrial Average (DJI) fell 134.09 points, or 0.48%, to 27,682.81, the S&P 500 (SPX) lost 32.36 points, or 0.96%, to 3,348.44 and the Nasdaq Composite (IXIC) dropped 251.49 points, or 2.22%, to 11,075.02.\\nOf the 11 major sectors in the S&P 500, tech (SPLRCT) suffered the biggest loss, while real estate <.SPLRCR> and utilities (SPLRCU) enjoyed the largest percentage gains.\\nIn a reversal from recent sessions, market leaders Apple Inc Amazon.com and Microsoft Corp were the heaviest drags on the S&P and the Nasdaq.\\nCommercial air carriers rose on news off a possible new round of government aid, with the S&P 1500 Airline index <.SPCOMAIR> rising 2.3%.\\nTesla Inc shares plunged 7.4% after the electric car maker s third quarter vehicle deliveries, while reaching a new record, underwhelmed investors.\\nAdvancing issues outnumbered declining ones on the NYSE by a 1.45-to-1 ratio; on Nasdaq, a 1.13-to-1 ratio favored decliners.\\nThe S&P 500 posted six new 52-week highs and one new low; the Nasdaq Composite recorded 56 new highs and 34 new lows. \\nVolume on U.S. exchanges was 9.30 billion shares, compared with the 9.93 billion average over the last 20 trading days. \\n\"], [\"2020-10-02 21:25:35\", \"MSFT\", -0.23076923076923078, \"https://www.investing.com/news/stock-market-news/us-stocks-lower-at-close-of-trade-dow-jones-industrial-average-down-048-2314575\", \"Investing.com \\u2013 U.S. stocks were lower after the close on Friday, as losses in the Technology, Consumer Services and Consumer Goods sectors led shares lower.\\nAt the close in NYSE, the Dow Jones Industrial Average lost 0.48%, while the S&P 500 index declined 0.96%, and the NASDAQ Composite index declined 2.22%.\\nThe best performers of the session on the Dow Jones Industrial Average were Dow Inc , which rose 2.60% or 1.20 points to trade at 47.31 at the close. Meanwhile, Caterpillar Inc added 2.20% or 3.23 points to end at 149.94 and McDonald\\u2019s Corporation was up 1.40% or 3.08 points to 222.67 in late trade.\\nThe worst performers of the session were Amgen Inc , which fell 3.91% or 9.98 points to trade at 245.41 at the close. Apple Inc declined 3.23% or 3.77 points to end at 113.02 and Microsoft Corporation was down 2.95% or 6.27 points to 206.19.\\nThe top performers on the S&P 500 were LyondellBasell Industries NV which rose 6.02% to 72.24, Macerich Company which was up 5.71% to settle at 7.41 and United Rentals Inc which gained 5.51% to close at 185.02.\\nThe worst performers were Activision Blizzard Inc which was down 5.30% to 78.30 in late trade, Vertex Pharmaceuticals Inc which lost 4.65% to settle at 260.80 and Netflix Inc which was down 4.63% to 503.06 at the close.\\nThe top performers on the NASDAQ Composite were Nano X Imaging Ltd which rose 56.20% to 37.44, Westwater Resources Inc which was up 49.32% to settle at 4.420 and ProPhase Labs Inc which gained 32.05% to close at 5.150.\\nThe worst performers were Benitec Biopharma Ltd ADR which was down 36.74% to 3.03 in late trade, Mesoblast Ltd which lost 35.27% to settle at 12.03 and Oasis Petroleum Inc which was down 19.10% to 0.171 at the close.\\nRising stocks outnumbered declining ones on the New York Stock Exchange by 1907 to 1162 and 96 ended unchanged; on the Nasdaq Stock Exchange, 1486 fell and 1380 advanced, while 78 ended unchanged.\\nShares in United Rentals Inc rose to 52-week highs; rising 5.51% or 9.67 to 185.02. Shares in Benitec Biopharma Ltd ADR fell to 52-week lows; down 36.74% or 1.76 to 3.03. Shares in ProPhase Labs Inc rose to 52-week highs; up 32.05% or 1.250 to 5.150. Shares in Oasis Petroleum Inc fell to all time lows; losing 19.10% or 0.040 to 0.171. \\nThe CBOE Volatility Index, which measures the implied volatility of S&P 500 options, was up 3.48% to 27.63.\\nGold Futures for December delivery was down 0.64% or 12.30 to $1904.00 a troy ounce. Elsewhere in commodities trading, Crude oil for delivery in November fell 4.52% or 1.75 to hit $36.97 a barrel, while the December Brent oil contract fell 4.25% or 1.74 to trade at $39.19 a barrel.\\nEUR/USD was down 0.26% to 1.1716, while USD/JPY fell 0.19% to 105.30.\"]], \"type\": \"table\"}]" + ] + } + ], + "source": [ + "# nuclio: ignore\n", + "# test the new API end point, take the address from the deploy log above\n", + "!curl {addr}" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/stock-analysis/code/04-grafana.ipynb b/stock-analysis/code/04-grafana.ipynb new file mode 100644 index 00000000..959a3559 --- /dev/null +++ b/stock-analysis/code/04-grafana.ipynb @@ -0,0 +1,432 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Create a Grafana Data Source and Dashboard" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Follow the steps in this this tutorial to create a \"stocks\" Grafana dashboard using Iguazio data source
\n", + "Note that you need to create a Grafana service before running the notebook
\n", + "Creating a grafana service can be done from the \"services\" screen in the Platform" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import nuclio" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Environment" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "%nuclio cmd -c pip install git+https://github.com/v3io/grafwiz --upgrade\n", + "%nuclio cmd -c pip install v3io_frames" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Function" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "# nuclio: start-code" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "from grafwiz import *\n", + "import os\n", + "import v3io_frames as v3f" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "def deploy_dashboard(context, \n", + " grafana_url:str = 'http://grafana', \n", + " streamview_url:str = 'http://nuclio-stocks-stream-viewer:8080',\n", + " v3io_container:str = 'bigdata',\n", + " stocks_kv_table:str = 'stocks/stocks_kv',\n", + " stocks_tsdb_table:str = 'stocks/stocks_tsdb'):\n", + " # Create datasources\n", + " DataSource(name='Iguazio').deploy(grafana_url, use_auth=True)\n", + " DataSource(name='stream-viewer', frames_url=streamview_url).deploy(grafana_url, use_auth=False, overwrite=False)\n", + " \n", + " # Verify the KV table can be shown\n", + " client = v3f.Client('framesd:8081', container=v3io_container)\n", + " client.execute(backend='kv', table=stocks_kv_table, command='infer')\n", + " \n", + " # Create grafana dashboard\n", + " dash = Dashboard(\"stocks\", start='now-7d', dataSource='Iguazio')\n", + "\n", + " # Add a symbol combo box (template) with data from the stocks table\n", + " dash.template(name=\"SYMBOL\", label=\"Symbol\", query=\"fields=symbol;table=stocks/stocks_kv;backend=kv;container=bigdata\")\n", + "\n", + " # Create a table and log viewer in one row\n", + " tbl = Table('Current Stocks Value', span=12).source(table=stocks_kv_table,fields=['symbol','volume', 'price', 'sentiment', 'last_updated'],container=v3io_container)\n", + " dash.row([tbl])\n", + "\n", + " # Create 2 charts on the second row\n", + " metrics_row = [Graph(metric).series(table=stocks_tsdb_table, fields=[metric], filter='symbol==\"$SYMBOL\"',container=v3io_container) for metric in ['price','volume']]\n", + " metrics_row.append(Graph('sentiment').series(table=stocks_tsdb_table, fields=['sentiment'], filter='symbol==\"$SYMBOL\"', container=v3io_container))\n", + " dash.row(metrics_row)\n", + " \n", + " # Create log veiwer panel\n", + " log = Table('Articles Log', dataSource='stream-viewer', span=12)\n", + " dash.row([log])\n", + " \n", + " # Deploy to Grafana\n", + " return dash.deploy(grafana_url)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "# nuclio: end-code" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Local test" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "> 2020-10-18 08:07:17,569 [info] function spec saved to path: 04-grafana.yaml\n" + ] + }, + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from mlrun import code_to_function, run_local\n", + "\n", + "fn = code_to_function('grafana_dashboard_deployer',\n", + " kind='job',\n", + " handler='deploy_dashboard',\n", + " project='stocks')\n", + "fn.spec.build.base_image = 'mlrun/mlrun'\n", + "fn.export('04-grafana.yaml')" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "> 2020-10-18 08:07:17,590 [warning] artifact path is not defined or is local, artifacts will not be visible in the UI\n", + "> 2020-10-18 08:07:17,611 [warning] warning!, server (0.5.1) and client (0.5.2) ver dont match\n", + "> 2020-10-18 08:07:17,612 [info] starting run mlrun-467629-deploy_dashboard uid=69b1e071edce44dcacce8ff458ec194a -> http://mlrun-api:8080\n", + "> 2020-10-18 08:07:17,650 [warning] warning!, server (0.5.1) and client (0.5.2) ver dont match\n", + "Datasource Iguazio already exists\n", + "Datasource Iguazio created successfully\n", + "Datasource stream-viewer already exists\n", + "Datasource stream-viewer created successfully\n", + "Dashboard stocks created successfully\n" + ] + }, + { + "data": { + "text/html": [ + "\n", + "
\n", + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
projectuiditerstartstatenamelabelsinputsparametersresultsartifacts
default0Oct 18 08:07:17completedmlrun-467629-deploy_dashboard
v3io_user=admin
kind=handler
owner=admin
host=jupyter-7845f5fb96-rmjkf
\n", + "
\n", + "
\n", + "
\n", + " Title\n", + " ×\n", + "
\n", + " \n", + "
\n", + "
\n" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "to track results use .show() or .logs() or in CLI: \n", + "!mlrun get run 69b1e071edce44dcacce8ff458ec194a --project default , !mlrun logs 69b1e071edce44dcacce8ff458ec194a --project default\n", + "> 2020-10-18 08:07:17,873 [info] run executed, status=completed\n" + ] + }, + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "run_local(handler=deploy_dashboard)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/stock-analysis/code/05-explore.ipynb b/stock-analysis/code/05-explore.ipynb new file mode 100644 index 00000000..696358a9 --- /dev/null +++ b/stock-analysis/code/05-explore.ipynb @@ -0,0 +1,1011 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Explore Real-Time Data on Iguazio via Integrated Notebooks" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Read NoSQL Data as Real-Time DataFrame Stream\n", + "`frames` is a high-performance streaming API into Iguazio database presented as Pandas DataFrame support multiple backend data models (Key/value, Time-series, Stream, Object/file)." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import v3io_frames as v3f\n", + "client = v3f.Client('framesd:8081', container='bigdata')" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
\n", + "
" + ], + "text/plain": [ + "Empty DataFrame\n", + "Columns: []\n", + "Index: []" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "client.execute(backend='kv', table='stocks/stocks_kv', command='infer')" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
last_updatedpricesentimentvolume
symbol
MSFT2020-10-16 15:59:00-04:00219.649994-0.769231589415.0
GOOGL2020-10-16 15:59:00-04:001568.130005-0.80000051935.0
AAPL2020-10-16 15:59:00-04:00118.980003-0.2727271560519.0
AMZN2020-10-16 15:59:00-04:003160.000000-0.800000347142.0
\n", + "
" + ], + "text/plain": [ + " last_updated price sentiment volume\n", + "symbol \n", + "MSFT 2020-10-16 15:59:00-04:00 219.649994 -0.769231 589415.0\n", + "GOOGL 2020-10-16 15:59:00-04:00 1568.130005 -0.800000 51935.0\n", + "AAPL 2020-10-16 15:59:00-04:00 118.980003 -0.272727 1560519.0\n", + "AMZN 2020-10-16 15:59:00-04:00 3160.000000 -0.800000 347142.0" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "kvdf = client.read(backend='kv', table='stocks/stocks_kv')#, filter='volume > 1000000')\n", + "kvdf.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Analyze Real-Time Data Using Spark Streaming, SQL, and ML\n", + "The Iguazio database appears to Spark as native Spark Data Frames. Spark is auto-provisioned and configured on iguazio platform, no DevOps is required." + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "from pyspark.sql import SparkSession\n", + "spark = SparkSession.builder.appName(\"Iguazio Integration demo\").getOrCreate()" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "+------+-------------------+--------------------+---------+------------------+\n", + "|symbol| sentiment| last_updated| volume| price|\n", + "+------+-------------------+--------------------+---------+------------------+\n", + "| AMZN| -0.8|2020-10-16 15:59:...| 347142.0| 3160.0|\n", + "| AAPL|-0.2727272727272727|2020-10-16 15:59:...|1560519.0| 118.9800033569336|\n", + "| GOOGL| -0.8|2020-10-16 15:59:...| 51935.0|1568.1300048828125|\n", + "| MSFT|-0.7692307692307693|2020-10-16 15:59:...| 589415.0|219.64999389648438|\n", + "+------+-------------------+--------------------+---------+------------------+\n", + "\n" + ] + } + ], + "source": [ + "spark.read.format(\"io.iguaz.v3io.spark.sql.kv\").load(\"v3io://bigdata/stocks/stocks_kv\").show()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Run Interactive SQL Queries on Real-Time Data\n", + "Support full ANSI SQL through native integration of Apache Presto over iguazio database. The same data appears through different APIs (Spark, Presto SQL, native Pandas, DynamoDB like API)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Done.\n" + ] + }, + { + "data": { + "text/html": [ + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
volumesymbolsentimentlast_updatedprice
589415.0MSFT-0.76923076923076932020-10-16 15:59:00-04:00219.64999389648438
51935.0GOOGL-0.82020-10-16 15:59:00-04:001568.1300048828125
1560519.0AAPL-0.27272727272727272020-10-16 15:59:00-04:00118.9800033569336
347142.0AMZN-0.82020-10-16 15:59:00-04:003160.0
" + ], + "text/plain": [ + "[(589415.0, 'MSFT', -0.7692307692307693, '2020-10-16 15:59:00-04:00', 219.64999389648438),\n", + " (51935.0, 'GOOGL', -0.8, '2020-10-16 15:59:00-04:00', 1568.1300048828125),\n", + " (1560519.0, 'AAPL', -0.2727272727272727, '2020-10-16 15:59:00-04:00', 118.9800033569336),\n", + " (347142.0, 'AMZN', -0.8, '2020-10-16 15:59:00-04:00', 3160.0)]" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "%sql SELECT * FROM bigdata.\"stocks/stocks_kv\"" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Read the Time-Series data (in iguazio TSDB) as Pandas DataFrame\n", + "Use database side aggregations, joins and filtering on the real-time metrics data" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
avg(price)avg(sentiment)avg(volume)max(price)max(sentiment)max(volume)min(price)min(sentiment)min(volume)
timesymbol
2020-10-13 12:39:06.922000+00:00GOOGL1581.144702NaN26226.9000001585.160034NaN98123.01578.349976NaN11857.0
2020-10-13 13:39:06.922000+00:00GOOGL1574.088753NaN6158.0166671581.989990NaN19417.01565.839966NaN1121.0
2020-10-13 14:39:06.922000+00:00GOOGL1574.704330NaN4127.6428571584.000000NaN15129.01567.030029NaN797.0
2020-10-13 15:39:06.922000+00:00GOOGL1570.577997NaN2593.5593221581.880005NaN8047.01565.520020NaN642.0
2020-10-13 16:39:06.922000+00:00GOOGL1569.571823NaN3329.9830511573.319946NaN19723.01565.599976NaN631.0
.................................
2020-10-16 15:39:06.922000+00:00INTC54.524169NaN18397.30769254.654999NaN108977.054.355000NaN0.0
2020-10-16 16:39:06.922000+00:00INTC54.480619NaN12510.47916754.560001NaN37846.054.389999NaN0.0
2020-10-16 17:39:06.922000+00:00INTC54.614298NaN36045.53333354.695000NaN1026723.054.470001NaN0.0
2020-10-16 18:39:06.922000+00:00INTC54.585687NaN14836.04166754.689999NaN61945.054.450001NaN0.0
2020-10-16 19:39:06.922000+00:00INTC54.317053NaN122116.29411854.455002NaN726506.054.145000NaN0.0
\n", + "

206 rows × 9 columns

\n", + "
" + ], + "text/plain": [ + " avg(price) avg(sentiment) \\\n", + "time symbol \n", + "2020-10-13 12:39:06.922000+00:00 GOOGL 1581.144702 NaN \n", + "2020-10-13 13:39:06.922000+00:00 GOOGL 1574.088753 NaN \n", + "2020-10-13 14:39:06.922000+00:00 GOOGL 1574.704330 NaN \n", + "2020-10-13 15:39:06.922000+00:00 GOOGL 1570.577997 NaN \n", + "2020-10-13 16:39:06.922000+00:00 GOOGL 1569.571823 NaN \n", + "... ... ... \n", + "2020-10-16 15:39:06.922000+00:00 INTC 54.524169 NaN \n", + "2020-10-16 16:39:06.922000+00:00 INTC 54.480619 NaN \n", + "2020-10-16 17:39:06.922000+00:00 INTC 54.614298 NaN \n", + "2020-10-16 18:39:06.922000+00:00 INTC 54.585687 NaN \n", + "2020-10-16 19:39:06.922000+00:00 INTC 54.317053 NaN \n", + "\n", + " avg(volume) max(price) \\\n", + "time symbol \n", + "2020-10-13 12:39:06.922000+00:00 GOOGL 26226.900000 1585.160034 \n", + "2020-10-13 13:39:06.922000+00:00 GOOGL 6158.016667 1581.989990 \n", + "2020-10-13 14:39:06.922000+00:00 GOOGL 4127.642857 1584.000000 \n", + "2020-10-13 15:39:06.922000+00:00 GOOGL 2593.559322 1581.880005 \n", + "2020-10-13 16:39:06.922000+00:00 GOOGL 3329.983051 1573.319946 \n", + "... ... ... \n", + "2020-10-16 15:39:06.922000+00:00 INTC 18397.307692 54.654999 \n", + "2020-10-16 16:39:06.922000+00:00 INTC 12510.479167 54.560001 \n", + "2020-10-16 17:39:06.922000+00:00 INTC 36045.533333 54.695000 \n", + "2020-10-16 18:39:06.922000+00:00 INTC 14836.041667 54.689999 \n", + "2020-10-16 19:39:06.922000+00:00 INTC 122116.294118 54.455002 \n", + "\n", + " max(sentiment) max(volume) \\\n", + "time symbol \n", + "2020-10-13 12:39:06.922000+00:00 GOOGL NaN 98123.0 \n", + "2020-10-13 13:39:06.922000+00:00 GOOGL NaN 19417.0 \n", + "2020-10-13 14:39:06.922000+00:00 GOOGL NaN 15129.0 \n", + "2020-10-13 15:39:06.922000+00:00 GOOGL NaN 8047.0 \n", + "2020-10-13 16:39:06.922000+00:00 GOOGL NaN 19723.0 \n", + "... ... ... \n", + "2020-10-16 15:39:06.922000+00:00 INTC NaN 108977.0 \n", + "2020-10-16 16:39:06.922000+00:00 INTC NaN 37846.0 \n", + "2020-10-16 17:39:06.922000+00:00 INTC NaN 1026723.0 \n", + "2020-10-16 18:39:06.922000+00:00 INTC NaN 61945.0 \n", + "2020-10-16 19:39:06.922000+00:00 INTC NaN 726506.0 \n", + "\n", + " min(price) min(sentiment) \\\n", + "time symbol \n", + "2020-10-13 12:39:06.922000+00:00 GOOGL 1578.349976 NaN \n", + "2020-10-13 13:39:06.922000+00:00 GOOGL 1565.839966 NaN \n", + "2020-10-13 14:39:06.922000+00:00 GOOGL 1567.030029 NaN \n", + "2020-10-13 15:39:06.922000+00:00 GOOGL 1565.520020 NaN \n", + "2020-10-13 16:39:06.922000+00:00 GOOGL 1565.599976 NaN \n", + "... ... ... \n", + "2020-10-16 15:39:06.922000+00:00 INTC 54.355000 NaN \n", + "2020-10-16 16:39:06.922000+00:00 INTC 54.389999 NaN \n", + "2020-10-16 17:39:06.922000+00:00 INTC 54.470001 NaN \n", + "2020-10-16 18:39:06.922000+00:00 INTC 54.450001 NaN \n", + "2020-10-16 19:39:06.922000+00:00 INTC 54.145000 NaN \n", + "\n", + " min(volume) \n", + "time symbol \n", + "2020-10-13 12:39:06.922000+00:00 GOOGL 11857.0 \n", + "2020-10-13 13:39:06.922000+00:00 GOOGL 1121.0 \n", + "2020-10-13 14:39:06.922000+00:00 GOOGL 797.0 \n", + "2020-10-13 15:39:06.922000+00:00 GOOGL 642.0 \n", + "2020-10-13 16:39:06.922000+00:00 GOOGL 631.0 \n", + "... ... \n", + "2020-10-16 15:39:06.922000+00:00 INTC 0.0 \n", + "2020-10-16 16:39:06.922000+00:00 INTC 0.0 \n", + "2020-10-16 17:39:06.922000+00:00 INTC 0.0 \n", + "2020-10-16 18:39:06.922000+00:00 INTC 0.0 \n", + "2020-10-16 19:39:06.922000+00:00 INTC 0.0 \n", + "\n", + "[206 rows x 9 columns]" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Read Time-Series aggregates from the DB (returned as a data stream, use concat to assemble the frames)\n", + "tsdf = client.read(backend='tsdb', query=\"select avg(*), max(*), min(*) from 'stocks/stocks_tsdb'\", start='now-5d', step='1h', end='now', multi_index=True)\n", + "tsdf" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Run interesting Analysis On Real-Time Data\n", + "Compare stock price volatility between different companies" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "collapsed": true, + "jupyter": { + "outputs_hidden": true, + "source_hidden": true + } + }, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAABKoAAAFiCAYAAADWYzBtAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4yLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+j8jraAAAgAElEQVR4nOzdfZxcdX33/9c72QAhgKB4w52GKloBAyqleKkVtVhEK3pVrxL9CbZeP6TVq/aq1pvayxusv1+rVKtFpVQpFRF+VsBSDCAiiNxKCJAQkkBIQrLJJpvN7mbvb2bm8/vjnIGTyczO7O7szszu+/l4zCNzvud7zvkuy9lzzud8v5+vIgIzMzMzMzMzM7NGW9DoBpiZmZmZmZmZmYEDVWZmZmZmZmZm1iQcqDIzMzMzMzMzs6bgQJWZmZmZmZmZmTUFB6rMzMzMzMzMzKwpOFBlZmZmZmZmZmZNwYEqMzMzMzMzMzNrCg5UzUGSzpP0gKRBSZ3p9z+XpHT9f5P0S0n9kvZK+i9JJ5bs43BJ35W0U9KQpDWS/mQKx7pS0t/Nzk9u1lok3SmpR9KBmbIrJYWkd5XU/ae0/EPp8lpJAyWfUUmFdP2Zaf1vl+zn7uI+zGxi5c7RzLrjJRUkfafMukiviwOStkv6uqSF6botkn5/NtpvNtek58+YpCNLyh9Jz7ulko6VdJ2krvQ+d03m2rk0rZe9dj4q6ebM8nh6jOLyZQ35Yc1aUPEaJ+lD6bn21yXr29N71Msy59hYet4Vl29O675f0sq0rCM9T9/QmJ/MZpsDVXOMpE8A3wS+BrwIeCFwEfB64ABJrwN+DvwncDRwPPAocI+k30r3cQDwC+AlwOuA5wB/Dfy9pL+q9Vgz/bOatTJJS4E3AgG8q2T1E8AFmbptwPuAp4plEXFSRBxS/JCcg5uAL2f2Mwicnx7LzCahyjkKcD7QA5xXLpAFnJKem28F3g/83zPTUrN5ZzOwvLgg6VXA4sz6q4BtJPexzyM5V3eV7OPwzDX0lIh4e+Z6ejXw1cz6i2b0pzGbu7qBT0s6rHRFRFyUOef+H+D/y5xzb0+fOf8pXfdC4MXAd4BzZ7H91kAOVM0hkp4DXAz8eUT8JCL6I/FwRHwgIkaBrwI/iIhvpuu7I+JvgfuBL6a7+iDJH4P3RcTmiBiPiFuAvwAulnRYjccys8rOJznvriQTlEr9F/B6SUeky2cDq4GdE+zveyQ35l/KlPWm+//C9JtrNu9MdI4W1/8tMA78YaWdRMR64NfAyfVvotm8dBXJ+Vd0AfCDzPLvAFdGxGBE5NJ705tntYVmBrAOuA/435PZKPOc+dGIuD49l8cj4r8i4q+rbW9zgwNVc8vrgANJekvtR9LBwH8D/qPM6h8DZ6XfzwJujojBkjrXAQelx5nwWGZW1fkkb22vBv5A0gsz60aAG4HzMnV/QAWS/oKkJ+P7I6JQsvorwB9JekW9Gm42T1Q8RyW9ETgWuJbk+nl+2T0kdU8k6Zn18Iy21mz+uB84TNIr0yG1fwz8sGT9t9P0FC9uSAvNrOj/AP9b0nMnsc3rSJ45b5iZJlkrcKBqbjkS6IqIXLFA0r2SeiUNA6eR/M47ymzbkW5f3M9+ddL9dqXrJzyWpN+r1w9lNtek4+tfAvw4Ih4iGdL3/pJqPyAZtvcc4E3ATyvs6wySbtHvi4iu0vURsRO4jOTNlJnVoIZz9AKSFzo9wI+At0t6QcluVknqIekh+T3g32a+5WbzRrFX1VnAemB7Zt37SHox/h9gc5q/6ndKtu9K71l7JX1yVlpsNg9FxCMkaWc+PYnNnkfJc6bNPw5UzS17gCPTfDYARMR/i4jD03WHAgXgqDLbHkUShCL9d7866X6PTNdXO5b/3zKr7ALg55nA0o8oGVoUEXcDzycZWnRTRAyX7iRNJvsfwGcj4v4JjvcPJD1CTqlH483mgYrnqKTFJA/CVwNExH3AVvYPNr8mIo6IiJdGxN+W6e1oZlN3Fck59yFKehxHRE9EfCYiTiLJbfMI8FMpmegndWREHJ5+LpmtRpvNU58H/kzSi2qsv99zps0/DibMLfcBo1ROMjeY1nlfmXX/A7g9/f4LkrfDS0rq/FG6//trOJaZlZE+5P4P4E1KZtXcSTJ2/5QygaQfAp+gzLA/SQtIHp7viYh/nuiYEbGHJCHllyeqZ2Y1naPvAQ4DvpNZfwwTDP8zs/qKiKdJkqqfA1w/Qb0u4BKSCYQmM/TIzOokzdV4PfA3NW5yH0kajHfPWKOs6TlKOYdERK+kL5HcPAu4BRgClgHFoNNngFslrScZhtBG8iD8OpLkk5C8pfpz4D8k/TlJd+q3AN8CvhgRewFqOFbRQkkHZZYLETFWv5/crKW8G8gDrwKy50G5PDffIhm+cFeZ/XwROA747zUe9+skswKqWkWzea7aOXoycAXwucy6Y4AHJb0qItbUcIxFJdfFnIc4mE3ah4EjImIw2/NC0j+Q3MuuJ5kN8M+AjRGxR9KhjWmq2bz3JZKJgareh0bEXkmfJ8k1lyMZOjgO/D7w5oj41Iy21JqCA1VzTER8VdJ24FMkvTAGSR5OPw3cGxFjkv4A+DuSvDYFkgfhN0TEk+k+RiX9PvD/Ag+QvDneBHwuIr5X67EyzfpM+im6B3hDvX92sxZxAfBvEbE1WyjpUpLA1C+KZRHRzbM9HUsVZxvbue9oBgBOLC2IiD5JXyUZBmhmlU10jl5NcpP96jT/W9FOSbek29aS72ZFyfJXSM5pM6tRRDxVYdXBJEmYjwKGSe5l3zVb7TKz/UXEZklXkQSOa6n/dUm7SK6NVwP9wEMk10ubBxQRjW6DmZmZmZmZmZmZc1SZmZmZmZmZmVlzcKDKzMzMzMzMzMyaggNVZmZmZmZmZmbWFByoMjMzMzMzMzOzpuBAlZmZmZnZDEpnhTSbt3wOmNlkNP2sfwsWLIjFixc3uhlEBM3+36ocSZSZut4ymvF3W/y9DQ0NRUQ0ZUC5Wc7NrGb8XU7GfDxfW+131uznps/L+ppv52Sr/K4m+r0067kpKQ4++OBGN6MmhUKhJf+/jwgWLGi6X33dtOLvJfs7adZzsxmvm1PVKn/DK5kL19xW+R1k/1s367nZ1ugGVLN48WIGBwcb3Qw2btxIq9xgZA0NDfGyl72s0c1oas34uy3+3iQNN7otlTTLuZnVjL/LyZiP52ur/c6a/dz0eVlf8+2cbJXf1US/l2Y9Nw8++OCmOzcraZX/D0rN9fO1FX8v2d9Js56bzXjdnKpW/H8kay6cw63yO2iFc7PpImdmZmZmZmZmZjY/OVBlZmZmZmZmZmZNwYEqMzMzMzMzMzNrCg5UmZmZmZmZmZlZU3CgyszMzMzMzMzMmoIDVWZmZmY2b0k6TtIdktZJWivp42n51yStl7Ra0g2SDk/LF0n6d0lr0m0+29ifwMzMbG5xoMrMzMzM5rMc8ImIeCVwBvBRSScCtwEnR8Qy4AmgGJB6H3BgRLwKeC3wEUlLZ73VZmZmc5QDVWZmZrNA0hWSOiU9likr22MjXbdM0n1pD481kg5qTMvN5raI6IiIVen3fmAdcExE/Dwicmm1+4Fji5sASyS1AYuBMaBvlpttZmY2ZzlQZWZmNjuuBM4uKSvbYyN9AP4hcFFEnAScCYzPWkvN5qm0Z9SrgQdKVv0pcHP6/SfAINABbAUuiYjuMvu6UNJKSStzuVzpajMzs6ZWaWh8SR1J+pakjemL19dk1oWkqzLLbZJ2S7qp2rEdqDIzM5sFEXEX0F1SVqnHxtuA1RHxaFpvT0TkZ62xZvOQpEOA64C/jIi+TPnnSIYHXp0WnQ7kgaOB44FPSPqt0v1FxOURcVpEnNbW1jbj7TebKyRtSXsSPyJpZVr2RUnb07JHJJ1T67ZmNmWVhsZnvR04If1cCHw3s24QOFnS4nT5LGB7LQd2oMrMzKw5ZHtsvBwISbdKWiXpU5U2cq8Ns+mTtIgkSHV1RFyfKb8AeCfwgYiItPj9wC0RMR4RncA9wGmz3WazOe7NEXFqRGTPrW+kZadGxIpJbmtmk1RpaHxJtXOBH0TifuBwSUdl1t8MvCP9vhy4ppZjO1BlZmbWYGV6bLQBbwA+kP77HklvLbete22YTY8kAd8H1kXE1zPlZwOfBt4VEUOZTbYCb0mHOywhecu8fjbbbGZmNpsmGBp/DLAts9zOvsGsa4Hz0lyry8psX5YDVWZmZg1UocdGO/CriOhKH5BXAK+ptA8zm5bXAx8kCT5lhxVdChwK3JaWXZbW/zZwCPAY8CDwbxGxuhENN5ujAvi5pIckXZgp/1iaA+cKSUdMcttnuCey2T7aiudD+tnvvKk0NL64usw+45kvyfVxKUlvqol6Qu7bqFormpmZWX1lemy8qaTHxq3ApyQdTDKj2JuAbzSgiWZzXkTcTfkb7bI31BExALxvRhtlNr+9PiJ2SHoBSaB4PUnemy+TPAB/GfhHkiHzVbdNc0Q+IyIuBy4HWLJkSZTZh9l8kptomGylofEZ7cBxmeVjgR0ldW4ELiGZHOh5tTTKParMzMxmgaRrgPuAV0hql/RhKvTYiIge4OskvTUeAVZFxM8a1HQzM7NZExE70n87gRuA0yNiV0TkI6IA/CvJpAY1bTs7rTabeyoNjS9xI3B+Ohz+DGBvRHSU1LkCuDgi1tR6bPeoMjMzmwURsbxM8fcnqP9D4Icz1yIzM7PmkuZ9WxAR/en3twEXSzoq8/D7HpKhtzVtO1ttN5uDikPj10h6JC37G+DFABFxGUnv43OAjcAQ8CelO4mIduCbkzmwA1VmZmZmZmbWDF4I3JB05KAN+FFE3CLpKkmnkgz92wJ8BEDS0cD3IuKcStvO/o9gNjdMMDQ+WyeAj1ZYd0iZsjuBO6sd24EqMzMzMzMza7iI2AScUqb8gxXq7yDpzVFxWzNrPc5RZWZmZmZmZmZmTcGBKjMzMzMzMzMzawoOVJmZmZmZmZmZWVNwoMrMzMzMzMzMzJqCA1VmZmZmZmZmZtYUHKgyMzMzMzMzM7Om4ECVWYuTdLakDZI2SvpMmfUfkLQ6/dwr6ZTMupB0VWa5TdJuSTfNVvvNzMzMzMzMihyoMmthkhYC3wbeDpwILJd0Ykm1zcCbImIZ8GXg8sy6QeBkSYvT5bOA7TPbajMzMzMzM7PyHKgya22nAxsjYlNEjAHXAudmK0TEvRHRky7eDxxbso+bgXek35cD18xge83MzMzM9iHpOEl3SFonaa2kj5epc6akvZIeST+fz6zzKAGzOcSBKrPm1iZpZeZzYcn6Y4BtmeX2tKySD5MEprKuBc6TdBCwDHhguo02MzMzM5uEHPCJiHglcAbw0TKjBAB+HRGnpp+LM+UeJWA2h7Q1ugFmNqFcRJw2wXqVKYuyFaU3kwSq3rBP5YjVkpaS9KZaMbVmmpmZmZlNTUR0AB3p935J60hevj4+id0URwn8hGdHCbyxzk01s1ngHlVmra0dOC6zfCywo7SSpGXA94BzI2JPmf3cCFyCh/2ZmZmZWf1VGyXwjPQF6qsp38v/dZIelXSzpJNK1nmUgNkc4R5VZq3tQeAESceTdG8+D3h/toKkFwPXAx+MiCcq7OcKYG9ErJF05gy218zMzMzmn2qjBACQdAhwHfCXEdFXsnoV8JKIGJB0DvBT4ITiSo8SMJs73KPKrIVFRA74GHArsA74cUSslXSRpIvSap8Hngd8J008ubLMftoj4puz1nCzeUDS2ZI2SNoo6TMV6pyZnpdrJf0qU+6ksGYzoFLCZknPlXSbpCfTf4+osH3Z81rSlZKGJB2aKftmei4fOfM/mVnrk7SIJEh1dURcX7o+IvoiYiD9vgJYVOb88igBszmgaqBK0hWSOiU9VlL+v9IL9VpJX82Ufza9eG+Q9AeZ8tdKWpOu+5akcrl1zGySImJFRLw8Il4aEV9Jyy6LiMvS7/8zIo7IJJ48LbPtIWX2d2dEvHP2fgKzuUfSQuDbwNuBE4HlpUlhJR0OfAd4V0ScBLwvs9pJYc1mRqWEzZ8Bbo+IE4Db0+V91HBebySdeVfSAuDN+Lw1q0n6bPh9YF1EfL1CnRcVnyElnU7yLFua0uIK4OKIWDOT7TWzmVVLj6orgbOzBWlS5nOBZenN9SVp+YkkQ49OSrf5TnpRB/gucCFJ98wTSvdpZmY2h5wObIyITRExRpI349ySOu8Hro+IrQAR0VmyvpgUFp5NCmtm0xARHRGxKv3eT9Ib+RiS8/Pf02r/Dry7zObVzutrgD9Ov58J3EMSGDOz6l4PfBB4S9rT+BFJ55SMEngv8JikR4FvAedFxD6TCHmUgNncUDVQFRF3Ad0lxX8G/H1EjKZ1ijfX5wLXRsRoRGwmebN0uqSjgMMi4r70j8kPKH8DYGY1knSQpN+kCSXXSvpSWv5FSduzF/nMNu7xaFYf1ZLCHgNsyyy3p2VZLweOkHSnpIcknV+y3klhzSZvqgmbX5jOOlacfewFZTapdl4/CTw/HTa4nOQcNrMaRMTdEaGIWJYZBbCiZJTApRFxUkScEhFnRMS9me09SsBsDplqMvWXA2+U9BVgBPhkRDxIcrG+P1OveAEfT7+XlpeV3lRcCHDAAQdMsYlmc94o8JY0oeQi4G5JN6frvhERl2Qrl/R4PBr4haSXR0SeZ3s83k+SfPJskt4cZlZetaSw5YK9UbLcBrwWeCuwGLhP0v3FSQ+cFNZsSqaUsLnG9zO1nNfXk1xrfxf4SC07NTMzs31NNZl6G3AEydj+vwZ+nPbAqHQBr+XC/uyKiMsj4rSIOK2tzRMTmpUTiYF0cVH6qXhe4R6PZrOpHTgus3wssKNMnVsiYjAiuoC7gFNK6jgprFmdVUjYvCu9HpL+WzoUF2o7r68FvgzcFhGFujbczMxsnphqoKqdJK9GRMRvgAJwJJUv4O3p99JyM5sGSQslPUJyQ31bRBSHBn1M0up0MoTizEWVhiwcQ409HiVdWBxOkcs57YbZBB4ETpB0vKQDSHpY3FhS5z9Jeie3STqYpAfGupI6TgprVkcTJGy+Ebgg/X4ByflZqup5neac+xzJRAlmZmY2BVMNVP0UeAuApJcDBwBdJBfr8yQdKOl4kqTpv0nH+vdLOiO9QTif8jcAZjYJEZGPiFNJgr+nSzqZZBjfS4FTgQ7gH9Pq0+7x6N6OZrWJiBzwMeBWkuDTjyNibTYpbESsA24BVgO/Ab4XEY+V7MdJYc3qq2zCZuDvgbMkPUkyy+bfA0g6WtIKqHxelx4gIv4lIp6anR/HzMxs7qn6pCnpGpKZS46U1A58geQN7xWSHgPGgAvSIUNrJf0YeJxklpOPpvlvIEnAfiVJHo6bcf4bs7qJiF5JdwJnZ3NTSfpX4KZ00T0ezWZRRKygJLdUMSFsZvlrwNfKbFs2KSxwZ10baTbPRMTdlH9BA0m+uNL6O4BzMsv7nddp+YcqHG8pwJIlSybfWDMzs3mqaqAqIpZXWPV/Vaj/FeArZcpXAidPqnVmVpGk5wPjaZBqMfD7wD9IOqo4cxHwHqDYQ+NG4EeSvk6STL3Y4zEvqV/SGSQzH50P/POs/jBmZmZmZmZmTH3on5k13lHAHZJWk+TNuC0ibgK+KmlNWv5m4H8DpMMTij0eb2H/Ho/fI0mw/hTu8WhmZvOEpOMk3SFpnaS1kj6eln9N0vo05+MNkg7PbLNM0n1p/TWSDmrcT2BmZjYz0pzHnelounLrnyPpvyQ9ml4T/ySzLiRdlVluk7Rb0k3l9pXlJDNmLSoiVgOvLlP+wQm2cY9HMzOzfeWAT0TEKkmHAg9Jug24DfhsROQk/QPwWeDTktqAHwIfjIhHJT0PGG9Y683MzGbOlcClJDPDl/NR4PGI+MN0xM8GSVdHxBgwCJwsaXFEDJPkgNxey0Hdo8rMzMzM5q2I6IiIVen3fpJE6cdExM/TBOoA9/NsPse3Aasj4tF0mz2ZHspmNk2StqQ9FR+RtDIt+6Kk7SWTIJTb9mxJGyRtlPSZ2W252dwTEXcB3RNVAQ5NJ807JK2bnR7+ZuAd6fflwDW1HNeBKjMzMzMzQNJSkt7KD5Ss+lOeHRb/ciAk3SpplaRPVdjXhZJWSlqZy+XKVTGzyt4cEadGxGmZsm+kZaemExvsQ9JC4NvA24ETgeWSTpyl9pq1qrbitSr9XDjJ7S8FXkkyGdca4OMRUcisvxY4Lx0iv4z9r6/lGzXJRpiZmZmZzTmSDgGuA/4yIvoy5Z8jeTt8dVrUBrwB+B1gCLhd0kMRcXt2fxFxOXA5wJIlS2LmfwKzee90YGNEbAKQdC1wLkl+VjMrL1cSEJ6sPwAeAd4CvBS4TdKvi9fRiFidvgRaTplZcytxjyozMzMzm9ckLSIJUl0dEddnyi8A3gl8ICKKwaZ24FcR0RURQyQ33q+Z7TabzWEB/FzSQyW9Oz6WTm5whaQjymx3DLAts9yelpnZzPkT4PpIbAQ2A79dUudG4BJqHPYHDlSZmZmZ2TyW5tX4PrAuIr6eKT8b+DTwrjQgVXQrsEzSwWli9TfhHhtm9fT6iHgNyRC+j0r6PeC7JL01TgU6gH8ss53KlO3Xm9HDcs3qaivwVgBJLwReAWwqqXMFcHFErKl1px76Z2ZmZmbz2euBDwJrJD2Slv0N8C3gQJJhDAD3R8RFEdEj6evAgyQPwSsi4mcNaLfZnBQRO9J/OyXdAJyeJnQGQNK/AuWmt28HjsssH0uSN6d0/x6Wa1YjSdcAZwJHSmoHvgAsAoiIy4AvA1dKWkMSLP50RHRl9xER7cA3J3NcB6rMzMzMbN6KiLsp3xOjYi6NiPgh8MMZa5TZPCVpCbAgIvrT728DLpZ0VER0pNXeAzxWZvMHgRMkHQ9sB84D3j8b7TabqyJieZX1O0jO03LrDilTdidwZ7XjOlBlZmZmZmZmzeCFwA1pL8Y24EcRcYukqySdStKLcQvwEQBJRwPfi4hzIiIn6WMkw3MXAldExNpG/BBmNj0OVJmZmZmZmVnDpTP2nVKm/IMV6u8Azsksr2ASM4uZWXNyMnUzMzMzMzMzM2sKDlSZmZmZmZmZmVlT8NA/M5tRPaPD7B4eYvfoIN2jI/SNj3LyEc/nlOe+qNFNMzMzMzMzsybjQJWZzZgdQ31cu+nx/cp3DQ+ydMnhPOfAgxrQKjMzMzMzM2tWHvpnZjNmbU9XxXU/3bqBiJjF1piZmZmZmVmzc6DKzGbM1oG9FdftGR3m0e7OWWyNmZmZmZmZNTsHqsxanKSzJW2QtFHSZ8qs/21J90kalfTJknUh6arMcpuk3ZJumm67coUCe8dHJ6xz584tjORz0z2UmZmZmZmZzREOVJm1MEkLgW8DbwdOBJZLOrGkWjfwF8AlZXYxCJwsaXG6fBawvR5tax/sq1qnEMFNW5+ox+HMzMzMzMxsDnCgyqy1nQ5sjIhNETEGXAucm60QEZ0R8SAwXmEfNwPvSL8vB66pR8PW91bOT5W1dbCPTX099TikmZmZmZmZtTgHqsxa2zHAtsxye1o2GdcC50k6CFgGPFCPhm2toUdV0c3tG51Y3czMzMzMzByoMmtybZJWZj4XlqxXmW0mFfGJiNXAUpLeVCum1sx9jRfyDOTGaq4/WsjTOzZxPiszMzMzMzOb+9oa3QAzm1AuIk6bYH07cFxm+VhgxxSOcyNJDqszgedNYft9TDTbXyXbB/s44sCDpntoMzMzMzMza2HuUWXW2h4ETpB0vKQDgPNIgk6TdQVwcUSsqUej1u+tLT9V1tODkw9umbUSSVdI6pT0WKbsa5LWS1ot6QZJh5ds82JJA6UzdpqZmZmZzVUOVJm1sIjIAR8DbgXWAT+OiLWSLpJ0EYCkF0lqB/4K+FtJ7ZIOK9lPe0R8s17tah/sn/Q2ncOD9Tq8WbO6Eji7pOw24OSIWAY8AXy2ZP03SCY8MDMzMzObFzz0z6zFRcQKSnJLRcRlme87SYYEltv2kDJldwJ3TrU9o/kcg7lKEwxW1jfuHFU2t0XEXZKWlpT9PLN4P/De4oKkdwObAEdxzczMzGzecI8qM6urLf29U9ouH8HAeO0J2M3moD8l7T0laQnwaeBL1TaSdGFxwoVcLlfTgZ7c282t7U9Np61mZmZmZjPCgSozq6sNfXumvG3H0OSHDJrNBZI+B+SAq9OiLwHfiIiBattGxOURcVpEnNbWVltH6d90bWdt727G8vkpt9nMzMzMbCZ46J+Z1dX2KeSnKtoysJcTnjPtSQfNWoqkC4B3Am+NiEiLfxd4r6SvAocDBUkjEXFpPY7ZP5YMte0cGeTYJYdVqW1mZmZmNnvco8rM6mY4l2M4X9vQo3J2DlftPGLWMiSdLWmDpI2SPlNm/ZmSBoF/AQ4BsjP7vQH4dUQsBf4J+HvgC5Jumm67IuKZ8/TpKQ7VNTMzMzObKe5RZWZ1s7m/Z1rb946NVK0znBvnlx1baB/s4wO/dTKHHHDgtI5pNhMkLQS+DZwFtAMPSnoj8BrgyHQmzh+l1XcDeeC/Szo6Ii4iSaB+sqTFaZ0TgO31aNtwPkex29Z2B4fNzMzMrMk4UGVmdRERPNTVMa19jBcKjOZzHLhw/z9NI/kcv+p4msd7dz/zkP2Ljs28+yW/Pa1jms2Q04GNEbEJQNK1ABHxjmIFSWcCJ0bEOyvs42bgHRHxRUk/AK4B3jjdhu0ZGc58H5ru7szMzMysQUYLeRZpAQukRjelrjz0z8zq4pcdm9k9Ov2H3l1leng81NXBd9etZG0mSAWwqb+XvaPVe2GZNcAxwLbMcntaVup1kh6VdLOkk0rWXQucJ+kgYBnwQD0atnP42Txyw/kc+SjUY7dmZmZmNov2jI9yQ+92ftKzjTv7OtkxNkQhovqGkyDpCkmdkh6rsP5MSXslPZJ+Pp9ZF5Kuyiy3SdpdSyoLB6rMbNrWdHfyaHdnXfa1ZaBvn+VcocCvd26l0p/cn+/YVJfjmk1Sm6SVmc+FJevLvdYq/d94FfCSiDgF+Gfgp/tUjlgNLAWWAyvq02zYNTy4z3K2h5WZmVkjSDpO0h2S1klaK+njZepI0rfS3I+rJb0ms27KD8RmragQwa8HdiffgZ25Edy8DccAACAASURBVO4a6OInPdu4Iw1aRX2CVlcCZ1ep8+uIODX9XJwpL01lcRY1prJwoMqsRUk6SNJv0t4YayV9qWT9J9OL9pHp8lJJw5lo92WZuq+VtCa98H9Lqr3v6M6hAW6rY7Box9C+swau6emkUDFMBdsG++jy8CWbfbmIOC3zubxkfTtwXGb5WGBHtkJE9EXEQPp9BbCoeL5m3AhcQjLsry56SnLBbR3YW69dm5mZTVUO+EREvBI4A/iopBNL6rydJGfjCcCFwHcz66b8QGzWih4d6mWkTK/4ArArDVqtHenbf8NJioi7gO5p7OJmoJj6Yjk13tM6UGXWukaBt6S9MU4FzpZ0BiRvpUgu0FtLtnkqE+2+KFP+XZILfvHiXy1qDsDg+Bg/3vz4NH+MfXWP7tu7Y+XuHRVqPuvW9qfq2gazOngQOEHS8ZIOAM4jCTo9Q9KLikFhSaeTXJP3lOznCuDiiFhTr4b1j4/us9w+NP2bGLNWVqknh6SvSVqf9ty4QdLhJdu9WNKApE+W33PzGBwfY3X3rnq9XTeru4joiIhV6fd+YB37D5k/F/hBJO4HDpd0VGb9lB6IzVrN3twYG0b7q9bbNFLTpDnVRgnUou6pLByoMmtR6UW6+NdnUfop3oF+A/gU+w812k96gT8sIu6L5A72B8C7a2nDNZvWkqtzfpuRfI5cIdln5/Ag/bmxqtvsGhlkx2D1P9ZmsyUicsDHgFtJbrZ/HBFrJV0kqRgkfi/wmKRHgW8B50XJU2REtEfEN+vYLkby+X3KdrtHolmlnhy3ASdHxDLgCeCzJdt9g+TBuOndvmMzv9ixmft3u4OJNUzND8OSlgKvZv8H2mr5H2ckt6NZM4kI7kqH/FUzFHmGC/lq1aqNEqhmRlJZOFBl1sIkLZT0CNAJ3BYRD0h6F7A9Ih4ts8nxkh6W9CtJxdnDjiG50BdVSvq8n5F8bjrNr6g4lO+eXduq1HyWc1VZs4mIFRHx8oh4aUR8JS27LCIuS79fGhEnRcQpEXFGRNyb2faQMvu7c4IZAmsyML5/4HdgfMy9LGxeq9STIyJ+ngadAe4nGcILgKR3A5uAtbPd3smKCLYOJkN87+tsp2PIL3asIWp6GJZ0CLCB5GXrXZJWZleTBKKeSW1B5qVs+kD8h8BG4CjgX2biBzFrpMdH+hisHnx6xlMjM/s3f6ZSWThQZdbCIiIfEaeS3DyfLmkZ8Dng82WqdwAvjohXA38F/EjSYdSW9BkASRcW34TlcjmOOOCg+vwgJbYO7mW8kGfLQG/N23SPDtOZr977ymw+K5fPLYC9JcMBzearCXpy/Clp7ylJS4BPA1+iBXSPDjNWeLb383Vb1jGWr/0hx2y2SFoEXEeSb+q1aaqK0zJVeoA38mxqi/3yPwJDwMHA7wMfmdkWm9VXd26U/+zZzr0DXYyWCUYN5XM8Njy53KJbxma25/xMpbJwoMpsDoiIXuBOkrH7xwOPStpCcgFfJelFETEaEXvS+g8BTwEvJ+lBdWxmd+Uu+sXjXF58E9bW1sYkcq5PSvtgHw/v2Vl93GKJJ3MewmQ2kY7h8rkK2gecp8os7clxHfCXEdGXKf8cyfDAq9OiLwHfyAy/r7S/fV7uNMrq7l37LI8VCly3ZZ17UlpTSR90v0/So7HSRWkp0E/yjuW1wN6I6CipMwBcUs/cjmazYfvYMLf17WI48mwdG+KG3u3clwlYFYf8TfYv90Aht8/LismSdA1wH/AKSe2SPjwbqSzaptxiM2soSc8HxiOiN53h5PeBf4iIF2TqbAFOi4iutH53ROQl/RZJ0vRNEdEtqT9NxP4AcD7J+OKG6RoZonN4cNLb9UbjHgTMWsHukfLn1dbBvZz83BeUXWc2H2R6clwdEddnyi8A3gm8NXPj/bvAeyV9FTgcKEgaiYhLs/tMhzZdDrBkyZKGRYWe7OvZr6xjeIAHdm/njBccW2YLs4Z4PfBBYA3JsL2tkraT3JveTfIS9SGS59ffJckRd36Z/eRIzs8/Au6YhXabTdvGkX5WDu3/t/rpsSGeHhti6QEH85yFB9CbH5/S/jePDfCKgw6b0rYRsbzK+kuBSyusK5vKgqSDxYQcqDJrXUcB/y5pIUnvyB9HxE0T1P894GJJOSAPXBQRxalG/wy4ElhMMrShoclhB3JT+yOcB/pz4xzatqi+DTKbI3rGRsqWd1YIYJnNB9meHBHx9Uz52SRD/N4UEc902Y2IN2bqfBEYKA1SNYvh3DgDFSYlubeznZcccjhHHbzfc4TZrIuIu0nTUUg6OiJ2SHoByaQGlwNfA94WEXslvQP4vYjoymxf/B/59SXb/q/SY6WJ3C8EOOCAA2byxzKr6tGhXtaNTNyzPRm+N/WRI5tGph6oahQHqsxaVJow8tVV6izNfL+O5G1xuXorgZPr2b5G2To+xEltz2l0M8ya0sB4+SDw3jHnqLJ57ZmeHOkEJQB/QzKE4UDgtnSo+/0RcVH5XTSnx3snnhnqui3ruOi3X0vbAmcDseYRETvSfzsl3QC8iWdTW8CzqS1Oj4idVbY9HbirpE5T9Ha0+S0ieGBwz4znkALYW8gxHgUWqXX+1jtQZWZzSvvYMCctdqDKrFQhgrEKs8TkIxjMjbGkzW+Wbf7J9uQoUXUa7Yj4Yt0bVEfrersmXD9WyPN4726WPfeFs9Qis4mlkxUsiIj+9PvbSJIwl01tUcu2s9d6s9pEBHf0d9KZm70XhVtHh3jpQa3Tg7Z1QmpmZjXYmx9zglizMqr1muoYmjAvtJm1mFyhwO4yM32WWtVVmovarKFeCNydJmb+DfCziLilUmVJR0taMZVtzRpl1VDPrAapAJ4aba37PPeoMrM5pQD05MZ47qIDG90Us6bSVSUP1dMDvbzssOfOUmvMbLIe6+lk+2Afbz36t2oaqrelv7em2aG6x0YYHB9jySL3qLTGi4hNwClV6izNfN8BnFPrtmaNtmt8mCcbEDTqyY+Rj2DhDM3aXm/uUWVmc87TszDW26xZRQRP9XUzmt93FsxqPaY6hpxQ3axZjeRz/GL7Ztb2dvGvG1ZVDTwDrO7ZVfP+V3btmE7zzMysBmOFAnf1Tzwke6YE0N5Cz0gOVJnZnLNjfLjRTTBrmK7RYf5z6xPcvWvbPuW7Rye+Oekd83lj1qxu376ZQto/ajif4wcb10w4ZC8iaB/sr3n/a3u7PGzezGwGRQS/6u8kX1Nf15mxsYWG/zlQZWZzzkAhR8E33DZPPf+gg1mAWNPdyVj+2eTpe0dHJtxurFDYp76ZNYe9oyNs6NuzX/mdO5/mJ5sfZ7zMJAmdI4PkolDzMUbyOXYOt84DjJlZq1k/0s+e/FhD29CVG22ZZ6SWCFT9YvsmNvf3NroZZtYiAtg9ywkKzZrJogULKBDck+lVNZAbr7qdH1RtrpN0haROSY9lyr4oabukR9LPORW2PVvSBkkbJX0mU36lpCFJh2bKvikpJB053Tbfsv2piuu2DvbxL+tXsaXkPnl1d+ekj/PAbg//MzObCXtzYzw63Ph4RgA7W2TkSdVA1WQu6JIWSfp3SWskrZP02cw2r03LN0r6llR7Fq81PZ08smfnZH82M5vHtow6347NXwvSS+yjPbsYL+TJFQo19a54qr9npptm1mhXAmeXKf9GRJyaflaUrpS0EPg28HbgRGC5pBMzVTYC56Z1FwBvBrZPt7EdQ/1sH5p4CN9YIc/1T6/nui3rGElz003lXN4y0Et+Er2wzMysunwEd/RP/uXBTGlEIvepqKVH1ZXUfkF/H3BgRLwKeC3wEUlL03XfBS4ETkg/5fZZ1kItqGl6XTOzol3jEw9zMpsPChHct6ud3rHazoftg30z3CKzxoqIu4DuKWx6OrAxIjZFxBhwLWlgKnUN8Mfp9zOBe4B9ZzSYgpvbK/emKvX0wF7+Zf1D/KZzO0M19KAsVYhgQ+9U/tOYmVkl9w/sYaSJXgLsGh9piZyEVQNVk7ygB7BEUhuwGBgD+iQdBRwWEfdF8l/lB8C7a21k24IFDObGWmY8pdlsqjQUIbP+tyXdJ2lU0idL1oWkqzLLbZJ2S7ppNto+k4YiP6n8HGZz1cPdO+mo0iOjqLtKHiuzFtAmaWXmc2GN231M0up0JMERZdYfA2RnKGhPy4qeBJ6fbrucJJA1LU/s3VNzkLkoH8HdnduqV6zgoT0e/mdmVi97c2NsG2+uDjcFoLsw+ZcZs206OarKXdB/AgwCHcBW4JKI6Ca5kLdnti29uE+oTQsImPTF2myuq2EoAiSB5r8ALimzi0HgZEmL0+WzqMNQhWax072qzMhHcM+u9uoVgVwUGBhvbKJPs2nKRcRpmc/lNWzzXeClwKkk97D/WKZOuZQVpW9QrwfOA34X+PUk2ryfQgS379g8nV1Mye6RIcb8ksfMrC42jNQ+++ps2lFo/nu9qQaqKl3QTwfywNHA8cAnJP0WtV3cnyHpwuKbsFwuR5uSZm4d2DvF5prNWdWGIhARnRHxIFApdH4z8I70+3KS4QtzgvNUmSWG8rW/Ods66GutzS8RsSsi8hFRAP6V5Npaqh04LrN8LFDa/eha4MvAbem+pmxVVwfD+WmPHJySTbnWSLRrZtbs2pswcXkbcNzCgxrdjKqmFKia4IL+fuCWiBiPiE6S8fmnkVzcj83sotzFPbv/y4tvwtra2liYJoX1zbPNQ9WGMFQbilCLa4HzJB0ELAMemHpzm4tn/jObvE19Tqhu80uaoqLoPcBjZao9CJwg6XhJB5D0nLoxWyEitgKfA74z3TatauAkQk/nR8hFgXwEhYiWyGViZtZs9ubGmrKHqsr2IWo+bVPZSNJREdGRLmYv6FuBt0j6IXAwcAbwTxHRIalf0hkkD8HnA/88ieMB0DncXOM7zWZBLiJOm2D9pHorlhMRq9NJD5YD+8101MpGo0B/bpxD2xY1uilmLWPnsHsi2twl6RqSZOdHSmoHvgCcKelUkuvnFuAjad2jge9FxDkRkZP0MeBWYCFwRUSsLd1/RPzLdNuYjwIDucYNyxgl+EnPvsOFFwBvOOT5HH3A4vIbmVlDRQSjUeDgRjfEntGsw/5aRdVA1WQu6CS5cv6NJHAl4N8iYnW67s9IZhBcTDLU6ObJNrZ/fJSIeCZwZWY1DUWoxY0kOazOBJ43/WY1jw2j/ZzW9txGN8OsZfSPj1KIYIGvtTYHRcTyMsXfr1B3B3BOZnkFZV7oRMSHKmy/dCpt7GrCF7MF4O6B3fzhc45m8cIpvec2sxn0aPcufjnazTsOPNAvaJtEMw77ayVVrzSTvKAPAO+rsG4lcPKkWle6D2Dv2CiHH9j8YyrNZskzQxFIkqCfRzIEd7KuAPZGxBpJZ9axfQ23dWyI05Y4UGVWqwD2jAzx/MVLGt0Us3lp00Bvo5tQVgG4o7+Ttz/nKL80NmsyD6fDhdvHh3mlA1UN16zD/lrJdGb9a4htg32NboJZ04iIHFAcirAO+HFErJV0kaSLACS9KO0N+VfA30pql3RYyX7aI+Kbs93+2TAWBfY2cAiFWStq1gdls/mgmScP6ivkWDXkPHZmzWQ4N07PWDLT9Q734mkKHvY3fS0XqHq6CW6eI4INw32MO0pqTSAiVkTEyyPipRHxlbTssoi4LP2+MyKOjYjDIuLw9Htfuu6QMvu7MyLeObs/xcxa74uF2aQ084Oy2VzXNdJ8Q/+ynhwdoGPMD8NmzeKR7l3PfO/xy9mm4GF/09dygarOJrh4bx4d5OHhXlYPNT5oZmbVtY8NedYis0nYPeKE6maNMJrPMVrIN7oZVf16YDfD+Vyjm2FmwNqe3c98zxGMtMDfkLnMw/7qo+UCVX1jow1/4Fw7krxp3jrW+KCZmVU3TvgNk9kkjOTzjOV9o2s223YMDTS6CTUp5qtq9D252Xw3MD5G3/joPmUd6TBAawwP+6uPlgtUFQgGxhv3wNmTG2MwjVKPRoE+P/yatYT1o75omE3G9iGfM2azbVN/d6ObULO+Qo72cb+0NWukYhL1LJ+XjeVhf/XRcoEqgPahxiVUXz2873A/574xaw07xob95tdsEjb1O2Gy2WzbPtha95W7G/jy2MxgXe/u/cr25EbL1LTZ0J/Pzblhf5KukNQp6bEK6z8gaXX6uVfSKZl1IemqzHKbpN2Sbqp23JYMVD3d35gkr2OFAh3j+3al3OaIqVlLyBG+cJtNQqs9MJu1gvFCYcKRAT0tNmRnb96BKrNG2Ts6wkBufL/ykSiQm2PBklbxVGFOxgauBM6eYP1m4E0RsQz4MnB5Zt0gcLKkxenyWcD2Wg7akoGqnSONGb+/bmT/nlzjUXDuG7MWsc49IM1q1uNeiGZ1FRF8b8Mqbtr2RNn1/eOj5FvsnBsoOKG6WaOsKjPsr2j3uF/ONkLHHAzeR8RdQMVx6RFxb0QUu+HfDxxbUuVm4B3p9+XANbUctyUDVXvHZv/Eiwg2VnjI3VAmgGVmzWfn+IgfvM1qlI/G5oQ0m2skcXDbInYMDTBY5tzaOtB695MjBffaMGuUDXu7Kq7b5km/Zl33yBDjtORzRpuklZnPhdPY14dJAlNZ1wLnSToIWAY8UMuOWjJQlb15zkeBx3o66ZjhpK+7CmMV/8fb7rfONoGHB3vYPd5aXfnnqjxBl4f/2SyRdLakDZI2SvrMBPV+R1Je0nszZVMe019PTw80Zqi92Vz13AMOAuD+zvb91rViXrg80XK9wMzmgu6RYYbylXs0dvp+d9ZN1MOtyeUi4rTM5/Lqm+xP0ptJAlWfzpZHxGpgKUlvqhW17q8lA1UAm/t7uWPHFi59/EF+vn0TP316w4web32uclR6nKDbw/+sjB1jw2wY7eeBwdaZxWeu2+Nz1WaBpIXAt4G3AycCyyWdWKHePwC3lqya8pj+eto22Ho9PMya2YEL2wBY29tFoSTAs3O4MaktpmvQw//MZt1DezomXD9YyO33N8Zm1hN98/d5T9Iy4HvAuRGxp0yVG4FLqHHYH7RwoOq2HZt4uHvnM29xhvM5ekZnJnlZ18gQfZGfsM76Ud/M2/4eGkr+YA0UcmWTHdrs25v378FmxenAxojYFBFjJN2ezy1T738B1wGdZdZNaUx/PfU7sGs2I3JR4Im9z97LF1p4qG2v/06Yzbon95aLBTwr8Lk5m3YODzAyQQ+3uUzSi4HrgQ9GRPkkjHAFcHFErKl1vy0bqCpnJrrbjeRzXLtpbdV6O8ac+8b2tWNsmMHCswHOtc5l1hSc+NVmyTHAtsxye1r2DEnHAO8BLquwjymN6a+ncnl0zOYaScdJukPSOklrJX08Lf+apPXplNs3SDo8LT9L0kOS1qT/vmUqx71/97OdJPeMDLVmZhPcU9lstnUODzJSmLgTBUC7Z6efNbdv39zoJswYSdcA9wGvkNQu6cOSLpJ0UVrl88DzgO9IekTSytJ9RER7RHxzMsedU4GqJ6pElicrHwV+9NRjjNXwh8C5b6zUqqF9u39uHRtyMLMJDNdwPpvVoFriSZXZpvQPwD8Bn44o32V3qmP662l4nr4dtHknB3wiIl4JnAF8NB2qextwcjrl9hPAZ9P6XcAfRsSrgAuAq8rss6ru0WF6R5MclpsGeqf3EzTQ3oJ7Klt9SdqSBoL3e+iV9Mk0j+ORFbatKT9kqYiga2RmE5DX6zmg2rC/op3OkTsrukaG2DUy2OhmzJiIWB4RR0XEoog4NiK+HxGXRcRl6fr/GRFHRMSp6ee0zLaHlNnfnRHxzmrHbavvj9FYw/kcPSPDHHHQ4uqVq4gI/vPpJ+gdq/0E3zo2xPMXHTTtY1vr6xgbZqAkIJIn2D4+zLEHHNygVhlQ0xsosxrkshfiMtqB4zLLxwI7SuqcBlwrCeBI4BxJuYj4aaZOcUz/mSRvq2ZVLS9qzFpdRHQAHen3fknrgGMi4ueZavcD703rPJwpXwscJOnAiJj0G8t7O7dxznEnsLWFJy4YdEDbZsabI2Kfae0kHUeSs3FruQ0y+SHPIrkOPyjpxoh4vNrB7ux4mke6d/KnJ5zKcw6s7/Nc/9goN257gt0jQ3zoZcs4/MCpP6tGBE/VmAtpb36MiCC9z7AZctuOTY1uwpw0p3pUATxUp+F/v961lS2TfLvlnhqtr2t8hDv6dk07+eBDQ+UvII8Pe/hfo+UI92yz2fAgcIKk4yUdAJxHEnR6RkQcHxFLI2Ip8BPgz0uCVDCFMf31VIggH55+3uYPSUuBV7P/UNs/Zf8ptwH+CHi4XJBK0oXFXpe5XPlgzhN93eQLBXbPcE+OmeT7X5tF3wA+xf49lItqzQ+5nxcfchgB/Kz9ybo0FJKg0n27tvG9Jx5m1/AghQh+tm3jtPa3unsXY4Xarst5YMjn54zaMzJMx1BrToTR7OZcoOrJvukP/9vQ28XKrtq6VGaNVEm4bs3vidEBduVG2TY29RvGneP796Yq6s6PMeoLRsON+MHbZlhE5ICPkczmtw74cUSsLRnTX8t+Jj2mv96Gxj2sx+YHSYeQTG7wlxHRlyn/HMnwwKtL6p9EMmvnR8rtLyIuL0733dZWfhBDIYJHune2dBLeHOHZxazeAvh5mgPuQgBJ7wK2R8SjE2xXNT9kuq/9gshL2g4AYOfwIFv6q3dW6B8b5dc7t7Kpr4fhMoHonUMD/OuGVdy3e/s+UbVdI7XtP2s0n+PunVu5dN2D3N6xZVLb7hhv3SB4K7i9w72pZsqcGvoHyfC/7pFhnjvF4X89o8OsaJ9apHu0xui2Na++dEa4dSN9vOTAJVPax8rBngnXbxjpZ9nBh09p31lpguW7gANJzuWfRMQXMus/CXwNeH6x67SkzwIfJnnJ8hcRcWta/lrgSmAxSS6cj8cc7nY0kB9n8YKFjW6GzXERsYKS3FLF8fxl6n6oZLnsmH7gzro1sEb942McesCBs31Ys1klaRFJkOrqiLg+U34B8E7grdnroqRjgRuA8yPiqekc+55d7dPZvCkMFnIcunBRo5thc8frI2KHpBcAt0laD3wOeFuV7WrJD0lEXA5cDrBkyZJn1i/SAsajwC3tG7nwt1/LggpD5nKFAj/a9BiDuXEezGx7xIEHcdTBhzKcG+eJCYbn3bL9KT7yitdUHZLXMzrMXTu3sqm/Z8qTLbSPjXDCQYdNcWubSO/oMO2D/Y1uxpw153pUAayqMcFcqfFCnms3rZ3yH4Ix99JoecXusb358Sn1fNow3Fd1VrmnRuvWPXQUeEtEnAKcCpwt6QwoP4Y/TQx7HnAScDbJzAzFaM13gQuBE9LP2fVqZDPam3cPEbNaTSZXYzVrhnq5fe9OD7+1pqLkafH7wLqI+Hqm/Gzg08C7ImIoU3448DPgsxFxz3SPn5sD94+9ec/8Z/UTETvSfztJAsJvAo4HHpW0hSTv4ypJLyrZtJb8kBUVA0dD+Rwruypv9l9bn2Awt++95HgU6BwZ4tHuXRMGqQCGcuNVn1fv2bWNf3vyUZ6aRpAKoMfn5oz5xY4tjW7CnDYnA1XV/jiUExHcsGX9tGY4yvnGu6VFxD7BxidGJhch78uN8/Bw9a68o1Fgz/j0Z4iMRDHqtSj9FP8nLDeG/1zg2ogYjYjNwEbgdElHAYdFxH3p2+IfAO+edgObWK8DVWY16xmr3/TWT48NsTs/xubRuTs7jrWk1wMfBN6SzjL2iKRzgEuBQ0l6dDwiqdgj8mPAy4D/k6n/gsY0vTl05/wwbPUhaYmkQ4vfSXpRPRgRL8jkdWwHXhMRpcmJq+aHrNW9ne2MlnkufKirg811mKXz7l3bGK/wUvzhrg4e2L192seApCNFuZxW41FgxzRSncx3fWMjbB1s3UkwWsGcDFSN5HN0TzIp5b2d7bQPTa/rXn5a8W5rtNJkg5Pp+ZSP4Jf9u2quv26kPknVJS2U9AjQCdwWEQ9MMIa/0rj9Y9LvpeXljlc1MWwr6Hegyqxme8emH1gvKs66uWqoxzltrGlExN0RoYhYlplee0VEvCwijsuUXZTW/7uIWJIpPzXt+TFv+QWQ1dELgbslPQr8BvhZRNxSqbKkoyWtgMr5IafSiEIEt23fN//QzqEBfrXz6ansbj/5CH5ZpkfO+t4u7qjTMYp25vZ94bRtdIif9mznroEuB6um6Hb3pppxczJQBZOb/W/7YF/dotZzofv2fFV6kzUSBfbW+IbwgcE9k0rQPVynxPsRkY+IU0m6Np8uaRnJGP7Pl6leadx+TeP50+NVTQzbCjwDijWCpCskdUp6LFP2NUnrJa2WdEM6pAhJZ6VJZNek/76lUe3uH69PT4lCBLn0T0uO4LFhv4k0mysGWzgZvDWXdMa+U9LPSRHxlTJ1lhbzr0bEjog4J7NuRUS8PCJeWm7byXiir5s9aeeH0XyOn2x5fDq728/a3t30ZYbXP93fO+VcyRNpT3tGjxUK/LJvF/cMdj3TwWL9JEeQWJJIvx696mxiczZQ9VhPJ6tqnLlvKjP8VTLihOotqyu3fx6Wx2vo+bRtdJCtDX4bERG9JEmWz6XyGP5K4/bb0++l5XOWZ+i0BrmS/fO/3QacHBHLgCeAz6blXcAfRsSrgAuAq2arkaVK83BMVWmAeN1IX81TbJtZc/MLIJuuci9zStafKWlvZrjt5zPrQtJVmeU2Sbsl3TTddt207Ukigv/Y/PiMXLOKgamdQwNc//T6uu8f4P9n797j5arLQ/9/HrITEhIwChzlKgjRgimg5qD91QtaLwE5oq3+SuoP6u0V8UD1lPZV9dijLdbfrx6tfWFFaKqpIgilKD0Rws1q5CKBhJD7BXbuO/t+nT33WbOe3x9rTZg9e2bPfdaamef9es0rM+s2372z18xaz/f7fZ7RTIqDqSj/MdnHsDNzlPSIkyJrI5yr8uuBQ0E3oSt0bKBKgQ2Dh7nvwG7S2bm/PAcTDUtuTcpugNtWsWHrRXecOgAAIABJREFUfenEnEl/p5w0z8TGmtmskkTk9LzRF4uA9wIvzDGHfx1wrYicKCLn4yVNf05VB4BpEXmbn1D2euD/BPEztUpG1ZI5m5ZT1SeA8YJlj/lTFQA24geNVfWFXDJZYBewUEQCKb2XbNCUnsIptwo8H68+p6QxJnwc1Kbzmnr9iPLFfJ7Mm257S97yGLDcvx4Gr6BQQ6bLjKUS3HdwN8NVppWpVH88ys7xYf7tYO0FvcqJa5ZnY+MUC7Mp0GfT/yo2kUrQOz13hXfTGB0bqMrpi0dYs+95+kuUjnRct2G9xQDxMhXfTHhNFxm2nkUZyBRPJDycSfJIZLDoh36LnAH8WkS24yWPfFxVS/Yc+XP07wN2A48AN6oej6x+DvgBXoL1/cDDzWx4GFiVThNCn6L4ufdHeEHoosmimp07Lp1tzLkyXqTy0OF0nJjltjGmI9ioKlOPYp05VXoY+KD/fBVwT92N8h2rM49xOY/1Hwh0VFO1BaS6VSKT4e79RQf8mSbo+EAVePNx7z+0p+gIiuFEYysPRcuM3jLhlShxgbW7yIf3oVSMX00PB5o+X1W3q+qb/OSvywt6lnLbHJ/D77/+hj9n/w2q+nDe8s3+MS5Q1Zu0C4YbRS2fhgkREfkK4AB3Fyx/I/BN4LOl9m127jgXxWnAdIdS5es3xmxUlTGdINLgoHPaddkYHbXRHp2jJ9ep4j9W13CM3xORbSLysP/9mO9evJkDC4FLgGfrbnGXGMumLc9yGY7rcveBnaQtIN8y7ZsNuUqOuowm45y+aPGM5b3Tjb1AthFV7clRt2TVxlEnxVPTI7xi3nxO7TmRMSfFrgZV7TPBmcpmOHV+IDOpjJlBRP4UuBr4g/wgsYicDTwAXK+q+4NqH0DMSfOKBQvrOkap4PCIkyLuOpx0QtdckhjTkUadFGcuWFR+wzJUlf2pqFcdFIi6DmcvOKn+BpqgOaq6oo79twCvVdWoiFwF/AdeGgvA68AVkfPwRlOtr6eh3ehQKsaFC08OuhmhpKrcf3A3kUzjqiCb8rpiRFXO7qnRWcuOxhobcCg1KseEW7nRNX2ZBLuSEZ6IjliQqkNM2XQjEwIishL4IvAhVY3nLV8KPAR8WVWfDqp9OdEGVP6ba1rQVAOn4BtjgjFVYtRkNSJOhvVTA2z2g1SmOFXlV5EhDqYaOzMkzFQ1oqpR//l6YL6InFaw2Trg2zRw2l+3eMmm/5X06LH99Dcwp7WpTFcFqg5EZic+G0sWzz9UK6sm1p7GncaUXw+CiKwUkX0i0isiXyqy/ndE5BkRSYnIXxasa1qVlLCbdu3G2LSWiNwDPAO8QUT6ROTTwPeAk4HH/SpGd/ib3wRcCPyvvApH/yWYlsNEanZV1GrNlRduwgLHxrS96TpnFWyLT7A+MlD3cbrBuJNm2EmxOTbeNVO2ROQ1ftEfRORyvPvYwopGa4FbVHVHq9vX7qZcxyrxFvHc8DF2T84e7GKar6vG2U+mk2Rdl3knePG5WKbx83FTdoK3pbFWB6oalAFKROYBt+FVN+kDNonIOlXdnbfZOPB54MNFDnG8SoqqJmhglZSwi9mFsGkxVV1VZPEPS2z7d8DfNbdFlZtI1xeoSrvunB97jRiJYYwJVqKOPK2TTpo9JUZ0dHzSzBr0przRHVmUbfFJ3rL4VQ09vqoy4qTYm4xw8gk9vKnBxy/G78y5AjhNRPqArwHz/fbcAXwU+JyIOEACuLYwp6qq9gG3Nr2xHWp/KspFi04Juhmh8dLUOE8NHw26GV2rqwJVijfV77yTlwJwJDbV8PdoVCWxTbFxhjIJrl56VkOOZ+Y25bbtTdLlQK+qHgAQkXuBa/Aq+wGgqsPAsIh8sPghjldJuZ+Xq6S8o5mNDoOEBZVDZyyTYkN0mA+c/BqW9MwPujkmz1SdgapomRFTxaquGmPaSwbFVeUEb9BLVZ6PW7n3avTnVaTuTUW5eOEpLJpX/23dlJNmTzJCXzqB44cIBbj0pFfW9P9ajRKdOfnrv4c3CrnYuiVFlm0ANjSibd3CAlUvi6STPHj0xaCb0dW6auofwO7JkePP9xeZClgvp0HF0vrScSvz20Kx8N4klauQchaQH+rv85dVoyurpGS6ZKh8O9mdjJBR5aWU5QEIm+k6c1RNlglUJWyEozEdoZZcrdFshhHHkhRXKu46pPKuYRTY1IBA368jQzwcGeRQOn48SJU7/mQbp8gwlYu6juVb9j3Wf9BGcwas6wJV+cnTB5uQFK1U5bhqOOrO+AIyzZcM7+/byZWd9x9rCtYX696q6o9QVbcD59FlVVIUC1aFiaoymPFG7RzLNDZ3oKlfvM5k5xNlpvbZd54xnSFSQ765LfHJJrSkcx1Izr5/6c8kmKojmHQkFWNojmChfS93jxctqToTqQRHoo2feWWq0xaBquuXHeHm5Y1JYhZzMiSzDq5q3T3EpdSb92rUSl+2VFrnzp0Scn3AOXmvzwb6azhOV1ZJCfFIuq4z7qSPB/qjrtP05LBnnrmFM8/c0tT3CNLnLhps2PcmQLLOc6XczasLZBs0IhmgNznNtCVoN6blxqrMN5d0szOmsdXqzDO3cOGFe+s+Tjs4ko4XXb4xVphXvDJZVZ6Ljc+5Ta4jqZO95qQN3HTxUEO/O9vRoSorSfanE/x8oo+tsYmGfo8H6fFjB4JugqFNAlWNtj8yzmgy1rTgRLLO3DdHrdeipYKoLtPAv71NwDIROV9EFgDX4gWdqtWVVVJq6fk1zfFSamYP3rG0fQ6GSbrOqQCxCvZvVIGDkUyKzfEJdiasN9SYVqt2ithWy01VFUddIiU+KyeyGYZquId4Pj4+Y6pfMVN2vdQ1EpolWuEo6mknw5PREdLqsjc1zQMTffQmp9E2DliNJRP0xW1UWRh0ZaBq7+RYU/JT5aS0vgv6kS7otQiTiTbOjaKqDl4Z+0eBPcB9qrpLRG4QkRvgeDnfPuBm4K9FpE9ETik4Tp+qdl2VlEmrNBYa/QWfewfT1fXomeZSIFNHsCpZwb6NChxv8kcVtO9lsjHtq5rOv4y6HC4xOmgGO5mPO5qa+/f1bHS8qiBBxMlwoIIRNA5quYu6yL5U+UCNoy6/nB6acXo6KJvjE/yfyWMMtGmH42P9+4NugvF1VdW/nP7EdFNz08Rdh1M5saZ9VTWQET7dbFLb+/etquspyC3ll/HNPR/EmxJYbN+urpISsal/oRBx0rMqptoU6PCJZTIsPXHe8ddZdZlIJjht0eI591PVsr31ABNOmrMXnFRXG0czqZKjDYwxzVdNMGNHfMpiUFU6UKYTJ65ZDqZivG7hrMu7WVSVp6IjZbfLGUwnOX/h3J/3pjMcTsd5y+JXlVyvqvw6Mlwyv2RSXX4THeHkE3pYOm8+J54wj4UnzGORzOOkE+Zx0rweXjEvfNWdRxIxBuJW0CcsunJEVcZ1GWpCIvWcaLb2HodINmNf2i0WrXMEnGlfjZpqZOrTW6Q310GJWJWhUIkW5HX8z/6D3Ll/B48fOzBnD36CyjqGGjG1ZFNejha1b1NjWi6tbkUjerKq9FYwasO8TFUZq6A64ub4eEV5BQ+mYlUF9o9lKhj9ZjpCWl2enh4pObBjS3yionx0067D0UyC3lSUnYkpNsXH+U10hIenBhgLYYfkY22Ym+rm5aPHH80iImtFZFhEdpZYLyLyXRHpFZHtIvLmvHUqIj/Je90jIiMi8mC59+3KQBU0NmlroXgdN7+F019M8yWs2lTXsmHs4XC0xNQPm/4XLuMFw/gP+FPod0wM8/PDe8mW+CyNVnie1Rs4Hs2kmLLgszGBS1TQAbgnMVVhCNtm/uWMu5mKfmcu8GR07ptWR12erzI/2Jh1HnWVo5kED0z0sS8RmRF8PpyK8VKq/gEf5aoBt9pgPMpQ0q47S/gRsHKO9VcCy/zHauD2vHUxYLmILPJfvw84Vsmbdm2gqpnqufkdsETqLeWqYmPYavcnFxxq6+oohdPNTOsl1S15U9PXpvkNOtVE6uWOlLiTIZ7XY384OsVdvTtIFxlRXGnwKF5n4HhTfO6qVcaY1oiUScSsquxN2miqah3MVt6ZPZZN81KJ37Gq8mx07Hil3UolNNsxVd1MZVzghcQkv5jqZyyTYspJ11xdstB0yNJvWKW/0lT1CWCui6xrgDvVsxFYKiJn5K1/GPig/3wVFVaZt0BVEyTrmEoWtuhyp5sO4bBT0zouXq+iCc5hp/SF97Tr2EVxiEzljfjdNzk7QD2WSvDDF18gkZl5kzpVYR7AegLHo5nU7KmD9qdjTCDKzQ4YyCQqyltnZhpxq5sevSU+MaNDAbwO2qeiozVXGB+vYOqh6TxxN8vj00M8Ghls2JkbpvQb/bFpRsoUKuhwPSKyOe+xusr9zwKO5r3u85fl3AtcKyILgUuAZys5qAWqmiDl1naxnXZdMnZT1lIjya7+UDLUP4rD1KevTA+xjTINj2heAGrvVPEe1UTWYcPQ4RnLYhV23ijUXOjERlMZEx6HykzbttFU1ZtIJaqeAaDAb6ZHjk/bctTlscggx+r4XrWRzt2tkV27Ybr+fqy/60dTOaq6Iu+xpsr9pciy4x9YqrodOA9vNNX6ItsWZYGqJqi1V3hojpEFpjmssoMJ29DjbpLMOsTKXPZUUjbbtEbcn86jqgwlSv+/7Jsaw8nrsElW8Z0Yq+F8nHLSDUnEboxpjLS6jJcYsZ5VZcRG5VRtx8RwTftNuRl2JyPEsw4PTvYzWednpd2rmEZJhiRQ1R+bZjxlAdg69QHn5L0+G+gv2GYd8G0qnPYHFqhqCqfGUVF9JRIKm+aZStsXbrebbMB020oqHJnZ9kyUL4s9YgUmQiNXRWogEcWdo2ffVWXr2ODx1+kqRgHUEnAqN3rDGNN6u5KRossPp2I26a8GL07VPmp0R2KKh6YGquo0KCWSzdg1j2mIsOSJfXLoSNBN6ATrgOv96n9vA6ZUdaBgm7XALaq6o9KD9jSyhcZTbXLCnNGCHib7Gmg++x2bWm6Mk26WY+k4R9Jxxp00WZQPLz2bBSdY7L8a+yLlL7wzKFEnw5Ke+S1okZlLxu/93FlBz/6m0X7ectoZpN3qvhEnnDSvPXFxVe0aslyDxoTOQCaBq8oJMnNGyIspm/ZXLcd1idT5OVfrvUkhF4i5WZbMs1tIUx8HRVURKTZrrDViTppjcftMKkdE7gGuAE4TkT7ga8B8AFW9A28631VALxAHPll4DFXtA26t5n3tU6ZJHHXpkcpvWl3VUM3VNaZbTFZRbjmryn9GhhgvMgorrS4LbJBqVZwKP/MOpWMs71na5NaYchRIZ7Mcmp4su20i63A4OsningVVvUekymTBUFuw2ZigvP/sPbz/bPjOztOCbkpTuXgzBc7NCzynXbfuqWfdKBuSkSc5A5k4y+adEnQzTAfIqLIgwEDVb4eOlt/IoKqryqxX4MYS65YUWbYB2FDufe2uqkmSVSZUn3SqmRxhjGmUiOuQruB8dVX5ZWSwaJDKNNdRmxYdGmOpBNEypedznhw8WnXBimqrACXdbMNGCnQ7m85jGm1PQdL0XhtN1RGO2ZR80yCJACv/ZV2X3UUqGJvwsEBVk6QqrHKU02eVrbqM3RCEyUtlLp5dVX4VGWLCeoIDEXEdsnYTHQrbxgfLb+QbScU5MD1R1fETVXbyDM6RZ9D+Yiqnqty2ZzM7Mt1ZYEREzhGRX4vIHhHZJSJf8Jd/S0T2ish2EXlARJbm7fNlEekVkX0i8oHgWh9eE9n0jI6g/ala/77sbA6TiSpGohszl1iAs4l2TAzbtWXIWaCqSeJVRoj7mxyomk6n+O6uZ9k5XlvVEGM62f5k6YtnVWXD9DCjNpIqMAoMWw9uKLw4NVbd9hXkIcuXUbeqkT3HMjbarhFclLSb5WA2yVSH34SKyFoRGRaRnXmLlwCL8FJiDAF/JiIXA48Dy1X1EuBFYI0fmDoMfB54I7AS+HcRiYvIyXnvc6uIqIh09hy/MnIdQbFsJtCbUtM4KXXJNHk6oogcEpEdIrJVRDb7y77uB423ishjInJmpfuacIoE2AH87MixwN7bVMYCVU0SzVb+ZTyUSTR9zv6zI8dwVHli6IgN7zemQFyzxIqcg6rKE9MjDFdQSlutx7dq1fzGDqTbb6SHiKz0b2p7ReRLRdZfk3fRvVlE3p63TkXkJ3mve0RkREQebFX7i6m1qm2llOoqAY11eFAlCE9ERzr9OuFHeMGlfJ8E/kNVlwGP4f0pnqWqj6lqrufxOeBK//Ev/rILVPUgMI1XivsaABE5AXg30PV3Qr1+R9C+OTqETPsZbU0Ri3er6mWqusJ//S1VvURVLwMeBL5axb4mhKazwUz964tFiFWYxsAExwJVTVLpiCpVZWO09pKzlb7HnilvDm4y67Cvyh5xY7rB3uTs6X/7U1EGHBvJEwbtVtlNROYBt+Hd1F4MrPJHaOT7T+BS/6L7U8AP8tbFgOUissh//T665KY3WuGFq6tKvMpp9qaEvLhUzM2yr8jnYadQ1SeAwguva4Af+8//EzgPeLZgmz8HDqrqAeA1wBP+fuCdr88Cf+y/vgJ4GgguAUtIJDTLtJPhUDpW8zE6OmxagTD+/EHkjlTVSN7LxYTzV2OqENNgPiKfGjwSyPua6pQNVBUbIi0ifyMix/xe4K0iclXeuktE5Bl/jv8OEVnoL3+L/7pXRL4rQdaibIFEhcObX0xOk2jyhfah6CSZvBwBT9rJeZyNgjE5hwsuuhx1eSFevrqZaY20uhV/robE5UCvqh5Q1TRwLy/f1AKgqlF9eehKsYvuh4EP+s9XAfc0sb2hUWkVP8uT0jzbEpMkA+rpDsirVXVARJYAdwCp/JtiEfkKXinu53KL8IJdZ+Udox84XUReiXe+3os3pfCXIrLZcbrq9znDc/HxqkZKmvAbqWCkeZ0UeExEnheR1bmFIvINETkKfJzSI6qK7ptPRFb7I5m7+twMWhDXddF0iv6EjfBsB5WMqPoRs4dIA/yjP6TyMlVdD97UBOAu4AZVfSNej1LuivN2YDWwzH8UO2bHqCT4lFGXbYnm3wg/OzyzE37aSXM4ajfgQbLwWPik1WU878Lr+diEVRMLmcOp2nvkm6And5HrPwovhs8C8use9zHzphYAEfmIiOwFHsIbVZXvXuBav8PnEmaP8OhIExXmgztmRUiaRoGnY207+rrcuVmUiMwHfgbczcvXrojInwJXA9/N27wPOJWXv84XAxPAz4FrgbcCTwJR4L2quqKnp6e+n6qNtSCoESpDiRj3HdhFpr06V6oSb/7P9vuq+ma8Uck3isg7AVT1K6p6Dt55elM1++ZT1TWquqLbz82gpQI4R3470tfy9zS1KRuoKjFEupT3A9tVdZu/75iqZkXkDOAUVX3G7z2+E/hwrY1uB5WUu38+NkGz+5cy6haNGv964HDD3yvhZBiIW4TatK9cKe2Ik+FgHdMUTHMcCWCqwRyc3EWu/1hTsL7YqOFZkU9VfUBVfwfvO/HrBeu2401BWgWsb0yzwy9S4UieQUuw31QjTopjqVCdc5Uqd24WMwT8FNiDN3JxGLw8c8AXgQ8BB4Bz/O3XAe8AhkTkfOAUoBcvuPx14HFVG0LUjWKZNP92YBd98WnGU537GdXsGQmq2u//Oww8gDdKOd9PgT+qcV8TEq0eaZl1XfZMjrb0PU3t6slRdZOfBHatP8wZ4PWAisijIrJFRP7KX34WXu9TTtGe5ZxOGI5Z7sSL1jlfv1IHSuTXGU8lGGzwsMf7D+7hvoO7GnpMY1qpP51AVfltrPVfYmeeuYULL9zb8vdtJxPZNG77JHnu4+WbWoCz8aYGFeV3Cl1QpELYOuDbdMm0P6g8x2OQ1YI6TamzanN8oqXtCNDzwEeB9/jPl/ppLb4HnIxX/e924Pf8wNRL/n6rgUeAjYCrqkeArwDfb23zTRhkXJe79+/EsRhlXURkca6CpogsxhsIsVNEluVt9iFg1kVTqX2b32pTCxdael23fWKIbPtcR3a9WgNVtwMXAJcBA8A/+Mt7gLfjzRt+O/AREfkDKuxZPr6iA4ZjlquM9EyLhtQfypaeGvGr/kMNe5/xZIKRVLydbiKNmSWL8kJ8sulVOE1tFBhrnykkm4BlInK+iCzAmw60Ln8DEbkwl69RRN4MLAAKvxzWAreo6o4WtDkUKslZkXSzOB06NXcilSBdReXgZkpotuNuukXkHuAZ4A0i0icinwb+DPgVsAhvVNVFflqLdwI7cqku8M7jR/1tvqeq56rqG8grdKCq/6yq+1v7U5mgqSr3H9xNdEbuvM78jGqBVwNPicg2vLxwD6nqI8Dfi8hOEdmOF4D6AoCInCki68vsa0Iq1cLvmOdGSvYXmhCqKQqkqkO55yLyL3glQsHrQf6Nqo7669YDb8bLW3V23iHm7FnuBHPltkm7LmMV5uCox3gmRWqOdgwmokykErzyxEUlt6nUhsFDdR/DmDB4MdW51a46wYFUjNPnLwy6GWWpqiMiN+Hd1M4D1qrqLhG5wV9/B960hetFJAMkgD/OS66eO04fcGtrWx8sB0VVmavmSiXT/trtFjGSTvLg0ZcYTMS4eOnprDz7gqCbBMBYJs2rF4T/nKuUqq4qseoPimzbD1yV93o9RabhquonSrzXeTU10rSdx48dYKBJCZq7rQ/Yr6x5aZHlc031u2qufU14JVyHRSfMa/r7bB0bJOZYR3Q7qSlQJSJnqOqA//IjvDyk8lHgr0TkJCANvAsv6fqAiEyLyNvwksFeD/xTfU0PP0ddemT2oLXeVGvyOO1KRspu85vBw3z4tb9T1/sknAyHolN1HcOYdtdl15ENoTVcfbdTXqJiN7V+gCr3/JvAN0vsu6TIsg3AhoY2MqSS6rJISl+49mfaMndSUY7rsmHgENsnho8vS4VoVOfRTLyjAlXGNNqW0QF2To4E3Qxj2tJ01uFVPSc29T2ORKf41cChpr6HabyygSp/iPQVwGki0gd8DbhCRC7Duzc7BHwWQFUnROQ7eFMeFFivqg/5h/ocXgXBRXgltx9u5A8SRknXZcm82YGq/S0YsZFVpb+CikgHpyfJuFnm1xHJfnroaPmNTMP5lcCeAE7EO5fvV9WvicjXgWvwpn4PA59Q1X4ROQ9vusI+/xAbVfUG/1hv4eXzcz3whcKRHcaEQUKzpNwsJ7ag980EJ5rNzNnDOuo0f1RyK0TTKf61dxuZCgqwBGW4jYLDxrTasdg0GwaLFyiyiyhjymt2vsmJVJKfH7IcsO2obKCqxBDpH86x/V14U/0Kl28GllfVujaX0ixLCn7FCTdLrAWlOCez6Yq+IBXYNjbEitPPrOl9HNdll/UiBSUFvEdVo35Z7adE5GHgW6r6vwBE5PPAV4Eb/H32+3k2Ct2OlxR2I16gaiVdEEw27eloOs6FC08Ouhmmicaz6ZJTPF3VCkujh/828anho0WDVGFq+bTrlJ2KaUwzhel8KPTYsVakIwvzb8CY+kQrLKBSi1TW4Z4DO3HtHGpL9VT9M2XEipTY3pcoPx2vEaoZC/P82ED5jUrYOjbY3tUT2rnpntw80vn+Q1U1/49sMWV+ShE5AzhFVZ/xR1HdCXy4GW02phEOpztn2pcp7kiq9P/xZIeMpsq6LvumWlNYpZy5viQUmArRVERjwuJoLMJE2kYcGlOPXMfTy9WvH5x7hwq5qtx7YBfJIvfjpj1YoKqJio2cOpSOBdCSucWcDIPx6qcjqirPjXZ0TvzQE5F5IrIVb4rf46r6rL/8GyJyFK8C51fzdjlfRF4Qkd+IyDv8ZWfhFULI6fOXFXu/1SKyWUQ2O4598Jv61BonHnNSHVeJzMw0lk2TLjEd7lgF09rbwa6Jkbbp6OmU37kxjfSf/Qfn3qA9Tm9jApVs0kyjXxx5kbGUfXe1MwtUNVGsYCjjtJMhGdKbq6eH+spvVKA3Mm5R6oCpahb4EjAA/JmI/KO//Cuqeg5wN/A1EXkGLzfVN1X1TcDNwE9FRIFbcscTkR7gF8B/LfF+a1R1haqu6OmpqRaDMXVzgU2x8aCbYZqst0Q+xwOp8HX41OK50WNBN6FiAxaoMmaGY7EI43YTbEzdUk24N35q8Cj7pycaflzTWnan2UQHUzEuWngyi+fNB2BPqjXT/mpxJDZFOptlwbzKExQ/M1x9cMs0lojMA24D3gd8AviMiPyLqu72N/kp8Ahepc0PA3EAVX1eRPYDpwLnAAv87d8HTAKWjMSE2uF0nDc4qaZXijHBeSkZ5eJFr5ixbDCTIKHNz/PYbCOJGJFMmKYwzj30Y9JKehszQ9nRVMaYimTqDFTFMmn649Mcik4xmIgymU6GukCJqZyNqGqiLMojU4Mksl4i0qNz5NwImgJbqshVlXGzjHZAT1I7j8oWkdOB9wC9eCOq3g08Dnwqb7MPAbtUdRNeDivx930dsAxvcMovgHki8jZgFZAEBlv0Y3SMdv5baldPTo9ixSk7V0KzRAryUb0Q64we0qfarFqug5JoQSEYY9pBf2y6omtg+3YypjyFmtI5TKWS/NOu5/jnfVv4xdGX2DExzEgybkGqDmKBqibLoDwcGWQokyQT8q+sF8YGK77p6410xs1CUKr4S+jJ5YTyH6vz1p0BrMGbprcJL0j1S+DDIrJTRLYD7we+4G//WuAvRGQbcD8vVwK8FziMV83zj4E9gJVy7BJjyTi379lMNFSjOyqT0Cy7ElNBN8M00e7kyyORJ500U02sDtQq6WyWQ9HJObcJY/x1IN3+nVPGNMIvWzyaKoQfB8Y0VLKG4NKWsYG6R2OZcLOpfy2QVpcN0fDf9yeyDsfi05y9+JSy2+4YH2pBiwzgqOqKYitUdbuI/BXwAVX9DICIXAc8rKp/VmSXPcAmVf12boGI5I7zCuDbeKOsHgP+stE/iAlFKd0WAAAgAElEQVSnF8a8UZ9T6RRL5i8ov0PI7EpGeN2JSzhpnn2ddaKj6QRvVUVEeCFeXQdJWG/utowNhLZtc+nLxHndwiVBN8OYQA3Go4yGeIaEMe0oXkPO45ds0ETHsxFVHezm5aPcvHy0qn2ermA6gqtKfyJaa7NMY/Xh5ZjKORuopRTjOrxA1T2NaJRpH0ei7T0iSYGnotV9zpn2kUUZyCRIZB2GnFTQzambqrJlrD1nVo877Tfq0phG+2X/gSq2bseQtDGtF3Gry4MYdzJE7Tup41mgqkPV+tV4LD5NokzS1L5YBDeM8xK60yZgmYicLyILgGvxgk7VWgvcoqo7Gto6E2pZ12Uqk7v5b99zejyb5oXYhOWr6lC7k9NsTcw9Va5dHI1F2rZablLdmvKIGFOvsHyyDyWiDCdtNJUxjTZd5ffi7onwz1Qy9bNAlZnl2ZG5S2Zv7ahpf2G5/KmNqjrATcCjeFP77lPVXSJyg4jcACAirxGRPuBm4K9FpE9ETik4Tp+q3trq9neUNgyS9CemAz0DtIHvvi81zS8jQ5avoAONOimOpDvj5vD50cqLloTRSKb9R7UZU6t2P3+NCatYlfknd09aoKqVRGSliOwTkV4R+VKR9a8QkV+IyDYR2SUin8xbpyLyk7zXPSIyIiIPlntfC1SZWXZMDJccmaCqHCmTBNa0lqquV9XXq+oFqvoNf9kdqnqH/3xQVc9W1VNUdan/POKvm5VwRFU3qOrVrf0pTBD2To4df95+YbbZxrJp1k0eY9KGg3ecTvj7BBgM6bT5SuPsRzskYGhMLY7Fp6vavlM+t4ppxs8mImtFZFhEdpZYLyLyXf9mebuIvDlvXc03wyZ48SqqymZcl7EOqDzfLkRkHnAbcCVwMbBKRC4u2OxGYLeqXgpcAfyDP9MHIAYsF5FF/uv3AXOPivFZoMrMknFdXoyMFV03lkqQtrKfxnSEds9PVUxGlUcigxxOxYJuijEzpLIOiTad9pcz3AF5woypRVZdpgOqjtvI0cch9yNg5Rzrr8Qr+rMMWA3cnreu5pthE7xkFYGqA5Hx7jkjwuFyoFdVD6hqGq9a/DUF2yhwsogIsAQYB/IveB4GPug/X0WFOZEtUNWx6juFnxku/tm+raOm/RnTOO32penMyE/VeZ6LjVsuvS4Xtv/9w1UEhsN6YxpzHTuvTFcailvnR7Op6hN4N7ilXAPcqZ6NwFIROSNvfU03wyZ46SrSNmyfGG5iS0wRZwH51db6/GX5vgdchFfQawfwBdUZ/6n3AteKyELgEuDZSt7YAlWmqPFUgokiwyp7I3N9f7Qfu9w23aovFgm6CU2VRTloo6pMiLw4VXykcjtRYMRGVZku9FKHXf8GpEdENuc9Vle5f7kb5ppuhk3wnArvyFSV/iqn4JqKzHVuSpHtC//DPgBsBc4ELgO+l58PWVW3A+fhBZDXV9yoSjc03efpoaNcfe7rj7+OZdLEylQENMa0h30huGlu9sCMXYkpLlg4Kw2bMYHolIvr/akor56/MOhmmK4SfLfikViAU+WD//EbxVHVFXXsP+cNs6puF5HzqPJm2LSP/vg0WRvV2wxznZt9wDl5r8/GGzmV75PA36uX5LpXRA4CvwM8l7fNOuDbeDmsTq2kUTaiypTUG5kgk5ePaqeVAjWmYxRedHfi135cs4x28PRGEy6qyoNHXmQgPjthesZ1iVbR0RPm83Ewkwy6Cca0lKoybsmbw6CSG+bczbBN++tAloImEJuAZSJyvp8g/Vq88yzfEeAPAETk1cAbgAMF26wFblHVHZW+sY2o6lCNuMh1UX52cDdZlOlMmoSNpjKmI2Tc4JLCttrWxATvnf+aoJthusCx+DQvRsaZSCe57sJLZq4L+VTbanJipdUllnVYPK/8JeRAOsFQJslFi07hxBPm1dNEYwIzlU7ZKI5wWAfcJCL3Am8FplR1oGCbtf7yHSJyRasbaJrr4LRVnq/XzctH/WcjeIOe5qaqjojcBDwKzAPWquouEbnBX38H8HXgRyKyA2/k4xdVdbTgOH3ArdW01QJVZk79IS2lbYypXafnp8o36qSJZx1OquCm2ph6bPd7ekeSceJOhpN65h9f1wn5qfIdTEVZftLSObfJqMuT0RFcYG9qmjPmL+SyRUt5Rc+COfczJmz2T1t+qlYQkXvwpgWdJiJ9wNeA+XD8Zng9cBXQC8TxphvNUMvNsGkPE6kEqSqqA5rGUdX1FEyn9c/J3PN+4P0l9p2Vg0NVNwAbyr2vXbkbY0yX2TNZZBpvB/cW70xMcfmSiqbDN5WIrAWuBoZVdbm/7FvAfwPSwH7gk6o66a/7MvBpIAt8XlUfDaThpiKH8qr6bRo5xrvOOO/466MdFhw+ko6XDVRtio2TX/JnIJNkIDPIq+Yt4L2nvJoTpFi6GWPCJ+hRHJ377TyTqq4qs16BG0usq/lm2LQHq/bXfSxHlTEB6JaLjm7STv+nfbHOSOpcqUPpWFimbfwIWFmw7HFguapeArwIfBlARC7GywPwRn+f74uIzZ0KqUg6RTLrHH+9c2IE9f/msuoS6bBcaRHXwZmjnPiUk+ZIOl503Xg2bZUDTVsZStRWQTYcXzvGdIaXOmxksinPAlWmoew72Zhwy7hZos7s/FTV5KhpNy7Qmwo+OKeqTwDjBcseU9VchGMjXnJYgGuAe1U1paoH8aY6XN6yxpqq7Czo6U252eNTbIfisY48u/ozxZNLqypPR0eLrssZKrGvMcUEGfBJZh2bbmRMwBKOQ6RLcqual1mgyhhjusiRaIAltgu08t5jdyJyfIRLiH0KeNh/fhZwNG9dn79sFhFZLSKbRWSz4zjFNjFNtq9IT+8zw8cAeDFSfS9w+P9U4UCq+CiTQ+kYEXfuv8ORIsFyY8IoTN+ZxnSrvcVSVpiOZ4Eq09Xa4WbAmEba26VDp1PqEg9xr7iIfAVwgLtzi4psVvQTS1XXqOoKVV3R02OpJ3Na9fGecbNMpJOzlh+LR0hnsxxugxvdWn5XI5nUrOBvVpXnYxNl941krYqwaQ+9kXoSqdtFpjGNsGty7lG6pjNZoMoYY7pEVl32l7jo7oag7XRIb45F5E/xkqx/XF++8+8Dzsnb7Gygv9VtM+WVupFVYNv4EBOp2UGsTpBFmczOHBn1Qnwcp4Kb85S6YckbB4CInCMivxaRPSKyS0S+4C//mP/aFZEVedvPF5Efi8gOf58vB9d6U8pgPMrROgPFx+LBTxvvRiJyyD+/torIZn/Z10Vku7/sMRE5s8S+K0Vkn4j0isiXWtty02iO6zKSrC1PnGlvFqgKsfBcwhljOsGO8WGcEN0cttpECANVIrIS+CLwIVXNzz69DrhWRE4UkfOBZcBzQbTReKbTKfpis296d06UnpKwcaQPt6Zv8/Y4T3PT/7Kq/DY6Sm+J6YDFTIVr+p8D/IWqXgS8DbjRL2iwE/hD4ImC7T8GnKiqvwu8BfisiJzXuuaauagqTw4e5qcHdvLvh/Ywnpo7J1rWdYkVyX+TVZfpEOTFaY9Pg6Z4t6pepqq5IPG3VPUSVb0MeBD4auEOftGR24ArgYuBVf653PFuXj56/NFJdkwMd/M50NVsjoAxxnQBVWXjyLHS61vYlqBMZIO94RCRe4ArgNNEpA/4Gl6VvxOBx0UEYKOq3qCqu0TkPmA33k30jaoa3rmLHc5V5a79O0hkHa4+Zxmvf8WpgHde9c8x4iLjlq6M1wmOpRNccGKaX08Pk5qjCmAxQ06KV80/sUktq46qDgAD/vNpEdkDnKWqjwP45+aMXYDFItIDLALSQKR1LTalpLIO/35wN8PJl+P+Pz+0h0+//k3F/h9xVflx73Ym00k+et5FnLvkFcfXDcXrG8XRDd+rraSq+efYYor/ii8HelX1AICI3ItXnGR381toKpEfSPvOztPm3Dbrujw1eKTZTTIhZYEqY4xpgLBfkB6JTRF3QjaiqMWju6LZYBONq+qqIot/OMf23wC+0bwWmUo9M9xHwv/7eejoS7xi/om8+qQlDCZioZrC1mpxzfJIZLCmfYedJBdxSoNbVD9/ZNSbgGfn2Ox+vJvfAeAk4M9VddYcUBFZDawGWLBgQaObaopYs2/LrABxJJPmyaEjvPM1r521/YNHX2LSzzH3s0N7+H8u/F1OX7gYgJfqyk9l6qTAYyKiwD+r6hoAEfkGcD0wBby7yH7FCpG8tXAjOzfbw8aRPjJVdoKYzmFT/4wxpgs8MWA9UvEylciMKSaaSfNc3mhEBf7t4G5imTTbxmsL0pTTDaGvybAFzgERWQL8DPgfBaM3Cl0OZIEzgfOBvxCR1xVuZIUOWq/UKMbNowOMFuS52TzaPyPHnAL37N/FdDoFeB084dANnwiz/L6qvhlvCt+NIvJOAFX9iqqeg1d45KYi+1VUiMTOzfBLZR02jQwE3QwTIAtUGROIrrzoMAGZSCUYScXLb9jhqp2aVK9yCV1F5ON+YtjtIvJbEbk0b52KyE/yXveIyIiIPNiq9re7wop0tVp/9KVZn9iOuty9fycHpycb8h7dKKnZhv0fNYKIzMcLUt2tqj8vs/mfAI+oakZVh4GngRVl9jEB+9mhvbj+31xfbIonikwpctTlrv07SGWdsrmtTPOoar//7zDwAF5wON9PgT8qsqsVIukQGwYO15jj0XQKC1QZY0yH+83g4aCbUFSrLz8UWjaEvMKErgeBd6nqJcDXgTV562LAchFZ5L9+H1A6yZhpiuFsmr4SOaiiTvr4dMB2F0S8SIFoSEY5ipe86IfAHlX9TgW7HAHeI57FeAnY9zazjd2sUX+eMSfDhoFDRDNpfnao9H9XIuvw45e2dfW03iCJyGIROTn3HHg/sFNEluVt9iGKn3ObgGUicr6ILACuxStOYtpINJ1i12TpQiWmO1igqkPZV2tl1H5TpsMls05Foz66pdeqhXmqjid0VdU0kEvoepyq/lZVJ/yXG/F6fvM9DHzQf74KuKeJ7TUFXFW2ZKw0fTMNZ5JBNyHn94Hr8IJPW/3HVSLyEb/wwe8BD4nIo/72twFL8KoCbgL+VVW3B9JyU5Wt40PcvX9H2SBUNExTU7vj6znfq4GnRGQbXrXbh1T1EeDvRWSniGzHC159AUBEzhSR9QCq6uBNCXwU2APcp6q7gvghTO0e7z8YdBNMCNikXGOMaYhwXkluHO4LacuCMelkeGVPQxKn9ojI5rzXa3LJXn0VJXTN82m8wFS+e4Gv+tP9LgHWAu+ovcmmGjsSU6Tt7GmqQSfJBZwcdDNQ1acontsGvGlHhdtHgY81tVGmaWItCkLZp0dt/Ip9lxZZXmyqX26a4FV5r9cD65vWQNN0B6M2rd5YoMoYYzqWq8r28eHKNu6SK+qJbJrzWdyIQzmqOldOmooSugKIyLvxAlVvn7Gx6na/Atkq7KK75V5KdtNoqmA+ACbCNGrFGGOMMaFhgSpjjOlQeyZHcKys7wxT2XSr3qqihK4icgnwA+BKVR0rcpx1wLeBK4BTG99MU8rnl3v5Mb6z87SAW9K54q6DquKliDLGFNMl/UjGGDOD5ajqUGGqpGNMNwjjGbdx2HJvF4q52Va9VdmEriJyLvBz4DpVfbHEcdYCt6jqjqa21pgAuHjV/4zpSHYtbowxNbMRVaar2SWECauEk+FoLMJ5S5ayYN68qvcfScSYyqQq3r5bCgskWxSoUlVHRHIJXecBa1V1l4jc4K+/A/gq3iip7/sjSmZNJ1TVPuDWljTamACMOCnOXWCXo2Fx8/LR489tNKExxpig2JWBMcaEjKvK3ft3EvEDTa9asJCLlp7O8leezrwTTiCZdUhlHRKOw39ZeBInzZ+dHPypoSOtbnbVggiNOShui3q5iyV09QNUueefAT5TYt8lRZZtADY0tJHGBGwwneTcBQ3JG2eMMcaYDmGBKmNaLNdb2d9/ZkOOJyIr8UZczAN+oKp/X7Be/PVXAXHgE6q6xV+nwF2qep3/ugcYAJ5V1asb0kBTtd8MHD4epAIYTyd5evgoTw8fnbVtj5zAZ15/2YxgVSrrcCg6VdV7dsd4Kk+iddP/jKlJN52P463LG2dMS3XySOXO/cmMMWFhOaqMaWMiMg+4DbgSuBhYJSIXF2x2JbDMf6wGbs9bFwOWi8gi//X7AEtsFKD+2DQvjA9WvL2jLj87vHdGXrrnRwfsInIOkaxVGusGdg5ULsjf1XTWCfDdjTHGGBNGNqLKmDYlIguBLcDpwC+A+4F7ge+JyGl4eWqHgSHgTlVVEXk38CYR6QVu9A/1MPBnInId8FrAkjYH6IEje6veZyQZ56mho7zjNeeiqrwwVnmgqxvZCA5jwiOLknZdFpxgfaemuG4POnfyyCxjjCnFrgqMCbceEdmc91idty4F/L/AfcBlwErgROAlVb1EVS8DHgTeCRz1R1pdCzwF3Ax83z/OvcCXgJuAA3gB7NOb/6OZYlLZ2qalbRrtpy8W4eD0JKkaprZ1U3GiSQtUmbDrphMSGHMqL/xgTLvostPYGGMaykZUGRNus6qA5fgjpHJX9/P9B0D+XXh+htpr8IJS78Wb3tcLnAGMAIuA1+ElfnaAP23UD9AtwnA9+sDhvZxcJLF6WAXVSxy1qUbGhMqYk+KMBYvKb2iMMcaYrmAjqoxpb/3A/403xe9xvFFW/SLyDRE5Cnwcr0rYOcBZwFHgbH+/PkD85f3At4F78AJXC1v6U5iGyLgu46lkjXuHIdTWGnFLpm5MqLhBN8AYY4wxRYnIShHZJyK9IvKlIuuvEJEpEdnqP76at05F5Cd5r3tEZEREHiz3vhao6lDdc8tZnw4Ylv0sMAr8X8BbgU8A61T1K6p6DnA33kir6/GCUhcAU6o6kHcMwQtU3aKqc+anEpHVuWmIjmOjUkx7SqvdFptwa/+vJmOMncfGmHZXYeEugCdV9TL/cUve8poLd1mgypg2pqoOXm6p+4FLgAOquktEbhCRG4Cf5pbj5af6HPDf/d3PxruO6gNOV9Vb/eWnA0WH5ajqGlVdoaorenps5vAMdkXaNuy/ypiwsbPSGGOMCaHLgV5VPaCqabw0MtdUeYyHgQ/6z1fhzeApywJVxrQpETldRJaq6nrgUmAXcJuILFPVO1T1DuBDwF5VvREvqfoQsENEzgeWASf7o6umReRtIiLAf8ULaJkuYreJxnQvqypmTHjZ2WmMabK5inflUsfk9PnLCv2eiGwTkYdF5I0F6+4FrvUr1l+CNyOofKOq+AGMMeFyBvBjf0jmCcB9qvqgiPxMRN6Al/bjMHADgD/S6j5gN17C9BtVNZes53PAj/CSqj/sP4wxxhhjjDHGdK6SxbvwUsQUKoyfbwFeq6pREbkK+A+8ARHexqrbReQ8vNFU6yttlAWqjGlTqrodeFOR5X80xz7fAL5RZPlmYHlDG2jaSgfkazPGtKlWf/yIyCFgGshS5ALdH118K3AVEAc+oapb/HUK3KWq1/mve4AB4FlVvbplP4QxxhjTfH14RblyckW5jlPVSN7z9SLyfRE5TVVH8zZbh1e46wrg1Ere2AJVpsvZ3bkxxnQi+3SvQnf+st5dcBGd70q83uBleIVKbvf/hbzEsKqaoIrEsMbUpDvPT2NMOGwClvlpY47h5Tz+k/wNROQ1wJCqqohcjjfTZ6zgOGvxCnrtEJErKnljy1FljDENYNeRNbBfWse7efkoNy8vFQswpdipEbhrgDvVsxFYKiJn5K2vKTGs6S6uncnGmDaXV7jrUWAPXqqZ/MJdAB8FdorINuC7wLWqM+dqqGpfXuGuipQNVInIWhEZFpGdecv+RkSOichW/3FVwT7nikhURP4yb9lbRGSHiPSKyHf9YdWmg9gNiTGmGnYJb4wJiAKPicjzBUljc8olj60pMawxxhjTblR1vaq+XlUv8NPIkFe4C1X9nqq+UVUvVdW3qepv8/ZdUuR4GyqZKl/JiKofASuLLP9HVb3MfxQmxfpHZidjvh1YzctDqYsd0zSI3QCabhN8oNTOOmNMe+qwT6+5qhfl/L6qvhlvit+NIvLOgvVzJo/1c0SeR5WJYU1tur0qZXf/9MaYblU2R5WqPuFnaa+IiHwYOIA3hz+37AzgFFV9xn99J/BhQlpZLHez+52dpwXehv7+cwNrQzewL39jPN1+I2BMuNj5WIe5qhcBoKr9/r/DIvIAcDnwRN4mZZPHUkNi2LDJ79wJ8pq3Y9lpbIwxNasnR9VNIrLdnxr4SgARWQx8Efjbgm3PwvvSzykcQj2DiKzO9YQ5jlNHE40xxhhjTJi1suqoiCwWkZNzz4H3AzsLNlsHXC+et+ElgB0o2GYtcIuq7mh6o40JkeBHsBtjukGtgarbgQuAy/BK8v6Dv/xv8aYERgu2n3MI9awVqmtUdYWqrujpscKExpjwa/eO02BGVLX7b82Em/19maJeDTzlJ319DnhIVR8pSAy7Hm92QC/wL8B/LzxILYlhjamNfZYZY7pPTVEgVR3KPReRfwEe9F++FfioiPxvYCngikgS+BnesOmcYkOojTHGGGO6XitHGHUbVT0AXFpk+R15zxW4scT+RRPDAhsa1kjTEWxKvWkGm7JrukVNgSoROSNvCPRH8IdMq+o78rb5GyCqqt/zX0/7w6efBa4H/qmOdpsy7KvRGBN29jlljDHGGGOMKVQ2UCUi9+AlijxNRPqArwFXiMhlePcZh4DPVvBen8OrILgIL4l6KBOpG2NMN7Kgkek09jddOftdGWOMMSZMKqn6t6rI4h9WsN/fFLzeDCyvuGXGGGOMMcYY04YsAFwdEVkJ3ArMw6uk2Qdk8St5isi9wMeANJACvq+q/9PfV4G7VPU6ETkETAMX4c3uWdryH8YYU7d6qv4ZY4zpFHZFbYwJSNAfPyJyjoj8WkT2iMguEfmCv/xj/mtXRFYU7HOJiDzjr98hIguDab0Jm1xVvAtP+W3QTWkbIjIPuA24ErgYWAx8VlUvU9XcubcZeERVFwH/jBfQyokBy0Vkkf/67/BS0zzVivYbYxrPSupVoD2T1gV92WeMMcYY0xYc4C9UdYuInAw8LyKP493o/iHeTfFxItID3AVcp6rbRORUINPqRpvu0CVX9JcDvX6xA0Qkhhe0yo/2bcZLRwOwEfhowTEeBj7oP/9D4B7gHRhj2pKNqDLGmAbokgtJY0xH6u5PMFUdUNUt/vNpYA9wlqruUdV9RXZ5P7BdVbf5+4yparZ1LTamLfWIyOa8x+q8dWcBR/NeZ4DPisjzBdv9nohswwseby84/r3Atf7z/wZ8Cji3WENEZHWuHY7j1PMzGWOaxEZUGWOM6fLbVGOM8YjIecCb8KpUl/J6QEXkUeB04F5V/d9FjrUaWA2wYMGChrfVmDbj5E3jKyQFr7+Od559HXhcRPYCW4DXAl/AGzn1GeCbuR1Udbt//t6Kd14+B9wpIu9U1SfyD66qa4A1AIsXL7ZLIGNCyEZUGWOMMcaYriciS4CfAf9DVSNzbNoDvB34uP/vR0TkDwo3UtU1qrpCVVf09FjfcK3UwgjdoA84J+/1EqBfVYeBB4DL/XPyj4CrgfcC80WkMCfLOuCv8ab9TQKDeNMKjTFtxgJVxhjTANrmV9JBtL+9f2Mm7Ozvqwr2y0JE5uMFqe5W1Z+X2bwP+I2qjqpqHFgPvLnZbTSmg20ClonI+SKyFPgTYJ2ILMabartTRFYBXwQ+hFdJ/gRgrOA49wDfVNUdwELgNLxcc8aYNmPdO6ar2bW5MeGWK2bRPoUsjKmffTe1logI8ENgj6p+p4JdHgX+SkROAtLAu4B/bGITu1buO6C//6yAW2KaSVUdEbkJ79w6EVgA/BRvCt8mVX1EREaApcARwAUeU1UVkTPxglIAWeDjIvJx4BRgWFUfafGPYzpYexZZa08WqDLGGBMMuxs3xhCKj4LfB64DdojIVn/Z/8S7Yf4nvJvlh0Rkq6p+QFUnROQ7eKNAFFivqg8F0XDT+dp8wHbFVHU93ujEUutPL7G8H/+e1q8aeGlTGmiMaSkLVBljjDFNICIr8ZK6zgN+oKp/X7D+d4B/xZsy9BVV/XbeOgXuUtXr/Nc9wADwrKpe3aIfwXSJLrkPLklVn2J2MuecB0rscxdwV9MaZYwxxnQxy1FljDHGNJiIzANuA64ELgZWicjFBZuNA58Hvs1sMWC5iCzyX78PONak5prQ6fbQkTHGGGO6mQWqOpQb4EVuWyWVbqe2mlBr97+kYNrf7r+1OV0O9KrqAVVNA/cC1+RvoKrDqroJyJQ4xsN4JbgBVuEliTXGGNNVOvq70hhjirJAlTHGGFO9HhHZnPdYXbD+LOBo3us+f1k17gWuFZGFwCXAs7U3twvZvZ0xxhhjTFuyQJUxbU5EVorIPhHpFZEvFVkvIvJdf/12EXlz3joVkZ/kve4RkRERebBV7Tfdq83jCI6qrsh7rClYXyzfTVU/sqpuB87DG01VMsGs6Txtfm4YY4wxxtTFAlUBuXn56IzylsbUosI8OFcCy/zHauD2vHWWB8cAoHZr3Gh9wDl5r88G+ms4zjq8HFY27c90MPv8MaYUOzuMMd3IAlXGtLeyeXD813eqZyOwVETOyFtveXCMabxNwDIROV9EFgDX4gWdqrUWuEVVdzS0dV3Abu4qZ4FqY4wxxoSJBapMV+uAS/NK8uCU28by4DRAu/8t2Y1qY6mqA9wEPArsAe5T1V0icoOI3AAgIq8RkT7gZuCvRaRPRE4pOE6fqt7a6vYbY4wxxhhTQZqZj/vpZbaLyG9F5NK8dTWnmelp3I9gjGmCHhHZnPd6TUEunEry4My5japuF5HzsDw4xjSUqq4n75wSkbXA1cAwcIeqDorInwN/A1wEvFdVI/7mrxSRHwNvxvuuvlNV/z9gQ+t+gply09W/s/O0oJpgOpSFyY0xxpjwyUsz85PxpHUAABtBSURBVD68wQ6bRGSdqu7O2+wg8C5VnRCRK4E1wFv9dcfTzKhqgirSzNiIKmPCrVzC5kry4FSyjeXBqZPdaJkK/AhYWbBsJ/CHwBMFyz8GnKiqvwu8BfisH1A2xhhjAqdqVz7GdIGyaWZU9beqOuG/3Ih3r5mvpjQzFqgypr1VkgdnHXC9X/3vbcCUqg4UbGN5cLqdXW82nao+AYwXLNujqvuKbQ4sFpEeYBGQBiJFtjMdyO7/TKPlivhYIR9jjDEFekRkc95jdd66StLM5Ps0XmAqX01pZmzqn2k4pfhcM9N4quqISC4PzjxgbS4Pjr/+DrypR1cBvUAc+GSR4/QBlgfHmPC4H6/HagA4CfhzVR0vtqF/QbEaYMGCBS1roDHGmOazuLWpR35w2qbumxIcVV1RYl0laWa8DUXejReoevuMjWtMM2OBKmPaXGEeHH/ZHXnPFbixxL5LiizbQIB5cNpXe19KBtH69v6NNd3lQBY4E3gl8KSI/FJVDxRu6E8JXgOwePFi+7UaY4wxJlAWIOsYlaSQQUQuAX4AXKmqY0WOk0szcwVwaiVvbFP/jDHGmPD5E+ARVc2o6jDwNFCqt8t0nNbGGy26aYwxxpgiyqaZEZFzgZ8D16nqiyWOU3WaGQtUGdOmRGShiDwnIttEZJeI/K2//FsistcvEfqAiCz1l58nIgkR2eo/7sg71ltEZIdfdvS7ImKzN40J1hHgPX5uucXA24C9AbfJmKawQJkxc7EzxBgTDFV1gFyamT3Afbk0M7lUM8BX8UZJfd+/x9xc5Dh9qlpVmpm2nPpXbYnsdi6prarUEjOwRKyVafNfUwp4j6pGRWQ+8JSIPAw8DnzZz1/1TeDLwBf9ffar6mVFjnU7Xo6bjXjTCFcyOxFex2vnzwoTfiJyD96Q59NEpA/4Gl5y9X8CTgceEpGtqvoBvFLA/4pXFVCAf1XV7YE03BhjjClgOWmN6Q4VpJn5DPCZEvvWnGamLQNVxpjjuaei/sv5/kNV9bG8zTYCH53rOCJyBnCKqj7jv74T+DBdGKgypplUdVWJVQ8U2TYKfKxR792dQdg274poJftVGWOMMSZEbOqfMW1MROaJyFZgGHhcVQvLfX6KmQGn80XkBRH5jYi8w192Fl6ivJySZUdFZHWudKnjOA36KTqD2+Z3eu3demOMMaZD2Re0MaYLWaCqRjcvH51RzcCYIKhq1p/KdzZwuYgsz60Tka8ADnC3v2gAOFdV3wTcDPxURE6hirKjqrpGVVeo6oqeHhuQaYwxxhhjjDGmsSxQZRpOreun5VR1Em+u70oAEflT4Grg4/4UQVQ1lSsXqqr/f3v3H2xbXdZx/P1w+RGDjQyISlwMC8wIU9FRi7FwFEMjMccfWGJTk0RGaeqkVtMcqT+sDEdL0zvKmOUPMqSI8AdTqf0YHBAdUIEk5iKXCyriqICG1/v0x97nuj2sfc/+rr3P+j7P+n5eM2c4+8e55/M8az977/Nl7bU+Bfwv8Agme1Btn/nnOk87KuPmVQ5sp+eKyLL/Dxk9uhanXomIiEgkWqgaKb3pXFTeTpnZUTNn9DsUeBpwg5mdzuTg6c9y93s33H/b9PsfAU4Abnb324FvmtmTpmf7ezHwTwOXUyT7H9AiIvuT95WpH50ARmQ+jYeItGgUn90Zw0Fix1CDDO5o4G+mi08HMDld6GVmdhNwCHDF9IyRV7r7ucDPAOeb2R7gu8C57n7X9N/6TeBdwKFMjmmlA6kvaH12P7nzyMpJRERERERE8hvFQpVIi6anqn9sx/XHz7n/xcDFc267Gjip67astPgbn/aiEIlCwyjLm93TWa+9IiLz6flyc1qoEhFp2PdeKO9kclgzEZGtof+B0E19ERER+X5aqArO6T4lW2iJQg+xR4fegMa1ym2jvYNERMpNnofvZPfuI2pHESnW8l4RetvTlpYf61KHDqbeEB2AWkRERCQ+vWeTlpnZTjO7zsw+Y2ZXT6/7czO7wcyuNbNL1k8o1PGzp5vZjWZ2k5m9ZtjkIrIq2qNKRFZGe4+JiIiIrE7Dey49xd1nV2uvAF7r7nvM7E+B1zI5y/U+0xMMvQU4DdgFXGVml7r75/uG0J5EuWh7jYf2qBIRWYEIbyT1f+C7qS/DWO/zsr1ufXu94qQ7Ofv4L9aO0RQzO9bM/t3Mrjezz5nZy6bXP296ea+ZPb7j5x5mZneb2auGTy3SFnf/qLvvmV68EtjecbcnADe5+83ufh/wfuDMoTKOwapey0WWpT2qRqrmH80R/mAXERERWdAe4JXufo2Z/SDwKTO7Avgs8Bzg7XN+7o3AhwbK2El7Mi+vxR4mqNmBj5qZA2939x0bbv814KKOnzsGuHXm8i7giVsTcTW0B9D+tdaf1urdnyYXqhI8OYtI47qep8b23PVbJ34JGE89Esf6rOzefXTlJDm0/j+Y3P124Pbp9980s+uBY9z9CgCz+58hxsyeDdwM3DNgVGlSkxN6irvvNrMHA1eY2Q3u/gkAM/sDJovL7+n4ua7TOd2vgWZ2DnAOwMEHH7y61Cu01QsWq/r3tbAiW6XJhaqNVvHH39j+gBRZhb4vXponkXHSbOfVyrYzs+OAxwKf3M99DmNybJzTgME+9jeWbTDUH7Zj6VeL3H339L9fNrNLmHyk7xNm9ivAGcBT3TvPt7wLOHbm8nZgd8e/vwPYAXDYYYf1Wgmc9zjWwo3IaoxyoSriC1PETCJSTrMsIjJOZvYA4GLg5e7+jf3c9XXAG9397q69rWb+vfB7bUSi11eBfQvBB0z3bjwMeDpwvpmdzmSB+Gfd/d45P34VcIKZPRy4DTgL+KUhcot00cJlf6NcqBKRccnw5rXJHfNlNPRGSlpnZgcxWaR6j7t/cJO7PxF4rpn9GXA4sNfMvu3ufzV7p1XstRFB1/PDos8Zem5ZXtcDZ7O9eVbV60rvvx4CXDJdBD4QeK+7f9jMbgIOYfJRQIAr3f1cM/sh4B3u/szpGQHPAz4CbAMudPfPDRleRFZDC1VjlfbtUF0bX5AzLJBko56uziK9zPSY1h80w8n0kffNfo8eN7Ism/zV+07gene/YLP7u/uTZ352Dbh74yJVTZoJGYLjdB8Sasl/1/1m4NEd1x8/5/67gWfOXL4cuHzlwZakuawryzG/5Hu0UCVNe+GP7gT0hNKCLX8B0eKwiBTSG9swTgHOBq4zs89Mr/t9Jntv/CVwFPAvZvYZd/+5ShmlUQ899GO84qTJ93qeEJFFjOH9hRaqtkjkvRZktbStlxO9f9HztWbeHmKz10kemq8Y3NveFu7+n8zfNeSSTX52beWBZMu0/DgXGRPtITV+WqiSfUo/IqQXexGJSM9N41Zr+/b5qO2Y6U28iIiIbBUtVAXX99NENT+FNOZPQOmNucwz5se9iIhIS5Y5gHw0LS2gi5TKMtdZcq7SAbUDSD2vOOnO73vQi4iIyGIWeQ3deJ+4r7v3X2qPm1VEtoJmXkQi0UKVLEwvYIsZuk9mdrqZ3WhmN5nZazpuNzN78/T2a83s5Jnb3Mz+dubygWb2FTO7bKj8Y+Hap0o20GxKa7IszGk2ReLRXIrEVGs2tVAlkpiZbQPeAjwDOBF4oZmduOFuzwBOmH6dA/z1zG33ACeZ2aHTy6cBt21paJEGaDZFYtJsisSjuRSJqeZsaqFKtoD2LBnQE4Cb3P1md78PeD9w5ob7nAm82yeuBA43s6Nnbv8Q8PPT718IvG+rQ4s0QLMpEpNmU2QFVvxuX3MpElO12TT32IsKZrYX+BaTA7/vqRjloGmWVNz9AOA7tXMEF3HburvvBQ4Frpm5foe771i/YGbPBU5391+fXj4beKK7nzdzn8uA109Pv42Z/Svwane/2szuBn4a+CPgRcCVwMuBV7n7GfsLGGg2Z0XclgtrdF6zbbPQszkzlxBnNrNt430anMkU22qT7aLZXF6Kx8FGDcxrxu2y/poJ+5nNIO9nIf5sbibjY2Sfkcxwlm0QfjbDn/Vv+oDFzK5298fXymFmV+/du7fa7++rdt8yyLptp6zjuo2rz/u9j7tfa2bHMVnhvnzRXxxlNmcl35ahejmU7NtsP6rM5vpcQpzHU+ZtHKWHQ8myrZbcLprNTWR5HGwUva/LyrpdFlT9/Szkfwxlf4xk7z/k3wYdqs1m+IUqEdmvXcCxM5e3A7t73OdS4A3AqcCRq40o0iTNpkhMmk2ReDSXIjFVm00do0okt6uAE8zs4WZ2MHAWkyeCWZcCL56ekeFJwNfd/fYN97kQON/dr9v6yCJN0GyKxKTZFIlHcykSU7XZzLRH1Y7N7zLq399X1txDStsjd99jZucBHwG2ARe6++fM7Nzp7W9jsovlM4GbgHuBX+34d3YBb+oZI1L/ImXpI3v+PkZZs2bz+0TJ0Ufm7H1kqbd3Ts3mQqLnmydr7kWNtr4gcwn5e6z89Y2hhn1qzmb4g6mLiIiIiIiIiEgb9NE/EREREREREREJQQtVIiIiIiIiIiISghaqREREREREREQkBC1UiYiIiIiIiIhICOEWqqanNXy+mT1v+v1TzezNZvZSM6uW18z+rdbvXoSZPWjD5RdN+3aOmVmtXNGY2S+a2RHT748ys3eb2XVmdpGZba+dL7qo8zmTL/SczmpxZjV/W0NzuRotzWSmWTSzC8zslNo5+oo+n10yzOyY5zXTfGaWcTY3k2F212WfYc3p1gt31j8zeyvwYOBg4BvAIcA/Mznl4Zfc/WUDZLh241XAI4AbAdz9J7c6Qykzu8bdT55+/4fAk4H3AmcAu9z9d2vmi8LMPu/uJ06/vwi4EvgA8DTgl939tJr5ooswnzNZ0s3prBZnVvO3NTSXq9HSTGaaRTP7CnALcBRwEfA+d/903VSLizSfXbLO7JjnNdN8ZhZ9NjeTdXbXZZ9hzenWO7B2gA5PdvdHmdlBwB3A0e5+n5m9FxjqjclOJk9YfwJ8i8ng/wfwCwP9/j5mV56fw6SP90z7dk2lTBFtm/n+eHd/wfT7d5nZy2sESibCfK7bSb45ndXizGr+tobmcjVamslMs7jL3R9vZicAZwF/Z2bbgPcxWbT6n7rxNhVpPrvsJOfMjnleM81nZtFnczM7yTm767LPsOZ0i0XcrXEPgLt/B7jK3e+bXt4DfHeIAO7+LOBiYAfwaHffCXzH3W9x91uGyNDDoWb2WDN7HLDN3e+BfX0cpG9JfMzMzjezQ6ffPxvAzJ4CfL1utBSqz+e6pHM6q8WZ1fxtDc3larQ0k5lm0QHc/Qvu/sfu/hPA84EfAC6vmmwxYeazS+KZHfO8ZprPzELP5mYSz+667DOsOd1iEReq7jCzBwC4++nrV5rZQ4H7hgrh7pcAzwBONbNLmewWGtntwAXAG4C7zOxoADM7kukTsQBwHrCXyW6xzwM+aGbfBF4CnF0zWBIh5nNdwjmd1eLMav62huZyNVqayUyzeL9jlbj7te7+Wnc/vkagQqHms0vSmR3zvGaaz8zCz+Zmks7uuuwzrDndYuGOUTWPmR0GHObuX67wux8N/JS7v23o372s6e7xh7j7vbWzRGNmDwQOdPev1s6SXc35nMmQdk5ntTKzmr+tp7lcjbHPZPRZNLMHuPvdtXOsWoT57JJ9Zsc2r9Hnc4yizuZmss/uuowzrDndGmkWqgDM7JHufkPrGUplzFyD+rScSP2LlKWP7Pn7aLHmIUTqa6QspTJnL5Wp1kxZu0TPHz3fPFlzL2LMtUWSvc/KX1f2/FFkW6j6ors/rPUMpTJmrkF9Wk6k/kXK0kf2/H20WPMQIvU1UpZSmbOXylRrpqxdouePnm+erLkXMebaIsneZ+WvK3v+KMKd9c/M3jzvJuDwVjKUypi5BvVpOZH6FylLH9nz99FizUOI1NdIWUplzl4qU62ZsnaJnj96vnmy5l7EmGuLJHuflb+u7PkzCLdH1fQgZK8E/q/j5r9w9we1kKFUxsw1qE/LidS/SFn6yJ6/jxZrHkKkvkbKUipz9lKZas2UtUv0/NHzzZM19yLGXFsk2fus/HVlz59BuD2qgKuAz7r7f2+8wczWGspQKmPmGtSn5UTqX6QsfWTP30eLNQ8hUl8jZSmVOXupTLVmytolev7o+ebJmnsRY64tkux9Vv66sucPL+IeVUcA3655pP8IGUplzFyD+rScSP2LlKWP7Pn7aLHmIUTqa6QspTJnL5Wp1kxZu0TPHz3fPFlzL2LMtUWSvc/KX1f2/BkcUDvARu5+18YNbmYnt5ahVMbMNahPy4nUv0hZ+siev48Wax5CpL5GylIqc/ZSmWrNlLVL9PzR882TNfcixlxbJNn7rPx1Zc+fQbiFqjneUTsAMTKUypi5BvVpOZH6FylLH9nz99FizUOI1NdIWUplzl4qU62ZsnaJnj96vnmy5l7EmGuLJHuflb+u7PlDybJQZbUDECNDqYyZa1CflhOpf5Gy9JE9fx8t1jyESH2NlKVU5uylMtWaKWuX6Pmj55sna+5FjLm2SLL3Wfnryp4/lCwLVa+rHYAYGUplzFyD+rScSP2LlKWP7Pn7aLHmIUTqa6QspTJnL5Wp1kxZu0TPHz3fPFlzL2LMtUWSvc/KX1f2/KFEPOsfZmbAE4BjAAd2m5n5gEd+j5ChVMbMNahPy4nUv0hZ+siev48Wax5CpL5GylIqc/ZSmWrNlLVL9PzR882TNfcixlxbJNn7rPx1Zc8fXcSz/j0deCvwBeC26dXbgeOBl7r7R1vIUCpj5hrUp+VE6l+kLH1kz99HizUPIVJfI2UplTl7qUy1ZsraJXr+6PnmyZp7EWOuLZLsfVb+urLnT8HdQ30B1wPHdVz/cOD6VjK0kFl9yvcVqX+RsrSYXzXH+YrU10hZWso+5lozZc2YP3q+seVuvbZIX9n7rPzKP/aviMeoOhDY1XH9bcBBDWUolTFzDerTciL1L1KWPrLn76PFmocQqa+RspTKnL1UplozZe0SPX/0fPNkzb2IMdcWSfY+K39d2fOHF/EYVRcCV5nZ+4Fbp9cdC5wFvLOhDKUyZq5BfVpOpP5FytJH9vx9tFjzECL1NVKWUpmzl8pUa6asXaLnj55vnqy5FzHm2iLJ3mflryt7/vDCHaMKwMx+HDiTyYHJjMlq5aXu/vmWMpTKmLkG9Wk5kfoXKUsf2fP30WLNQ4jU10hZSmXOXipTrZmydomeP3q+ebLmXsSYa4ske5+Vv67s+aMLuVAlIiIiIiIiIiLtiXiMqrnM7EPKUC5j5hrUp+VE6l+kLH1kz99HizUPIVJfI2UplTl7qUy1ZsraJXr+6PnmyZp7EWOuLZLsfVb+urLnjyLcMarM7OR5NwGPaSVDqYyZa1CflhOpf5Gy9JE9fx8t1jyESH2NlKVU5uylMtWaKWuX6Pmj55sna+5FjLm2SLL3Wfnryp4/g3ALVcBVwMeZbOSNDm8oQ6mMmWtQn5YTqX+RsvSRPX8fLdY8hEh9jZSlVObspTLVmilrl+j5o+ebJ2vuRYy5tkiy91n568qeP7yIC1XXA7/h7l/YeIOZ3dpx/7FmKJUxcw3q03Ii9S9Slj6y5++jxZqHEKmvkbKUypy9VKZaM2XtEj1/9HzzZM29iDHXFkn2Pit/XdnzhxfxGFVrzM/12w1lKLVGvsw1rKE+LWONOP1bI06WPtbInb+PNdqreQhrxOnrGnGylFojb/ZSa+SpdY08WbusETv/GrHzzbNGztyLWGO8tUWyRu4+r6H8Na2RO394OuufiIiIiIiIiIiEEHGPqvsxs8uUoVzGzDWoT8uJ1L9IWfrInr+PFmseQqS+RspSKnP2UplqzZS1S/T80fPNkzX3IsZcWyTZ+6z8dWXPH02KhSrgmNoBiJGhVMbMNahPy4nUv0hZ+siev48Wax5CpL5GylIqc/ZSmWrNlLVL9PzR882TNfcixlxbJNn7rPx1Zc8fSpaFqk/XDkCMDKUyZq5BfVpOpP5FytJH9vx9tFjzECL1NVKWUpmzl8pUa6asXaLnj55vnqy5FzHm2iLJ3mflryt7/lB0jCoREREREREREQkh3B5VZvZAM3u9md1gZl+dfl0/ve7wVjKUypi5BvVpOZH6FylLH9nz99FizUOI1NdIWUplzl4qU62ZsnaJnj96vnmy5l7EmGuLJHuflb+u7PkzCLdQBfw98DXgVHc/0t2PBJ4yve4DDWUolTFzDerTciL1L1KWPrLn76PFmocQqa+RspTKnL1UplozZe0SPX/0fPNkzb2IMdcWSfY+K39d2fOHF+6jf2Z2o7v/WOltY8tQKmPmGtSn5UTqX6QsfWTP30eLNQ8hUl8jZSmVOXupTLVmytolev7o+ebJmnsRY64tkux9Vv66sufPIOIeVbeY2e+Z2UPWrzCzh5jZq4FbG8pQKmPmGtSn5UTqX6QsfWTP30eLNQ8hUl8jZSmVOXupTLVmytolev7o+ebJmnsRY64tkux9Vv66sucPL+JC1QuAI4GPm9nXzOwu4GPAEcDzG8pQKmPmGtSn5UTqX6QsfWTP30eLNQ8hUl8jZSmVOXupTLVmytolev7o+ebJmnsRY64tkux9Vv66sucPL9xH/wDM7JHAduBKd7975vrT3f3DrWQolTFzDerTciL1L1KWPrLn76PFmocQqa+RspTKnL1UplozZe0SPX/0fPNkzb2IMdcWSfY+K39d2fOH5+6hvoDfAW4E/hHYCZw5c9s1rWRoIbP6lO8rUv8iZWkxv2qO8xWpr5GytJR9zLVmypoxf/R8Y8vdem2RvrL3WfmVf+xfBxLPS4DHufvdZnYc8A9mdpy7vwmwhjKUypi5BvVpOZH6FylLH9nz99FizUOI1NdIWUplzl4qU62ZsnaJnj96vnmy5l7EmGuLJHuflb+u7PnDi7hQtc2nu865+04zO5XJhv9hhtvoETKUypi5BvVpOZH6FylLH9nz99FizUOI1NdIWUplzl4qU62ZsnaJnj96vnmy5l7EmGuLJHuflb+u7PnDi3gw9TvM7DHrF6YPgDOABwGPaihDqYyZa1CflhOpf5Gy9JE9fx8t1jyESH2NlKVU5uylMtWaKWuX6Pmj55sna+5FjLm2SLL3Wfnryp4/vHAHUzez7cAed7+j47ZT3P2/WshQKmPmGtSn5UTqX6QsfWTP30eLNQ8hUl8jZSmVOXupTLVmytolev7o+ebJmnsRY64tkux9Vv66sufPINxClYiIiIiIiIiItCniR/9ERERERERERKRBWqgSEREREREREZEQtFAlIiIiIiIiIiIhaKFKRERERERERERC0EKViIiIiIiIiIiE8P+KO7Y+iT8VUAAAAABJRU5ErkJggg==\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "import matplotlib.pyplot as plt\n", + "%matplotlib inline\n", + "from matplotlib.ticker import Formatter, FuncFormatter\n", + "import numpy as np\n", + "\n", + "pricesdf = tsdf[['avg(price)','max(volume)']]\n", + "pricesdf.columns = ['price', 'volume']\n", + "\n", + "stock_symbols = pricesdf.index.unique(level='symbol')\n", + "\n", + "class TimeseriesFormatter(Formatter):\n", + " def __init__(self, dates, fmt='%y-%m-%d'):\n", + " self.dates = dates\n", + " self.fmt = fmt\n", + "\n", + " def __call__(self, x, pos=0):\n", + " 'Return the label for time x at position pos'\n", + " ind = int(np.round(x))\n", + " if ind >= len(self.dates) or ind < 0:\n", + " return ''\n", + "\n", + " return self.dates[ind].strftime(self.fmt)\n", + "\n", + "fig, axarr = plt.subplots(1,len(stock_symbols))\n", + "for sym, ax in zip(stock_symbols, axarr):\n", + " curr_df = pricesdf.xs(sym, level='symbol')\n", + " curr_df.index = pd.to_datetime(curr_df.index).tz_localize(None)\n", + "\n", + " # xticks for one day\n", + " xticks = pd.date_range(start=curr_df.index.min(), end=curr_df.index.max(), freq='D')\n", + "\n", + " # Make sure x-axis has only date ranges for which we have data\n", + " xticks = [curr_df.index.get_loc(x, method='nearest') for x in xticks]\n", + " ax.xaxis.set_major_formatter(TimeseriesFormatter(curr_df.index))\n", + " curr_df.reset_index(inplace=True, drop=True)\n", + " ylim = (curr_df['price'].min() * 0.98, curr_df['price'].max() * 1.02)\n", + " iter_xticks = iter(xticks[1:] + [curr_df.index.max()])\n", + " \n", + " # Color map\n", + " cm = plt.get_cmap('Set3')\n", + " \n", + " # Grey bars every other date\n", + " for a in zip(iter_xticks, iter_xticks):\n", + " ax.fill_between(a, ylim[0], ylim[1], alpha=0.2, color='grey')\n", + " \n", + " # Price\n", + " ax = curr_df['price'].plot(ax=ax,\n", + " kind='area',\n", + " xticks=xticks,\n", + " ylim=ylim,\n", + " title=sym,\n", + " rot=45,\n", + " color=cm.colors[0],\n", + " figsize=[20,5])\n", + "\n", + " #Volume\n", + " curr_df['volume'].plot(ax=ax,\n", + " kind='bar',\n", + " xticks=xticks,\n", + " secondary_y=True,\n", + " color=cm.colors[1])\n", + " ax.right_ax.set_ylim(0,curr_df['volume'].max()*2)\n", + " ax.right_ax.yaxis.set_major_formatter(FuncFormatter(lambda x, p: '%0.1fM' % (x*1e-6)))\n", + " ax.right_ax.grid(False)" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAABIoAAAFHCAYAAADOX6c4AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4yLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+j8jraAAAgAElEQVR4nOzdd3iUVdr48e+Z9N4rCQkk1IRepAlIRwWxoOv6Q9hd27quZXWt66rrur66q2uvry6Lii+K4iIKSgCly1KkhpJASA+QSnomOb8/nklITwiZTMr9ua65JvPUMyM+98z93OccpbVGCCGEEEIIIYQQQgiTrRsghBBCCCGEEEIIIToHSRQJIYQQQgghhBBCCEASRUIIIYQQQgghhBDCQhJFQgghhBBCCCGEEAKQRJEQQgghhBBCCCGEsJBEkRBCCCGEEEIIIYQAJFEkhBBCCCGEEEIIISwkUSS6PaXUL5RSPymlipRSZyx/362UUpb1E5RSG5VS55VS+Uqpr5VSg+sdw1sp9bZSKlMpVayUOqiU+lUbzrVUKfXXjnnnQggh2kIplaSUKldK+ddb/rNSSiulIpVSYUqpL5RS5yyx46BSaollu0jLdoW1HvuVUmtrva6wnKP69Ts2ebNCCCEumlLqB6VUrlLKqdaypZZr//x6275iWb7E8vpwvfhQqJQqU0pVWdZPtWz/Zr3jbK0+hhDWJoki0a0ppR4EXgX+DgQDQcBdwETAUSk1Hvge+A8QCvQB9gPblFJ9LcdwBOKACGA84AX8EfgfpdQfWnsua79XIYQQ7eoUcHP1C6XUEMCl1vqPgBSM2OAH3Apk1TuGt9ba3fIYprWeW/0a+AR4sdb6u6z6boQQQrQLpVQkcDmggfn1Vh8HFtfa1h5YCCRWL9Nax9S69rtj/G44CTxb6zhFwK2WcwnR4SRRJLotpZQX8Bfgbq31Sq31eW3Yp7W+RWtdBrwILNNav2pZn6O1/hOwE3jacqhFQG9godb6lNa6Qmu9DrgX+ItSyrOV5xJCCNF1fISR/Km2GFhW6/UYYKnWukhrbbZc79d2aAuFEELYwq0YvxWWUispZPE1MFEp5WN5PQc4AGQ2c7z/xbjx8EytZXmW4z916c0V4uJJokh0Z+MBJ4xqoQaUUq7ABODzRlZ/Bsy0/D0TWKu1Lqq3zReAs+U8zZ5LCCFEl7MT8FRKDVJK2QE3AR/XW/+mpctxb5u0UAghhC3cilEV+gkwWykVVGtdKbAa+EWtbZfRBKXUvRi9D36pta6qt/o54Hql1ID2argQrSWJItGd+QPntNbm6gVKqe1KqTylVAkwGuP/gYxG9s2w7F99nAbbWI57zrK+2XMppSa315sSQgjRYaqrimYCR4G0WusWAluAJ4FTlvGLxtTb/5wlDuQppR7qkBYLIYSwGqXUJIwux59prfdgdCn7Zb3NlmF0G/MCpgBfNXGsccDfMHotnKu/XmudCbyD0WtBiA4liSLRnWUD/pa+wQBorSdorb0t6zyAKiCkkX1DMJJAWJ4bbGM5rr9lfUvnkv/XhBCi6/kI4wfAEurdEdZa52qtH9Vax2CMSfcz8FX15AUW/lprb8vjHx3VaCGEEFazGPi+VmJnOfW6n2mttwIBwJ+ANVrrkvoHsUyW8DnwmNZ6ZzPnewGjamlYezReiNaSH6+iO9sBlAHXNLG+yLLNwkbW3QhssPwdB8xVSrnV2+Z6y/F3tuJcQgghuhit9WmMQa2vBL5sZrtzwD8wJkXw7ZjWCSGE6EhKKReM3whTLDMhZwIPAMMaSeR8DDxII93OlFImjATTNq31682dU2udDbxC3YGuhbA6+5Y3EaJr0lrnKaWeAd6y3OFdBxQDQ4HqpM+jwHdKqaPAvzD+n3gQY8yh6i4EHwF3A58rpe7G6HowDXgNeFprnQ/QinNVs1NKOdd6XaW1Lm+/dy6EEKId/Qbw0VoX1a4aVUq9gBEfjmLMhvZbIEFrna2U8rBNU4UQQljRAqASGALU/u7+GXUnPwDjd8IWYHMjx3kaCAeua+V5X8aYFU21tKEQ7UUqikS3prV+EfgD8DBwBmPq4neBR4DtltLQ2RgX6gzgNDACmKS1PmE5RhkwA2M2gp+AAowL9hNa67+39ly1mvUoUFLrsdEKb10IIUQ70Fonaq13N7LKFViFMTPNSYwxK+pPkyyEEKL7WAz8S2udrLXOrH4AbwC3UKsIwzKT8gattW7kOH8C+gKZSqnCeo8GkyNorQswZmqWilXRYVTj/3aFEEIIIYQQQgghRE8jFUVCCCGEEEIIIYQQApBEkRBCCCGEEEIIIYSwkESREEIIIYQQQgghhAAkUSSEEEIIIYQQQgghLCRRJIQQQgghhBBCCCGAWlP4dVb+/v46MjLS1s0QQohOZ8+ePee01gG2boetSZwQQojGSZyQGCGEEM1pKk50+kRRZGQku3fvtnUzhBCi01FKnbZ1GzoDiRNCCNE4iRMSI4QQojlNxQnpeiaEEEIIIYSwGqWUs1Jql1Jqv1LqsFLqGcvyp5VSaUqpny2PK2vt85hSKkEpdUwpNbvW8lFKqYOWda8ppZQt3pMQQnRnnb6iSAghhBBCCNGllQHTtNaFSikHYKtSaq1l3T+11v+ovbFSajDwCyAGCAXilFL9tdaVwNvAHcBO4FtgDrAWIYQQ7UYqioQQQgghhBBWow2FlpcOloduZpdrgP/TWpdprU8BCcBYpVQI4Km13qG11sAyYIE12y6EED2RVBQJIS5JRUUFqamplJaW2rop3ZazszNhYWE4ODjYuilCCHHRJE5YX1eIE0opO2APEA28qbX+SSk1F7hHKXUrsBt4UGudC/TCqBiqlmpZVmH5u/7y+ue6A6PqiN69e1vh3Qgh2ovEiI5xsXFCEkVCiEuSmpqKh4cHkZGRyDAB7U9rTXZ2NqmpqfTp08fWzRFCiIsmccK6ukqcsHQbG66U8gZWKaViMbqRPYtRXfQs8BLwa6Cxfyi6meX1z/Ue8B7A6NGjm6tcEkLYmMQI62tLnJCuZ0KIS1JaWoqfn59c2K1EKYWfn5/cZRFCdFkSJ6yrq8UJrXUe8AMwR2udpbWu1FpXAe8DYy2bpQLhtXYLA9Ity8MaWS6E6KIkRlhfW+JEi4kipdSHSqkzSqlDtZY1OkOBUspBKfVvy0wE8Uqpx2rt84Nl1oLqfQIv8v0JITopubBbl3y+QoiuTq5j1tXZP1+lVIClkgillAswAzhqGXOo2rVA9e+N1cAvlFJOSqk+QD9gl9Y6AzivlBpnme3sVuA/HfZGhBBW0dmvYd3BxX7GrakoWooxm0B9/9RaD7c8vrUsWwg4aa2HAKOAO5VSkbX2uaXWPmcuqqVCCNHBvvrqK/7yl79c1D7p6enccMMNbTrfQw89xMaNG9u0rxBCiI4lMeKihACblFIHgP8C67XWa4AXLTeYDwBXAA8AaK0PA58BR4B1wO8sXdcAfgv8L8YA14nIjGdCiE6qK8eJFsco0lpvrpfsaXZzwE0pZQ+4AOVAQZtb10bJ2cXct2Iff5jZn8v7BXT06YUQ3cSLL77I6tWrW7292WwmNDSUlStXtul8v//977n99tuZNm1am/YXncOG+Cx2nszmiasG27opQggrkhjRelrrA8CIRpYvamaf54DnGlm+G4ht1wa2UVWV5khGAT8eP8uuUzncNSWK8VF+tm6WEKKT6Mpx4lLGKLpHKXXA0jXNx7JsJVAEZADJwD+01jm19vmXpdvZk8qK9WW+7o78nJLHntO51jqFEKITSUpKYuDAgdx2223ExsZyyy23EBcXx8SJE+nXrx+7du1i165dTJgwgREjRjBhwgSOHTsGwMsvv8yvf/1rAA4ePEhsbCzFxcUcP34cJycn/P39AViyZAl33XUXl19+Of3792fNmjUALF26lIULFzJv3jxmzZpFUlISsbHG99fKykoeeughhgwZwtChQ3n99dcB2LNnD1OmTGHUqFHMnj2bjIwMACIiIsjOziYzM7NDPz/Rvr7cl8b7W06RcOa8rZsihEBihLCOd39MZMxzcVz9+lb+/t0xfjqVzZ//c4jKKhk7W4iuRuJEQ22d9aypGQrGApVAKOADbFFKxWmtT2J0O0tTSnkAXwCLgGWNHfxSp7R0d7InOsCdA6n5F72vEKLtnvn6MEfS27eIcHCoJ0/Ni2lxu4SEBD7//HPee+89xowZw/Lly9m6dSurV6/mb3/7G8uWLWPz5s3Y29sTFxfH448/zhdffMH999/P1KlTWbVqFc899xzvvvsurq6ubNu2jZEjR9Y5R1JSEj/++COJiYlcccUVJCQkALBjxw4OHDiAr68vSUlJNdu/9957nDp1in379mFvb09OTg4VFRX8/ve/5z//+Q8BAQGsWLGCJ554gg8//BCAkSNHsm3bNq6//vr2+xBFh0rNKQbgi71pPDJnoI1bI0TnYqs4ITFCtKfk7GJeWHeUMZG+PDEmnMv7BbA7KYfffrKXVfvSuGFUWMsHEUI0IL8lOk+caFOiSGudVf23Uup9YI3l5S+BdVrrCuCMUmobMBo4qbVOs+x7Xim1HCOp1GiiqD2mtBwa5s2Px8+gtZbBsYToAfr06cOQIUMAiImJYfr06SilGDJkCElJSeTn57N48WJOnDiBUoqKigoATCYTS5cuZejQodx5551MnDgRgIyMDAIC6nZdvfHGGzGZTPTr14++ffty9OhRAGbOnImvr2+DNsXFxXHXXXdhb29can19fTl06BCHDh1i5syZgHGnICTkwliegYGBpKfLBC5dWWpuCQCr9qbx0KwB2JkkBglhaxIjRHt6b0si9iYTr908giBPZwDmxAYzpJcX/1x/nHnDQnCyt7NxK4UQF0PiRF1tShQppUIssw5A3RkKkoFpSqmPAVdgHPCKZcwib631OaWUA3A1EHdpTW/esHAvvtibSnp+Kb28Xax5KiGERWuy9dbi5ORU87fJZKp5bTKZMJvNPPnkk1xxxRWsWrWKpKQkpk6dWrP9iRMncHd3r3NRdXFxIT+/blVi/aRz9Ws3N7dG29RYolprTUxMDDt27Gh0n9LSUlxc5JrVVRWVmckuKie2lyeH0grYnnhOxsoTohZbxQmJEaK9nD1fxme7U7luZK+aJBEY/73/OHsAt364i09/SmbJxD42bKUQXZP8lqjLlnGixTGKlFKfAjuAAUqpVKXUb2hihgLgTcAdI3H0X+BflsHrnIDvLNv/DKQB719y65sxNMwbgAMpedY8jRCii8jPz6dXr16A0Re49vL77ruPzZs3k52dXTN43KBBg2rKQat9/vnnVFVVkZiYyMmTJxkwYECz55w1axbvvPMOZrMZgJycHAYMGMDZs2drLu4VFRUcPny4Zp/jx4/X9EsWXU9anlFNtHh8JJ7O9ny5N83GLRJCtIbECNFaS7efoqKyijsm922w7vJ+/ozr68sbmxIoKjPboHVCCGvpaXGixUSR1vpmrXWI1tpBax2mtf5Aa71Iaz1Eaz1Uaz2/urpIa12otV6otY7RWg/WWv/dsrxIaz3Ksn2M1vq+WlNcWsWgEA8c7BT7GxmnqKpKU1FZZc3TCyE6mYcffpjHHnuMiRMnUll54fLzwAMPcPfdd9O/f38++OADHn30Uc6cOcPkyZPZt28fWl/o/TpgwACmTJnC3Llzeeedd3B2dm7sVDVuu+02evfuzdChQxk2bBjLly/H0dGRlStX8sgjjzBs2DCGDx/O9u3bAeNCn5CQwOjRo63zIQirS7GMTxQV6M7Vw0JZdyiTQvmxIESnJzFCtMb50gqW7TjN3Nhg+ga4N1ivlOLhOQM5V1jOv7adskELhRDW0tPihKrd8M5o9OjRevfu3W3ad97rW/Fwtmf57ePqLP/7d0f55kAGGx+ciknGjhDiksTHxzNo0CBbN8Mq7rvvPubNm8eMGTNYsmQJV199NTfccIPVzrdq1Sr27t3Ls88+22BdY5+zUmqP1rrH/2K4lDjR3v69PYmnVh/mv0/MIDmnmOvf3s7fbxjKwtHhtm6aEDbTXeNEZ4oRIHGiKe0ZI979MZHn1x5l9T0Ta3ovNOa2f+/mp1PZbH14Gl6uDu1ybiG6q+4aI6Brx4kWK4q6sqFhXhxMy6eq1jSVVVWaL/akkZRdzD7pltbunv82ngc/22/rZgjRLh5//HGKi4s77Hxms5kHH3yww84n2l9KTjHODib83R0Z2dubPv5ufLE31dbNEkJYgcSInqXMXMkHW08xMdqv2SQRwP0z+nG+1My3hzKa3U4I0b115TjRpsGsu4phYd588lMySdlFNeWh+1LyyCwoBWD9kSxGRfjYsondzo/Hz5JdVG7rZgjRLoKCgpg/fz5Qty+ytSxcuNDq5xCt88WeVE6cKeShWf2xt2v9PZXU3BLCfFxrBh68bkQvXlp/nJScYsJ9Xa3VXCGEDUiM6Dm01rz740nOnC/j5RuHGwtPb4cT66EgDQrSoTALpj4GsdcRE+pJpJ8raw9lcvPY3rZtvBDCZrpynOjeFUXhXgAcqDVO0bpDGTjYKYaFe7P+SKatmtYtaa1Jzinm7PkySiusOgSVEEJY1ap9abzzYyJ3fbz3oq5nKbnFhPlcmGliwQhj0MPXNpwgM7+03dsphBDCuhLPFnLz+zt5ef1xpg0MZGK0H2gNK38N21+D0zugymw8vr4f8tNQSjE7NpjtCefIL6mw9VsQQoiL1q0TRdEB7rg42LE/1ehiprXm24OZTIr257oRvUg8W8TJs4U2bmX3ca6wnOJy4wdVam7HldgJIUR7KyitwNfNkQ1Hs7j1g12t/qKfmltCuM+FyqFwX1euG9GLz/ekMu75DVz71jbe/TGR09lF1mq6EEKIdlBmruTVuBPMfWULR9ILeP66IfzvraONitGzR+F8Blz9T3jgIPx6Hfy/L6CqAr6+F7RmTkww5irNxqNZtn4rQghx0bp1osjezkRsL8+aiqJDaQWk5ZUwd0gIMwYHAUb3M9E+knMu/PBJyS2xYUuEEOLSFJRUMCnan1d/MYJ9Kbnc9O4OzpxvviKooLSC/JKKOhVFAC/fNJy4P0zmj7MHYK7UPL/2KFP+/gNzXtnMK3HHOZpZQGefWEIIIXqa/9uVwj/jjjM7Npi4B6dw89jeFybBSdxoPPe94sIOvn1h5l8gIQ72LmNYmDfBns6sOyQ9GIQQXU+3HqMIYGiYN5/8dBpzZRXfHsrAzqSYOSgIHzdHYkI9+f5IFndOibJ1M7uF09kXqohSc6SiSAjRdeWXVODpYs/8YaF4uzhwx0e7+ds38bzyixFN7pNiue41NhZRdKAH0YEe/O6KaFJyivn+SBbfHcrk1Q0neCXuBJF+rsyODWZubAhDe3nJjJxCCGFjN4/tTXSgOxOj/RuuTNwEfv3Au96MlqN/A/Gr4bsnMEVdweyYIFbsTqG43IyrY7f/2SWE6Ea6dUURGDOflVZUcTyrkLUHM5gQ5YePmyMAMwcHsTc5l7Pny2zcyu7hdHYxSoGjnUkqikSXdP/997N58+aL2mf16tX8z//8T5vON2PGDHJzc9u0r7AerTUFpWa8XIwpjSf3D+DaEWF8fySLkvKmxytKtVz36lcU1Rfu68pvJvXhs7vGs+vxGTx3bSzhvq58sOUUC97cxsQXNvL06sPsSMzGXFnVfm9MCHHJJE70HI72psaTROYySNoKUdMarjOZYP4bgIb//I7ZMYGUVlSx+fjZOpul5BRzNLPAOg0XQthUd4kTPSBRZExf+dnuFJKyi5kTG1yzbtbgYLRG+g63k+ScYoI9nQnzdam5sy5EV5GTk8POnTuZPHlyq/cxm83Mnz+fRx99tE3nXLRoEW+99Vab9hXWU1xeSWWVxtPZoWbZvGEhFJdXEhffdLyoqSjyaf3sZgEeTtxyWQQf/eYy9vxpJi/fOIwhvbz4dFcyN7+/k7F/28AjKw+w6egZyswySYAQtiRxQgCQvBPMJRB1RePrfSKMLminNnOZisfH1YG1tbqfpeeVcO1b25nzyhYe+nw/ZwpkogMhuovuFCe6fQ1kpJ8rns72fPLTaUzKSA5VGxTiQS9vF9YfyeKmMTJ15aU6nV1Eb19XnB3sSJHBrEUHWrBgASkpKZSWlnLfffdRWVnJqVOnePHFFwFjOso9e/bw+uuv8+yzz/LJJ58QHh6Ov78/o0aN4qGHHmLlypXMmTOn5piRkZHcdNNNbNq0CYDly5cTHR3NkiVL8PX1Zd++fYwcOZIhQ4awe/du3njjDbKysrjrrrs4efIkAG+//TYTJkzg448/5rXXXqO8vJzLLruMt956Czs7O+bPn8/ll1/OE0880fEfmmhS9cDVni4XEkWX9fEj0MOJr/enM29YaKP7peaW4OZoh7erQ6PrW+Ll6sB1I8O4bmQYxeVmfjx2lnWHM/n2YAYrdqfg7mTPtIGBzIkNZkr/ANycun0IF6LdSJwQ7ebkJjDZcy54MEUFp+nt0dsY4Lq22Ovgmz9gl7GXmYOnsfZgJmXmSsyVmt/8ezdlFZUsHh/Bp7tSWHswg3um9WPesBC8XBxwd7JveDwhhNVJnKir23/LVEoxNMybrQnnuKyPLwEeTnXWzRwcxKe7kqXvcDtIzilm2sBAHO1N/JySZ+vmCFtY+yhkHmzfYwYPgbnNl2J++OGH+Pr6UlJSwpgxY9iwYQMTJ06subCvWLGCJ554gt27d/PFF1+wb98+zGYzI0eOZNSoUQBs27aNG264oc5xPT092bVrF8uWLeP+++9nzZo1ABw/fpy4uDjs7OxYunRpzfb33nsvU6ZMYdWqVVRWVlJYWEh8fDwrVqxg27ZtODg4cPfdd/PJJ59w66234uPjQ1lZGdnZ2fj5+bXjhyYuRUGpkSjyqpUosjMprh4aysc7T5NfUlFnXbXU3GLCfV3b5Qu+q6M9c4eEMHdICGXmSrYnZvPdoUy+P5LF6v3pONmbmNw/gDkxwcwYFIRXG5NTQnQ4iRMSJ7q6xI0Qfhm/3/Ioh7IP4e3kzfCA4QwLHMbC/gvxcvICFx/w6QPp+5gz9Jd8tjuVbQnn+HRXCscyC/hwyRimDgjkVxP78Ny38byw7igvrDsKgEkZNyo8nR3wcnHA08XeeK557YCns73x7OJQb509TvZ2Nv6AhLgENooRIHGivh6RGRka5sXWhHNcOSSkwbpZg4NYuj2JzcfP1emWJi5OYZmZc4XlRPi5YW9S5JdUUFBaUafrhhDW8tprr7Fq1SoAUlJSOHXqFH379mXnzp3069ePY8eOMXHiRF599VWuueYaXFyMMWTmzZtXc4yMjAwCAgLqHPfmm2+ueX7ggQdqli9cuBA7u4ZfxDZu3MiyZcsAsLOzw8vLi48++og9e/YwZswYAEpKSggMDKzZJzAwkPT0dPkB0IkUlJgBGly/5g8P5cNtp/jucCY3jg5vsF9qbkmL4xO1hZO9HVcMCOSKAYH8dUEVu0/nsu5QJt8dzmT9kSzsTYrxUX7MjglmVkwQgR7O7d4GIbo6iROiXRSdg4wDmKc+xtGU/2N8yHiC3IL4+czP/JD6A9vTt/P+zPexM9lB6AhI283E6/xxd7Lnoc8PkFNUzlPzBjN1gPHfN9LfjfdvHc2e07kknDlPQYm5ZgbNghLLc6mZrILCmtdl5ubHrnOyN9UklLwsSaULCaaGyafaySYPZ3uZTEH0WBIn6uoRiaLpg4L45mAGc4c0TASN6eOLp7M9G+KzJFF0CZItM5719nXFzhJgUnNKGBwqiaIepRXZ+vb2ww8/EBcXx44dO3B1dWXq1KmUlpZy00038dlnnzFw4ECuvfZalFLNTkHu4uJCaWndcQJqV4bU/tvNza3V7dNas3jxYp5//vlG15eWltYEGtE5XOh6VjdEDgvzIsLPla/3pzdIFGmtSckpZlxf6/6Qs7czMa6vH+P6+vHUvMEcSM1n3eFM1h3K5E9fHeLJ/xxiVG8f5sQGMzsmuNEZ2ISwKYkTDUic6EJO/gBokkMGYz5t5uqoq5kfNR+AVSdW8eftf+aDQx9wx9A7jETR4S9xKstj2sBAVu9P55bLerNkQmSDw46K8GFUhE+rmlBaUcn5UnPNTdnqpFKBJalU89qy7lxhOYlniygoNZZXNf1PHKXA3al+BZN9nWqm5hJNzg4m6TYnLo0NYgRInGhMj0gUjYrw4cc/Nj7gnIOdiYEhniTL4MuXpPrzi/C78KMkJbeYwaGetmqS6CHy8/Px8fHB1dWVo0ePsnPnTgCuu+46nnvuOSIiInjhhRcAmDRpEnfeeSePPfYYZrOZb775httvvx2AQYMGkZCQwNSpU2uOvWLFCh599FFWrFjB+PHjW2zL9OnTefvtt7n//vuprKykqKiI6dOnc8011/DAAw8QGBhITk4O58+fJyIiAq01mZmZREZGtvvnItquoKRh1zMwgvu8oaG89UMCZ8+X1enKnFdcQVF5pVUqipqilGJYuDfDwr15ePYAjmcVsu5QJusOZ/LXb+L56zfxxIR6Mjc2mDmxwUQHenRY25rz/LfxhPm4sGh8pK2bInoIiROi3SRuAmdvTjoZ1/8or6iaVQuiF7AjYwdv/fwWY4PHMjx0hLEiYx/3zRhHdKA7v50adcmJFGcHO5wd7OrEoNaqqtIUlVcnkxqvXiqol2hKOldck5QqbmbmTzBmPvZ0sa+pXmqsqulCgqluQsrLxUGqmYTNSJxoqEckilri6+rIyXOFtm5Gl5acUwRAhK8bVZYsq8x8JjrCnDlzeOeddxg6dCgDBgxg3LhxAPj4+DB48GCOHDnC2LFjARgzZgzz589n2LBhREREMHr0aLy8vAC46qqrePfdd7nttttqjl1WVsZll11GVVUVn376aYttefXVV7njjjv44IMPsLOz4+2332b8+PH89a9/ZdasWVRVVeHg4MCbb75JREQEe/bsYdy4cdjby6W4M6keo6ixrrPzhoXyxqYE1h7K4NZaiY7qAfxtVcGjlGJAsAcDgj24b0Y/TmcX8Z2l0ugf3x/nH98fJyrAjTmxwcyJCSG2l6dN7vqePV/G+1tOMjrCVxJFosNInBDtQmtjIOu+U0jINwaZ7ePVp2a1Uoonxz3JgaFG/lUAACAASURBVLMHeGTzI3w+60M8AdL3ERU9g3un97NNu2sxmRQezg54ODtA6wqY6ig3V3G+tG5SqW5l04VKp4KSCvKLy0nJKa5JRpmbKWcK93Xh/un9WTCiV03vBCE6isSJhlRzpVOdwejRo/Xu3buteo7HvjzA+iNn2P2nGVY9T3f2xKqDrDmQwf6nZqG1ZsjT33PDqDCenh9j66YJK4uPj2fQoEG2bkarFRYW4u7uTnFxMZMnT+a9995j5MiRgHGHYM2aNXh7exMZGcnu3bvx9/e3Wlvuu+8+5s+fz/Tp01vctrHPWSm1R2s92lrt6yraO068EnecV+JOkPDcXOztTA3Wz/7nZjyc7Vn52wk1y749mMHdn+zlm3snEXP6Yzj8Ffz6OzA13L+jZRWU8v1ho9Jo58kcKqs0vbxdmB1jVBqNivDpsC/l/96exFOrDxPq5cz2x1r+dy+6B4kTbSdx4tK1W4w4ewzeHAvzXuXhwiMcOHeAddeva7DZgbMHWLx2MdN6T+MfB39ABQyEX3zS/LGzE6GiGDxCwdXX6APWzWitKS6vrJNUqk405RaXs2pfGofTC+gf5M6DswYwa3CQdGPrIbpajICeESe65+2JggxY/ySM/g1EtFze5ePqSF5xOVpruSC1UXJOcU23M6UUYT4uUlEkOqU77riDI0eOUFpayuLFi2su6gAvvfQSycnJeHt7d0hbYmNjW3VR76qUUuHAMiAYqALe01q/qpT6OzAPKAcSgV9prfNq7dcbOAI8rbX+R0e3u6DEjLuTfaNJIjAGtf77d8dIyyuhl7fR1az6ehfm4wobN0HqLkjeDpGTOqzdTQnydGbR+EgWjY8kt6icuPgsvjucycc/nebDbafwd3dk5mAjaTS+rx+O9tZLbq3enw5AZkEpFZVVODTxGQthSxInRKMS4oznvleQuOVr+nr1bXSzoQFDuXv43by27zX2B8UwPHVf08dM3Q2b/wHH115YZucEniFG0sgzBDxCwDO07rNHCNg7tuObsz6lFG5O9rg52RPi1bCb9q8n9mHtoUxe+v4Yd360hz9dNYjbLm/8MxbC1npCnOieiSKl4ODn0HtcqxNF5irN+TKzzNLVRqezixka5lXzOtzXldPZRTZskRCNW758eZPrLrvsspq/k5KSrN6W6v7M3ZgZeFBrvVcp5QHsUUqtB9YDj2mtzUqpF4DHgEdq7fdPYG3Dw3UMY8bGpsPj/GGhvPT9Md79MZG/XBMLGDOeVY/BQPYJY8Ofl3eKRFFtPm6OLBwdzsLR4RSWmfnh2BnWHcpk9c9pfLorGQ9ne2YMCmJ2TDBT+gfg4th+0yyn5haz53QukX6uJGUXk5lfKoNti05J4oRoIPMQbHoeeo3C7NWLU/mnmBg6scnNr4m+htf2vcYRdx+GF6TB+SzwCKp7vO8eh1M/gosPTH0cAgbA+QwoSLc8Z0D6Pij4FswlDU/i6m8kjuonkWonmZy9u0x1ksmkuGpoCLNjgpjz6hZ2JGZLokh0Wj0hTnTPRJGrP6Cg8GyrNvdxMzLyeUUynXtbVFRWkZZXwrxhITXLwn1c2XrinFRpCdGDaa0zgAzL3+eVUvFAL63197U22wncUP1CKbUAOAnYLNOcX1KBp0vTsSDc15VF4yL4aOdpfjGmN4NDPUnJLTaSHuYyyEsGk73R/Wzui+Dk3oGtbz13J3uuHhrK1UNDKa2oZFvCOdYdymR9fBar9qXh7GBiav9A5sQGM21Q4CXHx6/3ZwBwx+QoHl91kLS8EkkUCdFDKKWcgc2AE8bvj5Va66dqrX8I+DsQoLU+p5SKBOKBY5ZNdmqt77JsOwpYCrgA3wL3aWuOpZGfBp8sBCcPuHEZqedTqaiqoK9300mMAJcAvJ28OW5v+Q6cvg8GzDH+rqqCz5dASQ7MfBZG/7r5OKE1lOYZCaSCDDhf77kgzahMKj7XcF8HV/AIBs9eDZNI1c/uwWDXeX4S2tuZGBDswaG0fFs3RYgerfNcFdqTnT24+UNhVqs293UzvvzmFJfT20++tF6s9LwSKqs0Eb4XpvgL83GhpKKSnKJy/NwvflYGIUT3YvnSPwL4qd6qXwMrLNu4YVQWzQQeauF4dwB3APTu3btd21rQQqII4A8zB/D1gQyeWn2Iz+4cT2puCVEBbpBzCnQVjFoCuz+E+K9h+M3t2j5rcHawY/qgIKYPCsJcWcVPp3JYdyjTGBD7cCYOdoqJ0f7MiQlmxuAg/NtwXV+9P53h4d6Mj/IDIC23kTvkQojuqgyYprUuVEo5AFuVUmu11jst3ZRnAsn19knUWg9v5FhvY1z/d2IkiuZgrSrU0nz45AYoOw+/XgdeYSSe3gBAtHd0k7sppejn048T5TmgTHUTRYkbjcrT696HoTe23AaljKojFx8IambsT3PZhUqkmmRSrQqllJ+M58ry+icA98ALVUkNKpQsz84dN5NxVIA7aw9mUFpRibND+1W2CiFar8VEkVLqQ+Bq4IzWOtay7GngdqC6ZOdxrfW3lgv//wIjLcdeprV+3rJPx2b/3QKh8EyrNvV2NSqKcovqXzhFa5zONsbmqJ1kq75LnJJbIokiIXo4pZQ78AVwv9a6oNbyJzC6p1WP8vkM8E/LD4lmj6m1fg94D4yBStuzvQWl5pqxh5ri5erAw7MH8OiXB/nq5zRSc4uZ2j/gQrez4f/PmEb550+6RKKoNns7ExOj/ZkY7c8z82PYl5JXM4Pao18exLTqIGMifZkTG8zsmGBCW/isABLOnCc+o4A/Xz2YEC9nANLyJFEkRE9h+c5fPcWwg+VRfe3+J/Aw8J+WjqOUCgE8tdY7LK+XAQuwRqLIXA4rFsG543DL5xBsdDVOzE8E6s541pj+Pv358sSXVPn3x5Rea5yin942qngGL2jf9to7gU+k8WiK1lCcY1Qh1enmZnnOPQ3JO6Akt+G+ju71qpJCG3Z3cw8E06UndqID3anScOpcEYNCOi5BJYS4oDUVRUuBNzAGJK3tn40MMroQcNJaD1FKuQJHlFKfaq2T6MjsPxgXqtZWFFUnioolUdQWpy2DuEbUSRRdGOB1eHjHDOQlhOh8LDcQvgA+0Vp/WWv5YoybENNr3TS4DLhBKfUi4A1UKaVKtdZvdGSbC0oqGBTi0eJ2N44O59NdyTy9+gilFVWE+bjAOUuiyL8fDL8FNv3V+OLtE2HlVluHyaQYFeHDqAgfHps7kPiM86w7nMl3hzJ55usjPPP1EYaFeTE7Npg5McH0DWi8+8Tq/RmYFFw9NARnBzsCPJykokiIHkYpZQfsAaKBN7XWPyml5gNpWuv9jdwg6KOU2gcUAH/SWm8BegGptbZJtSxrf7s/NMYQWvA2RE2rWZyYl0iIWwhuDm7N7Az9vPtRYi4hLXgU4Se3GUmacyeMQbGveMI2g1ErBW5+xiNkaNPbVZTUHSupfne309uMdVXmese3A/eguoNwe4Y27O7m2PxnF22JJYlnCyVRJISNtJgo0lpvtnQZaA0NuCml7DEqh8qBgg7N/ldzD4KcxFZt6mNJFOVIRVGbJGcX4WhvIsjDuWZZuE91RZHMfCY6h9WrV3PkyBEeffTRZrfLyMjg9ttvZ82aNRd1/CuvvJLly5df9AwHa9as4b///S/PPPPMRe3XFSjjW/8HQLzW+uVay+dgdDGborWuuUhorS+vtc3TQGFHJ4nASBR5tdD1DIwkyjPXxLLgzW2ApZLyWKIRf5w9YdhNRqJo///B1EdaOFrnp5RicKgng0M9+cPM/pw8W8h3h7NYdziTF9cd48V1x+gf5M6cmGBmxwYzOMQTpRRaa77en864vn4Eehpxope3C6l5Eh9E5yExwvq01pXAcKWUN7BKKTUUeAKY1cjmGUBvrXW2pVfCV0qpGKCxctMGVaXt0j157O3gFwX9ZtZZnJiXSJR3VIu79/fpD8BxryDCi84YiZdd74GdI4z6Vdva1FEcXIz37tfM+6yqMsZFKkhrvLtbdgKc2gJljYw15OTVcEa3/rMhfCwAfQPcUAoSzhQ23FcIG+lpceJSxii6Ryl1K7AbY1abXGAlcA3Gxd0VeEBrnaOUGk1HZf+ruVu6nmnd4mj/Hs722JkUecUVVm1Sd3U6u5jevq6YTBc+Zzcne3zdHEnJkTvGonOYP38+8+fPb3G7l19++aJmD9Bao7Xm22+/bVO7rrrqKp588kkeeeQRXF273RhpE4FFwEGl1M+WZY8Dr2EMaLrecge5ZpBSW6u8yBkwh4d7c+PoMD7bnUpvX1ej65mfZdwK797QZzLsXw5THu4yM8+0Vt8Ad3471Z3fTo0iPa+E7y3jGb2xKYHXNiYQ7uvCnJhg+gV6cOpcEXdOvjDway8fFw7LQKWiE5EY0XG01nlKqR8wfjP0AaqricKAvUqpsVrrTIxxjdBa71FKJQL9MX5DhNU6XBiQ3sg5Lr17ssmuQZKosqqSU/mnGBcyrsXdo7yjUCiOOzoyHeDkD8ZsmLE3gHtAm5rUqZhMxu8t90AIHdH0dmWFcD6z6e5uicegMBMOfgb3HQClcHawI9zHVRJFolPpaXHC1Mb93gaigOEYSaGXLMvHApVAKMaF/0GlVF9amf2vppS6Qym1Wym1++zZ1s1c1oB7IJhLoaygxU1NJoWPqwM50vWsTZJzioloZOaaMB8XUqWiSHSApKQkBg4cyG233UZsbCy33HILcXFxTJw4kX79+rFr1y6WLl3KPffcA8CSJUu49957mTBhAn379mXlypU1x/riiy+YM8cYcHLp0qVcc801zJkzhwEDBtRk6pOSkhg0aBB33303I0eOJCUlhcjISM6dM2YcWbZsGUOHDmXYsGEsWrQIgLNnz3L99dczZswYxowZw7ZtRhWKUoqpU6de9F2HrkBrvVVrrbTWQ7XWwy2Pb7XW0Vrr8FrLGiSJtNZPN9K92erOlxo3DFoazLq2P8+L4bWbRxAd6G50K/CrNcDp8FsgN8kY86EbC/V2YcnEPvzfHeP57xMzeOH6IUQHuLN0exIPf3EABzvF3NgLM2OGebuQnldKVZX1hioUoprECNtTSgVYKolQSrkAM4B9WutArXWk1joSIwk0UmudadnezrJ9X6AfcNIym+Z5pdQ4S9XqrbRibKP2klqYSnlVeasqilwdXAn3COeEucDokrXhL1BRBOM6xX2RjuPkDv7R0HcKDPsFXP4HuPLv8ItP4PaN8GC8MUNoXjJkX+gNEhXgJoki0WEkTjTUpooirXXN4D9KqfeB6lb9Elinta4AziiltgGjgS20Ivtf6/iXfhfAPch4LjwDzl4tbu7t6iiDWbeB1prknOKaWWxqC/dx5XC63DHuSV7Y9QJHc4626zEH+g7kkbEtd9tJSEjg888/57333mPMmDEsX76crVu3snr1av72t7+xYEHdQSMzMjLYunUrR48eZf78+dxwww2cOnUKHx8fnJwuDMC+a9cuDh06hKurK2PGjOGqq67C39+fY8eO8a9//Yu33nqrznEPHz7Mc889x7Zt2/D39ycnJweA++67jwceeIBJkyaRnJzM7NmziY+PB2D06NFs2bKFG29sxewnwqoKSozxFlrT9ayau5M984eFGgOEluQY4xNVGzQPvnkQvr4PRiyCQVeDb9NTKncHfu5O3DSmNzeN6U1BaQWbjp7Byd4OL9cLn2kvHxfKK6s4V1hW0x1N9Ay2ihMSI2wuBPi3JfljAj7TWjf3q2Yy8BellBnjJvRdWuscy7rfcmGCnLVYcyiLehLzjERGaxJFgDHzWV4iBA6GrIPQewKEDCOzKJOEvASCXIMIdgvG3cGdliZx6NaiZxjPiRuMpBLGgNbbErOprNLYmXrwZ9PDyG+JzhMn2pQoUkqFWDL6ANcChyx/JwPTlFIfY3Q9Gwe8orXOUEqdV0qNw5ga+Vbg9UtregvcA43nwqy6X9qb4OvqKINZt8HZwjKKyysbryjydeH7I5lUVek63dKEsIY+ffowZMgQAGJiYpg+fTpKKYYMGUJSUlKD7RcsWIDJZGLw4MFkZRm574yMDAIC6paDz5w5Ez8/IxF63XXXsXXrVhYsWEBERATjxjUsPd+4cSM33HAD/v7+APj6+gIQFxfHkSNHarYrKCjg/PnzeHh4EBgYSHp6k7lz0YEKqiuKnNsQHrMTjGe/WjHH0Q2ueQO2vAzrnzQeQbEw8GojaRQU2+26pNXm6ezANcMb9jQP8zEmPEjNK5FEkegQEiNsS2t9AGimfxJYqoqq//4CYyKExrbbDcS2Z/ta62T+SQD6erUu4d/fpz+bUjZREjIBl6yDNdVEj2x+hL1n9tZs52rviq+zL15OXng5eeHp6Nnoc/2/ney6yczCvn2MmygJcXDZnYCRKCo3V5GWW1JnZmUhrEXiRF0tfhNWSn0KTAX8lVKpwFPAVKXUcIzuY0nAnZbN3wT+hZE4UsC/LIEBOjr7X7uiqBW8XR1qpnkXrZecXT3jWcPZC8J9XKmo1GSdLyXEq+Xpk0XX15psvbXUztybTKaa1yaTCbPZ3Oz21ZNuubi4UFpaWme7+nf4ql+7uTU+Y4fWutG7glVVVezYsQMXl4b/L5SWlja6XHS8/JKL73pWo3rGs9pdzwBirjUeuafh6DdwdA38+AL8+D/gHWFUHQ282hjEsx2mFe4KenkbX/rTcksY2dvHxq0RHclWcUJihGgPCXkJRgWQY+MzPNbXz6cfVbqKk1GXE1NphgFXkVmUyd4ze7lpwE2MDh5NVlEWmUWZ5Jblkl+WT0F5AemF6TV/V+rKJo/vbOeMp6Mnnk6W5JGjl/G3Y72Ek1PdhJO7gzsm1dYRSKwkegbs+xgqSsHB2ejODSScPS+Joh5Efkt0njjRmlnPbm5k8QdNbFsILGxiXcdm/92qK4palyjydXNkX0qeFRvU/WitOZxujAHV2AU83FJllJJTIoki0SX079+/wR2D9evXk5OTg4uLC1999RUffvhhs8eYPn061157LQ888AB+fn7k5OTg6+vLrFmzeOONN/jjH/8IwM8//8zw4cMBOH78OLGxNrk5KuopsCSKLqbrWY3sBDDZg09E4+t9ImD83caj8Cwc+9ZIGu16D3a8YcStgVfCwHnGINi2mDq5g/SyVBSl5cmEB6LrkBghTuadJMqrdd3OoNbMZ84uxFz/PgDrT68HYNHgRUR4NhEvLLTWFFUUkV+eX5M4yi+78HdBWUHNuvyyfFILU8nPNtaVmJu+vpqUyUgw1UokeTpeSDDVr1yqTkB5OnriaGel2BQ13YiHyTsg6gqiAiyJojOFTBsYZJ1zCtHOulOcuJRZzzo3Fx/jC3thVsvbAj5ujuQVlzeZwROGcnMV/03KYUP8GTYczeJ0djHuTvY13QhqC7csS8kpZmwf345uqhAXzc3NjaioKBISEoiONqpCJk2axKJFi0hISOCXv/wlo0ePbrT8tFpMTAxPPPEEU6ZMwc7OjhEjRrB06VJee+01fve73zF06FDMZjOTJ0/mnXfeAWDTpk08//zzHfEWRQsKmhrMOmUXeIUZ0/g2JfsE+PQBu1YkmdwDYNRi41FaAAnrIf5rOLgS9iwFJ0/oN8uoNoqeYQwG2o24O9nj5eJAWq4kikTXITGiZ6usquRk/knGBI9p9T5h7mG42LtwPPd4zbLvk75ngM+AFpNEYFQeuDu64+7oTi/3i5swuryyvEFiqfrv/PL8miRTQVkB+aX5pBSk1LzWTc85hIu9S6NJpJrn2kmmWuvcHNya/40VOQnsHI1xiqKuwNvVEX93RxnQWnQp3SlOdN9Ekclk3J1tZUWRj6sDFZWawjIzHq2cFrmnyC0qZ9OxM2w4eobNx85yvsyMo72JCVF+3DapDzMHB+Nk37C7RKi3JVEkM58JK4uMjOTQoUM1r5cuXdrouiVLljRYD1BYeOFLyD333MPSpUv561//CkBgYCBvvPFGs+cD6lzwFy9ezOLFi+us9/f3Z8WKFQ3anpWVRUlJSU2faGFbNV3Pao9RVFEKy64xkkB3/NB0pc+5hFaNideAsyfEXm88Kkrh1I9G0ujYt3BoJdg5QdQ0Y0yj/nPBreHkAV1RL2+ZGVN0DIkRoj2kF6ZTVlnW6oGsAexMdkR5RXEi1+ianFmUyc9nf+b3I35vrWbWcLRzxN/FH38X/4var0pXUVhRaCSXygrqJpkaqWxKKkiioKyAvLI8yquaHu/VTtnVJJHqJJYsVUwTQicwvPc4SNgIs4x9ogLcJVEkOoTEiYa6b6IIjAGti1qbKDK++OcVV/T4RJHWmoQzhWw4eoYN8VnsOZ1LlQZ/dyeuHBLCtEGBTIr2x82p+X8+zg52+Ls7klVQ2ux2QnQm1157LdnZ2R12vuTkZF566aUOO59oXkGJGZMyKl5qpOyEimI4cxg2vwjT/tRwx6pKyDkJ/WZcWgMcnKH/bONRaTbOHb/G6KJ2fK0xxXLEBMu4RlcZVU5dVC8fF05nF9m6GUJcFIkRPVdivjHjWWsHsq7W37c/m5I3obUm7nQcALMiZrV7+9pL7W5peFzcvqXm0gaJpYKygkYrm7JLszmZf5KC8gLOl59nY/JGVkZNh7inoCAdPEOJDnRnzYEM6fEhupTuEie6ZaIopzSHDw5+wJVunsS0tuuZJVGUU1ReM7ZOT1JurmLXqRw2HM1iQ/wZknOMu7yDQzy554popg0KYmgvr4uevczTxaFmumkhuorbbrsNMO4aVN85sJYxY1pfwi6sr6C0Ak8Xh7pfSBM3gsnBSMxseRkGzIVeo+rumJ8ClWV1Zzy7VHb2Ril+5CSY8zxk7DcqjY6ugbUPG4/QEZYZ1OZBwID2O3cH6OXtwvaEc/IDQHQ5EiN6poQ8Y2bLi6koAujn3Y8vT3xJdmk23yV9xwCfAUR6RVqhhbbnbO+Ms70zQW4XN6bQ3376G18nfg1jZxiJosSNMOL/ER3oTn5JBecKywnw6CYzvIkeoTvEiW6ZKCozl7HsyDKiXfoTk9XKiiI3S6KouOmSye4mp6icH46dYUP8GTYfv9ClbGKUH3dM7su0gYE13cfaysvFoaYrhxBCdHb5JRV41q8qTdwIvcfBvFeNsYq+uhvu+NGo/ql2zvgB0aauZ62hFIQONx7TnzTOd/Rro9po47PGw7+/JWl0NYSONPbpxMJ8XCgqryS/pAJv1+47cLcQousrrijmq4SviPSMxMPx4spsqge03pK6pcO6nXU1vdx7UVhRSIFPOJ7uwZAQV5MoAmNAa0kUCdGxumWiyNXBqAgqdHQxxiiqqjLGLGqGr1t117PumyjSWnPiTKExEHV8FnuTjS5lAR5OXDU0hGkDA5nUzx9Xx/b7Z+Hp7EBuN/5MhUEqAqyrespNYX0FJRV1ZzwrPAOZB2H6n8HFG+a/Dp9cDz88DzOfubBdtiVR1J4VRc3xj4ZJDxiPgnQ4+o1RbbTtVdj6Mnj2MiqgBs2D3hOM6qROpnoShNTcEkkU9QASJ6xL4oR1/WP3P0guSOaD2Y1O/Nysfj5GXHjvwHtA5+52ZishbiEApBdl4Bk93YhpVZUXEkVnCxkf1T3G5xONkxhhfRcbJzrfN8d24ObgBkCRgzPoSijJAbfmB3LzcTV+GOQUda/ql+ouZXHxWWw4mkVKjjHDTEyoJ/dM68f0gYEMaUOXstbycnEgScag6NacnZ3Jzs7Gz89PLvBWoLUmOzsbZ2fnljcWl6yg1IynS63QmLjJeI6aZjz3mwEjb4Xtr0H/ORAx3liefQKcvFqMNVbhGQpjbzcexTlw/Duje9reZcZUwy6+Rne5gVdD1BXgcGmVou2ll7dxUyctr4TYXl42bo2wJokT1iVxwrp+SPmBz49/zq9if3VRM55V83H2IcAlgNTCVPr79O+23c4uRai7MaNoemE6A6Omwc+fQNpegsNG4+ZoR6IMaN2tSYywvrbEiW6ZKLI32eNs50xR9R3UwjMtfnn3dHbApLpHRVF2YRk/HDvLhqNZbD5+jsIyM072JiZG+3PXlCimDQwkxKtjfihI17PuLywsjNTUVM6ePWvrpnRbzs7OhIV13UGLu5KCkgoCPWpNRZ+40Ui0BA+7sGzWc5C0FT5fDHduBo9gOHfCqPKx9RccV18YfrPxKC+ChA1G0ujoGuOLt4MbRE+HQfOh/yxwtl2Cppeloigtt8RmbRAdQ+KE9UmcsI5zJed4avtTDPAZwD3D72nzcfr59ONsyVmpJmpCdaIooygDouYCChLWo8LHEBUoM591dxIjOsbFxolumSgCo/tZUXV3s8IsCBrc7PYmk8Lb1ZGcouYTRfEZBXy5N5XH5g6yWhXOxaruUhYXbwxEvTc5F60h0MOJecNCmDYwiEnR/rg4NpzCvt1VmgENdkaFlpeLAwUlFVRV6U7zeYn25eDgQJ8+fWzdDCHaRX7trmdaG4miqCvqdl929oSbPoH/nQ6f3QqL10B2ojHodGfi6AaD5xuPygpI2mIZDPsbiF9tDNDdZ7IxptGAq8Dj4gYfvVQ+rg64ONiRKomibk/ihOiKtNY8vf1pCssL+WDWBzjatb2LbH+f/mxP386sSEkUNcbHyQdnO2fSCtOMGx4RE+HgSpj6GNEB7uw42XEzSImOJzGic+q2iSJ3B3cKq/MSha0c0Nq15fF01h7K5P0tp5gxKIjL+tqur2y5uYqfTmUb4w3V6lIW28uTe6f1Y/qgQGJDrdelrEmr7zE+70VfAuDpYk+VhqJyMx71B4gVooupqtJ8fSAdgGuG97Jxa4Q1VM96BkDWYSg6A1HTG24YNBiueRNW/grWPAAFqUZFUWdl52B0n4uaBle+BGm7L8ygtuYBWPMHCL/MSBoNvBp8rf+FTSlFLx8X0vKKrX4uIYS4WKsSVvFj6o88OvZRon0u7fp+y6BbGOg7kD5e8mO4MUopQt1DySjMMBYM+4XxmyJtD1GB3ny5O0GeEQAAIABJREFUL43CMjPuTt32p6sQnU63/b/NzcGNYqqMF4VZrdrH182R3BbGKCqwdKP66uf0Dk8UZReWsenYWTbEZ7HlxIUuZZOi/fntlGimDQwk2MvG/dNP/gBl54078UrV3JnPL6mQRJHo0g6l5fPU6sPsOZ2Lh5M984eFSj/qbqbMXElpRRWezpbQmLjReI66ovEdYq+D9L2w/XXjtV8nThTVZjJB+FjjMfMvcOaIMXva0a/h+z8Zj6BYYyDsgVdDUIzVutT18nYhLU8qioQQnc/U8KncM/webh548yUfK9gtmKv6XtUOreq+QtxDjIoigMHXwLcPwf5PiY78IwCJZwoZFu5twxYK0bN060RRUWUZ2LsYd4RbwdvVkZSc5u9sVo9h9M2BdJ6ePxgne+t159JaczyruktZFvtS8tAagjydmDcslBmDApkQ1UFdylrjfCact9wJKEjj/7N33uFxVXf6/5xpmiKNRr2694obYAzYgCmmhZAQSCCBbLIhJJC+2fx2Cem72UASsmkkIVkICQ4JECAkQACDbcDGxr1gy5Zc1SWrTZWmnN8f585oRsWSjbrO53nmGenMvddHtnXLe97v+yWzNEUoKs0axrlpNGdJKBzle/94l7VbTpDltLF6dj7rDtbT4GsnP0MHh44l2oIRgM7Ss4p1kDdHhUX3xupvQc1uOLpRtacfbQihhKCCeXDJ16D5WGcHtfX/o7q7ZU1WgtGc66H0vD67iJ4JJVkO9lS2DNjxNBqNZqDItmfz6XM+PdzTGDeUuErY37hffWN3q86d+55m1rKvA7C3qlULRRrNEDKmhaL6QD2k5/e79CzbaWP3ydPfsLYGw1hMgrZQhPVlDVw1r3AgppugPRJly5Em1h2oY93B+kR2w4KSTL6wegarZxcwv8Q9Mp0M1bs6v24og8xS3IaLKP4AptGMNp7fXc0f3z7Bx5ZP4t+umsXuky2sO1jP0Qb/GQtFvvYIlc0BZhe6B2m2mvdCW0g5Rt0OK3QE4PhmOPdfT7+T2QI3P6Y6jeWfPgtvVJA1GS64W7189VD2gnIbbfk1bP45uPJh9jVKNJq8Eizvra19aZaD5kCYQEcEp23M3pJoNBqNpg+K0otoaW8hEA7gtDph4Ydh39NManqLEo+TDYca+OjyScM9TY1m3DBm78pcVhf+sN8QivpXeuZxWWkJhJFS9irEtATDLJucxeE6H8/tqhoQoajR187rB+tZd6CeNw434O+IYreqkrK7L1UlZQXuUeBcqEkSihoPwfTViawP3flMM1o5ZQTc/+c1c3DYzEzJdQFwpNF/xuWn//vqIX6/6Tjv3Hs5mU5dijnSiJcWu+1WOLEJou0q06cvHFkqT2GskZ4PSz+uXqFWOPyKchrteRK2Pwppmapz2uzrYPrlkJbexwG7U+Lp7Hw2oyBjQKev0Wg0mtFDSbrKfqz2VatMqGmXgSsPsecJLpn1NZ7dWUVHJIbNMnCuVo1G0ztjWijyhX2QXgpNR/q1T7bTRkc0hr8j2mtYWmswzJwiN7ML3azdekIFn55h9o6UkrI6L+sO1PPqgTp2GSVlhW47NywuSZSU2a0jpKSsv1TvUqUX/kZoOAh0lnC0aaFIM0rxhSKYTQK7Vd2YlHgc2Cwmjjb6z/hYbxxupCMa4/Wyet6/WIdhjzTigrbbYYWDr4PZBpNWDPOsRgj2TFhwk3qFQyqP7sDzynG090mw2NVN/ezrYNbVqmtNPyjNUkJRZYsWijQajWY8U+QqAqDabwhFZgss+BC881suv+4+Ht8SZduxJlZMzx3mmWo044MxLRQFwgHw5MOJzf3aJ8upLPTN/o7ehaKAap18w6JiHt10jJf21nLzuRP6PHZ7JMrb8ZKyA/WJ8M6FpZl8cfVMVs/JZ17xCC0p6y81u2DyxdB6EhoOASRcE9pRpBmtxLtsxH83TSbBlBwXRxp8Z3ScRl87B2u9ALxyoE4LRSOQtlA8o8gCtXugcCHYnMM8qxGI1Q6z1qhXNKKusQf/rkrUyl4AYVYC25z3qYyJzN7/r5d41N9vvMxao9FoNOOTZEdRgoW3wNu/ZEVoIzZzKa+X1WuhSKMZIsa0UBSKhoi48rAEmiAaVu2BT0OWyxCKAh1MyO7+cCClpDUYxuOwsmiCh0k5Tp7dVdWrUNToa+e1g/WJLmWBRElZHp+7bDqXjpaSsv7grVNB1sWLwOpQK81Aus2CEJ3ZHxrNaMMb6t6OdUqui0P13jM6zuaKUwDMLXKzoayB9kh0UMPwNWdOSulZW40KeD4LvB1eGoINTM2cOpDTG5mYLTDlYvVa8z9QvbNTNHrxq+pVvEQJRzaXch5Z7DB9NeTNIj8jDatZUK07n2k0Gs24JseRg9VkpdqfJBQVnQN5c0h790nOm/Jd1pc1cK9uHqfRDAljWigC8DsyyUSqcih30Wn3yXYpIanJyCTpSqAjSiQmyXRYEUJww6ISfvbaYWpbQxRm2pFScrDWy7oDdbx6oJ7dlaqkrCjTzo2LS7h8TgEXTMsZfSVl/SGeT1S0CBCw4/fgb8TkysVtt2pHkWbU4msPk2FPPVVOzXPx6oE6wtEYVnP/auU3VTSSYbfwhctn8Ok/bGfLkSZWzswbjClrzpJE6ZndAm3VMOOKszrOD7f9kOfKn+OHq37I5ZMuH8gpjmyEgJIl6rX6G9B4WC0aHPw7bH1YZT7F2bMIPr0Bk0lQlOmgSjuKNBqNZlxjEiaK04tTHUVCwDm3wKvf4voLQnztdR+VzQFKs7TbV6MZbMasUJRuVaGaAXsmmaACrfsQijxG6VlLoGdRo8V4iPAY5VTvX1TMT9cd5ievHsJqNvHawc6SsnNKM/nS5aqkbG7RKC8p6w/VuwABRQshYtzwNxwE10VkOrRQpBm9xEvPkpmS6yISk1Q2BxPh1n2xqeIU50/JYdXMPOxWE68eqNNC0QijLRTGZjFhj/kh7IeM018zemNrzVaiMspXN3yVH1/yYy6deOkAz3SUkDsDLv6yegHEYhDtgK2/gVfug7p3oWAuJR5H4tqp0Wg0mvFLkauIGl9N6uCc98Gr3+KStENAMevLdPczjWYoGLOx8U6rUpp9acZDnK++z32yDaGoN0dRqyEgxQOap+alc05pJk+8c5Kntlcyt9jNDz64gK3/uZrn7rmIz6+ewbzizLEvEoFyFOVMh7QMyJutxhrKAHA7LDrMWjNq8YUipHdzFCkhur85RZXNAY6fCrDCcBRePCOPV9+tQ0o54PPVnD1twUhn2RmAu/iMj1EfqKfSV8lnzvkMc3Lm8OUNX2Zj5cYBnukoxWRS+UaLbgWTBXavBaAkSzuKNBqNRqNyiqp8VamDnkkgzORHaynNcrC+rGF4JqfRjDP6FIqEEP8nhKgXQuxLGvuWEKJKCLHLeF1jjN+WNLZLCBETQiwyPlsvhChL+ix/8H6spNIzm+qogr9vocjtsCKEyijqiZagGs902BJjP/vIEh77xHns/MYVPHz7Mm45dyL5YyV36Eyo3qXyiQDcJWBLh0Yj0Fo7ijSjGG97hIwunQ2nGi6i/nY+22TkE11oBDBeMbeA6tYQ+6vbBnCmmjMl2BFNEevagmEVZO01bO9nIRTtqN8BwMrSlfzqil8xwzODL73+JZ469BSt7a0DMu9RjysXZq6B3X+GaIRij4M6b4iOSGy4Z6bRaDSaYaTIVcSp0ClCkVDnoNkCmaWI5mNcMiuPTRWNtEeiwzdJjWac0B9H0aPAmh7GH5RSLjJeLwBIKR+PjwEfA45JKXcl7XNb0j59KzfvgXjpmd9iiDq+uj73MZsEHoe1V6Eo7oqJO4oAJuY4WTkzb2zmDvUXX716sCoyhCIhVMlBw0FAC0Wa0Y2vhzDrLJeNLKeVioZ+CkXljeSm25hZoM5Ll83ORwh45d2+z0uaweGt8kaWfPeVFLGuLRTG7bCqfCI4q9KznXU7cVgczMqehdvm5uErH2Z61nS+vfnbrPrzKj7+0sd5ZN8jHGk5Mr4dZYtuVQs4Feso9TiQEmpbQ33vp9FoNJoxS3G6WqCp8XcpP8uaBC3HuWRmPoGOKO8cbR6G2Wk044s+hSIp5Uag6SyO/RHgT2ex34AQLz3zywikuftVegbqAbDZ30tGUSA1o0hjUG1ogXFHEajys4ZOR1G87bRGM9rwhiLdwqxB5RQdbey79ExKyaaKU1wwLTdRhpqbnsbSiVm8ekALRcPFnCI3HdEYL+ztvBltC4ZTS8+ShKKvv/l17nvrPur8p/8321m/k4V5C7Ga1HUiMy2TP137Jx6/5nE+ueCT+MN+frz9x9zw3A1c89dr+MHWH7C5ejPh6DgT02dcCc5c2PU4JVnK+VvZEhjmSWk0Go1mOEkIRV1zijyToPk4K6bnYDObWF82qH4DjUbDe8soukcIsccoTcvq4fNb6C4UPWKUnd0nThPcI4S4UwixTQixraHh7OpQE46isB/S8/vlKALIctp6dRS19uAo0tDZ8axwYedY7kzlMgq16q5nmlFLJBojGI52cxSByik60g9HUUWDn3pvOyum5aSMXz63gP3VbTrEd5jIdtlYMS2HF/bWJJw9rcGwOr97q8GZo/J0gGgsyt+P/J1ny5/lumeu45e7fkkg3F3U8HX4KGsuY0n+kpRxkzCxMG8hn1v8OZ68/kleuekV7lt+H1M9U3ny0JPc+cqdXPzni/ny+i/zXPlznAqeGvy/gOHGbIWFN0PZi0xIU78D1S3aUaTRjFWEEHYhxFYhxG4hxH4hxLe7fP5vQggphMhNGvsPIUS5EV1xVdL4UiHEXuOzn57umUIzuih2KaGo2l+d+kHWZPDX46Sd86dms/6QzinSaAabsxWKHgKmAYuAGuBHyR8KIc4HAlLKfUnDt0kpFwAXG6+P9XZwKeVvpJTLpJTL8vLOritQIqMo7If0glRHUdV22PNkj/tlOW29hlm3BMNYzQKnbRyXmfVE9S7ImQF2d+dYPNC68TBuh5WOSIxQWNcTa0YX/nb1f7YnoWhKrot6bzu+9tO75TZVNAJw4bRcOPQyPPUJkJIr5hYAsE67ioaNq+cXcexUgHdrVPlZWyiC22FRpWcZnflEjcFGojLKJ+d/kksmXMJDux/i+meup7y5POV4exr2EJMxFucvPu2fW+gq5OZZN/OL1b/gjQ+/wc8v+zlXT7ma3fW7+fpbX+fSv1zKbS/cxm/2/IayprKxW6K26FaIdlBU9QKADrTWaMY27cBlUspzUM8Pa4QQywGEEBOAK4AT8Y2FEHOBDwPzUBEYvxRCxG/AHwLuBGYYr54iMjSjkDxnHhZhodrXg1AE0HKCVTPzKK/3UdemFxc0msHkrIQiKWWdlDIqpYwBDwPnddnkw3RxE0kpq4x3L7C2h30GlETpWcJRZAhFh1+FR66F5+6GWHfhIsvZe0ZRfLVZL1x0oWZXatkZQN4s9d5QlnBgaVeRZrThbVf/Z7t2PQOYlmcEWvfhKtpUfooSj4MJ2Q7Y+RjsexraqpmWl87UXJfOKRpGrppXgNkkeHFvLVLKpNKzanB3lp3VBdS/0ZKCJTyw6gH+cPUfCEaC/GrPr1KOt6N+B2ZhZmHeQvqLw+Jg1YRVfPOCb/Lqh17lL9f9hc8u+ixSSn6282fc9PxNXPn0lXzv7e+xsXJjasDnaKdwARQuwLrnCfIz0qjSpWcazZhFKuL12lbjFVfBHwT+Pel7gBuAJ6SU7VLKo0A5cJ4QoghwSyk3S6WiPwa8f0h+CM2gYzFZKHAVdHcUeSap9+bjzC5UC9P9cXVrNJqz56yEIuMkHedGILkjmgn4EPBE0pglbiUVQliB65L3GQysJitp5jQlFLkMoWj/M/CnD4MwQbQdWo532y/bZaM5EO5xBbc1YASdajrxNUBbVWeQdRzPJDDboOFg4u+sTQtFmlFG3C2U0aOjSJW3HjlNTlE0Jtl85BQrpuUgAI5vVh/UqdPf3ZdO58bFJQM6Z03/yUlPY/nUbF7YW0OgI0okJo3Ss5qUjme1/loACpzKBbYofxE3zbyJV46/krLquaN+B7OyZyUcrWeKEII5OXO465y7WHvtWl6/+XW+s+I7zMuZx98q/sbd6+5m5Z9X8rnXPsdTh56iPjAGMhrOuRWqd3B+er0uw9RoxjhCCLMQYhdQD7wipdwihHgfUCWl3N1l8xLgZNL3lcZYifF11/Guf9Z7jrHQDA/F6cUp19ZwNMwfG7fTZhLQcpxJOcoMcKJJC0Wa0cPRRj+bK0ZXtECfQpEQ4k/AZmCWEKJSCPFJ4H6jNngPcCnwpaRdVgKVUsojSWNpwD+N7XcBVSgn0qDisro6HUXtrarko2Qp3PyY2sAIW04my2WjIxIj0NHdbdQaDOPRQlEnUsKJTerrro4is0WVozUe0o4izajFZ4Sw9+QompTjRIjTr2jtr26lNRjmwum5cKoCAqoMLS4UfXBpKR9YUjrwE9f0m6vnF3Gk0c/WY6pngycN8DeklJ7FHUWFrsLE2K1zbkUgWHtgLaBuZPc27O2WT/ReyHXkcuOMG/nJpT/hjQ+/wa8u/xXvn/5+DjUd4tubv83qJ1dz8/M388tdv2R/435ichS2l19wEwCXmXfp0jONZoxjVCMsAkpR7qCFwL3AN3rYvCf7vjzNeNc/6z3HWGiGhyJXUYpQ9PDeh/nBnl/weoYHmo9RlGnHahYcP6VdqJrRw7ef388d/7eVY42jR+Ds/vTTBSnlR3oY/t1ptl8PLO8y5geWnunk3isuqwt/xA8ZU9TA1Evhlj8qNxFAYxnMSi1rzjI6mjUHOnB1cRG0BDvIS08b9HmPOILN6iH3VAWcKlevJuP7Dh+YLKlB1nHyZkL1Ti0UaUYtXsNR1FNGkd1qpsTj4OhpTvjP7arGahZcPCMXDv1ZDVocUDuohkrNGbBmfiHfeG4fT2xV0Rh50mjymVR6VuuvxW6247Z15rAVugq5cvKVPH34ae465y6OtB4hFA31mU90tqSZ07iw5EIuLLmQ/zjvP6hoqWB95Xo2Vm7k13t+zUO7HyLXkcvK0pWsKl3F8qLliRLsEY0rD8xpFFr9VNeEiMUkJpMu79ZoxjJSyhYhxHpUedkUYLcR61AK7BBCnIdyCk1I2q0UqDbGS3sY14wRStJLqA/UE46GOdp2lIf3Km9Bgysbmo9jMZsozXJqoUgzamiPRNlypImOaIzv/eNdfnvHucM9pX7Rp1A0mnFZXfg7/DDneohFlMXdYgOcqhytsQdHkdMGQLM/TGmXXm6twTAz8jOGYObDQIcfmo50CkGnkr4ONnVuJ0yQOQFypsOE5ZAzDUqXpQZZx8mbDfufxWNVD9ttIS0UaUYXcUdRRg+OIjA6n/VSetYeifLXHZVcMbeAnPQ0OPE2OLJh4nKo2z9oc9acGbnpaZw/JYd1B1QZV07MsAW7Ux1Fha7Cbvl0d8y9gxePvsgz5c8k3DxLCgbOUdQbQgimZ01netZ0/nXBv9IcaubNqjfZULmBl4+9zF8P/xWbyca5ReeyqnQVq0pXJVoOjziEAEcWuaYAHdEYjb528t324Z6VRqMZYIQQeUDYEIkcwOXAD6SU+UnbHAOWSSkbhRB/A9YKIX4MFKNCq7dKKaNCCK8RhL0FuB342VD/PJrBo8hVhERS7a/mm299kwxrBqFoiHqTPREbMjHbyXFdeqYZJew43kIwHOWCqTm8eqCe18vquXRWft87DjNjXyiK+MGeCUs/nvph3qxeS88AmnoItG4JhBPumFFJpAOajyU5gso7nULeLosxGUVKDJpzvXrPma5EoazJYOmnqyp3JiDxBI4BKuNJoxlN+BKOop5/76fmuth+rAkpZTcR4ZV362gOhLnl3Ilq4PgmmHgBFMyDQy9BOAhWx6DOX9M/rllQyOYjSiDyRI3ywIzUjKJ4PlEy83LnsSR/CY8feJzpnulMzJhIriO323aDTZY9i+unXc/1064nHAuzs24nGyo3sKFyA/+95b/57y3/zYysGQnRaEHuAsymEdS905FFplCCa1VLUAtFGs3YpAj4vdG5zAT8RUr59942llLuF0L8BXgXiAB3SynjuRCfAR4FHMCLxkszRihJV5FTD7zzAPtO7eP+lffz692/pjHkh+Z3QUom5zjZcaK5x/svjWak8VZ5I2aT4Be3LeGmhzbx3eff5cJpudgsZ9uAfmgY80JRQ6CXALvcmbDvKZWzk3SCiTuKWroIRdGYxBuKjHyhKBaF1pOppWJxUajlBCRnWDiylfgzdZV6z56mBKHsqZCW/t7nYnQ+S/ceAVy0Bk/fRlyjGWmcLqMIYGqeC39HlHpvOwVdHm7//M5JSjwOLpqeC95aaD4K534SPBPV72H9ASgZfPeJphdq98EbP4TLv8VV8wv5xt/2IyVktBsB0V26np1X2HOjztvn3s4X13+RKl8VN0y7YQgmfnqsJivnFZ3HeUXn8dVzv8qx1mNsqNzAxsqNPLrvUX6797d40jxcXHIxqyasYkXxCjJsw+yUdWThingBJRQtnpjVxw4ajWa0IaXcA5y2NldKObnL9/8F/FcP220D5g/k/DQjh6J0df3dULmBS0ovYc3kNTx9+Gnq230q8iLQxMQcF95QhOZAmGxjkV+jGam8Ud7Iogkesl027rt+Lv/yyDs88tZRPr1q2nBP7bSMbaHI4uJ4pHtnM0AJRaFW1Q0to3OlOH6yafKnCkXxjl0jQiiSEnx1SWVihijUVKHKx6JJc7elK+GneAks+FCnOyh7KjizB3eeOdNBmLCcOozLtlSXnmlGHd72CEKA09qz+2JKrupudaTBnyIUnWwK8GZ5I5+/bAZmk4ATRreziReAw3gIrtuvhaLhRMZUJ8zZ15G/4CbOnZzN1qNNONvrweoEuweAaCxKQ6ChR0cRwCUTLqE0vZRKX+WQlJ2dKZMzJzM5czJ3zLuDto42NlVtUsJR1UaeP/I8FmFhacFSVpau5JIJlzDRPXHoJ+nIwt50DEAHWms0Gs04p9BZiEmYcFqc3Lv8XoQQ5Dvy2X6qTG3QcoxJ2Sqm6vgpvxaKNCOa1kCYvZUt3HPZDAAunZXP5XPy+em6w9y4uGREu6jHtlBkc+Hr6KV1dd5M9d54KEUoynRYsZgE9d72lM3jQcwe5xAKRYGmTgEoWRRqOqIU9ThmmxJ+sqfBjCs7y8RypkN6QYpjakixpIEzF/wNuB1WHWatGXX4QhHSbZZew3Wn5inn3ZFGHxdMy0mMP7ldde790DIjb/PE2yrEuugcEGawuhKdzzTDRP4csNiheicsuImPr5hMKBzFFqxTpbfGebMx2EhURlM6niVjNpm5Y94dfH/r9zm3YGSHE7ptbtZMWcOaKWuIxqLsadzD+pMqEPuBbQ/wwLYHmOyerErUJqxiUf4irKYhuOY5sjC37yLDbqGqRQtFGo1GM56xmq3cOvtWlhYsTVx785x5NIR9qu1d8zEm56vnuBNNAe1C1YxoNh9pJCZRjW0Mvn7tXK58cCO/eL2cb98wcs2RY1sosrgIRHpJxM9VZVE0lsGUixPDZpOgMNNOdZeb1ZbBchS1+5JCpCtSs4O6hkh7JirxZ9IKo0zMEIMyS2Ek5U0kY3VAOEimFoo0oxBfe7jXIGuAIrcdu9XEwRpvYiwakzy17SQXTc+lNMvoOnV8kwp9Nxvnj4K5uvPZcGO2QuECJRQB1ywo4poFRfC773YLsgZ6FYoAbpl1CxeVXERpRmmv24w0zCYzi/MXszh/MV9a+iUqvZVsrNzIxsqNrD24lt+/+3sybBlcVHwRKyes5KLii/AYLqsBx5kFwWZKPA7tKNJoNBoNXzvvaynf5znyCMsIrSYTnubjlM5yIgQca9SdzzQjmzfLG3HZzCxynoLjZTDpAibnurhgWg5bjjb1fYBhZGwLRTYXwUiQaCzaPbjTXazKsnoItO7pZvU9OYoi7Z0h0qcqUkUhb03qthnFSgCa+76kMrF4iPQotFZanRD2a0eRZlTiDUXITYtA+asw/fJun5tMguVTc/jD28cJhqN8/do57DrZQnVriHuvnas2CrUp99DKr3buWDBflT11yUjTDDHFi2Hn4yrbLX6N8Farjo4Gtf5agF5Lz0B1IRtNIlFPlGaUcuucW7l1zq34w37ern47kW304rEXMQkTi/IWsWqCCsSemjl14AJEHVkQDjA508wx7SjSaDQaTRfynHkA1Kdn42k5jt1qptBt153PNCOet8pPsXxqDtYXvgQ1u+GrFWCxsbA0k1+83kCwI4rDNjINH2NbKLKo/BB/xI/b1qV9uxCQO0OVnnWhJMvB5opTKWOtfTmKYlEVFt1UkSoGnSpX4dLJIdLOHCX+TL3UcAUlhUjbXGf/A49EkhxFJ5u06q8ZXfjaI6yRb8Iffwqf36l+R7vwq48u5WevHebXG46wvqyeAredbJeNy+cabS8rt6rf/4md4gMF82D7I9BWpRyBmuGheAls/Q00Hob82Uq489aesaNorOGyulg9aTWrJ60mJmPsb9yfEI0e3P4gD25/kJL0kkQXtWWFy7CZ38NChpHbNS0jzFvH2/vYWKPRaDTjjXynuqdqzChkZrPKn52U4+TEKf1soRm5VDYHONro587FLnjjTUDCiU0w9RIWlnqISXi3ppWlkwY5N/gsGdNCUbpN5YcEwoHuQhGo8rNjb3QbLvU4qGsLEY7GsJpV27pWowtapqPLzfDuP8MbP1IdjbqGSOdMU+UmC2/pzA0aihDpkYTNBeEgbpc1EQiu0YwWvKEI+aY29U3tvh6FIrvVzFevms21C4r5f3/dw57KVj550RTSLMbqwPHNKpeoNCm/pnCBeq/br4Wi4aTYaMBTvUMJRYFT6jyeJBTV+muxm+09X0PGASZhYkHeAhbkLeCexfdQ669NlKg9ffhp1h5ci9PiZEXxClaWruTi0ovJdeT2feBkDKFosrNrgfjZAAAgAElEQVQdbyhCWyiM2z4CGkdoNBqNZkQQv67Up2dD/TEAJmW7WHewvs99YzHZa9akRjOYvFXeCMBquRmQ6nmg7CVDKMoEYPdJLRQNC06rygfxdfigJ6NO7gzY8wS0eyGtsz1wSZaDmITa1hATstUxenQURTrgn/+hHELLP9PZXj5nOqTn65ISUI4if4POKNKMSnztEbJMRnB8/buqJLQX5ha7eeazF7LuQB0rpic9KJ94WwlDSecY8o2ytNq9MPOqQZi5pl/kzlCifvVOWHSrcniBCrM2qAvUUegqHLgyq1FOoauQm2fdzM2zbiYYCfJO7TusP7meDZUbePXEqwgEC3IXsLJ0JasmrGJW1qy+/+4MoajEHgIsVDUHcRdpoUij0Wg0ijyHKj1rsLugtRJiUSbmOGn0teNvj+BK6/5I2xoI85s3Kvj9puN8euVUPrd6xlBPWzPOeeNwI/kZaeSdeEHd+2eWwqEXYc33KXDbKXCnsbeqdbin2StjWihKLj3rkbx4oPXhlDbVJR4lDlU2BxNCUUsgjMNqxmYxde5f/opagb7hlzBrzcD/AGOBpNIzf0eUSDSGxWzqez+NZgTgC0XwOA2hqG5/n9ubTYIr5yWVKEXaoWobLPtE6oZ2N3gm6c5nw43JrDrRGYHWtBmZce6SxCa1/trT5hONZxwWBytLV7KydCVSSsqay9hwcgMbKjfw810/5+e7fk6Bs4CVpSu5Zso1LCtc1suBlFBUaA0CGVQ1B5lTND4dXJrRyYGaNtYdqOOuVdP0PY5GMwjYLcrZ22CxQiwMbdVMzlHPeSeaAinXDF97hP978ygPv3EEX3uEqbkufvTKIabnp3P1gqLe/giNZkCJxSSbKk5xwxQQ5W/Dpf+pzCWHX4aGMsifzYISD7srW4Z7qr0ypq9m8dIzf0cvQlGi81lqTlFJlgMgpU1vazDcPch611pw5cH01QMz4bGI1QnhAJkOpUm2hSLDPCGNpv/42iNkSKOjWf2BMz9A9U6IhFLzieIULuiX+DSaEUJMEEK8LoQ4IITYL4T4gjH+gBDioBBijxDiGSGExxi/QgixXQix13i/bNAnWbxYObuiYRVkDeBOdRQVuLRQ1BdCCGZnz+bT53yatdeu5fWbX+c7K77DgtwF/OPIP/iXf/4L33jrG7R1tHXf2RCKcs0qa6JKB1prRhl/fuckP3z5EJ/7007C0VjfO2g0mjMmz5FHg5Dqm+ZjTMpRi/nHT6U+593+uy38+JVDLJ+aw4tfuJgXvnAxSyZ6+PJfdvNudQ/XII1mEDhQ20aTv4P327cBEubdCDMNY0nZCwCcU5rJkQY/3tDIrLoZ00KR06JOIL06irKngMmiVL0kijLtACmdz1qC4dSyM38jHHpJ5Q+ZtUW+VwxHkdv4u9PlZ5rRQiwm8bVHSI8ZQlFTBYTP8AH2wPNgssLkiwE40nqEJw89qT4rmK/C7s/0mKOLCPAVKeUcYDlwtxBiLvAKMF9KuRA4BPyHsX0jcL2UcgFwB/CHQZ9h8WIl5tUfgLZqECZwqdDMaCxKQ6BBO4rOglxHLjfOuJEHL32QjR/eyKcWfIrnKp7jxudu5M2qN1M3NoSi9JgPm8WkhSLNqKO2NYTNYuLFfbXc/fgOOiJaLNJoBpo8Zx71sZD6puU4ExNCUWegdXm9jx0nWvh/V8/m4duXMbvQTZrFzK8+tpRMh5VPPbaNRp9umqAZfOL5RHNOvQoFC1TcQWYJFC5UGgKwwMgp2lc1MgXMMS0UJRxF4V6EIrNVhdN2cRTZrWbyMtKoauk88bR2FYr2PgWxCJzzkQGf95jC6oSOQOLvTgdaa0YL/g7lfnNGvWCxq85lXUTl0xKLwf5nlOPQCLB/cNuDfGfzdwiEA6rzmYyp7KMxipSyRkq5w/jaCxwASqSUL0sp4/bCt4FSY5udUkrD1sN+wC6ESBvUSSYHWrfVQHohmJUDsjHYSFRGx1XHs8EgzZzG55d8nseveZwMawafefUzPPDOA0hprAzb0sFkwRRqpsTjSFmk0WhGAzVtIc6fks23rp/Ly+/W8dnHt9MeiQ73tDSaMUW+M5/Gjja1oNN8HLfdSpbTyvGkrsov7K1BCHj/opLUfTPs/Ob2pTT62vnsH7WYqxl87lgxmb99bBK2mm0w/8bOD2ZdDSe3gr+RhaUeAPaM0PKzMS0UJTKKehOKAHJndhOKAHWzmlx6FugiFO1eqxTBwvkDNt8xSbz0zK4evLSjSDNa8LUrHcMeae3sWHYmos7Jt1U48vybAGgINPBGleqyWOWr6jx3jPHyszhCiMnAYmBLl48+AbzYwy4fBHZKKXtc+hNC3CmE2CaE2NbQ0HD2E8ueCvZMVSborU4pO6sN1AJooWiAmJ87nz9f/2dumXULj737GPe/c78Si4RQrqJgc7drb18crG2jNaCvK5rhpbY1SKHbzscvnMJ3b5jHqwfq+dbfzu7cfrIpwM4TzQM8Q41m9JPryKU+2IB0l0LzMQAm5bhSSs9e2FvDsklZFBrVIcksLPVw/00L2Xa8iS1HTw3VtDXjlDSLmYWtr6tv5nURipBw+GWyXTZKsxzsGaGB1mNbKLL2UyhqOqLyKZIoyUpd1UzJKKrbDzW7VZcczemxOgBJpk0p91oo0owWfKEIILGFW6FkqXIVnYmos+9psDiMCwI8f+R5olKtMJ/0ngTPZOWkqB37gdZCiHTgaeCLUsq2pPF7UeVpj3fZfh7wA+DTvR1TSvkbKeUyKeWyvLy89zI55Sqq3qkcRckdz/x1ALr0bABJM6dx7/n38tE5H+WPB/7Ig9sfVGKRIRQVe+z9FopiMcmHfrWZj/3fFu3e0Awb4WiMem97IrbgYxdM5oq5BWw52nRWx/u3J3dzz9qdAzlFjWZMkO/MJxKL0JJVCi3HAZiU40yUnpXX+zhY6+Xa0wRW37CohHVfuYSLZ7yH+waNpr/sfwaKFqlFyThFi9S9ZplaI11YmsneSi0UDTlWsxWbyYYv7Ot9o7xZqoSs6UjKcKnHQXVLiFhMWeNbgh2djqJda1W20YIPDdbUxw5WVT+caVHuDC0UaUYL3vYI6QQxySi4ctW5or+OomgE9j8LM6+CtHSklDxz+Bmme6YDUOmtBJNJtcoc453PhBBWlEj0uJTyr0njdwDXAbfJRA0SCCFKgWeA26WUFUMyyeLFSgRsPQnu4sRwXUAJRdpRNLAIIfj3c/+dW2bdwiP7H+FnO3+GdHgMR5GTBm87oXDfws+JpgDeUIQ9la18/4WDQzBzjaY79d52pITCTEdibGK2k5qWEEmntn5xsinAlqNN1HvPfF+NZqyT51DiTkNGATQbQlG2k+qWIB2RWKLs7LSdzWJRpnQchkjHUExZM55pPgZV21PdRKAWKGdeBRWvQaSdhaUeTjQFaPaPvP+TY1ooAuUqCoQDvW+QO1O999D5rCMao9GnblhD4Rgep009AO75C8y4Sj08ak6PVd04uS1KIGoboanuGk1XfKEIHmG4ER1ZhqjTT6Ho2EYINML8DwKwq2EXx9qOcfvc28mwZihHEcDKr8LFXx6E2Y8MhBAC+B1wQEr546TxNcDXgPdJKQNJ4x7gH8B/SCnfGsy5NYWa+Oexf9ISalFCUSwCHb4UoajWX4vdrFryagYWIQT/ef5/ctPMm3h478O8nGZRQpHRdbSmNdTnMQ7WqqD5FdNyeHTTMf6xp2ZQ56zR9ERtq3LAFXk6S12KPQ6C4SgtZ1gW+fSOSgDCUakX1jSaLuQ5DaHI5QFfLYSDTMpxEZNQ2RzgH3tqOHdSNgXuLmVnNbvhjR/BHz8IP5gMv1mlXMQazWDy7nPqfd77u38282p1z3nsTRaWqEDrvSOw/GxcCEWnLz2bod67hNSWeNTNamVLMBHA7HZYoWId+Ot12Vl/MRxFdtmBzWLSNz6aUYOvPYIHo+NZXCjy1UKgH+UE+54GWwbMuAKAZw4/g9Pi5KrJV1GaUUqlTz0MMPNKmH75IP0EI4ILgY8Blwkhdhmva4CfAxnAK8bYr4zt7wGmA/clbZ8/GBOraKng3zb8GweaDkDxks4PMlIdRQWuApTepRloTMLE18//OgJBuVlAsIVi42G7ph/lZ2W1XoSAh25byuKJHr729B6ONZ7meq/RDAJxUbMoKROlON499wzytmIxydM7KrGa1flGd2bSaFKJO4rqnSoAmOObmGR0PnvtYD1ldV6uWdDFAbztEfj1Klj3HWithAU3wQd/1/n8p9EMFufdCR97FrImA3AqeIr6QL36bOoqFU9x6CXmG53PRmKg9bgQik5bepaWAe6SbuUf8VXN6pZgQtzwOKwqpVyYYMaVgzbnMYXhKCIcwG23nnXXMyklD/zzIAdrR2b7QM3YwxsKJzmKsqFgrvq6r5yiSDsceB7mXAdWB4FwgJeOvcSaKWtwWp1KKPJWDu7kRwhSyjellEJKuVBKuch4vSClnC6lnJA0dpex/feklK6k8UVSyvrBmFu8nKzWXwuZpeA0HKLJYdb+WgqduuxsMDGbzLisLrxmMwSbyc9QD9j13r4fksvq2piY7STTaeXnty7BYhZ89vEd/Spb02gGitq4UOTuLD0r9vTfGRfnnWNNnGwKJro1NXhHXhmCRjOcxB1Fje4CsHtg1+NMNISi375xtHvZ2ZZfw9+/qBbtvloBd2+B6x5UYpHRjVajGTSsDph2KRUtFXxz0ze54qkr+NgLH1NlxVYHTL0Eyl7CnWZhaq6LPSMwp6hPoUgI8X9CiHohxL6ksW8JIaq6rBAjhLgtaWyXECImhFhkfLZUCLFXCFEuhPipGKIl2j5Lz0CFzb77HFTtSAzFL/JVzUFaDHEj02EFbw2kF4DFNmhzHlMkCUWZDgttwcjpt++FdQfq+cXrFWyu0F0KNEODNxTBgyEyO7Igf576uq+coorXINSaKDv757F/EowEuXG6qlEuzSilyldFNKYfZoeTeEB1rb+2M9Aa1MKBQdxRpBlcMmwZeE0m6PCS51S3JQ39EIoO1nqZVZABKBfwj28+h3dr2vjrjqpBna9Gk0x1SwiH1YzbYUmMxe8hq8/AUfT0jkpcNjO3LZ8EaEeRRtOVNHMabpub+lCTyok98HfyzEGcNjO1bSHOnZxUdvbWT+HFf4fZ18Etf9RxIZohZ1/jPu5edzfvf+79vHDkBeblzKPaX82RViMXedYaaD0B9QdYUJo5akvPHgXW9DD+YPIKMYCU8vH4GKrc4JiUcpex/UPAncAM49XTMQecPh1FAKu/ocSf5+5JhJu57VYy7BaqWoKJ1rsepyEUZZwmJE2Tik11nlNCkfWsSs86IjG+9493mZ6fzkeNGyiNZrDxtUfwiCShKKNQvfflKNr7lNpu6iUAPFv+LJPdkzkn7xwAJmRMIBwLd9pPNcOCzWwjx55DbaBWDUw8H8xpifN7NBalIdCgO54NARm2DLzG0pEbH2kWE/Xe0zsxQuEoxxr9zC7MSIxdNruApz9zAR85b8JgTlejSaG2LUiRx55SoprjsmEzm/otFAU6Irywt5ZrFhQxKVs5JPojlmo04418Zz4NwQZYfBtE2xH7n2ai8TuT6Hb25k/glftUiPCHHgVLWmL/cCzMnw/+mUjs7BauNZr+cqLthBKLFt3Nyze9zA9W/gCAt2veVhvMuEq9H3qRhaUealpDfd77DDV9CkVSyo3A2fT4/AjwJwAhRBHgllJuNrrbPAb0kOw08PTLUWTPVFbE+v3w5oOJ4RKPo7ujqK0mJexU0wcJR1EQ91kKRY9uOsqxUwG+fu0crOYxXy2pGSH4QhHyzUlh1kIoV9HpHEWhVtXucu4NYLZyvO04O+p3cOOMGxMPEaXppQCdOUWaYaPIVaQcRQAX3AN3rgebuuFsDDYSlVHd8WwISLem40U57ESwhXx3Wp8PyeX1PmISZhWmBo0vnZStM6U0Q0pNayglnwjAZBIUeexU97P07J/7a/G1R/jg0lIyHVYsJqEdRRpND+Q58pRQVLQICubDzseZlONUZWfzC6F6F6z7thKJPvBbMFtT9r9/6/18b8v32FKzZZh+As144crJV/LyTS9z1zl3kWXPoji9mIkZE9lcvVlt4C5S/48P/ZOF8ZyikyPLVfRenrrvEULsMUrTsnr4/BYMoQgoAZKfiiqNsR4RQtwphNgmhNjW0NDwHqbYT0cRqPKz+TfBxgcSnY1KsxzKUZTIKLKBt1o5CzT9wwizJhw8K0dRo6+dn60r57LZ+Vwya1AybUctFQ0+2iO6fGmw8LVHyLUEwJbeWWpaMBfqD0As1vNOb/0Uwn5Y9gkAdtSpctbVE1cnNpmQodwOic5nmmGj0FXYKRRZHZ05VJBwGmmhaPBx29z4pLG6G2wmLz2tz4yieMezWUmOIo1mOKhtDVGYlE8UpzjT0W9H0dPbqyjNcnDe5GxMJkFOuk0LRRpND+Q582gINKjFu0W3QfUO7pzdztfWzCbfZYHnv6AyB6/7CZgtKfv+pewvPFH2BB+f93EuLLlwmH4CzXjBYrKQZk5LGVtetJx3at8hHDOeh2eugZNbmZ8ZJsNuYe3WE8Mw0945W6HoIWAasAioAX6U/KEQ4nwgIKWM5xr1tLwnezu4lPI3UsplUspleXl5ZzlFRZ9dz5K5+gdgd8Pf7oFYNOEoag10IARkmDuUY0CXnvWflIwiK22hMxOKfvRyGcFwlHuvnTMIkxu9tIXCXP2TN3hiqxYbBgtve4QcU0C5ieLkz1XtLFt7OJF7a+HtX6psoiJVZlbeUk6aOS3hIgIlPFiERQtFI4BCVyE1/hoVLNiFOn8dgC49GwIybBl4o8ZDsRFo3ZdQVFbbhs1iYrIRZKrRDAeRaIy6tu6OIkA5ivohFFW3BHmropEPLCnFZFK3y7npaTT6dJi1RtOVuKMoJmOw8GYwWVja9AJ3rZoG7zwMNbvg6v8Bhydlv3dq3+H7W77PRSUX8cUlXxym2WvGO8uLlxOIBNjXaEgks9YAEsfxddx96XReO1g/ovJ4z0ooklLWSSmjUsoY8DBwXpdNPkynmwiUg6g06ftSoPps/uwzJd2aTjAS7F9wrCsXrr4fqrbD7j9RkuXA2x6hsjlIRpoFk89YedalZ/2ni6OoLRgmFutVI0xhf3UrT7xzkjtWTGZaXvogTnL0cbIpQEc0xlHdCnrQ8IUiZJn8qTcbBUagdV0P5WcbH4BoB1x6b2KooqWCqZlTMZvMiTGLyUJRetG46Xw2kil0FRKMBGnr6N5NMe400o6iwSfdlk5b1HigDjb3q/TsYK2XGfnpWHQ5smYYafC1E5NKFOpKicdBXVuISLQXB6rBC3trkBI+uKTTaK+EIu0o0mi6kufMIxKL0NLeop7bZq6BPX+B5mPw2vdg+hUw7wMp+1R6K/ny+i8zwT2B+1fen3JPptEMJecVnodAdJafFS1SBpRDL/HxFZMpyrTzPy8e6HEBczg4qzssI3Mozo1Ackc0E/Ah4In4mJSyBvAKIZYb3c5uB547qxmfIU5DqAhE+sgpijP/g5CWCdW7KPGoffdXt+Fx2lSQNejSszMhyVHktluJSfB19C9A7kcvHyLLaePzq2cM4gRHJ5XN6qHqTDqqaM4MX3sED95UR1HebPVe3yXQ+lQFbH8UltwBOdMSw+Ut5UzzTKMrpeml2lE0AoiLQInysyTqAnXYzXbcNne3zzQDS4YtA38kSAwSpWetwfBp29yX1Xp12Zlm2KkxMoh6chQVexzEJNT1IXpuONTAjPx0JuW4EmO56Wk06jBrjaYbeQ5VadIQMKJJFn8U/PXw+/dBLArX/lCVpRmc9J7kc699jqiM8rPLfkaGTV83NMNHZlom83LmdQZaCwEzroTy17CLKF+5cha7K1v5x96a4Z2oQZ9CkRDiT8BmYJYQolII8UngfqPV/R7gUuBLSbusBCqllEe6HOozwG+BcqACeHEgfoC+cFnVhbff5WdCQNZEaDlBSZYSOcobfCrI2ms8TGRoR1F/keY0QECHKj0DaOtnTtGuky1cNa8wsZ+mk7hQVNPPoEzNmeMLRciQPnBkdw7a3ZA5sbuj6PX/BrMNVv17Ysjb4aUuUMd0z/Rux56QMUGHWY8A4kJRXaCu22e1/loKXAU6GHkIcNvcxGSMgMmccBRB7+3Bm/0d1HvbUzqeaTTDQa1xDe4poyguHtWcZkEn2BFly9EmVs5MjVnIy1ClZyNlVXkgEELYhRBbhRC7hRD7hRDfNsa/a2Se7hJCvCyEKDbGJwshgsb4LiHEr5KOtdR4DikXQvxU6BP1uCHfqfJKG4KGUDT9CnDlQ8txuOT/QdZkAKSUPFv+LDf97Sbq/HU8eMmDTHLrzslDyZYjp/jdm0eHexojjuXFy9nTsAdfh5GhPOtq6PDC8Te5cXEJswszuP+lMjoip3ejDgX96Xr2ESllkZTSKqUslVL+Tkr5MSnlAinlQinl+wzHUHz79VLK5T0cZ5uUcr6UcpqU8h45RFe/dKsqWeq3UATgmQQtxynxqAt/NCbxOK3QZlTLuXVGUX+QUnLzP27hsaxs5SgyBJ/+BFp7Q2Ga/B1M0vkTPXKySTnkalq1o2iw8LVHSI91cRSBCjyuWAcv3wdHN0Lldtj3FCz/TIrbsKKlAqBHoag0o5TW9tYeS540Q0ehU/171fi6r9yc8J6gNKO027hm4Ilfp70ODwSbyMtQQlFvOUWdQdba7aUZXk7nKIrfQ1adRih6++gpOiIxVnURinLTbXREY7QFx1QL73bgMinlOaiM0zVCiOXAA8bzxCLg78A3kvapkFIuMl53JY0/BNwJzDBea4bmR9AMN3nOLo4iswUu/DxMvQQuuBuA1vZWvrLhK9z31n3MzZnLU+97ivOLzh+eCY9T3jzcyB2PbOVPW0+c1h08HlletJyojLK9brsamLIKLHY49E/MJsHXrp7NiaYAa7ccH96J8t66no0K4qVnZy4UnSDXZSXNov6K3HFHkdUJafrmtD9U+io52HSQozYbhIO4Har7QH+EohOGEDIpWwtFPRF3FDX6OnTns0HCG+rAGW3rLhSt+LwKq377Ifj99fDby9Q2F34hZbO4UNRT6Vm885nOKRpech25WIQl0eEsTkzGONZ6jKmZU4dpZuOLeCmA15GZCLMGqG/rWSgqq1UCa4+OoiPre+9KqNEMMDUtQexWk1pM7EKRIRRVt/Tu/N1Q1kCaxcR5U7JTxuNiacMYyimSingbYqvxklLK5BUTF6dpdgOJ+Au3lHKzsej8GPD+wZizZuSR68gFkhxFACs+B7c/B2Yr9YF6PvKPj/D6ydf50tIv8dsrf0txuq4EGUpeO1jHJ37/DpNzXDxx53LsVp0Jlcyi/EXYzXY21xg5RTanEovKXgQpuWRmHium5fDT18ppDZxZE6iBZswLRWflKMqaBOEAInAqsSLkcVjBW60Cp7TDtV/sqt8FQIfZmgizBvq1QnbilBKKJmihqEcqmzszt+pax86N5EhBSgntXsxEwZl6A8/kC+GO5+FrR+HDa+HcT8H7fgb2zJTNylvKcVgcPd6gxJ0qOqdoeDGbzOQ787tlFFX7qglFQ1ooGiISQpE93RCKTv+QXFbnxeO0JrZLsO+v8NgNsOPRwZyuRpOgpi1EUaajxxLV9DQLbrvltM7fjYcbOH9qTrcHqdz005dfjlaEEGYhxC6gHnhFSrnFGP8vIcRJ4DZSHUVThBA7hRAbhBAXG2MlqCY5cSqNMc04IM2cRmZaJvWB+m6fNYWa+NTLn+JU8BSPXPUIn5j/CR1cPcS8tK+WT/9hO7MKMnjizuWJc5mmkzRzGksKlvB29dudg7PWqPLJhjKEEPznNXPwhsJ85cld/W4CNRiMeaHojDOKADwT1XvL8UROUabDCm01uuPZGZAQikxmCJ9ZRlHcUTRRl551Q0pJVXOQ6flKBK3W5WcDTjAcxY1xzujqKIqTlgGzr1XBiXOu7/ZxvOOZSXQ/zZamK6FIO4qGn0JXYTeh6EiritjTQtHQkBCK0lwQbCbbZUMIaGjr2YlxsNbLrIKM1Ifz2n3w3N0w4XxY9NGhmLZGQ21riEJ397KzOMUeR69NJ042BTjS4O9WdgZjVygyOiYvQnU/Pk8IMd8Yv1dKOQF4HLjH2LwGmCilXAx8GVgrhHADPa3WdnuSEkLcKYTYJoTY1tDQ0MMumtFKniOvs/TMoK2jjbteuYsqXxU/X/1zFuUvGqbZjV+2HWvi7rU7WFCSyeOfOl81gtL0yPKi5VS0VnQKnjPXgDDB278EYH5JJl+/di6vHqjnoQ0VwzZPLRT1hMcIO0vKKfI4rarrme541m92NuwEoMNkMkrPDKEo1LdQdLwpQJbTituug6y70haM4G2PcO5k5XTROUUDjzcUIRPDId+bUNQHvXU8A9UOPCstSzuKRgAFrgJq/KkZRUdbVfiiFoqGhoRQZLVDsBmL2USOK61HR1EsJjlU62VOUVIJeKAJnrhVufpufgws+uZUMzTUtoZUPlGgCSq3dfu8xOOgqpfSs42H1YPuqpm53T7LTVf/h8dq5zMpZQuwnu7ZQmuBDxrbtEspTxlfb0c1wpmJchAlB8iVAtU9/Bm/kVIuk1Iuy8vrLsZpRi95jjwag42J7wPhAHe/ejeHWw7zk0t/wrmF5w7j7MYv6w7WI4Dff+I8/fzWBxcUXwDQ2f3MXQzLPws7fg8VrwFw+wWTuP6cYn70chmbyht7O9SgMm6EIl/Y18eWScQdRc2dQlGm3aIyijJ0kHV/8HZ4KW8uB6DdZIJwgHSbBSGgLdR36dnJpgATk1rFajo5aZSdnTdFCRinyz/QnB3eUIQscfZCUWt7Kw3Bhh6DrOPozmcjg0JXIXWBOmKyM9fmSOsRsu3ZeOyeYZzZ+KFTKEqDYDOgMlp6yiiqbA7i74gyK55PFIvC059UCzk3/0Ev5joJKRMAACAASURBVGiGjGhMUtsWoshjh7f+F/7vKgi2pGxT5LH3upiz8VADJR4H0/LSu32W5bRhNokxlVEkhMgTQniMrx3A5cBBIcSMpM3eBxxM2t5sfD0VFVp9xGig4xVCLDe6nd0OPDeEP4pmmMlz5lEfVE6MTdWb+PA/Psyexj3cv/J+Liq5aJhnN345WNPG9Px0MuIiUaAJIh3DO6kRysysmWSlZfFm1Zudg5d9HXJmwHOfg1AbQgj+5wMLmJqXzuf+tDPRZXMoGTdCUSAc6GPLJNLSwZmTUnqWa/ZDtF2XnvWTPQ17kEgswkJYKKHIZBKkp1n6VXp2/FSAiTqfqEfi+UQz8jPwOK3aUTQI+NojeBKOouzTb9wDpwuyjlOSUaJLz0YARa4iIrEITaGmxNiRliNMyZwyjLMaX2RYlejjM1sg1AqxKPkZaT12PTtoBFknhKLXvqtW3675IUzQq8iaoaPR1040JinMdEDDQYhF4OiGlG2KPQ5aAmH87akLZOFojE3lp1g5M7fHfCOTSZDjstHoHVMPWUXA60KIPcA7qIyivwP/I4TYZ4xfCcQ7Q6wE9gghdgNPAXdJKeMn6s8AvwXKUU6jF4fw59AMM/nOfBoDjXzhtS/w6Vc+TSQW4Zerf8kVk64Y7qmNaw7UeFObTKz7DvzvQt1gogdMwsRlEy9j/cn1BCPGc5zVAe//pcpEfuU+AFxpFn710aWEwlE+/shWntx2ckgDrse8UGQz27CarGfmKIJE57O5xW7MJsFUu2rHq1crIRwL0xJqodJbSVlTWY8Puzvrd2ISJubmzqVdCAirXwK33dpn6Vk4GqOqJZja8SwagZ8uge2/H9CfZTQS73g2IctJUaZjWBTmsY4vFMHzHhxF5S3KTdeXo6jGX0M4NrwdDcY7hU51To/nFEkpOdJ6RJedDSFWsxW72Y7XZNyShFrJz0ijoQehqKxWXYtnFmSo68qmn8PCW2DpHUM5ZY2GGuPaW+S2Q+NhNWiUDMSJu9K7LujsPNGCtz3Cyhk9lEQFmqC1itz0tDGVUSSl3COlXCylXCilnC+l/I4x/kHj+4VSyuullFXG+NNSynlSynOklEuklM8nHWubsc80KeU9RvczzTghz5FHREbYXLOZLyz5As/e8CwXllw43NMa1zT7O6htC6WWhR95HYqXgGnMyw1nxdVTriYYCbKxcmPn4ITz4IK7YfujievJ9Px0fvqRxXhDEb761B6W/dcrfPyRrWyuODXoc7QM+p8wAnBZXWeWUQSq/Kx2L7ML3ez55pW4TryuxjNGr6MoGovij/jxdfjwhX34w368HV78YT++sO+048ljoWiqMGEz2Xjxgy+S78xPjO1q2MWsrFlkpWVRLwQYji63w4q3j9KzmpYQ0ZhMDbL210NTBUjdCr6yOUhGmgW3w0JRpl2Xng0CvvYwmYkw6zMvP6poqcBpcVLk6r1UtTS9lJiMUeOrYaJ74tlOVfMeKXR1CkXzc+dzKnSKto42LRQNMRm2DLxxY0WwmbwM9ZAci0lMpk7HxcE6LxOyHaSnWeDoZoiFYd4HhmfSmnFNrSH+FKWboPmYGix/DaRMdMctylRCUXVLiOn5nSvtGw81YDYJVkzvkk/07nPw/BfAlUduxi/GlFCk0QwUa6asobWjlRun35i4hmuGlwOG23d2XChqOqLOixfc0/tO45xlBcvIc+Tx4tEXuWryVZ0fXHovlL2kStA++TJklrB6TgGXzc5nd2UrL+yt4cltJ/n+iwf42z2DW2o5boSiMyo9A8iaBGUvQCyGK82i8g8A3EOfURSTMQLhQIqYE3/5O/yd3ycJPcnb+Tv8/5+98w6P8yrT/u9MH0lT1CVLsi13O45jO3Z6pyWhpAHL0hI2kIWlfOzSFrhg2f12+VjYDbvsLrChswGykECAkEJCenXsxLEdV8lVvY2kGY2mn++PM1Ua2bKiYlvP77p0jea87ztzZlTmfe9zP/dDMB7MWduOg0JRZi+jzFFGqb2UMnsZ5a5ymjxNlNpL8Tg82fEyRxkKxZee+RJ37b2LT2z8BACJVIIdvTu4bul19Ef6iSmyjiKP68SlZ0cGzAV6QenZcDqn8DQW6qaLtkCYhnLTjrfe5+Llo4G5ntIZh8koCpKyl2CxnXxrz9bBVpb6lxYtKcjQ5GkCTOczEYrmjsxJZibQWoKs5wYjFKVNAaMBajyVJFKaQDhGZV573b2dw6ysTZ+IHk2HQC48f5ZnKwg5R1EDPWYRq/E8aNsC/a1QZdykC/ymI9rYzmdP7O9lQ5M/2w2WaBAe+FvYfidYnRBppbraSmvPGVV6JgjTQoWrgo+c85G5noaQx95O4/ZdXZ8WxFvTBoslV87RjE59rBYrb1r8Jn6575cEY8FsXiN2N9zw3/DTt8F3L4brvwMrr0EpxfomP+ub/IRjCX7/Sufxn2AamDdC0ZRKz5IxCHWZXKLh9A+jbPLKtdaa0cToeIEn7dA5kYsnMz4SH0GP7/xZ9HWW2kvx2D2UOoyoU19aT5mjzAg79rKiYk/+uNvmPu7FbTH+dPRP3L3/bm5bdxsum4v9gf2MJkbZULOBJ9qeIIYuKD1rn6BVbIajA0bUW1RZRCiaA6HuVKMtMEpjuXlvFvjdBMJxRmNJ3A7rHM/szCEUTeBXI1PKJwJTenZp46XH3afRY5q2SOezucXv9OOyurKlZwcHDwKwxC9C0WxS5igjmEi7TUcDVHsaAOgJRrNCUSSe5FDfCG8+O/05cPRZqFkz5c6EgvBa6ByK4LBZ8I0YcZnz/9IIRa2PZoWiWq8LiyoUivpCUXZ1DPE3r19hBgYOwf/cYFbfL/00lNXAA5+l2Rni96EoWuuTPi8TBEGYTfZ0DlNZ6qA6s7Bz8DHwNUHlxFmdgnHH3bnnTh49+ijXLbsut6HxXPjLJ+FXt8Av3gXnfwTe8PeQXrxeVFHK0GicoXAcX8nMdZibN0JRvqNoMDJIz2gPK8pXTHyQf5G5DRwxQlGwA0qqxrXdfbLtSX7f+vuiYs9IfKSgk85EuG3ucaJNTUlNUTEnX/TJd/6U2kuxqLmpAX3v6vfy2LHHuP/Q/dy4/Ea292wHYH3Nep7vfD4tFGVKz2zs6Ty+o+hofxiHzUKtx5UbzApFDTPyGk4XtNa0BUa5YEklgGnLi8k/WFKkc4owNUKRBI2EUFO4AB2MDNIf6T9uPhGYMEaHxSGdz+YYpRR1pXU5oWjoICW2EmpLaud4ZvMLj8PDUKzb3BkNUOM1J0M9wSir07rQ/u4gKY3JQEgm4NgWk08kCHNA51CEep8LNbDDDCx7PZQ3Q+uf4PzbALBbLdR4XHTkZQneteUoWsPVa9MLj1vugOF2+MD9sOgi2P8QAE3WAWIJB8FoQlpNC4JwSrO3K8jqeq8RtVNJOPQkLy+/nKG2J7ii6Yq5nt4py7qqdTSUNfDAoQcKhSIwItsHH4GHvwwvfAc6XoIPPAAWazae5cjACOtKZq5D77wRigIRU56jtebTT36aHb07ePjtD+Nz+oofVJ4WigaPwqILIdhV1M3yzW3fpHukm4XehZTZy1joWTjOpTNW8MnfXmovxWY5vX8Mm+s2s6J8BXfuuZMblt3A9p7t1JTUUF9aj8PqIKZTphtIMo7XZSd4gjDrI/1hmsrdBbkUBDvA6jDd6OYxg+E4oWiCxnQ3vkz+QedQRISiaSQUTVBhGUFNQSzIBFkfr+MZmI4HDZ4GcRSdAtSW1tIVzglFzb5mWcGfZbx2L+3Jo+bOaICaBiMU5Qda7+k0GQir673QvQtiIVh44azPVRDAZBTVZYKsS6tNnt3Sq+CVu0xL6PTC4gK/K+soiiaS/OS5I1y2oprltR6TZ7TvAWi+3IhEkF0Qq1f9QD29wagIRYIgnLIkkin2dQd5/wXpa+eOlyEyxC/sCXZs+ZoIRcdBKcU1zdfwo10/YiAyQIVrTCWDzQnX/DNUr4L7Pgl774M112Wrbo70h1nXKELRa6LUXprtzPV0+9O80PkCAHfvv5tbz761+EE+kx/C4BFzO9wBnkKhqGuki5bBFj696dPcfNb87biilOK9q9/Ll5/9Mi92vcj23u2sr16PUsoIRaRdVbERE2YdTYwLKM3n6ECYRZWlhYOZ93+eX7xlO55VZErPMo4iCbSeToLRBBUqBO5VJ31s62ArcPyOZxkWeRYRScjPbq6pK6njuY7nAJNRtLlO2qzPNmWOMoYT6QD5dJg1QE8w9/expzNIicNq8uu2pPOJFolQJMwNnUMRNi0qh/4WqFxuBpe9Drb+AI69AM2m/Lje72Z3hxE5f7e9g95glNvf2Wz2790HgUNw0cdzD+wzQlF1qg+opy8YZaksBAmCcIpyuH+EWCKV63jW+higaEmFT7hoKpjuZ9/f+X3+ePiPvGvVu4rvtPH98My/w9P/Bqvfls3xzcS1zBTzol9dmb2MkfgIyVSS27fdTpOniY01G7lr310kUhN04LK7TB5RRigKdo4Tip5qfwqASxpmNnH8dODaJddS7izn3176NzpHOtlQswEwHdGimU5l8VG8LhtaQyhW/H3XWnN0IFwYZA0mI8orQdZtAfMPIeMoqvWmhaIT5D4JJ0coksCnQlPKKGoZbKHMXjap0qV/v+rf+e4bvjuVKQrTSH1ZPb2jvQxFh+gOd0uQ9RzgcXgIxoLg9MFogBKHjTKnbZyjaGWdxywyHH3WLOj4Gudw1sJ8JZXSdA9HqPe7jaMonUnE4kvBYsu2NQZo8LtpHxwlldL84OlDrKrzcEmm29m++83tiqtzD+7yg70UX7wHgL6QBFoLgnDqsjsdZL0qE2R98DES9WdzOHhMhKJJsKJ8Bcv8y3jg0AMT7vNy3w6+t/x8U3525BlKHDaqypwc6T/Jru4nybwQikrsJYzER/ht629pGWzhkxs/yc1n3UzXSBd/OvqniQ8sX2QyipJxGOkdJ1Q83fY09aX1clEBOK1O3rHyHezs2wmYfKLMeEKnjKcoHs7apyfqfBZIl1aNF4raRSgi5yjKhFm77FYqSx0F+QfCaycUiePVoSmF5LYOtbLEv2RSpUtzlSsmFFJXUodGs6VrCyAdz+YCj8NDPBUnWuKHUVMqXuNx0pMWirTW7OkcNiuWWpuOZ1J2JswRfSNR4knNopIYhPtyjiKX13Q/a82dWy7wuYglUvzulQ72dgW59ZK80tb9D0L9OVkXEWCc074GSiOmHLYvlBNLBUEQTjX2dg5jsyiW1ZSZDo7HtnC0aTPxVJylPhGKJsM1zdfwUs9L2bzMfDpCHXz80Y/zrd5nCZZVG1cRpunTkX5xFL1myuxlhBNh/vPl/+Sc6nN4w6I3cHnj5TSUNfCzPT+b+ED/QuMoCqZ/aJ5cx7N4Ms7znc9zScMlkmWR5s9W/hk2iw2X1cXKipUA2K1GGIopZRxFblPtODxa3FGUUUYLhCKtizq65iNtgTAely3XUheo97voHBJH0XSSGA1iIzk1oWiwdVJlZ8KpQ12p+d/+bMezADT7m+dyOvMSj92sRAbdOaGoyuOkd9hcJHcMRRiOJIxQNHAQQt1SdibMGV3pxZlm0h1xq5bnNi69CjpfgZE+wJSeAfzzg3up9jh52/r0oleo1wSyr7x2/BN4G3CMdGJRIhQJgnBqs6dzmKXVZThtVjj8DKTiHKxaCEwuhkGAaxZfg0Lxlee+UtCAK5aM8anHP8VQdAiA1nU3QsvD0LWLRRUlUno2HZTaTd5N72gvn970aZRSWC1W3r3q3bzc8zKv9r1a/ED/Ihhqh6F02Kwn52h5uedlwomwlJ3lUVNSw/tWv4+3LH0LdosRMpxWkzMRU6RLz8z4RIHWmV/4TEgXYC4aEpF53/EMjKMo4ybKUO9z0zkojqLpRI0OmG9OUih66PBDDEQGWFVx8tlGwtyRFYran8WmbDR5muZ4RvMPj8MIRcMuT4GjqDd9kbw3E2Rd5zFuIhBHkTBnZHIBFyTTXSsr8y6Gll1lbg8+DpjSs8wxN1+4yFxMARx4CNCFZWcZfA2o4XYqSp0iFAmCcEpjOp7lys6wuWixGWNAs08W3iZDk7eJv7vw73iu4zk+9PCHssLQ11/8Orv6d/GZTZ8BoHXBWrCXwrP/wcLKErqGI0TiyRmb17wQikrs5sL69Qtfny2JArhh+Q2U2Eq4c8+dxQ/0LwSdhPZt5n6eo+jp9qexWWycX3/+jM37dORvNv0Nf3fh32XvOyym64dxFIXxZErPIsUdRUfTFrqmfEfRcIe5LdJ1br5hhCJ3wdgCnziKphtrbNB8UzL5jKLtPdv5wlNfYEPNBm5cfuMMzUyYCTJCUcdIBwu9C7NCtzB7ZISikLM0KxRVe5z0DJsL8kzHs1X1XpNP5C6HqpUFjxFPxfnalq9lA+UFYaa4cmUNT3zmCuoTbSaTqHxxbmP9evP72WLKzxakhSKX3cJ7zl+U22/fA2YBsv6c8U/gbYRQD/VlloKcLkEQhOnkYG+Id3/vefZ3B6d0/GA4RudQxHw2gwmyXnQRrcEjNJQ1ZK/BhRNz04qbuP3y29nbv5ebH7iZH+36Ef+773/5wNoP8N4178Vtc9MS7oRzb4Zdd7PKPYjWufzamWBeCEXL/MuocdfwyXM/WTDucXi4ftn1PHj4QXrDvYDJQQjFQmaH8vQHemb1Mi8j56n2pzi35tysW0kojsOaLxTll54VdxQdGQhT63Xisltzg1mhaH47irTWHAuExwlF9X43w5EEI9EJgtmFk8YeM0r+ZB1Fx4aP8YlHP0FdaR3/fuW/Z510wulBqb00K1RIPtHckHn/gw53nqPIxUgsyUg0wZ7OIAsrSihz2sxnctMFYCk8hXni2BP8bM/Psl1OBWGmcNgsLKosxTbQYkQia564bLHCsjfA/gcgGae8xE5VmZM/P28h5aXmnIh4xARer7ymeDdXXwOgWe4eplfCrAVBmCF+/Oxhnm3t58N3biNU5Doinkwd17GyJx1kvbrea6pw+vbBkitpGWyRsrMp8LpFr+O7b/gu3eFubt92O5tqN/GJDZ/Aoiws8S2hZbAFLvgr0JoNHXcBzGhO0QmFIqXUD5VSPUqpXXljX1FKtSultqe/rs3btk4p9ZxS6lWl1E6llCs9/rhSal/eMTUz85LGs6FmA4+84xEWeReN2/bu1e8mmUpy28O3cd2913H+z8/nwl9cyD377zGlZ2DanFrsUFIJQNdIFy2DLVJ2NgmyQhEK4iO5MOvjlJ4tqhgjvgXTQtE8zygKhOOEY0maxpWepTufiatoWtBa44xPXigaig7xV3/6K1Kk+Pbrv0256+RzjYS5J+MqEpv03JAViuxOIxSlUtR4jODaG4yyp2uYVXUeCPWYduRF8onuPnA3NSU1XNxw8azOXZjH9LfkgqzzOesG83t88AmUUvzxry/ji9euzm0//BTEw8XziSC7MLbEMUSfOIoEQZgBIvEkv93ewZp6L4f7Rvjbe3agtc5u398d5Mp/eZxbf/LihI+xJ78sfP+DACSaL+Pw8GGW+GXhbSpsrtvMj67+ETcsu4FvXP4NbBZjsljqX2oc0/4mWHoVld0mV3NOhSLgx0CRAmq+qbVen/66H0ApZQPuBD6stT4LuALIVwTek3dMz2ub+skxUeD0Iu8i3rP6Pdgtdpb4lvD2FW/HZXUZxc7XCMpiOp556rOrPk+3Pw0gQtEkyAhF0bSjyOMyv+zB45SeNY3reNYBqILSv/lIxlo4zlHkM/c7JKdoWogmUnh12oLrPnHp2Zef+TLtoXa+deW3iorRwulBXYn5/yInNnNDViiy2kGnIDpMdVooOjIQ5nDfiFmxnCCfqCPUwbPtz3Lj8huzJ1WCMKOkUtDfClVFVs2XvQ6cPth1DwAVpQ5s1rxT7n33m5yJxROcR/oaAWi0BugLRQsu3gRBEKaDR/Z0MzQa5/PXruJTb1zJfTs6+Z/njwDw1IFebvr2s7QFRnmmpZ+eYPFrjL1dw1SWOqgutcFz/wV16zha4iWRSoij6DWwqmIV/3DxP1DlrsqOLfcvp3e01+QXVa3AOniYUodlRgOtT3g2pbV+Uim1eJKP90Zgh9b6lfSx/VOf2uzxufM+V3D/ybYn6RvtM1Zib4MJs87Lx3m6/WnqSutY6peWfyciU4ITTwtFNquFUoe1aOlZJJ6kazhSGGQNRigqqym0ds9D2gLGMTQ+zFocRdNJMJLAh+m+h9t/wv23dm/l+mXXs7F24wzPTJhJ6kvN/3gpPZsbyuxlAASt6bLj0QA1XuPifaalj5ROW9uPPgc2l8mByeM3Lb8B4IZlN8zepIX5zdAxSEaLO4psTlj9Ftjze4h/E+yu3DatYd+DJvQ6fzyftKOoXvUTTaQIRRPZjEdBEITp4Fdb21jgc3HR0iouXlrFtiMB/u99u+kYjPC9pw6yvKaMz7xpJbf+ZCt/2tPDn5+3cNxj7OkMsqreg9r7exhohXf8mNYhkxMo18nTS+b9bB1sZWNFMyoxyobyyIwKRa8lo+hjSqkd6dK0TK3FCkArpR5SSr2klPrsmGN+lC47+5I6hXvKV7oqjVAEJtAasmVP8WSc5zuf55KGSyZ0KQk5MqGw0XSYNYDHZS9aepZxzBQVivLyoeYrmfenYYyjqM7nQqlcFxbhtRGKJvCrEAmr25zsH4dgLMhwbJiFnvEfnsLpxRL/Etw2N4u9i+d6KvMSt82NTdkIZj5WRweoLjN/f0/uNxmCq+s9prnEgg1gc2SPTaaS/ObAb7io4SIWlMlnhTBL9B8wt5UTrJqvvRGiw9D6p8Lxg4+bkvp02dlwbJgHDz1Y6BpyloHLR1XS/O73SU6RIAjTSNdQxLiGzm3EalFYLIrb33kONR4X332ilUuXV/GrD1/IVatqaPC7eXh397jHSCRT7O8OsrrWA0/dbv4Xrn4bLYMtKJQsvE0zGYdWy2ALVBrRaENpgCP9IzP2nFMVir4DLAXWA53Av6bHbcAlwHvStzcopV6X3vYerfXZwKXpr/dN9OBKqduUUluVUlt7e3unOMWpU+WuyhOK0qUkaaFoe+92RuIjUnY2STKOopgC4sbx4nXbGB4dX3p2pFjHM4Bgp+kMMs9pC4ziddnwuQtXFe1WC9VlTjql9GxaSKZSNLlGSThP7CbqCJn8LLk4Pf1554p38vvrfy8dOuYIpRQeh4egNW10HjhEeYkDm0WxtytIqcNKk98N3buhdm3Bsc90PEN3uJu3L3/7HMxcmLf0tZjbqiKOIoDmy035crr8DIBkAh76ojm3PMt0x/zlvl/ymSc/k401yOJtxJ8wKQ19IckpEgRh+vj1y22kNNy0sTE75i9x8JO/2MxX3rqG779/Ex6XHaUUb1hTy9MtfYRjhdduezqDRBMpLrfthK4dcPH/AYuVg4MHWVC2ALfNPfZphddAXWkdpfZSIxRVGKFotaOHY4FRUqmZKU+eklCkte7WWie11inge8B56U1twBNa6z6tdRi4H9iYPqY9fRsEfp53TLHHv0NrvUlrvam6unoqU3xNVLmr6B9NV81lOp+lS89e6n4JgPPrzp/1eZ2OZMOsbc6so8g7gaMoY51bNC6jqF0cRcCxgfC4srMM9X43HdNUejYciU+5TeaZwLIaD1cvceHyVp1w34xQ1FA2vzvynQnYrXZqS2vnehrzmjJHmSk9s9ihexcWi8rmFK2q92IZPgaxINSeVXDc3fvvptJVyeVNl8/FtIX5Sv8Bk0NUOsF5qtUOa66DfQ9ALL3i+9KPoedVeOM/ZsvOdvWZXjHf3fHdQleRr4HSiFnF75VAa0EQpgmtNXdvbeO8xRUsripsILSsxsMtFzcXZKq9cU0tsUSKJ/f3Fez7o2cOUeKwckHHT82C/rp3AUjHsxlCKcVSXzrQ2tcIVgcLVTexRIqu4ZkxC0xJKFJK5befugHIdER7CFinlCpJB1tfDuxWStmUUlXpY+3AW/KOOeWoclcRjAeJJCJ5pWdGqOgKd1HuLKfMUTaHMzx9KBSKMo4ie9Ew66MDYUodVipKcyUFxEYgMlSQETVfaQuM0lRRXJ2v97oKSs9eOhrg7m1TaxH9u+0dvPGbT85rsYjRwKQ6nnWMGKGovkx+PwXhteJxeAjGR6B6JXSZU4SsUFTnge5XzY55QlFvuJcn257kumXXZUudBWFW6DtggqyPF0Ow9kazSLb/IfO58ug/weJLYfVbs7vs7NuJx+5hR+8Onu98PnestwHHSKd5KnEUCYIwTbx0NMDBvhHevqnxxDsDm5sr8LpsBeVn7YOj/O6VDj61ehj7sWfgoo+BzUE8Fefw8GHJJ5ohlvqXGkeRxQrli6lLtAMz1/nshEKRUuoXwHPASqVUm1LqVuDrSqmdSqkdwJXAXwNorQPA7cCLwHbgJa31HwAn8FB6/+1AO8aJdEqSSRjvj/RD3TrT+axmFQA94R5qSmrmcnqnFQ5LuuuZzQmxjKPIVtRR1DUUod7vLsx+GjYnSZlgx/nM19++jo9dWdziXu930TlorIfffaKVd3z3OT79q1eIxJMn/Tz3vNTGyloPy2vmsRg6SaGoPdSO2+am3HnifQVBOD4eh4dQPGRKy7p2AlCTFopW13uNEwOgJtdm/N6We0nqJDctv2nW5yvMc/pbiwdZ57PoYiirhVd/DU98HSKDcPX/y4pLPeEeesI9fHDdB6kpqeG/d/x37lhfA5bRftwqRp84igRBmCZ+tbWNEoeVN589uUVOu9XClatqeHRvN8l0idMPnz6EBt4dv9ucL2+8GYBjw8ek49kMstS/lIHIAAORAahYgjd8DICjAzOTUzSZrmd/XmT4B8fZ/07gzjFjI8C5Jz27OaLSbTqt9I320VB3Dnz2ULb7UU+4R8oTToKMoyhucxSGWRfpetY9HKHWOyY8OGgcG5mMqPnMhoUTixELfG5GYklu/tEWnjrQR73POIyGR+O4hh+jWgAAIABJREFU7NZJP8fB3hAvHx3k89esmt9h7aMDk3MUhTpYULpgfr9XgjBNeOweDo8ehrrNsOMuGOnLOopW13thy6tQvhicnuwx97bcy/l157PQK4HywiwSG4HhNuMoOh4WK6y5Hrb9CHQKNr4f6s7Obs6UnW2s2YjT6uRrW77Gi10vsrluM3jNav+qkiC9EmYtCMI0EI4luG9HJ9eeXU+p84QyQJY3rKnlt9s72HYkwMpaD7/YcpQPrYrhPvgQXPF5E8AP0vFshlnuN4sTrYOtVFQsxX7oSWyWOXQUzUcyjqJsoHVei+zukW5xFJ0EGaEoarUXhllHEoW1+EBPMEqtZ0yr2OG0UCSOouNS7zfv2/MH+/nKW9fwhWvNivtgEUHuePzm5XYsCq7fMI/fb63TjqIKAHb27uTWh25lNDE+A6oj1CFB1oIwTXgcHoZjw7mw6q6dNJaX4LBaWJkpPavJlZ31j/ZzNHiUSxsvnaMZC/OWfnMxNGHHs3zW3gTJGNhL4aovFWza1bcLq7KyqmIVNy2/iUpXZc5V5DOfwxdXR/CXSFmlIAivnUg8xU0bG4q2uj8el6+oxm5VPLy7iztfOEI4luQvHQ+CzQ2bP5TdL9PxrNnXPN1TF8gJcCbQuhkVD7POF+HIgAhFs0a29CwTaJ0mlowRiAZEKDoJshlFVntBmHUypRnNK4vSWtMzHKXGW1wo0p46nmx7ks5Q5+xM/DTjoqVVXL9+AXd/+CJuubg5e1I5GJ68UJRKaX79UjuXLK+mduzPYT4RC0EqkXUUPXj4QbZ0bWHfwL5xu7aH2kUoEoRpwuPwEIqFco6L7l3cctFi7v3oxZRZEtDfUpBPtC9g/iZXVayai+nOK8KxBP/56AEe2d3NSHR8xuC8Y6gNUCcuPQNo3AzL3wRXfxVKC5sk7OrbxfLy5bhsLlw2Fx9Y+wFe6HyB7T3bswtkn76gjM9dLb/jgiC8dipKHfz9dWs5d1HaNa81dL4C8eOHIXtcdi5YUsmDr3bxo2cO8bZlNsoP/BrW/zmUVmb3ax1spaGsQTqezRA1JTV47B4TaF1pRKNzywY4Ko6i2aPCVYFC5RxFaXrCpk1pXUndXEzrtMRpNWUDMautIMwaYHg0d7I5GI4TS6ayeRRZhjvA5WPUYuGjf/ooDxx+YHYmfppRUerg3961gXOajPvN7zYC3WB48nb1Fw4N0D44yk0b57GbCIybCLJCUaY0oHWwtWC3YCzIcGxYOp4JwjRR5igjnAiTcPtNuXHXTkqdNtYs8ELvXlO6U7smu//+gf0ArCxfOVdTnjc8sqeHf/njfj74062s/4c/8u7vPc9/P9E6rl3yvGHVtfDFzoK8rAmxWOA9v4QN7y0Y1lqzq38Xa6vWZsfeseIdVLgquGPHHTkn9VD7dM5cEAQhx1P/Av99GXy9GX7x57Dtx6aZxLEtcOBh2Hl31kH5xjW1HBsYpS8U4zMVT0MyChf8VcHDtQ62Sj7RDKKUygVaVywBYI2rjyP9c5RRNB+xWWyUu8onFIrEUTR5Ml1oYpacUORxmV+74UicOp9xrnQHjZI9zskS7ATPAhPaBRIaPEmyjqKTKD379UttlDltvHHNPBdC84SiRCrBnoE9QNrmmUdHyLjdxFEkCNOD1+EFIBQL4a9dm+18BkDPbnNbm7uo3hvYS11pHX6XH2FmaekJYVHww1s281xrP0/s7+U/H2vh1kvmcXmB/bWtmB8NHiUYC7K2Mvc7XWIv4Zrma/j1gV+TsjmwlFSZLCRBEITp5siz8NhXYcXV4Gsy3Rn33T9+P6cPbnuM169ZwJd++yqbG1w0tvwcVlwDVTlXZabj2eWNl8/ii5h/LPUv5ZGjj6C9jSiLnWbVxXAkwWA4hr/EceIHOAlEKJqAKnfVOKGoO2zaAopQNHksyoLdYidmtRaUngEFgdbdw6ajx7gw6+F28C4gEDEX7+UuEYomg69k/Ht8PEZjSe7f2cmb19Xjdkw+/PqMpG4dfKEDLDYODh3MZhNNJBSJo0gQpgePw4RUB+NB/HVr4eBjkIiCzWnyiWyu7AoawL6Bfawql5Kc2aC1J0RTRQlXrKzhipU1fP7a1QyNxrFZxZg+VXb2mc5++Y4igCW+JYwmRukJ91DnazhjHEVKKRfwJKYTsg24W2v9d0qp/wtcB6SAHuAWrXVH+pjPA7cCSeATWuuH0uPnAj8G3MD9wP/RY4MvBUGYmJF+uPtW0yDipu+bJhHXfgN69hgHr8sLLj+kkvCLP4P/fS/1H3yEv3/bWbwu/ADq6T648KPEU3FsyoZSKtvxTIKsZ5Zl/mXcc+Ae+mODVJUvpj5prkeO9IdFKJotqtxV4zKKxFE0NRxWB1GLJScUZUrPIjkRo2d4AkfRcCfUnkUgKkLRyeBx2rBa1KQziv64u4uRWJIbNzbO8MxOA5QCRymQKzs7p/qccaVnHSPiKBKE6aTMbrqmBGNB4xxKJaB3H9SvM0JR9SrTRQqIJCIcGjrEVQuvmsspzxtaekIsqy4rGPO5JWD5tfBq36u4rK5xF1WZENiDQwep8zZC4NBcTG8miAJXaa1DSik78LRS6gHgG1rrLwEopT4BfBn4sFJqDfAu4CxgAfCIUmqF1joJfAe4DXgeIxRdDUg2gSBMhlQKfvOXEO6DDz6S6ySqlCnvzivxBuDtP4Q7b4LffZybb/w+fPtHULeOg+UNvPPnF5JMJfG7/DgsRqQQoWhmWVZuSvtaBluoqlyKr/8IAEcGwtkIkulCloImYCJHkdvmztrjhcnhtDqJW/IdRUafDEZy2QY9QeMoqs7PKErGIdQN3oZs6VmFs2KWZn16o5TC57YzODq5jKK7t7XR4Hdz3mJ5f/PZ1bcLj93DVQuvone0l6HoUHZbe6gdt80t5ZCCME1kHUWxoHH2AXSny8+6Xy0oO2sdbCWpkxJkPQskkikO9Y2wrKbsxDsLk2Zn307WVK7BZilcs80IRYeGDpnOZ2eIo0gbQum79vSX1loP5+1WCmScQdcBd2mto1rrQ0ALcJ5Sqh7waq2fS7uIfgpcPzuvQhDOAJ77D2h5GN70Vag/58T7L73KdGzcdQ/88n3Qtw8u+jg/3f1TAG4+62Yub7ycVRWruLb5WpaXTyLkX5gymQyo1sFWqFiCc/gIoDk6AzlF4iiagEp3Jb2jvWitUUoB0D3STU1JTfa+MDnsFjtRVJEw6/zSswg+tx2XPa/sKdQNaPDUS+nZFPC57ZNyFPWFojzT0sfHrlyGxSK/2/ns6tvFmqo1LPebD72WwRbOrT0XMKVnC0oXyP+D46CUasKcxNdhygru0Fr/u1LqG8BbgRjQCnxAaz2YPqZoqYFw5pOfUUTtJtN2t2snhHphpKdglXPvwF4AKT2bBY4FRoklUyytFqEoQyAS4M49d/Lhcz6czWI8GeKpOHsH9vLOle8ct63SVYnH7jFCkbcBokMQDeZW/U9jlFJWYBuwDPgvrfUL6fF/At4PDAFXpndvwDiGMrSlx+Lp78eOC4JwIgYOwp/+AdZcB5s/OPnjLvlraN8Ge+8DzwICSy7nvnu/zluWvIVPnvvJmZuvMI5KVyU+py8baK3iYd69xsEC//R3mhNH0QRUuaqIp+IMx3ILHT3hHik7mwIOq4OYUpCMQTKRF2adcxR1D0eK5BN1mltvA4FoALvFTqm9dLamfdrjc9sZmkRG0ZH+EVIaNi4SES6faDLKgcABzq46O7s60hLI5RR1hDqk7OzEJIBPaa1XAxcAH02XEzwMrNVarwP2A58HGFNqcDXw7fSFhTAPKHMYIWI4NmxKzGpWG6Go51WzQ+1Z2X33Duyl1F5Kg0euD2ealh5jAlkqjqIsO3p3cMeOO/j5np9P6fiWQAvRZJSzq84et00pRbOvmcPDh8GXLgc/c1xFSa31eqAR4w5amx7/ota6CfgZ8LH07sVWYfRxxgtQSt2mlNqqlNra29s7PS9AEE53KpbAjd+Dt37LlJpNFqXg+u8Yd9Hrv8KvDv6WaDLK+9a8b8amKhRHKUWzt5kjw0eyuY1fvaxkRuJDRCiagCp3FUBBTlFPuIfaktq5mtJpi9PqJFsAlRjFabPitFkKHEU9wWiRfKL0iZHXOIrKXeXi3jgJ/CWTE4r6QuanU1XmPMGe84u9A3tJ6ARrK9dSW1JLmb2sINC6PdQuQtEJ0Fp3aq1fSn8fBPYADVrrP2qtM0rx85iLBpig1GC25y3MDQWlZwB1a03pWXdGKMqVnu0L7GNl+UosSk5jZpqMUCSlZzkub7qcyxov4zuvfIfe8MmLELv6TUllfsezfBb7FuccRXDGdT5LO0gfxywI5PNz4Kb0921AU962RqAjPd5YZHzsc9yhtd6ktd5UXV09TTMXhDOAtTeCewpZNi4vvO83xNfeyF177+LiBRdLHtEcUeYoYyQ+ApXp93/g4Iw8j5xhTUBGKMrkFKV0ip5RcRRNBbvFTiyj7+SVn+U7inqGo4X5RADBPEdRJECFS/JzTgb/JEvP+kUoKkomyPqsqrNQSrHUvzQrFAVjQYZjw9Lx7CRQSi0GNgAvjNn0F+RCSBuAY3nbJiwpkNXiM48yexkKRSiejjGpPRtGA3DgYSitgVLzuZzSKfYN7GNlxco5nO38oaUnRLXHKeHVY/jc5s8RS8b45rZvnvSxu/p24XP6aPQUXwFu9jXTE+5hpCTt9D0DHEVKqWqllD/9vRt4PbBXKZUfaPI2YG/6+98B71JKOZVSzcByYIvWuhMIKqUuUGb18P3Ab2fthQjCPOfBww/SO9rLe9e8d66nMm9x29xEEhHwNYHFDv2tJz5oCohQNAFjhaKByACJVEKEoilQ4CiKmaAtr8uW7XqWSml6gpHijiKrE9zlxlEkocEnhb/EwWD4xGHWfSETJF5ROr0tFU93dvXtotpdnXURLvMvo2WwBa01HSHpeHYyKKXKgHuAT+YHlyqlvogpT/tZZqjI4UVbHstq8ZmHRVkotZfmOYrSZTkHHy8oO2sLthFOhCXIepZo6R3f8UyAhd6F3HLWLfz+4O95ueflkzp2V98u1laundAl3ew1gdaHdRRQOYf16U098JhSagfwIvCw1vo+4GtKqV3p8TcC/wdAa/0q8EtgN/Ag8NF0xzOAjwDfx7hOW5GOZ4IwK2it+Z/d/8MS3xIuXnDxXE9n3pIViixWKF88Y44iCbOegEp3JZATinrCPQDUldTN2ZxOVxxWBzFS5k7aUeRx2bOlZ4FwjHhSUzvWUTTcCd4FoBQDkYEJV96E4vjSrq1kSmM9Tkh1fyiK12XDYRPdOJ9dfbuybiIwQtE9B+6hP9KfFYrEUXRi0m2Q7wF+prX+dd74zcBbgNelO9fAxKUGwjzB4/DkhKKsOKTH5RMB4iiaBbTWHOwJcf2GMf/rYiOgLGCf/vDM04kPnv1Bftf6O776wle56813YbWYSLWR+Ag7+3ayq28XO3t3sntgNy6riyZPE02eJloGW7iy6coJHzfT+exg8ChneerOCEeR1noHxlU6dvymIrtntv0T8E9FxrcCxev2BEGYFoKxIN/c9k16w71c3Xw1VzZdye7+3ewZ2MOXL/yyxIHMIS6ri9GEuaamcqkIRbON1+HFbrHTFykUisRRdPI4rA7CmevAvNKzTH5OT9A4WsY7ijqMUAQEogHpeJZPKgn3fgTOuw0aNxXdxZfXXa78OG6hvpEYVWNFunnOcGyYw8OHeevSt2bHMnXYrYOtdIyIo2gypMsCfgDs0Vrfnjd+NfA54HKtdTjvkN8BP1dK3Q4sIF1qMItTFuaYAqHI5QX/Ihg8UiAU7Qvsw6qs2RaxwszRE4wSjCbG5xNtuQOe+RZ8fBuUzN+y8BJ7CZ/e/Gk+88Rn+PYr36bEVsIzHc/wcs/LJFKmvH6RdxEbajaQSCU4FjzGtu5tpHSKC+ovmPBxmzxNWJXVBFpv/qApLxAEQZgltnVv4wtPfYHucDdV7ioeb3sct81NubMcv9PPW5e89cQPIswYbpubSDJi7lQsgUNPgtYnF1A+CUQomgClFFXuqmyYdfdINyBC0VRwWBxESbuF4+aa0Ouy0TZgvu8eNr/oNfldz5IJE2K69kZiyRgj8REpPcun7wDs+F+wl0woFPlLjFA0eAKhqD8UpapUhKJ8dvfvBgqDRrOdzwZbaA+1Zz8wheNyMfA+YKdSant67AvAtwAn8HB6Rep5rfWHtdavKqUypQYJCksNhHlAmb2MYDyYG6g72whFNWuyQ/sG9tHsa8Zplf9bM03RIOtkAl78gRHv5rFIlOFNi97Er+p+xR077gBgZflK3r/m/ZxXdx5rq9bic/oK9tdaM5oYpcReMuFj2q12Gj2NJtD6itsn3E8QBGE6iafifGf7d/jBrh/QUNbAT6/5KWur1vJS90vcd/A+Hjn6CLecdQsum+vEDybMGC6bcRSldApLxRJzfR3sAm/9tD6PCEXHocpdlS096w53Y1XWbHaRMHmcVidxXVh6lh9m3TNsHEU1nrx/Ou3bIDoMS65kIDIAII6ifLpN0DJtL064S0YoOlHns/5QTLrZjCE/yDpDpasSn9NHy2ALgUiABaULxHZ7ArTWT1M8d+j+4xxTtNRAmB94HV66w925gYUXmJWy6lyZ2d6BvWyqKy6QC9NLUaFo/wMwdAze9NU5mtWphVKKr136NbZ2b+Xc2nNPuKColDquSJSh2dtshCJBEIRpIp6M8xcP/QVXN1/N21e8vWDBZVv3Nv7x+X+kZbCFG5bdwOfO+xyl9lIANtVtYlPdJr5y0VfmaOZCPm6bKfuOJqO4K5aYwYGD0y4USSjJcah0VxZkFFW6K7P158LksVvtRNMW7JyjyJ4Nsy7qKGp91OQfNF/GYHQQQLqe5dO109z27IZosOguPrdxEZ0o0LovFKWyTIKs89nVt4uFnoUFK8FKKZb5l5nSs1AH9WXT+89YEARTejYcG84NnP9h+PhL2SycQCRAd7ibVeUSZD0btPSE8Dht1OSXJ2+5A7yNsPLauZvYKUZ1STXXNF8zra7zZl8zR4ePkkyJqVIQhOmhP9KPRVn42pavcc091/A/u/+H9lA7X3z6i9zy4C2E42G+deW3+IeL/yErEgmnHhlHVyQRMRlFAAPT3/lMhKLjkO8o6gn3ZLsfCSeHw+ogpjNCUSbM2kYskSIST9IdjFBeYsdpyxPhWh+FBRuhpEIcRcXofhWUFXTKuK+KMBlHUSKZIhCOU1UmJRz57Ozbydqq8TmZy/zLaAmY0jMJshaE6afMUZbLKAKw2qEs19VuX2AfIEHWs0VLT4ilNWU592TPHuPw2nwrWMWUPpM0+5qJpWLZTDxBEITXSl1pHT+55if88E0/ZLFvMV9/8etcfc/V3H/ofj509oe49/p7uXLhxEH7wqlBxlE0mhg1CzcWO/RPv1Akn/LHodpdTSASIJFK0B3uZolvyVxP6bTEaXUSS6XFivgIYErPAIYjcXqGo4VlZ6OD0L4VLv00YFaQQYSiArp3wYo3wb774diLsOSKcbv40+/xYHhioWgg7TaqFKEoS0+4h55wz4RCUSY/RYKsBWH68Tg8hOIhtNZFSzv3DYhQNJu09Ia4fEVOqGPL98DqhI03z92k5gmZzmeHhg7R5JEwa0EQpo/NdZvZXLeZrV1bebr9ad627G1ynXsakRGKIomIWbR550+hasW0P484io5DlbsKjSYQCdAT7pEg6ynisDjyhKJ0RpHLaJTBSILuYLSw7OzwU8Yps/QqICcUVTil9AyAkX4IdsKii6B6FRx7oehu3kkIRf0hIxRVHSfser4xEh/h0oZL2VAzrotvtvMZiFAkCDOB1+ElpVOEE+Gi2/cM7KGmpEZKkWeBodE4vcFoLp8oMgSv3AVnvx1KK+d2cvOAxd7FAJJTJAjCjLGpbhOfPPeTIhKdZrisxmAxmjDX1ay6FqqmvxPsCYUipdQPlVI9SqldeWNfUUq1K6W2p7+uzdu2Tin1nFLqVaXUTqWUKz1+bvp+i1LqW+o0SIGtdJsToSPDRwjFQyIUTRGH1UEsGUdDQZg1mNbtPcMRar15jqLWR8HhyXbzGogMYFEWvE7vLM/8FKU7nU9UuxYaN5tA61Rq3G52q4Uyp+24pWd9IRMkLo6iHM2+Zr79+m9P6CjK0FAqpWeCMN2U2Y0oUVB+lialU7zQ+QLrq9fP9rTmJdkg6+q0ULT958YVfN6H0FrP4czmB36Xn3JnuQhFgiAIQgFue17p2QwyGUfRj4Gri4x/U2u9Pv11P4BSygbcCXxYa30WcAWQuUr9DnAbsDz9VewxTykyHc4yrbJrSyWjaCo4rA40moTVURBmDaZ1e28wSu3YIOvmy0w2BRCIBvA7/ViUGOAA6EprtnVnQ9P5EBmE/paiu/rcdgZHJw6zzjqKJMx6UpS7yql0GQFZHEWCMP14HB6guFC0u383faN9XNF0xSzPan7S2pvX8SyVMiHWjefBgg385NWf8Ka73zTjJ6nznWafdD4TBEEQCsk4iiLJyIw+zwmvvLXWTwIDk3y8NwI7tNavpI/t11onlVL1gFdr/Zw2y1A/Ba6f6qRni6xQNJAWiiTMekpkWi/GHO5xpWdH+kZIpHQuo2jgIAQOw9JckFogEqDcKflEWbp3QVkdlFZB03lmrG1L0V39JXaGjlN6Jo6ik2eZfxkuq0tKXwRhBshk0bUF28Zte/zY41iUhUsbLp3tac1LWntCOKwWGsvdcOQZ8/l83ocAODB4gIROZHMShJmh2dfM4eHDcz0NQRAE4RSiIMx6BnktFo2PKaV2pEvTMlfxKwCtlHpIKfWSUuqz6fEGIP+sry09dkqTcQ5kHEVSejY17BbjDIraS3KOonTp2YG0tT3rKGp91Nym84kgLRRJkHWO7l1Qly6LqlwOLt+EOUX+EjuDxyk96x+JYbeqrHAnnJi3Ln0rN624qWjQriAIr4311espd5Zz38H7xm17/NjjrK9ej9/ln4OZzT9aekI0V5Vis1rg4OOm0+bKawA4EDjAcv/yuZ3gPKDZ18xAZICh6NBcT0UQBEE4RSgIs55BpioUfQdYCqwHOoF/TY/bgEuA96Rvb1BKvQ4odkU1YYG7Uuo2pdRWpdTW3t7eKU7xteOyufDYPRweOgyIUDRVso4iuyvPUWSEokwGQk0mo6j1MfAvhIpcqFogKkJRlmQcevdB7VnmvsVicoqOvVh0d7/bwWB44tKzvmCUylJnoehx4BH44TUweHQ6Z37GcN2y6/jb8/52rqchCGckdqudNy95M48de6zg4rgz1Mm+wD4pO5tFWnpDuSDrI8/AgvXg9JBMJWkdbGV5uQhFM40EWguCIAhjcdnGhFnPEFMSirTW3VrrpNY6BXwPSNe/0AY8obXu01qHgfuBjenxxryHaAQ6jvP4d2itN2mtN1VXV0+026xQ6a5Eo/E6vGKxniIOq8m/idndEDOOIpfdgt2qskJRrddlRJBDTxo3UZ5wEYgEpMwnQ99+SMag9uzcWNP50LvXdKQZg9dtZ2g0MeHD9Y/EqBybT3T0OeNQKqmarlkLgiBMmuuXXU88FecPB/+QHXu87XEAEYpmiUg8ybGBMEtryszndvs2WHQxAEeDR4mlYgXh/sLM0OxrBkQoEgRBEHKc0qVn6cyhDDcAmY5oDwHrlFIl6WDry4HdWutOIKiUuiDd7ez9wG9fw7xnjUxOkbiJpo49HUodszmzpWdKKTwuO/0jxu1SXeY0J6LR4YKys2QqyVB0SBxFGbJB1nkduRo3Axrato7b3V9iZ2g0NmGHmv5QlKqx+UTtW6F2DThKpmnSgiAIk2dlxUpWV6zm3pZ7s2NPHHuCRd5F2QtnYWZpC4yS0tBcVWI6ayZjsNhkQ7UMmuYJy8pFKJppFpQtwG6xS06RIAiCkCXjKJrz0jOl1C+A54CVSqk2pdStwNfTre53AFcCfw2gtQ4AtwMvAtuBl7TWmSXBjwDfB1qAVuCB6X4xM0FGKJIg66njtBghImp3ZkvPIBdoXVHqwGGzmHwiZTEdz9IMRgfRaAmzztC9E6wOk02UoeFcQJmT+TH43XbiSU04liz6cH2hMY6iVAraX4aGTdM8cUEQhMlz3bLr2DOwh30D+xiJj7ClawtXNF4x19OaNxwLmEWdpvISU3amLLDwAgBaAi0oFEt9S+dyivMCm8XGIu+iouHugiAIwvzEbrFjU7YZdxSdMMFWa/3nRYZ/cJz97wTuLDK+FVg7/ohTm6xQVCpC0VTJlJ7FrU4YDWTHM4HWNZ60o6XzFaheBe6cKBSImP2l9CxN96vmPbLm/em6vFCzpmigtb/EvMeDo3FKnYV/7lpr+sY6ivpbIDoEjSIUCYIwd7y5+c3869Z/5d6We9lYu5F4Ks7lTZfP9bTmDW0DaaGoogQeewbq1pnPGkzHs4XehdkVTWFm+fHVP8br8M71NARBEIRTCLfNTSR5aoZZzxsq3abzmZSeTZ2MUBS12cc4ioyIUZsJsu7ZY0SQPAJRIxRJl5s0Xbug7uzx403nQds24wjKw+c2732xQOuRWJJoIkVlaZ6jqH2buW04d9qmLAiCcLL4XX6uaLqCPxz8Aw8feRivw8uGmg1zPa15w7HAKA6bhWqXNm7VxZdkt0nHs9nF5/RJl01BEAShAJfNNfelZ/MdySh67WTDrK2OQqHIbRwuNR4nxEZMl62a1QXHDkQGAKT0DCDUAyM9UFvEmNd0nnEC9e0rGPalXVtDo/Fxh/SHogCFjqL2reDwQNWK6Zu3IAjCFLh+2fUEogEeOPQAlzZeis1yQhO0MIZUasIGs8fl2ECYxnI3lo5tkIxmhaJIIsLR4FHJJxIEQRCEOcRtcxNOhGf0OUQoOgHVbtN1TTKKpo7TaoSImNWWDbMG8DjzHEV9BwAN1SsLjh2MDAJSegZA105zW1dEKFqw0dx2bC8YzpRp5N74AAAgAElEQVSeDYXHC0V9IeMyKsgoat9mWiBbrK99voIgCK+BixZcRI3bLNJIt7OTp3NolLP+7iGebe076WOPBcImn+jwM4CChRcCpvtWSqek45kgCIIgzCHiKDoFOK/+PD67+bNcWH/hXE/ltMVhyTiKCoWijKOo1us07d0Bqsc4iqLGUSSlZ0B3uuNZMUdR1XKwuaFrR8FwfkbRWPrGOoriEVPaJvlEgiCcAtgsNm5ccSNum5uLF1w819M57dh6OMBoPMnDu7tP+thjA6M0VbjhyNOm3NltPoMzHc+Wl0vpmSAIgiDMFS6ba8bDrEUoOgF2i533rXlftsW7cPJkS88sNkhEsjk6mYyiGq/LCEUWO1QUtj4ORAJ4HB7sFnn/6doFngVQUsRdZbEap1HnGKEom1FUrPRsjKOoayek4pJPJAjCKcNfrvtL/nDDH/A4PHM9ldOOVzuGAXj+4MBJHTc0GmdoNM4inw2ObRmXT+SwOFjoWTitcxUEQRAEYfK4bW5xFAmnP9kwa2u6nCmtfhZ0PevZC5XLYIwgF4gEpOwsQ/erxcvOMtStM46ivEBrl92Cw2ZhcHR8mHUmo6iyNO0oat9qbhvEUSQIwqmBzWKjuqR6rqdxWrK70whFe7uGizY0mIhj6Y5na2k1izuLcm6uA4MHWOJfInlRgiAIgjCHuK3S9Uw4A8hkFMUzuTfpQOsVtR78JXaaq0qNo6hm1bhjA5GABFlneMPfw0Ufn3h7/TqIDsPg4eyQUgq/2140o6h/JIbXZcNhS/8baNtqHEve+mmeuCAIgjCbaK3Z3THEkqpStIYXDk3eVdQWMELRkpHtgIJFF2W3HQgckHwiQRAEQZhj3Da3lJ4Jpz+ZsrGoSv+6pXOKLlxayfYvvxG/LQGBw1A9XigaiA5Q7hKhCIDlb4DmyybeXrfO3I4pP/O57UW7nvWGomM6nm2DRik7EwRBON3pDUbpC8X4s81NuOwWnj/YP+ljjw2YE8+K3i1Qe1a23Hk4Nkx3uFuEIkEQBEGYYySjSDgjyGUUKTMQH/NL3Z/peDaBo0iEoslRswaUtWigdfGMomgun2ikHwKHJJ9IEAThDCCTT7S+yc/GheUnlVN0LBCm3AX2jhcLys5aAhJkLUwdpZRLKbVFKfWKUupVpdTfp8e/oZTaq5TaoZT6jVLKnx5frJQaVUptT399N++xzlVK7VRKtSilvqWUUnP1ugRBEOYC6XomnBHYLDasykqMjFAULtyhJ9PxrFAo0lozGBmU0rPJYndBzeoijiJH0a5n/aFYzlHU8ZK5lXwiQRCE055MPtGaBV4uWFJ5UjlFxwbCbPCGzWd13dnZ8WzHM78IRcKUiAJXaa3PAdYDVyulLgAeBtZqrdcB+4HP5x3TqrVen/76cN74d4DbgOXpr6tn5RUIgiCcIkjpmXDG4LA6iGXWe2JjhKLevWCxQeXSguFgPEhCJ8RRdDLUrYPOVwqG/CV2hopcIPSPxHKOoratgIIF62dhkoIgCMJM8mrHEIsqS/C47FywpBKtYcskc4qOBUY5q2zI3PE3ZccPBA5QZi+jrrRuJqYsnOFoQyh9157+0lrrP2qtE+nx54HG4z2OUqoe8Gqtn9Naa+CnwPUzNW9BEIRTEZfNRTwVJ5FKnHjnKSJCkTArFAhFY0vPeifueAZI17OToX4djPRAsCs75HfbxzmKEskUgXAsr+PZNuNGckoLakEQhNOd3R3DrKn3AnBOkw+nzTKp8jOtNW2BMMucaaHIm7tmPzBogqylykeYKkopq1JqO9ADPKy1fmHMLn8BPJB3v1kp9bJS6gml1KXpsQagLW+ftvSYIAjCvKHEVgIwo+VnIhQJs4LD4iCmtbkztvSsd++E+USAOIpOhiKB1v4SO+FYklgilR0bCMfQGqrKHKC1EYokn0gQBOG0JxiJc7g/zFkLjFDktFk5d1H5pAKte0NRIvEUTda0qOQz199aa1oGWySfSHhNaK2TWuv1GNfQeUqptZltSqkvAgngZ+mhTmCh1noD8DfAz5VSXqCYUqnHDiilblNKbVVKbe3t7Z3ulyIIgjCnuKwuACJJEYqE0xyH1UHMajV3unflNsRHJ+54FjEnqiIUnQSZPImuXPmZz22cWvmdz/pDphStssxp3v/RAWjYOGvTFARBEGaGPZ1BwOQTZbhgSSV78nKKtNb8vwf28IlfvFxwbKbjWa3ug5JKsLsB6B3tZSg6JB3PhGlBaz0IPE46W0gpdTPwFuA96XIytNZRrXV/+vttQCuwAuMgyi9PawQ6ijzHHVrrTVrrTdXV1TP4agRBEGYfl80IRTOZUyRCkTArOKwOosoCK66GF7+fKz/rOwA6BdUrxx2TLT1zSunZpHF5oWJJgaPIV2JyiIZGczlFGaGoqsxpfgYANWfN3jwFQRCEGWF3hykbO2uBLzuWn1NkRKK9/PcTB/ndKx0c7c+5fNsC5nt/vBt8uWvxx44+BsCK8hWz8RKEMxClVHVeRzM38Hpgr1LqauBzwNu01uEx+1vT3y/BhFYf1Fp3AkGl1AXpbmfvB347yy9HEARhTnHbzEKOCEXCaY/T6iSWisFFH4dwP7zyC7Ohd5+5rVk97phA1AhFfpd/tqZ5ZjAm0NqfdhQNhvMcRSNRABNm3W862YwNExcEQRBOP17tGKaqzEGNx5kdy88p+o9HW7jjyYNce7YJpf7j7lymXUY0co92ZfOJDgQO8C9b/4Xz685nQ82GWXwlwhlGPfCYUmoH8CImo+g+4D8BD/CwUmq7Uuq76f0vA3YopV4B7gY+rLXOBG19BPg+0IJxGuXnGgmCIJzxZBxFM5lRZJuxRxaEPBwWB7FkDBZdDPXr4bn/go23QO8e0/GsYrxIMRAZwG1zZxVTYZLUr4Pd98LoILj9+EvGC0W9QSMUVZU6YaAVXD5TZiAIgiCc1uzuHGZ1vbcgdDqTU/S/Lx5lJJbkpo2NfOPt67i29yke3t3NBy9dAsCxQJiqMieW4XZovoxwPMynnvgUpfZSvnbZ17BarHP1soTTHK31DmCc0qi1LlrPqLW+B7hngm1bgbXFtgmCIMwHxFEknDHYrXYjFCllXEX9LbD/QeMoqlgKNse4YwYjg5Q7JZ/opKk7x9x27QTA786UnuU7imLYrQqv22Z+FhVLzc9GEARBOG2JJVLs7w4WlJ1luGBJJSOxJNeeXcc/33Q2FoviDWtqefHwAIERU458bGCUlf4URIfR3gX84/P/yOGhw/zzZf9Mlbtqtl+OIAiCIAhFyAhF0vVMOO1xWp1GKAJYcz34muDZ/4CePUXziQAGogMSZD0V6tOdz7pMTpEv4ygqCLOOUlnqNCvO/QehUgJKBUEQTndaekLEk7ogyDrDzRcu5v+3d+dxcpV1vsc/v67q6q4knYQkndBJCAlLkCSEhERAkEXQgct4ZRkXlGVULiAjXhF1vOr1NeIy43oZVxgYFB1G1AEV2RRQIeqgsiUdEoIkLCEk9JKQpJPudHr53T/OqU51p9Pp7nSdqqf6+369zitVZ6n+1nOqzpN++nme8/lz5/Ov71pMOhX99+8t86bR7fCbNY1A1KPomJpoMuxfdDZz9/N3c9WxV3FC3QnJvQkREREZUO6uZ21d6lEkgctUZKI5igBSaTjxKlj/39Gwp37mJwJo2NmghqLhGDcVaup6JrSuqUpjBttae09mPXlcBjp2wbaXNT+RiEgZWNUzkfXeDUUTxlRyyRtmk0nv+a/fMTMmcPD4ah5c/SqdXd1s2raLI6u202bGv7x8P8cffDxXLLwisfwiIiKyf9n4rqRtHUVsKDKz75lZo5k9nbfus2b2Sjzp3HIzOydeP9vM2vLW35h3zMNm9mzetqmFeUtSijKpzJ4eRQDHXQpVcdf4fnoU1TfVs3brWk6efnJCCctM3oTWFRXGhGxlrx5FzTvamTyuCl57AXD1KBIRKQOrN20nW5li9uSxg9rfzHjzvKks+2szL27eSVe3c2h6M5vSKdq6d3PBkRdoXiIREZESk+tRtKuruEPPbgXO7mf99e6+KF7uy1u/Lm/9B/occ1HetsbhhpbwZFIZ2rva96yoqoGl740eT5231/4/WPUDaiprOP/I85MJWG7qFkLzs7A7vtVxtrJnMuvNO9rZtG0XU8bm3fFs0mE9hy5vXM4X/vQFNrdtTjy2iIgM36qN2zm6roZUxeDnnHvLvINp6+jix395GYBpbKYhnjdw2phpBckpIiIiw1cScxS5+zJgy/72ExlIVaqKjq6O3itP+wS884d7DT17ZccrPLT+Id5+1NsZWzm4v4pKH3WLwLuhYRUAE8ZkeOKl1zjvO39k6RcforGlncOnjoPN66L984aerdq8ip88+5Ned8wREZHS1t3tPLNxe78TWQ/kDYdNpqYqzU8eixqKJnU20jAuugvmtLFqKBIRESk11el4jqISvevZ1WZWHw9Ny59IZo6ZPWVmj5jZKX2O+X487Owzpt9CR5XKikrau9t7r8yMhXnn7rXvbatvo4IK3vO69ySUrgzVxXc+27QcgEMnjWHjtuhCcs2Zc/nl1SfzD6cfHvUoGlsL1Xt+sWhqbSJdkWZi1cTEY4uIyPA48M13L+Zdrz9kSMdl0hWcdlQtLe2dpCqMbNurNGSjOY6mjtEsASIiIqWmwiqoSlUVtEdRepjH3QB8nuj/JZ8Hvg68H9gEzHL3zWa2BPiFmc139+1Ew85eMbMa4E7gEuCH/b24mV0BXAEwa9asYUaUUtLrrmcDaNndws+e+xlnzTmLg8cenECyMjVhJoyZ3NNQ9JW3L+Rz585n4phM7/227H3Hs6a2JmqztVSY5roXEQlFqsJ40+uG17DzlnnTuKd+E3UTqqnYvoGGKZOZlK6kKlU1wilFRERkJGTTWVo7Wwv2+sP6TdDdG9y9y927gZuB4+P17e6+OX78BLAOmBs/fyX+twX4Ue6Yfbz+Te6+1N2X1tbWDieilJi9JrPehzv/eietna1cOu/SBFKVMbNo+NnGaELr6srU3o1EEPUomtT7jmcNrQ3UjtH3TkRktDj9qKmkK4xZE6th+0YaUhWan0hERKSEVaeriztHUX/MrC7v6fnA0/H6WjNLxY8PA44EnjeztJlNiddXAm/NHSOjQ2Wqki7vorO7c5/7dHR3cNszt/H6g1/PvMl7T3AtQ1R3LDQ9Ax37uIC0t8COhl7zE0E09Ey/IIiIjB4TspV86IwjuXhhFrp200CX6gEREZESlk1ni3vXMzO7HXgUOMrMNpjZZcBXzGylmdUDbwI+Eu9+KlBvZiuAO4APuPsWoAr4dbz/cuAVop5IMkrkuq8P1KvowRcfpKG1Qb2JRsr0RdDdCY2r+t/ez0TWEDUU1WbVo0hEZDT58JuP5JxZ3QA0dLVqImsREZESVp2qLuhk1vudo8jd393P6lv2se+dRPMP9V2/E1gy5HRSNjIV0bCnju6Ofe7zwEsPUDe2jlNnnppUrPJWtyj6d+NymNHP129LrqFozxxFrR2ttHS0aOiZiMhotG0Du8zY2tmqHkUiIiIlLJvOlt7QM5GhyqSihqJ99Shyd1Y0reC4acdpEuWRMnEWVE/smdB6L7keRQfN6VnV3NYM6E43IiKj0rZXaEylANSjSEREpIRl09mC9ijSb+SSiFxDUXtXe7/bN+7cSHNbM8fWHptkrPJmFg0/27Si/+2b18H4mZAZ07OqobUBQEPPRETKQcMq6O4e/P7bNtBQPRZAPYpERERKWHW6sEPP1FAkieiZo6i7/x5F9U31AGooGml1i6BhNXT200C3eS1MPqzXqqbWJkC/IMjIMLNDzOx3ZvaMma0ysw/H698RP+82s6V5+1ea2Q/iOfCeMbNPFi+9SOBW/RxuOAnqfzz4Y7Zv4NVxkwHVAyIiIqVMQ8+kLOTmKNrX0LMVTSvIprPMPWhukrHKX92x0N0Bjav33rZlXa/5iQCa2qKGIs1RJCOkE/ioux8NnAh80MzmEd318gJgWZ/93wFUufsxRPPaXWlms5OLK1ImdjbDvR+LHq+8o/99mv4Ka3/Te922DTRkxwMagiwiIlLK1KNIysL+5iha0biC+ZPnk67Y7/zqMhTT4wmt+w4/a90Cba/BpN53PGtsbSSbzjKuclxCAaWcufsmd38yftwCPAPMcPdn3P3Z/g4BxppZGsgCu4HtiQUWKRf3fwJ2bYOj/haefxh2bt57n19eDbdfCC0Ne9Zt20BDpprxmfGMqRyz9zEiIiJSEqpT1ezqUo8iCdxAcxTt6tzFmi1rNOysEA6aA9UTojuf5du8Nvq3T4+ixtZGarO1mFlCAWW0iHsGLQb+PMBudwA7gU3AeuBr7r6l4OFEysmae+HpO+C0f4TTPwHeBWvu7r1Pw2p4+c/QtRseuzla19kOOxpoSFVoImsREZESlxt65u4FeX01FEkicg1FHV0de21bvXk1nd6phqJCMIuGn/W981nujmf9NRRp2JmMMDMbB9wJXOPuA/UQOh7oAqYDc4CPmtlh/e1oZleY2eNm9nhTU9OIZxYJUttrcM+1MO0YeONH4OCFUc/Rp3/We78nvg+pDMw+BR67BXa3wvaNADTQofmJRERESlw2naXLu+jo3vv365GghiJJxEA9ilY0RcOiFtYuTDTTqFF3bHTnm/xGus1rwVJw0KG9dm1qa9K8FDKizKySqJHoP939Z/vZ/T3Ar9y9w90bgT8CS/vb0d1vcvel7r60tlaNmyIA/PrTsLMJzv02pCqjPxbMPx9e/D3siBtUd7fCip/AvHPhTZ+Cti2w4nbY/goADZ2taigSEREpcdl0FqBg8xSpoUgS0TOZdT93PVvRtIJDag5hcnZy0rFGh7pF0fCCxmf2rNuyLmokSlX2rHJ3mlqbmJpVQ5GMDIvGMN4CPOPu/28Qh6wHzrDIWKIJsNcUMqNI2WjbGjUIvfGaPfPTASy4ALwbnrkrer7qZ9C+DZa8D2a9AaYfB3/6LmxdTwewuaNFQ89ERERKXHW6GlBDkQSuKlUF7D2ZtbuzommFehMV0vTF0b+54Wfd3dD83F4TWbd0tLCra5eGnslIOhm4hKjxZ3m8nGNm55vZBuANwL1m9ut4/+8A44juivYY8H13ry9KcpHQZCfCVY/Cqf/Ye/3UeTBlLqz6RfT88e/DlKPg0JOiHkcnXR31Mn38ezSmUwAcPObghMOLiIjIUOQainZ1FmZCa91iShKxr7uebdy5kea2Zs1PVEgHzYFMDdT/FF78I6x9CFqb4fA39dqtcWcjoFsiy8hx9z8A+5oZ/ef97L8DeEdBQ4mUs6p+7lhpBvMvgEe+DM89BK88Dmf9S7Qe4OhzYcIhsOExGsZPAdDQMxERkRKXG3pWqDufqUeRJKKnoajP0LMVjdH8RGooKqCKCpi5JBqS8NwDUQPR+TfB6Z/qtVtjW9RQVJtVjyIRkbIy/3zA4edXQqoKjr1wz7ZUGk74AAANNXFDkYaeiYiIlLRsqrBzFKlHkSSiZ46iPj2KVjStIJvOMvegucWINXqcdyO0bIzmK6pI9btLU2s00an+kiwiUmamvi4agta4GhZeCGMm9d5+3KXwyJdpyE6ALk1mLSIiUuqylZrMWsrAvuYoqm+qZ/7k+aQr1GZZUOPrYMaSfTYSQXTHM4ApY6YklUpERJIy/4Lo36Xv23tb9Xi45Bc0zFrC2MqxjMv0M4RN5ACYWbWZ/cXMVpjZKjO7Ll7/VTNbY2b1ZvZzM5uYd8wnzWytmT1rZmflrV9iZivjbd+Mb5wgIjKqVKc0mbWUgVxDUHtXe8+6XZ27WLNljYadlYjG1kZqMjU9411FRKSMvOGDcNGdMOvE/rfPXEJDd7t6E0mhtANnuPuxwCLgbDM7EXgQWODuC4G/Ap8EMLN5wIXAfOBs4Ltmlvtr1w3AFcCR8XJ2km9ERKQUFHoyazUUSSLMjExFptccRas3r6bTO9VQVCIaWxuZmtVE1iIiZSkzBo5884C7NOxsUEORFIRHdsRPK+PF3f0Bd++M1/8JmBk/Phf4sbu3u/sLwFrgeDOrA8a7+6Pu7sAPgfOSeyciIqWhZzJrNRRJ6KpSVb2Gnq3ZsgaA+VPmFyuS5GlqbaJ2jCayFhEZrV5tfVUTWUvBmFnKzJYDjcCD7v7nPru8H7g/fjwDeDlv24Z43Yz4cd/1IiKjSq6hSEPPJHiVqcpeDUUvt7xMNp3VXbZKRGNbI1PHqEeRiMho1NndSXNbs3oUScG4e5e7LyLqNXS8mS3IbTOzTwOdwH/mVvX3EgOs78XMrjCzx83s8aampgMPLyJSYnp6FHWpR5EEripV1WuOopdbXuaQmkPQHITF1+3dNLc2q6FIRGSUam5rptu71aNICs7dtwIPE88tZGZ/D7wVuCgeTgZRT6FD8g6bCWyM18/sZ33fn3GTuy9196W1tfqDpIiUn8qKSiqsQj2KJHyZVIaOro6e57mGIim+13a9Rqd3qneXiMgo1dDaAKAeRVIQZlabu6OZmWWBNwNrzOxs4BPA29y9Ne+QXwIXmlmVmc0hmrT6L+6+CWgxsxPju51dCtyV6JsRESkBZkZ1qrp4DUVm9j0zazSzp/PWfdbMXjGz5fFyTrx+tpm15a2/Me8Y3cpylMuk9kxm3e3dbGjZoIaiInlx24vs2L2j53ljayOAehSJiIxSDTvVUCQFVQf8zszqgceI5ii6B/g2UAM8mP+7g7uvAn4KrAZ+BXzQ3bvi17oK+HeiCa7XsWdeIxGRUSWbzhZsMuv0IPa5legi/sM+669396/1s/+6ePxxX7lbWf4JuI+ou6ku7KNIpiLTM/SssbWR3d271VBUBLs6d3HhvRdy2szT+PKpXwagqS0av6/JrEVERqdcj6KDxx5c5CRSjty9Hljcz/ojBjjmi8AX+1n/OLBg7yNEREaX6nQRexS5+zJgy4H8EN3KUiCaoyg39OzlluhGFmooKozdXbt7yrivx159jJ0dO3ngxQd4deerwJ4eRfpLsojI6NSws4HqVDXjM+OLHUVEREQGoZA9ig5kjqKrzaw+Hpp2UN76OWb2lJk9YmanxOt0K0uhMlXZ06No/fb1gBqKCuVLf/kS5991Plt3bd1r2yMbHqEqVUU33fzk2Z8A0NQa9SianJ2caE4RESkNDa0NTBs7TTeYEBERCUQ2naWtq7Qms74BOBxYBGwCvh6v3wTMcvfFwLXAj8xsPIO8lWWObmlZnjIVe+YoernlZdIVaXVxH6bO7k4++vBHeXTjo3tte2n7S/zsuZ/R3tXOg+sf7LXN3Vm2YRknTT+JNx3yJu746x20dbbR2NbIpOpJVFZUJvUWRESkRHR0dfDi9hfVq1RERCQg1elq2jpKqKHI3Rvcvcvdu4GbgePj9e3uvjl+/ATRBHNzGeStLPNeX7e0LENVqSp2d0UNRetb1jNj3AzSFYOZJkv6Wrt1LQ+89ACf+sOn2Na+rde27zz1HTKpDDPGzeC+5+/b67hNOzdx2szTuPjoi9navpV7n7+XxtZGTWQtIjLKuDu/eek3nHvXuazZsoYT604sdiQREREZpGw6y66uEhp6Fs85lHM+8HS8vtbMUvHjw4huZfm8bmUpEA09yzUU6Y5nB6a+qR6AzW2b+cpjX+lZv2bLGu5/8X4uPvpizj/ifJ5oeKJnHiKIhp0BnDLzFJZMW8LRk47mttW30djaSG1WjbIiIqPF+u3red+v38c1D19DpiLDDW++gcsXXl7sWCIiIjJI1akiTmZtZrcDjwJHmdkGM7sM+Ep8q/t64E3AR+LdTwXqzWwFcAfwAXfPTYStW1mOclWpKtq72nF31resV0PRAahvquegqoO4fOHl/HLdL1m2YRkA33rqW4zPjOe9C97LOXPOwXF+9cKveo77/Ybfc/Sko5k6ZipmxsXzLmbdtnU8u+VZ9SgSERlFrn/ietZsWcNnTvwMd7ztDt44443FjiQiIiJDUNTJrN393e5e5+6V7j7T3W9x90vc/Rh3X+jub4t7DOHud7r7fHc/1t2Pc/e7817ncXdf4O6Hu/vV8d3PZBTJVGTo6O7gtfbX2NmxUw1FB2Bl80oW1i7kyoVXcsTEI7ju0etYtmEZyzYs4/0L3s/4zHgOGX8IC6cs5L4XouFnW3dtZXnTck6deWrP65w9+2wmV0/GcTUUiYiMEu7Ok41PcuasM3nnUe/UMHAREZEAVaerS/KuZyJDkkllet22fVbNrCInCtP23dt5ftvzHDPlGDKpDJ8/+fM0tzXz4d9+mNpsLe85+j09+55z2Dk8s+UZnt/6PH/Y+Ae6vZvTZp7Wsz2TyvCu170LgNoxGnomIjIarG9Zz5ZdW1g8dXGxo4iIiMgwZdPZ4g09ExkpmVSG9q521m9fD6AeRcP0dPPTABxTewwAC6Ys4O/n/z2d3smVC68km8727HvW7LOosArue+E+lm1YxqTqScyfMr/X61141IWcPP1kXj/t9cm9CRERKZonG54EUEORiIhIwHKTWXd794i/tvoaS2KqUlV0dHfwcsvLGMaMmhnFjhSk+qZ6DOOYKcf0rPvQ4g9x4sEnckLdCb32nZKdwgkHn8C9z9/Ltt3bOOOQM6iw3u3DB1UfxI1vuTGR7CIiUnxPNT7FhKoJzJkwp9hRREREZJiq09UAtHe19+osMBLUo0gSk0llAFi3dR3Txk6jKlVV5ERhWtm8kjkT5lCTqelZV1lRyUkzTiJVkdpr/3MOO4cNOzbQsruF0w45ba/tIiIyujzV+BSLaxfv9YcDERERCUeucagQw8/0PwRJTGVFJRA1FGnY2fC4OyubVvbqTbQ/Z846k0xFhnRFmjfUvaGA6UREpNRt2bWFF7e/yKKpi4odRURERA5AdSrqUVSICa019EwSk+tB9NL2l/Qf1GHa0LKB19pfY2HtwkEfU5Op4YIjL6C1s5VxmXEFTCciIqXuqcCmRhIAABSZSURBVManADhu2nFFTiIiIiIHopA9itRQJInJDT3r9E5m1swscpow1TfXAwypoQjg0yd+uhBxRESkhOzu2k26Ij3gkLLljcvJVGSYP3n+PvcRERGR0pdrKCpEjyINPZPE5BqKQHc8G66VzSvJprMcMfGIYkcREZESsn33di667yJuXXXrgPs92fgk86fM71Uni4iISHhyk1lrjiIJWqZiz39KZ9XMKmKScNU31TNv8jzSFeoMKCIie9RU1jCrZhbffPKbPcPL+trVuYvVm1ezeOrihNOJiIjISNNk1lIW8u9yph5FQ7e7azdrtqxh4ZShDTsTEZHyZ2Z89qTPMn3cdD7+yMfZumvrXvs83fw0nd2dHDdV8xOJiIiELtejaFeXhp5JwCpT0V3PJlVP0qTKw7Bmyxo6ujs4pnbwdzwTEZHRoyZTw9dO+xpbdm3h03/8NN3e3Wt7rqeRbighIiISvmxKPYqkDOR6FGki6+Gpb4onslaPIhER2Yd5k+fx8dd/nGUblvGDVT/ote3Jxic5fMLhTKiaUKR0IiIiMlKylYWbzFoTnUhicnMUadjZ8NQ31zN1zFSmjZ1W7CgiIlLCLjzqQh579TG+8eQ32NGxg3fOfSe1Y2pZ0biCs+acVex4IiIiMgKqU4WbzFoNRZKY3B1WNJH18NQ31as3kYiI7JeZcd1J19HV3cXN9Tdzy8pbOP7g42npaNH8RCIiImWikHc9U0ORJGZi1UQqrIK5B80tdpQg3XbObbR2tBY7hoiIBKAmU8M3zvgGG1o28NNnf8qdz91JylIsmbak2NFERERkBKQr0lRWVGromYRt2thp3H3e3Rp6NkxTslMgW+wUIiISkpk1M7l26bVctegqGnY2MH3c9GJHEhERkRFyw5tvYPrYka/b1VAkiZo1XsPOREREkpZNZ5k9YXaxY4iIiMgIOqHuhIK8ru56JiIiIiIiIiIigBqKRERERESkgMys2sz+YmYrzGyVmV0Xr39H/LzbzJbm7T/bzNrMbHm83Ji3bYmZrTSztWb2TTOzYrwnEZFypqFnIiIiIiJSSO3AGe6+w8wqgT+Y2f3A08AFwL/1c8w6d1/Uz/obgCuAPwH3AWcD9xcmtojI6LTfHkVm9j0zazSzp/PWfdbMXslr5T+nzzGzzGyHmX0sb93DZvZs3jFTR/atiIiIiIhIqfHIjvhpZby4uz/j7s8O9nXMrA4Y7+6PursDPwTOG/nEIiKj22CGnt1K1FLf1/Xuvihe7uu7jf5b9i/KO6ZxiFlFRERERCRAZpYys+VAI/Cgu/95P4fMMbOnzOwRMzslXjcD2JC3z4Z4Xd+fdYWZPW5mjzc1NY1IfhGR0WS/DUXuvgzYMtgXNLPzgOeBVQeQS0REREREyoS7d8VDyWYCx5vZggF23wTMcvfFwLXAj8xsPNDffETez8+6yd2XuvvS2trakYgvIjKqHMhk1lebWX08NO0gADMbC3wCuG4fx3w/Hnb2mYEmntNfAUREREREyo+7bwUepv8RC7l92t19c/z4CWAdMJeoB9HMvF1nAhsLFlZEZJQabkPRDcDhwCKiFv+vx+uvIxqStqOfYy5y92OAU+Llkn29uP4KICIiIiJSHsys1swmxo+zwJuBNfvZPxU/Pgw4Enje3TcBLWZ2YvxH50uBuwr+BkRERplh3fXM3Rtyj83sZuCe+OkJwNvN7CvARKDbzHa5+7fd/ZX42BYz+xFwPNEEdCIiIiIiUr7qgB/EjT8VwE/d/R4zOx/4FlAL3Gtmy939LOBU4HNm1gl0AR9w99xUGFcRzaGaJZoTVXc8ExEZYRbdMGA/O5nNBu5x9wXx87q4RR8z+whwgrtf2OeYzwI73P1rZpYGJrp7c3xLzNuBh9z9xkH87CbgpSG8pylA8xD2LwUhZoYwcytzckLMHVrmQ9191He7VD1R0kLMrczJCTF3aJlHfT0xjDoCwjvPEGZmCDO3MicnxNyhZe63nthvjyIzux04HZhiZhuAfwJON7NFRJPHvQhcuZ+XqQJ+HTcSpYCHgJsHk3qolZuZPe7uS4dyTLGFmBnCzK3MyQkxd4iZRfVEKQsxtzInJ8TcIWYe7YbTUBbieQ4xM4SZW5mTE2LuEDP3Z78NRe7+7n5W3zKI4z6b93gnsGRIyUREREREREREJFEHctczEREREREREREpI+XYUHRTsQMMQ4iZIczcypycEHOHmFmGLsTzHGJmCDO3MicnxNwhZpahC/E8h5gZwsytzMkJMXeImfcyqMmsRURERERERESk/JVjjyIRERERERERERmG4BqKzGxasTMMh5nVmZkVO8dQhFjWKufkqKylVIV4nkP8PoHKOikhljOorKV0hXieQ/w+gco6KSGWM6isS1kwDUVmNs7MrgfuN7N/M7MLip1pMMysysxuAB4Bbgohd4hlrXJOjspaSlWI5znE7xOorJMSYjmDylpKV4jnOcTvE6iskxJiOYPKOgRBNBSZ2QzgP4jynkP0gfpKUUMN3tuAOnefC9wDfM7M5hY50z4FXNYq5+SorKXkBHyeg/o+gco6KQGXM6ispQQFfJ6D+j6ByjopAZczqKxLXhANRcAu4N/d/cPu/irwU2C5mS0scq5+mdm4vKcONAG4+13Ar4ArzWxiMbINQjBlrXJOjspaAhDMeQ78+wQq66QEU86gspYgBHOeA/8+gco6KcGUM6isQ1OSDUVmdpSZ3WhmWQB33ww8nLfLIcBhwLNFiLdPZnaEmf0UuNXM/tbMxgJtwHYzmx7v9lXgOGB+fExRx2SGWNYq5+SorKVUhXieQ/w+xRlU1gkIsZxBZS2lK8TzHOL3Kc6gsk5AiOUMKutQlVxDkZm9kahb1xXAtfE6c/edebtlgBfdvb0IEftlZhXAvwIrifK/FfgM8BDwOuBYM8u4ewNRV7WPALi7FydxmGWtck6OylpKVYjnOcTvE6iskxJiOYPKWkpXiOc5xO8TqKyTEmI5g8o6ZCXXUARsBt4PzAXeZ2aH9vNBWQysAzCzy600unzVAVuBf467z30BOANYBNwKvDN+DPBj4DUzqyxCznwhlrXKOTkqaylVIZ7nEL9PoLJOSojlDCprKV0hnucQv0+gsk5KiOUMKutglVxDkbs/A6x197XAg8DnoKc1MudMYLKZ3Qm8h2jMYFG5+yvAUuAtec+/C1zn7v8F/BX4pJl9lOhL8Ly7dxQrb5wxiLLO73oYSjn3yRxEOffNFFBZ52cOpqxl+EI8z6F8n/oKpaxVTyRH9YSEIMTzHMr3qa9Qylr1RHJUT5QJdy/KAkwBpuU9t76PgRpgLXBmn2PvB1YBby9C7jrgpD7rUvG/7wX+kLd+ItFEV68HDDgF+AZwcbEzl3pZx5kvC7CcL9vHtpIs5/hnzwC+BmQCKuu9ModQ1lqGfJ6DqydCrCP2lTuQslY9kUxu1RNaSnJRPVHc3IGUteqJZHKrniizpTg/FP4vsAa4A/hSvK6izz65D9Y1wD3x43fHH6bTi1Zg0QfifuC4/A9RLjPwW+CavHU/ABYU9SQPkLkUy5po3OoTwLX72F5y5by/zKVYzvHP/wDwNPBtYFx/38MSLOsBM5dqWWsZ8nkOsp4IsY7YX+5SLGvVE4nmVj2hpSQX1ROlk7sUy1r1RKK5VU+U4ZL0CakCvkTUglgLTANagUn97Jt/0XwN2AbcAlQX6cNUEX+IfgV8mWiirbG5bXn7LQFeAM4DLo6/7PNKMPNef3EphbImatVtASr385kopXLeZ+YB8he7nHOt5N/a10U6b5+SKOvBZC7FstYy5PMcZD0RYh0xiNyqJxLIPED+Ypez6gktJbmoniip3KonEsg8QP5il7PqiTJekp6jqAP4hru/092bgKOBu4i62PXi7m5mE8zsq8DLwDnufpm7F2X8n7t3u/sOoq5nTcBsog887t4NYGYpd3+CqNVxMdFM6R9299UlmNnz9iulsv53or9YVJvZXDN7v5mdmJ/ZzCpKqZwHypyvlMo5zmLA6UCTmc03s6+a2XvNbFLePiXzmR5M5j77lkRZy5AFWU+EWEfksqmeKG7mfKVUzqonpISpnkiQ6oniZ85XSuWseqLMDaVVaagLMBm4CTgtb12uFe9vgBeBrwN/IerGlepzfAWwsJAZB5s7Xj8buDV+fC1Rq/o1wMz891aMZbiZi1nWA2T+DNF/Av4b+CfgJeBS9nT/K8VyHjBzMct5X7mJuoF+DrgeeAC4ErgP+Gfgdbm8pVTWg8lc7LLWMiLnuaTriRDriAPJXaJlrXoigdyqJ7SUwqJ6ovRzl2hZq55IILfqifJdCnlSDgV+TnR7uRvp0x00PmkV8eO3Ao+xn652CX2Y9pf7G/GH69+IZje/XZlHNjMwiWjc+Zj4+f8E/tT3IqnMB5abaHzt5cAjwOXxumOA7wGnKrOWYp3nvO0lV0+EeL0NNXeI19wQMw+Uu5SvuSFm1jJy5zlvu+qJUZw7xGtuiJkHyl3K19wQM5fSUsihZzuALwJz4pN0Zp/bzm32uJulu98T7z+jgHkGa5+5zWwhsBCoJ+re+jVgrZkdWaSsOWWV2d23uPsX3L01fn430AbMLFbYWIiZof/caY+uir8BniPqBoq7ryS6g0h3kbLmhJhZhi7EeiLE6y2EmTvEa26ImSHMa26ImWXoVE8kJ8TcIV5zQ8wMYV5zQ8xcMkakoSge59eLu28GVrn7duB2oq6gM/KOyV14jjazO4m61m0ciTyDNdTc7l4P/AH4iLu/jWgyq1aiVnVlHqHMfY6dZ2Y/J+pWnNjnI8TM8c8ebO7p8bbnge8Ak8zsejO7i+i68IIyy0gKsZ4I8XoLYeYO8ZobYub4Zwd3zQ0xswyd6onkhJg7xGtuiJnjnx3cNTfEzCXvQLskAZk+z/sd70l068qPsKd7aBa4hKhl+oMHmiOB3JlCZ1LmXp+PSuD8Ynw+Qsw8zNzpvHWTgb8DLlNmLSVwnoteT4R4vQ01d4jX3BAzDzN30a+5IWbWksh5Vj0xinKHeM0NMfMwcxf9mhti5hCWAz0pHwKWE00G9bbciYFet3jMTRh2GvBL4AjgMuBgou5d2cTf9PBzvx84tCgnanRlvoyoW+tEEr79YIiZR+DzMSewz0fRMmtJ9DwXrZ4I8Xobau4Qr7khZh6Bz4fqCS2leJ5VT4yC3CFec0PMPAKfD9UTZbYcyEk5DfgzcBxwIfA4cHKffRb2ef5bYHv874wifZgOJPdv6DO7vzKXz+cjxMwjkPuhAD8fRcmsJfHzHOJ1oCjX21Bzj8LPh+qJMs+sJfHzHOJ1QPWEPh8ll3kEcqueKMNlOCck1y3u74Dr8tZfBdTHj6cB/wH8nmgcYBXwXqJxw+cV5Y0GmFuZlbnccoeYWcvoOM8hZg41tzIrd7ll1jI6znOImUPNrczKXW6ZQ1wGezLSwMeAQ/LWvR34XZ/9VgAXA/OB/91n26wifIiCy63MylxuuUPMrGV0nOcQM4eaW5mVu9wyaxkd5znEzKHmVmblLrfMoS+DOSnHAE8CDcDtfbatAS7Je/5W4N6+J7UobyzA3MqszOWWO8TMWkbHeQ4xc6i5lVm5yy2zltFxnkPMHGpuZVbucstcDksF+9cMfBN4HTDbzP4mb9u1wBfMrDp+vhFYY2aVudtVunvnIH5GIYSYW5mTEWJmCDN3iJll6EI8zyFmhjBzK3NyQswdYmYZuhDPc4iZIczcypycEHOHmDl4FreyDbyTWdbd28zsSuDd7n563rZbgXaiCaHeAWx39/9VmLhDE2JuZU5GiJkhzNwhZpahC/E8h5gZwsytzMkJMXeImWXoQjzPIWaGMHMrc3JCzB1i5tANqqGoZ2ezLPBz4D53/2a8bgLwRuB9wDPu/plCBD0QIeZW5mSEmBnCzB1iZhm6EM9ziJkhzNzKnJwQc4eYWYYuxPMcYmYIM7cyJyfE3CFmDpYPfYzgWcCffc94wdr4cWaor5XkEmJuZVbmcssdYmYto+M8h5g51NzKrNzlllnL6DjPIWYONbcyK3e5ZQ5xGcwcRb24+6+B18ysHfgXIDf2b/dQXytJIeZW5mSEmBnCzB1iZhm6EM9ziJkhzNzKnJwQc4eYWYYuxPMcYmYIM7cyJyfE3CFmDlF6KDvHE0J9DjgauNrdby5IqhEWYm5lTkaImSHM3CFmlqEL8TyHmBnCzK3MyQkxd4iZZehCPM8hZoYwcytzckLMHWLmUA1pjiIAM/sfwG/dvb0wkQojxNzKnIwQM0OYuUPMLEMX4nkOMTOEmVuZkxNi7hAzy9CFeJ5DzAxh5lbm5ISYO8TMIRpyQ5GIiIiIiIiIiJSnIc9RJCIiIiIiIiIi5UkNRSIiIiIiIiIiAqihSEREREREREREYmooEhERERERERERQA1FIiIiIiIiIiISU0ORjHpmNtHM/iF+PN3M7ih2JhERKR2qJ0REZCCqJ6TcmLsXO4NIUZnZbOAed19Q5CgiIlKCVE+IiMhAVE9IuUkXO4BICfgScLiZLQeeA4529wVm9l7gPCAFLAC+DmSAS4B24Bx332JmhwPfAWqBVuByd1+T/NsQEZECUT0hIiIDUT0hZUVDz0Tg/wDr3H0R8PE+2xYA7wGOB74ItLr7YuBR4NJ4n5uAD7n7EuBjwHcTSS0iIklRPSEiIgNRPSFlRT2KRAb2O3dvAVrMbBtwd7x+JbDQzMYBJwH/ZWa5Y6qSjykiIkWiekJERAaiekKCo4YikYG15z3uznveTfT9qQC2xn89EBGR0Uf1hIiIDET1hARHQ89EoAWoGc6B7r4deMHM3gFgkWNHMpyIiBSd6gkRERmI6gkpK2ooklHP3TcDfzSzp4GvDuMlLgIuM7MVwCrg3JHMJyIixaV6QkREBqJ6QsqNuXuxM4iIiIiIiIiISAlQjyIREREREREREQHUUCQiIiIiIiIiIjE1FImIiIiIiIiICKCGIhERERERERERiamhSEREREREREREADUUiYiIiIiIiIhITA1FIiIiIiIiIiICqKFIRERERERERERi/x/svkbYi/37rAAAAABJRU5ErkJggg==\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "import matplotlib.pyplot as plt\n", + "\n", + "stock_symbols = ['GOOGL','MSFT','AMZN'] \n", + "fig, axarr = plt.subplots(1,3)\n", + "pricesdf = tsdf[['max(price)','avg(price)','min(price)']]\n", + "\n", + "for sym, ax in zip(stock_symbols, axarr):\n", + " pricesdf.xs(sym, level='symbol').plot(ax=ax, title=sym, figsize=[20,5])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Read the Sentiments Feed as Pandas DataFrame\n", + "Streaming data generated in by nuclio functions can be read in real-time or historically. It can be distributed to multiple workers for scalability via sharding/partitioning. " + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
contentlinksentimentstream_timesymboltime
seq_number
1By David Shepardson\\nWASHINGTON (Reuters) - A ...https://www.investing.com/news/technology-news...-0.8571432020-10-15 09:09:51.632683834+00:00GOOGL2020-10-14 23:10:25
2By Yasin Ebrahim\\nInvesting.com – The Dow clos...https://www.investing.com/news/stock-market-ne...-0.7692312020-10-15 09:09:51.636309349+00:00GOOGL2020-10-14 20:06:50
3By Yasin Ebrahim\\nInvesting.com – The Dow move...https://www.investing.com/news/stock-market-ne...-0.8461542020-10-15 09:09:51.638322010+00:00GOOGL2020-10-14 19:30:02
4(Bloomberg) -- The amount of cash cycling thro...https://www.investing.com/news/stock-market-ne...-0.7058822020-10-15 09:09:51.640207477+00:00GOOGL2020-10-14 19:09:27
5By Elizabeth Culliford and Paresh Dave\\n(Reute...https://www.investing.com/news/coronavirus/you...-0.8571432020-10-15 09:09:51.642191006+00:00GOOGL2020-10-14 17:40:40
6By Foo Yun Chee\\nBRUSSELS (Reuters) - EU antit...https://www.investing.com/news/stock-market-ne...-0.7272732020-10-15 09:09:51.644007931+00:00GOOGL2020-10-14 17:10:40
7By Foo Yun Chee\\nBRUSSELS (Reuters) - EU antit...https://www.investing.com/news/technology-news...-0.7272732020-10-15 09:09:51.645781167+00:00GOOGL2020-10-14 17:00:23
8(Reuters) - Finland s Nokia has signed a 5-ye...https://www.investing.com/news/technology-news...-0.5000002020-10-15 09:09:51.648002013+00:00GOOGL2020-10-14 13:20:41
9By Yasin Ebrahim\\nInvesting.com – The Dow clos...https://www.investing.com/news/stock-market-ne...-0.7692312020-10-15 09:10:11.083908082+00:00MSFT2020-10-14 20:06:50
10By Yasin Ebrahim\\nInvesting.com – The Dow move...https://www.investing.com/news/stock-market-ne...-0.8461542020-10-15 09:10:11.087084292+00:00MSFT2020-10-14 19:30:02
11(Bloomberg) -- The amount of cash cycling thro...https://www.investing.com/news/stock-market-ne...-0.7058822020-10-15 09:10:11.089682551+00:00MSFT2020-10-14 19:09:27
12OSLO (Reuters) - Microsoft Corp on Wednesda...https://www.investing.com/news/technology-news...-0.2857142020-10-15 09:10:11.095159470+00:00MSFT2020-10-14 16:55:58
13By Yasin Ebrahim\\nInvesting.com – The Dow fell...https://www.investing.com/news/stock-market-ne...-0.9375002020-10-15 09:10:11.096987958+00:00MSFT2020-10-13 20:15:11
14By Yasin Ebrahim\\nInvesting.com – The Dow fell...https://www.investing.com/news/stock-market-ne...-0.9333332020-10-15 09:10:11.098733010+00:00MSFT2020-10-13 18:41:22
15(Reuters) - Amazon.com Inc has reinstated war...https://www.investing.com/news/stock-market-ne...-0.6666672020-10-15 09:10:18.402947707+00:00AMZN2020-10-14 21:30:25
\n", + "
" + ], + "text/plain": [ + " content \\\n", + "seq_number \n", + "1 By David Shepardson\\nWASHINGTON (Reuters) - A ... \n", + "2 By Yasin Ebrahim\\nInvesting.com – The Dow clos... \n", + "3 By Yasin Ebrahim\\nInvesting.com – The Dow move... \n", + "4 (Bloomberg) -- The amount of cash cycling thro... \n", + "5 By Elizabeth Culliford and Paresh Dave\\n(Reute... \n", + "6 By Foo Yun Chee\\nBRUSSELS (Reuters) - EU antit... \n", + "7 By Foo Yun Chee\\nBRUSSELS (Reuters) - EU antit... \n", + "8 (Reuters) - Finland s Nokia has signed a 5-ye... \n", + "9 By Yasin Ebrahim\\nInvesting.com – The Dow clos... \n", + "10 By Yasin Ebrahim\\nInvesting.com – The Dow move... \n", + "11 (Bloomberg) -- The amount of cash cycling thro... \n", + "12 OSLO (Reuters) - Microsoft Corp on Wednesda... \n", + "13 By Yasin Ebrahim\\nInvesting.com – The Dow fell... \n", + "14 By Yasin Ebrahim\\nInvesting.com – The Dow fell... \n", + "15 (Reuters) - Amazon.com Inc has reinstated war... \n", + "\n", + " link sentiment \\\n", + "seq_number \n", + "1 https://www.investing.com/news/technology-news... -0.857143 \n", + "2 https://www.investing.com/news/stock-market-ne... -0.769231 \n", + "3 https://www.investing.com/news/stock-market-ne... -0.846154 \n", + "4 https://www.investing.com/news/stock-market-ne... -0.705882 \n", + "5 https://www.investing.com/news/coronavirus/you... -0.857143 \n", + "6 https://www.investing.com/news/stock-market-ne... -0.727273 \n", + "7 https://www.investing.com/news/technology-news... -0.727273 \n", + "8 https://www.investing.com/news/technology-news... -0.500000 \n", + "9 https://www.investing.com/news/stock-market-ne... -0.769231 \n", + "10 https://www.investing.com/news/stock-market-ne... -0.846154 \n", + "11 https://www.investing.com/news/stock-market-ne... -0.705882 \n", + "12 https://www.investing.com/news/technology-news... -0.285714 \n", + "13 https://www.investing.com/news/stock-market-ne... -0.937500 \n", + "14 https://www.investing.com/news/stock-market-ne... -0.933333 \n", + "15 https://www.investing.com/news/stock-market-ne... -0.666667 \n", + "\n", + " stream_time symbol time \n", + "seq_number \n", + "1 2020-10-15 09:09:51.632683834+00:00 GOOGL 2020-10-14 23:10:25 \n", + "2 2020-10-15 09:09:51.636309349+00:00 GOOGL 2020-10-14 20:06:50 \n", + "3 2020-10-15 09:09:51.638322010+00:00 GOOGL 2020-10-14 19:30:02 \n", + "4 2020-10-15 09:09:51.640207477+00:00 GOOGL 2020-10-14 19:09:27 \n", + "5 2020-10-15 09:09:51.642191006+00:00 GOOGL 2020-10-14 17:40:40 \n", + "6 2020-10-15 09:09:51.644007931+00:00 GOOGL 2020-10-14 17:10:40 \n", + "7 2020-10-15 09:09:51.645781167+00:00 GOOGL 2020-10-14 17:00:23 \n", + "8 2020-10-15 09:09:51.648002013+00:00 GOOGL 2020-10-14 13:20:41 \n", + "9 2020-10-15 09:10:11.083908082+00:00 MSFT 2020-10-14 20:06:50 \n", + "10 2020-10-15 09:10:11.087084292+00:00 MSFT 2020-10-14 19:30:02 \n", + "11 2020-10-15 09:10:11.089682551+00:00 MSFT 2020-10-14 19:09:27 \n", + "12 2020-10-15 09:10:11.095159470+00:00 MSFT 2020-10-14 16:55:58 \n", + "13 2020-10-15 09:10:11.096987958+00:00 MSFT 2020-10-13 20:15:11 \n", + "14 2020-10-15 09:10:11.098733010+00:00 MSFT 2020-10-13 18:41:22 \n", + "15 2020-10-15 09:10:18.402947707+00:00 AMZN 2020-10-14 21:30:25 " + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "streamdf = client.read(backend='stream', table='stocks/stocks_stream',seek='earliest', shard_id='0')\n", + "streamdf.head(15)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Save Any Data \"To Go\" as a CSV file (or other formats)" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [], + "source": [ + "streamdf.to_csv('../data/mystream.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/stock-analysis/code/workflow.py b/stock-analysis/code/workflow.py new file mode 100644 index 00000000..f6ba85fa --- /dev/null +++ b/stock-analysis/code/workflow.py @@ -0,0 +1,121 @@ +from kfp import dsl +from mlrun import mount_v3io, mlconf +import os +from nuclio.triggers import V3IOStreamTrigger, CronTrigger + +funcs = {} + +# Directories and Paths +projdir = os.path.join('/', 'User', 'stock-trading') +model_filepath = os.path.join(projdir, 'models', 'model.pt') # Previously saved model if downloaded +reviews_datafile = os.path.join(projdir, 'data', 'reviews.csv') + +# Performence limit +max_replicas = 1 + +# Readers cron interval +readers_cron_interval = '300s' + +# Training GPU Allocation +training_gpus = 1 + + +def init_functions(functions: dict, project=None, secrets=None): + for f in functions.values(): + # Add V3IO Mount + f.apply(mount_v3io()) + + # Always pull images to keep updates + f.spec.image_pull_policy = 'Always' + + # Define inference-stream related triggers + functions['sentiment_analysis_server'].add_model('bert_classifier_v1', model_filepath) + functions['sentiment_analysis_server'].spec.readiness_timeout = 500 + functions['sentiment_analysis_server'].set_config('readinessTimeoutSeconds', 500) + + # Add triggers + functions['stocks_reader'].add_trigger('cron', CronTrigger(readers_cron_interval)) + functions['news_reader'].add_trigger('cron', CronTrigger(readers_cron_interval)) + + + # Set max replicas for resource limits + functions['sentiment_analysis_server'].spec.max_replicas = max_replicas + functions['news_reader'].spec.max_replicas = max_replicas + functions['stocks_reader'].spec.max_replicas = max_replicas + + # Add GPU for training + functions['bert_sentiment_classifier_trainer'].gpus(training_gpus) + +@dsl.pipeline( + name='Stocks demo deployer', + description='Up to RT Stocks ingestion and analysis' +) +def kfpipeline( + # General + V3IO_CONTAINER = 'bigdata', + STOCKS_TSDB_TABLE = 'stocks/stocks_tsdb', + STOCKS_KV_TABLE = 'stocks/stocks_kv', + STOCKS_STREAM = 'stocks/stocks_stream', + RUN_TRAINER = False, + + # Trainer + pretrained_model = 'bert-base-cased', + reviews_dataset = reviews_datafile, + models_dir = 'models', + model_filename = 'bert_sentiment_analysis_model.pt', + n_classes = 3, + MAX_LEN = 128, + BATCH_SIZE = 16, + EPOCHS = 2, + random_state = 42, + + # stocks reader + STOCK_LIST = ['GOOGL', 'MSFT', 'AMZN', 'AAPL', 'INTC'], + EXPRESSION_TEMPLATE = "symbol='{symbol}';price={price};volume={volume};last_updated='{last_updated}'", + + # Sentiment analysis server + model_name = 'bert_classifier_v1', + model_filepath = model_filepath # if not trained + + ): + + with dsl.Condition(RUN_TRAINER == True): + + trainer = funcs['bert_sentiment_classifier_trainer'].as_step(name='bert_sentiment_classifier_trainer', + params={'pretrained_model': pretrained_model, + 'EPOCHS': EPOCHS, + 'models_dir': models_dir, + 'model_filename': model_filename, + 'n_classes': n_classes, + 'MAX_LEN': MAX_LEN, + 'BATCH_SIZE': BATCH_SIZE, + 'EPOCHS': EPOCHS, + 'random_state': random_state}, + inputs={'reviews_dataset': reviews_dataset}, + outputs=['bert_sentiment_analysis_model']) + + sentiment_server = funcs['sentiment_analysis_server'].deploy_step(env={f'SERVING_MODEL_{model_name}': trainer.outputs['bert_sentiment_analysis_model']}) + + news_reader = funcs['news_reader'].deploy_step(env={'V3IO_CONTAINER': V3IO_CONTAINER, + 'STOCKS_STREAM': STOCKS_STREAM, + 'STOCKS_TSDB_TABLE': STOCKS_TSDB_TABLE, + 'SENTIMENT_MODEL_ENDPOINT': sentiment_server.outputs['endpoint']}) + + with dsl.Condition(RUN_TRAINER == False): + + sentiment_server = funcs['sentiment_analysis_server'].deploy_step(env={f'SERVING_MODEL_{model_name}': model_filepath}) + + news_reader = funcs['news_reader'].deploy_step(env={'V3IO_CONTAINER': V3IO_CONTAINER, + 'STOCKS_STREAM': STOCKS_STREAM, + 'STOCKS_TSDB_TABLE': STOCKS_TSDB_TABLE, + 'SENTIMENT_MODEL_ENDPOINT': sentiment_server.outputs['endpoint']}) + + stocks_reader = funcs['stocks_reader'].deploy_step(env={'STOCK_LIST': STOCK_LIST, + 'V3IO_CONTAINER': V3IO_CONTAINER, + 'STOCKS_TSDB_TABLE': STOCKS_TSDB_TABLE, + 'STOCKS_KV_TABLE': STOCKS_KV_TABLE, + 'EXPRESSION_TEMPLATE': EXPRESSION_TEMPLATE}) + + stream_viewer = funcs['stream_viewer'].deploy_step(env={'V3IO_CONTAINER': V3IO_CONTAINER, + 'STOCKS_STREAM': STOCKS_STREAM}).after(news_reader) + diff --git a/stock-analysis/data/reviews.csv b/stock-analysis/data/reviews.csv new file mode 100644 index 00000000..c560769d --- /dev/null +++ b/stock-analysis/data/reviews.csv @@ -0,0 +1,19066 @@ +userName,userImage,content,score,thumbsUpCount,reviewCreatedVersion,at,replyContent,repliedAt,sortOrder,appId +Andrew Thomas,https://lh3.googleusercontent.com/a-/AOh14GiHdfNEu1DwwcJ6yNyju8Yvn4JwjpzuXvD74aVmDA,Update: After getting a response from the developer I would change my rating to 0 stars if possible. These guys hide behind confusing and opaque terms and refuse to budge at all. I'm so annoyed that my money has been lost to them! Really terrible customer experience. Original: Be very careful when signing up for a free trial of this app. If you happen to go over they automatically charge you for a full years subscription and refuse to refund. Terrible customer experience and the app is just OK.,1,21,4.17.0.3,2020-04-05 22:25:57,"According to our TOS, and the term you have agreed to upon creating your free trial, after the 7 days, there is an automatic charge for the plan, unless you cancel prior to the renewal date. As you did not cancel the subscription in time, you were charged per this agreement.",2020-04-05 15:10:24,most_relevant,com.anydo +Craig Haines,https://lh3.googleusercontent.com/-hoe0kwSJgPQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO0EsmXC8aWKGNwRRyhUUYIphff_g/photo.jpg,Used it for a fair amount of time without any problems. Suddenly then asked me to create an account or log using Google or FB. I used my Google one only to discover everything was gone!,1,11,4.17.0.3,2020-04-04 13:40:01,It sounds like you logged in with a different account that you had before. We will be happy to look into this should you send us some more details here- https://www.any.do/contact_form,2020-04-05 15:11:35,most_relevant,com.anydo +steven adkins,https://lh3.googleusercontent.com/a-/AOh14GiXw07kTGrV_Q1ko4e7suhbWRUcJFAecYWjOLHwnw,Your app sucks now!!!!! Used to be good but now doesn't update until I physically open it up and then close it then scroll and then it finally shows what I want to put on the list!!!!!! And I FRIGGEN paid for this garbage!!!!!!!,1,17,4.17.0.3,2020-04-01 16:18:13,This sounds odd! We are not aware of any issues with the sync. Please submit a bug report via Settings - Support so our team can look into it for you asap.,2020-04-02 16:05:56,most_relevant,com.anydo +Lars Panzerbjørn,https://lh3.googleusercontent.com/a-/AOh14Gg-hRhh5qF7oSYW7NTA-6wCWpiu0ikwFkA2SR-2dA,"It seems OK, but very basic. Recurring tasks need some work to be actually useful. For example, it would be nice to be able to set a task to be recurring on the first of every month, without only being able to set that up on the first of the month. Edit; I also just noticed that there is no dark theme. Both may be available as paid for options, but I'll never know, since they are basic options and without them, I have no reason to try this app, and thus will never pay for actual premium options.",1,192,4.17.0.2,2020-03-12 08:17:34,"We do offer this option as part of the Advanced Recurrence options, which are part of our Premium plan. You are welcome to try the Premium version completely for free for 7 days by going to Settings - Go Premium and subscribing to the trial version :) You may also test the dark theme through the trial which requires no payment if cancelled.",2020-03-15 06:20:13,most_relevant,com.anydo +Scott Prewitt,https://lh3.googleusercontent.com/-K-X1-YsVd6U/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPVmHjpzMLp0OefiAXRWgOLkEYXGQ/photo.jpg,Absolutely worthless. This app runs a prohibitively clunky interface that effectively voids the promise of ease-of-life automation. Google Calendar will provide all other services promised by Any do for free with no annual subscription rate. Don't sign up for the free trial. It's not worth getting pinged for forty bucks when you decide you don't like it and forget to cancel it in time. Save your money!,1,42,4.17.0.2,2020-03-14 17:41:01,"We're sorry you feel this way! 90% of the app is completely free and unlike similar apps, we allow our users to enjoy most of the features for as long and as much as they wish without any 3rd party ads or a requirement to upgrade. If a plan isn't cancelled in time, it will be charged per the TOS the user agreed to upon upgrading.",2020-03-15 23:45:51,most_relevant,com.anydo +Chris Lane,https://lh3.googleusercontent.com/-s6bg896UVOI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNKoBbpl3daJ6XvR12QY6vtlVPLWA/photo.jpg,"BEWARE the trial period is a scam I've been using the free version for a while and decided to try the premium for 7 days per the trial ad. After 5 days I realized it didn't quite organize my information how I best work so I wrote to cancel. They informed me that I must have accidentally signed up for a non trial and by their strict Terms cannot refund me. So I wrote back nicely that my intention was to try it per the Ad, but they said it's not possible. Really?",1,58,4.17.0.2,2020-03-21 22:47:52,,,most_relevant,com.anydo +John Papp,https://lh3.googleusercontent.com/a-/AOh14GhE0S5s0TDOpL9KH7zDqeq0zkoX9Iq3itul8N9clg,"DON'T BUY PREMIUM! You have to pay for an entire year upfront. And If you change your mind about the app, like I did, due to its odd inconsistent behavior with reaccuring tasks and reminders. You're given 48 hours after the 7 day trial to qualify for a refund. After that you're screwed. All most all of the issues started happening after that period ended. They obviously know they have problems with the app, just read their robotic responses to issues. ANY.DO HIDES BEHIND TOS INSTEAD OF HELPING",1,67,4.16.5.0,2020-02-02 14:56:56,"Out policy and TOS are completely transparent and can be found in the Help Center and our main page. We provide users with a full 7 days trail to test the app with an additional 48 hours for a refund, along with priority support for all issues. From checking our records, you never submit a complaint and simply said you changed your mind.",2020-02-03 16:08:57,most_relevant,com.anydo +Jason Thornton,https://lh3.googleusercontent.com/-B4TxqW_x-Jo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJODtLRmqEvlJYdibh34YqEqA0uX7Q/photo.jpg,"This could be an awesome app. It has great potential except for a few flaws that end up making it a super irritating app. I have reported these issues to the app's tech support several times only to get lame responses with no resolutions. The latest being that when items are entered into a category in this app, the app for some reason resorts the sequence of items in my list automatically. I put these items in the list in a certain order for a reason. I have other issues, but no moreroomher",1,65,4.16.6.2,2020-02-07 19:01:02,"Hi Jason, as far as we can see in your latest reply to our team you reported that the issue was resolved as well as rated our support positively, so we are not sure what you're referring to. If you're still experiencing this please submit a bug report via https://www.any.do/contact_form so our team can look into this again ASAP.",2020-02-09 12:37:41,most_relevant,com.anydo +Ismail Omar,https://lh3.googleusercontent.com/a-/AOh14GjyxEOu5ijYuNsDmbJS7HiR66eI5d2Bh0ZBnQYc9Q,"The app felt good enough for me to buy the yearly subscription, which I did and paid th 15€ it requested. But a week later they charged me 17 more euros to my credit card for the same subscription and the same features so I basically paid 32€ . THAT is a scam and unless I get my 17€ euros back I'm gonna keep the rating at one star.",1,12,4.17.0.2,2020-03-17 16:45:49,Are you sure this is for the same account? Perhaps you have opened another one? Or registered to multiple plans? All of our payments require full authorization on the user's end so this sounds very odd. Please contact our team at https://www.any.do/contact_form so they can look further into it for you.,2020-03-18 04:21:16,most_relevant,com.anydo +Anil Satale,https://lh3.googleusercontent.com/a-/AOh14Gi-Y3aShBGnE9SHrmEwpKB-ULsW95ZuhclgbbT0dQ,I downloaded it and login with Google I never did anything just logged in with Google. It has asking me many time for auto debit for subscription so I uninstalled it. But still 5 min before Rs 909 debited from my account. This is the muging of money. I want refund my money in my account. Kindly,1,1,4.17.0.2,2020-03-30 15:15:19,"A payment can only be made upon the user's authorization via the app and Google Play, so this sounds very odd. Please contact our team at https://www.any.do/contact_form so we can look into it for you.",2020-04-02 15:37:55,most_relevant,com.anydo +Miguel,https://lh3.googleusercontent.com/-Ee06RTHP3XQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN9c8nE_16ImiZuwGDHvu8ZADzuVQ/photo.jpg,"This App is useless , it works as a notepad with your tasks in it , it does not notify you of tasks you suppose to do. When the time reaches it's silent doesn't pop up even though settings have permitted it to pop up and alert , even a simple alarm clock notified me of what to do .This app Doesn't work .",1,13,4.17.0.2,2020-03-11 07:43:05,It sounds like there may be an issue with your device allowing the app to send notifications properly. Please submit a bug report via Settings - Support so our team can look into this for you.,2020-03-12 03:07:20,most_relevant,com.anydo +Peter Shadbolt,https://lh3.googleusercontent.com/a-/AOh14GipVc0yTI4DGg-OWugGD72Pr6LDhAKM1FbblwPw,Really disappointed to find recurring tasks functionality is only available with the paid version. Would not recommend. Also it doesn't sort tasks by date and time properly.,1,2,4.17.0.2,2020-03-22 01:55:04,,,most_relevant,com.anydo +Ernie Nadeau,https://lh3.googleusercontent.com/a-/AOh14GgcxgfKa_1qpfh2ElLKVifHfmOjJIZLdCfquiTSuQ,Loaded the trial then emailed about cancelation but email bounced back. Ended up paying $36 for an app I didn't want. No way to contact for refund. Be careful if you buy this. If you try the trial you're stuck paying for it!,1,12,4.17.0.2,2020-03-07 17:32:17,"We offer a contact form through the app, via our Help Center, on our main page or directly at https://www.any.do/contact_form. Users can reach the team at any point in time for assistance.",2020-03-10 03:55:34,most_relevant,com.anydo +kosmox,https://lh3.googleusercontent.com/a-/AOh14GjV_6uI95BwmJfGVY1y3uSzOfuaEjjPtmbTH2hgSA,"Cant re-edit time that ive set, necessary to delete and redo the process. Also, i need a reminder for every hour, and had to create 24 reminders instead of 1 reminder running every hour. Poorly designed.",1,6,4.16.5.0,2020-02-01 19:51:40,"Reminders can be easily removed and recreated without deleting the task. We will offer the option to set multiple reminders per day in an upcoming features, which will be released soon.",2020-02-03 16:02:59,most_relevant,com.anydo +NDSRises MISIT,https://lh3.googleusercontent.com/a-/AOh14GjP8tYP7sIpKaSpU4oLlabfarYnjVMX-dCdnWEHpA,"Thanks to the developer for your quick response, however, this calendar is useless for our group without those features...we decided to go with Business Calendar Pro. Previous comments: Wasn't able to see month or year view",1,33,4.17.0.2,2020-03-06 17:11:49,"The Agenda Calendar View provides a monthly spread with tasks right underneath. At this time, we do not have a yearly spread but we appreciate the feedback and will pass it on to our Product Team for review. That said, if another solution fits your requirements better, we completely respect your decision to switch.",2020-03-10 03:47:27,most_relevant,com.anydo +Donna Flack,https://lh3.googleusercontent.com/-zrZ-3s3sPqc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPorS0hAJZSrl_E1LlNxhFJwh4ZRw/photo.jpg,"This was originally a 5 star app, but now you can only use it by allowing it access to either your emails or Facebook! 😡😡😡 I am definitely not happy to allow this so have deleted the app. Would give it zero stars if I could.",1,7,4.16.6.2,2020-02-11 18:26:05,"We ask users to register for an account so that we can save their data on our servers, allowing for cross-platform sync and ensuring no information is ever lost. If this is not the type of solution you are looking for, we respect your decision to move to a different app.",2020-02-12 13:45:27,most_relevant,com.anydo +V8Snail,https://lh3.googleusercontent.com/a-/AOh14Gj0m0XWfp4tZtMr_cQLL_iVnd2uBFa0et-emSpt,Couldn't even set up one single recurring reminder without being required to pay monthly subscription. Get your greedy hand off it dev. It's only only a reminder app not a useful service.,1,4,4.16.5.0,2020-02-02 10:08:58,Recurring reminders are part of the standard version. Only advanced options are part of the Premium plan and you may find instructions on how to set the recurring reminders in the free version here: https://support.any.do/recurring-reminders/,2020-02-03 15:57:49,most_relevant,com.anydo +TechBoyWonder,https://lh3.googleusercontent.com/a-/AOh14GgHcgwjOxp9mCTI3EMpJ1awcCrT-gCB7nI2Kn3bGw,"Hey ,there is something wrong here ...the billing i signed up for was for about 2$ And not 35$ from my account...that is my tuition upkeep fee....I berely even use your app even.... please I need back my refund...this isn't right...I would file a report to Google play store..this is totally scammy... Please you guys should totally avoid this app please. Jesus Christ i totally expected to be billed 2$...all of a sudden its 35$...no this is totally far frm being fair please",1,59,4.16.4.6,2020-01-25 04:30:37,,,most_relevant,com.anydo +Жанболат Багитжанов,https://lh3.googleusercontent.com/-RIHCTnyctS4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMQ2M0RfbyxwxvwMjxXUjUNdPL7yw/photo.jpg,"I reported about this app due to incorrect billing but noone answer me. Please, return my money back because app took my money without my permission from my credit card.",1,1,4.17.0.2,2020-03-11 17:23:37,"We do not see any requests submitted under your name. If you haven't yet received a reply, please contact the team again via https://www.any.do/contact_form.",2020-03-12 03:14:38,most_relevant,com.anydo +Maezielyn Ware,https://lh3.googleusercontent.com/-shZGQacwRQQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMbkgf2veDjScSvkQ4Y7RkzZ1ZHBw/photo.jpg,The fact that you have to pay so much to use something so simple isn't worth it to me. There are free apps of similar functionality.,1,4,4.17.0.2,2020-03-03 16:05:31,"90% of the app is completely free and unlike similar apps, we allow our users to enjoy most of the features for as long and as much as they wish without any 3rd party ads or a requirement to upgrade :)",2020-03-03 21:20:17,most_relevant,com.anydo +J. R. West,https://lh3.googleusercontent.com/-pwVS78z1nxw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPJsfBxDgL5efA5SAT-WQXGCrOCtw/photo.jpg,Need premium level to import wunderlist. B.S. Have to reset password Everytime to login. So haven't been able to even try the APP.,1,1,4.16.6.2,2020-02-25 18:32:50,Our Wunderlist importer is completely free at https://www.any.do/import/wunderlist/. We're not sure what's the issue with the password as we haven't encountered any other reports but you are welcome to contact the team at https://www.any.do/contact_form for assistance.,2020-02-26 14:48:07,most_relevant,com.anydo +Xyxyxy,https://lh3.googleusercontent.com/a-/AOh14Ghh9igTh-AQ1J7V0HtXw2vmpb646mRvA606S1V3_w,Can't use it without registering with your email address. Immediate uninstall.,1,2,4.16.4.6,2020-01-29 09:17:50,"We ask users to register an account because our app syncs across multiple platforms. In order to provide flawless sync, tasks are saved on our servers, which in turn makes them available 24/7 no matter where you log in from! :)",2020-01-30 09:30:35,most_relevant,com.anydo +Fäyè,https://lh3.googleusercontent.com/a-/AOh14Gj-wiY0k2C6koWslJsw5EGXfvHug_VhTrkrywtDXIA,"complicated , dislike the pro version. microft to -do list is better",1,1,4.17.0.2,2020-02-29 02:19:44,"Sorry you feel this way! We have an extensive Help Center detailing how to utilize the features (https://support.any.do/), as well as wall as our Blog which contains lots of articles on how to best apply these tools to your daily routine (http://blog.any.do/). You are also welcome to contact us at https://www.any.do/contact_form with any questions.",2020-03-03 20:48:12,most_relevant,com.anydo +Pankaj Sharma,https://lh3.googleusercontent.com/-kyPmCLUFUjo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNuKrdyzg0DUMabzTY9uGizlhiMYg/photo.jpg,Not close to do list. All features available bin premium mode only.,1,0,4.16.6.2,2020-02-23 04:17:49,"We're sorry you feel this way! 90% of the app is completely free and unlike similar apps, we allow our users to enjoy most of the features for as long and as much as they wish without any 3rd party ads or a requirement to upgrade :)",2020-02-23 12:56:14,most_relevant,com.anydo +Wai Loong Chong,https://lh3.googleusercontent.com/a-/AOh14GidVSXurfjNLX45Dzhgr-OIhj6kjPAZFkkmHOn9_w,"It slow down my flow when i turned on or click via home page widget There is a fade in effect or lagging, please kindly help check Thank you",1,0,4.16.6.2,2020-02-19 00:16:01,"We're not aware of any issues with the widget, though we will gladly look into it for you! Please submit a bug via Settings - Support so that our team can look into this for you :)",2020-02-23 12:38:58,most_relevant,com.anydo +Richard Crawford,https://lh3.googleusercontent.com/a-/AOh14GjcEnGogKWpnAmnmpBUc_Uhq8rVwqi6j6DbyiuW0Q,Looked at it and it appears that the apps is signed as a subscription. Trying to find out if it is subscriped or not. Do not want the app.,1,4,4.16.4.6,2020-01-24 03:03:47,,,most_relevant,com.anydo +Barbara Smrkovsky,https://lh3.googleusercontent.com/a-/AOh14Gjx4CnDHE5T8qMoizAhuKRIterbDUCHtpy45JLi,This app would not let me start a new day. It listed my tasks that I performed for one day as overdue for the next day. Just weird.,1,1,4.16.6.2,2020-02-12 15:17:34,"All pending tasks from the previous day will stay under the Today section. This is to enable users to re-prioritize and has been found to boost productivity when users are able to quickly review outstanding tasks. That said, you may simply drag and drop those tasks to another time category.",2020-02-14 01:35:27,most_relevant,com.anydo +Alex Ranes,https://lh3.googleusercontent.com/a-/AOh14GjAJTX678JYq8xN5QtiB5b9jjJ4ptqM4dvzVMyY6Bg,No month view?? How hard is it to find a decent calendar with a whole month view,1,1,4.16.5.0,2020-02-01 15:48:04,There is a month view :),2020-02-01 20:48:39,most_relevant,com.anydo +fhs baghi,https://lh3.googleusercontent.com/-eRScCpqOy04/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM0-P9di7gbcmzjYTexeW99VuGgYg/photo.jpg,"Just basic app without any exciting features. Why I pay for this useless app. Please don't download it's a cheat, waste of time and energy.",1,0,4.17.0.2,2020-03-19 03:10:24,,,most_relevant,com.anydo +Sue Erasmus,https://lh3.googleusercontent.com/-2cgbROVE6b4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNyJurnRDMX4k5EWDz7ZG9DDZgZKA/photo.jpg,"Would have been nice to know the price before using up my data for download, just to be uninstalled seconds later",1,0,4.16.6.2,2020-02-17 10:34:57,"90% of the app is completely free and unlike similar apps, we allow our users to enjoy most of the features for as long and as much as they wish without any 3rd party ads or a requirement to upgrade :) Prices are always available under Settings - Go Premium.",2020-02-17 13:17:39,most_relevant,com.anydo +Halden Talisman,https://lh3.googleusercontent.com/-RLlIWqYAVQs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO6-7McwuzL1eYbKKiLN80mU9pqMQ/photo.jpg,"Absolute rubbish, killing off Wunderlist for this is a clear example of the domanant power of the big thugs Microsoft, Google, Amazon etc., taking over better competitors so they can push their inferior garbage. Trying out TickTock now",1,1,4.16.6.2,2020-02-14 22:35:17,"Any.do has no relation to Wunderlist, Microsoft or any other of the mentioned services. We're not sure what exactly is the reason you're not finding the app useful but we welcome any feedback at https://www.any.do/contact_form.",2020-02-16 11:25:08,most_relevant,com.anydo +Mehul Doshi,https://lh3.googleusercontent.com/a-/AOh14GjsMuAHn4CmRm2wiLfwcoMZFfPyvtYciNLAcfKCTA,Deducted my money for no reason. I used the service once and then never used it. Return my money immediately.,1,0,4.16.6.2,2020-02-28 03:22:44,"Google Play does not charge user without full authorization and consent to any one of our plans. If you have any issues with your plan, you're welcome to reach out to our team at https://www.any.do/contact_form.",2020-03-03 20:41:38,most_relevant,com.anydo +Keaton Aymar,https://lh3.googleusercontent.com/a-/AOh14GiouN4xaal2Ai8SK95XpmL2omNo7BxisqYVTy7s,"Keeps failing to repeat some daily tasks. I've had to remake the same tasks several times because they just won't stick for some reason. Sometimes it works, sometimes it doesn't. It's a complete gamble. Now it's more work just to figure out what tasks need done than it is to do the tasks themselves. Uninstalling. This app is more maintenance than my daily chores.",1,50,4.16.2.7,2020-01-14 03:25:05,"Hi, that's odd, please send us a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2020-01-14 11:44:08,most_relevant,com.anydo +Raj Mulik,https://lh3.googleusercontent.com/a-/AOh14Gg-mo1ACDbKnijcfKVy8ivcbOXIBppgKKn8TL5QDw,Just they copied GOOGLE CALENDAR and Charging On Top of That ... Google Calendar so far BETTER ...,1,0,4.16.6.2,2020-02-11 12:34:52,,,most_relevant,com.anydo +Joan Jacobsen,https://lh3.googleusercontent.com/-nPE4rSJNAFA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOlJjt31mdBiHMevrsRknizk664gg/photo.jpg,Premium support has not contacted me for 3 days and counting......,1,1,4.16.5.0,2020-02-07 16:26:46,"We respond to Premium queried within 2 business days, while depending on workload this may take a bit longer. We already informed users on our Twitter page that the tea is experiencing some delays but they will do their best to respond as soon as possible.",2020-02-09 12:34:44,most_relevant,com.anydo +Jack Lucas,https://lh3.googleusercontent.com/-2ASsWjbEOig/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM5QJ57oCVjsoayVPyELEhZMvBfpA/photo.jpg,All I want is a calendar. This app spams you so much. 1 star,1,0,4.17.0.2,2020-03-21 12:09:49,,,most_relevant,com.anydo +john daley,https://lh3.googleusercontent.com/a-/AOh14GhMKCQKNdVYeGDKJsmrpzCMSO0XylVFMG0lTfH3fQ,"Free version is very limited, and there are thousands of similar free apps that do what the paid one does. Dev likes to argue this but the app is really not very useful unless you buy a monthly subscription. Changed from 2 to 1 star for developer being actively misleading about this.",1,4,4.16.3.6,2020-01-22 11:40:37,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. You can use Any.do for free for as long as you like.",2020-01-22 10:10:01,most_relevant,com.anydo +Moosajee Dhorat,https://lh3.googleusercontent.com/a-/AOh14Gg3tedodUQ3W1VSh238y20thn8G3WJi63dzag2JAlE,Not free! You will be billed without you knowing about the loss of your money.,1,1,4.16.5.0,2020-01-26 15:23:54,,,most_relevant,com.anydo +Keep Watching,https://lh3.googleusercontent.com/a-/AOh14Gh6u7HnqpSvnb67XGLy4eaEWc_blvAdIDvIxFJsUA,"Worst app for premium, only yearly pay of rs 990. No option for monthly payment. Bad app.",1,0,4.16.6.2,2020-02-16 09:48:03,"Any.do does actually offer a monthly plan, which can be found on our page at https://www.any.do/premium/ (from any desktop browser).",2020-02-16 11:38:19,most_relevant,com.anydo +Tedrick Hawkins,https://lh3.googleusercontent.com/a-/AOh14GiIePrfUO5iIVCJulEtAitC1-O0ZmPVygy_Slae5Q,It looked good but it doesn't work. I scheduled simple tasks and it would change the timing. I re corrected to make it right several times. The navigation was difficult. Like I'd want to set a task but then I'd have to say the task was complete so wouldn't be sure it saved. Couldn't just back out to see the task was set correctly. Had to confirm the task was done then undo the task for later which might then change the time to something I never set. 😳,1,21,4.16.2.5,2019-12-22 09:12:30,"Hi, that's odd, please send us a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2019-12-23 08:04:37,most_relevant,com.anydo +Christine Stewart,https://lh3.googleusercontent.com/a-/AOh14Ghtq0_OPV0P8nfgBndMKWE9e60MJyjUrAr7-R5efVE,"I have used this app for months on a daily basis, and was finding it really useful. However the app recently forced me to do an update and all my tasks were deleted as a result, as were the specific categories I set up. I tried deleting the app fully and redownloading it to see if that helped but my tasks still didn't reappear, even though my diary is syncing OK. I have lost over 80 tasks and can't remember all the info included in each task. It has shaken my faith in using the app again, particularly as I haven't received a response to the message I sent the team via the support link several days ago now.",1,9,4.15.9.12,2019-11-27 23:18:51,"Hi Christine, please logout and log back in, and if you are still experiencing this, please contact us at Customers@any.do",2019-12-01 09:47:44,most_relevant,com.anydo +Riaz McGinley,https://lh3.googleusercontent.com/a-/AOh14GhXtEV6RwySocwyx8RXkrzYd4LGjnTzmfb1YW6GNw,"I really wanted to love this app. It does exactly what I need. Unfortunately it's riddled with bugs. Mostly with repeat tasks. Main one being. If your phone is powered off at a reminder time, it will break the reminder. Resetting the task brings more issues. Also takes 15min for the app to sync with the widget! Contacted ""priority support"" (one reply a day). Seems to have no real interest in fixing the problems. Blamed it on Nova Launcher. Same thing happens with Samsung launcher.",1,6,4.15.9.12,2019-11-24 15:30:09,"We're sorry you feel this way! The reminders can only display when the device is active. When turned off, reminders which have passed have no push-summary, but can be found in the 'overdue' or Today section. If you're still experiencing issues, please reply back to your ticket and our team will gladly re-review.",2019-11-26 14:36:32,most_relevant,com.anydo +Farkas - Ráduly Szabolcs,https://lh3.googleusercontent.com/-lzVTmEjn5Do/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOEZl10icrDQmyT4OvFKex7C4pkXQ/photo.jpg,No custom notification sounds??? Really?,1,0,4.17.0.2,2020-04-02 16:01:49,"We offer various sound options for the notifications that you can choose under the app settings. To align with the app's simplistic mode, there is currently no option to create custom sounds. That said, we will have our product team look into your suggestion.",2020-04-05 14:59:35,most_relevant,com.anydo +Elisabeth Hunter,https://lh3.googleusercontent.com/a-/AOh14GhbXlDKYDK6VlbKG0vhwe9kbNzggbGWdlFkyJ7-Qw,"Used to be my go-to for my shopping list but 2 updates later it's become frustrating and wasteful. As I'm going through my saved items in each category to add it back to my list, the category just randomly closes and now I have to reopen it. Before I could just run down the list and click on what I needed to add.",1,15,4.15.9.9,2019-11-06 01:28:45,"Hi, that's odd, please send us a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2019-11-06 08:33:35,most_relevant,com.anydo +Brent V,https://lh3.googleusercontent.com/a-/AOh14GiLjfVwKShaeLRCSutNdbwN3OrDgxOcUt1ZmxAe6Aw,"Nothing but problems with this app. First smart lists didn't work, magically they started working the next morning and I thought everything was great. Now Alexa sync stopped working. It was working, then it stopped. It would sync to alexa if i added through Any.do, but not if added through alexa voice. in my efforts to fix it i disabled the skill and now i cant get it to re-enable. what a mess.",1,135,4.16.2.5,2019-12-21 20:47:51,"Hi Brent, please note that you can enable the Alexa skill via the Alexa app, to do so simply add the skill to your Alexa, then login to your Any.do account, if you are having any issues with this, please send us a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2019-12-23 08:02:35,most_relevant,com.anydo +Nidal Iguer,https://lh3.googleusercontent.com/a-/AOh14GjyWvtGg2Wyctjii5z_k6uY5vRm_-_kBkrThF8Nmw,"A subscription for an App that simple? Are you insane? It should be a one time payment no more, around 3-4$. This is my advice to you, you won't last long with this kind of strategy...",1,4,4.16.3.6,2020-01-15 08:16:48,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. You can use Any.do for free for as long as you like.",2020-01-16 09:01:00,most_relevant,com.anydo +Jessica Rabbet,https://lh3.googleusercontent.com/a-/AOh14GiOWKEByty81LF-aLqLZ-yfjrrZA9bYlMZ2coOZ,Any app that ignores your phone's dark mode unless you pay for it is garbage.,1,0,4.16.6.2,2020-02-24 01:06:14,We're sorry you feel this way. We are looking into adding a free version of the dark mode later on this year.,2020-02-26 14:30:53,most_relevant,com.anydo +Shane Scott,https://lh3.googleusercontent.com/a-/AOh14GgdDwNyE17z6RnGNlLA1yfXbhdth-Mp1adsxrS0lg,"This app seems useful. Regretfully, I am going to uninstall it. It is too pushy, and keeps reminding me to use it. That is not my only issue with this app. A day or so ago, I found that it had put itself on my lock screen. I did not put it there. I specifically put the transit app on my lock screen. I changed it back, thinking I am uninstalling if this happens again. It happened again. This morning I noticed it changed back to Any.do in the place where I want the transit app. Goodbye Any.do.",1,15,4.16.1.6,2019-12-06 16:55:32,"You can disable any notifications you don't like from the app. The Any.do Moment (which seems to be what was causing this issue) can be toggled off in settings. The only other notifications you should receive are for reminders, which if you don't like, you can turn off these reminders and simply have due dates for tasks without any notification..",2019-12-10 09:09:00,most_relevant,com.anydo +Cico Mico,https://lh3.googleusercontent.com/a-/AOh14GgCBKXRVJ_vHMfoAJq2Mo1gp2oC7K2AhVUjQeE,"I like when this developers claim their apps are free, wait 95% free?! You mean 5% free, if even. Data costs money, stop pretending this crappy apps are free. For an note app, this one is nothing but INVASIVE.",1,3,4.16.3.6,2020-01-17 22:47:38,,,most_relevant,com.anydo +Auto Pilot,https://lh3.googleusercontent.com/-bpBOIJ1HKKQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJODlmIcyi3JFOaO0lPw95IHFf9M_g/photo.jpg,"I get it you want me to upgrade, not even tried the app and you shove it in my face. I don't like at all how it's all just promoting your pro version Delete your account it wants your password for your Gmail account this is a privacy breach also. So many things wrong with this app and their ethos. None of the integrations work unless you pay them. Totally money grab these guys as I've read elsewhere. I've deleted it now, it made me feel they have been so intrusive with what they are doing",1,147,4.16.1.6,2019-12-08 22:42:32,"Hi, please note that at no time do we see your password for Gmail. Furthermore, you are able to integrate with Alexa without having a premium subscription! Lastly, please note that the only ad we show if for our premium service, which only displays when you login, and when you try to access a premium feature.",2019-12-10 09:37:37,most_relevant,com.anydo +Vivek Singh,https://lh3.googleusercontent.com/a-/AOh14Gg40165lJ9Polrq1Hd7ZlLHbaQhzA5kgIEaLmH-NrM,"I have used this app on my previous android and it offers awesome features. However, it's not working at all on installing on my new android Redmi Note 5. I have used this app before and I want this to be working at any cost. Pls help me to resolve this. App does not launch next morning as it should do. After I add my tasks, it just doesn't launch.",1,14,4.16.2.7,2019-12-24 21:19:03,"Hi, that's odd, please send us a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2019-12-25 08:03:04,most_relevant,com.anydo +dooka dook,https://lh3.googleusercontent.com/-afRp4vX5K1M/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM74rTJM_NTLZXs0TqLCaNMT96JgQ/photo.jpg,"Why does it require sign up? Edit: in response to the reply, it is ridiculous that I couldn't even try the app before providing you with my details. I've now found a wonderful app that allows me to skip the sign up unless I wish to sync etc. I'll be sticking with that app because it is perfect and I only need to provide the info I wish to.",1,5,4.15.9.12,2019-11-26 09:14:18,"We ask users to register an account because our app syncs across multiple platforms. In order to provide flawless sync, tasks are saved on our servers, which in turn makes them available 24/7 no matter where you log in from! :)",2019-11-26 08:33:04,most_relevant,com.anydo +Shen,https://lh3.googleusercontent.com/a-/AOh14GhipP4XeRBxWy-kzVY4Shk4CLBUsyezJbyf0HQb,Couldn't find Google Assistant integration anywhere. Even though it's been advertised everywhere when searching the web for the app. Edit: It's even in the description of the app here. That's false advertising. I will edit my review when it's out of Beta and working in the final version.,1,5,4.15.9.9,2019-11-16 10:38:21,"It's in beta, should be live in a few weeks :)",2019-11-16 10:31:59,most_relevant,com.anydo +Beary Good Beans,https://lh3.googleusercontent.com/a-/AOh14GhvRtFMu1xkZAk2Y7rPsx9KdydmHqDjvobEpd_zSA,Horribly simplistic. I found AFTER I had paid for premium that there is NO way to change the due date on an existing task. Renders the program useless!! Lacks other core functionalities...but I would NEVER EVER have conceived that the due date on an existing task cannot be changed. I was ripped off.,1,49,4.15.9.12,2019-11-21 06:47:15,"We're sorry to hear you aren't enjoying Any.do. We believe in a minimalistic approach, and we try to reflect that in our design. This is something that a lot of our users like, however we understand that everyone likes different layouts :) Furthermore, If you have any questions about cancellations or refunds, contact us at Premium@any.do.",2019-11-26 08:33:40,most_relevant,com.anydo +paul byrne,https://lh3.googleusercontent.com/a-/AOh14Gj9DFS7QWeRJ9mMkDnmFIZszHxxA4nMH-2Xr1AlKw,Waste of time failed to pair with mu gmail account...gave up after 5 attempts,1,1,4.17.0.2,2020-03-03 17:01:53,"We're sorry you feel this way! Not sure on what point exactly you've had issues, but our team will be more than happy to look into this and help set things up should you reach out at https://www.any.do/contact_form.",2020-03-03 21:21:17,most_relevant,com.anydo +John Cain,https://lh3.googleusercontent.com/a-/AOh14Gitzl1LNiNtDTFEHsaxNCTiZsY8x4_W8CdgS-quVw,Upgraded and lost all my tasks from previous version ... very disappointed!!!,1,2,4.17.0.2,2020-03-03 19:31:15,"This sounds odd! As long a your tasks were properly synced to our servers, all data should be safely stored :) Please reach out to our team at https://www.any.do/contact_form so they can help resolve this!",2020-03-03 21:22:14,most_relevant,com.anydo +Eunice VK Faveur,https://lh3.googleusercontent.com/-XHVtSTgvfpU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP84gvdB6lgcWp1hFtH7X7qO2ZBIg/photo.jpg,"This app requires users to create an account with either FB or Gmail to use it, then you find yourself in a 7 day free trial in order to pay later. Not encouraging to even try it. At least inform users that's it's not free before asking access to their FB or Gmail accounts.",1,24,4.16.2.5,2019-12-17 03:52:25,"We ask users to register an account because our app syncs across multiple platforms. In order to provide flawless sync, tasks are saved on our servers, which in turn makes them available 24/7 no matter where you log in from! :)",2019-12-17 09:23:11,most_relevant,com.anydo +Megan Soules,https://lh3.googleusercontent.com/-QGu8AmwO_Zg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMNOlK-_GaAYeP8nznvr5CFX62JFg/photo.jpg,"Do not download this app!!!! I unsubscribed from Premium before they could charge me because I decided I couldn't afford it (I'm a broke college student). They took my money anyway! I tried to contact them; they don't have a number to call, so I emailed them. They told my they didn't charge me at all! I asked them to give me the contact info of their financer so that I could send them my bank statement, and they ignored my emails. They STOLE my money!!! Don't use this app, it is not worth it.",1,19,4.15.9.12,2019-11-22 04:18:34,"Our 7 day trial allows free users to give Premium a try before committing. If a user doesn't cancel the subscription in order to notify Any.do that he doesn't want to keep Premium features, the subscription will automatically renew into a yearly subscription as stated on the upgrading screen. For subscription questions please contact Premium@any.do",2019-11-26 08:39:01,most_relevant,com.anydo +Reaf Rogers,https://lh3.googleusercontent.com/-QuiKJhFX-oI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJORS6Gp2whnVvgyYJbTcw_80pphbg/photo.jpg,Do not download this app if you want to keep money in your account- they took an unauthorized almost $40 out of my account. Their help page says they offer refunds within 48 hours however they offer no access to claim a refund.,1,1,4.16.3.6,2020-02-11 06:05:02,"The Help Center has a link to contact us at the bottom of each page. Users can also submit reports via the app or via our contact form at https://www.any.do/contact_form. All subscription plans are verified and confirmed both by the app and by a native Google Play screen. Accordingly, we do not charge users without full agreement.",2020-02-12 13:37:11,most_relevant,com.anydo +Kayak,https://lh3.googleusercontent.com/a-/AOh14GhvSnsIMqLITi3ASHZbwNLayffEfFVzzdgYnNK5,Won't stop charging me after cancellation. When it happened again this year after they promised one year ago that they would stop. I had to actually cancel the credit card. Upon reading the reviews I find that I am not the only one with this excessive billing issue.,1,9,4.16.0.6,2019-12-01 22:57:18,"Any.do is a free app, and we never require our users to upgrade. In order to sign-up for a subscription, you must authorize the purchase in your app and through Google Play. If you have any questions about cancellations or refunds, contact us at Premium@any.do.",2019-12-02 08:24:55,most_relevant,com.anydo +Mike Bosak,https://lh3.googleusercontent.com/-howTc7SMxk0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJODnjweGkt85DqpTUgN_lDBdzsQjg/photo.jpg,"Free, but wants you to pay before using. Social media not required, but wants you to register before using. Popular company, popular enough to remove my last 1 star review and send me an Email disputing it. Plenty of better note taking apps exist. I highly advise against this invasive app.",1,130,4.16.3.6,2020-01-06 21:02:03,"Hi Mike, Please note that Any.do is a free app. We provide 95% of our features at no cost, including all core features. Furthermore we ask users to register their account, so we are able to provide a flawless sync between all platforms in which you use the app. Lastly, please note that we are not able to remove any user reviews.",2020-01-07 08:41:51,most_relevant,com.anydo +Naveed Hashmi,https://lh3.googleusercontent.com/a-/AOh14Gg2kHN6Z08eyE9nswl-MCMR_YJhESiVreQtQzEZTA,Not user friendly. Directly asking for money.i already uninstalled,1,0,4.17.0.2,2020-03-18 20:00:56,,,most_relevant,com.anydo +Ahmad Jamous,https://lh3.googleusercontent.com/a-/AOh14GhlWZ70zvbc4Hg2eso69tmfZFs2TmlAHSwwFE2I-w,Keeps notify me only sound without any notifications or any tasks and every time i open the app i got a pop up window with an old task that i finished already before along time ago. What is matter ?? It was a good app !,1,14,4.15.9.9,2019-11-04 03:38:40,"Hi, that's odd, please send us a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2019-11-05 15:34:33,most_relevant,com.anydo +Yukime,https://lh3.googleusercontent.com/a-/AOh14Ghgi5mQj5wJ3FY1b6C53riJyVo8IIU1kZ7pxIvDXg,Tech support is so vague with their pricing. I'm sorry but you just lost an interested customer. Cancelled trial and any plans of subscribing to premium.,1,2,4.16.4.6,2020-01-23 04:59:27,"Sorry you feel this way! All pricing plans are available in the app via Settings - Go Premium. If you already had a plan setup, its details would have been available to you in your Google Play app.",2020-01-23 12:13:49,most_relevant,com.anydo +Avi Ben Galil,https://lh3.googleusercontent.com/a-/AOh14GjmFZSx2MyzpJzmxzfhcCiBKqWR5hHd_1319x2Oog,"Bad experience with the subscription, they refuse to give back the months I haven't used after canceling. Just want the yearly subscription. The Mac app crashes / gets stuck.",1,10,4.16.1.6,2019-12-12 17:30:55,"Any.do is a free app, and we never require our users to upgrade. In order to sign-up for a subscription, you must authorize the purchase in your app and through Google Play. If you have any questions about cancellations or refunds, contact us at Premium@any.do.",2019-12-15 09:28:31,most_relevant,com.anydo +Zac Shepherd,https://lh3.googleusercontent.com/a-/AOh14Ghny7EgKixj5L0fK98P5J5zDuthNQhCk2lLMz4LuA,"Wow, completely annoying. Trying to get you to buy premium on ever page. So much for trying it out.",1,1,4.16.3.6,2020-01-18 02:16:01,,,most_relevant,com.anydo +Ann-Marie Stauffer,https://lh3.googleusercontent.com/a-/AOh14GjzpZ0NSx1TZcsIoN5vuXYK5_3C2i5uB-hbsXowwQ,Installed and started setup. EVERYTHING I INSTALLED THIS FOR REQURED A SUBSCRIPTION. ONLY INSTALL IF YOU WANT TO PAY FOR EVERYTHING. IT probably should be stated that ALL the good points of this app require a SUBSCRIPTION. I AM NOW UNINSTALLING THIS APP.,1,7,4.15.9.12,2019-11-15 02:36:24,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. You can use Any.do for free for as long as you like.",2019-11-18 16:27:18,most_relevant,com.anydo +Lia Blume,https://lh3.googleusercontent.com/-Q7yKpaC1fDo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMy84ULtQ2yrt2raBER_yymn2cu0A/photo.jpg,"Used to like it, but now the shopping basket is missing and I can't make a grocery list anymore. Very annoying.",1,1,4.16.3.6,2020-01-17 08:23:01,,,most_relevant,com.anydo +Kasar Farid,https://lh3.googleusercontent.com/a-/AOh14GhrJNRPBhSNh4xZCKYbMgGZcii_0tfM9oEZJWy6Wg,"Shity app. On top of that I subscribed for monthly and they charge me the while year. And when I cancel my subscription , no return policy. My Google reminder app is millions time better.",1,5,4.16.2.7,2019-12-25 13:36:16,,,most_relevant,com.anydo +Nigel Smith,https://lh3.googleusercontent.com/a-/AOh14GgrO3HSCa8joK_dkAIleNOB1fNr-7nRUfu6_3vYMw,I hate apps that try to trick you into subscribing. Be transparent about the conditions of use. For that alone I uninstalled this app straight away.,1,1,4.16.3.6,2020-01-16 02:45:24,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. You can use Any.do for free for as long as you like.",2020-01-16 09:08:34,most_relevant,com.anydo +Cory G,https://lh3.googleusercontent.com/a-/AOh14GiVq7ZpMbup-5bmMZeqDnNImt07plWZPnnuDnn6,Deceptive billing practices - information on cancelling is circular; emailed a link that advises to email. Doesn't have colour tag functionality across web and app; very poor UX and worse customer service.,1,6,4.15.9.12,2019-11-27 08:00:30,"Any.do is a free app, and we never require our users to upgrade. In order to sign-up for a subscription. If you have any questions about cancellations or refunds, contact us at Premium@any.do. +Furthermore, we recently added Color tags to the Web app, please submit a bug if you are unable to see the Color tags button in the task menu!",2019-11-27 08:08:58,most_relevant,com.anydo +Fatimah Azzahra Hanafi,https://lh3.googleusercontent.com/a-/AOh14GjqD4LyAncVlLWSuaknScxSFGBPPB78OuXaqPwgcEw,I have canceled for the subscription when at the first time i used anydo. Do i still have to pay? i was try for free trial for the first i using this app.,1,0,4.17.0.2,2020-03-23 20:34:58,,,most_relevant,com.anydo +data base,https://lh3.googleusercontent.com/-1lg4aXzlslg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO698MyoEGx9EML5nOTlML5bLspwA/photo.jpg,You are replying its free app but in every Option it shows you can get access to this tool after purchasing.,1,1,4.16.3.6,2020-01-16 15:05:39,"Please note that the premium ad will only appear when you login, or try to access a premium only feature. However please note that we provide 95% of our features at no cost, including all core features.",2020-01-20 09:09:09,most_relevant,com.anydo +Bill Richards,https://lh3.googleusercontent.com/-2GwnUUMh0a8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO3Vqxs_UNkQbU-7YI4QFinRbIp_g/photo.jpg,"This app used to be good, but now the recurring reminder time changes everyday to the time you completed the task.",1,8,4.16.2.5,2019-12-19 14:23:25,"Hi, that's odd, please send us a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2019-12-21 11:28:24,most_relevant,com.anydo +Marco Scholma,https://lh3.googleusercontent.com/-n2nTGzOSH0g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMhJ8BX-wlHgg-EU4z4xuxe_5ziMA/photo.jpg,"Unusable without an account. Even when I'm not interested in any of the ""cloud"" features",1,4,4.16.2.7,2020-01-04 12:00:58,,,most_relevant,com.anydo +João Neiva,https://lh3.googleusercontent.com/a-/AOh14Gi0meLUZOnfFm8PgCFn-houvE5mRKs3LDLU2EB5Pw,"I've feel deceived by this app. There's no assistant, the whatsapp integration doesn't work also. I contacted support and got no answer. I'm cancelling my subscription.",1,17,4.16.1.6,2019-12-06 17:24:08,You can sign up to the integration on https://whatsapp.any.do and Google Assistant is in rollout and should go 100% live in a few days.,2019-12-10 21:06:42,most_relevant,com.anydo +Debra Grewar,https://lh3.googleusercontent.com/a-/AOh14GjhfhOP5TDwqZqUhQHNKgLpAx_2Suvzs53xEWGk,The premium version is advertised at R32 per year but if you tap it it changes to R300 odd. What's up with that?,1,2,4.16.3.6,2020-01-09 13:55:29,,,most_relevant,com.anydo +Serge De Vos,https://lh3.googleusercontent.com/a-/AOh14Gh7TGhdxu-s0h9dyWxYaQ8YeesH-IUG11rPli6mYqw,Downloaded the app...uninstalled within the 5 days they offer you for free. Now I noticed they charged me a full year subscription of 900+ INR. What a sneaky way to generate revenue....,1,5,4.15.9.9,2019-11-11 07:17:09,"Any.do is a free app, and we never require our users to upgrade. In order to sign-up for a subscription, you must authorize the purchase in your app and through Google Play. If you have any questions about cancellations or refunds, contact us at Premium@any.do.",2019-11-11 12:53:16,most_relevant,com.anydo +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,I never knew you could have a Callender planner bug you so mutch it will definitely remind you of things and does not stop. Not interested at all...,1,2,4.16.2.5,2019-12-21 02:53:07,"We're sorry to hear you aren't enjoying Any.do. If you have any feedback about the app that you'd like to share, we'd love to hear it at Customers@any.do. We're constantly trying to make the best app possible for our users, so feedback like yours is vital for improving the app.",2019-12-21 11:56:56,most_relevant,com.anydo +Mahaveer Singh,https://lh3.googleusercontent.com/-5rAAx03Z_QQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOxijKr-M-PmvPDv141fOlkyJ_xJg/photo.jpg,Very bad app not able to close my account . They are forcefully charging amount.,1,1,4.16.3.6,2020-01-19 05:20:43,We require sign up to backup your tasks and sync them across all devices.,2020-01-19 19:58:13,most_relevant,com.anydo +Ravi S. Chaudhary,https://lh3.googleusercontent.com/a-/AOh14GhIHiN3X_MlGXuwiaFV3GRz2FuVukiC_QhoW1bk,I'm using One plus 7 android 10. Alarm reminder doesn't work at all.,1,2,4.15.9.12,2019-11-20 04:46:50,"If you're experiencing issues with your reminders, we highly recommend you take a look at our Help Center Troubleshooting article on this: support.any.do/why-did-my-reminders-stop-working/ or contact us directly by submitting a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2019-11-20 16:01:27,most_relevant,com.anydo +Michael Kneiser,https://lh3.googleusercontent.com/a-/AOh14GjeKKl9MDyFXymVbK8pwUUVcAuz-H_ryFYcrWrdBjU,VERY DISAPPOINTING. COMPLETE WASTE OF MONEY! Now I add notes to a daily repeating calendar event! FREE AND EASY,1,1,4.16.5.0,2020-02-03 04:16:54,"We're sorry you feel this way! 95% of the app is completely free and unlike similar apps, we allow our users to enjoy most of the features for as long and as much as they wish without any 3rd party ads or a requirement to upgrade :)",2020-02-03 16:16:33,most_relevant,com.anydo +Dattesh Chhatriwala,https://lh3.googleusercontent.com/-lRoWn-jnryE/AAAAAAAAAAI/AAAAAAABKrk/AAKWJJOsOfXhYTfKm8P-h0vF-rczl_Ra-A/photo.jpg,"i purchsed for one month and try to integrate with Whatsapp, its not working at all and even not able to click resend for OTP",1,4,4.16.2.7,2020-01-04 05:41:49,,,most_relevant,com.anydo +Lydia Ng,https://lh3.googleusercontent.com/-_8C0dJKwr9M/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOPfuhAnkWCExd9bFf0VgRG_FlHsg/photo.jpg,"Cannot link with other Google products, such as Keep Notes. The tags function forces user to upgrade.",1,1,4.15.9.9,2019-10-31 09:33:23,"Hi Lydia, please note that we currently only integrate with Google Calendar, so you can see your events, however we are working on integrating with the Google Assistant, and we should have an update supporting this in a couple of months!",2019-10-31 16:43:47,most_relevant,com.anydo +Courtnee Jackson,https://lh3.googleusercontent.com/-nND1Ep2w7bc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPCT-M21DtBO-eV6MBXtxb-jVvHqQ/photo.jpg,Ensure you read the comments re: payment. Every critical comment is true and this app just isn't worth what you're charged. I recommend you beware.,1,1,4.16.2.7,2020-01-03 22:24:20,,,most_relevant,com.anydo +Ali Corbin,https://lh3.googleusercontent.com/a-/AOh14GhezARb7x5-YYUCHIdy_SNGuRcX-bs_KU7TKqhLmQ,"The font is too small for me to read, with no way to change it.",1,2,4.16.1.6,2019-12-07 03:39:38,"Hi Ali, please note that you are able to change the font in your device settings, to do so simply, go to your device settings => Display => Font size, and change the text size from there!",2019-12-10 09:22:15,most_relevant,com.anydo +Amol Shete,https://lh3.googleusercontent.com/a-/AOh14Gh3Qle35zMAvACPKPGq-K6Nqex0Xj25wmf-MMpzGg,Not able to set reminder of am . By default it is 'pm' and not able to select 'am',1,1,4.16.3.6,2020-01-08 07:12:19,,,most_relevant,com.anydo +avnxh bakxh,https://lh3.googleusercontent.com/a-/AOh14Gj8Grt0RxjaLksmAuYBvtq4N8peObNnctxakvg,7 day trail but you have to fill all or card details and take subscription worst trick,1,0,4.16.3.6,2020-01-10 01:29:23,,,most_relevant,com.anydo +Gmail Vodacomcell,https://lh3.googleusercontent.com/-m3UQZ2fN7q8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOA6AIGpBr4NVxMGnfxSP6vDDsNwA/photo.jpg,Hi. App states its free. Yet there is a charge after 7 days. Dont mislead people,1,1,4.15.9.12,2019-11-20 01:11:22,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. You can use Any.do for free for as long as you like.",2019-11-20 15:59:18,most_relevant,com.anydo +Noble Regius,https://lh3.googleusercontent.com/a-/AOh14Gg_sU5cNmswdxkyVO-BHI50JHs9ilsoOOOhbcak,How can I pay such an amount just for a to do list app. I'm uninstalling it now (5 mins after installation),1,0,4.16.1.6,2019-12-04 17:31:30,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. We modeled all our pricing tiers off of similar services so we could stay competitive. We also occasionally offer promotions, you can inquire about them at premium@any.do!",2019-12-05 08:36:34,most_relevant,com.anydo +Donald Willians,https://lh3.googleusercontent.com/a-/AOh14Gg2ql5jbySQfpVFQCpUyQnbVPN5o4LQgbgp7tmG,Will not work without connecting to an account.,1,0,4.16.3.6,2020-01-07 03:42:21,"We ask users to register an account because our app syncs across multiple platforms. In order to provide flawless sync, tasks are saved on our servers, which in turn makes them available 24/7 no matter where you log in from! :)",2020-01-07 08:44:26,most_relevant,com.anydo +Yew York Tan,https://lh3.googleusercontent.com/a-/AOh14GgLOep-qw43dHFm7xcT7kdO_JimuQfxB5eqQb3X,I hope the calendar inside can keep the completed to-do list history.,1,0,4.16.2.7,2019-12-30 09:37:51,"Hi, please note that while we do not display completed tasks on the calendar, you are able to see all your completed tasks in the completed task section in the settings! +If you have any further questions, please let us know at Customers@any.do",2020-01-01 09:06:18,most_relevant,com.anydo +LC LC,https://lh3.googleusercontent.com/-AjU6hNgVFj0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMDEMD0vOzkxe4c3WtSOablK5z3ag/photo.jpg,"Immediately wants me to buy the full version of the app, while the demo part is not even that nice",1,0,4.16.2.5,2019-12-15 18:17:41,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. We modeled all our pricing tiers off of similar services so we could stay competitive. We also occasionally offer promotions, you can inquire about them at premium@any.do!",2019-12-16 07:49:30,most_relevant,com.anydo +Gustavo Domínguez,https://lh3.googleusercontent.com/a-/AOh14Gj-_45K4IbxYwyNNjjkp-Wait6gJJlfnEs2z-IMHA,"This is not a multi-protocol task manager as the description false implies. This is a front end to their service. I couldn't get past the first screen because it requires me to set up an account to sync. I use a private server capable of syncing things like tasks, Exchange. Most public clouds (Google, iCloud, Office365, email providers) have this capability, therefore why should I need to send my data elsewhere if it's already on a server. The fact that data is not something you can touch doesn't make it less valuable. Be mindful of it, it *is* our most valuable asset today, it may not be tangible but it sure can be quantified endlessly. Requiring signing up for any app is a huge red flag.",1,0,,2020-02-15 15:37:08,"Gustavo, it seems like it wasn't meant to be. Good luck!",2020-02-16 12:12:00,most_relevant,com.anydo +Roxie A,https://lh3.googleusercontent.com/-yJBGa51Q1rw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMRfsB0_x_LZBmaX82-mq_J66KZ2g/photo.jpg,I had a premium. Scam.The app is very pushy and annoying. I couldn't get into 80% of my incoming calls as it blocked the screen so the call doesn't appear on the screen. You only hear it and hopelessly looking for the call screen that you only get once the call is dropped. You have to call back then. Disturbing and annoying. I barely used this app as to maintain it takes a lot of time. I asked them to cancel they said they will not refund as more than 48h passed of yearly(!) subscription.,1,0,,2020-01-27 17:29:21,,,most_relevant,com.anydo +Holly Renee,https://lh3.googleusercontent.com/a-/AOh14GgJknpKQq8i4d22rrKx0b2TcgytAWEvx-NtkEnq1A,"It doesnt offer anything that I cant do on my google calendar. At least not in the free version. I'm not going to pay for an app that is basically just going to import my google calendar, when I can do the same things with google for free. Also, I saw another review where they have deleted reviews, which is shady. If this gets deleted, I'll look into the legal laws governing false advertising.",1,1,3.4.29.3,2020-01-18 21:13:19,"Hi Holly, please note that we do have our own unique features such as our Moments features. Using an Any.do Moment, you are able to quickly plan your day, with increased precision. You can learn more here:https://support.any.do/any-do-moment/ furthermore, we have no ability to delete reviews, though Google may remove it if it violates their policy.",2020-01-20 08:44:39,most_relevant,com.anydo +Mohammad Gamal,https://lh3.googleusercontent.com/a-/AOh14Ggl_vWXFn2EneIhLGNApiH4vAGjzvlnWYvi0yzjsw,Cant change default theme to black ! It asks to change me plan from free to premium before doing so !!,1,0,4.16.3.6,2020-01-19 20:09:40,"Please note that the Black theme is currently a premium feature, however we may look into changing this in a future update.",2020-01-22 10:05:26,most_relevant,com.anydo +raj Patel,https://lh3.googleusercontent.com/a-/AOh14GgWvfUlclLvfBzToIn1zKNFh5Fz8O7weKrmmowlQA,I am unable to subscribe app payment method declined,1,0,4.16.6.2,2020-02-24 19:53:04,Sounds like a Google Play issue - please try contacting their team for clarification :),2020-02-26 14:35:11,most_relevant,com.anydo +mat thew,https://lh3.googleusercontent.com/a-/AOh14Gi_HofOARuVDLEEd7PU7lHFaFvk6QONJvT8w0w4eQ,"Theres always something shifty to me about an app that shouldnt need a subscription for doing the absolute minimum. They make setting reminders too complicated and they're hoping you forget to end your free trial before they start doing automatic payments, that's just how most of these apps work. You're better off setting an alarm on your phones clock and having that on repeat than you are using this.",1,0,,2020-01-28 23:42:04,Reminders are a free feature that doe not require any upgrade. Only advanced recurrence option are part of the Premium plan. Google Play also send a notification of payment on the day of the charge so users can stay on top of their payments and contact us immediately if there's any issue.,2020-02-03 16:13:55,most_relevant,com.anydo +Ashutosh Raravikar,https://lh3.googleusercontent.com/-ZOgTb1Wp-2w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNjlIS4CuLHLXC6D8IPtrpPHZqUcw/photo.jpg,Manage subscription is not given in the app menu,1,1,4.15.9.9,2019-11-07 15:26:49,"Any.do is a free app, and we never require our users to upgrade. In order to sign-up for a subscription, you must authorize the purchase in your app and through Google Play. If you have any questions about cancellations or refunds, contact us at Premium@any.do.",2019-11-11 12:36:01,most_relevant,com.anydo +Yasin Kilic,https://lh3.googleusercontent.com/-DBGJBKljTko/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMUb61v0dwmbIV1U3ohtf9E_BH7nA/photo.jpg,"Disappointed, cant plan the same task over multiple days. Manually adding same task to repeat each day is a downside. Uninstalled.",1,0,4.17.0.3,2020-04-06 18:14:21,,,newest,com.anydo +Joe Joejambo,https://lh3.googleusercontent.com/-NIeA_lITt08/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNl3uX_ZBMAGxkADcoIpNP-gLb-KA/photo.jpg,Ok,1,0,,2020-04-06 16:07:45,,,newest,com.anydo +Andrew Thomas,https://lh3.googleusercontent.com/a-/AOh14GiHdfNEu1DwwcJ6yNyju8Yvn4JwjpzuXvD74aVmDA,Update: After getting a response from the developer I would change my rating to 0 stars if possible. These guys hide behind confusing and opaque terms and refuse to budge at all. I'm so annoyed that my money has been lost to them! Really terrible customer experience. Original: Be very careful when signing up for a free trial of this app. If you happen to go over they automatically charge you for a full years subscription and refuse to refund. Terrible customer experience and the app is just OK.,1,21,4.17.0.3,2020-04-05 22:25:57,"According to our TOS, and the term you have agreed to upon creating your free trial, after the 7 days, there is an automatic charge for the plan, unless you cancel prior to the renewal date. As you did not cancel the subscription in time, you were charged per this agreement.",2020-04-05 15:10:24,newest,com.anydo +Marti Newkirk,https://lh3.googleusercontent.com/a-/AOh14GiqrvU3H2k8zPb8jh9qqOjSkQEr812ZoL56p0JQrg,Can't get it to finish installing and I have plenty if room. Gets to 97% and then stops. I will revise my review if I ever get to try it!,1,0,,2020-04-05 16:26:33,"We are not aware of any issue with downloading the app. Please contact us at https://www.any.do/contact_form, and we will be happy to look into it for you.",2020-04-06 14:13:12,newest,com.anydo +dorobert,https://lh3.googleusercontent.com/-HJYfEGvO13Q/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN6LNc8HCfnSvW4NXlO_5SIqMoxtw/photo.jpg,"Stop charging people for things that are simple. Just use OneNote. Buy a great planner on Amazon, copy the template and save your money.",1,0,,2020-04-04 21:02:07,"With Any.do there is no need to upgrade! We offer 90% of the app completely for free, and unlike similar apps, we allow our users to enjoy most of the features for as long and as much as they wish without any 3rd party ads or a requirement to upgrade :)",2020-04-05 15:12:30,newest,com.anydo +Craig Haines,https://lh3.googleusercontent.com/-hoe0kwSJgPQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO0EsmXC8aWKGNwRRyhUUYIphff_g/photo.jpg,Used it for a fair amount of time without any problems. Suddenly then asked me to create an account or log using Google or FB. I used my Google one only to discover everything was gone!,1,11,4.17.0.3,2020-04-04 13:40:01,It sounds like you logged in with a different account that you had before. We will be happy to look into this should you send us some more details here- https://www.any.do/contact_form,2020-04-05 15:11:35,newest,com.anydo +marko adžaga,https://lh3.googleusercontent.com/-PB6DLPAr7js/AAAAAAAAAAI/AAAAAAAABU8/AAKWJJPCUp3-jL_HbnPcK2ISYiRkvZQl1w/photo.jpg,Pay,1,0,4.17.0.3,2020-04-04 08:52:34,"With Any.do there is no need to upgrade! We offer 90% of the app completely for free, and unlike similar apps, we allow our users to enjoy most of the features as much as they wish without a requirement to upgrade :)",2020-04-05 15:07:09,newest,com.anydo +Pepe Ruiz,https://lh3.googleusercontent.com/a-/AOh14GgDn79r9gDDbRaoPk_4PSiR4gF5uivI50tRbV1Frw,Useless it keeps erasing everything you have to dominate the app! It should be easy,1,0,,2020-04-03 14:15:34,This sounds odd. We're not aware of any issues with adding tasks to your account. We will be happy to look into this for you should you send us a bug report via the app settings- support. Our team will do its best to investigate this asap.,2020-04-05 15:03:39,newest,com.anydo +Musharaf ansari,https://lh3.googleusercontent.com/a-/AOh14GhAhsYFol2kH5zZ0o3Xzyvl64Leee7b95cT2p81,This app is bur futti randi chodari,1,0,,2020-04-03 05:46:12,"If you're experiencing any issues with the app, you are welcome to contact us at https://www.any.do/contact_form with any questions, and our team will be happy to assist.",2020-04-05 15:02:43,newest,com.anydo +Farkas - Ráduly Szabolcs,https://lh3.googleusercontent.com/-lzVTmEjn5Do/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOEZl10icrDQmyT4OvFKex7C4pkXQ/photo.jpg,No custom notification sounds??? Really?,1,0,4.17.0.2,2020-04-02 16:01:49,"We offer various sound options for the notifications that you can choose under the app settings. To align with the app's simplistic mode, there is currently no option to create custom sounds. That said, we will have our product team look into your suggestion.",2020-04-05 14:59:35,newest,com.anydo +steven adkins,https://lh3.googleusercontent.com/a-/AOh14GiXw07kTGrV_Q1ko4e7suhbWRUcJFAecYWjOLHwnw,Your app sucks now!!!!! Used to be good but now doesn't update until I physically open it up and then close it then scroll and then it finally shows what I want to put on the list!!!!!! And I FRIGGEN paid for this garbage!!!!!!!,1,17,4.17.0.3,2020-04-01 16:18:13,This sounds odd! We are not aware of any issues with the sync. Please submit a bug report via Settings - Support so our team can look into it for you asap.,2020-04-02 16:05:56,newest,com.anydo +damir jovetic,https://lh3.googleusercontent.com/-j2pO1d0sPKM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOA5qM1tPA-PoNljHoJW-9S4WWdGA/photo.jpg,delete,1,0,,2020-04-01 13:24:22,"We're sorry to see you go! If you've experienced any issues with the app, we will be happy to look into it, should you contact us at https://www.any.do/contact_form.",2020-04-02 16:01:55,newest,com.anydo +H. Nikolas Otterstrom,https://lh3.googleusercontent.com/a-/AOh14GiUA8CvKl3WHS_k6TKylovWVmobZEAGCarJ0oJIcA,3.99 per month to make the app usable. POS,1,0,,2020-04-01 01:38:23,"You may use the app completely for free, including all of the core features. 90% of the app is completely free and unlike similar apps, we allow our users to enjoy most of the features for as long and as much as they wish.",2020-04-02 15:56:00,newest,com.anydo +Gabrielle Dendy,https://lh3.googleusercontent.com/a-/AOh14Gi05Uo36ibKZS8i44uRvhUp-67ZtCSZVBJY_Jtt,Not worth $38...,1,0,4.17.0.2,2020-03-31 13:43:33,"There is no need to pay for the app, you're welcome to use the standard version for as long as you wish! 90% of the app is completely free and unlike similar apps, we allow our users to enjoy most of the features as much as they wish.",2020-04-02 15:48:12,newest,com.anydo +Anil Satale,https://lh3.googleusercontent.com/a-/AOh14Gi-Y3aShBGnE9SHrmEwpKB-ULsW95ZuhclgbbT0dQ,I downloaded it and login with Google I never did anything just logged in with Google. It has asking me many time for auto debit for subscription so I uninstalled it. But still 5 min before Rs 909 debited from my account. This is the muging of money. I want refund my money in my account. Kindly,1,1,4.17.0.2,2020-03-30 15:15:19,"A payment can only be made upon the user's authorization via the app and Google Play, so this sounds very odd. Please contact our team at https://www.any.do/contact_form so we can look into it for you.",2020-04-02 15:37:55,newest,com.anydo +Maruk Miah,https://lh3.googleusercontent.com/-EEmB7Eth0zI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMlPlKsKC1DYyVGY9qOOSNGOe6knw/photo.jpg,Only 7 day trial. Not sufficient. A month would be better,1,0,,2020-03-29 08:52:56,"We offer a 7 days free trial since it has proven to be the most efficient time period. We believe it will allow you to get to know the great features our premium plan has to offer. If you would like to enjoy the app for a bit longer, you may subscribe for a monthly plan, which you may cancel afterwards in case you're no longer interested. :)",2020-04-02 15:09:03,newest,com.anydo +Aron Teklebrhan,https://lh3.googleusercontent.com/-z7_Ax3cJKdQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOzkgRDSprtj_1rE64lOtPRWTjGfw/photo.jpg,This app is super best,1,0,4.17.0.2,2020-03-28 12:57:39,"If you're enjoying Any.do, we would love for you to update your review :) If you have any questions please contact us at https://www.any.do/contact_form",2020-04-02 15:06:33,newest,com.anydo +Yussif. Osei,https://lh3.googleusercontent.com/-uBOz_l7rY4c/AAAAAAAAAAI/AAAAAAAAA6Y/AAKWJJN9KUOhiN_-QG-3VPd83xJbUkQ3Jg/photo.jpg,Why should I pay for an app of which I haven't installed? Huh😠😠😠,1,0,,2020-03-27 22:41:55,"We're not sure we understand what you're referring to. A payment can only be made upon the user's authorization via the app and Google Play, so this sounds very odd. Please contact our team at https://www.any.do/contact_form so we can look into it for you.",2020-04-02 14:54:32,newest,com.anydo +Satya Pranay,https://lh3.googleusercontent.com/a-/AOh14GgIEs_a4H-LvKcnqqVX5r4WL07W637FflQ-Uyfzdw,Cannot change themes anymore missing notifications liked it previously,1,0,3.4.27.3,2020-03-27 13:36:52,"This sounds odd, kindly submit a bug report with more details so we can look into this for you. Simply go to the app settings- support, and choose to submit a bug. Our team is always happy to assist with any questions.",2020-04-02 14:46:34,newest,com.anydo +Unknown Gaming,https://lh3.googleusercontent.com/a-/AOh14GioGb4EUVDaQ9SSZ69fmg2yUzspIEV-vv3FC5sK,isnt this basically a calendar that is for all phones.,1,0,4.17.0.2,2020-03-24 20:21:50,,,newest,com.anydo +Stab,https://lh3.googleusercontent.com/a-/AOh14Gg_l0XWd5ndMU0gCioXmwCHR4-we0xWxoMqDlbfcQ,The reminder doesn't work at all.,1,0,,2020-03-24 09:24:49,,,newest,com.anydo +Sameer Grover,https://lh3.googleusercontent.com/a-/AOh14GgXmkcV1G_nMgpd1Lxrdx6oZUo1nGh1XBdXScZzJA,"In recurrent tasks if I skip marking one of them as ""done"" it doesn't remind me the next time (say after a week or next day if the repetition is set to daily)",1,0,,2020-03-24 07:43:25,,,newest,com.anydo +Nena Treto,https://lh3.googleusercontent.com/a-/AOh14Gii2Y0A85AiMsvSlVQVR2ZJXK4y7yaWqPpEloxQ5g,Doesn't sync.,1,0,,2020-03-24 01:56:05,,,newest,com.anydo +Fatimah Azzahra Hanafi,https://lh3.googleusercontent.com/a-/AOh14GjqD4LyAncVlLWSuaknScxSFGBPPB78OuXaqPwgcEw,I have canceled for the subscription when at the first time i used anydo. Do i still have to pay? i was try for free trial for the first i using this app.,1,0,4.17.0.2,2020-03-23 20:34:58,,,newest,com.anydo +Z Tidwell,https://lh3.googleusercontent.com/-PaWHXG2FlJQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOembvfhOmPPKMcEoCsJoGghx3WOQ/photo.jpg,No help to be had. No tutorials available. After 3 days I could not even find out how to delete notes. Perhaps I am just stupid. Perhaps it doesn't work with my phone. Uninstalled and we'll try something else to work with my Google assistant.,1,0,,2020-03-23 16:39:44,,,newest,com.anydo +Peter Shadbolt,https://lh3.googleusercontent.com/a-/AOh14GipVc0yTI4DGg-OWugGD72Pr6LDhAKM1FbblwPw,Really disappointed to find recurring tasks functionality is only available with the paid version. Would not recommend. Also it doesn't sort tasks by date and time properly.,1,2,4.17.0.2,2020-03-22 01:55:04,,,newest,com.anydo +Chris Lane,https://lh3.googleusercontent.com/-s6bg896UVOI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNKoBbpl3daJ6XvR12QY6vtlVPLWA/photo.jpg,"BEWARE the trial period is a scam I've been using the free version for a while and decided to try the premium for 7 days per the trial ad. After 5 days I realized it didn't quite organize my information how I best work so I wrote to cancel. They informed me that I must have accidentally signed up for a non trial and by their strict Terms cannot refund me. So I wrote back nicely that my intention was to try it per the Ad, but they said it's not possible. Really?",1,58,4.17.0.2,2020-03-21 22:47:52,,,newest,com.anydo +Jack Lucas,https://lh3.googleusercontent.com/-2ASsWjbEOig/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM5QJ57oCVjsoayVPyELEhZMvBfpA/photo.jpg,All I want is a calendar. This app spams you so much. 1 star,1,0,4.17.0.2,2020-03-21 12:09:49,,,newest,com.anydo +Faizal Khan,https://lh3.googleusercontent.com/a-/AOh14GgABSTcKr6F2FcHtMxSOb-9D1iRj41GZRBlBWpzwA,Requires registration,1,0,4.17.0.2,2020-03-20 21:44:01,,,newest,com.anydo +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Please free the colour theme and tags and then I will give 5 stars,1,1,4.17.0.2,2020-03-20 19:52:00,,,newest,com.anydo +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,This app kept losing my reminders,1,0,,2020-03-20 05:23:51,,,newest,com.anydo +Naveed Ali,https://lh3.googleusercontent.com/a-/AOh14Gi0gnqPc0fVI5A4R2Hm2kbb5Xz-zh3IvecA-y6cNWQ,Did not work,1,0,4.17.0.2,2020-03-20 01:00:59,,,newest,com.anydo +fhs baghi,https://lh3.googleusercontent.com/-eRScCpqOy04/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM0-P9di7gbcmzjYTexeW99VuGgYg/photo.jpg,"Just basic app without any exciting features. Why I pay for this useless app. Please don't download it's a cheat, waste of time and energy.",1,0,4.17.0.2,2020-03-19 03:10:24,,,newest,com.anydo +Chaitanya Bhimireddy,https://lh3.googleusercontent.com/a-/AOh14Gii4E-TlXM0mevhf43-yrQ8gVR2Ws7eWX3n2zjEkAk,to much cost,1,0,4.17.0.2,2020-03-18 21:08:24,,,newest,com.anydo +Naveed Hashmi,https://lh3.googleusercontent.com/a-/AOh14Gg2kHN6Z08eyE9nswl-MCMR_YJhESiVreQtQzEZTA,Not user friendly. Directly asking for money.i already uninstalled,1,0,4.17.0.2,2020-03-18 20:00:56,,,newest,com.anydo +tshiamo xola,https://lh3.googleusercontent.com/a-/AOh14GhB-zCK8m0ZgsQtya65n4b1RmwbxIzrvdwVOLOODw,"Trashy App, a total waste of time🤞🏽",1,0,4.17.0.2,2020-03-18 13:21:01,"Hi, could you please tell us why do you dislike our app? If you have any suggestions, please send them to Customers@any.do.",2020-03-18 13:52:02,newest,com.anydo +Ismail Omar,https://lh3.googleusercontent.com/a-/AOh14GjyxEOu5ijYuNsDmbJS7HiR66eI5d2Bh0ZBnQYc9Q,"The app felt good enough for me to buy the yearly subscription, which I did and paid th 15€ it requested. But a week later they charged me 17 more euros to my credit card for the same subscription and the same features so I basically paid 32€ . THAT is a scam and unless I get my 17€ euros back I'm gonna keep the rating at one star.",1,12,4.17.0.2,2020-03-17 16:45:49,Are you sure this is for the same account? Perhaps you have opened another one? Or registered to multiple plans? All of our payments require full authorization on the user's end so this sounds very odd. Please contact our team at https://www.any.do/contact_form so they can look further into it for you.,2020-03-18 04:21:16,newest,com.anydo +a google user,https://lh3.googleusercontent.com/-dKQUEpzzmFM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPwTDwJanJBo6sT15Rfs48utNO7Pw/photo.jpg,Have to pay for a dark mode lol,1,0,4.16.6.2,2020-03-14 19:05:35,We're working on adding a free dark mode which will be released in the next few months :),2020-03-15 23:46:16,newest,com.anydo +Scott Prewitt,https://lh3.googleusercontent.com/-K-X1-YsVd6U/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPVmHjpzMLp0OefiAXRWgOLkEYXGQ/photo.jpg,Absolutely worthless. This app runs a prohibitively clunky interface that effectively voids the promise of ease-of-life automation. Google Calendar will provide all other services promised by Any do for free with no annual subscription rate. Don't sign up for the free trial. It's not worth getting pinged for forty bucks when you decide you don't like it and forget to cancel it in time. Save your money!,1,42,4.17.0.2,2020-03-14 17:41:01,"We're sorry you feel this way! 90% of the app is completely free and unlike similar apps, we allow our users to enjoy most of the features for as long and as much as they wish without any 3rd party ads or a requirement to upgrade. If a plan isn't cancelled in time, it will be charged per the TOS the user agreed to upon upgrading.",2020-03-15 23:45:51,newest,com.anydo +Arulanantham Arunrojan,https://lh3.googleusercontent.com/a-/AOh14GijC3GfGMz7u1nq9YLiwr3HkOynuv7heFcIXu2b,Worse,1,0,,2020-03-14 04:40:57,Why's that?,2020-03-15 23:43:37,newest,com.anydo +Lars Panzerbjørn,https://lh3.googleusercontent.com/a-/AOh14Gg-hRhh5qF7oSYW7NTA-6wCWpiu0ikwFkA2SR-2dA,"It seems OK, but very basic. Recurring tasks need some work to be actually useful. For example, it would be nice to be able to set a task to be recurring on the first of every month, without only being able to set that up on the first of the month. Edit; I also just noticed that there is no dark theme. Both may be available as paid for options, but I'll never know, since they are basic options and without them, I have no reason to try this app, and thus will never pay for actual premium options.",1,192,4.17.0.2,2020-03-12 08:17:34,"We do offer this option as part of the Advanced Recurrence options, which are part of our Premium plan. You are welcome to try the Premium version completely for free for 7 days by going to Settings - Go Premium and subscribing to the trial version :) You may also test the dark theme through the trial which requires no payment if cancelled.",2020-03-15 06:20:13,newest,com.anydo +Unlucky Fukd,https://lh3.googleusercontent.com/-pjSs1evD1Aw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO0xRTNrpnDYdJhkuRcnpkfzQg_lA/photo.jpg,I did the free trial and canceled this service. They charged me anyway not giving me any way to contact the company or get my money back. These people are rip offs I didn't even use their crappy app......,1,0,,2020-03-11 22:54:33,"Google Play does not charge users who have successfully cancelled the plan as instructed on our Help Center (https://support.any.do/cancellations-refunds/). We also have a contact option via the app, the Help Center, our main page and directly at https://support.any.do/cancellations-refunds/ so there is always a way to reach us.",2020-03-12 03:16:23,newest,com.anydo +Жанболат Багитжанов,https://lh3.googleusercontent.com/-RIHCTnyctS4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMQ2M0RfbyxwxvwMjxXUjUNdPL7yw/photo.jpg,"I reported about this app due to incorrect billing but noone answer me. Please, return my money back because app took my money without my permission from my credit card.",1,1,4.17.0.2,2020-03-11 17:23:37,"We do not see any requests submitted under your name. If you haven't yet received a reply, please contact the team again via https://www.any.do/contact_form.",2020-03-12 03:14:38,newest,com.anydo +Izzy Maxwell,https://lh3.googleusercontent.com/a-/AOh14Gg0keTwC1VWUQxjFcL6QKAkQhcT-FL4RJ8XWLVFgg,"It was a great app until they ruined the widgets. I pay for premium membership which is supposed to include priority support, and yet their customer service is ignoring my requests for help. UPDATE: yes, customer support responded, but they didn't solve any of my issues! These devs are great at not listening to their customers. I've switched to a different task app and I'm much happier (Tasks by Stephen Nottage, check it out!)",1,1,4.17.0.2,2020-03-11 12:08:53,"We can see that your original review was submitted in 2017. We're not aware of any issues with the widget during the current period. That said, if another solution fits your requirements better, we completely respect your decision and wish you the best of luck!",2020-03-12 03:12:30,newest,com.anydo +pranav kumar,https://lh3.googleusercontent.com/-Q2AMlgnbikg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOKbkxeYOZ1JGqxuCTpzEii7q4dYQ/photo.jpg,It's not free.,1,0,,2020-03-11 09:25:04,"90% of the app is completely free and unlike similar apps, we allow our users to enjoy most of the features for as long and as much as they wish without any 3rd party ads or a requirement to upgrade :)",2020-03-12 03:08:28,newest,com.anydo +Miguel,https://lh3.googleusercontent.com/-Ee06RTHP3XQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN9c8nE_16ImiZuwGDHvu8ZADzuVQ/photo.jpg,"This App is useless , it works as a notepad with your tasks in it , it does not notify you of tasks you suppose to do. When the time reaches it's silent doesn't pop up even though settings have permitted it to pop up and alert , even a simple alarm clock notified me of what to do .This app Doesn't work .",1,13,4.17.0.2,2020-03-11 07:43:05,It sounds like there may be an issue with your device allowing the app to send notifications properly. Please submit a bug report via Settings - Support so our team can look into this for you.,2020-03-12 03:07:20,newest,com.anydo +Printco Digishop,https://lh3.googleusercontent.com/a-/AOh14GhfGTDHr4v4u72bS_N-ynpwM3gLkf7mCylokvSk,Can not cancel subscription,1,0,4.16.3.6,2020-03-11 05:38:33,"Hey, you can cancel the subscription easily via Google Play (just like any other app).",2020-03-11 06:01:46,newest,com.anydo +taiowa 72,https://lh3.googleusercontent.com/a-/AOh14Gh8FY0Aiss_oD50oumxvPtw9e7pxIsKWbqjg-HBdUM,Keeps crashing before I can even sign in.,1,0,,2020-03-10 00:35:45,"Hi, can you please try reinstalling the app. Please contact us at Customers@any.do if the issue persists.",2020-03-11 06:03:29,newest,com.anydo +Ernie Nadeau,https://lh3.googleusercontent.com/a-/AOh14GgcxgfKa_1qpfh2ElLKVifHfmOjJIZLdCfquiTSuQ,Loaded the trial then emailed about cancelation but email bounced back. Ended up paying $36 for an app I didn't want. No way to contact for refund. Be careful if you buy this. If you try the trial you're stuck paying for it!,1,12,4.17.0.2,2020-03-07 17:32:17,"We offer a contact form through the app, via our Help Center, on our main page or directly at https://www.any.do/contact_form. Users can reach the team at any point in time for assistance.",2020-03-10 03:55:34,newest,com.anydo +NDSRises MISIT,https://lh3.googleusercontent.com/a-/AOh14GjP8tYP7sIpKaSpU4oLlabfarYnjVMX-dCdnWEHpA,"Thanks to the developer for your quick response, however, this calendar is useless for our group without those features...we decided to go with Business Calendar Pro. Previous comments: Wasn't able to see month or year view",1,33,4.17.0.2,2020-03-06 17:11:49,"The Agenda Calendar View provides a monthly spread with tasks right underneath. At this time, we do not have a yearly spread but we appreciate the feedback and will pass it on to our Product Team for review. That said, if another solution fits your requirements better, we completely respect your decision to switch.",2020-03-10 03:47:27,newest,com.anydo +Jill Cox,https://lh3.googleusercontent.com/a-/AOh14GgTt_9R9Qm0-f-s6pJypgkuAUnBMAcIPJSDHIhNHQ,"Hard, to use",1,0,,2020-03-05 04:31:53,"Sorry you feel this way! We have an extensive Help Center detailing how to utilize the features (https://support.any.do/), as well as wall as our Blog which contains lots of articles on how to best apply these tools to your daily routine (http://blog.any.do/). You are also welcome to contact us at https://www.any.do/contact_form with any questions.",2020-03-06 03:19:27,newest,com.anydo +Soroosh Sanayee,https://lh3.googleusercontent.com/a-/AOh14GgFIBtefCSfca6VjMJkLa51j7BXmvzVVdd4gC9w1A,How can I get my money back?,1,1,4.17.0.2,2020-03-04 07:39:43,You may find details regarding refunds and cancellations over on our Help Center: https://support.any.do/cancellations-refunds/.,2020-03-06 03:12:17,newest,com.anydo +Brandon N,https://lh3.googleusercontent.com/a-/AOh14GjolGmi4sphWd9uVVPjoMj2amrB45_pUYwCZpYk2Q,I hate companies that make you needlessly create accounts. Have a 1 star review as payment for my distaste.,1,1,4.17.0.2,2020-03-04 04:04:18,"Heya! We ask users to register for an account so that we can save their data on our servers, allowing for cross-platform sync and ensuring no information is ever lost :) If you wish to use a simpler solution, we completely respect your decision.",2020-03-06 03:10:36,newest,com.anydo +John Cain,https://lh3.googleusercontent.com/a-/AOh14Gitzl1LNiNtDTFEHsaxNCTiZsY8x4_W8CdgS-quVw,Upgraded and lost all my tasks from previous version ... very disappointed!!!,1,2,4.17.0.2,2020-03-03 19:31:15,"This sounds odd! As long a your tasks were properly synced to our servers, all data should be safely stored :) Please reach out to our team at https://www.any.do/contact_form so they can help resolve this!",2020-03-03 21:22:14,newest,com.anydo +paul byrne,https://lh3.googleusercontent.com/a-/AOh14Gj9DFS7QWeRJ9mMkDnmFIZszHxxA4nMH-2Xr1AlKw,Waste of time failed to pair with mu gmail account...gave up after 5 attempts,1,1,4.17.0.2,2020-03-03 17:01:53,"We're sorry you feel this way! Not sure on what point exactly you've had issues, but our team will be more than happy to look into this and help set things up should you reach out at https://www.any.do/contact_form.",2020-03-03 21:21:17,newest,com.anydo +Maezielyn Ware,https://lh3.googleusercontent.com/-shZGQacwRQQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMbkgf2veDjScSvkQ4Y7RkzZ1ZHBw/photo.jpg,The fact that you have to pay so much to use something so simple isn't worth it to me. There are free apps of similar functionality.,1,4,4.17.0.2,2020-03-03 16:05:31,"90% of the app is completely free and unlike similar apps, we allow our users to enjoy most of the features for as long and as much as they wish without any 3rd party ads or a requirement to upgrade :)",2020-03-03 21:20:17,newest,com.anydo +Mehdi Mozuni,https://lh3.googleusercontent.com/-rA-mwv5AZPs/AAAAAAAAAAI/AAAAAAAABAA/AAKWJJNrjdk287rb_AERTc0xs0mh4MmPgg/photo.jpg,Bad UX,1,1,4.17.0.2,2020-03-02 09:46:19,,,newest,com.anydo +Sujil M,https://lh3.googleusercontent.com/a-/AOh14Ggzf-eSOb4TZfYfrtx8Dz7klKRg6YMmfOk47jl9UQ,Not good,1,1,4.17.0.2,2020-03-02 05:19:19,Why's that? :),2020-03-03 20:57:57,newest,com.anydo +Heading West,https://lh3.googleusercontent.com/-AtQ9_e73Dmk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPDz8cCrMeLLTRmKayGItt-CeprbA/photo.jpg,"Subscription based model for better features. Happy to pay $20 once off if I really like an app, but not ongoing costs that can change any time.",1,0,,2020-03-01 20:17:23,"Any.do is not only a product but also a service. We are continuously adding new features, keeping your information synced and safe 24/7, and providing Priority Support for any need you may have. Since Any.do is offering much more than a standard product, we have decided a subscription is the best pricing for it, like similar apps on the market.",2020-03-03 20:57:49,newest,com.anydo +Melissa Sandoval,https://lh3.googleusercontent.com/-b4pwyPNdx0o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOJhpmisHR4KndO64IFNsQxH49brA/photo.jpg,Impossible to cancel,1,0,4.16.6.2,2020-03-01 15:47:19,"We have complete step-by-step instructions on how to cancel on our Help Center: https://support.any.do/cancellations-refunds/. For assistance, feel free to reach out to the team at https://www.any.do/contact_form.",2020-03-03 20:57:04,newest,com.anydo +Lar C,https://lh3.googleusercontent.com/a-/AOh14GjH6THYJMWWDwTbc1zPWMpw2oIBemn_d4mbz4PsDg,"Terrible developer said could cancel anytime, believing developer, installed, then refuses to cancel for 7 days,after first payment , trickery, do not dowbnload",1,0,,2020-03-01 14:13:11,"Cancellation can indeed be made at any point in time. However, as per the TOS agreed to when upgrading the app, refunds can only be issued within 48 hours after the payment is made.",2020-03-03 20:56:17,newest,com.anydo +Epin Hëim,https://lh3.googleusercontent.com/-E9kTKpWI0O8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNdrPSwhWVdI0x3-9lMEc0buq76mQ/photo.jpg,I'm not going to even explain why one star,1,1,4.17.0.2,2020-03-01 13:56:46,,,newest,com.anydo +Daniel Davis,https://lh3.googleusercontent.com/-oKrH-WpHoqo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM-sq64Umor2DOdUXLqTGV25LrWEg/photo.jpg,Wants 2.99 per month to do things I can do for free with Google.,1,0,,2020-03-01 00:10:38,"We're sorry you feel this way! 90% of the app is completely free and unlike similar apps, we allow our users to enjoy most of the features for as long and as much as they wish without any 3rd party ads or a requirement to upgrade :)",2020-03-03 20:52:08,newest,com.anydo +Fäyè,https://lh3.googleusercontent.com/a-/AOh14Gj-wiY0k2C6koWslJsw5EGXfvHug_VhTrkrywtDXIA,"complicated , dislike the pro version. microft to -do list is better",1,1,4.17.0.2,2020-02-29 02:19:44,"Sorry you feel this way! We have an extensive Help Center detailing how to utilize the features (https://support.any.do/), as well as wall as our Blog which contains lots of articles on how to best apply these tools to your daily routine (http://blog.any.do/). You are also welcome to contact us at https://www.any.do/contact_form with any questions.",2020-03-03 20:48:12,newest,com.anydo +sami succari,https://lh3.googleusercontent.com/a-/AOh14GjQl2JyAQSIBqmBiCHH2oB_kmbpJwgItfVqX4Xy,It doesn't alarm,1,0,4.16.6.2,2020-02-29 00:30:17,We're sorry for this! Please check this page for device-specific solutions: https://bit.ly/371n2x3. If you're still having issues you're welcome to submit a bug via Settings - Support so our team can assist you!,2020-03-03 20:47:43,newest,com.anydo +Mehul Doshi,https://lh3.googleusercontent.com/a-/AOh14GjsMuAHn4CmRm2wiLfwcoMZFfPyvtYciNLAcfKCTA,Deducted my money for no reason. I used the service once and then never used it. Return my money immediately.,1,0,4.16.6.2,2020-02-28 03:22:44,"Google Play does not charge user without full authorization and consent to any one of our plans. If you have any issues with your plan, you're welcome to reach out to our team at https://www.any.do/contact_form.",2020-03-03 20:41:38,newest,com.anydo +JC Vela,https://lh3.googleusercontent.com/a-/AOh14Gh79sUOhu6JI8xJsg3-FoEYltwyiO49sDxjiAAxJd0,I didn't even dare to use it as soon as it asked me $2.99 per month.,1,0,,2020-02-27 12:02:08,"We're sorry you feel this way! 90% of the app is completely free and unlike similar apps, we allow our users to enjoy most of the features for as long and as much as they wish without any 3rd party ads or a requirement to upgrade :) You may simply X out of the Premium screen if you do not wish to pay.",2020-02-28 02:13:31,newest,com.anydo +Estelle Lee,https://lh3.googleusercontent.com/a-/AOh14Gi4L0arUQw5uIQUcBJiHqYLgjVF6rBB3T_CP1MT-g,Very confusing navigation.,1,0,,2020-02-26 03:21:58,"Sorry you feel this way! We have an extensive Help Center detailing how to utilize the features (https://support.any.do/), as well as wall as our Blog which contains lots of articles on how to best apply these tools to your daily routine (http://blog.any.do/). You are also welcome to contact us at https://www.any.do/contact_form with any question.",2020-02-26 14:49:05,newest,com.anydo +J. R. West,https://lh3.googleusercontent.com/-pwVS78z1nxw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPJsfBxDgL5efA5SAT-WQXGCrOCtw/photo.jpg,Need premium level to import wunderlist. B.S. Have to reset password Everytime to login. So haven't been able to even try the APP.,1,1,4.16.6.2,2020-02-25 18:32:50,Our Wunderlist importer is completely free at https://www.any.do/import/wunderlist/. We're not sure what's the issue with the password as we haven't encountered any other reports but you are welcome to contact the team at https://www.any.do/contact_form for assistance.,2020-02-26 14:48:07,newest,com.anydo +Sebastian Pederiva,https://lh3.googleusercontent.com/a-/AOh14GjLEYSmy0REHidBBEGiOgoet806GvcVadcJPco8tU8,It was a great application but the lastest versions don't notify anymore about events and reminders.. I'll uninstall the application because it's useless. It's ridiculous they know the problem and don't do anything to fix it,1,0,4.16.6.2,2020-02-25 07:07:39,We're sorry you feel this way! Please check this page for device-specific solutions: https://bit.ly/371n2x3. If you're still having issues you're welcome to submit a bug via Settings - Support so our team can assist you!,2020-02-26 14:43:22,newest,com.anydo +Shell Wholmes,https://lh3.googleusercontent.com/-R80CHib-tNc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPm1UjdJad_A7ntqkijpacEiGI5Vg/photo.jpg,Worried about the security and having access to email and facebook good way to get hack and information stolen,1,0,,2020-02-25 00:04:25,"You do not have to provide access to your social accounts, but simply base your user off an email address and password. You're also welcome to checkout our Privacy Policy at https://www.any.do/legal/privacy-policy.",2020-02-26 14:38:45,newest,com.anydo +raj Patel,https://lh3.googleusercontent.com/a-/AOh14GgWvfUlclLvfBzToIn1zKNFh5Fz8O7weKrmmowlQA,I am unable to subscribe app payment method declined,1,0,4.16.6.2,2020-02-24 19:53:04,Sounds like a Google Play issue - please try contacting their team for clarification :),2020-02-26 14:35:11,newest,com.anydo +Shamsulhaq Sadai,https://lh3.googleusercontent.com/a-/AOh14GiChm88laUuMspGsEPJyVEFAOw3Y59vBi5bji44mw,"This app don't even deserve 1 Star but no other way. In year 2020, an app that just share task with other but not the time which is not that worth. Secondly, no themes, no fun. Give up this app.",1,8,4.15.4.11,2020-02-24 07:44:04,"Any.do has been offering sharing capabilities for years :) You may find instructions, here: https://support.any.do/sharing-lists-and-tasks/. We believe in independent work so each user is free to add their own reminders per their personal workflow. Themes are part of the Premium plan.",2020-02-26 14:31:56,newest,com.anydo +Jessica Rabbet,https://lh3.googleusercontent.com/a-/AOh14GiOWKEByty81LF-aLqLZ-yfjrrZA9bYlMZ2coOZ,Any app that ignores your phone's dark mode unless you pay for it is garbage.,1,0,4.16.6.2,2020-02-24 01:06:14,We're sorry you feel this way. We are looking into adding a free version of the dark mode later on this year.,2020-02-26 14:30:53,newest,com.anydo +Pankaj Sharma,https://lh3.googleusercontent.com/-kyPmCLUFUjo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNuKrdyzg0DUMabzTY9uGizlhiMYg/photo.jpg,Not close to do list. All features available bin premium mode only.,1,0,4.16.6.2,2020-02-23 04:17:49,"We're sorry you feel this way! 90% of the app is completely free and unlike similar apps, we allow our users to enjoy most of the features for as long and as much as they wish without any 3rd party ads or a requirement to upgrade :)",2020-02-23 12:56:14,newest,com.anydo +Daesha Harris,https://lh3.googleusercontent.com/a-/AOh14GivKV_uuAjQt7PRtqO5wdwSPU86T6-Kx8bKjswwy24,One of your workers better get ahold of me within the next 24 hours because I don't even use this app anymore having used it in months and you guys just took $35 out of my account I want my money now,1,1,,2020-02-21 11:32:52,"Our team replies within 2 business days to all priority queries. We do not see any requests submitted under 'Daesha Harris' so if you do not get a response within that time frame, please submit the request once more at https://www.any.do/contact_form. Be advised that all plan require full user authorization for subscribing.",2020-02-23 12:53:24,newest,com.anydo +appuDaeocrazy,https://lh3.googleusercontent.com/a-/AOh14GhtILg0MAQ8KaXortOQFUPRykQ-mpfK-EsJw4yQ,Not reminding . this app cannot user friendly ?,1,0,4.16.6.2,2020-02-20 16:56:13,We're sorry for this! Please check this page for device-specific solutions: https://bit.ly/371n2x3. If you're still having issues you're welcome to submit a bug via Settings - Support so our team can assist you!,2020-02-23 12:47:52,newest,com.anydo +Wai Loong Chong,https://lh3.googleusercontent.com/a-/AOh14GidVSXurfjNLX45Dzhgr-OIhj6kjPAZFkkmHOn9_w,"It slow down my flow when i turned on or click via home page widget There is a fade in effect or lagging, please kindly help check Thank you",1,0,4.16.6.2,2020-02-19 00:16:01,"We're not aware of any issues with the widget, though we will gladly look into it for you! Please submit a bug via Settings - Support so that our team can look into this for you :)",2020-02-23 12:38:58,newest,com.anydo +Saleh AlMutawaa,https://lh3.googleusercontent.com/-1wXZhQ290cI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNvr9Re4BgwUCUhEeIaDyewxvstsg/photo.jpg,WARNING: Malevolent app. Features intrusive pop-ups as soon as you unlock the phone and without even activating the app. High possibility of crashing your phone.,1,0,,2020-02-18 14:04:31,"If you're referring to the reminders, those can be easily disabled via the app's Settings and per each specific task. Other than that, Any.do does not support random pop ups and you're welcome to contact our team at https://www.any.do/contact_form if you're still seeing those.",2020-02-23 12:35:37,newest,com.anydo +Sue Erasmus,https://lh3.googleusercontent.com/-2cgbROVE6b4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNyJurnRDMX4k5EWDz7ZG9DDZgZKA/photo.jpg,"Would have been nice to know the price before using up my data for download, just to be uninstalled seconds later",1,0,4.16.6.2,2020-02-17 10:34:57,"90% of the app is completely free and unlike similar apps, we allow our users to enjoy most of the features for as long and as much as they wish without any 3rd party ads or a requirement to upgrade :) Prices are always available under Settings - Go Premium.",2020-02-17 13:17:39,newest,com.anydo +Keep Watching,https://lh3.googleusercontent.com/a-/AOh14Gh6u7HnqpSvnb67XGLy4eaEWc_blvAdIDvIxFJsUA,"Worst app for premium, only yearly pay of rs 990. No option for monthly payment. Bad app.",1,0,4.16.6.2,2020-02-16 09:48:03,"Any.do does actually offer a monthly plan, which can be found on our page at https://www.any.do/premium/ (from any desktop browser).",2020-02-16 11:38:19,newest,com.anydo +Gustavo Domínguez,https://lh3.googleusercontent.com/a-/AOh14Gj-_45K4IbxYwyNNjjkp-Wait6gJJlfnEs2z-IMHA,"This is not a multi-protocol task manager as the description false implies. This is a front end to their service. I couldn't get past the first screen because it requires me to set up an account to sync. I use a private server capable of syncing things like tasks, Exchange. Most public clouds (Google, iCloud, Office365, email providers) have this capability, therefore why should I need to send my data elsewhere if it's already on a server. The fact that data is not something you can touch doesn't make it less valuable. Be mindful of it, it *is* our most valuable asset today, it may not be tangible but it sure can be quantified endlessly. Requiring signing up for any app is a huge red flag.",1,0,,2020-02-15 15:37:08,"Gustavo, it seems like it wasn't meant to be. Good luck!",2020-02-16 12:12:00,newest,com.anydo +Julie Swartz,https://lh3.googleusercontent.com/a-/AOh14Gh-fyBqKsY_oNvY_ELKK2MudpEYwm7wf3kus1Hxzw,The 'free trail' took my money! Up-front!! Do not install!!!! So angry😡😡😡😡😡😡😡,1,0,,2020-02-15 14:46:05,"There is no option for the trial to be charged immediately, unless you used it before or chosen a yearly plan by mistake. Please reach out to our team at https://www.any.do/contact_form so they can look into this for you.",2020-02-16 11:36:28,newest,com.anydo +Miranda Gordon,https://lh3.googleusercontent.com/-hYz6CaBdJ9I/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMOOxWW56pBvgc9yP4gI8M7sIBC-A/photo.jpg,It's trying to charge me money and I dont even have it installed.,1,1,,2020-02-15 05:12:44,"Unless you cancelled the plan as instructed on our Help Center (https://support.any.do/cancellations-refunds/), simply removing the app from your device does not cease payments.",2020-02-16 11:28:15,newest,com.anydo +Halden Talisman,https://lh3.googleusercontent.com/-RLlIWqYAVQs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO6-7McwuzL1eYbKKiLN80mU9pqMQ/photo.jpg,"Absolute rubbish, killing off Wunderlist for this is a clear example of the domanant power of the big thugs Microsoft, Google, Amazon etc., taking over better competitors so they can push their inferior garbage. Trying out TickTock now",1,1,4.16.6.2,2020-02-14 22:35:17,"Any.do has no relation to Wunderlist, Microsoft or any other of the mentioned services. We're not sure what exactly is the reason you're not finding the app useful but we welcome any feedback at https://www.any.do/contact_form.",2020-02-16 11:25:08,newest,com.anydo +Frances Hogan,https://lh3.googleusercontent.com/-CnE9ORrXoA8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO-EtPjWETWaqgk4G458HD5NExA9g/photo.jpg,"I was trying out to any.do free version. I had spent quite a bit of time making lists and suddenly one day they were entirely inaccessible. Look like they let me put in a lot of dataand then after a certain point decide to hold that data the hostage until I paid them. I decided to not use any.do because after I pay them and started making more list, would they suddenly didn't demand that I paid them more per month in order to access all the information I had taking the time to put in?",1,0,,2020-02-13 17:05:14,"None of the free features has ever been restricted. All Premium features are detailed under Settings - Go Premium and users who do not wish to use them may enjoy the free version for as long and as much as you wish. If you're having issues with your account, please submit a bug via Settings - Support and our team will gladly assist you.",2020-02-14 01:45:23,newest,com.anydo +N B,https://lh3.googleusercontent.com/a-/AOh14Gi29Hm39MHBx3CzXSQxKFF6rjHasi7-DplD3gAyvpo,"App is good, but very few options in free version. You guys shouldn't label the app as free. Wasted my time trying this app.",1,0,,2020-02-13 08:12:09,"We're sorry you feel this way! 90% of the app is completely free and unlike similar apps, we allow our users to enjoy most of the features for as long and as much as they wish without any 3rd party ads or a requirement to upgrade :)",2020-02-14 01:49:43,newest,com.anydo +Leila Heidaryan,https://lh3.googleusercontent.com/a-/AOh14GhaQN1HaGE1Y-icxoqYxwsLV2oFELBRouHgd8GgMA,That is very bad app.,1,0,4.16.6.2,2020-02-13 00:41:44,"Would you please tell us why did you feel the app is unhelpful at Customers@any.do? We're trying to improve the app quality, and your advice would be very useful. Thank you!",2020-02-13 09:24:51,newest,com.anydo +Rod Haselden,https://lh3.googleusercontent.com/-79KYWrcAxOM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMBNen1btuxjEBSDCc9Yse8ttLSTQ/photo.jpg,"""All in one app free"" in the description. Press Continue and there is a request for €$20.99. No thanks",1,1,,2020-02-12 18:13:48,"Hi Rod! Any.do is a free app which can be used without any obligation to upgrade to our Premium plan. The trial period is an option for you to experience the Premium features for 7 days, entirely for free! If you do not wish to join the trial, just skip to use the free version.",2020-02-14 01:36:33,newest,com.anydo +Barbara Smrkovsky,https://lh3.googleusercontent.com/a-/AOh14Gjx4CnDHE5T8qMoizAhuKRIterbDUCHtpy45JLi,This app would not let me start a new day. It listed my tasks that I performed for one day as overdue for the next day. Just weird.,1,1,4.16.6.2,2020-02-12 15:17:34,"All pending tasks from the previous day will stay under the Today section. This is to enable users to re-prioritize and has been found to boost productivity when users are able to quickly review outstanding tasks. That said, you may simply drag and drop those tasks to another time category.",2020-02-14 01:35:27,newest,com.anydo +Donna Flack,https://lh3.googleusercontent.com/-zrZ-3s3sPqc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPorS0hAJZSrl_E1LlNxhFJwh4ZRw/photo.jpg,"This was originally a 5 star app, but now you can only use it by allowing it access to either your emails or Facebook! 😡😡😡 I am definitely not happy to allow this so have deleted the app. Would give it zero stars if I could.",1,7,4.16.6.2,2020-02-11 18:26:05,"We ask users to register for an account so that we can save their data on our servers, allowing for cross-platform sync and ensuring no information is ever lost. If this is not the type of solution you are looking for, we respect your decision to move to a different app.",2020-02-12 13:45:27,newest,com.anydo +Raj Mulik,https://lh3.googleusercontent.com/a-/AOh14Gg-mo1ACDbKnijcfKVy8ivcbOXIBppgKKn8TL5QDw,Just they copied GOOGLE CALENDAR and Charging On Top of That ... Google Calendar so far BETTER ...,1,0,4.16.6.2,2020-02-11 12:34:52,,,newest,com.anydo +Reaf Rogers,https://lh3.googleusercontent.com/-QuiKJhFX-oI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJORS6Gp2whnVvgyYJbTcw_80pphbg/photo.jpg,Do not download this app if you want to keep money in your account- they took an unauthorized almost $40 out of my account. Their help page says they offer refunds within 48 hours however they offer no access to claim a refund.,1,1,4.16.3.6,2020-02-11 06:05:02,"The Help Center has a link to contact us at the bottom of each page. Users can also submit reports via the app or via our contact form at https://www.any.do/contact_form. All subscription plans are verified and confirmed both by the app and by a native Google Play screen. Accordingly, we do not charge users without full agreement.",2020-02-12 13:37:11,newest,com.anydo +J.,https://lh3.googleusercontent.com/-Jg9A8L1iysM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMOKOoMEDdvUWh5zT2EpbZ8cUx3bw/photo.jpg,This provider will spam your email box with no option to unsubscribe. Beware.,1,0,,2020-02-10 16:01:29,We're sorry you feel this way! Some email did lack this option but it was already fixed. If you are still receiving communication you are welcome to contact our team so they can take care of it for you: https://www.any.do/contact_form.,2020-02-12 13:29:14,newest,com.anydo +burgzt1,https://lh3.googleusercontent.com/-XE_t5z6qtSI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMXtwWe6uD_L8OUZkhZ7LXdxJlnAw/photo.jpg,Do not download this app. Aftet update all my notes was gone,1,1,4.16.6.2,2020-02-09 20:35:11,"We're sorry you feel this way. As long as you've allowed the app to properly sync to our servers, you should be able to restore all of your data. Please contact our team at https://www.any.do/contact_form so they can instruct you further.",2020-02-10 11:15:32,newest,com.anydo +dimmm phone,https://lh3.googleusercontent.com/-pSbbXZZ5Yh8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM6V0kBLsFIS3zwMmtD_EDHGXa6qQ/photo.jpg,Last update deleted all my tasks. Looking for another app.,1,0,4.16.6.2,2020-02-08 21:44:12,"As long as you've allowed the app to properly sync to our servers, you should be able to restore all of your data. Please contact our team at https://www.any.do/contact_form so they can instruct you further.",2020-02-10 10:46:26,newest,com.anydo +Jason Thornton,https://lh3.googleusercontent.com/-B4TxqW_x-Jo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJODtLRmqEvlJYdibh34YqEqA0uX7Q/photo.jpg,"This could be an awesome app. It has great potential except for a few flaws that end up making it a super irritating app. I have reported these issues to the app's tech support several times only to get lame responses with no resolutions. The latest being that when items are entered into a category in this app, the app for some reason resorts the sequence of items in my list automatically. I put these items in the list in a certain order for a reason. I have other issues, but no moreroomher",1,65,4.16.6.2,2020-02-07 19:01:02,"Hi Jason, as far as we can see in your latest reply to our team you reported that the issue was resolved as well as rated our support positively, so we are not sure what you're referring to. If you're still experiencing this please submit a bug report via https://www.any.do/contact_form so our team can look into this again ASAP.",2020-02-09 12:37:41,newest,com.anydo +Joan Jacobsen,https://lh3.googleusercontent.com/-nPE4rSJNAFA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOlJjt31mdBiHMevrsRknizk664gg/photo.jpg,Premium support has not contacted me for 3 days and counting......,1,1,4.16.5.0,2020-02-07 16:26:46,"We respond to Premium queried within 2 business days, while depending on workload this may take a bit longer. We already informed users on our Twitter page that the tea is experiencing some delays but they will do their best to respond as soon as possible.",2020-02-09 12:34:44,newest,com.anydo +nikhil agarwal,https://lh3.googleusercontent.com/a-/AOh14GgWMrIb1_mf3iCmIKw2KHdM-bZ-5bwLRde_BwTgoA,"What the hackkkk I tried but it dsnt want get selled... Its not accpting any option of payment get way... I tried debit card, upi,... I love this app and want to purchase it plz resolve it",1,1,,2020-02-05 16:41:36,"If Google Play does not allow you to pay via your preferred method, you will need to contact them directly as Any.do does not have any control over their payment options.",2020-02-06 07:32:28,newest,com.anydo +Darryn Lee,https://lh3.googleusercontent.com/a-/AOh14GinjtEbjUM49h4L8zAkQDdLYj5iIRArt40_bYKE0A,Charged for subscription after cancelling trial and not even using the app.,1,0,,2020-02-05 08:24:46,"This sounds odd! Google Play will not charge users if they cancelled the plan properly per the instructions on our Help Center (https://support.any.do/cancellations-refunds/). That said, our team will be happy to look into this for you should you contact them at https://www.any.do/contact_form.",2020-02-05 09:41:10,newest,com.anydo +Jim T,https://lh3.googleusercontent.com/a-/AOh14GiOSb3P8fKvCDpCFBKpb83ZGq6AT38tpx-j9bFDyw,It doesn't sync up with Google Tasks. Not worth the change. Zapier does not work for Android. Zapier only works if you pay the Premium fee plus it only gives the option to add new tasks and complete tasks when integrating with Google Tasks. It does not import current tasks previously created in Google Tasks. There is no way to transfer my 144 tasks from Google to Anydo. And I can't afford $72.00 right off the bat to do it.,2,26,4.17.0.2,2020-03-18 17:46:24,"Sure it does :) We offer custom integration with thousands of third party services via our Zapier integration https://support.any.do/zapier/. Zapier is available for all platforms with no issues reported so far. For assistance, reach out at https://www.any.do/contact_form.",2020-03-18 04:17:49,most_relevant,com.anydo +'Markus' Harrison,https://lh3.googleusercontent.com/a-/AOh14GjzzaU42xJVth5Vp_hRqnfsLALSixraWgStVsY,"NEW: Great concept but NOT for confidential data because it's not encrypted (nor PW protected on phone or PC) and, one day, Any.Do company will get hacked & ALL your stuff be be out there, like EquiFax. RESOLVED: App loses your work. eg: I created a new task, started a ""notes"" section, pasted it in some material and clicked save. Then I went to another app to get more material but when I returned to any.do, my notes were GONE!. Your ""save"" button is fraudulent if it does not save when clicked!",2,64,4.17.0.2,2020-03-12 23:03:26,"All of the data from your account is securely stored on our hosted servers and cannot be accessed by unauthorized parties. Our host – Amazon Web Services – is one of the world’s largest hosting services, trusted by numerous corporations. All transportation from the client to the server is encrypted. That said, we're glad the data issue was resolved",2020-03-15 23:37:49,most_relevant,com.anydo +Alyssa Stevenson,https://lh3.googleusercontent.com/a-/AOh14Gh88zEV9ObVbhrpPPYRB6NbbtssN2SQA8thfsgPTQ,"List feature sucks! I don't need to manage myself so I can't speak to that functionality. I just wanted a list app, preferably one that worked with Google Assistant. Although that feature works great, the list feature kind of sucks. In an attempt to look new and edgy, the user experience went down the drain. I found it clunky & irritating. I shouldn't have to add a new item to the grocery list just to be able to uncheck items I need again. And that's just one of many irritations. AnyList baby!",2,46,4.16.6.2,2020-02-10 01:40:46,"We're not sure what exactly is the problem, nor are we aware of any issues with adding lists/ tasks to the app. However, we would be more than happy to look into it, should you write us at https://www.any.do/contact_form.",2020-02-12 13:21:12,most_relevant,com.anydo +Sharon Crowson,https://lh3.googleusercontent.com/-lyVoz8aeoDQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOxZyQviPzNP-3ffIid2D_GAdAcig/photo.jpg,"Is there no way to assign a specific color to an event? I like to group my meetings by color. If I can't do that, the app isn't useful for me.",2,0,4.17.0.3,2020-04-01 13:47:05,"The color of your events are defined by your native calendar settings. You are welcome to make modifications from there. If you need any assistance, please contact us at https://www.any.do/contact_form",2020-04-02 16:03:52,most_relevant,com.anydo +Ethelred Adolf Naintin,https://lh3.googleusercontent.com/a-/AOh14GjktLan2sHW_CPFR_CmHBid-B5MpDD5m046RDU3qA,"Hi Developer. Need to improve note module. It fix only for protrait view, which is when I'm using landscape view (tablet with keyboard), I need to adjust my head or the gadget. TQ",2,4,4.17.0.2,2020-03-11 07:44:40,"At this time, Any.do does not fully support landscape mode on Android. We might look into adding further functionality in the future though.",2020-03-12 03:08:06,most_relevant,com.anydo +James Warren,https://lh3.googleusercontent.com/-tgYIfPDjGyY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOyG88mizp86cx6wfOZlwpKl2GOsA/photo.jpg,"It used to be a slick, minimal app that did what it needed to. Then they kept adding layers of unneeded features and forced people to make an account just to use it. No thanks.",2,1,4.16.6.2,2020-02-26 13:15:41,"The app is account-based for years now, to allow 24/7 sync across all platforms and to keep your data safe. Each feature added was thoroughly researched and tested before adding and we see extremely positive feedback regarding the latest changes. That said, it sounds like you're looking for a different solution, which we completely respect :)",2020-02-26 14:53:56,most_relevant,com.anydo +Ali Jauhiainen,https://lh3.googleusercontent.com/a-/AOh14GhtqsbdLf3ShJD7WYhWwGPMTKR6sjn-6Y3rspygh3c,Themes and location based reminders are under subscription. Both are free on most of apps like this. Thanks but no. I'll pass and keep using Google keep,2,5,4.17.0.2,2020-03-07 10:25:10,,,most_relevant,com.anydo +Hayden Albrecht,https://lh3.googleusercontent.com/-Pk_fCuzq86k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPGCrM0dWrtNOlPf8vxcfXdjKPZJQ/photo.jpg,It's a fine app but logs me out every other time I go to use it.,2,0,4.17.0.2,2020-03-12 14:10:51,This sounds odd! Please submit a bug report via Settings - Support so our team can look into this for you :),2020-03-15 23:32:15,most_relevant,com.anydo +WK Lai,https://lh3.googleusercontent.com/a-/AOh14GgUPjhPL1vkYNjKRxrdeCdN50aYQhyh-dYiJZYMiA,No monthly recurring reminder features. Can't even remind me when to pay the bills!,2,2,4.16.6.2,2020-02-14 01:15:04,"Any.do does actually offer a monthly recurrence option, as instructed on our Help Center: https://support.any.do/recurring-reminders/ :)",2020-02-14 01:43:13,most_relevant,com.anydo +Eric Uys,https://lh3.googleusercontent.com/a-/AOh14GgKxlJdIS6_cOSOeUi_7f2uq2u_pI0VqZ7Qj7Usfg,Cant really set custom remindere. For example I need to be able to check a specific system every 3 hours with other variables.. Cant do it,2,2,4.16.4.6,2020-01-26 09:13:32,"Thank you for your feedback. We truly value our users input, and our Product team is always adding user suggestions to our roadmap. The suggestion you posted has already added to our UserVoice forum, and you are welcome to vote for it here: https://bit.ly/30VxKDT +The more votes a suggestion gets, the more likely it is to be added in the future!",2020-01-27 09:02:17,most_relevant,com.anydo +Petar Janotka,https://lh3.googleusercontent.com/-iIe5e6_PayM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMxY-FjF28TlIGmRbVfaLqrTJPO3w/photo.jpg,Missing grocery list widget and quantity for grocery list items!!!,2,0,4.17.0.2,2020-03-20 22:47:41,,,most_relevant,com.anydo +Stephanie Rockell,https://lh3.googleusercontent.com/-aFHNkGLHMpE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPFEbD-VH9Pvnhw8MHLZEEbi7BEwA/photo.jpg,"Day 2 of trialling this. So far I've had two location reminders fail, I can't label a location with more than one letter, the only time based reminder that's fired did so while on a phone call so I don't know what it sounds like, not that I can change the sound anyway because the instructions don't work. I had no idea what the buttons meant so the first one tapped the task got snoozed for 28 hours. How is that a typical snooze length? Adding anything more than a basic list item is not intuitive",2,2,4.16.4.6,2020-01-23 19:42:29,"Hi, this sounds very strange, please send us a bug report in your app via Settings - Support, so we can get to the bottom of this for you :) +However regarding changing the notification sound, please note that this can be done via settings => Notification sound, then select the notification you wish to adjust, and tap on 'Sound'!",2020-01-27 08:15:44,most_relevant,com.anydo +Mr Android,https://lh3.googleusercontent.com/a-/AOh14Gjlolo65Y0vt-EmEDk6pnBbITJz93At8HPGBEzdwA,"I can t select weekly days which days i need remainder, and this drawback of app, best to go with other app",2,1,4.16.5.0,2020-02-05 09:55:31,"Hi, that's odd, please send us a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2020-02-06 07:54:20,most_relevant,com.anydo +Aydamir Guliyev,https://lh3.googleusercontent.com/-C2FX_CR1ZCE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPWIh3lUx50Noz2GicUXFHxdteKCQ/photo.jpg,"Very average app, not intuitive . Will probably spend more time trying to plan than doing",2,2,4.16.5.0,2020-02-02 12:50:39,"Sorry you feel this way! We have an extensive Help Center detailing how to utilize the features (https://support.any.do/), as well as wall as our Blog which contains lots of articles on how to best apply these tools to your daily routine (http://blog.any.do/). You are also welcome to contact us at https://www.any.do/contact_form with any question.",2020-02-03 16:35:40,most_relevant,com.anydo +Duncan W,https://lh3.googleusercontent.com/a-/AOh14GjgLGg7dpTyi1lxNy2o3VIjLDvXbe5MnGzMd3UxHg,"I was willing to give this a try to see if it suits my needs. Seemed ok, with limited use so far. The only thing more annoying than constant notifications from apps is at 9am when my phone vibrates and Any.Do takes over the whole screen and asks me to plan my day. I don't need it taking over things, i will plan when i want. Are you seriously doing this? It is the equivalent of a browser popup and very annoying.",2,24,4.16.3.6,2020-01-05 23:05:59,,,most_relevant,com.anydo +Charlie-Anne Gagne,https://lh3.googleusercontent.com/-eAgxn3FJvis/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOR5Vs-tAHcNBxqg5gJVmgVSsfz-Q/photo.jpg,I had made an account for this app a long time ago but didn't use it for long and I forgot why until I re-downloaded it today. This is one of those apps that's incredibly frustrating because a lot of the main advertised features are behind a pay wall and/or you have to make an ADDITIONAL ACCOUNT FOR. Paying more than $1/mo for a list app is ridiculous. If anything it should be a one-time purchase.,2,96,4.15.9.12,2019-11-25 19:56:12,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. We modeled all our pricing tiers off of similar services so we could stay competitive. We also occasionally offer promotions, you can inquire about them at premium@any.do!",2019-11-26 09:36:51,most_relevant,com.anydo +Josh Hartwell,https://lh3.googleusercontent.com/a-/AOh14GiFj_c-sPFzc_M1dyGtXKeRyYcxsmqZzZHodssZ_Q,"Can't clean up old Alexa lists! We use this purely for the Alexa shopping list integration. However, early on it was very buggy, so we had to relink our Alexa account a number of times. And now we have like 4 or 5 old ""Alexa shopping list""s that we cannot delete! ""Alexa lists can not be modified with Any.do. You can do it from the Alexa app""... No, I can not, because it only deletes the working one!",2,13,4.15.9.12,2019-11-27 18:44:45,"Hi Josh, please note that you can disable the sync between specific lists in the Alexa integration settings via settings => 'Integrations' => 'Amazon Alexa Sync', after you disable these lists you can delete them from Any.do. If you need any further help with this, please contact us at Customers@any.do",2019-12-01 09:41:19,most_relevant,com.anydo +David Patterson,https://lh3.googleusercontent.com/-Cux-6qBtTLQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPKYVvzMiFAokBzDwXKxWpS7ZT9vg/photo.jpg,"I was about to jump wholeheartedly into using this app (its integration with Google Calendar being exactly what I'm looking for) but now I see that it has no search feature on Android. Worse still, Android Search has been on their roadmap since 2015 and it's still not done. 2015!?! In the meantime other apps can build smart lists it out of tags, status and free text. Seriously behind the curve, guys.",2,24,4.16.2.7,2020-01-03 13:11:53,,,most_relevant,com.anydo +Merle Fargus,https://lh3.googleusercontent.com/a-/AOh14GhJCO2ahC0LD2IPPITxLONDTiE8gEwdn49WnyklVg,Unable to edit time for reminder. S7,2,0,4.16.4.6,2020-01-27 16:54:01,,,most_relevant,com.anydo +Patrick O'Neill,https://lh3.googleusercontent.com/a-/AOh14Gjrv50UJECq1FdcBoGMxsUxBBztb-xddf_VmaE3dA,"Syncing with Alexa takes over 10-15 minutes which renders it unusable. Any.do, before you post your generic response: yes, I added the skill to my Alexa and, yes, I logged into my accounts. It syncs... kind of... so I can verify the two accounts are talking... just not well at all. When I use Wunderlist or Google Tasks or just Alexa by itself, the changes are instantly viewable across all platforms. The only reason I downloaded with app was to give me more control over my Alexa lists (which for some insane reason you cannot reorder). The extremely lag in syncing Any.do with Alexa renders this app useless. The UI looks really nice and user friendly, so I bumped it up to 2 stars.",2,8,4.16.3.6,2020-01-05 18:43:03,,,most_relevant,com.anydo +Alpha Sumareh,https://lh3.googleusercontent.com/a-/AOh14Gii6kgjiqpSxgrPQzgQEkNzuYugBQwCkt-VCptlZEo,"I'm a student and was looking for something get myself very organized. I have tried series of productivity apps before. Apparently this had one of the features i have always been looking for; integration with other apps which I love. Two things I found disappointing, features are extremely limited without premium, it's almost impossible to use like that also very expensive. I couldn't find statistics; from totally hours and other reports",2,11,4.16.2.7,2019-12-24 08:40:24,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. We modeled all our pricing tiers off of similar services so we could stay competitive. We also occasionally offer promotions, you can inquire about them at premium@any.do!",2019-12-25 07:52:51,most_relevant,com.anydo +Lucas,https://lh3.googleusercontent.com/a-/AOh14Gg3IRxCi1LEgI2sNUw-EoiWKT1h7Npnd1MIhOxK,"I am a paid user of this app. I like this app a lot, until Android 10. They claim what they used to do is not possible but that is not true because another app I use (Daylio) has a nice notification that jumps out at you, like Any.do used to. Now Any.do gives a regular ignorable notification which you click and the app does something on the screen and is pretty pathetic, THEN it gives it's notification to plan your day. So it's two clicks with a big visual pause in between. Not cool. 👎",2,14,4.16.2.5,2019-12-17 19:34:49,,,most_relevant,com.anydo +Nasos Roussis,https://lh3.googleusercontent.com/a-/AOh14GhjYnZ_uMsVPxVI5mHg-phQHuJk__ZxdBcZNO_4ig,So far so good... bit expensive having to purchase a yearly basis to access basic functions as color tags and what comes with it. Translation to Greek is not fluent for the price tag / annually I would apprechiate developers look closer at them. Will give it a try before committing on purchasing it per year. On a positive note love the widget (using however nova launcher). Current rating will change based on the experience.,2,7,4.16.2.7,2020-01-01 03:36:24,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. You can use Any.do for free for as long as you like. +Furthermore, please note that we reply on our Translator community to help us translate the app, as such, some translations may not be fully accurate.",2020-01-01 09:29:55,most_relevant,com.anydo +Shivanksha Marupuru,https://lh3.googleusercontent.com/a-/AOh14GhP5Dbp2zoBPn4SM5x9pOngoX0_VzTKR92PRjqsUmY,I used to love it. It was my go to app for many years. But over the time it is losing the special status. It doesn't have travel time anymore which was the main reason why i could stay on top of things without mentally having to calculate each meeting and setting the times. They removed that!,2,8,4.15.9.12,2019-11-20 09:42:44,"What do you find troublesome about the update? We'd love to get your feedback about what specifically you liked or disliked about the new update, by writing to us at Customers@any.do. We're constantly trying to provide the best possible app for our users, and feedback like yours help us do so.",2019-11-20 16:02:18,most_relevant,com.anydo +Peter Seman,https://lh3.googleusercontent.com/a-/AOh14GinwVUY5YTlm1hHKAdZbTO24DASBYkdvG8zIF6WtA,"good shared tasks, but app itself makes me angry.. it keeps forgetting i am logged in with my google account.. so I need to login for like each two weeks or so.. and it also forgets my settings... Edit: unfortunately this has not been fixed yet, even though I had sent logs and communicated with you. Decreasing my rating.",2,31,4.16.1.6,2019-12-10 15:45:14,"This is very odd! We highly recommend you submit a bug report in your app via Settings - Support, so we can get to the bottom of this for you.",2019-08-06 06:19:24,most_relevant,com.anydo +Wayne P,https://lh3.googleusercontent.com/-yd8rQ8VRVxE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOE4G85BpaYcks8hRGccBMpAXZMQQ/photo.jpg,Have to create an account just to check out functionality. Don't want to do that. Uninstalling.,2,0,4.16.6.2,2020-02-13 16:17:35,"Heya! We ask users to register for an account so that we can save their data on our servers, allowing for cross-platform sync and ensuring no information is ever lost :) That said, if you are looking for a more basic solution, we respect your decision to move to another app.",2020-02-14 01:46:11,most_relevant,com.anydo +Rachel Hines,https://lh3.googleusercontent.com/-fip-E3bQXPw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNH6aeoWXZkSqqwqxU_UENbLgKU9w/photo.jpg,"I liked using this app but I recently noticed that important information I had saved in sub tasks has all been deleted. Its happened before and I thought I had made a mistake. But no, it's just this app malfunctioning.",2,9,4.16.2.5,2019-12-19 19:01:50,"Hi, that sounds strange, please send us a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2019-12-21 11:28:48,most_relevant,com.anydo +Jay Nishimura,https://lh3.googleusercontent.com/a-/AOh14GhJ7q3H4t2UIn8D7QN81ocTQ-4SuOftgau7B6jXOg,"It works well, But I do not recall subscribing to a $28/year subscription.i thought I purchased it until I saw that it was renewed for an additional $28. It's not good enough to justify that price.",2,10,4.16.2.5,2019-12-18 00:13:18,,,most_relevant,com.anydo +Kingsley Yong,https://lh3.googleusercontent.com/a-/AOh14Ghh5kJ2sZslaSUL9QZw7lZnacMlCGmpZ3Oz0GZLPkY,"Allowed all the permissions for this app but i still can't get the reminder to work on my smartphone running Android 8. Downloaded a different reminder app and also allowed all permissions for it, and it worked well.",2,3,4.15.9.12,2019-11-26 14:35:52,"If you're experiencing issues with your reminders, we highly recommend you take a look at our Help Center Troubleshooting article on this: support.any.do/why-did-my-reminders-stop-working/ or contact us directly by submitting a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2019-11-27 08:04:17,most_relevant,com.anydo +Dominik Kwaśniewski,https://lh3.googleusercontent.com/a-/AOh14GijJ0BI4z4C9hgcygOnTS5-YfiAnKiGV8e5bO6RZQ,Over all good task manager. But I do not like misleading and untrue boasts about integration with MS outlook. It is possible but only via zappier plus functionality is limited. Not possible to sync task between this 2apps.,2,1,4.16.3.6,2020-01-06 11:45:14,,,most_relevant,com.anydo +Franc,https://lh3.googleusercontent.com/a-/AOh14GjctoJwMiSLfgy9hz9hXlr4blNXMr8jJY-MZZdpPPI,"Pretty with nice add ons and integrations but more than once I've gone back to a long list I created to find it gone or reverted back to a very old version, so annoying. Don't need the song and dance this app offers if it can't save a basic list",2,55,4.16.2.7,2020-01-04 13:04:15,,,most_relevant,com.anydo +Chuckalaka,https://lh3.googleusercontent.com/a-/AOh14GgfhCy3klxQ7ZewuL96FGLhWZXFpmqSaPjJGO79,Many times I've put sub tasks on my to-do tasks and they just disappear for some reason. I've forgotten many things because of this and still hasn't been fixed despite various updates.,2,8,4.16.2.5,2019-12-18 14:11:40,,,most_relevant,com.anydo +Sohani,https://lh3.googleusercontent.com/a-/AOh14GhbdNOsA8ldpB3AIMrpGwPUSCfuf9Sbzu7o3nVMFQ,"I love this app, but recently the app keeps crashing everytime I enter. Plus the calendar is completely wrong. 😕",2,0,4.16.3.6,2020-01-21 12:28:07,,,most_relevant,com.anydo +Kasi viswanathan,https://lh3.googleusercontent.com/a-/AOh14GjzZpPa4oFdTDHhALvVr_jIxElKTd1zLyJlWP9yvw,Amount debited for renewal with out any notice. No option in the app for cancelation of auto renewal. Dont even recollect there was a option for auto renewal and I have given consent. Please look into.,2,6,4.15.9.9,2019-11-04 07:58:09,"Any.do is a free app, and we never require our users to upgrade. In order to sign-up for a subscription, you must authorize the purchase in your app and through Google Play. If you have any questions about cancellations or refunds, contact us at Premium@any.do.",2019-11-05 15:37:06,most_relevant,com.anydo +Magnus Brink,https://lh3.googleusercontent.com/a-/AOh14Gh-XlccFW6tJGcYrUkcDvIrsKwlNN7AfcAwFz4QGg,Looks like a copy of an IPhone app. Im not impressed by the huge bar in the bottom or the single colored ui. A night mode should come standard,2,1,4.16.3.6,2020-01-14 23:08:27,,,most_relevant,com.anydo +Sanjaya Oracle,https://lh3.googleusercontent.com/-bWUHOUceOl4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN3ZSo4GzpRiAWxVvEXQ2kU9Bql0Q/photo.jpg,I dont like how it charged me automatically after the free trial without informing me expiry of trial or if i wanted to subscribe to the paid service,2,0,4.16.3.6,2020-01-12 12:18:47,,,most_relevant,com.anydo +Luciano Zanin,https://lh3.googleusercontent.com/a-/AOh14GikuGRxwAE1SKUjGqRmtgt99bBW4qdQ5cg6ZpB7WaY,"Excellent app But... Google Assistant support / integration is in ""coming soon"" state for about 2 yeas. Is there a chance to see it available in next 5 or 10 years?",2,1,4.15.9.12,2019-11-15 08:11:19,"Hi Luciano, we have been working on supporting the Google Assistant for some time now, however we should have an update out within the next few months that supports the Assistant!",2019-11-18 16:30:18,most_relevant,com.anydo +Dinesh Kumar,https://lh3.googleusercontent.com/-xu82_jIXuj0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPYcUc4Grbvq43ENxobklnI41WGAQ/photo.jpg,I love this app but I don't know what's happened the notifications for reminders dont work. Whenever I try to set the time zone it's force stops,2,2,4.15.9.9,2019-11-03 11:26:52,"If you're experiencing issues with your reminders, we highly recommend you take a look at our Help Center Troubleshooting article on this: support.any.do/why-did-my-reminders-stop-working/ or contact us directly by submitting a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2019-11-05 15:31:17,most_relevant,com.anydo +vab rastogi,https://lh3.googleusercontent.com/a-/AOh14GiZzKtxnTJiRdBhLtE0MYFAO-_vXZuSOe0JyoBI,Not a great user interface. Have been using for almost 2 months but still struggling,2,0,4.16.3.6,2020-01-12 04:34:13,"We're sorry to hear you aren't enjoying Any.do. We believe in a minimalistic approach, and we try to reflect that in our design. This is something that a lot of our users like, however we understand that everyone likes different layouts :) However we respect your feedback, and we hope you find the solution that you are looking for.",2020-01-14 11:21:28,most_relevant,com.anydo +Vijendra Sah,https://lh3.googleusercontent.com/a-/AOh14GjfYFzwCbZSZjcb3G2KG2Y2s-4aB3r_bLtn8NSL,"The alarm feature does not work, which leads to missing the tasks.",2,2,4.15.9.9,2019-11-18 13:32:08,"If you're experiencing issues with your reminders, we highly recommend you take a look at our Help Center Troubleshooting article on this: support.any.do/why-did-my-reminders-stop-working/ or contact us directly by submitting a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2019-11-20 15:51:58,most_relevant,com.anydo +muhammad atif,https://lh3.googleusercontent.com/-5ZDLgHcd6Mw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNgIoEOmdLZ2y7MUY4tW7VtCstdhA/photo.jpg,Questionable experience. Upgraded to premium but WhatsApp integration is not working. Seems a little confusing.,2,1,4.16.2.5,2019-12-16 23:28:42,"Hi, that's strange, please send us a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2019-12-17 09:22:54,most_relevant,com.anydo +Swago Nichevich,https://lh3.googleusercontent.com/a-/AOh14GjBIGFPq15kf8XKEHEuG43VFtrKnqQL3NSOSFKatw,"when you switch the language, you get wierd bug that your app is half in English half in selected language",2,2,4.16.1.6,2019-12-07 11:07:45,"Hi, that's odd, please uninstall, and reinstall, and if this issue still persists, please send us a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2019-12-10 09:25:14,most_relevant,com.anydo +Micah Grube,https://lh3.googleusercontent.com/a-/AOh14GjwI9lN_eFkV-Ujk4THchn6y9kWfIgaSCu-9Xw,"Trying to set a reoccuring event changes the date to one day before what I set it as. Trying to change the date back just creates a second event. Then trying to delete both events takes several tries, because half the time they don't actually delete. This is really annoying.",2,0,,2020-04-01 00:18:31,Sorry for this! Please send us a bug report via the app settings- support. Our team will do its best to investigate this asap.,2020-04-02 15:53:08,most_relevant,com.anydo +Jay Gee,https://lh3.googleusercontent.com/a-/AOh14GjN6q0kXKaisHD3QY_fcUdYZDE3eL40dokz-pSWAQ,"I love the app but I wish there was a separate page for notes. (I know that you can add notes when you create a task), but I'd like to see a designated page just for notes. Other than that I never liked subscription models, I think way more people would actually buy it, myself included if it would be a one time fee.",2,0,,2020-02-12 20:29:54,"Any.do is not only a product but also a service, continuously adding new features, keeping your information synced, and providing Priority Support. As Any.do offers much more than a standard product, it is charged with a subscription, like similar apps. As to Notes, you ma simply create a designated list using the Someday category :)",2020-02-14 01:41:02,most_relevant,com.anydo +Zeek Zefrym,https://lh3.googleusercontent.com/-8lBE2GnHRW8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOAJ6J_KFkd6nOaaZ_WHYDmwNEmFQ/photo.jpg,"It sorely needs and UNDO (& backup/restore/revert) feature in case we accidentally touch/swipe a circle/bullet which then gets unintentionally deleted immediately (which I find incredibly frustrating). (It also needs a flexible feature to import & export other common text/data formats like CSV, XML, events to & from calendar… not just copy reminders to tasks) If Google fixes all that then I'd give it 5-stars!",2,0,,2020-01-22 18:03:58,"You are able to reinstate any of your completed tasks! Just simply go to the settings => 'Completed tasks' and swipe right to left on the tasks you wish to reinstate! +You can also share your tasks to a new Sheets document, and export it as a CSC, or XML! You can learn more about exporting your lists here: https://support.any.do/export-import/",2020-01-23 08:56:43,most_relevant,com.anydo +debian linus,https://lh3.googleusercontent.com/a-/AOh14GgYyrZZrIbswa2kIOZ6zox1suGNneF5pW0VvWzY,There should be a dark mode instead of setting through a premium theme option,2,0,4.16.2.5,2019-12-20 16:50:42,,,most_relevant,com.anydo +Evil Pasta,https://lh3.googleusercontent.com/a-/AOh14GhLKNQudSMae3fdCVk-imXPd6CUhBZhgmz2rkwmIQ,"Ah yes, wanna use an ""advanced"" calendar? Well, turns out you must have an account for that. What's that, your eyes are burning under this bright theme? Well we have a solution just for you! As you have seen in our tips, you can change the theme. Oh W O P S, NO YOU CAN'T, how silly of us to not tell you in tips that ~BUY OUR PREMIUM!!!~... //Maybe it's just not what I was looking for...",2,1,4.16.2.7,2019-12-30 22:34:42,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. You can use Any.do for free for as long as you like.",2020-01-01 09:09:47,most_relevant,com.anydo +Raaask,https://lh3.googleusercontent.com/a-/AOh14GgLyzao3o0ycWc1FC0_5zyyyU4BfQDeZYyv44qcdg,"Too much spam. Stuff that I don't care for pops up on my screen all the time and blocking those also blocked the reminders I wanted the app for. Also, too many emails. I don't want more clutter to ""organize"" my life.",2,0,4.10.0.34-wear,2020-01-14 09:49:56,,,most_relevant,com.anydo +Dave J,https://lh3.googleusercontent.com/a-/AOh14GifE68a4TJBtRTtt9C2xmYp06ws8-IPvK7FgeE8PA,"Recurring tasks are very glitchy - they sometimes change the day or time when they recur. Per any.do's request i sent them a video of this happening... crickets. No explanation or acknowledgement and no refund as i requested. Fine otherwise, but i rely on recurring items.",2,0,2.53,2020-03-21 22:12:55,,,most_relevant,com.anydo +CD Spiva,https://lh3.googleusercontent.com/a-/AOh14Gj_J6K9FjplBHSN4C2u3as63OJ5deVcUSQMt0f54g,"I tried it years ago and never really got it going. Then I switched to Wunderlist and became an organized machine! Now Wunderlist is being retired, so I thought I'd try again, guessing it would be much better by now and that my ability to use it to my advantage would be vastly improved. Nope. No ability for folders or some other way to group lists together so I don't have to flip through all my lists to find the one I want. Not even a list view to make them easier to find.",2,0,3.4.15.1,2020-01-03 01:40:01,,,most_relevant,com.anydo +Maira Montessa,https://lh3.googleusercontent.com/-jc98Gl08xQY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMwUdjC6KJerQIhVHNctU3RyKPGOg/photo.jpg,"Only rated 2 stars because of the ability to sync with the calendar apps on the phone and the ability to cross out any tasks once finished. However, the app is fairly simple with tasks laid out like a shopping or to do list with the inability to edit the timings of tasks. I had set an appointment for 1:30 but the app had automatically set it for 10:00 am and not allowing me to edit it. Also, it would have been nice for the tasks to be laid out in calendar format with color-coding options.",2,1,,2019-10-21 19:32:28,"Hi Maira, please note you are able to edit your tasks, and your reminder times, by simply tapping on your tasks, furthermore, using our Color Tags, you will be able to color code all your tasks, you can learn more here: https://support.any.do/color-tags/",2019-10-23 07:20:02,most_relevant,com.anydo +Chip Foscue,https://lh3.googleusercontent.com/a-/AOh14GiR1UuSdPTNyHr28kiEjUopMsrf_gkIZvsh5qqw,"I don't care for it, when I first opened it it showed me all these appointments. I was thinking what the heck then I figured out it was showing me weeks passed along with the current. To me that's just a bunch of clutter. Then it was telling me I had five appointments this month, no, only have one, it only showed the one but it still says 5. I don't have a clue what the other four are. Anytime I try to do anyting it practically begged me to join premium, I just uninstalled it.",2,0,,2020-01-05 16:02:39,,,most_relevant,com.anydo +Fridman Baruch,https://lh3.googleusercontent.com/a-/AOh14GhHvnz2pzDmBxMHtiX0_8qAW0t9w2vyc-iybUW3NQ,Not so great. The user interface is not friendly. Making the to do list takes far too long and theres no way (that i found) to make a list that repeats daily. I'll just stick to google keep.,2,0,,2020-03-06 09:57:29,"You may find instructions on how to set recurring reminders on our Help Center: https://support.any.do/recurring-reminders/. We're not sure what exactly was the issue with creating tasks, but you are welcome to contact our team for assistance at https://www.any.do/contact_form.",2020-03-10 03:45:10,most_relevant,com.anydo +Rowan Meggs,https://lh3.googleusercontent.com/-NS-dP9FT-R8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNpkBmSp2voiDU6mxdqCnde3ABvWA/photo.jpg,"Was interested in trying out the premium features until I saw that they're a subscription, and a ridiculously priced one at that. Unfortunately the simple functionality of note taking, which used to be handled very well by many apps seems to be harder to come by. Haven't found an app yet that will integrate with Google assistant in any useful way.",2,0,,2019-11-03 03:16:04,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. You can use Any.do for free for as long as you like. +Furthermore, we are working on Google Assistant, and we should have an update supporting this feature by the end of this year!",2019-11-03 09:33:33,most_relevant,com.anydo +Picsopedia by Anitesh,https://lh3.googleusercontent.com/a-/AOh14GjCej4ROurj0HEDvKqC9T54zT31xGnipIhGEShLXW4,"The ""not completed"" tasks do not carry over to the next day automatically. I wanted an app that would constantly flash incomplete tasks in my home screen. Otherwise, presentation of the app is good.",2,0,,2020-02-03 17:41:29,"Overdue tasks do stay under the Today section in the Task View and show under 'overdue' in the Calendar View. If you do not see them there, please reach out to our team at https://www.any.do/contact_form so our team can look into this.",2020-02-04 12:48:39,most_relevant,com.anydo +Sindhu Indurthi,https://lh3.googleusercontent.com/a-/AOh14Gg6xpMXp2mNyIVzOCAayMINUW6aZR1I41-mtERY2a4,Nested can be improved,2,0,4.17.0.2,2020-03-12 15:05:05,How so? :),2020-03-15 23:32:26,most_relevant,com.anydo +Mahmood Abdulredha,https://lh3.googleusercontent.com/-KKCdm_ybe4w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN0MgnL9EP8quateAGd6LFCqvakbA/photo.jpg,"It's very simple, and it's interface is so beautiful. Why did I put 2 stars then? Because most of it features are limited to the paid edition, even the important ones.",2,0,,2020-01-19 10:30:40,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. You can use Any.do for free for as long as you like.",2020-01-20 08:00:57,most_relevant,com.anydo +Donnie César,https://lh3.googleusercontent.com/a-/AOh14GhGD-YcAR9-CPyOSiHPvGpqfRNvY-at4SvWf2gCUg,"The actual free version doesn't allow you anything, not even to learn how to use the app properly. That role is filled by 7 days of free premium. The free, on the description, is a lie. Is a paid-only app with temporary free access to its full features that gets practically useless after the 7-day trial. If you can get past that sort of business practice to actually try it I think the app may be great, but I don't like to be lied to. Edit: I opted for TicTic after some experiments.",2,1,,2019-10-19 15:57:49,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. You can use Any.do for free for as long as you like.",2019-10-19 15:15:51,most_relevant,com.anydo +Robert h,https://lh3.googleusercontent.com/a-/AOh14GhuTHLoimA9z9zk-yGLyu38nj-gWxj9bVfk2zZnYg,"Could have been a good free app. Nice design , good ideas but the free version keeps forgetting the task alarm I configured. I put it at 6 but it resets it at 9. Don't know about the paid one.",2,0,,2020-01-25 06:45:57,"Hi, this sounds very strange, please send us a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2020-01-27 08:40:03,most_relevant,com.anydo +Dougy Mando,https://lh3.googleusercontent.com/-yCSojileOPU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM_zoZPab6-FM5VdIi5G99U7qB5xA/photo.jpg,"Looks really good but... I'm not going to pay a subscription for it, sorry. If you said one off payment then maybe. Most of the locked features are available in other products out there.",2,0,,2020-01-29 11:08:04,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. We modeled all our pricing tiers off of similar services so we could stay competitive. We also occasionally offer promotions, you can inquire about them at premium@any.do!",2020-01-30 09:41:39,most_relevant,com.anydo +Tom Duckett,https://lh3.googleusercontent.com/-JTjakGVJ9fA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMUb3XXAtipgar8eS39sUBPWGXB7Q/photo.jpg,Recurring tasks are behind a pay wall. Ridiculous to have to pay a monthly subscription for such a simple feature App is a little ugly and not customisable.,2,0,,2020-03-07 11:23:36,We are sorry you feel this way! Basic recurring reminders are part of the standard version as detailed on our Help Center: https://support.any.do/recurring-reminders/. There are also many ways to adapt the app to your requirements and we highly recommend checking out the Help Center (support.any.do) to understand our range of features better.,2020-03-10 03:54:45,most_relevant,com.anydo +ron yona,https://lh3.googleusercontent.com/a-/AOh14GjYYP4NPtLh1EBfUB5FtCmMcVCk_28SwZ8vX0Xbr_A,"It's actually a really good app but because you can't disable pop up reminders it becomes really useless. Those pop ups disturb while doing other things with the phone and sometimes even block the screen while driving. I'd like to receive all notifications but only in the status bar, just like any other app.",2,0,,2019-11-05 06:59:54,"You can disable any notifications you don't like from the app. The Any.do Moment and Missed Calls reminder can both be toggled off in settings. The only other notifications you should receive are for reminders, which if you don't like, you can turn off these reminders and simply have due dates for tasks without any notification.",2019-10-19 15:11:33,most_relevant,com.anydo +Seth Troy,https://lh3.googleusercontent.com/a-/AOh14Gjrd544-LU9KVuHbAfOvQgwB4tg6syyxXzrHCA1_w,"Just trying it out. Seems like a great app but has a really, really basic miss that I saw referenced in another review: Theres no intuitive way to specify or change the time of a task. Tasks are all just all automatically set for 9 am and theres not visable button or option to change the time. The other user mentioned trying to use Google to figure out how. But such a basic miss seems like a flag that maybe I should try a different app.",2,6,4.15.9.6,2019-10-23 12:49:45,"Hi Seth, please note that you are able to change the time of a task, to do so simply tap on the task you wish to edit, and ether tap on the reminder to edit it, or tap 'Add reminder' to set a reminder. You can learn more here: https://support.any.do/reminders/",2019-10-24 07:16:56,most_relevant,com.anydo +Romy EC,https://lh3.googleusercontent.com/a-/AOh14GgUcL6ttkPHNT8-OxQMZLZgGOTQkuZd-s7jJFMWewc,"It's very confusing. I got the calendar app that was suggested to me when I wanted to use the widget, but once I started using the calendar along with any.do the tasks notifications got duplicated. I don't see the point of having any.do when the calendar app does the same thing.",2,0,,2020-01-02 00:36:31,"Hi Romy, please note that while do we have a calendar integration, we also provide support for adding tasks and reminders, these tasks do not sync with your calendars, as they are different than events. +Furthermore, if the event notifications are a little too intrusive, please note that you can turn them off in your settings!",2020-01-02 09:25:08,most_relevant,com.anydo +Amit Sinnarkar,https://lh3.googleusercontent.com/a-/AOh14GjIiDhCT8HGI9gFsn2xqkjp2KecE5kRRJHZ1cQ4ig,Premium version is too much expensive. Any.do should provide an option in which we can select max. 3 to 5 apps for integration in premium version & pay accordingly.,2,0,,2020-01-31 10:17:16,"We're sorry you feel this way! 95% of the app is completely free and unlike similar apps, we allow our users to enjoy most of the features for as long and as much as they wish without any 3rd party ads or a requirement to upgrade. The app's prices and plan are set per industry standards.",2020-02-03 16:33:55,most_relevant,com.anydo +Frank Bria,https://lh3.googleusercontent.com/a-/AOh14GhiSithv36Lkdy1bcJE0NkeKrJDzLcyj1EZlKNVFQ,"It's a mess. I add new tasks and tag them. But they will randomly disappear, reappear. And the tags will disappear. Editing and adding them back in doesn't help because once a tag disappears you can't add it back in again. Disappearing tasks is the worst because there's no warning. They're just gone. They're not listed as complete, they just disappear. Sometimes they'll come back but sometimes I have to re-enter them...assuming I remember. I pay for this app, so the fact that the basic functionality of keeping my list intact is random and spotty is unacceptable. It may have something to do with syncing... no idea. But either way, I'm going to use another app because I just don't trust it anymore. These errors seem to be recent, like in the last 3 months.",2,1,4.10.7.3,2018-12-03 14:26:22,This sounds very odd! We highly recommend you submit a bug report in your app via Settings - Support so we can look into this issue for you.,2018-12-04 13:54:39,most_relevant,com.anydo +German Flores,https://lh3.googleusercontent.com/a-/AOh14GgB5wkJw6A4CLvUf_D2r-mdTxtBisMgBTK1gipV8Q,"""95% of our features are free"" this is not true, almost every feature I try to use takes me to the premium option. Just started trying this app, even setting the color to the task is not free.",2,8,4.15.9.6,2019-11-01 16:17:20,"Hi, all of our core features, like our reminders, recurrences, and our calendar integrations, are all free, and we modeled all our pricing tiers off of similar services so we could stay competitive.",2019-11-03 08:31:15,most_relevant,com.anydo +Patty Perrin,https://lh3.googleusercontent.com/a-/AOh14Gj2QqMQl6frnTnNU8rfGGOAAxaPAMVqunSsq0HzVw,"Stupid popup reminding me to add reminders or do something covers my keypad and stays for a long time with no way to close it. I can't keep checked off items. It reminds me multiple times, every couple of seconds, to clear off the checked items, again blocking me. I can't move items between lists and if there is a way, it isn't easy enough for me to figure out. Cumbersome.",2,7,4.10.5.2,2018-10-26 12:06:59,"These are strange issues! We highly recommend you submit a bug report in your app via Settings - Support, so we can help you get to the bottom of this issue.",2018-11-06 16:26:17,most_relevant,com.anydo +Yet1,https://lh3.googleusercontent.com/a-/AOh14GiVRbXlQaiorh62QFJZJDUoAljuqdhACzANfily,App not bad but very limited unless you pay. Downloaded this app after reading in the news about it's WhatsApp integration. That is only available if you pay. Without the paid for aspects this application is like any other generic calender app.,2,0,,2019-12-17 20:11:58,,,most_relevant,com.anydo +Ying Yu,https://lh3.googleusercontent.com/-hTfSqsMcd0Q/AAAAAAAAAAI/AAAAAAAAACQ/AAKWJJPjE0OaY1p75ez1e4wJdJequ-MI0g/photo.jpg,"The latest update is terrible. I always organized everything by date of the reminder, which is usually set on the day that it's due, but now I can't even see the due date of each task. I have to click on each task for the the date to appear. In addition, I usually organize each task by tags, the date, recurring if needed, and other details. There's no easy way to adjust all these details anymore. You have to click on each separate icon to fix these to what you want. I use the app begrudgingly.",2,13,4.12.0.5,2019-01-18 03:26:19,"There are still indicators for each task in our latest view. If you can't see them, please send us a screenshot and your account details to customers@any.do so we can look into this for you.",2019-01-30 14:59:57,most_relevant,com.anydo +Carla Sobotta Pollock,https://lh3.googleusercontent.com/a-/AOh14GhZgq_uqelVtc7FZWJWUXgJUOVKCU7ay9GMBJeK-Q,"Must register with email, Google or FB -- displaying your email address -- just to get onto app. Smack dab near beginning of setup process (full page, per each setting), a full page ad to buy premium version appears. Getting into app? -- Stayed just a min, with the boxed, staring at the boxed, text notification that we have seven (7) days to try app for free. Already concerned about/not liking having to register online to use, stopped setup process, at that page. Uninstalling right now.",2,0,4.10.7.3,2018-12-04 13:43:49,"We provide 95% of our app at no cost, including all core features. We never require users to upgrade. You can use Any.do for free as long as you like. Also, we ask users to make an account because our app syncs cross-platforms. To provide flawless sync, tasks are saved on our servers, which makes them available 24/7 anywhere you log in from! :)",2018-12-05 16:36:23,most_relevant,com.anydo +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Brilliant app for older versions of Android. This app have helped me keep track of my tasks at work and personal very effectively for years. It is very easy to use. I have upgraded to Android Oreo, and reminder pop up stopped for my tasks. Contacted support, but they couldn't figure out how to fix. I appreciate they tried their best. I've migrated to Splendo as a stop gap arrangement till I find a better app as good as any.do. 2 * given, as this app is working just as a notepad to me to list tasks, but I don't get any form of reminders.",2,0,,2018-11-23 19:49:29,,,most_relevant,com.anydo +Thomas K,https://lh3.googleusercontent.com/a-/AOh14GgGr6oFdZMiU3c-P_EpQJhZiW45jWMewablQqJyTw,Still no search for android? Tags can't sorted? If I use this program for even a month I'll have a jumbled mess that will take forever to find things. Unusable. Two stars for calendar integration and manual sort.,2,3,4.15.4.11,2019-10-09 12:48:20,"Thank you for your feedback. We truly value our users input, and our Product team is always adding user suggestions to our roadmap. The suggestion you posted has already added to our UserVoice forum, and you are welcome to vote for it here: https://bit.ly/2kVPC0L +The more votes a suggestion gets, the more likely it is to be added in the future!",2019-10-10 07:55:18,most_relevant,com.anydo +ajdash1230,https://lh3.googleusercontent.com/a-/AOh14GjJwwDtJ_ce-eWUSeu0ApLMKj2EmcvD1wvAmjs7GQ,"At first I thought 'wow this can do everything! It's exactly what I need.' When I downloaded it and got to test it out, I noticed the features I needed the most were on premium. I'm fine with that, but only if premium was a one time payment. Not monthly payments for a membership. Monthly payments are for bills, taxes, video subscriptions, vpns, maybe even online storage subscriptions, but most definitely not calendars or to do lists. Those should stay as free or a small one time payment.",2,0,,2018-12-12 15:55:38,"Any.do is not only a product but also a service. We are continuously adding new features, keeping your information synced and safe 24/7, and providing Priority Support for any need you may have. Since Any.do is offering much more than a standard product, we have decided a subscription is the best pricing for it, like similar apps on the market :)",2018-12-18 13:53:45,most_relevant,com.anydo +Anton Slavik,https://lh3.googleusercontent.com/a-/AOh14Gg3UY7BVRiqna53plaKxmchw_GNHyS-fG6szJAdTA,"This is a nicely made app and premium is cheap, but one critical flaw is the reminder sound runs through the ringtone channel instead of the alarm channel, or even the media channel. So unless you enjoy hearing every single notification go off on your phone or your ears are super sensitive to vibrations from across the room this app is not fit for purpose. A shame I just pooched my free trial now",2,8,4.14.0.4,2019-02-03 11:05:05,"Like many apps, we use device notifications for the reminders :) However, if you do not wish to have this sound, you may still stay on top of your tasks via the widget/ the quick-add curtain bar or the push and pop up notifications. There are many ways to keep productive with Any.do :)",2019-02-05 14:40:24,most_relevant,com.anydo +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I really liked the app for its simplicity. That changed tremendously with the recent updates. For example, it now takes me 10 clicks to postpone a single task! People use To Do apps to improve their efficiency, but this app isn't efficient anymore at all. I hope the simplicity comes back with future updates...",2,4,4.10.5.2,2018-10-25 23:00:15,,,most_relevant,com.anydo +CLAYTONIUS Considerate,https://lh3.googleusercontent.com/a-/AOh14Gj5NLhz5EaIUyyOeII-m-0PY-ClNoTP3uHTyoHd,"This is a good app with somewhat helpful widgets. The widget calendar should include tasks on individual days. Events and their notification settings are lacking. If I want to be notified 2 weeks in advance, I simply can't.. In Google Calender, I can set it 4 weeks in advance. With this app I have to set the event date 1 week before it happens and set the notification to 1 week in advance in order to get 2 week notice. These restrictions are a dealbreaker.",2,216,4.10.3.4,2018-10-01 05:18:09,,,most_relevant,com.anydo +Angela Morlin,https://lh3.googleusercontent.com/a-/AOh14Gh2ObcQHmRviGAuxbXQeB7lBQFAs6jU19C77KGl,"I used to depend on this app to basically run my life, until I installed the latest (as of Mar 19) update. Now it doesn't sync properly with my smartwatch -- ticking tasks off on my watch no longer marks them complete on my phone. Also, the widget is broken now, and doesn't reflect changes I've made unless I restart my phone. I sent a support request to the help team, but have gotten total radio silence. If they don't fix it, I'm cancelling my subscription. Right now it's not worth paying for.",2,46,4.15.0.10,2019-03-06 23:18:45,Our team replies to standard queries within 48 hours and Premium queries within 24 hours during business days. During weekends this may take a bit longer though rest assured that they will reach out as soon as possible to help you resolve this! :),2019-03-08 13:59:34,most_relevant,com.anydo +Madeleine Rose,https://lh3.googleusercontent.com/a-/AOh14GjGZDSZqdskwVrd9U3DjO-t4vr6iH8OiFRJVwpF-Q,"I find the app inflexible and buggy, with a counter intuitive UI. How to delete or rename tags was not obvious. Using the back button would often exit the app at unusual times. After adding a new tag the app wouldn't allow me to do anything until I exited and restarted. Plus, the premium features seem more like essential features, to me. Looking for an alternative app as we speak.",2,1,,2019-05-09 21:13:25,"We are sorry you feel this way, Rose! You are welcome to check out our Help Center (https://bit.ly/2sO10ft) Youtube channel (https://bit.ly/2HeafzE) and blog (blog.any.do) for any questions. Also, feel free to reach out at customers@any.do :)",2019-05-12 08:06:37,most_relevant,com.anydo +Dante Cross,https://lh3.googleusercontent.com/a-/AOh14GivpXNNQ78DPVEogNg5qbrGqXM9f05vplScz82zww,"Frustrated that all the useful features are only for premium. not complaining that they are set up that way, but that they dont let you know until you are set up. Also its calendar wont work unless you import an external calendar? defeats the purpose of having a separate calendar. without premium its identical to a hundred other free apps.",2,0,,2019-01-03 21:52:29,"We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. You can use Any.do for free for as long as you like. You are also correct about the calendar. It is capable of syncing and displaying all external calendar that you save to your device.",2019-01-07 12:02:36,most_relevant,com.anydo +Eric Dannemiller,https://lh3.googleusercontent.com/-KveIh-8oWXs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMMLcefc4fsNoYwo6_zevJM8qCQcg/photo.jpg,"I had hope for this Calendar app but apparently in order to see the calendar in a normal format as to the list format, you have to pay a premium, & that is not what I want to do. I'm very disappointed uninstalling & will be looking for another calendar app. All in all it seams like a good calender app but just not for me.",2,8,4.10.6.1,2018-11-09 12:07:56,,,most_relevant,com.anydo +know one,https://lh3.googleusercontent.com/-tTDXTc-jJPE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMdq3KKTpR149hGbQQ41YBzsqmuLg/photo.jpg,"Once the app reinstalled itself and I lost everything. I still have no idea why it did this. Also, it often doesn't open when I first tap the icon. If I tap it multiple times it eventually opens within a particular task. I found it frustrating and I've now uninstalled it. It would be a great app if some of these bugs could be resolved.",2,0,,2019-07-04 22:11:01,This sounds very odd but we apologize for any inconvenience! Please submit a bug report by emailing customers@any.do so we can get to the bottom of this for you.,2019-07-09 10:37:42,most_relevant,com.anydo +Frosti80,https://lh3.googleusercontent.com/a-/AOh14Gixp310M8P9xWvkB-6hYSTcbFH9Cii1xgU7zFwxZQ,"Nawww, sorry your yearly subscription price scared me off. By the time I've subscribed to every app I consider helpful I'm spending waaay too much. I would have liked it but I have other much more important bills to pay. The low stars is due to the price and there's no point in coming back to justify it because it'll still be too much for me. Edit: I know that I can use it for free, but then I'd still have to put up with ads. Surprisingly I don't like ads. I still consider your sub too much.",2,1,4.15.3.4,2019-06-05 13:40:57,"You should only receive a pop-up about Premium if you try to use a Premium exclusive feature, plus one time when you first log in. If you are seeing it more than this, please submit a bug report in your app via Settings - Support so we can look into this for you.",2019-06-10 13:49:16,most_relevant,com.anydo +Jacob Montoya,https://lh3.googleusercontent.com/a-/AOh14GgebFXc3IH4hf57uva6WZ84vqdTc7oXpvRo-jaJQw,"The app would work great; if it only reminded you when you wanted it too... What I mean is, it would certainly remind me of my scheduled tasks. That great! But, it would also randomly interrupt me to ""plan my day"". If I didn't add something to my schedule, then I dont need a reminder. So stop fracking interrupting my daily phone use at random times, and sending me false notifications.",2,0,,2018-09-25 16:06:43,,,most_relevant,com.anydo +Aditya Shah,https://lh3.googleusercontent.com/-t4gKLQxCRoY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNTHIHGIvqus_Jc5k0T-DOZ1PRbZg/photo.jpg,"The notification bar does not work. The ""Add Task"" option appears, I enter the task and click on the icon, there's just a progress spinner. The ""Close"" icon does not dismiss the notification bar either. How inconvenient. Had this issue in Oreo too. Right now I am on Nougat. Also the animations inside the app are slow. The icon where you tap to 'tick' the task is very small.",2,29,4.10.6.1,2018-11-15 14:21:35,,,most_relevant,com.anydo +Alisa Vysotina,https://lh3.googleusercontent.com/a-/AOh14GhyjQ6juy_8W610WsjGQ6CuY1Lpxmnfprk7MOfd,"Deleted review accidentally. 1. I create habit type tasks: the ones that repeat regularly. I don't even dream to have a habit/statistical section, but THERE HAS TO BE A WAY TO SKIP OR FAIL THE REPEATABLE TASK. Now I only can delete it, but is is not representative way. 2. There has to be a way to exclude a list from the ""all tasks"" list. For example I have list with books to read and films to watch. A lot of tasks, that look bad in the ""all tasks"" list, I loose real important ""no date"" tasks because of it. You redirect me to your uservoice, but according to it excluding list from ""all tasks"" list has been ""in roadmap"" for 2 years, don't think you really care and your uservoice makes any difference. I know that adding habit tracker might be a heavy feature, but failing the task, or skipping it? Hell no. As well as excluding lists feature, it's also an easy one. But two years? Meh. Just don't pretend you care, be straightforward, like, 'we won't do it in the nearest future, not in our plans'.",2,0,,2019-07-09 13:26:17,"When you get a reminder, you have options other than deleting it. You can snooze it or change its due date. You cannot exclude lists from all tasks by you can filter by list and minimize the ones you don't want. We are constantly working on updates, but we do it according to our own roadmap - we reserve the right to work on what's highest priority.",2019-07-10 12:50:59,most_relevant,com.anydo +Geeta Singh,https://lh3.googleusercontent.com/a-/AOh14GhAvdO1t9KzV211Kl5hVr_v6VMinnGETF1Y-DLyD1Q,i had installed the trial version but did not use and it was of no use at my end. to my surprise i see today getting an sms from vodafone to be charged Rs.1028 for one year subscription. i contacted vodafone and they told me to delete .the app within 48hrs of installation which i did. pl cancel this subscription as its of no use to me so that this charges could be credited back by vodafone to me. Developer - pl refund back my money as i dont use it.,2,0,,2019-03-10 06:42:12,"As mentioned in the trial's details, unless you cancel it prior to the renewal date, you will be charged accordingly. Simply not using the app or uninstalling it, isn't the same as cancelling as mentioned on our Help Center: https://bit.ly/2FixPZb. For assistance with your subscription, please reach out to Premium@any.do.",2019-03-16 00:48:15,most_relevant,com.anydo +Martu Mõmmi,https://lh3.googleusercontent.com/a-/AOh14GhO6X_Vkvsv4TIPp11P-BF6mgdppDBXe706_Sx8QQ,"It constantly crashes and misses a lot of functionality. Hard to use and annoys with some popups that can be discarded only by closing app and then opening it again and permanent noticfaction that CAN'T be disabled. Payd 30 euro for this and used for month before it got so annoying that I started to look for another app. Fortunately I found one - Todoist. It's unbelievable how much better that is. Also there is version of todoist for PC, for your smart watch and even as browser extension which allows you to easily set a certain web page as task. And all these are synced.",2,0,,2018-10-20 06:54:50,"Any notification we offer can be disabled in your app settings. In addition, Any.do has a web version, smart watch integration, and a Chrome extension that can add web pages as tasks :) Regarding the crashes: We recommend you submit a bug report via Settings - Support in your app, so we can help resolve this for you ASAP.",2018-10-21 11:25:26,most_relevant,com.anydo +Amber Hatchell,https://lh3.googleusercontent.com/a-/AOh14Gj22VzwhAKucKwtGwip5U_iFA9c25ZtUY1Q11bagQ,Loved this app until I recently realized that i dont use it half as much.It all started w/ a major update.If you click to put a task for tomorrow the calendar will still put you on the date of?So u then have to change it to tomorrow.THEN you have to go through not one but possibly 2-3 steps to tell it a time?On an analog clock?Its 2019 who still uses analog clocks? One step for the hour another for the minutes and ANOTHER for am/pm.& if u mess up thats it u have to start over. Too many steps,2,17,4.12.0.5,2019-01-09 21:45:58,,,most_relevant,com.anydo +Rey Gross,https://lh3.googleusercontent.com/a-/AOh14GhHsLavKro6zKO6mZHR2hmifXRlTfzEFdCRHZ_R_lE,"***UPDATE 5/29/19 - I decided to go ahead & do the trial so I could see how the location reminder works. So far I've tried about 3 different locations & none of them have updated. One of them was even my home. This was about 30 mins ago! I've been waiting for the app to work with Google Assistant. It's been saying""coming soon"" for quite some time. When this happens I may consider doing the premium. Until then the 7 day trial is pointless to see how the service completely works. Maybe one day...😥",2,11,4.15.3.4,2019-05-29 23:31:07,"This is very odd! We highly recommend you submit a bug report in your app via Settings - Support, so we can get to the bottom of this for you.",2019-06-02 08:01:39,most_relevant,com.anydo +Lawrence Beals,https://lh3.googleusercontent.com/a-/AOh14Ghqmv8AnhgZTm67Vaw8J-usbD17kdOqGhzGXWQTA_M,"Easy setup for the most part but ended up deleting it. Only one level of subtasks makes the to do list suboptimal. Only links to Google based calendars so my work, school and personal calendars aren't seen. [there is a disconnect between the app and the referenced article's options and instructions]. I don't mind paying for premium features as long as it is a one-time payment, the whole SAAS model is annoying.",2,17,4.15.5.4,2019-07-21 14:07:56,"Any.do is a calendar integration and is not a calendar provider. Therefore, you can add any calendar that is on your native device. If you're having a problem and you're not finding a solution in the Help Center, feel free to email customers@any.do with your device, OS, and Any.do version and someone will be happy to help you!",2019-07-22 08:05:40,most_relevant,com.anydo +David Larence,https://lh3.googleusercontent.com/a-/AOh14GiIF9gA3XZ3S4FASnWm8ExySrR0cGnXmj583Y-3gg,"The concept is good but the execution lacks. There are constant issues with server sync, and since the server side has priority, updates I make on the phone regularly get wiped out. Every so often the app will prompt me to log in again when I open it...this time it just kicked me out while I was actively using it and updating a list, made me log in again, and didn't keep anything I had already done! My wife already gave up on it and I will probably look elsewhere too",2,131,4.15.5.4,2019-08-21 01:30:28,"This is very odd! We highly recommend you submit a bug report in your app via Settings - Support, so we can get to the bottom of this for you.",2019-08-22 09:18:18,most_relevant,com.anydo +Jon Daugherty,https://lh3.googleusercontent.com/a-/AOh14Gg_v0cMqExdOWWkEUy-6QfvlzvX8p3dypRwFSQb,"Not a fan of being constantly reminded the moment I begin 2 experience your app that every setting or option is not fully functional or could be better with a subscription Everytime I look @ settings I'm reminded, when I configure the app I'm told about the subscription of $35/year. How bout letting users experience the full benefits of what u have 2 offer for 30 days b4 making us sign a yearly sub instead of 7 day free trial? This is an opportunity 4 u to humble your customer base #SunriseApp",2,0,,2019-03-18 05:01:21,,,most_relevant,com.anydo +Suzanne Broadhurst,https://lh3.googleusercontent.com/a-/AOh14GioJuAIXN31lOppHBGHj3e6J5p-b0kuIAROIHXJBQ,"Sorry, not Impressed I'm sorry to leave a poor review, but I thought it best to let the developers and others know I had so many challenges with it I wouldn't know where to begin. :( UPDATE: Although I initially gave the app a one star, I upgraded to two because their response was kind and professional. They asked for details of the challenges I had with the app and were genuinely pleasant to correspond with. So if you have a complaint, share kindly because they really do care. :)",2,1,,2019-05-08 15:01:40,"We are sorry you feel this way! We love users feedback and would greatly appreciate if you could send us a detailed review to Customers@any.do so we can learn and improve in the future :) +Thank you for your kind word, and we appreciate that you updated your review.",2019-05-12 06:59:36,most_relevant,com.anydo +Ford Block,https://lh3.googleusercontent.com/a-/AOh14Gh1i12pWv3Wi8pHt1UzoGD9X9jMXVUoTPVFJCqipg,"This app was fantastic when I first downloaded. However, now my monthly recurring task pops up evey day. No idea why. when it wasn't doing that before. I've tried deleting and adding again. But, it does the same thing. Really annoying.",2,14,4.10.9.0,2018-12-13 12:58:24,This sounds very odd! We highly recommend you submit a bug report in your app via Settings - Support so we can get to the bottom of this for you.,2018-12-18 13:57:31,most_relevant,com.anydo +Maxwell Morrongiello,https://lh3.googleusercontent.com/a-/AOh14Gh4PzVFr6dugTKUbC-4l36wqqQxnCeEJ3byfQB5l8M,"For something that is supposed to comprehensive, I am disappointed that the app lacks allowing you to set a start date, end date, and designate progress for tasks. This app doesn't meet my needs, as most of my tasks are not associated with a single date.",2,5,4.12.0.5,2019-01-13 16:44:24,"We allow events to have a start and end dates, while tasks have only a reminder date. This way our users can choose the option that best fits their needs and use it accordingly. That said, we apreciete your feedback and we will pass it to our Product Team.",2019-01-27 15:59:41,most_relevant,com.anydo +Kenneth Barre,https://lh3.googleusercontent.com/-Xo3emuf25GY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOz7KmrQgi2L4ypqeb4ZJbPYM5tFA/photo.jpg,"Worked great at first but continously does not sync completely with Alexa. I only use this app as a shopping list with Alexa, but when it only shows 4 of 10 items on my list it's pretty useless. The purpose of the list is so that I don't have to remember the 10 items I told Alexa to add to the list (which show up on todoist)",2,6,4.15.2.1,2019-04-28 16:52:13,"This is very odd! We highly recommend you submit a bug report in your app via Settings - Support, so we can get to the bottom of this for you.",2019-05-01 06:26:55,most_relevant,com.anydo +Richard Hicks,https://lh3.googleusercontent.com/a-/AOh14Gi8MQUpUO7KzQF5WtUqdJ9liZzw6-dV5gQdQ8QZnA,"Can't change font sizes (old guy) and even with premium trial, can not change recurring task to monthly day of month from monthly day of week. Or, I should say you can make the change, but next time viewing task it shows - repeat every third Monday of the month - rather than - every month on the 20th. Also, I don't see a way to force sync account, . . . if that matters.",2,253,4.15.2.1,2019-04-28 21:47:17,"You can change the text size only by changing it on your device settings under accessibility. When editing a recurring reminder, please make sure to choose the 'change all' rather than 'just this time' option. You can sync your account manually by tapping on the options menu (three dots) - sync button. We are here for you at Premium@any.do :)",2019-05-01 07:04:29,most_relevant,com.anydo +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Hard-to-read interface. Tiny font makes it such a strain. No contrast option available either, as far as I can tell. Reminder times are displayed in an even more unfriendly font. Not everyone has perfect vision. Disappointed that the creators of this app haven't thought this through.",2,0,,2019-01-22 12:51:32,,,most_relevant,com.anydo +Rytis,https://lh3.googleusercontent.com/-a5mr8zNXsFY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMx4nrNPqGOCy8kfehOxl9Ba8ys1g/photo.jpg,"Heavily intrusive, pop-ups each time phone is unlocked. Monetized. Poorly designed, difficult to make custom named to-do lists",2,4,4.15.9.6,2019-10-26 13:48:02,"Please note that the only ad we have on Any.do is one for our premium subscription, which will only show when you login, or you try using a premium feature. Furthermore, if you would like to create a new list, simply tap the Grid view icon at the top left corner of your task view, and tap the '+'.",2019-10-28 09:14:29,most_relevant,com.anydo +Brandon Bowers,https://lh3.googleusercontent.com/a-/AOh14Ghygrp7GC9v2SUtvx9LB1Y-CTGrawz2QUiL0Aqw0HA,Decent but a pain in bums. To have an alarm go out every morning at 9:00 am just to remind you to plan your day is out right stupid. I'm not mental pigmy. I can do things for myself.,2,0,4.16.6.2,2020-04-06 16:40:25,,,newest,com.anydo +Daniel1802,https://lh3.googleusercontent.com/a-/AOh14GgiymAvPH6gsFFyvtF5Wjg36ZBr_5xcr5VkAO90Rg,You reaaallllyyy don't have a lot without paying,2,0,,2020-04-06 16:23:03,,,newest,com.anydo +ReRe J,https://lh3.googleusercontent.com/a-/AOh14GiKLx7ONTzAypl18tQWJcbU2nT8twthD66QpHzgSw,Can't add more than 5 task to calendar without monthly fee.,2,0,,2020-04-05 16:40:19,"You may add unlimited events and tasks! There is no limitation for the Calendar view for free users. If you are experiencing any issue, kindly let us know by submitting a bug via your app settings- support, and our team will be happy to look into this for you.",2020-04-06 14:15:36,newest,com.anydo +Tea Petal,https://lh3.googleusercontent.com/-bY5NBKPEAew/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN5kX0A4Mj-u-5mnX3XNHkFDWy3WA/photo.jpg,"The design is nice but it doesn't understand when I said 'later'. When I said remind me tomorrow morning, it replied okay I'll be reminded tomorrow at 16:00+. That's afternoon. I'll be very well roasted by my boss by then. Can't find any help on these issues. Was close to confirming my subscription. Sad ☹️",2,0,4.17.0.3,2020-04-05 09:10:52,"We are unaware of any issues with the task reminders, so that's odd. Our team will be happy to look into this for you, should you contact us via your app settings- support- submit a bug.",2020-04-06 14:07:05,newest,com.anydo +Manash Pratim,https://lh3.googleusercontent.com/-4ezjk9S7F4g/AAAAAAAAAAI/AAAAAAAAwfc/AAKWJJOqieBE1Iz6U34ukhdlSFTvepgvKA/photo.jpg,Premium version only,2,0,4.17.0.3,2020-04-02 18:32:24,"There is no need to upgrade, you can use Any.do for free! 90% of the app is completely free and unlike similar apps, we allow our users to enjoy most of the features for as long and as much as they wish without any 3rd party ads or a requirement to upgrade :)",2020-04-05 14:59:46,newest,com.anydo +Sharon Crowson,https://lh3.googleusercontent.com/-lyVoz8aeoDQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOxZyQviPzNP-3ffIid2D_GAdAcig/photo.jpg,"Is there no way to assign a specific color to an event? I like to group my meetings by color. If I can't do that, the app isn't useful for me.",2,0,4.17.0.3,2020-04-01 13:47:05,"The color of your events are defined by your native calendar settings. You are welcome to make modifications from there. If you need any assistance, please contact us at https://www.any.do/contact_form",2020-04-02 16:03:52,newest,com.anydo +Micah Grube,https://lh3.googleusercontent.com/a-/AOh14GjwI9lN_eFkV-Ujk4THchn6y9kWfIgaSCu-9Xw,"Trying to set a reoccuring event changes the date to one day before what I set it as. Trying to change the date back just creates a second event. Then trying to delete both events takes several tries, because half the time they don't actually delete. This is really annoying.",2,0,,2020-04-01 00:18:31,Sorry for this! Please send us a bug report via the app settings- support. Our team will do its best to investigate this asap.,2020-04-02 15:53:08,newest,com.anydo +Kaler Jonson,https://lh3.googleusercontent.com/a-/AOh14Gjx2b3IAJCU71Dz7SeAPVZTtnuYSQq0nbmmHEtp,Weak and underdeveloped platform. Don't expect support to treat you like a person - this is a company that just wants your money and then to forget about you.,2,0,,2020-03-30 14:32:52,,,newest,com.anydo +Dave J,https://lh3.googleusercontent.com/a-/AOh14GifE68a4TJBtRTtt9C2xmYp06ws8-IPvK7FgeE8PA,"Recurring tasks are very glitchy - they sometimes change the day or time when they recur. Per any.do's request i sent them a video of this happening... crickets. No explanation or acknowledgement and no refund as i requested. Fine otherwise, but i rely on recurring items.",2,0,2.53,2020-03-21 22:12:55,,,newest,com.anydo +Petar Janotka,https://lh3.googleusercontent.com/-iIe5e6_PayM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMxY-FjF28TlIGmRbVfaLqrTJPO3w/photo.jpg,Missing grocery list widget and quantity for grocery list items!!!,2,0,4.17.0.2,2020-03-20 22:47:41,,,newest,com.anydo +Jim T,https://lh3.googleusercontent.com/a-/AOh14GiOSb3P8fKvCDpCFBKpb83ZGq6AT38tpx-j9bFDyw,It doesn't sync up with Google Tasks. Not worth the change. Zapier does not work for Android. Zapier only works if you pay the Premium fee plus it only gives the option to add new tasks and complete tasks when integrating with Google Tasks. It does not import current tasks previously created in Google Tasks. There is no way to transfer my 144 tasks from Google to Anydo. And I can't afford $72.00 right off the bat to do it.,2,26,4.17.0.2,2020-03-18 17:46:24,"Sure it does :) We offer custom integration with thousands of third party services via our Zapier integration https://support.any.do/zapier/. Zapier is available for all platforms with no issues reported so far. For assistance, reach out at https://www.any.do/contact_form.",2020-03-18 04:17:49,newest,com.anydo +'Markus' Harrison,https://lh3.googleusercontent.com/a-/AOh14GjzzaU42xJVth5Vp_hRqnfsLALSixraWgStVsY,"NEW: Great concept but NOT for confidential data because it's not encrypted (nor PW protected on phone or PC) and, one day, Any.Do company will get hacked & ALL your stuff be be out there, like EquiFax. RESOLVED: App loses your work. eg: I created a new task, started a ""notes"" section, pasted it in some material and clicked save. Then I went to another app to get more material but when I returned to any.do, my notes were GONE!. Your ""save"" button is fraudulent if it does not save when clicked!",2,64,4.17.0.2,2020-03-12 23:03:26,"All of the data from your account is securely stored on our hosted servers and cannot be accessed by unauthorized parties. Our host – Amazon Web Services – is one of the world’s largest hosting services, trusted by numerous corporations. All transportation from the client to the server is encrypted. That said, we're glad the data issue was resolved",2020-03-15 23:37:49,newest,com.anydo +Sindhu Indurthi,https://lh3.googleusercontent.com/a-/AOh14Gg6xpMXp2mNyIVzOCAayMINUW6aZR1I41-mtERY2a4,Nested can be improved,2,0,4.17.0.2,2020-03-12 15:05:05,How so? :),2020-03-15 23:32:26,newest,com.anydo +Hayden Albrecht,https://lh3.googleusercontent.com/-Pk_fCuzq86k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPGCrM0dWrtNOlPf8vxcfXdjKPZJQ/photo.jpg,It's a fine app but logs me out every other time I go to use it.,2,0,4.17.0.2,2020-03-12 14:10:51,This sounds odd! Please submit a bug report via Settings - Support so our team can look into this for you :),2020-03-15 23:32:15,newest,com.anydo +Ethelred Adolf Naintin,https://lh3.googleusercontent.com/a-/AOh14GjktLan2sHW_CPFR_CmHBid-B5MpDD5m046RDU3qA,"Hi Developer. Need to improve note module. It fix only for protrait view, which is when I'm using landscape view (tablet with keyboard), I need to adjust my head or the gadget. TQ",2,4,4.17.0.2,2020-03-11 07:44:40,"At this time, Any.do does not fully support landscape mode on Android. We might look into adding further functionality in the future though.",2020-03-12 03:08:06,newest,com.anydo +Tom Duckett,https://lh3.googleusercontent.com/-JTjakGVJ9fA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMUb3XXAtipgar8eS39sUBPWGXB7Q/photo.jpg,Recurring tasks are behind a pay wall. Ridiculous to have to pay a monthly subscription for such a simple feature App is a little ugly and not customisable.,2,0,,2020-03-07 11:23:36,We are sorry you feel this way! Basic recurring reminders are part of the standard version as detailed on our Help Center: https://support.any.do/recurring-reminders/. There are also many ways to adapt the app to your requirements and we highly recommend checking out the Help Center (support.any.do) to understand our range of features better.,2020-03-10 03:54:45,newest,com.anydo +Ali Jauhiainen,https://lh3.googleusercontent.com/a-/AOh14GhtqsbdLf3ShJD7WYhWwGPMTKR6sjn-6Y3rspygh3c,Themes and location based reminders are under subscription. Both are free on most of apps like this. Thanks but no. I'll pass and keep using Google keep,2,5,4.17.0.2,2020-03-07 10:25:10,,,newest,com.anydo +Fridman Baruch,https://lh3.googleusercontent.com/a-/AOh14GhHvnz2pzDmBxMHtiX0_8qAW0t9w2vyc-iybUW3NQ,Not so great. The user interface is not friendly. Making the to do list takes far too long and theres no way (that i found) to make a list that repeats daily. I'll just stick to google keep.,2,0,,2020-03-06 09:57:29,"You may find instructions on how to set recurring reminders on our Help Center: https://support.any.do/recurring-reminders/. We're not sure what exactly was the issue with creating tasks, but you are welcome to contact our team for assistance at https://www.any.do/contact_form.",2020-03-10 03:45:10,newest,com.anydo +Aleksander Prudnik,https://lh3.googleusercontent.com/a-/AOh14GjgGfD0zo9qrtDLesrZ1UjwuxPYalIVA-_XOGg4280,Strange thing. When I mark recurrent tasks as done in web desktop version into the Upcoming section.,2,8,4.17.0.2,2020-03-06 07:36:43,"If the task's next occurrence is not set for Today or Tomorrow, then it will move to the Upcoming section :)",2020-03-10 03:42:10,newest,com.anydo +Killerkamatis Pogi,https://lh3.googleusercontent.com/a-/AOh14GjReytZU27M8SVBH-4CuYo4iqyS7x0lnwCs69ocEf0,Notification is now pathetic.. shame. I liked it a lot. I think its time to jump ship. It's been fun.,2,0,4.10.2.6,2020-03-04 05:51:56,Not sure what you're referring to. You're welcome to send us more details at https://www.any.do/contact_form so that our team can look further into this.,2020-03-06 03:11:17,newest,com.anydo +Chris Brown,https://lh3.googleusercontent.com/a-/AOh14GjHardduThxmgId38ZPwplc4vY8OC2n8KOR99RN7A,After all this time you still can not search tasks on Android. So you have to look through every task you have created and through each list to find what task you are looking for. Going down to 2 star.,2,1,4.17.0.2,2020-03-04 02:17:36,"Thanks for the feedback. The search feature was pushed in favor of more critical features such as the Google Assistant integration, the Whatsapp integration, the focus mode and others. However, we will be looking into adding it as well in the months to come so stay tuned for updates!",2020-03-06 03:09:34,newest,com.anydo +Cadiana Riah-kingham,https://lh3.googleusercontent.com/a-/AOh14GjsU7L7gcDUPJqj4Tf-icEKTYonZ_cQEyZuIpNLzg,Not free,2,0,4.16.6.2,2020-03-01 00:49:33,"90% of the app is completely free and unlike similar apps, we allow our users to enjoy most of the features for as long and as much as they wish without any 3rd party ads or a requirement to upgrade :)",2020-03-03 20:52:19,newest,com.anydo +luiz miguel,https://lh3.googleusercontent.com/a-/AOh14GhBE0oQDS2p1KgxUf4Jln_uZ61TLFEowMl5eBjN3g,"muito limitador pra quem não paga pra usa, e nem é tão vom assim.",2,0,4.16.6.2,2020-02-26 14:36:34,"We're sorry you feel this way! 90% of the app is completely free and unlike similar apps, we allow our users to enjoy most of the features for as long and as much as they wish without any 3rd party ads or a requirement to upgrade.",2020-02-26 14:55:13,newest,com.anydo +James Warren,https://lh3.googleusercontent.com/-tgYIfPDjGyY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOyG88mizp86cx6wfOZlwpKl2GOsA/photo.jpg,"It used to be a slick, minimal app that did what it needed to. Then they kept adding layers of unneeded features and forced people to make an account just to use it. No thanks.",2,1,4.16.6.2,2020-02-26 13:15:41,"The app is account-based for years now, to allow 24/7 sync across all platforms and to keep your data safe. Each feature added was thoroughly researched and tested before adding and we see extremely positive feedback regarding the latest changes. That said, it sounds like you're looking for a different solution, which we completely respect :)",2020-02-26 14:53:56,newest,com.anydo +Михаил Макаров,https://lh3.googleusercontent.com/a-/AOh14GiOyB4bo_4wxKNZV2KGaHvysJRoY91EIkxWrl-8cYU,"Слишком сложно, но при этом нет того, что нужно. Очень много возможностей, но не смог элементарно сделать TODO список на _каждый_ день. И постоянно лезут с предложением купить премиум. Да не вопрос, если бы был необходимый функционал. Ощущение, что приложение разработано рубить бабло, но при этом не задумываясь о потребностях пользователя.",2,0,,2020-02-25 12:20:58,"We're not sure what the problem exactly was but we have an extensive Help Center detailing how to utilize the features (https://support.any.do/), as well as wall a Blog with articles on how to best apply these tools to your daily routine (http://blog.any.do/). You are also welcome to contact us at https://www.any.do/contact_form for support.",2020-02-26 14:46:56,newest,com.anydo +WK Lai,https://lh3.googleusercontent.com/a-/AOh14GgUPjhPL1vkYNjKRxrdeCdN50aYQhyh-dYiJZYMiA,No monthly recurring reminder features. Can't even remind me when to pay the bills!,2,2,4.16.6.2,2020-02-14 01:15:04,"Any.do does actually offer a monthly recurrence option, as instructed on our Help Center: https://support.any.do/recurring-reminders/ :)",2020-02-14 01:43:13,newest,com.anydo +Wayne P,https://lh3.googleusercontent.com/-yd8rQ8VRVxE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOE4G85BpaYcks8hRGccBMpAXZMQQ/photo.jpg,Have to create an account just to check out functionality. Don't want to do that. Uninstalling.,2,0,4.16.6.2,2020-02-13 16:17:35,"Heya! We ask users to register for an account so that we can save their data on our servers, allowing for cross-platform sync and ensuring no information is ever lost :) That said, if you are looking for a more basic solution, we respect your decision to move to another app.",2020-02-14 01:46:11,newest,com.anydo +Jay Gee,https://lh3.googleusercontent.com/a-/AOh14GjN6q0kXKaisHD3QY_fcUdYZDE3eL40dokz-pSWAQ,"I love the app but I wish there was a separate page for notes. (I know that you can add notes when you create a task), but I'd like to see a designated page just for notes. Other than that I never liked subscription models, I think way more people would actually buy it, myself included if it would be a one time fee.",2,0,,2020-02-12 20:29:54,"Any.do is not only a product but also a service, continuously adding new features, keeping your information synced, and providing Priority Support. As Any.do offers much more than a standard product, it is charged with a subscription, like similar apps. As to Notes, you ma simply create a designated list using the Someday category :)",2020-02-14 01:41:02,newest,com.anydo +cheela Raviteja,https://lh3.googleusercontent.com/a-/AOh14GgJZWOSEpbCxEibcTdEacpsEtT0jL4wkC424PoVuA,How do i unsubscribe this useless app?,2,0,,2020-02-10 17:33:58,"We're sorry you feel this way. If you wish to unsubscribe from a Premium plan, please see https://support.any.do/cancellations-refunds/.",2020-02-12 13:31:06,newest,com.anydo +Alyssa Stevenson,https://lh3.googleusercontent.com/a-/AOh14Gh88zEV9ObVbhrpPPYRB6NbbtssN2SQA8thfsgPTQ,"List feature sucks! I don't need to manage myself so I can't speak to that functionality. I just wanted a list app, preferably one that worked with Google Assistant. Although that feature works great, the list feature kind of sucks. In an attempt to look new and edgy, the user experience went down the drain. I found it clunky & irritating. I shouldn't have to add a new item to the grocery list just to be able to uncheck items I need again. And that's just one of many irritations. AnyList baby!",2,46,4.16.6.2,2020-02-10 01:40:46,"We're not sure what exactly is the problem, nor are we aware of any issues with adding lists/ tasks to the app. However, we would be more than happy to look into it, should you write us at https://www.any.do/contact_form.",2020-02-12 13:21:12,newest,com.anydo +Loren Larkin,https://lh3.googleusercontent.com/a-/AOh14GhVQ7S_PJuKRSA83QpboSPEbWui9XODt7lDmDgTqw,Update: Used to be great. Now they've added so many steps it's no longer the simple app it used to be. Very disappointed.,2,1,4.16.5.0,2020-02-07 15:50:44,"Like any other product, Any.do has evolved through the years and some functionality has been altered. However, we are always sure to stick to our original guidelines of minimalism and simplicity. We're not sure to what steps you're referring but you are welcome to write us back with more details at https://www.any.do/contact_form.",2020-02-09 12:30:51,newest,com.anydo +Mr Android,https://lh3.googleusercontent.com/a-/AOh14Gjlolo65Y0vt-EmEDk6pnBbITJz93At8HPGBEzdwA,"I can t select weekly days which days i need remainder, and this drawback of app, best to go with other app",2,1,4.16.5.0,2020-02-05 09:55:31,"Hi, that's odd, please send us a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2020-02-06 07:54:20,newest,com.anydo +Janet Lynch-Price,https://lh3.googleusercontent.com/-D6bbM8hv_f4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO9EEroG6QPsSCfy3dHVuELYjz6sQ/photo.jpg,Uninstalled after latest update and it blocked all my lists until I set up an account. No thanks.,2,0,,2020-02-03 19:58:22,This sounds odd! All your tasks should be safely stored on our servers under the previous account you were using. Please contact our team at https://www.any.do/contact_form so they can help you recover your records.,2020-02-04 12:54:18,newest,com.anydo +Picsopedia by Anitesh,https://lh3.googleusercontent.com/a-/AOh14GjCej4ROurj0HEDvKqC9T54zT31xGnipIhGEShLXW4,"The ""not completed"" tasks do not carry over to the next day automatically. I wanted an app that would constantly flash incomplete tasks in my home screen. Otherwise, presentation of the app is good.",2,0,,2020-02-03 17:41:29,"Overdue tasks do stay under the Today section in the Task View and show under 'overdue' in the Calendar View. If you do not see them there, please reach out to our team at https://www.any.do/contact_form so our team can look into this.",2020-02-04 12:48:39,newest,com.anydo +Aydamir Guliyev,https://lh3.googleusercontent.com/-C2FX_CR1ZCE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPWIh3lUx50Noz2GicUXFHxdteKCQ/photo.jpg,"Very average app, not intuitive . Will probably spend more time trying to plan than doing",2,2,4.16.5.0,2020-02-02 12:50:39,"Sorry you feel this way! We have an extensive Help Center detailing how to utilize the features (https://support.any.do/), as well as wall as our Blog which contains lots of articles on how to best apply these tools to your daily routine (http://blog.any.do/). You are also welcome to contact us at https://www.any.do/contact_form with any question.",2020-02-03 16:35:40,newest,com.anydo +the lands of ores c,https://lh3.googleusercontent.com/-JnXSSbOYY-Y/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMmcHKQDe4-koOOzQCSMbbbrTFEpw/photo.jpg,I dont liek it rlly,2,2,4.16.5.0,2020-02-01 19:24:37,Why's that? :),2020-02-03 16:30:35,newest,com.anydo +Amit Sinnarkar,https://lh3.googleusercontent.com/a-/AOh14GjIiDhCT8HGI9gFsn2xqkjp2KecE5kRRJHZ1cQ4ig,Premium version is too much expensive. Any.do should provide an option in which we can select max. 3 to 5 apps for integration in premium version & pay accordingly.,2,0,,2020-01-31 10:17:16,"We're sorry you feel this way! 95% of the app is completely free and unlike similar apps, we allow our users to enjoy most of the features for as long and as much as they wish without any 3rd party ads or a requirement to upgrade. The app's prices and plan are set per industry standards.",2020-02-03 16:33:55,newest,com.anydo +Dougy Mando,https://lh3.googleusercontent.com/-yCSojileOPU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM_zoZPab6-FM5VdIi5G99U7qB5xA/photo.jpg,"Looks really good but... I'm not going to pay a subscription for it, sorry. If you said one off payment then maybe. Most of the locked features are available in other products out there.",2,0,,2020-01-29 11:08:04,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. We modeled all our pricing tiers off of similar services so we could stay competitive. We also occasionally offer promotions, you can inquire about them at premium@any.do!",2020-01-30 09:41:39,newest,com.anydo +- ALPHAEIUS -,https://lh3.googleusercontent.com/a-/AOh14GjyiYLxNBNTRGoEL_mbwG6FKWn9a2x1Hef2o3KMrDw,Well designed and all however alot of the crutial features are locked behind the premium which u need to pay for,2,0,,2020-01-28 17:59:27,"We're sorry you feel this way! 95% of the app is completely free and unlike similar apps, we allow our users to enjoy most of the features for as long and as much as they wish without any 3rd party ads or a requirement to upgrade :)",2020-02-03 16:34:11,newest,com.anydo +Merle Fargus,https://lh3.googleusercontent.com/a-/AOh14GhJCO2ahC0LD2IPPITxLONDTiE8gEwdn49WnyklVg,Unable to edit time for reminder. S7,2,0,4.16.4.6,2020-01-27 16:54:01,,,newest,com.anydo +Eric Uys,https://lh3.googleusercontent.com/a-/AOh14GgKxlJdIS6_cOSOeUi_7f2uq2u_pI0VqZ7Qj7Usfg,Cant really set custom remindere. For example I need to be able to check a specific system every 3 hours with other variables.. Cant do it,2,2,4.16.4.6,2020-01-26 09:13:32,"Thank you for your feedback. We truly value our users input, and our Product team is always adding user suggestions to our roadmap. The suggestion you posted has already added to our UserVoice forum, and you are welcome to vote for it here: https://bit.ly/30VxKDT +The more votes a suggestion gets, the more likely it is to be added in the future!",2020-01-27 09:02:17,newest,com.anydo +Robert h,https://lh3.googleusercontent.com/a-/AOh14GhuTHLoimA9z9zk-yGLyu38nj-gWxj9bVfk2zZnYg,"Could have been a good free app. Nice design , good ideas but the free version keeps forgetting the task alarm I configured. I put it at 6 but it resets it at 9. Don't know about the paid one.",2,0,,2020-01-25 06:45:57,"Hi, this sounds very strange, please send us a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2020-01-27 08:40:03,newest,com.anydo +Larisa Majcenovic,https://lh3.googleusercontent.com/a-/AOh14GhlmUAugwR-_UWP48xJYfHrHFifi3RncestMpxW5w,"Hi there, i would like to know if this application is for free or do i need to pay for it? Thank you for your answer.",2,0,4.16.4.6,2020-01-24 20:43:47,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. You can use Any.do for free for as long as you like.",2020-01-27 08:36:10,newest,com.anydo +Stephanie Rockell,https://lh3.googleusercontent.com/-aFHNkGLHMpE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPFEbD-VH9Pvnhw8MHLZEEbi7BEwA/photo.jpg,"Day 2 of trialling this. So far I've had two location reminders fail, I can't label a location with more than one letter, the only time based reminder that's fired did so while on a phone call so I don't know what it sounds like, not that I can change the sound anyway because the instructions don't work. I had no idea what the buttons meant so the first one tapped the task got snoozed for 28 hours. How is that a typical snooze length? Adding anything more than a basic list item is not intuitive",2,2,4.16.4.6,2020-01-23 19:42:29,"Hi, this sounds very strange, please send us a bug report in your app via Settings - Support, so we can get to the bottom of this for you :) +However regarding changing the notification sound, please note that this can be done via settings => Notification sound, then select the notification you wish to adjust, and tap on 'Sound'!",2020-01-27 08:15:44,newest,com.anydo +Nisharg Sanghvi,https://lh3.googleusercontent.com/-_zawisCMyTk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOnOadHp5h1qScV1aQrEc9jcGUUHw/photo.jpg,I want to discontinue and it was monthly base they charge me yearly it's very sad pls help and refund,2,0,4.16.3.6,2020-01-23 11:18:23,Please contact premium@any.do and we'll take care of you ASAP.,2020-01-23 14:14:56,newest,com.anydo +Zeek Zefrym,https://lh3.googleusercontent.com/-8lBE2GnHRW8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOAJ6J_KFkd6nOaaZ_WHYDmwNEmFQ/photo.jpg,"It sorely needs and UNDO (& backup/restore/revert) feature in case we accidentally touch/swipe a circle/bullet which then gets unintentionally deleted immediately (which I find incredibly frustrating). (It also needs a flexible feature to import & export other common text/data formats like CSV, XML, events to & from calendar… not just copy reminders to tasks) If Google fixes all that then I'd give it 5-stars!",2,0,,2020-01-22 18:03:58,"You are able to reinstate any of your completed tasks! Just simply go to the settings => 'Completed tasks' and swipe right to left on the tasks you wish to reinstate! +You can also share your tasks to a new Sheets document, and export it as a CSC, or XML! You can learn more about exporting your lists here: https://support.any.do/export-import/",2020-01-23 08:56:43,newest,com.anydo +Sohani,https://lh3.googleusercontent.com/a-/AOh14GhbdNOsA8ldpB3AIMrpGwPUSCfuf9Sbzu7o3nVMFQ,"I love this app, but recently the app keeps crashing everytime I enter. Plus the calendar is completely wrong. 😕",2,0,4.16.3.6,2020-01-21 12:28:07,,,newest,com.anydo +Ahmed Saad,https://lh3.googleusercontent.com/--vf_H0NuS4k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMUncfGEjGu7tD61STh3mNK8WUOvQ/photo.jpg,No dark theme without a premium subscription? Ok,2,0,4.16.3.6,2020-01-20 14:28:20,,,newest,com.anydo +Mahmood Abdulredha,https://lh3.googleusercontent.com/-KKCdm_ybe4w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN0MgnL9EP8quateAGd6LFCqvakbA/photo.jpg,"It's very simple, and it's interface is so beautiful. Why did I put 2 stars then? Because most of it features are limited to the paid edition, even the important ones.",2,0,,2020-01-19 10:30:40,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. You can use Any.do for free for as long as you like.",2020-01-20 08:00:57,newest,com.anydo +Magnus Brink,https://lh3.googleusercontent.com/a-/AOh14Gh-XlccFW6tJGcYrUkcDvIrsKwlNN7AfcAwFz4QGg,Looks like a copy of an IPhone app. Im not impressed by the huge bar in the bottom or the single colored ui. A night mode should come standard,2,1,4.16.3.6,2020-01-14 23:08:27,,,newest,com.anydo +jaganmohan palo,https://lh3.googleusercontent.com/-21B5QeLHyPg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNOJyvDcE7NNDW6225PjHpCURFhug/photo.jpg,There is no sound,2,1,,2020-01-14 11:24:13,"If you're experiencing issues with your reminders, we highly recommend you take a look at our Help Center Troubleshooting article on this: support.any.do/why-did-my-reminders-stop-working/ or contact us directly by submitting a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2020-01-14 11:59:16,newest,com.anydo +Raaask,https://lh3.googleusercontent.com/a-/AOh14GgLyzao3o0ycWc1FC0_5zyyyU4BfQDeZYyv44qcdg,"Too much spam. Stuff that I don't care for pops up on my screen all the time and blocking those also blocked the reminders I wanted the app for. Also, too many emails. I don't want more clutter to ""organize"" my life.",2,0,4.10.0.34-wear,2020-01-14 09:49:56,,,newest,com.anydo +Dipak Sahoo,https://lh3.googleusercontent.com/-gVTx9BC23lw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMyqUbbSyvhKf_1ciInlEqfOuGSbQ/photo.jpg,Very productive,2,0,4.16.2.5,2020-01-12 19:28:06,Why just 2 stars? :(,2020-01-13 13:42:19,newest,com.anydo +Sanjaya Oracle,https://lh3.googleusercontent.com/-bWUHOUceOl4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN3ZSo4GzpRiAWxVvEXQ2kU9Bql0Q/photo.jpg,I dont like how it charged me automatically after the free trial without informing me expiry of trial or if i wanted to subscribe to the paid service,2,0,4.16.3.6,2020-01-12 12:18:47,,,newest,com.anydo +vab rastogi,https://lh3.googleusercontent.com/a-/AOh14GiZzKtxnTJiRdBhLtE0MYFAO-_vXZuSOe0JyoBI,Not a great user interface. Have been using for almost 2 months but still struggling,2,0,4.16.3.6,2020-01-12 04:34:13,"We're sorry to hear you aren't enjoying Any.do. We believe in a minimalistic approach, and we try to reflect that in our design. This is something that a lot of our users like, however we understand that everyone likes different layouts :) However we respect your feedback, and we hope you find the solution that you are looking for.",2020-01-14 11:21:28,newest,com.anydo +Jim Bailey,https://lh3.googleusercontent.com/a-/AOh14GjMLER7U_FvsHR8TIfVmfmlPMHmJjNA75wkOX08Kg,Hate subscription uninstalled,2,0,4.16.3.6,2020-01-11 02:03:05,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. You can use Any.do for free for as long as you like.",2020-01-14 11:09:02,newest,com.anydo +Sabrina said,https://lh3.googleusercontent.com/-rtQ3jfFeeV8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN6oSck5CEe7Dt9X6nuV9M-oAxgnw/photo.jpg,Does this app work without internet connection also?,2,0,4.16.3.6,2020-01-08 05:32:53,,,newest,com.anydo +Andrea Ernest,https://lh3.googleusercontent.com/-BDzlzZp0HUc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOS8KvA3A0YfV1BjriS_dUz82fuJQ/photo.jpg,gaada waktu kapan harus selesai.. jadi kurang detail,2,0,,2020-01-07 16:01:53,,,newest,com.anydo +Dominik Kwaśniewski,https://lh3.googleusercontent.com/a-/AOh14GijJ0BI4z4C9hgcygOnTS5-YfiAnKiGV8e5bO6RZQ,Over all good task manager. But I do not like misleading and untrue boasts about integration with MS outlook. It is possible but only via zappier plus functionality is limited. Not possible to sync task between this 2apps.,2,1,4.16.3.6,2020-01-06 11:45:14,,,newest,com.anydo +Rudi Visser,https://lh3.googleusercontent.com/a-/AOh14GjGpzcky0a4UNGNHyf_W3NvmXBq8hUQs2oBw2oEWg,"Sharing didn't work, there's a permanent notification and everything is premium option, even the theme!",2,0,,2020-01-06 00:18:39,,,newest,com.anydo +Duncan W,https://lh3.googleusercontent.com/a-/AOh14GjgLGg7dpTyi1lxNy2o3VIjLDvXbe5MnGzMd3UxHg,"I was willing to give this a try to see if it suits my needs. Seemed ok, with limited use so far. The only thing more annoying than constant notifications from apps is at 9am when my phone vibrates and Any.Do takes over the whole screen and asks me to plan my day. I don't need it taking over things, i will plan when i want. Are you seriously doing this? It is the equivalent of a browser popup and very annoying.",2,24,4.16.3.6,2020-01-05 23:05:59,,,newest,com.anydo +Patrick O'Neill,https://lh3.googleusercontent.com/a-/AOh14Gjrv50UJECq1FdcBoGMxsUxBBztb-xddf_VmaE3dA,"Syncing with Alexa takes over 10-15 minutes which renders it unusable. Any.do, before you post your generic response: yes, I added the skill to my Alexa and, yes, I logged into my accounts. It syncs... kind of... so I can verify the two accounts are talking... just not well at all. When I use Wunderlist or Google Tasks or just Alexa by itself, the changes are instantly viewable across all platforms. The only reason I downloaded with app was to give me more control over my Alexa lists (which for some insane reason you cannot reorder). The extremely lag in syncing Any.do with Alexa renders this app useless. The UI looks really nice and user friendly, so I bumped it up to 2 stars.",2,8,4.16.3.6,2020-01-05 18:43:03,,,newest,com.anydo +Chip Foscue,https://lh3.googleusercontent.com/a-/AOh14GiR1UuSdPTNyHr28kiEjUopMsrf_gkIZvsh5qqw,"I don't care for it, when I first opened it it showed me all these appointments. I was thinking what the heck then I figured out it was showing me weeks passed along with the current. To me that's just a bunch of clutter. Then it was telling me I had five appointments this month, no, only have one, it only showed the one but it still says 5. I don't have a clue what the other four are. Anytime I try to do anyting it practically begged me to join premium, I just uninstalled it.",2,0,,2020-01-05 16:02:39,,,newest,com.anydo +Eric Nelson,https://lh3.googleusercontent.com/a-/AOh14GhAZ3V-JYfFiz-LFrCJbF7BWpwDvxmJk2nl5EQyDA,Good until it started wanting money for doing its job,2,1,4.15.5.4,2020-01-04 19:44:55,,,newest,com.anydo +Franc,https://lh3.googleusercontent.com/a-/AOh14GjctoJwMiSLfgy9hz9hXlr4blNXMr8jJY-MZZdpPPI,"Pretty with nice add ons and integrations but more than once I've gone back to a long list I created to find it gone or reverted back to a very old version, so annoying. Don't need the song and dance this app offers if it can't save a basic list",2,55,4.16.2.7,2020-01-04 13:04:15,,,newest,com.anydo +David Patterson,https://lh3.googleusercontent.com/-Cux-6qBtTLQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPKYVvzMiFAokBzDwXKxWpS7ZT9vg/photo.jpg,"I was about to jump wholeheartedly into using this app (its integration with Google Calendar being exactly what I'm looking for) but now I see that it has no search feature on Android. Worse still, Android Search has been on their roadmap since 2015 and it's still not done. 2015!?! In the meantime other apps can build smart lists it out of tags, status and free text. Seriously behind the curve, guys.",2,24,4.16.2.7,2020-01-03 13:11:53,,,newest,com.anydo +Kevin Liu,https://lh3.googleusercontent.com/a-/AOh14GjNZDEj3ZGYtBn1dw_CJWk-fNPDAY-F1y0TJyaqOsA,"Wear OS app only supports adding tasks, not viewing existing ones (without reminders)",2,0,,2020-01-03 03:13:45,,,newest,com.anydo +CD Spiva,https://lh3.googleusercontent.com/a-/AOh14Gj_J6K9FjplBHSN4C2u3as63OJ5deVcUSQMt0f54g,"I tried it years ago and never really got it going. Then I switched to Wunderlist and became an organized machine! Now Wunderlist is being retired, so I thought I'd try again, guessing it would be much better by now and that my ability to use it to my advantage would be vastly improved. Nope. No ability for folders or some other way to group lists together so I don't have to flip through all my lists to find the one I want. Not even a list view to make them easier to find.",2,0,3.4.15.1,2020-01-03 01:40:01,,,newest,com.anydo +Nowfal Nazar,https://lh3.googleusercontent.com/a-/AOh14Ggw_mOwAoWANzArnTufrxdnbMLwmlfdX1C__Oz2OQ,Downloads the app but package file is invalid error pops up before completing installation,2,0,2.53,2020-01-02 17:13:10,,,newest,com.anydo +Romy EC,https://lh3.googleusercontent.com/a-/AOh14GgUcL6ttkPHNT8-OxQMZLZgGOTQkuZd-s7jJFMWewc,"It's very confusing. I got the calendar app that was suggested to me when I wanted to use the widget, but once I started using the calendar along with any.do the tasks notifications got duplicated. I don't see the point of having any.do when the calendar app does the same thing.",2,0,,2020-01-02 00:36:31,"Hi Romy, please note that while do we have a calendar integration, we also provide support for adding tasks and reminders, these tasks do not sync with your calendars, as they are different than events. +Furthermore, if the event notifications are a little too intrusive, please note that you can turn them off in your settings!",2020-01-02 09:25:08,newest,com.anydo +Nasos Roussis,https://lh3.googleusercontent.com/a-/AOh14GhjYnZ_uMsVPxVI5mHg-phQHuJk__ZxdBcZNO_4ig,So far so good... bit expensive having to purchase a yearly basis to access basic functions as color tags and what comes with it. Translation to Greek is not fluent for the price tag / annually I would apprechiate developers look closer at them. Will give it a try before committing on purchasing it per year. On a positive note love the widget (using however nova launcher). Current rating will change based on the experience.,2,7,4.16.2.7,2020-01-01 03:36:24,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. You can use Any.do for free for as long as you like. +Furthermore, please note that we reply on our Translator community to help us translate the app, as such, some translations may not be fully accurate.",2020-01-01 09:29:55,newest,com.anydo +Evil Pasta,https://lh3.googleusercontent.com/a-/AOh14GhLKNQudSMae3fdCVk-imXPd6CUhBZhgmz2rkwmIQ,"Ah yes, wanna use an ""advanced"" calendar? Well, turns out you must have an account for that. What's that, your eyes are burning under this bright theme? Well we have a solution just for you! As you have seen in our tips, you can change the theme. Oh W O P S, NO YOU CAN'T, how silly of us to not tell you in tips that ~BUY OUR PREMIUM!!!~... //Maybe it's just not what I was looking for...",2,1,4.16.2.7,2019-12-30 22:34:42,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. You can use Any.do for free for as long as you like.",2020-01-01 09:09:47,newest,com.anydo +Jeff Z,https://lh3.googleusercontent.com/-SE-AYBGHqoQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPcFBkxX7odexhQJVqjiBYPwEEfzQ/photo.jpg,"Too whacked for creating lists, like grocery or to do with their tasks and subtasks instead of just lists you can check complete",2,0,,2019-12-24 17:41:09,"Hi Jeff, we would be more than happy to answer any questions you may have about the app at Customers@any.do. +However please note that you can create a list by simply going to your tasks tab, pressing the grid view icon in the top left, and then pressing the '+' button at the bottom of all your lists!",2019-12-25 08:00:46,newest,com.anydo +Alpha Sumareh,https://lh3.googleusercontent.com/a-/AOh14Gii6kgjiqpSxgrPQzgQEkNzuYugBQwCkt-VCptlZEo,"I'm a student and was looking for something get myself very organized. I have tried series of productivity apps before. Apparently this had one of the features i have always been looking for; integration with other apps which I love. Two things I found disappointing, features are extremely limited without premium, it's almost impossible to use like that also very expensive. I couldn't find statistics; from totally hours and other reports",2,11,4.16.2.7,2019-12-24 08:40:24,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. We modeled all our pricing tiers off of similar services so we could stay competitive. We also occasionally offer promotions, you can inquire about them at premium@any.do!",2019-12-25 07:52:51,newest,com.anydo +debian linus,https://lh3.googleusercontent.com/a-/AOh14GgYyrZZrIbswa2kIOZ6zox1suGNneF5pW0VvWzY,There should be a dark mode instead of setting through a premium theme option,2,0,4.16.2.5,2019-12-20 16:50:42,,,newest,com.anydo +Rachel Hines,https://lh3.googleusercontent.com/-fip-E3bQXPw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNH6aeoWXZkSqqwqxU_UENbLgKU9w/photo.jpg,"I liked using this app but I recently noticed that important information I had saved in sub tasks has all been deleted. Its happened before and I thought I had made a mistake. But no, it's just this app malfunctioning.",2,9,4.16.2.5,2019-12-19 19:01:50,"Hi, that sounds strange, please send us a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2019-12-21 11:28:48,newest,com.anydo +Chuckalaka,https://lh3.googleusercontent.com/a-/AOh14GgfhCy3klxQ7ZewuL96FGLhWZXFpmqSaPjJGO79,Many times I've put sub tasks on my to-do tasks and they just disappear for some reason. I've forgotten many things because of this and still hasn't been fixed despite various updates.,2,8,4.16.2.5,2019-12-18 14:11:40,,,newest,com.anydo +Jay Nishimura,https://lh3.googleusercontent.com/a-/AOh14GhJ7q3H4t2UIn8D7QN81ocTQ-4SuOftgau7B6jXOg,"It works well, But I do not recall subscribing to a $28/year subscription.i thought I purchased it until I saw that it was renewed for an additional $28. It's not good enough to justify that price.",2,10,4.16.2.5,2019-12-18 00:13:18,,,newest,com.anydo +Yet1,https://lh3.googleusercontent.com/a-/AOh14GiVRbXlQaiorh62QFJZJDUoAljuqdhACzANfily,App not bad but very limited unless you pay. Downloaded this app after reading in the news about it's WhatsApp integration. That is only available if you pay. Without the paid for aspects this application is like any other generic calender app.,2,0,,2019-12-17 20:11:58,,,newest,com.anydo +Lucas,https://lh3.googleusercontent.com/a-/AOh14Gg3IRxCi1LEgI2sNUw-EoiWKT1h7Npnd1MIhOxK,"I am a paid user of this app. I like this app a lot, until Android 10. They claim what they used to do is not possible but that is not true because another app I use (Daylio) has a nice notification that jumps out at you, like Any.do used to. Now Any.do gives a regular ignorable notification which you click and the app does something on the screen and is pretty pathetic, THEN it gives it's notification to plan your day. So it's two clicks with a big visual pause in between. Not cool. 👎",2,14,4.16.2.5,2019-12-17 19:34:49,,,newest,com.anydo +Gaming Cookie,https://lh3.googleusercontent.com/a-/AOh14GgWBzS54pncRmJmpCEkDdHYWye5qig46IoOYd__mA,"I dont like that it requires you to login, why cant I just use it without logging in my accounts",2,1,,2019-12-17 05:35:14,"We ask users to register an account because our app syncs across multiple platforms. In order to provide flawless sync, tasks are saved on our servers, which in turn makes them available 24/7 no matter where you log in from! :)",2019-12-17 09:24:52,newest,com.anydo +muhammad atif,https://lh3.googleusercontent.com/-5ZDLgHcd6Mw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNgIoEOmdLZ2y7MUY4tW7VtCstdhA/photo.jpg,Questionable experience. Upgraded to premium but WhatsApp integration is not working. Seems a little confusing.,2,1,4.16.2.5,2019-12-16 23:28:42,"Hi, that's strange, please send us a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2019-12-17 09:22:54,newest,com.anydo +dariush karamati,https://lh3.googleusercontent.com/a-/AOh14GjSuwg7j1nhqT_YIZbNw85eyJhoCGych8XhGi3U,Zero features in free version.,2,0,,2019-12-15 14:54:14,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. You can use Any.do for free for as long as you like.",2019-12-16 07:48:36,newest,com.anydo +Peter Seman,https://lh3.googleusercontent.com/a-/AOh14GinwVUY5YTlm1hHKAdZbTO24DASBYkdvG8zIF6WtA,"good shared tasks, but app itself makes me angry.. it keeps forgetting i am logged in with my google account.. so I need to login for like each two weeks or so.. and it also forgets my settings... Edit: unfortunately this has not been fixed yet, even though I had sent logs and communicated with you. Decreasing my rating.",2,31,4.16.1.6,2019-12-10 15:45:14,"This is very odd! We highly recommend you submit a bug report in your app via Settings - Support, so we can get to the bottom of this for you.",2019-08-06 06:19:24,newest,com.anydo +Heather Smithson,https://lh3.googleusercontent.com/a-/AOh14Gg8ooPAOLiKqV2rlCkmEN93ttRjFv6pFPjsgsvk,I can not figure out how to get it on my galaxy watch...ugh.,2,0,4.16.1.6,2019-12-08 05:53:34,"Hi Heather, please note that while we do support Android wear devices, we do not support the Samsung Gear! +If you have any further questions, or need any assistance, please contact us at Customers@any.do!",2019-12-10 09:26:50,newest,com.anydo +Swago Nichevich,https://lh3.googleusercontent.com/a-/AOh14GjBIGFPq15kf8XKEHEuG43VFtrKnqQL3NSOSFKatw,"when you switch the language, you get wierd bug that your app is half in English half in selected language",2,2,4.16.1.6,2019-12-07 11:07:45,"Hi, that's odd, please uninstall, and reinstall, and if this issue still persists, please send us a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2019-12-10 09:25:14,newest,com.anydo +Vishal Sheth,https://lh3.googleusercontent.com/a-/AOh14Gi84LL6TGwiqZxZYDwwfeLvUCgtUlwiD1b3K8pGe58,I was given this premium app. Now with new versions is not updating. I fail to understand this. If I'm given premium version then now why wouldn't it get updated? If it was non upgradable then why was it given? It's a great app and so it hurts when there are such tricks used on customers.,2,0,,2019-12-06 09:16:43,"Hi, that sounds strange, please send us a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2019-12-10 09:05:54,newest,com.anydo +e nimo,https://lh3.googleusercontent.com/a-/AOh14GgR8355C8R6L1AOPRvWNKF-BStDzZDgPvx2cTFPUg,"Dec. 5, 2019 Update Moved from 5 stars to 2 for the reason below: I've had this app for about half a decade. The last couple years have been irritating. I add sub tasks. When I go back to the tasks, the sub tasks aren't there. I wish there was a save button as a cue and confirmion that the subtasks are saved. Not sure how long I could forgive the app until I just use another one altogether. Please address subtasks staying in the next update. Thanks! Was 5 stars for the longest time Awesome!",2,1,4.16.1.6,2019-12-05 21:57:30,"Hi, please note that you will need press the return key to add your subtasks, and close the task menu, so your task can sync, after you have finished creating all your subtasks. If your subtasks still do not sync after doing so, please submit a bug report via Settings - Support so we can look into this for you!",2019-12-10 09:03:35,newest,com.anydo +Alex Bowley,https://lh3.googleusercontent.com/a-/AOh14Gg-GyBp0CIswE72Eb0SNe7JjsMyZC7jK1aZbjPMeQ,"Useful as a to-do list. Sets a real annoying ""plan your day"" popup reminder every morning. How you disable it is non obvious. Uninstalled.",2,0,,2019-12-04 09:05:15,"You can disable any notifications you don't like from the app. The Any.do Moment reminder can be toggled off in the settings => 'Any.do Moment', by simply pressing the ""Disable' button in the top right.",2019-12-05 08:22:50,newest,com.anydo +Josh Hartwell,https://lh3.googleusercontent.com/a-/AOh14GiFj_c-sPFzc_M1dyGtXKeRyYcxsmqZzZHodssZ_Q,"Can't clean up old Alexa lists! We use this purely for the Alexa shopping list integration. However, early on it was very buggy, so we had to relink our Alexa account a number of times. And now we have like 4 or 5 old ""Alexa shopping list""s that we cannot delete! ""Alexa lists can not be modified with Any.do. You can do it from the Alexa app""... No, I can not, because it only deletes the working one!",2,13,4.15.9.12,2019-11-27 18:44:45,"Hi Josh, please note that you can disable the sync between specific lists in the Alexa integration settings via settings => 'Integrations' => 'Amazon Alexa Sync', after you disable these lists you can delete them from Any.do. If you need any further help with this, please contact us at Customers@any.do",2019-12-01 09:41:19,newest,com.anydo +Aatish Panchbhai,https://lh3.googleusercontent.com/a-/AOh14GjbJSyBJjNvuUeyvuAG8dPT3TtkKg3sj6alotIiPX0,Reminder feature is not working 🥱,2,0,,2019-11-27 04:10:27,"If you're experiencing issues with your reminders, we highly recommend you take a look at our Help Center Troubleshooting article on this: support.any.do/why-did-my-reminders-stop-working/ or contact us directly by submitting a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2019-11-27 08:06:57,newest,com.anydo +Kingsley Yong,https://lh3.googleusercontent.com/a-/AOh14Ghh5kJ2sZslaSUL9QZw7lZnacMlCGmpZ3Oz0GZLPkY,"Allowed all the permissions for this app but i still can't get the reminder to work on my smartphone running Android 8. Downloaded a different reminder app and also allowed all permissions for it, and it worked well.",2,3,4.15.9.12,2019-11-26 14:35:52,"If you're experiencing issues with your reminders, we highly recommend you take a look at our Help Center Troubleshooting article on this: support.any.do/why-did-my-reminders-stop-working/ or contact us directly by submitting a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2019-11-27 08:04:17,newest,com.anydo +Charlie-Anne Gagne,https://lh3.googleusercontent.com/-eAgxn3FJvis/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOR5Vs-tAHcNBxqg5gJVmgVSsfz-Q/photo.jpg,I had made an account for this app a long time ago but didn't use it for long and I forgot why until I re-downloaded it today. This is one of those apps that's incredibly frustrating because a lot of the main advertised features are behind a pay wall and/or you have to make an ADDITIONAL ACCOUNT FOR. Paying more than $1/mo for a list app is ridiculous. If anything it should be a one-time purchase.,2,96,4.15.9.12,2019-11-25 19:56:12,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. We modeled all our pricing tiers off of similar services so we could stay competitive. We also occasionally offer promotions, you can inquire about them at premium@any.do!",2019-11-26 09:36:51,newest,com.anydo +Shivanksha Marupuru,https://lh3.googleusercontent.com/a-/AOh14GhP5Dbp2zoBPn4SM5x9pOngoX0_VzTKR92PRjqsUmY,I used to love it. It was my go to app for many years. But over the time it is losing the special status. It doesn't have travel time anymore which was the main reason why i could stay on top of things without mentally having to calculate each meeting and setting the times. They removed that!,2,8,4.15.9.12,2019-11-20 09:42:44,"What do you find troublesome about the update? We'd love to get your feedback about what specifically you liked or disliked about the new update, by writing to us at Customers@any.do. We're constantly trying to provide the best possible app for our users, and feedback like yours help us do so.",2019-11-20 16:02:18,newest,com.anydo +Vijendra Sah,https://lh3.googleusercontent.com/a-/AOh14GjfYFzwCbZSZjcb3G2KG2Y2s-4aB3r_bLtn8NSL,"The alarm feature does not work, which leads to missing the tasks.",2,2,4.15.9.9,2019-11-18 13:32:08,"If you're experiencing issues with your reminders, we highly recommend you take a look at our Help Center Troubleshooting article on this: support.any.do/why-did-my-reminders-stop-working/ or contact us directly by submitting a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2019-11-20 15:51:58,newest,com.anydo +Carina Louzao,https://lh3.googleusercontent.com/a-/AOh14Ggv-ekqvZMxyUscEpPxLoOuw_9qcDad21BVWzuubg,"Nice looking UI, but inability to disable popups is a deal breaker for me. Uninstalled.",2,1,,2019-11-15 18:38:03,"We are sorry to see you go! Please note that on Android Q, we no longer support the popup.",2019-11-18 16:33:26,newest,com.anydo +Tomal Sales Corp.,https://lh3.googleusercontent.com/-8-6mBrww_po/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOIWpNnTyzSZjtxLzexgTz-gWAmjg/photo.jpg,Reminders not working after configurations.,2,0,4.15.9.9,2019-11-15 12:09:40,"If you're experiencing issues with your reminders, we highly recommend you take a look at our Help Center Troubleshooting article on this: support.any.do/why-did-my-reminders-stop-working/ or contact us directly by submitting a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2019-11-18 16:32:07,newest,com.anydo +Luciano Zanin,https://lh3.googleusercontent.com/a-/AOh14GikuGRxwAE1SKUjGqRmtgt99bBW4qdQ5cg6ZpB7WaY,"Excellent app But... Google Assistant support / integration is in ""coming soon"" state for about 2 yeas. Is there a chance to see it available in next 5 or 10 years?",2,1,4.15.9.12,2019-11-15 08:11:19,"Hi Luciano, we have been working on supporting the Google Assistant for some time now, however we should have an update out within the next few months that supports the Assistant!",2019-11-18 16:30:18,newest,com.anydo +gerald devereaux,https://lh3.googleusercontent.com/-q8hY4akR_r4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOmvdJdYYojQqsLFvubnt9Ou6ArVw/photo.jpg,"Waste of money and they won't let you delete the account. I am very unhappy!!! Sorry, just venting because I don't have all that much of social life.",2,1,,2019-11-15 03:55:36,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. You can use Any.do for free for as long as you like. +Furthermore, if you are having any issues with deleting your account, please contact us at Customers@any.do",2019-11-18 16:29:01,newest,com.anydo +Brandon Reed,https://lh3.googleusercontent.com/a-/AOh14GhH4DNruRFoHnbLjeDYyNAdRD2u4yzl15xCeT3fHEM,Not paying $3 a month for something my calendar can do,2,1,,2019-11-11 17:15:13,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. We modeled all our pricing tiers off of similar services so we could stay competitive. We also occasionally offer promotions, you can inquire about them at premium@any.do!",2019-11-13 08:35:38,newest,com.anydo +Patrick Yeck,https://lh3.googleusercontent.com/a-/AOh14GipeqoyKpcIBS_U4A4r6aheHNFpChdQcSk5QLWJOA,I love the concept of the app I'm just not digging the functionality. Trying to set a custom date and time is a complete pain in the you know what. Every time I select pm it's stays at am. I have to do it multiple times before it catches. Same issue with the clock. I try to rotate the dial to select an hour and it hangs and throws me over to minutes. I go back to hours and it does the same thing. I finally just gave up. Back to the old string around the finger. ☹️,3,86,4.16.4.6,2020-01-29 02:57:08,If you're using a single-time reminder for the current day and the morning hours have passed than you will not be able to set the reminder for AM :) Simply select a different date and the AM option will be available.,2020-02-03 16:39:35,most_relevant,com.anydo +Ewan Cox,https://lh3.googleusercontent.com/a-/AOh14Gi1rqmxCWgny8wPa00M6BWbQ-I5FYPhSnCmhGHAC_4,The free app works well but pops up with annoying notifications every now and then to remind you to set more reminders... Kind of pointless. I'm also not a fan of the subscription model for premium. The layout and app itself is good though so it's a shame about those negatives. I would have considered buying if there was a one-time payment model.,3,160,4.16.4.6,2020-01-26 04:23:04,"You can disable any notifications you don't like from the app. The Any.do Moment reminder which can be toggled off in settings. The only other notifications you should receive are for reminders, which if you don't like, you can turn off these reminders and simply have due dates for tasks without any notification.",2020-01-27 08:57:32,most_relevant,com.anydo +Dan Lake,https://lh3.googleusercontent.com/-o7dDgsi3MWs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPQXi-3_cu68leNDnGHU0SJlLhWCQ/photo.jpg,"The app is OK but it could be much better in terms of usability. For example: 1. When setting a new reminder, the first button (which you are most likely to press without thinking) should be 'set timer', not 'share the task'. More people will want to set a reminder than share a person note. 2. The 'focus' button when the reminder comes up is in the prime location for when you are typing/using your phone and leads to you accidentally cancelling reminders each time.",3,15,4.16.5.0,2020-02-03 21:12:16,"Thank you for your feedback. We truly value our users input, and our Product team is always adding user suggestions to our roadmap. We would be more than happy to hear any other suggestions you have for the app at Customers@any.do!",2020-02-05 08:45:25,most_relevant,com.anydo +Hansraj Choudhary,https://lh3.googleusercontent.com/a-/AOh14GhHetjjV_md3Ju9C98IQbS-WcsbvTSSqlnVW7a7Xw,"Happy with the App...but personally I had two issues which are if addressed, may provide sort of convienience to the users. 1. If any task is not completed and deleted by mistake it can't be undone that I felt inconvenient to write the task again. 2. If any task is being feeded and there also undo/redo options are not available",3,11,4.17.0.2,2020-03-17 21:37:55,"You may find completed tasks under Settings - Completed Tasks and retrieve by simply un-swiping :) Once you save modifications to your tasks, there will be no option to restore old data, which is pretty common but we do appreciate the feedback and will be sure to forward it to our Product Team for further review.",2020-03-18 04:23:12,most_relevant,com.anydo +Gautama Himawan,https://lh3.googleusercontent.com/-8uFGAM9b8go/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO8L_XPnp9FJTjo6VZF6YcUVT3GEA/photo.jpg,"This apps not suitable for my needs. The reminder keep show every day, even the task mark as 'Done' (everyday I do click 'Done' at reminder, the next day, and next day, and next day, the reminder still come up). The logic for the apps does not make sense for me (I'm not a paid subscribber).",3,5,4.17.0.2,2020-03-14 03:17:21,Are you referring to a task reminder or the daily planner? Please send us more details at https://www.any.do/contact_form and our team will gladly help solve this for you and offer further guidance :),2020-03-15 23:41:47,most_relevant,com.anydo +jourdan wee,https://lh3.googleusercontent.com/a-/AOh14GjOjsLDaQdF_3u_iCsXYOAN7QAeZStqH45G7lMmNQ,"Everything is good. My only issue is that it doesn't send the message to you the exact moment you assigned it. Eg. I set a reminder at 8pm. The BOT only WhatsApped me 15mins later. Other than this, everything else is good. Love the feature of a WhatsApp reminder BOT. Improve on this area and you'll earn 1 more loyal customer",3,18,4.16.5.0,2020-02-07 10:53:20,"Our team has already fixed this minor issue, which occurred for a few users. Please let us know at https://www.any.do/contact_form if you are still experiencing this issue so that we can check further :)",2020-02-09 12:32:12,most_relevant,com.anydo +Marko VALENTE,https://lh3.googleusercontent.com/a-/AOh14GhWW9NZ3TQxGOE6RDwR_Dd60XXfpOpZ5nDzCCbeww,"I was noticed that my phone memory is low and when I was checking which apps I can move to external memory=SD card I found that I can't install/move your app to the phone's SD card and use it from it, but only on and from phone's internal memory. As I see that is not an issue by many other apps with similar features and requirements so I suggest you to make this possible.",3,12,4.16.6.2,2020-03-02 15:11:54,"Apps installed on your SD card cannot send notifications in the way Any.do requires in order for reminders to show in time. Accordingly, this is not an option at this time.",2020-03-03 21:08:26,most_relevant,com.anydo +Inner World Resources- LILI YAP,https://lh3.googleusercontent.com/a-/AOh14Gjv40KzEjNFPHbR8QJriPgIzUvFZg87Oa3VCmxg2qQ,"The tasks completed are no longer shown on the date itself, which made us hard to trace back what were the activities done on that particular day Add on review: thanks for the reply. But when I check on my calendar, completed tasks are no longer shown. I'm not sure we are on the same page. Yes They are still on the task list but no longer in calendar",3,74,4.16.6.2,2020-02-14 02:16:37,"If you do not remove the Completed Tasks from your active lists, they will continue to show in the Calendar View :) Once moved to the Completed Tasks folder, these tasks are cleared from all views. The tasks will only appear on the original dates you added them to. If you cannot see them please reach out to the team at www.any.do/contact_form.",2020-02-16 11:13:53,most_relevant,com.anydo +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Great app BUT it takes away access to your data after a while unless you grant full access to email addresses/google acct/ everything. Fair enough request, but not by holding data to ransom. Either that or its been compromised by malware, but I don't think so",3,5,4.16.5.0,2020-02-15 11:50:28,Any.do requires user to setup accounts under a user name and password for years now. We do not block access at any point as this data always remains under the account the user initially created.,2020-02-16 11:34:06,most_relevant,com.anydo +Jon Dasent,https://lh3.googleusercontent.com/a-/AOh14Ghjq74p4EIHlPVSdEu3DlvRW4gjV0JI_I6JVACc6Q,"Great To Do list. The only issue is location based reminders seem to be sporadic. Also annoying that you can't set all day tasks, hopefully an update soon. No resolution and tech support slow, a shame.",3,4,4.17.0.2,2020-03-29 09:20:04,"Sorry for this, our slower response times are due to the current events. Please make sure your device's location settings are 'on' in order to enjoy the Location Reminders. If you're still experiencing this issue, our team will try to reply back asap. At this time, we are not planning to add daily tasks, though this could happen in the near future.",2020-04-02 15:14:44,most_relevant,com.anydo +Robert Strunk,https://lh3.googleusercontent.com/a-/AOh14GisA1Otub_ES6q_-1EJWv_4y0IG3l8ANdt-7nuxKw,I'm shocked there isn't a free trial period for this app. All the things that I'm looking for are premium features and aren't unlocked without a subscription. As a rule I do not subscribe to anything unless I am confident it will add value. A trial would help me make that assessment.,3,5,4.16.6.2,2020-02-28 01:43:03,"90% of the app is completely free and unlike similar apps, we allow our users to enjoy most of the features for as long and as much as they wish without any 3rd party ads or a requirement to upgrade :) You may find a 7 days trial plan under Settings - Go Premium. For assistance, reach out to our team at https://www.any.do/contact_form.",2020-02-28 02:17:59,most_relevant,com.anydo +Wok Le,https://lh3.googleusercontent.com/a-/AOh14GgB871NevORb2_1i4tCikBulukmfhpVvWQgb1ya,"How do i disable voice note? Everytime i need to write something in todo list, a google voice popup came out. Its ridicolous, stupid and annoying. I couldnt find the disable option in setting.",3,0,4.17.0.2,2020-03-24 15:59:34,,,most_relevant,com.anydo +Paul Raymond,https://lh3.googleusercontent.com/-oGwR5osbxdc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNG98ffadXMpcBViAgrwfpAZVk6Ag/photo.jpg,"Irrespextive of having task completed, there should be a way of having access to your ""do list"" as long as it is not deleted. One might want to crosscheck a few sruffs. They should fix that issue.",3,1,4.16.6.2,2020-02-27 04:30:55,"Not sure what you mean. All completed tasks are available under the designated folder in the app's settings, from which they can be retrieved. For assistance with this, please reach out to our team: https://www.any.do/contact_form.",2020-02-28 02:10:17,most_relevant,com.anydo +Nia P,https://lh3.googleusercontent.com/a-/AOh14GgxWWfSos7oe8g-AGAgxvB9Z5gz3y1ir3IO5IOg,"This is a lovely app, but I would rather to pay one time off for using it. It becomes too expensive if you use it for years :( Doesn't connect to google tasks neither",3,0,4.16.6.2,2020-03-12 13:13:20,"Any.do is not only a product but also a service. We are continuously adding new features, keeping your information synced and safe 24/7, and providing Priority Support for any need you may have. Since Any.do is offering much more than a standard product, we have decided a subscription is the best pricing for it, like similar apps on the market :)",2020-03-15 23:31:49,most_relevant,com.anydo +Gold Nile,https://lh3.googleusercontent.com/a-/AOh14GhAkiH7d1NAvbNja9ygp54Nu0fnszeVS5KSrQ8J-A,"I love the app but recently the widgets have been glitching, they go blank or sometimes do respond when I click a checkbox.",3,0,4.17.0.2,2020-03-29 17:00:35,"We are unaware of any issues with the widgets. Please try to uninstall and reinstall the app in order to resolve this. If you're still experiencing any specific issues though, please submit a bug report via Settings - Support so our team can look into it for you!",2020-04-02 15:19:47,most_relevant,com.anydo +Sharon Robles,https://lh3.googleusercontent.com/-QvZdcap_qG4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOJlzJlJS7I7qZHe_HmB4y_5abNzA/photo.jpg,No longer getting reminder pop-ups. What happened?,3,0,4.17.0.2,2020-03-12 12:02:06,"Due to Android 10 regulations, the pop up option was removed. However, we do plan on adding it back in a future version so stay tuned for updates!",2020-03-15 23:21:38,most_relevant,com.anydo +Rajasekhar K,https://lh3.googleusercontent.com/a-/AOh14Ghs5Muk0Yed4qYDTN95Zl9haR3YiMA-He6oiNMIxw,"1. Apart from events, how to import Reminders from Google Calendar App? 2. How to import the tasks from Google Tasks App?",3,0,4.17.0.2,2020-03-11 08:38:07,"The Calendar Integration imports events only. If you're looking for a custom integration with Google Tasks and Reminders, we recommend checking out our Zapier Integration: https://support.any.do/zapier/.",2020-03-12 02:59:45,most_relevant,com.anydo +Yun Dong,https://lh3.googleusercontent.com/a-/AOh14Gje61torUWpV-rFDsdzsollundQFqQbZEA75d0N,"Small but significant issue for me: I like to look ahead at the events and tasks or whatever I put into the calendar/widget in advance. BUT I wish there was a way to automatically go back (like a button) to today's date and events afterwards because I don't like having to manually click on the arrows to go back to today's date after I view my future months and events . Overall, awesome app! Hopefully something like this gets added , I really want to continue using this app. Thank you :) !",3,15,4.16.3.6,2020-01-17 20:52:35,"Hi Yun, please note that you are able to do this! you can do so by tapping on the 'Calendar' button in the widget, or in the app! +If you have any further questions, please let us know at Customers@any.do!",2020-01-20 09:49:05,most_relevant,com.anydo +Co Paloma,https://lh3.googleusercontent.com/a-/AOh14GgJLNUprjNDWv8eh1g88pbLZ3p9z3oRI87yPYZTCyg,"I like it, a lot and also not a lot. I like the way it looks once the tasks are created, but I dislike creating the tasks using the current interface. 4 comments. 1. I have the full version with WhatsApp linked and it causes duplicate reminders. 2. The widgets are not recognized by my homescreen replacement app (go launcher). 3. I would like to be able to resize the fonts and spacing. 4. Creating tasks via WhatsApp or Google assistant is very limited in its possibilities and often erroneous.",3,6,4.16.3.6,2020-01-17 19:52:18,"Hi Co, please note that you are able to turn off receiving Whatsapp reminders via settings => integrations => Whatsapp. We would be more than happy to hear any further feedback you may have, and assist with any issue, please contact us at Customers@any.do or submit a bug report via Settings - Support, so we can further assist you!",2020-01-20 09:45:44,most_relevant,com.anydo +hel0is0heaven,https://lh3.googleusercontent.com/-kf6m1WDzu24/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJODki-UvTdd-Qcney1PSIU9AQU8Ug/photo.jpg,"I really like any.do and having my to do list and events in the same place. However I have knocked off stars because I need more customisable repeat options and notifications. Sometimes my tasks are every two weeks, or every other day, or every 3 days. Would be nice for this option. I also like to put reminders in for my work calendar. I don't seem to get the option to change this when doing a new event reminder. Can't afford premium. Shame. Back to Google calendar. :(",3,7,4.16.3.6,2020-01-20 08:25:30,"Hi, please note that we do support advanced recurrence settings! You are able to customize your recurring reminders in this way, however please note that this is a premium feature. +You can learn more here: https://support.any.do/recurring-reminders/",2020-01-20 08:07:04,most_relevant,com.anydo +Kathleen Cervas,https://lh3.googleusercontent.com/a-/AOh14GjP8RHYobHUs7552gikdcXhoHiCrfM0hLwdBGGigg,"This is my first time rating this app because I noticed that there were changes in putting a reminder. Hopefully after the task tab, the time & date will be under it. It's a bit hassle that it was made smaller that without my glasses I didn't notice it for several times. Also,I don't see any purpose of sharing it to other people ;so it should not be the priority. I hope that you can do something about this. Anyway, thank you for helping me get through my daily tasks.I'll wait for another update",3,30,4.16.2.5,2019-12-13 13:26:24,,,most_relevant,com.anydo +Denise Garcia,https://lh3.googleusercontent.com/a-/AOh14GjgpDTRiOX2j8iIOnkIKS-sS_qEGpUI_TjfJR1k-Q,"Some nice features here. Their approach really set it apart from the other I've tried so far. It's a strong contender as a Wunderlist replacement. The only reason I am still not confident on a switch is their Wear integration. It's terrible! The app doesn't listen to the watch at all. I've tried completing and snoozing and it does nothing. The watch app can only add tasks, so the screenshots they're sharing here are DECEPTIVE. I also wish I could hide completed task, instead of deleting.",3,36,4.16.2.5,2019-12-14 19:35:03,"Dear Denise, +Could you please contact us via Customers@any.do? We'd love to hear more about this issue in order to assist you.",2019-12-15 12:34:06,most_relevant,com.anydo +ɛռtʀօքʏ •v•,https://lh3.googleusercontent.com/-CoAdIhD63vw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOGA6kMOuObkfY7yXwUyHHWziRJow/photo.jpg,"Honestly I would give it 5 star, since I'm not going to subscribe or anything, but the fact that you need to subscribe just to change the theme (just to change it into dark theme) is deal-breaker, so 3 star it is. I know, you guys also need to make money but for a appearance options need to be paid is a no for me, I get it if it's like new option like color-coding so you can easily sort stuff, things like that.",3,19,4.15.9.9,2019-11-07 16:03:02,,,most_relevant,com.anydo +G G,https://lh3.googleusercontent.com/-OjNdeuQy408/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPf7P1HzccnRbfWdjKPghkqIhv5Ag/photo.jpg,Stop looking at users as cash cows. I will be uninstalling this and moving to a different app which is as good and does not nag. This is quite a good To Do app other than that it too often comes up with prompts to upgrade to the premium subscription-based version. Since when have customers disrespectfully/greedily been treated as cash cows. It used to be apps were$5 at most for a lifetime of use but now they are greedy and arrogant enough to want $5 or thereabouts per Month! I wud pay a one off,3,9,4.16.2.7,2020-01-02 04:44:41,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. We modeled all our pricing tiers off of similar services so we could stay competitive. We also occasionally offer promotions, you can inquire about them at premium@any.do!",2020-01-02 09:25:50,most_relevant,com.anydo +Jesse Van,https://lh3.googleusercontent.com/a-/AOh14GgSaXB4wCo11rXVVxjjhojTpAxHpgTcVdIF5oQ,"Awesome app but hate the new placement of the buttons. When you use to create a task you clicked under the title to select when you wanted a reminder. Now it's halfway down the page. I keep hitting ""share task"" and it takes forever to back out of that screen.",3,6,4.16.2.7,2020-01-01 22:56:42,"Thank you for your feedback! Please note that we have done this to make the app more consistent across all platforms, however we will be sure to review your feedback!",2020-01-02 09:21:32,most_relevant,com.anydo +Latrice Jamison,https://lh3.googleusercontent.com/-1b3rqQuaYiU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMEv1KjD3GFtH0bKU1abOSYNVnVrg/photo.jpg,"The app is pretty good and has good features. However, when I shared a grocery list with my fiance it wouldn't let him accept and it it sent him TONS of emails regarding it. Literally 1 every few minutes for hours and I have no clue how to stop this without him just unsubscribing. Given that sharing is a big part of why I wanted the app, it does put a damper on things for me.",3,11,4.16.3.6,2020-01-05 22:14:34,,,most_relevant,com.anydo +Adrian Neave,https://lh3.googleusercontent.com/a-/AOh14Git4mGCgDtd9TkFtrjxnvvz3ryWnWcmd9kvcr-jSw,"Easy to use decent integration. One major flaw in the shopping list, no way of entering quantities, schoolboy error!!",3,1,4.16.3.6,2020-01-12 14:18:59,,,most_relevant,com.anydo +Daniel McCormack,https://lh3.googleusercontent.com/a-/AOh14GiAMiv2DFXCMQ1scqNR7SrtEMjEAjpjFNxgRMze,Great app but crazy there's no Google Calendar integration!! Even tried setting this up with Zapier but it only creates an entry (with no link to any.do task title) for when the task is created and not when the task is scheduled. Will Google Calendar integration be coming to the app?,3,6,4.16.2.5,2019-12-13 22:53:02,Did you get into the calendar tab? It's integrated with whatever google account you have synced to your device.,2019-12-15 12:36:57,most_relevant,com.anydo +Terri Brunner,https://lh3.googleusercontent.com/-839JfXNlyOA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP_5vhK739rMuGitBXhOFjgakqaWg/photo.jpg,"Updated: It's widget can switch between calander / todolist and view the events for the calander, in the widget when clicking instead of it opening the calander app like most apps. It's task list doesn't seem to sync to gtasks but the calander does. Upgrade to premium to add things like a recurring event, daily planner, WhatsApp reminders, extra colors etc.",3,1,4.16.3.6,2020-01-02 19:46:27,"We're sorry to hear you aren't enjoying Any.do. If you have any feedback about the app that you'd like to share, we'd love to hear it at Customers@any.do. We're constantly trying to make the best app possible for our users, so feedback like yours is vital for improving the app.",2020-01-02 09:27:27,most_relevant,com.anydo +Alyson Patterson,https://lh3.googleusercontent.com/-8H3AYV5ZjLU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOaFs5rgbZxY8OaZi4oMMXZIiKhkA/photo.jpg,Long time user...do not like the latest changes! Changing the location of the remind feature is very frustrating. Now I keep clicking on the wrong option because it is in the same place as the remind feature used to be. Please change back...,3,6,4.16.2.5,2019-12-17 04:28:36,"Hi Alyson, please note that we recently updated the UI to make the app more uniform across all platforms. +However we may review your feedback at a later date.",2019-12-17 09:39:18,most_relevant,com.anydo +Stefan Ferreira,https://lh3.googleusercontent.com/a-/AOh14GjGdkNXGne_rpJ-jcV6Knd_sbpg1ls8bATM0_PY0w,"Not usable since the pop-up cannot be disabled without completely disabling notifications. They do not intend to fix this for anyone who isn't on Android Q. Pity, the rest of the app beats most other to-do apps.",3,30,4.15.9.10,2019-11-11 12:44:24,"We're sorry to hear you aren't enjoying Any.do. This is something that a lot of our users like, however we understand that everyone likes different features :) However we respect your feedback, and we hope you find the solution that you are looking for.",2019-11-11 12:40:01,most_relevant,com.anydo +Cvituljak B,https://lh3.googleusercontent.com/a-/AOh14GiZyIKbqZ8xRdULMhh-7tCaMxY5YrkvJook-CZLjQ,I liked it...nice features but not giving the colour changing option (premium only) is just cheap... I wish I can set my own music for my reminders,3,6,4.16.2.5,2019-12-12 19:37:12,"You can change the notification sound in your native device settings. Simply go to Settings - Apps & Notifications - App Info - Any.do - App notifications - Reminder notifications - Sound. From here you can choose any sound you like as your reminder sound. If you have any further questions, please let us know at Customers@any.do",2019-12-15 09:29:44,most_relevant,com.anydo +Albert Cofie,https://lh3.googleusercontent.com/-1Jix05PF8pA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPpZ9mgJ_zHdzgTEcc7UpSJjom8iQ/photo.jpg,I don't understand why all the tags disappear once you start pay or join the trial. The only tag showing is Priority. Before I joined premium there were other options which disappeared.,3,2,4.16.2.7,2020-01-01 15:59:52,"Hi Albert, please note that we only support the Priority tag for standard users, however if your tags are disappearing, please send us a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2020-01-02 09:14:41,most_relevant,com.anydo +Kgotso Malefetse,https://lh3.googleusercontent.com/a-/AOh14GhfaUYY2CR4jmbM17BJrjGsH9-xJfiRD1iUA17fHA,Works well for me and does its jobs and I never forget stuff anymore. Well done guys. And thank you for this app. Jannov,3,0,4.16.3.6,2020-01-20 15:20:59,,,most_relevant,com.anydo +Jayakumar Perumal,https://lh3.googleusercontent.com/-PzHfD3dzKfc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNu2YCl22wmmBU2eZ8Qrb3mDWXAPg/photo.jpg,Sound is not coming while the task is reminding.. How to get sound? without sound while reminding is not useful..please tell how to enable sound,3,3,4.15.9.9,2019-11-11 18:36:44,"If you're experiencing issues with your reminders, we highly recommend you take a look at our Help Center Troubleshooting article on this: support.any.do/why-did-my-reminders-stop-working/ or contact us directly by submitting a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2019-11-13 08:35:58,most_relevant,com.anydo +dawn Miles,https://lh3.googleusercontent.com/a-/AOh14GjYo_za_fkkwrxxV4GCJZEkSS8JkiZh3knq_xKXDQ,It's good and is useful only problem that lets it down is you have to upgrade to premium for it to do all the things it lists so that lets it down,3,5,4.15.9.12,2019-11-16 00:50:02,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. You can use Any.do for free for as long as you like.",2019-11-18 16:34:17,most_relevant,com.anydo +Dipanjan Das,https://lh3.googleusercontent.com/a-/AOh14GiMG3tduLqZ7-3qKfUdnpRf42JQ5cwwFbfcaKcTUA,Doesn't let me view the lists from my Android Wear OS Smart Watch,3,0,4.16.5.0,2020-01-30 15:56:09,"The Wear app is a compact view of upcoming tasks, allowing you to receive reminders and delete/ complete tasks. It is an on-the-go display that does not contain the same functionality as the main app. To view your lists, simply use the main app.",2020-02-03 16:42:11,most_relevant,com.anydo +Kenneth Ho,https://lh3.googleusercontent.com/a-/AOh14GitUJTLwivaJ3Aw5ccIAjuofI_qNUQFyVc0xG_D6qM,App doesn't have pop up notifications anymore for my tasks that I set a reminder at a certain time for. I have checked the app permissions and it allows full notifications.,3,6,4.16.2.7,2019-12-27 06:02:08,,,most_relevant,com.anydo +Bryan Lee Jia Yao,https://lh3.googleusercontent.com/-hjpGc6Kg9Ys/AAAAAAAAAAI/AAAAAAAAAAk/AAKWJJNM0BA_0niC1n7mkMRAZbqFUGT0dw/photo.jpg,App crash often happens....and i cant even open the app so how am i going to send a bug report.... 😑,3,1,4.16.1.6,2019-12-04 07:51:43,"Hi Bryan, if you are unable to send us a bug report via your settings, please note that you can also contact us via Customers@any.do",2019-12-04 08:29:51,most_relevant,com.anydo +Secretly Alien,https://lh3.googleusercontent.com/a-/AOh14Gji5vfTj1nJMvhH8zyBqWhlaFhjbMV1ys7nxwriMg,I want dark mode without payin. Like the light mode is too light,3,0,4.16.3.6,2020-01-21 08:23:48,,,most_relevant,com.anydo +vivek seelam,https://lh3.googleusercontent.com/a-/AOh14GiIS3WC5bYW8DnNJod96SvRDlGETFIeuMuojMYEUzg,"The app notification doesn't go away even after ticking the task complete, otherwise an amazing app",3,1,4.16.0.6,2019-11-29 18:09:09,"Hi, that's odd, please send us a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2019-12-01 09:59:23,most_relevant,com.anydo +Kyle Bain,https://lh3.googleusercontent.com/a-/AOh14GgRL_o37QGYlReu7fNH9UMmJVT_Tfl3uOX7ppxcsQ,The prices for this app is abit stupid when I can find apps that do the same thing for free! 26$ should give me life not everyone is rich !!!,3,0,4.16.4.2,2020-01-19 18:37:54,"You can use the free version, most people do :)",2020-01-19 19:56:04,most_relevant,com.anydo +Jason Beard,https://lh3.googleusercontent.com/-8EWcvMMCTOI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPGzRF4Fd9q_RN7mIkwKYiKVKbY_Q/photo.jpg,Very useful BUT needs Dark/Night mode. Am sure that aint to hard to create?,3,0,4.16.1.6,2019-12-10 23:22:34,"Hi Jason, please note that we do have a black theme for premium users! +If you would like to learn more about our premium service, feel free to visit our Support Center here: https://support.any.do/premium/",2019-12-11 08:29:23,most_relevant,com.anydo +Dave Nicolai,https://lh3.googleusercontent.com/a-/AOh14GjVtO4s1mCRxXVqpUkHMvg_NLaNn5OSYGt_ZEorOA,"I wanted an app that would allow me to create grocery lists from web/desktop but access them from mobile. At the time of writing, this functionality still isn't fully working. Grocery lists are categorized on mobile, but the web version just shows a single list with all items mixed together. Auto-categorization has been working on mobile since 2018, but the developers still have not bothered to port this important feature to desktop. Also, I feel that far too many of the options are locked down for premium users, even trivial options like background colors.",3,0,,2020-03-25 21:24:27,,,most_relevant,com.anydo +Scott Wilson,https://lh3.googleusercontent.com/a-/AOh14GiAHVjGp5PqYS3nB11_Ct4mHKre1fcYspmRvPCQ,"Decent app, very helpful to split things up visually but several issues over the past few months of usage. Tasks suddenly stop syncing up from a desktop PC to the app, deletion of lists seem to work but then the lists re-appear, and most recently all the tasks that have been completed over a period of time are suddenly back in my list. On a basic level, this app is useful, for anything more than that it's not the solution I was hoping for. I am a little OCD but if you are too then look elsewhere",3,0,4.9.5.1,2020-02-15 15:22:30,We're sorry for this experience! Please submit a bug report via Settings - Support so our team can look into this for you!,2020-02-16 11:37:47,most_relevant,com.anydo +sunil saraogi,https://lh3.googleusercontent.com/-6XlcjZGbaZ8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPbOG9FxzqMFSd1CYmCstFW6LqH6w/photo.jpg,Nice App... Will suggest some changes after some time,3,0,4.15.9.12,2019-11-22 13:31:36,"We truly value our user's feedback, please contact us, and let us know what suggestions you have at Customers@any.do",2019-11-26 09:10:55,most_relevant,com.anydo +Cody McLean,https://lh3.googleusercontent.com/a-/AOh14GgAuArKrtULzOgng7s7NhDpC6HYs8TFlb2jpmR4Kg,I've turned off every notification option I can find and I still get pop up reminders on my screen. I just want a silent reminder in my notification bar. Can't tell you how many times a reminder has popped up during a call and I can't press the end button to hang up. Or accidently clicked the reminder while trying to do something else on my phone. Please give an option or tell me where to find it for notifications WITHOUT a popup on the screen that steals focus on whatever I'm working on.,3,13,4.15.9.6,2019-10-23 13:04:36,"Hi Cody, please note, we have disabled the popup for anyone who uses Android Q, however we may look into adding more versions of Android to this list in the future.",2019-10-24 07:25:27,most_relevant,com.anydo +Gilad Berezetsky,https://lh3.googleusercontent.com/-QTYR_kbslas/AAAAAAAAAAI/AAAAAAAABo0/AAKWJJM8wITylENfNtwQfyZGRP7a-6hLKQ/photo.jpg,"Please make the widgets more customizable and make us able to change the background transparency. Edit: Looks like you didn't understand. I'm talking about the background transparency of the widgets. Again, if you didn't understand - I'm talking about the ability to change the background transparency, the blackish background which makes the contrast higher and isn't necessary on wallpapers which aren't too bright.",3,1,4.15.0.10,2020-03-18 14:22:14,We have many widgets including resizeable ones :),2020-03-18 13:54:25,most_relevant,com.anydo +shaurya o Connor,https://lh3.googleusercontent.com/a-/AOh14Gj1K0S0vjEZepjNpp2A38aR3WvKe0Gjnzwogxsy,Just fine for me I mean it has a smooth transition and everything but all the cool stuff is paid it's like there's nothing extra for freebies you can do the same in a normal calendar.,3,0,,2020-01-19 06:55:11,,,most_relevant,com.anydo +Ovidiu Toader,https://lh3.googleusercontent.com/-JwkepvaNyD8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPQGE3KIg-_534vgya8HOs6bPyPjg/photo.jpg,"very simle with few functions, maybe for childrens. there are missing a lot of usual functions that others free app have: time tracking, a true calendar where you add tasks by minutes steps, no task, subtask numbering, no tabel, spreadshets tasks, no custom fields, no timesheet , etc on this premium account. If you want and work with advanced GTD, planners, project management go away and dont lose your time.",3,5,4.15.9.6,2019-10-28 10:31:48,"Please note that of your feedback is already on our UserVoice forum, and is pending more votes, you are welcome to vote for them. +Event reminders: https://bit.ly/2NlXWkH +Time tracker: https://bit.ly/2JtQl2d +If you have any more feedback, we would love to hear it in more detail at Customers@any.do",2019-10-28 09:42:26,most_relevant,com.anydo +Warwick Vos,https://lh3.googleusercontent.com/a-/AOh14GijEl50KxPytEn5q_9n11WFUM0K3XEiCtszw1h0xws,"Useless. Have to pay a subscription to be reminded? No thank you. Honestly a once off fee is fair, but a continued yearly fee. I can see why these guys partnered with Facebook and mark Suckerberg . To suck your wallet. I gave it 3 stars because it is a well made app.",3,0,,2019-12-16 12:51:14,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. We modeled all our pricing tiers off of similar services so we could stay competitive. We also occasionally offer promotions, you can inquire about them at premium@any.do!",2019-12-16 07:51:37,most_relevant,com.anydo +Riley Schwengel,https://lh3.googleusercontent.com/-QKcUZeVXKP8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM7LOs175XCY-eu5_8fjfFFQJqxEQ/photo.jpg,Good interface and design. But the sharing capabilities were riddled with issues. The app became almost unusable if you tried to share anything,3,2,4.15.7.14,2020-02-25 02:41:06,We're sorry for this experience! Please submit a bug report via Settings - Support so our team can help resolving these issues for you!,2020-02-26 14:40:56,most_relevant,com.anydo +Maddalena Z.,https://lh3.googleusercontent.com/a-/AOh14Ghjo-yzs9zyihOxD6uzEMh-FxA6NBdnJ-kAUyAtYkE,My favorite thing is when to do list speak loud the task to do. Is good not having to read your screen. I unistalled because I miss this feature,3,0,,2020-01-25 22:39:43,"Please note that Any.do never supported a 'natural language' feature such as the one you mentioned. However using our Google Assistant, and Alexa integrations, you are able to hear what is on your lists, via the Smart Assistant you are using. +If you are experiencing any issues with this please send us a bug report in your app via Settings - Support",2020-01-27 08:56:28,most_relevant,com.anydo +Joan Casals,https://lh3.googleusercontent.com/-Em2ppgdQ6Ug/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOYuLQJE3jsHubMGPv3wmU9_8bBfg/photo.jpg,"On the phone it works perfectly, but now that I've installed the app on the tablet, I realise that it doesn't have the option to rotate the screen if the tablet is rotated, please add this feature so that I can see better the tasks",3,3,4.15.9.6,2019-10-17 08:42:43,"Hi, that's a little strange, please send us a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2019-10-19 15:13:39,most_relevant,com.anydo +Neal Yumnam,https://lh3.googleusercontent.com/-ScmHt5XaPXo/AAAAAAAAAAI/AAAAAAAAeiU/AAKWJJMyJy3qml7Hp5rKxu4VyNTKw4hPUA/photo.jpg,"There's a very important feature missing — to SELECT AND EDIT MULTIPLE TASKS at once. Also, the app could improve speed wise. It feels a little SLOW and HEAVY, specially with the transition animations. Otherwise, 5 stars.",3,1,4.15.9.6,2019-10-29 07:08:56,"Thank you for your feedback. We truly value our users input, and our Product team is always adding user suggestions to our roadmap. The suggestion you posted has already added to our UserVoice forum, and you are welcome to vote for it here: https://bit.ly/2NsGSJF +The more votes a suggestion gets, the more likely it is to be added in the future!",2019-10-31 16:32:20,most_relevant,com.anydo +habib mohammed,https://lh3.googleusercontent.com/-m22-pxnnTJw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNimvPwrPcvteeytm4Uke9G2j2o8A/photo.jpg,I love the app But its shame that I can't add my tasks on my calendar after I planned my day. I am heavy calendar user I use it to schedule every hour of my day but I can't do anything similar with this app except to remind me at certsin time. To me having to see how your day is structured by the hours is really usefull. Uninstalling it for this reason.😏,3,0,,2019-12-31 05:35:06,"Hi, please note that you are able to view your days by the hour, with our Daily view! To get to the daily view, simply go to the Calendar tab, tap the Calendar menu icon in the top left, and then select 'Daily'.",2020-01-01 09:12:40,most_relevant,com.anydo +Nita C.,https://lh3.googleusercontent.com/-ljNkWX3eQwM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOUt1c3VjjDpjo8PkhtBdZO_2X8ZA/photo.jpg,"Sorry this is not a review but a question : anything I enter in google calendar ends up in any.do, but not the other way around ? How do I do this ? Have I missed something ? Specifically, I want my Goggle Home mini to be able to tell me what's on my any.do tasks and calendars.",3,1,,2019-12-14 14:18:12,We're launching our Google Home integration in the next few days! :),2019-12-15 12:34:55,most_relevant,com.anydo +Justin Gaughan,https://lh3.googleusercontent.com/a-/AOh14GhjGSif621kdD5cdg006kP-3RrHJtuj7az_0NsQX9I,"A decent app, but for me, it's not worth paying £15/yr for, and that's at 50% off. £30 is just ridiculous for a to-do/calender app. There are other task/calender apps, just as good and free.",3,0,,2019-12-21 21:45:15,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. We modeled all our pricing tiers off of similar services so we could stay competitive. We also occasionally offer promotions, you can inquire about them at premium@any.do!",2019-12-23 08:02:56,most_relevant,com.anydo +Tazzy B,https://lh3.googleusercontent.com/-cgNpZzD2JRY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOQ3Y8QqnEeAr20B0D8bMjYszSIOA/photo.jpg,"How can I delete priorities? Someone please answer me. Also, please make a feature where we can choose to check subtasks off through check boxes as well. And a feature that lets us choose the colour of the to do list when it's open, as well. Also, headers within the lists themselves? Just to divide tasks. I will change my rating to a 5 star, then. Thank you for reading this.",3,8,4.10.2.6,2018-09-22 23:10:43,,,most_relevant,com.anydo +Aussi97,https://lh3.googleusercontent.com/-QQsW603qB-U/AAAAAAAAAAI/AAAAAAAAAKs/AAKWJJN8C-iThXp1-Rlgrjt4bU8yhfDrkw/photo.jpg,"App still needs a lot of work. It's not at the point of being worth a paid subscription. It needs more organizational tools, an easier way to repeat tasks daily/weekly/monthly, as well as a timeframe for each task (not for notifications, but for organization). Also, when getting events from the calendar it should only grab current or future events to reduce the clutter.",3,0,,2019-01-04 14:52:15,What organizational tools are you looking for? And what are we missing with our recurring tasks?,2019-01-07 13:08:29,most_relevant,com.anydo +Temp Test,https://lh3.googleusercontent.com/-4BJ-9iC8p8Q/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOrdsE9TMIUQfoPEFjhEtAYmND_AA/photo.jpg,"Working great so far until my Nokia 8.1 was forced to upgrade to Android 10 lately, after the upgrade reminders no longer show in pop-ups, though they still appear in notifications. Please advise how to enable pop-up reminders again, thanks in advance.",3,4,4.15.9.6,2019-10-15 13:13:05,"Hi, due to Android Q limitations pop up notifications, will display only after tapping the notification in your Android curtain. That said, we are working on a workaround that will allow for you to set the app to ‘draw over other apps’. This will enable you to see the feature if you so choose.",2019-10-17 07:04:37,most_relevant,com.anydo +g sinclair,https://lh3.googleusercontent.com/-A3JfucA_Ewk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOvDwARAcfAevtZenXlSA2h9_JsHw/photo.jpg,"Good but why is there no widget? I just recently decided to try this app again. I like the reminders. Unlike some other users, this feature works fine for me. I also like that Alexa has a skill for it so I can just tell alexa to add something to my list and it's added. The only thing I would remove a star for is no widget. I dont want to have to open the app every time to see what's on my list.",3,75,4.10.3.4,2018-10-05 19:17:34,"We actually have several Any.do Widgets, for calendar viewing, task viewing, and compact viewing! To add the widget, simply open your widget menu (long pressing on your home screen, then tapping ""Widgets"") and select one of Any.do's widgets.",2018-10-09 09:25:53,most_relevant,com.anydo +Orneno Wright,https://lh3.googleusercontent.com/-gXR5zghnO7o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNu6yhQN2cd9NCOqmyBR_GQI92f5w/photo.jpg,"Eh, it wasn't for me. Maybe it's because I was using the free version, I didn't think this app was very intuitive at all. First of all, it's very annoying to not be able to set my own reminder times for tasks. I had the option to either choose 9 in the morning or 6 in the evening. What the heck? Secondly, the reminder feature goes off a little too often. Only one reminder is needed. I know I could have turned notifications off, but I did want reminders for my tasks. I should have been able to control the number of reminders. Also, it was pretty lame that I couldn't make multiple lists. I was just dissatisfied overall with my limited options. I deleted and am using another to do list app",3,1,,2018-12-12 11:17:57,"You can set a reminder for any time you want using the ""Custom"" option in your reminder settings. Also, you should only get one reminder per task. If this is not the case, please submit a bug report via Settings - Support, so we can look into this for you. You can also make as many lists as you want from the Grid View screen.",2018-12-18 13:53:01,most_relevant,com.anydo +Mark Wysocki,https://lh3.googleusercontent.com/-69Twkb9cOaY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNQ-0CSsDi-gAqsHDtXTP7K1R_ENw/photo.jpg,"I had an older version of this app on my previous phone and loved it. However, the usability has gone way down somewhere in between.... You need to get rid of the analog clock thing when adding reminders. It takes way too many finger taps than is necessary to set a simple reminder for a given task, and annoyingly resets to the current day and time every time you try to edit a reminder you have created. This is confusing and makes it hard to use this app on-the-go, which is when I need it most..",3,0,,2019-05-06 01:41:48,"We are sorry you feel this way! We moved to the new Android native clock screen to boost our app's performance. That said, I will pass your feedback to our Product Team.",2019-05-06 07:06:53,most_relevant,com.anydo +Stephen Bryant,https://lh3.googleusercontent.com/a-/AOh14GiPHohaYRO0xtpBiDaCw0CuOo6HCVcEqNZAVMTs,"Overall, I like the app. However, I'm uninstalling because of the pop-up notification that goes over other apps and basically freezes my phone until i dismiss it. The app doesn't have permission to draw over other apps and no way to disable this notification. The only reason it isn't 1 star is because overall the app is good.. they just ruin it with that 'feature'.",3,4,4.12.0.5,2019-01-19 16:27:44,,,most_relevant,com.anydo +Aseem Kullu,https://lh3.googleusercontent.com/a-/AOh14GiyyN2DEqMeg7xydHqQSc9DCyuBaxwsqCWParan,The android homescreen widget keeps on hanging every now and then. I'd have to remove the widget and then add it again to the home screen to make it work. It's really a headache. I may opt out of the app if the widget continues to behave like this. Google calendar was what I was using before and that worked completely fine.,3,0,4.10.3.4,2018-10-13 13:48:37,You appear to be using an old version of the app. Try updating and the issue should be fixed! :),2018-10-14 13:51:30,most_relevant,com.anydo +Ann Shea,https://lh3.googleusercontent.com/-6t_sCxcMePE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPkttRiyB5GTyKo6LRC6iI42fj7qw/photo.jpg,"Honestly, this app is not user friendly, is not intuitive. When I try to schedule a repeating task, it's confusing. After selecting a task to be repeated, I am asked how many days?! What the heck does that mean?! How the heck can I SIMPLY set a task to be repeated every day? Developers, where's the user guide?",3,8,4.10.7.3,2018-12-05 11:39:57,"Any.do supports advanced recurring reminders. This means that you can choose how many days will be set in between each occurrence. You could have a task go off every 2 days, 5 days, or 20 days. If you want a task to repeat every day, just set the number to ""1 days"" and you'll be set! :)",2018-12-05 16:28:53,most_relevant,com.anydo +Dan Wilcox,https://lh3.googleusercontent.com/a-/AOh14GgJMgOESYEFIAzunDYkvOcYoJAigWAVLWNVlotM,"Sadly this is the best to do list I have seen. Very glitchy. Tasks done weeks ago magically show up and you have to delete them again. A grocery list I didn't even want replicated itself 12 times. My personal list replicated itself 13 times and when I deleted the second to last iteration of this it deleted everything I had ever typed into my lists. Calendar support only available on ipad and android phone, not in browser window. You have to trick the system into puting a date on items by setting a reminder and then going back in to deactivate the reminder. I like that you can move items around however you want and that items left undone today stay in the today category instead of just floating out of the system. It is odd that something as unfinished as this emerges as king of the hill in this category. I would have thought that the global creativity and intelligence of humanity would have far surpassed this but apparently not.",3,2,4.11.0.18,2018-12-28 02:30:01,These are some very odd issues you're experiencing! We highly recommend you submit a bug report in your app via Settings - Support so we can look into these issues for you. Regarding the due dates: You can create a task with a due date but no reminder by swiping the bell on the top right of the reminders screen to the left.,2018-12-30 16:09:48,most_relevant,com.anydo +CHERI CHILDERS,https://lh3.googleusercontent.com/a-/AOh14GhKvolmMiwgOPL--i1pJnowysA89k2t6fwprlYhyZI,"It could be great but too hard to delete an item on your agenda. It's like you put it on your agenda and it just doesn't disappear after it's over it just keeps on repeating very annoying sad that I paid the full subscription amount thinking it would help me to stay focused with my work day, but only for a few days until it started repeating itself and I tried to find a way to cancel or delete something out of the agenda completely",3,0,4.10.2.6,2018-12-03 09:36:39,"You sound like you may have a recurring reminder. This is a task that is intended to repeat after each time you mark it complete. To delete this, open up the task's reminder settings, and then press the ""x"" icon or the ""trash can"" icon to delete the reminder. Save your changes, and you should now be able to clear the task successfully.",2018-12-04 13:54:08,most_relevant,com.anydo +Rachel Kesel,https://lh3.googleusercontent.com/-xTN6IgqW8e0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMgLiTEJhx5ixpKhZ_Rf7SdvoFVIg/photo.jpg,"I used to love this app and recommend it to friends regularly. The updates have made it harder to use. I don't need anything fancy. I just need a list. I don't want to clear or uncheck all items on my grocery list, I just want to go through it and untick the ones I need today. I regret ever using the 'smart' grocery list bc now, even though I have turned it off, it won't revert to basic and my list is essentially useless.",3,68,4.12.0.5,2019-01-08 17:44:44,We are sorry you feel this way. We plan to issue a feature to convert Grocery Lists to regular ones in one of our next versions. We apologize for any inconvenience.,2019-01-09 15:46:35,most_relevant,com.anydo +Anita Chang,https://lh3.googleusercontent.com/a-/AOh14GjZowxKmGh4Zf0uTBwuN1vEmkHKgAXN-OcwGFXt2A,"I used to be a big fan of any.do products and I used any.do, any.cal for years, I think these apps are really easy to use. However, when I set a reminder for an appointment every Monday, it only allows me to set reminders on every Thursday( the date that I created that reminder) instead of Monday. it's really disappointing.",3,1,4.10.7.3,2018-12-06 18:01:54,"Heya, did you try changing the start date? If you did and it's still not working, please submit a bug via Settings - Support so our team can look into it for you!",2018-12-10 07:41:38,most_relevant,com.anydo +Jesus Mondragon,https://lh3.googleusercontent.com/a-/AOh14GgR_leZDlzo1mnZ1Jyu-JcvN1QEkTibIDTHxjuf,"I've been using the app for a while mostly just as a reminder app. Finally, I put together a plan to use it as my primary task tracker. Great app for managing tasks 👏 A little learning curve 🤔 Sync with Google Calendar was easy 😁 No CUSTOM Task reminder sounds?!!? 😡 (💦 sound = Drink) Also, no multi-reminders for Tasks or times for Subtasks. Had to put 4 of the SAME daily tasks in as Stretch 1, Stretch 2....etc.",3,2,4.10.2.6,2018-09-12 16:29:11,,,most_relevant,com.anydo +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"does not seem to work with google calendar, I see no reason to give them my payment info for a free premium trial. // I managed to add the google calendar. it took all the events, bur not the reminders in calendar . I still won't use this, as it seems to be a replacement interface but I like the google display better. I don't need to pay this much for few benefits to me. I have not found anything that I like yet, either.",3,7,4.15.0.10,2019-03-10 01:43:14,"The payment info is a Google Play requirement which Any.do has no control over :) That said, 95% of the app is completely free and unlike similar apps, we allow our users to enjoy most of the features for as long and as much as they wish without any 3rd party ads or a requirement to upgrade :)",2019-03-16 00:38:18,most_relevant,com.anydo +diego nunes,https://lh3.googleusercontent.com/a-/AOh14GjPlQD8jvDQe6O_ZSaFuPnYjwjR43JtzG7QvBAh8Q,"I'm using the free version and its a disapontiment. No themes, you can't delete default lists. It's ugly.",3,0,,2020-01-27 01:09:43,,,most_relevant,com.anydo +Caleb Wells,https://lh3.googleusercontent.com/a-/AOh14GhQEyXwr1G0Y2Ivu-YZ_oa9Ye_RRxyTKUNaE7rWWg,New update was step backwards. My recommemdations: 1) Have daily/weekly/monthly calendar views that show reminders and events in visual boxes (instead of just a list). 2) allow rearranging of the order of subtasks and add subtask reminder capability. Also should be able to check off individual subtasks. 3) allow a task to be turned into a calendar event instead of just a reminder 4) show that an event has subtasks from main view,3,4,4.11.0.18,2019-01-02 15:30:39,We do support re-ordering subtasks! You can drag/drop them the same as tasks! You can check off individual subtasks too! You can also see whether tasks have subtasks from the main view if it has our subtask icon! As for your other suggestions: These are great ideas! We've forwarded them to our product team and will definitely look into adding them.,2019-01-03 16:02:52,most_relevant,com.anydo +Taya,https://lh3.googleusercontent.com/a-/AOh14GhCNXPSNwEkNWHm-vVCLAGFWyLxDtpvCPcLWQVFViE,"Just one thing and I will definitely change to 5 stars. Make the 'Quick add bar' easier to use! Just expand the letter 'ADD A TASK' in the notification bar. Or at least make it easier to reach when using one hand. I'm right handed but the 'add a task' is located on the bottom left of the bar so it's hard to reach with a thumb. Please, I believe it's not too much to ask for.",3,93,4.15.3.4,2019-06-03 16:03:36,Thank you for your suggestion! We've forwarded it to our product team for consideration. And if we see more support for a similar feature from other users we'll definitely look into adding it. :),2019-06-05 12:57:35,most_relevant,com.anydo +Juan Perez,https://lh3.googleusercontent.com/a-/AOh14GjslujaFTXdDjD2dkYHTnCDr6o68miBnxcsYqiaGA,"A software expert. Just purchased this app. It's generally OK, but I am not very impressed. The most glaring issue is that you are confined to the app's predetermined reminder intervals. you have NO option to create your own time intervals (i.e. 12 hours before, 18 hours before, 4 days,5 days before, etc.). They say this app is customizable, as long as it's the developers choice of customizations. look elsewhere if you want total customization. I'll look for more deficiencies and report back.",3,3,4.15.3.4,2019-06-02 23:41:53,You can create reminders for any time you would like using the custom option :),2019-06-05 12:45:03,most_relevant,com.anydo +Niklas Widmark,https://lh3.googleusercontent.com/a-/AOh14Gg5pz3ofSClDd-2kbrIa5eGTUyob29QCxHKbp71MA,"This was a great app, a year or more, ago. The simplicity of adding and checking off tasks, without clutter of a bunch of fancy features, was it's strength. Basically, it was as simple as making a list on a piece of paper, with the added bonus of having reminders. Now, however, it requires more steps to add to-dos, and is becoming more of a complicated app, loosing the original appeal. As of some time ago, notifications also stopped working, which mean I will leave, after some 5+ years of use.",3,26,4.15.5.4,2019-08-05 16:10:00,,,most_relevant,com.anydo +Mike Endrizzi,https://lh3.googleusercontent.com/a-/AOh14GhGptDSJGljk3mG25c_CnGuXmqTy1PpbSqnR9vP,Cant view a month in one screen. One week is the maximum that it will show. Uninstalled.,3,0,,2020-03-08 01:03:13,"In the Agenda View, simply tap on the weekly spread at the top of the screen to open the monthly spread :)",2020-03-10 03:56:09,most_relevant,com.anydo +Jay Yudith,https://lh3.googleusercontent.com/-VZoSd5ASxNw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPGumIfxaIzAosCgvi5LID3viKjWw/photo.jpg,"Great app! But have a few suggestions that would make it the best app in the market! Trust me people are looking for this! 1) The ability to add your schedule with a few clicks. For example you can set reoccuring events, but peoples schedules alternate. Would be great to be able to click the days you work group then at the same time and categorize them under work. (For reference look at the nursegrid app) 2) add your spouse or family directly. So everything is synced real time.(familywall)",3,0,,2019-09-20 15:14:03,"We have forwarded your idea to the product team Thank you for your feedback. We truly value our users input, and our Product team is always adding user suggestions to our roadmap. Regarding the real time sync with your family, I would recommend trying out shared lists, you can find more about it here: https://support.any.do/sharing-lists-and-tasks/",2019-09-22 12:54:25,most_relevant,com.anydo +Josephine P,https://lh3.googleusercontent.com/a-/AOh14GiUCNGYrsJkzoXzE7Oh0M4SNyayvPbQ4ja67neVtg,The app's really nice and I really like it but it's just REALLY REALLY BUGGY for my phone. I can't switch between the calendar and tasks with ease. I can't even slash out items on the to do list smoothly. It could've been such a big game changer for how I do things!! :-(,3,7,4.10.3.4,2018-10-08 21:37:00,"We're glad you like the app! 😄 If you're having issues, please submit a bug report in your app via Settings - Support, and our team will quickly look into this.",2018-10-09 14:11:12,most_relevant,com.anydo +Bob Hatton,https://lh3.googleusercontent.com/a-/AOh14Gghca_1amkg1i1pqgGWtMgRQKUX1oa9Fjnnez5K,"The app continues to improve, but it lacks one feature for me... the ability to turn off the pop- up I get on my screen every morning to tell me it's ready to ""plan my day"". Let me make this clear...I don't want you to plan my day so stop telling me to do it. I've tried turning off all notifications, but no luck. And everywhere I go on the app it tries to sell me the premium upgrade.... just annoying.",3,58,4.15.1.5,2019-03-20 15:29:17,,,most_relevant,com.anydo +Elyse Eastman,https://lh3.googleusercontent.com/a-/AOh14GgYbC8xWvIl5XZeeMLAYdtt926N2LoJMF0IDNUceQ,"Overall, the app is pretty good. I have a few complaints, but they don't imapct the basic usefulness of the app. 1. The app doesn't make a noise when a reminder comes up. 2. It has been sporadic and may not keep a reminder posted even when it hasn't been marked complete. 3. The format for setting a reminder day is clunky. Recurring reminders are especially difficult and may not even be available (for example, there is no way to set a recurring reminder to every 6 months).",3,41,4.15.8.11,2019-09-29 03:27:39,This sounds very odd as we're not aware of any issues with receiving or setting up reminders. Please submit a bug report via Settings - Support and our team will look into this ASAP.,2019-09-19 14:29:16,most_relevant,com.anydo +Rosemary desris,https://lh3.googleusercontent.com/a-/AOh14GhXxNvMoxYhri661PhwR_1fyKFjdgBBbTG8gXQkkpo,"Waste , there was not an option to set an alarm to remind . I can write a note anywhere , I need the note to remind me which this app said it would . Too busy trying to get me to but it . I will just but an alarm clock",3,0,,2020-01-29 18:54:58,"If you're experiencing issues with your reminders, we highly recommend you take a look at our Help Center Troubleshooting article on this: support.any.do/why-did-my-reminders-stop-working/ or contact us directly by submitting a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2020-01-30 10:02:22,most_relevant,com.anydo +Chinmay Garg,https://lh3.googleusercontent.com/a-/AOh14GjW8ks1IMftC8_Aw572gGsCxxz7iae-25VYuhkRrg,"This app was a life saver for me. But its not working properly with my new OnePlus 7. It doesn't gives reminders which I set for whatever time. I get it once in a while, but most of the time no reminder. Please provide a solution for this asap. Thanks. Edit (7/7): It started working now. All I did was, in the battery settings, selected Any Do app, n selected the option Dont Optimize in it.",3,8,4.15.4.11,2019-07-07 13:40:20,We are so happy your app is back up and running smoothly now! 😉,2019-07-09 11:08:30,most_relevant,com.anydo +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"No experience with it. install / ""Open"" goes to a login screen. No thanks. I do not want to login to use this. I'd appreciate it if developers would say upfront that their app is not a standalone, local, private version. Too bad, could have been just what I need, otherwise. Sure looks good. To dev: thanks for the response. I rechecked. Neither the images nor writeup specifies an account is MANDATORY. ""can"" is different than ""must"". Updated with Extra star for prompt service. Thx.",3,11,4.15.0.10,2019-03-19 14:49:54,"Heya! We ask users to register for an account so that we can save their data on our servers, allowing for cross-platform sync and ensuring no information is ever lost :) The cross platform sync is mentioned in the app's marketing images on Google Play.",2019-03-17 13:16:35,most_relevant,com.anydo +Richard Querin,https://lh3.googleusercontent.com/a-/AOh14GiaQmmMhdVOD1iB9LDsKxENqxuOyldeb0V8sLDOC0U,Had to leave the beta when I saw the nice large bold text input (when you hit the + button) go away. I love the current nice large text design on the input. Hopefully it doesn't go away or at least remains an option. Turning off auto updates for a while on this app just in case you decide to make this poor life decision final.,3,4,4.13.0.14,2019-01-25 10:28:53,Please note you can control the font size from your device settings :),2019-01-31 12:49:15,most_relevant,com.anydo +Nathan Deen,https://lh3.googleusercontent.com/a-/AOh14Ghu5PwuEYueL11u2ZWEvGPwFHzZV2r2d-6dKMnRug,"Used to think it was a 5 star app but they keep making it worse (and worse). Specifically it wrongly interprets touch screen movements putting tasks in random locations rather than where you drop them, often the very end of all your tasks, so you have to waste time dragging it back, sometimes for dozens of items. Reminders bug me the moment I wake up & won't switch off. You only let me move a reminder 15m, 1hr, 3 hrs. So with a list of 20 things I get 20 reminders 3 hrs later. Annoying as hell.",3,26,4.15.2.1,2019-05-07 12:14:10,"Please note you can simply postpone the reminder for today without an alarm or postpone/disable the daily planner in your app settings :) +For further assistance, we are here for you at Customers@any.do.",2019-05-08 08:38:06,most_relevant,com.anydo +lady dulayne,https://lh3.googleusercontent.com/a-/AOh14GjGDAyYfosgcO-417PpuQBo2FrIG17deRlB-eevV4k,"So far so good but two improvements would allow me to delete the other planner app I have on my phone. 1) Reminders. I am looking for an app that would act like a print planner where I would list my tasks by day for the future. I'd like to be able to check an app for Mon., Tue, Weds., etc but without having to set a specific reminder for each. Monday should just be Monday without needing to set a time. Would be great to just have a list for the whole day. 2) For lists such as grocery lists, I don't see any setting to allow the app to stay on screen if you are currently in a store and trying to buy off your list. This is important!! No one wants to grocery shop and have to constantly unlock their screen to see the list.",3,19,4.15.6.9,2019-08-16 14:38:40,"You can set a due date without a reminder by setting a reminder and then toggling the bell icon on the right side to disable the alarm. Regarding your Grocery List suggestion, I will pass it to our Dev Team. In the meantime, you can set your device to lock only after manually closing it if you would like that under the device settings.",2019-08-18 04:21:55,most_relevant,com.anydo +Marta Rocha dos Santos,https://lh3.googleusercontent.com/a-/AOh14GgSlceOe72625Udeks1xMl3bYtFGRmni6RIBx-gFA,"Hi, today the editing or deleting of events stoped working. When selected to be edited the event opens in a window without it's name and if you choose edit the window closes and goes back to the calendar. Also by swiping your finger on the list it can not be deleted. I really love the app, it's has worked perfectly so far but like this it's useless, please advise. Kind regards, Marta Santos",3,4,4.15.3.4,2019-05-27 16:46:49,"This is very odd! We highly recommend you submit a bug report in your app via Settings - Support, so we can get to the bottom of this for you.",2019-05-28 08:31:53,most_relevant,com.anydo +Daniel Serratos,https://lh3.googleusercontent.com/a-/AOh14Gi_vwrKm56rfV4NHw69ikvQqcnhbG2Tv6pfCxj4Xg,I really like must of the app but it has 2 horrible bugs that made me uninstall it. Whenever I make a new event in the widget it places it a day after the date that I chose and then the edit button doesn't work and you are stuck with it and it might get confusing. I might download it again if that is fixed.,3,1,4.14.1.2,2019-07-11 04:34:05,We are not aware of any issues with adding events through the widget. Please email customers@any.do with your account and device details so we can get to the bottom of this for you!,2019-07-11 14:27:40,most_relevant,com.anydo +カシャニニッキー,https://lh3.googleusercontent.com/a-/AOh14GjUmxJn_nZqvckgV7TazQLlE6oaW_Tr28pwdbCB,"Excellent app, with plenty of functionality for free users and worthy upgrades for paid users. I love that it can be used across multiple platforms. That being said, it's super unreliable so I'd never upgrade. Repeated tasks sometimes get marked off and stay on the current day, needing to be marked completed as many as 5-7x before moving to the next day. Sometimes when you add a task it'll disappear; maybe related to server syncing. But not always, so you better remember (defeats the purpose)!",3,13,4.15.8.11,2019-09-30 15:03:10,"Hi, that's odd, please send us a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2019-10-03 09:11:46,most_relevant,com.anydo +Nok01 Ia01,https://lh3.googleusercontent.com/-m7_RTojRf7o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPY5qd3qFwIXKuRBFUWtL1Ra9d2cA/photo.jpg,There are much more eady to do list apps. This one is not intuitive and no time to waste searching. Maybe could be interesting after getting used to it.,3,0,4.15.9.6,2019-10-21 05:34:52,"We're sorry to hear you aren't enjoying Any.do. We believe in a minimalistic approach, and we try to reflect that in our design. This is something that a lot of our users like, however we understand that everyone likes different layouts :) However we respect your feedback, and we hope you find the solution that you are looking for.",2019-10-23 07:00:07,most_relevant,com.anydo +Akash Sheral,https://lh3.googleusercontent.com/a-/AOh14Ghw0n_Va7kjfLRiKsbH9YLQ3ue3aPberKcWxhzZ0Q,"The app is laggy, also it has a premium version so many important features you will have to buy.. i feel that the organisation of the can be more better... Today and tomorrow should be completely seperate and there also should be a slot of yesterday where you can see what you missed doing the day before",3,2,4.10.4.1,2018-10-21 06:52:51,"We offer 95% of our functionality free, including all core features. Also we do keep Today and Tomorrow separate :) In addition, if you go to Today in your calendar, you can see any overdue tasks that were missed in the past. Regarding the lag: Feel free to submit a bug report, so we can help resolve this for you.",2018-10-21 11:31:44,most_relevant,com.anydo +Sujay Thomas,https://lh3.googleusercontent.com/a-/AOh14Ggw8v_3Nm6OdwtEAvK5LDfmq7iRYwxqlDw2tmt8dw,"A minimalistic task management and scheduling app with an beautiful interface and great widgets as well and packs a punch in terms of free features. Any.do does not allow sublists and allows only one level of subtasks to ensure simplicity, but compromising power. I have also found it quite cumbersome to add a task, put it into the right list and add a label to it. This is a long drawn out process which takes so much time and completely ruins the rest of the simplicity the app has.",3,4,4.15.1.5,2019-04-11 02:27:20,"Hi Sujay, thanks for the feedback! Any.do supports a minimalist design which leaves things at surface level. This is why we do not plan on adding more layers for the time being. As for adding tasks, you may add them directly to a specific list from the All view or the Grid View :) For instructions, reach out to customers@any.do.",2019-04-15 11:04:42,most_relevant,com.anydo +Adnan Dedhawala,https://lh3.googleusercontent.com/a-/AOh14Ghza_zGxkV3ew2mIiw9llAEdcirnDF4SJksds5R6Q,"The is good and is really helpful when i plan my day. I have problem with the widget that has task and calender,problem is if i had a task that had to be done yesterday and i schedule it to do today,it doesnot show on calendar tasks but it shows in task list. If that could be solved experience using the app will improve",3,49,4.13.0.14,2019-01-19 05:24:46,"This is very odd! We highly recommend you submit a bug report in your app via Settings - Support, so we can get to the bottom of this for you.",2019-01-28 15:36:29,most_relevant,com.anydo +Mehmet Faik Demirez,https://lh3.googleusercontent.com/a-/AOh14GjOSEjVL-KY8pwZTqVP7hTPzccjjLGVFJvhulm2,"Very useful app if you are in the habit of forgetting things. But it has one major defect. If you have set up a recurring reminder and if you miss one instance of that reminder, further instances will never show up. They are gone forever. I had to pay a penalty fee for late payment into my credit card because of that ridiculous bug.",3,3,4.15.5.4,2019-09-11 07:26:55,,,most_relevant,com.anydo +Trevor Trinkaus,https://lh3.googleusercontent.com/a-/AOh14GjMuOp5YpplElDbCbYwiec2w3QYL6ioFziUXIXT3UE,"Update to my original review -- to clarify, I'm saying that in previous versions you could choose which list to put the task under when doing a quick add of it via the ""+"" widget on home screen, and same for adding it from the bottom quick bar in the app. In the current version, it doesn't allow you to choose the list when doing a quick add. Your reply to my review is describing the regular (long) way of adding the task. I want to be able to choose the list when quick adding from the ""+"" widget!",3,14,4.15.8.11,2019-09-27 00:18:21,"Hi Trevor, please note that in order to choose which list you want to make a task under, all you have to do is go to your task view, tap the grid view icon in the top left, select the list you want to make the task under, and make a new task! +If you have any further questions, please let us know at Customers@any.do 😊",2019-09-26 16:53:49,most_relevant,com.anydo +Aaron De Giorgis,https://lh3.googleusercontent.com/a-/AOh14GhcWpD7hBi3mLTJd_wIuIb-hvbUnZGVRUrZZZyApg,"the simple layout makes navigation easy and intuitive. I decided to try this as an alternative to Google calendar and whislt its integration of AI assistants and task tracking seems very good, as a calendar I have to say im not impressed. Looking at the calendar from a months perspective doesnt show at a glance which days you have something happening, rather, below the calendar is a schedule view which shows you what events you have which i find confusing. Would be nice to view by month.",3,4,4.15.3.4,2019-05-26 10:47:29,"If you would like to see color tags for events on the monthly view, you can view it on our widget https://support.any.do/widgets/ :)",2019-05-27 14:36:27,most_relevant,com.anydo +Joe Lam,https://lh3.googleusercontent.com/-imKfsalpNYQ/AAAAAAAAAAI/AAAAAAAAAB0/AAKWJJNc2XmkFMxkIQL9vgJaNps2DDdTgg/photo.jpg,"Not sure why but sometimes when I make an edit on one of the items on the list, next time I open the app the changes are not saved. Happened couple times already and I'm sure I clicked the check mark to save the item before leaving the app. A bit annoying",3,6,4.10.3.4,2018-10-08 21:43:21,This is strange behavior. You may be experiencing syncing issues. Please submit a bug report through your app by going to Settings - Support so we can check this for you.,2018-10-09 14:11:37,most_relevant,com.anydo +SHIVAJI K. MOITRA,https://lh3.googleusercontent.com/a-/AOh14GhRpPrH4unlF47aYan7Bb6J6JQJfqsJTSVT2T_RGw,"It does not remind with a pop up notification continuously for consecutive days even when the dates are saved and the notifications are not on the home screen and therefore often missed. Moreover, it does not remind about the task the whole day even when no particular notification time is noted. This App. is not dependable.",3,4,4.15.2.1,2019-05-08 16:53:59,"This is very odd! We highly recommend you submit a bug report in your app via Settings - Support, so we can get to the bottom of this for you.",2019-05-12 07:00:44,most_relevant,com.anydo +estrella mardones,https://lh3.googleusercontent.com/a-/AOh14GhN8_wwEKftgb4x63RnAsVVufB4bP3fBp579LD7Sg,"I don't like a widget with the monthly calendar plus events plus task. That monthly calendar is too big and unnecessary. I would like to have the option to watch a widget just with the date, the events and tasks. Something SYMPLE: As if we can watch it in the application the same would better in the widget. When they change it I'll give the 5",3,0,,2019-07-30 14:35:32,"Thank you for the feedback! We've designed the calendar in both the widget and the app in order to maximize productivity. For now we have no plans on changing it; however, we will forward this to our dev team for consideration.",2019-07-31 08:58:22,most_relevant,com.anydo +Dr Jogi Bhaskar Patra,https://lh3.googleusercontent.com/a-/AOh14GjolLDI17CGFWB5LLBvuxJdyOeIwRebHII400yc9Q,"Recurring tasks an essential feature is available only in premium. Premium is not available for one time purchase. monthly payment is way too much for an Indian. it got to be affordable with one time payment for everyone to use. may be some one time payment option for different features like recurrent tasks, location reminder and paid themes would have been made it accessible for many.",3,34,4.15.4.11,2019-06-16 18:40:51,"Our standard recurring reminders are available to all of our users, you can learn more about here - https://bit.ly/2GAP1JW. To learn more about our special Premium offers, please reach out to us at Customers@any.do :)",2019-06-19 07:23:42,most_relevant,com.anydo +Christopher Keffer,https://lh3.googleusercontent.com/a-/AOh14GgegCn9eVwlxzDULLL_TDtSnAx_K1-pI-gN6x5Y9w,"Has Any.do changed the way Moment works? Five stars for me until recently, and not sure if it's associated with change to Android 10 or a change with the app. I used to have Moment pop up daily. I no longer get Moment, nor continued pop-up on screen reminders for tasks throughout the day. Just looking for clarification that these are no longer features in the non-paid version.",3,9,4.15.8.11,2019-09-25 19:39:10,,,most_relevant,com.anydo +Kevbo Jones,https://lh3.googleusercontent.com/-dTneVD3g3kY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPFUkrYAPddNnKIBfW3xE1RmdlWDQ/photo.jpg,"I have a problem. The ""I want to..."" bar at the bottom is covering up the ""someday"" subsection of tasks. Please fix this.",3,0,,2019-12-28 05:25:28,"Hi, that's odd, please send us a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2019-12-30 08:17:01,most_relevant,com.anydo +Amrit Lamichhane,https://lh3.googleusercontent.com/a-/AOh14GhF-Cp7UhEnXoYG5eOdvEVJujtlMGiF9aJs-9ygng,Sticky notification bar should show task according to the up next time strictly rather its showing randomly.,3,0,4.0.11.5,2020-01-29 01:02:08,"It is showing tasks in the same order as in the app. If this is not the case for you, please submit a bug report via https://www.any.do/contact_form so our team can check it out for you!",2020-02-03 16:40:43,most_relevant,com.anydo +Ivy,https://lh3.googleusercontent.com/a-/AOh14Ghhd_dwoTVgDBJIrVKH_gcFri9a8ZjG_TQJJB2Q,It seems like it could be good but very disappointed that it's subscription based and that there's not a one time purchase option. Not sure if pro has this option but it also doesnt seem to have a history of completed tasks. Will need to keep looking.,3,0,4.10.6.1,2018-11-12 22:02:59,"Any.do is a service, not just a product. We continuously add features, keep information synced, safe 24/7, and provide Priority Support. Since Any.do offers more than a standard product, we chose a subscription as the best pricing for it, like similar apps on the market :) You can view/restore completed tasks by going to Settings - Completed Tasks.",2018-11-13 16:27:09,most_relevant,com.anydo +Ryan Gregory,https://lh3.googleusercontent.com/a-/AOh14GhCMbRgCt10pABz-vJBE19-wvTmJu49wekdPtUL_A,Fairly awful. Followed all directions on how to cancel the yearly subscription within 2 days of starting my free 7 day trial. Charged on the 7th day anyway. Repeated requests to resolve the issue have been unanswered by the developer. Chose to go through Google Pay for refund. Thanks Any.do! This will not be my last review. I have much time on my hands now since your scheduler doesn't work!,3,4,4.15.2.1,2019-05-13 12:59:46,"From checking with our Support Team, we can see that as soon as you requested a refund, a full refund was issued from our side. In your first email, you asked for cancellation instructions, and those were provided to you accordingly. If you need any further assistance, you are welcome to reach out, and we will be happy to help.",2019-05-14 07:31:06,most_relevant,com.anydo +Ankush Malaker,https://lh3.googleusercontent.com/a-/AOh14GiC8nO9aQAY6JXuqlwuHgywon_Zrn9uGDZtcJ3q9Q,"I really need a feature to work properly, and that is the calender widget. Once I fail to complete a task today, it sounds show up in the next days list in the calender, but it doesn't. Please add some option to fix this. Then it'll be worth the 5 stars. The rest is good",3,0,4.10.1.4,2018-10-23 19:16:57,,,most_relevant,com.anydo +Immy Wimee,https://lh3.googleusercontent.com/a-/AOh14GjcZ84gl3o9hrsmwhrr6U6fj7_b-Bda2UEd6tTM,"My notifications bar is telling me i have no tasks today even when i know i do which is kind of frustrating. Plus when i log into the app, my tasks aren't in chronological order for some reason after i set times for them at the beginning of the day. Other than that, i think it's a fab app and i love the little pop ups that happen at the beginning of the day and when a task needs to be done!",3,1,4.15.5.4,2019-08-29 09:29:26,"Regarding the notification bar, this is odd! We highly recommend you submit a bug report in your app via Settings - Support. +Note that our tasks are ordered chronologically only on our Calendar View, while on our Task View you can drag and drop tasks to anywhere you like :)",2019-08-29 14:20:16,most_relevant,com.anydo +Jordan Waka,https://lh3.googleusercontent.com/-2SDTCOwZwYc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPEjZZ_YWqM1T6Aj-pV7BveJZ8Nsg/photo.jpg,"Pretty good app but nothing crazy that I can't achieve with Google calendars already if there is I'm not in need for the feature atm. I've really been looking for the feature to set a reoccurring remind with a full custom option for say repeat every 43 days or repeat 3 months, then 4 months then 3 then 4 etc this sorts of features would be amazingly handy as you would then not have to set up a new reminder for each date after having worked them out manually. If you add this feature please LMK",3,0,,2019-09-16 22:41:36,"Thank you for your feedback. We truly value our users input, and our Product team is always adding user suggestions to our roadmap. The suggestion you posted has already added to our UserVoice forum, and you are welcome to vote for it here: https://bit.ly/2mol4oZ +The more votes a suggestion gets, the more likely it is to be added in the future!",2019-09-19 16:22:12,most_relevant,com.anydo +Flausbert,https://lh3.googleusercontent.com/a-/AOh14Gi6JxOBGV-JorfVnt9eTOb57-t--sB1Z7WWvPj173k,"We are missing a chat feature AND notification when a task is changed / completed / modified in shared lists. Any.do is pretty good for my personal use but even though we are both premium, we don't see any possibility of interaction with the - kind of interaction Wunderlist provides not just tiny notification WITHIN the app.",3,7,4.15.8.11,2019-10-08 09:00:12,,,most_relevant,com.anydo +iangough,https://lh3.googleusercontent.com/a-/AOh14GjRytoD2O5v6twxoyDCrC2uks2avcLv-Ys2lbYR3A,"A good app, but a reoccurring price model is not the way forward. I would like a one off charge. Around 5 euros would be about right, so considerably over priced in todays free app market. You would probably have more revenue in total by charging 5 euros",3,4,4.10.6.1,2018-11-12 11:01:48,"Any.do is not only a product but also a service. We are continuously adding new features, keeping your information synced and safe 24/7, and providing Priority Support for any need you may have. Since Any.do is offering much more than a standard product, we have decided a subscription is the best pricing for it, like similar apps on the market :)",2018-11-13 16:24:36,most_relevant,com.anydo +Sherri C,https://lh3.googleusercontent.com/-NHKUvYhCq4A/AAAAAAAAAAI/AAAAAAAAACw/AAKWJJMI8J_MLfD6Qw7-5WYv9uTkhf-oIA/photo.jpg,"I have been using this app ever since I switched to an Android phone 5-6 years ago, and I have liked it for the most part. However, the recent addition of the ""focus"" button in the pop-up reminder bar is annoying. Focus is only available in the premium version and there's no way to turn it off. Time to shop for a new to-do list app.",3,14,4.15.8.11,2019-09-26 15:25:22,"Please note all of the app's features are inherent to the design, therefore we are not planning on removing any of these features, premium or not. Furthermore you are not obligated to use this feature. We are sorry to see you go, but we hope you can find an app that better suites your needs!",2019-10-02 15:16:45,most_relevant,com.anydo +Cheedance,https://lh3.googleusercontent.com/a-/AOh14GikneUM6CvF9ehUw2PXTe__g2XikFmhVSWhdGyXkA,I'm giving this app 3 out 5 because there is a really annoying behaviour when you're adding a quick note and if you by mistake tap outside the text box (which one would do on the go) your note is erased and you need to start again. I'm considering uninstalling it because this happens almost every time I add a note which means that it takes me twice the time. Please at least keep the text and don't erase it in case of an accidental tap outside the box. Thanks,3,12,4.15.8.11,2019-10-04 07:11:32,,,most_relevant,com.anydo +Leslie Brannon,https://lh3.googleusercontent.com/a-/AOh14Ggq_7gXewt5UlHvJu2tnuVIFrcNngq9eATEoEfRZsc,Simple and effective! although charging for color themes is ridiculous. I understand getting charged for the other add ons but color shouldn't be extra! The widgets are white and black see thru which makes it hard for me to see. little dots aren't helpful.,3,1,4.12.0.5,2019-01-23 01:00:11,,,most_relevant,com.anydo +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I already have a subscription, it's ridiculous that It notices I already had a free trial so it obviously knows my account but its not logging me in with my premium subscription. To top it off I can't ask customer service nothing because it's not an option unless you have the premium that's ridiculous.",3,3,4.10.2.6,2018-09-12 16:23:35,,,most_relevant,com.anydo +Joyce Paul Siamak,https://lh3.googleusercontent.com/a-/AOh14GjOPT5heQcG4mN9aXyoLEOXnbW0UPrQaJm8HLZY,"New User experience just logged in. pretty simple. started a list. saw that you could categorize them as personal or work. since i had typed all my tasks in the same place (first experience landing). i tried to move some of these tasks to the ""work"" section. couldn't. i can't tag them either. i have to retype the whole thing! Bummer.",3,8,4.14.0.4,2019-02-05 17:41:43,"You can simply drag and drop or change their list from the task's menu :) You may find more details, here: https://support.any.do/tasks/",2019-02-12 14:40:02,most_relevant,com.anydo +beth ardron,https://lh3.googleusercontent.com/a-/AOh14GhKIg9pXNcSdosXfaFK6nqY7S0b5CYhh1qz6OPBVg,"I used to like this app, it is simple and easy to use. but lately it keeps deleting subtasks, or not saving correctly, so I go back to do thing I needed help remembering, it to find it gone. it also could be a lot easier to add a reminder notification",3,0,4.10.7.3,2019-08-09 16:40:38,"This is very odd! We highly recommend you submit a bug report in your app via Settings - Support, so we can get to the bottom of this for you.",2019-08-11 04:18:10,most_relevant,com.anydo +aditya jain,https://lh3.googleusercontent.com/a-/AOh14Gg4eXUYrfN7FJuRg1CKIetQnqKzKdLAtQhvrbi7Hmc,"App looks great. UI is wonderful and the feature it have , they all are useful. Only problem because of which I uninstalled the app was simple and basic features like recurring task creations are made premium. Switching to tick tick for the same reason.",3,9,4.10.6.1,2018-11-13 18:14:08,"Standard users can create recurring tasks for free. You can have a task return every day, week, month, or year. Only advanced recurring tasks are part of our Premium feature-set.",2018-11-14 16:22:31,most_relevant,com.anydo +Arudhran Thirumurugan,https://lh3.googleusercontent.com/a-/AOh14Gj4mqOBDBnDE6kV26DkedBfQL8vZZ6DeFoFYrUKILY,"Nice app overall! It does what it promises. I have two issues with this. 1. The widget seem broken. Previously, when I click on the task and mark as complete. Now it takes me to the task management page and there is no way to mark that as complete from there. I have to open the app to do that. 2. There is no way to sort tasks based on date. As a user, when I open a task list, I should see all tasks that are coming up so I can plan accordingly . I have to manually do that when I mark as complete.",3,0,4.15.5.4,2019-08-16 18:31:05,"This is very odd! We highly recommend you submit a bug report in your app via Settings - Support, so we can get to the bottom of this for you.",2019-08-18 04:22:12,most_relevant,com.anydo +Heloisa SP,https://lh3.googleusercontent.com/a-/AOh14Gg-4hPr8qBvjyogVzXBCVWA90-bkPTKQoshGnG72A,"I don't know why this app is an ""Editor's choice"" there isn't any special graphics and you need to be a premium to change a color. Keep Google give me all this for free! I was just looking for a different to-do list where I could change the size of the letters.",3,1,,2019-03-22 11:17:52,,,most_relevant,com.anydo +Brent Barnhisel,https://lh3.googleusercontent.com/a-/AOh14GiXMzpgaP9u_ENhy6za6I0Zjifa5zApDY7BRpmQRw,"Great for daily list. Used to use the grocery list. Used to. Had to turn it off due to spam. If it continues, I'll uninstall the app. UPDATE/CLARIFY: IMO, spam is getting items added to my grocery list that I don't want & never buy. It was the app telling me ""we've added XYZ to your grocery list""",3,11,4.15.4.11,2019-06-23 12:27:39,"This is very odd! We highly recommend you submit a bug report in your app via Settings - Support, so we can get to the bottom of this for you.",2019-06-24 07:49:14,most_relevant,com.anydo +Guy Swift,https://lh3.googleusercontent.com/-LdZEslG3S_g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM_3nzi-z4_Qtg1USypg6hJ4iExaQ/photo.jpg,Please can we go back to entering the time with numbers. The clock thing is fiddly and pointless. It seemd your developers don't have enough work. Also when I select this evening I have to select the date before messing with the time which makes no sense.,3,5,4.12.0.5,2019-01-08 12:50:53,We use Android's native time/date selection screens for our app. Therefore we are unable to modify these because they are built into the Android OS. However we appreciate your feedback regarding these screens.,2019-01-08 16:08:39,most_relevant,com.anydo +vorcazm,https://lh3.googleusercontent.com/a-/AOh14GiRPjy7P_b_qTcYlLghV6_J_kJYmS30sP0vook6cw,This app refuses to let you set a reminder for any day other than the current day without buying premium. i want to remind myself to workout every Wednesday but it's monday so I'm only allowed to schedule reminders on Monday. Guess I'll just get reminded on monday to workout on Wednesday. Useless,3,1,4.10.9.0,2019-01-04 03:52:01,This sounds strange! You should not be restricted from setting a weekly reminder for any day even as a free user. Please submit a bug report in your app via Settings - Support so we can look into this issue.,2019-01-07 12:48:33,most_relevant,com.anydo +Katya Roudneva,https://lh3.googleusercontent.com/-F2uk7ApR6pY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOtwXiCHYRP0ZlrCR60F1g-Xtqvnw/photo.jpg,"Notifications are annoying and not customizable (was getting them for not having any tasks for the day). I turned off notifications via my android settings and am still getting impossible to turn off pop up notification that blocks whatever app I am on. App is fine otherwise, but not for me.",3,8,4.10.2.6,2018-09-18 16:11:31,We're sorry for this Katya! You're welcome to reach out to customers@any.do so our team can help solve this :),2018-09-20 00:11:23,most_relevant,com.anydo +Edvinas Masliukovas,https://lh3.googleusercontent.com/a-/AOh14GhevPgtSg7hmmQ8qoz0LvUy4Bsoky_bPQ3sGCu5,A good app but does not show full month tasks and that makes it hard to plan ahead or look back to previous events,3,1,4.15.9.6,2019-10-12 07:38:21,"Hi, that sounds a little strange, please send us a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2019-10-16 08:22:17,most_relevant,com.anydo +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,The task add bar blocks the list if it's too long with no way to scroll down. Also would like an option to have completed tasks to disappear not just sit there crossed out taking up space. And make it easier to share lists with others. Should be able to accept invites in app not over email.,3,5,4.10.9.0,2018-12-15 23:39:34,"You can clear your completed tasks by shaking your device or pressing the ""x"" icon to the right of them. You also can accept shared list invites in your app! The email is just an alternative way of accepting. Regarding the Quick Add bar: please submit a bug report in your app via Settings - Support so we can look into this for you.",2018-12-18 14:23:03,most_relevant,com.anydo +KUMAR GAUTAM,https://lh3.googleusercontent.com/a-/AOh14Gj2Zpk53iQY_X1Dx6VXDhAy40YGMzw80DX42mS346M,"App UI is really good, i have tried almost all the top task list apps and like any.do best however would like to have Heisenberg matrix added to organise my tasks. That is the one thing stoping me. I want the quadrants features in this app and i would be absolute member of this app until forever.",3,0,3.4.12.8,2019-07-04 03:36:34,Thank you for your feedback - we appreciate the suggestion! We are forwarding this over to our dev team for consideration 😊,2019-07-07 13:11:19,most_relevant,com.anydo +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I paid for the Premium version and had expected it to work. Unfortunately, I've been missing quite a few reminders because somehow they stopped working. The notifications didn't show at all. If this problem persists, I want to cancel my monthly subscription.",3,7,4.14.1.2,2019-02-27 07:44:20,,,most_relevant,com.anydo +Sebastian Josephson,https://lh3.googleusercontent.com/a-/AOh14GiqjqVnbzNKjcghPjMutza5V3FxDCBmx1QGhIKBqw,Its ok. Looks great. Sends reminders. A couple of features available in free version. ★Cannot add hyperlinks ★constant push to upgrade [additional comment in regards to developer respons ] : How can i add hyperlink in notes? seems like it can only be stored as text,3,0,4.9.3.6,2019-03-16 03:46:04,"95% of the app is completely free, unlike similar apps :) Only 3 features are available for Premium users only with a few more being partially restricted (https://bit.ly/2SYk9tM). The Premium screens only display when trying to use a Premium feature or when first logging in as a standard user. Hyperlinks can be added in the notes section :)",2019-03-16 00:37:07,most_relevant,com.anydo +Jimmy Mullins,https://lh3.googleusercontent.com/a-/AOh14GhjOpyGXfJbfzo7I4yC2U49ZUyf8H9ttI1ofWA8DQ,"Love the app, but it's almost useless on my Galaxy View because the app switches back to portrait mode when adding a task, for a tablet that sits stationary in landscape mode, it just doesn't work. love the app on my phone and the website is nice too.",3,1,,2019-05-16 12:05:29,Thank you for your feedback! We are working on adding support to all screens on landscape mode :),2019-05-19 14:37:43,most_relevant,com.anydo +elias ziade,https://lh3.googleusercontent.com/a-/AOh14Gjk2JRC5xSWu9TtGp2jrEYTGkrog7kH9KjNxOHEyQ,"Missing basics Clearing the completed tasks is like erasing history. Instead of having the completed task stack up and encumber the whiteboard, each one of thr completed tasks should appear on the calendar (as completed or as initiated on /completed on, in Gantt chart format) This is really basic guys",3,9,4.15.3.4,2019-05-27 06:19:17,Thank you for your idea! We've forwarded it to our product team for consideration. And if we see more support for a similar feature from other users we'll definitely look into adding such functionality. :),2019-05-28 08:19:45,most_relevant,com.anydo +Michal Onufrák,https://lh3.googleusercontent.com/a-/AOh14GjPIvBsTpZEUUWIS-CBpXPaGA2o_3qWfZF4rwO0vA,Great feature is reminder to reorganize missed and undone tasks. But ui of the app looks confusing to me. I cat find a way to add tasks easyly enought gor me. i dont know what next. google tasks are simplier and todoist have limited features in free version.,3,6,4.12.0.5,2019-01-17 11:48:34,"Hi Michal, to add tasks simply use the blue plus button or the quick add bar. You are welcome to check out our Help Center (https://bit.ly/2sO10ft) Youtube channel (https://bit.ly/2HeafzE) and blog (blog.any.do) for any questions. Also feel free to reach out at customers@any.do",2019-01-28 15:30:54,most_relevant,com.anydo +Fernanda Pelaez,https://lh3.googleusercontent.com/-GVkLuH3k4WQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMGyt10YS4ayQsgWV9qViLJzRmocw/photo.jpg,"I'm new to using Any.do, so I'm still really unfamiliar with the app. I'm so far finding that the free version is quite limited... I wanted to try the free version before doing the free trial for the premium, to compare the differences. The main point I'm unhappy with, is the fact that the reminders don't make any noise, so if you're not looking at your phone, you never realize you're getting a reminder. Is there a way in the free version to put a sound to the reminders?",3,20,4.15.4.11,2019-06-25 08:44:58,"You should hear sound when receiving an Any.do reminder! We highly recommend you submit a bug report in your app via Settings - Support, so we can get to the bottom of this for you.",2019-06-30 04:15:01,most_relevant,com.anydo +Pablo Garza,https://lh3.googleusercontent.com/-B_VxxalyB7A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMcOyTehUlEkdnczr8M4uUyW1Bj1A/photo.jpg,it's a great app but I'm not sure about the security and privacy of it. I like apps that mention in the description itself stating that they don't collect data from users. a little info on that would be nice to see in the description thanks,3,5,4.15.1.5,2019-04-02 23:24:59,"Hey Pablo, + +You are welcome to Privacy Policy here - https://www.any.do/legal/privacy-policy. +If you have any questions regarding it, please reach out to us at customers@any.do :)",2019-04-03 08:23:19,most_relevant,com.anydo +Manoj Sharma,https://lh3.googleusercontent.com/a-/AOh14GjqRDhB-n7_8difylfaeM5_yTej1ltlzoNwAmPEXw,"The app doesn't have audio alerts, it only displays a notification after you unlock your phone. Please add audio alert feature as well, so that you can get an alert even when you're not using your phone.",3,1,4.10.6.1,2018-11-24 13:50:32,"You should be able to have audio alerts along with your notifications. If this is not the case, then we recommend you submit a bug report via Settings - Support, so we can look into this for you.",2018-11-28 15:57:16,most_relevant,com.anydo +Monique Cantone,https://lh3.googleusercontent.com/a-/AOh14GhXuZTB-ByoxBI_-xMqN_mKhc-b81-LRaF1tPmOUQ,"I want to like it more but whenever I set an event in the calendar it always starts it the following day. for example, if I set an event from Thursday to Sunday it saves it as Friday to Monday....",3,2,4.14.1.2,2019-02-20 19:52:47,Sorry for this! Please submit a bug report via Settings - Support so our team can look into this for you!,2019-02-20 23:02:01,most_relevant,com.anydo +Beery Holstein,https://lh3.googleusercontent.com/a-/AOh14GgEPZtM3WIWusWqaMmbpS4t-hQjDLmEhi9Peh1THQ,"If a task is due while the phone is off, you won't get notification after the phone is turned on. Also, snoozing a recurrent task changes the time for a the whole series.",3,1,4.0.11.3,2018-09-27 06:11:10,,,most_relevant,com.anydo +Angie Anderson,https://lh3.googleusercontent.com/-Um2ON068tdQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO-RscOUEFw7_WiSgaF1IeRYe1vCQ/photo.jpg,Any.do is great for list. But the calander app lacks. They have a new plan your day feature but the times dont show up next to the task on the calander. so not sure why you would bother scheduling task. I think Im going to find an app that allows list and an hpurly daily planner.,3,0,4.10.9.0,2018-12-22 19:24:57,"Any tasks that are given due dates for a specific time and day will show up in your calendar chronologically. If you are not seeing this happen, please submit a bug report via Settings - Support so we can look into this for you.",2018-12-23 13:24:04,most_relevant,com.anydo +user73o1u 81716,https://lh3.googleusercontent.com/-A0K8u4puW9M/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP-EhUhRDFVxKAyZ7UeXtjFksFGug/photo.jpg,It's almost perfect. The widgets on homescreen need more options. A list of events for the day instead of only the monthly view is a necessity. Add it and I'm sold!,3,25,4.10.3.4,2018-09-30 10:26:07,,,most_relevant,com.anydo +Lesley Shelton,https://lh3.googleusercontent.com/a-/AOh14Gj53PImXxk3mDGpUOUBFyUy_f5AqELGZavOXypXNA,"Where is the priority setting? My app interface doesn't match the video you created for new users. I liked everywhere and can't find any any to prioritize tasks, only set a time for a reminder. Please provide up to date instruction for setting priorities and other details for using the app. Thanks.",3,2,4.15.4.11,2019-07-07 20:49:08,"Thank you for the feedback! We are going to update the video in the next couple of weeks with a new version. You can find all of the features in our Help Center and here is the direct link to our color tags, which you can use to prioritize your tasks: https://support.any.do/color-tags/.",2019-07-09 13:28:55,most_relevant,com.anydo +Paula Boyer,https://lh3.googleusercontent.com/a-/AOh14GgX57caZps5kTNb35hqAbDVcPCE4pEZOn5dz6y6VBs,I accepted a 14 day free trial but changed my mind just straight away. How do I cancel? I go into my subscriptions in Google play but I do not find this app among my subscriotions. I suppose it will turn up there only when the 14days free trial is over. Pleas confirm how to cancel. Thanks//,3,0,,2019-10-22 06:59:01,"Hi Paula, in order to cancel your trial you will need to cancel your trial through the Play Store, you can do this by going to the Play Store, then the Any.do page, and cancel your subscription there.",2019-10-23 07:33:28,most_relevant,com.anydo +Rigved P.,https://lh3.googleusercontent.com/a-/AOh14GjCFlCdo-BxwRtSoYcHoHoA8N_OV5FnFEMDPLhK,"Has many nice features but they lack polish - 1. Has notifications like TickTick but unlike TickTick, you'll have to unlock the phone for you to see it. 2. Has a grocery list where you can add things but you cannot add quantity.. And many others...",3,0,,2019-09-25 15:20:09,,,most_relevant,com.anydo +L OBC,https://lh3.googleusercontent.com/-55L5d4G0O-k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPNkKD_NpbJb5GjtxLUOVzIDb5LkQ/photo.jpg,The app was reccomended by my CBT therapy group but I do shift work and it's not friendly for those with rotating schedules. Great for 9-5rs who have single event tasks or those who tasks always repeat at the same tone each week or month. I need my tasks to repeat on a 4 week cycle and it ended up giving me all my tasks together each week.,3,0,,2019-10-03 21:59:02,"Hi, if you wish to set recurring reminders, you can! Just tap the task, press 'Add reminder', and select 'Repeat'. If you are talking about recurring events, please note that all events sync with your native calendar! If you want to learn more, feel free to visit our Support Center here: https://support.any.do/recurring-reminders/",2019-10-04 08:58:07,most_relevant,com.anydo +gowtham,https://lh3.googleusercontent.com/a-/AOh14Gi4xccO1YOayCmKw3jAB9Fp1GcqzU7bb9mZ9qFk6w,Needs premium subscription for dark mode. That is so greedy. Dark mode is a basic requirement in 2019. Charging for different themes is understandable but for dark mode? Edit: i have uninstalled your app for the moment. Thank you for your consideration. I'll change my ratings from 1 to 3 for now.,3,4,4.15.8.11,2019-10-04 09:23:04,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. However there are some premium only features, that can help you be even more productive! That being said we truly value your feedback, and we are going to review a free black theme sometime in the future.",2019-10-04 08:36:43,most_relevant,com.anydo +Charimar Valentin,https://lh3.googleusercontent.com/a-/AOh14GjssDBLCJ0cBhuManud8w1ibQul4w9OrCjyBCsqGQ,Is just me or did this app kind of just get more complicated after the last update? I'm not sure what it is about it now that I don't appreciate but I really liked the last version much better... It seems too simplistic and it's still buggy...,3,25,4.10.3.4,2018-09-30 05:31:37,,,most_relevant,com.anydo +Andrew Fionik,https://lh3.googleusercontent.com/a-/AOh14Ggy7S4fy7-nxSmzEOO-4ovBHvFK6f8-xGOJY3VOGA,Many features are locked and require a subscription. Did not want to pay without trying. And even given the limitation the trial period is limited to 1 week. This is too harsh. Uninstalling.,3,9,4.10.4.1,2018-10-10 13:01:53,"95% of our app's features are absolutely free, including all of our core features. We never require our users to upgrade to Premium. We also felt that one week was sufficient time for a user to experience our Premium features and make a decision whether or not they want continue with Premium, just like similar apps. :)",2018-10-14 10:03:51,most_relevant,com.anydo +Rocky Herring,https://lh3.googleusercontent.com/a-/AOh14Gi0RyYrT7oN7Sdn0GZkXK1JTgdV7jHOnTuLaGnQ0g,I am a paid subscriber. I love the to do list. The calendar is limited and leaves much to be desired for me. But I didn't get it for the calendar. Much better alternatives on that front.,3,2,4.10.6.1,2018-10-30 21:57:58,,,most_relevant,com.anydo +Ciarán O' Connell,https://lh3.googleusercontent.com/a-/AOh14GiiYI_XJoOFl74ckDTlX7LB0XCzty3zkORviaHWFg,"I was under the impression that you could connect the app to your google assistant, and add things to your shopping list vocally, but I can't seem to figure it out how to sync google assistant to Any.do... Can anyone help me please?",3,1,4.15.2.1,2019-05-05 20:36:30,Our Google Assistant integration is coming very soon! You are welcoming to follow us on social media for updates :),2019-05-06 07:01:29,most_relevant,com.anydo +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I love this app, but recently it keeps logging me out randomly. I have no way of knowing this has happened, so it means I miss alarms, which is frustrating and defeats the object of setting them.",3,2,4.15.1.5,2019-03-25 18:40:15,"This is very odd! We highly recommend you submit a bug report in your app via Settings - Support, so we can get to the bottom of this for you.🙂",2019-04-03 08:04:54,most_relevant,com.anydo +Duncan Granger,https://lh3.googleusercontent.com/-sObvG-8aZ4E/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPIoIbiVKgXjFKgSNkN7LbXeeeGMg/photo.jpg,Basically a great task list. I would have liked to buy the app but it's subscription. A number of comments within feedback about no refunds which I don't take too seriously however makes me nervous.,3,0,,2019-03-11 15:26:14,"Indeed, we offer both yearly and monthly subscriptions which can be easily cancelled and refunded in full if requested within the appropriate time period :) Our refund policy is very transparent and can be found both on our TOS and our Help Center: https://support.any.do/cancellations-refunds/",2019-03-17 13:06:12,most_relevant,com.anydo +Aymia H,https://lh3.googleusercontent.com/a-/AOh14GifmycTwTe9B9D-Kki_VLz6HkQtQXq9nuO4vDm_sw,I set an event and told it to remind me an hour before. It didn't remind me and I ended up missing my doctors appointment. Not good.,3,0,4.15.8.11,2019-10-24 08:03:00,"If you're experiencing issues with your reminders, we highly recommend you take a look at our Help Center Troubleshooting article on this: support.any.do/why-did-my-reminders-stop-working/ or contact us directly by submitting a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2019-10-27 09:07:05,most_relevant,com.anydo +K Speagle,https://lh3.googleusercontent.com/a-/AOh14GiAEMV89cecZ5SozAbZ_TyLvFGm4AXLzTnXnreW,"I loved to use this app until the grocery category just vanished, list and all! It's gone and I can't retrieve it. That organized grocery list was the best thing about this app. How can I get this category back?",3,0,,2019-05-14 20:52:54,"This is very odd! We highly recommend you submit a bug report in your app via Settings - Support, so we can get to the bottom of this for you.",2019-05-15 08:32:48,most_relevant,com.anydo +Anna Atabekyan,https://lh3.googleusercontent.com/-4xBsVQV1lqE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMCvgwzv4o93gvsHZYPlfLRPS6eHw/photo.jpg,First impression is sufficient but not excellent. There are no settings for applying priorities to tasks and I couldn't find also a setting for repeating tasks (daily or for certain periods) for specified hours (from 17:00 - 20:00).,3,1,4.15.3.4,2019-06-17 07:47:48,You can drag and drop tasks for prioritization as a standard user. Premium users can also use Color Tags. You can learn more about how to create recurring reminders here - https://bit.ly/2GAP1JW :),2019-06-20 07:31:38,most_relevant,com.anydo +Henrique Baqueiro,https://lh3.googleusercontent.com/a-/AOh14GicuaFAzAXsXGHoYuPwxaeHaMhzExX1i946yurrbg,"There is an annoying bug: in the calender widget, the day is not refreshed. It shows always the day the widget was created and I have to manually select the current day to see the tasks. Please fix it and I give 5 stars.",3,4,4.14.1.2,2019-02-27 15:45:48,,,most_relevant,com.anydo +John Casanova,https://lh3.googleusercontent.com/a-/AOh14GjV3i23JadvxIv6I4-sokkFOPQaKMlxnKx3Wqjw,"Great app, but why can't it show dates as mm/dd/yy or dd/mm/yy?? It would be a great asset to have! If you add this on an upcoming update, will download again and keep (Currently uninstalled)",3,0,,2018-09-16 18:38:56,,,most_relevant,com.anydo +A.J. O.,https://lh3.googleusercontent.com/a-/AOh14GjKrHARPCBVSbreoOoctJImYugGICLwb3quixwMFQ,"I used to love it, but now every time I want to add any tasks it asks for speak text, which when you're trying to discretely add a reminder is offputting. Fix that and you've got a great app",3,0,,2019-08-25 20:07:16,"This is very odd! We highly recommend you submit a bug report in your app via Settings - Support, so we can get to the bottom of this for you.",2019-08-26 04:08:02,most_relevant,com.anydo +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"App is getting more and more annoying. Additional features are forced on you and it lost a lot of its original functionality, which was why I bought it. Most probably I won't renew my subscription.",3,13,4.11.0.18,2018-12-28 15:35:57,"What functionality do you want that we no longer support? We haven't removed many features in recent updates, and we'd be happy to hear what features you'd like to see from us going forward.",2018-12-30 16:17:35,most_relevant,com.anydo +Matt C,https://lh3.googleusercontent.com/a-/AOh14Gj5QhafzFphQ4Rsq4VJmN4wREIr0tk_M9NJ6HFVLA,Full of promise but the lack of word wrapping means task detail is hidden. Particularly bad for sub tasks where the font is also larger and therefore exacerbates the issue. If and when this is resolved I'll be able to use the app and give a more balanced appraisal.,3,1,4.15.5.4,2019-08-29 07:53:23,Thank you for your feedback! We've forwarded it to our product team for consideration. And if we see more support for a similar feature from other users we'll definitely look into adding it. :),2019-08-29 14:20:13,most_relevant,com.anydo +Danish Shaikh,https://lh3.googleusercontent.com/-nCh5OIDi6cM/AAAAAAAAAAI/AAAAAAAAEpc/AAKWJJN-wQnX6GZ7Buy4cgGDAJklOWw9HQ/photo.jpg,it does what it says and does it beautifully.... would have given it a 5 star if it would have been all free . but it definately makes the life easy would easily recommend it to my friends and family,3,4,4.12.0.5,2019-01-14 15:05:25,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. You can use Any.do for free for as long as you like.",2019-01-28 15:08:37,most_relevant,com.anydo +Julie Owe-Sinclair,https://lh3.googleusercontent.com/-Ftbqs_6i860/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO4oV8s6ta5VT_yvgM9u8OlisoZ1w/photo.jpg,love this app but after not using it for a couple of months everything has disappeared! anyone able to help!!! thanks for the advice. just done that. waiting now for their feedback. as said I live this app!,3,2,4.15.2.1,2019-04-29 14:45:51,"This is very odd! We highly recommend you submit a bug report in your app via Settings - Support, so we can get to the bottom of this for you.",2019-04-28 07:47:48,most_relevant,com.anydo +David McKee,https://lh3.googleusercontent.com/a-/AOh14Gga33no7E0pfrxH4QNi69wZXICIiugaNY0CPuoL,"You guys are doing a great job. Only thing I wish for is that you had a separate morning and night routine section. Also, I think the grocery shopping thing should just be another app altogether. I don't use it, as I just use Amazon pantry and Walmart pickup.",3,0,4.15.1.5,2019-04-11 14:15:44,"Heya! You may disable to Grocery List feature from the app's settings :) As for routines, this is not something we support right now, but you're welcome to vote for it here: https://bit.ly/2GpDXPJ",2019-04-15 11:12:12,most_relevant,com.anydo +Henry Inman,https://lh3.googleusercontent.com/-38r2hdq8mvw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOilDDQNbJ-XT18zfoQ0uytfWlC5g/photo.jpg,"Nice widgets and user interface. I really wanted to use this app for the Moments daily review, but ALL lists are included in the daily review with no option to hide lists. This made the Moments feature feel clunky and unusable.",3,0,,2019-08-22 00:45:00,You can set your tasks on other lists to Someday or future date and then you won't see them on your Moment :),2019-08-22 09:33:13,most_relevant,com.anydo +Harish CG,https://lh3.googleusercontent.com/a-/AOh14Gi-z-t_4g2bW6cqv5CG4USCCaz3EzQtxBvLPFSu_A,Good but need some improvements. Some times completed task show in to fo list,3,0,4.2.1.2,2019-11-09 03:10:15,"Hi, that's strange, please send us a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2019-11-11 12:44:44,most_relevant,com.anydo +jay m. schell,https://lh3.googleusercontent.com/-9dZ8w1Ufh3g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOWpSLVBdRCFzQRU1Braj7DMgl68A/photo.jpg,the alarm ringtone cannot be changed and thats not good. The people that use apps lile these often work in a noisy environmnt and a full volume continous ringtone. A small beep does'nt work for them. Hope you consider,3,0,,2018-09-24 09:24:50,We offer several sound options for you to choose from :) Please see this article for instructions: https://bit.ly/2MXSwdj.,2018-09-24 19:25:38,most_relevant,com.anydo +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,This app description doesn't tell you this is NOT free. You get a free trial then pay about $15 a month. There's plenty of truly free apps that work just as good or better. Uninstalling!!,3,0,,2019-02-14 04:28:06,"Any.do is a free app which can be used without any obligation to upgrade to our Premium plan 😊 The trial period is an option for you to experience the Premium features for 7 days, entirely free! You are not obligated to register to the trial but be advised that the charge associated with it is for a yearly plan, not a monthly one.",2019-02-17 14:46:15,most_relevant,com.anydo +Jeff Rogers,https://lh3.googleusercontent.com/a-/AOh14GguMA-NLTzxebAVtAIi1c5D-qv_IV1Ppy1Dqr2GPLg,"Decent enough GTD app, but i only started using it after reading it will be integrated with Google Assistant soon. Seems like they've been touting this integration for months, with no real action or even updates on when we can expect this! Disappointing.",3,27,4.15.7.14,2019-08-27 04:26:49,"We are sorry to hear you feel that way! We are working on the Google Assistant integration and wish to release it as soon as possible. Right now we don't have a specific release date, you are welcome to follow us at Facebook and Twitter for updates.",2019-08-28 13:06:21,most_relevant,com.anydo +Kareen Neumann,https://lh3.googleusercontent.com/a-/AOh14GjaNPIwZ-2zXiWqRuoAzOCXicexM47JsGiK6rMA,App is glitching and when I open a calendar event it says no title and won't let me edit. Also changes the date to today mid editing of an event you're creating even if you already changed the date.,3,29,4.10.7.3,2018-11-28 23:21:55,This is strange behavior! We highly recommend you submit a bug report in your app via Settings - Support so we can look into this for you.,2018-11-29 15:52:05,most_relevant,com.anydo +Wayne McEwan,https://lh3.googleusercontent.com/a-/AOh14Ggtegy1gTsSjCD242Q9oTMDRiwdm7MrtQzmdw8_3w,"average. save your money re: subscriptions, wasn't what I thought it was, paid for the yearly, but hardly ever use it, there are enough apps on my Samsung galaxy note to fulfil the needs of this app.",3,3,4.15.1.5,2019-04-07 21:01:04,"We ensured that Any.do would be fairly priced by basing our cost on standard business models for the industry. If you don't want to upgrade, then you can continue to use Any.do for free for as long as you would like.",2019-04-08 07:48:49,most_relevant,com.anydo +Brian Summers,https://lh3.googleusercontent.com/-yF-FRXrva7Y/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPlC1VwEjTkAEOFnPRG0uJ5beoesg/photo.jpg,"I know one of the selling points was minimalism but it feels way too minimal to me. Any real, useful functionality is locked behind a paywall.",3,0,4.10.4.1,2018-10-20 01:38:26,"We provide 95% of our app's functionality absolutely free, including all core features. And, we never require our users to upgrade.",2018-10-21 11:23:43,most_relevant,com.anydo +K P,https://lh3.googleusercontent.com/-9XnRhl6747I/AAAAAAAAAAI/AAAAAAAANoY/AAKWJJPOyaIS5h4fqIQuGxD65vVenASqLw/photo.jpg,I wish it could use the Hey Google feature. It only works with Amazon Alexa right now. Price is cheap. So far so good.,3,1,4.10.6.1,2018-11-20 16:44:42,"We do support Google Assistant integration! Simply say ""Set a reminder for tomorrow at 3:00"" and Google Assistant will create an Any.do task with a reminder set for tomorrow at 3:00. Currently it only works to create reminders for the next 24 hours, however, we're working hard to expand this integration.",2018-11-28 15:42:34,most_relevant,com.anydo +Wes Garner,https://lh3.googleusercontent.com/a-/AOh14GjnQmOlWUJSPcQyqxOH4g8z7DnHKmwvI66mI-FTXw,"Seems like it may be a good app, but I uninstalled as soon as I found out you have to pay a monthly fee for recurring reminders (which is developed once and costs nothing to maintain)",3,64,4.15.5.4,2019-07-25 01:41:53,The majority of our app is free - there are only 3 features that are exclusively premium as well as a few limited features. Most recurring reminders are free and only a few advanced ones are exclusive to premium users. You can find more information about this in our Help Center: https://support.any.do/recurring-reminders/.,2019-07-25 08:18:59,most_relevant,com.anydo +bait ahaly,https://lh3.googleusercontent.com/-1Duzqa0HA-k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP0Tj9wU-gh5ui9hwrNcLD7C_YJKg/photo.jpg,It seems it is not designed for android users. It is look like Iphone application for me. Thats why I didn't give 5 stars,3,0,,2019-10-22 09:32:20,,,most_relevant,com.anydo +Caroline Lightowler,https://lh3.googleusercontent.com/a-/AOh14Gi6xuGQlrQdx4WrFqYuPkzWzfeRGm6XO1Mk7q67-w,"Some of the Premium features like location-based reminders just don't work and it doesn't do everything it says in Google Play, like automatically sorting my grocery list by aisle.",3,1,4.10.5.2,2018-10-25 12:32:42,,,most_relevant,com.anydo +Alex Pitt,https://lh3.googleusercontent.com/a-/AOh14Gh0WFXC7Ddhv7qnN8_BuJVqPTs-fVlO7VK-bYqg2A,Generally good and useful with a clean interface but there's a phenomenally annoying bug where tasks often ping all the way to the bottom of your list when you're trying to drag and drop them.,3,3,4.15.3.4,2019-05-15 20:53:44,"This is very odd! We highly recommend you submit a bug report in your app via Settings - Support, so we can get to the bottom of this for you.",2019-05-16 07:03:31,most_relevant,com.anydo +Mane Hambardzumyan,https://lh3.googleusercontent.com/a-/AOh14GjyE3aXjihslLFV1rXVmaK50Wy7lcsUNHQjUFtZYrE,"Grocery is not working correctly , I have added some things then changed their categories , closed the app then opened and there was all messed up , categories were messed , and list was multipled some things were tripled",3,3,4.14.1.2,2019-03-03 10:37:46,"This sounds very odd! Please submit a bug report via Settings - Support providing all details, so our team can look into this for you :)",2019-03-09 17:01:30,most_relevant,com.anydo +Rachelle Salisbury,https://lh3.googleusercontent.com/-YZ8CU0qJLHo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMpKqUwlQ-PAbWT-sEGPudmBNjROg/photo.jpg,Notifications are not persistent enough. I'd love to have the option of using my phones built in alarm to remind me of tasks. Please consider this functionality!,3,1,,2019-03-09 17:21:53,What do you mean by 'not persistent enough'? :) Please write us with more details to customers@any.do so our team can look into this for you!,2019-03-16 00:12:04,most_relevant,com.anydo +Grizzlytide,https://lh3.googleusercontent.com/a-/AOh14GgjzGj7slERD1mGqZFXzBNuQ_U_83HMJpV6Npeydg,Awesome app does what it's supposed to aside from reminding you. I always forget what I'm supposed to do because it wont remind me at the right times. :(,3,1,4.10.2.6,2018-09-12 15:21:37,,,most_relevant,com.anydo +Anthony Atkin,https://lh3.googleusercontent.com/a-/AOh14Gixz-fUZanuYMft-OSQ42u4cXJ0mIgu9aIGROpWUg,"I quite like the app, but it looks dreadful on a tablet, and often forces me to change orientation from landscape to portrait to enter information.",3,8,4.15.1.5,2019-03-29 01:16:38,"This is very odd! We highly recommend you submit a bug report in your app via Settings - Support, so we can get to the bottom of this for you.",2019-04-03 09:09:30,most_relevant,com.anydo +Senthil Kumar,https://lh3.googleusercontent.com/a-/AOh14GiQNwy9N7XWVfT4v03WnFZ9jon-G0-Y7J9shgKpeQ,Drag and drop task is not working.. tasks disappear while dropping..,3,0,4.15.9.6,2019-10-22 04:50:46,,,most_relevant,com.anydo +Paul Wiggins,https://lh3.googleusercontent.com/a-/AOh14GgoYXBrT2e26HMYNOyTj17kQvigvk5Fjq0mWPrlKw,good app but at present unable to add additional attendees to events as it causes the app to crash. also it would be good to filter lists appearing on the calendar,3,1,4.15.4.11,2019-06-27 21:08:10,"This is very odd! We highly recommend you submit a bug report in your app via Settings - Support, so we can get to the bottom of this for you.",2019-06-30 06:45:01,most_relevant,com.anydo +Nestor B. Ntenga,https://lh3.googleusercontent.com/a-/AOh14Gg9rLLNiUEqjl2VQ44tIiPaDHrBV5VfuKV2uGOz9A,Looked good at first sight but as I was using it I wondered that the icon disappeared miraculously. Couldn't continue using it until I uninstalled and reinstalled it.,3,0,,2018-11-30 05:24:53,"This is very strange. What icon are you referring to? If this happens again, please submit a bug report so we can look into this for you.",2018-12-03 15:11:04,most_relevant,com.anydo +Lisa Maree,https://lh3.googleusercontent.com/a-/AOh14GgETXEY_4Sw7guvwno627UBErD09m1v-BMtfL22uw,"it was working great, for about 2 weeks but now shuts down ant time I try and invite atty attendee to any event. so disappointed. I thoight this was going to be my ""go to"" app and be reliable. the search continues....",3,7,4.15.4.11,2019-06-17 08:04:39,"This is very odd! We highly recommend you submit a bug report in your app via Settings - Support, so we can get to the bottom of this for you.",2019-06-20 07:32:28,most_relevant,com.anydo +Mina Pendar,https://lh3.googleusercontent.com/a-/AOh14GhVtWWByiS4wDcMA-i7YjWcQF_nnRhPnk0rRfBmvA,"I have a big problem with this app, daily routine doesn't repeat unless i complete it. But somtimes i really could not complete it. then it's stop repeating, why?!!!! plz fix it",3,0,,2019-08-07 09:46:16,"In order to create the next reoccurrence of the recurring reminder, you must complete the previous one. until then, you will see it on your today list waiting to be completed. For further assistance, you are welcome to reach us at Customers@any.do :)",2019-08-11 03:55:59,most_relevant,com.anydo +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"This app can be a little intrusive, probably I was looking for a light weight one and this one is for people who is after a all round task manager.",3,0,,2018-09-19 02:02:46,Intrusive how? :) Any.do can be as simple or as complex task manager as you wish! You can simply choose to only utilize the features which best suit your needs.,2018-09-20 00:02:43,most_relevant,com.anydo +Soma Pneuma Paideia,https://lh3.googleusercontent.com/a-/AOh14Gi80lNq4l4cskP8xhO_EzYh6nq5A3JbHUE6RSiEQ0k,"I just dont do subscriptions, if it was one time pay, I would actually try it, as it is.. I simply uninstalled it. No thank you.",3,5,4.10.6.1,2018-11-01 18:49:48,,,most_relevant,com.anydo +Alex Pride,https://lh3.googleusercontent.com/-w8D1WGQ8gJk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJME2Y72eK--QeTIHeeol3x--ZREXw/photo.jpg,Requests: Ability to change task into subtask by drag and drop. Option for default list of All Lists. Option for organizing list order in All Lists view.,3,1,4.10.6.1,2018-11-05 15:39:55,"You can change the order of your lists in ""All Tasks"" view by changing the order of them within your Grid View (accessible by pressing the 9 dots in the top left). Regarding the subtasks and default list: These are great suggestions! We've forwarded them to our product team for consideration.",2018-11-08 15:18:58,most_relevant,com.anydo +Goktug Erol,https://lh3.googleusercontent.com/a-/AOh14GhjRqI-uqq26JLkGRx4yDRfPfhUM5m1ve1gIW4Olw,It's very nice. I would definitely buy the premium version if it was one time payment but they ask monthly subscription...,3,0,,2019-06-25 03:24:41,"Any.do is not only a product but also a service. We are continuously adding new features, keeping your information synced and safe 24/7, and providing Priority Support for any need you may have. Since Any.do is offering much more than a standard product, we have decided a subscription is the best pricing for it, like similar apps on the market :)",2019-06-30 04:05:26,most_relevant,com.anydo +Madhav Prakash,https://lh3.googleusercontent.com/a-/AOh14Gj7sQgTvdlGS4iA6vGRMMThAYr4DsiTWSVvZRmg-Q,really a good app but needs development. i) in daily reoccurring tasks need options to schedule on weekdays. ii) also need help in scheduling weekly tasks in alternative weeks,3,0,,2019-05-17 19:36:46,Our advanced recurring reminders that are available only to Premium users allow setting a task for weekdays or weekends as well as settings different intervals for our reminders. You can learn more about them here - https://bit.ly/2WSEAY3 :),2019-05-20 06:53:44,most_relevant,com.anydo +Federico Bacci,https://lh3.googleusercontent.com/a-/AOh14Gh5wAGA2Rp8fGxLTJGgd9841BOKMfUgt7IrYGzFVuE,"Okay better than others but the design should be material! Some features are to pay, less than the competitor but still i cant use fully for that",3,2,4.15.3.4,2019-05-27 08:06:10,"You are welcome to check out our Help Center (https://bit.ly/2sO10ft) Youtube channel (https://bit.ly/2HeafzE) and blog (blog.any.do) for any questions. Also, feel free to reach out at customers@any.do :)",2019-05-28 08:21:26,most_relevant,com.anydo +Robbin Heuvelsland,https://lh3.googleusercontent.com/a-/AOh14GiwzIGKlkVsDM6JuXdYQG2qyqHZ2IGd0zPNL1-2-UY,"Great app, but I can't scroll through all tasks when the app is open. Hope that you'll fix that bug",3,2,4.14.0.4,2019-01-30 08:03:39,This sounds very odd! We highly recommend you submit a bug report in your app via Settings - Support so that we can get to the bottom of this for you.,2019-01-31 12:16:05,most_relevant,com.anydo +Vivien,https://lh3.googleusercontent.com/-6npLVkUGPsA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPCxv62Z63Vf8BKGylOGFKG612d0Q/photo.jpg,"Please allow ability to scroll to see all the tasks. other than that, I like the main features and the shopping list",3,1,4.15.4.11,2019-06-10 15:31:52,What do you mean?😀,2019-06-11 13:57:08,most_relevant,com.anydo +William Hutto,https://lh3.googleusercontent.com/a-/AOh14GigCFYRQ6VeLWuwwkveEDWDG3j3CMxDyOweK_vKQ6A,It's ok. It definitely isn't worth paying for premium. Also lack of syncability with Google assistant is a huge drawback for me.,3,1,4.15.1.5,2019-04-04 14:23:40,"We love hearing feedback from our users and we will be very grateful if you could specify why you rated the app only ok. You are welcome to send us more details to customers@any.do. +Please note that the Google assistant integration is coming very soon, stay tuned 😊",2019-04-07 06:43:07,most_relevant,com.anydo +Moayad R. Ferak,https://lh3.googleusercontent.com/a-/AOh14GixccZ3gwIUcd_S4QCBsWJH_kLUsnfaD6o7Fh--Zw,"very nice app but the simple features that many other apps has for free, cost money on this app so why would a pay for somethings that it should be free!",3,6,4.12.0.5,2019-01-08 07:17:45,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. You can use Any.do for free for as long as you like.",2019-01-08 16:06:30,most_relevant,com.anydo +Eric Sinakhone,https://lh3.googleusercontent.com/a-/AOh14GgmGNmnYofdVlDCAQuvgYjPlC8fSpt_GUVAZtHPNw,"I really wanted to like this app, but location based services doesn't work. Im giving this 3 stars still because technical support was very responsive and is giving me a full refund.",3,2,4.15.2.1,2019-04-30 00:19:05,,,most_relevant,com.anydo +Nii 1k,https://lh3.googleusercontent.com/-yt9twaNDaDM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP0TjfwUplBtEZaBgUMZK1DIXtHUg/photo.jpg,I love this app however I sent the link to several friends and they got the app and I received no premium time whatsoever . Don't be dishonest with your apps . That's lame .,3,0,,2019-08-25 22:14:36,"Please note that affiliate function works if the user signs up directly from your link. We highly recommend you submit a bug report in your app via Settings - Support or contacting us directly at Customers@any.do, so we can get to the bottom of this for you.",2019-08-26 04:11:19,most_relevant,com.anydo +Perminus Njiiri,https://lh3.googleusercontent.com/-Ve7NfrAmRxk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOk_WRXzh8EGMDyA8RYB9SP74Xcbw/photo.jpg,Hi. How do I add back my premium account. I deleted account by mistake.,3,0,4.17.0.2,2020-03-28 07:25:27,"Regarding any issues with you Premium subscription, please contact us at https://www.any.do/contact_form, and we'll be happy to assist with any questions.",2020-04-02 14:59:49,most_relevant,com.anydo +Lisa Batris,https://lh3.googleusercontent.com/-4G48C8l7kQw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP0_uLUr6WmKJfAwEOt7_GtbrdFfg/photo.jpg,Did love this app... But since the update. I seem to lose tasks. Now I do not trust the lists I have created.,3,2,4.10.3.4,2018-10-08 21:08:35,That's very strange behavior. Please submit a bug report via Settings - Support in your app.,2018-10-09 14:09:47,most_relevant,com.anydo +Aasif Ali,https://lh3.googleusercontent.com/a-/AOh14GiI6ocxoFw6R06zatBFg3i2I7-lDiHS6ZjJxvPWuKw,"One issue is that it doesn't adapt to the device fonts.... I mean the iPhone font u use looks good on iPhones, but not with other phones... Pls fix this asap",3,0,,2019-05-17 11:04:57,"This is very odd! We highly recommend you submit a bug report in your app via Settings - Support, so we can get to the bottom of this for you.",2019-05-19 14:56:57,most_relevant,com.anydo +Matt Fryatt,https://lh3.googleusercontent.com/a-/AOh14GgFsMWtzCX49UDxBxwq0JTQxugxOqudfedZ4cD3bA,Great concept and very well executed but the app doesn't close correctly and leaves its loading screen open over my home screen so I can't use my phone until I reset.,3,0,4.17.0.3,2020-04-06 09:26:36,,,newest,com.anydo +Jukka R. Peltonen,https://lh3.googleusercontent.com/a-/AOh14GjrWEkA-DrdQU8Wr4XoMVQ_-DDZtiCE0I0txKkKYA,Ok,3,0,,2020-04-02 20:36:09,We work hard to make Any.do the best that it can be! What do you think can make this a 5 stars review? We'll be happy to receive your feedback here https://www.any.do/contact_form! 😋,2020-04-05 15:00:07,newest,com.anydo +Myzel Jane Aninao,https://lh3.googleusercontent.com/a-/AOh14Gigb3R_VP50OA1-heP9k8rPa1Rna4AmIa8vx1sH,not satisfy,3,0,4.17.0.2,2020-03-30 10:05:35,"Why not? :) We would love receive any feedback or assist with any concerns, should you contact us at https://www.any.do/contact_form.",2020-04-02 15:36:05,newest,com.anydo +Gold Nile,https://lh3.googleusercontent.com/a-/AOh14GhAkiH7d1NAvbNja9ygp54Nu0fnszeVS5KSrQ8J-A,"I love the app but recently the widgets have been glitching, they go blank or sometimes do respond when I click a checkbox.",3,0,4.17.0.2,2020-03-29 17:00:35,"We are unaware of any issues with the widgets. Please try to uninstall and reinstall the app in order to resolve this. If you're still experiencing any specific issues though, please submit a bug report via Settings - Support so our team can look into it for you!",2020-04-02 15:19:47,newest,com.anydo +Jon Dasent,https://lh3.googleusercontent.com/a-/AOh14Ghjq74p4EIHlPVSdEu3DlvRW4gjV0JI_I6JVACc6Q,"Great To Do list. The only issue is location based reminders seem to be sporadic. Also annoying that you can't set all day tasks, hopefully an update soon. No resolution and tech support slow, a shame.",3,4,4.17.0.2,2020-03-29 09:20:04,"Sorry for this, our slower response times are due to the current events. Please make sure your device's location settings are 'on' in order to enjoy the Location Reminders. If you're still experiencing this issue, our team will try to reply back asap. At this time, we are not planning to add daily tasks, though this could happen in the near future.",2020-04-02 15:14:44,newest,com.anydo +Perminus Njiiri,https://lh3.googleusercontent.com/-Ve7NfrAmRxk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOk_WRXzh8EGMDyA8RYB9SP74Xcbw/photo.jpg,Hi. How do I add back my premium account. I deleted account by mistake.,3,0,4.17.0.2,2020-03-28 07:25:27,"Regarding any issues with you Premium subscription, please contact us at https://www.any.do/contact_form, and we'll be happy to assist with any questions.",2020-04-02 14:59:49,newest,com.anydo +Hasan Iftakhar,https://lh3.googleusercontent.com/a-/AOh14GjbT_D4UrOFzuTsjco03TfDTcaILjeHglap3QqD5g,Useful,3,0,,2020-03-28 02:53:10,Thank you! What do you think can make this a 5 stars review? We'll be happy to receive your feedback here https://www.any.do/contact_form! 😋,2020-04-02 14:55:07,newest,com.anydo +Avinash Kumar,https://lh3.googleusercontent.com/a-/AOh14Ghwr0fxURO1f7QfK0lXrPL16HxC0ac21jZLax05Eg,Good,3,0,4.15.9.6,2020-03-27 11:06:44,What do you think can make this a 5 stars review? Any feedback or suggestion is much appreciated - https://www.any.do/contact_form! :D,2020-04-02 14:40:50,newest,com.anydo +kumar gaurav,https://lh3.googleusercontent.com/a-/AOh14GgFeVPf_jFqAn0A-D5phEvnBccVps65eIvSVQbr9w,Good app,3,0,,2020-03-26 04:17:51,How can we make it a 5 stars review? 😜,2020-04-01 14:03:30,newest,com.anydo +Dave Nicolai,https://lh3.googleusercontent.com/a-/AOh14GjVtO4s1mCRxXVqpUkHMvg_NLaNn5OSYGt_ZEorOA,"I wanted an app that would allow me to create grocery lists from web/desktop but access them from mobile. At the time of writing, this functionality still isn't fully working. Grocery lists are categorized on mobile, but the web version just shows a single list with all items mixed together. Auto-categorization has been working on mobile since 2018, but the developers still have not bothered to port this important feature to desktop. Also, I feel that far too many of the options are locked down for premium users, even trivial options like background colors.",3,0,,2020-03-25 21:24:27,,,newest,com.anydo +Andreas Philippou,https://lh3.googleusercontent.com/a-/AOh14GgT9RJcb73gAma2BES8FW_l4E_6iYBC4wMD9IwqDQ,Middle Experience,3,0,4.17.0.2,2020-03-25 07:27:10,,,newest,com.anydo +Wok Le,https://lh3.googleusercontent.com/a-/AOh14GgB871NevORb2_1i4tCikBulukmfhpVvWQgb1ya,"How do i disable voice note? Everytime i need to write something in todo list, a google voice popup came out. Its ridicolous, stupid and annoying. I couldnt find the disable option in setting.",3,0,4.17.0.2,2020-03-24 15:59:34,,,newest,com.anydo +Gilad Berezetsky,https://lh3.googleusercontent.com/-QTYR_kbslas/AAAAAAAAAAI/AAAAAAAABo0/AAKWJJM8wITylENfNtwQfyZGRP7a-6hLKQ/photo.jpg,"Please make the widgets more customizable and make us able to change the background transparency. Edit: Looks like you didn't understand. I'm talking about the background transparency of the widgets. Again, if you didn't understand - I'm talking about the ability to change the background transparency, the blackish background which makes the contrast higher and isn't necessary on wallpapers which aren't too bright.",3,1,4.15.0.10,2020-03-18 14:22:14,We have many widgets including resizeable ones :),2020-03-18 13:54:25,newest,com.anydo +Hansraj Choudhary,https://lh3.googleusercontent.com/a-/AOh14GhHetjjV_md3Ju9C98IQbS-WcsbvTSSqlnVW7a7Xw,"Happy with the App...but personally I had two issues which are if addressed, may provide sort of convienience to the users. 1. If any task is not completed and deleted by mistake it can't be undone that I felt inconvenient to write the task again. 2. If any task is being feeded and there also undo/redo options are not available",3,11,4.17.0.2,2020-03-17 21:37:55,"You may find completed tasks under Settings - Completed Tasks and retrieve by simply un-swiping :) Once you save modifications to your tasks, there will be no option to restore old data, which is pretty common but we do appreciate the feedback and will be sure to forward it to our Product Team for further review.",2020-03-18 04:23:12,newest,com.anydo +Khawar Jamal,https://lh3.googleusercontent.com/a-/AOh14GjMLfad2iBXYOPG5K_GwbTww6Q5BhmJnznkDLQDPg,How can AnyDo send reminders to someone on WhatsApp when the task is due? I want the person to whom task is assigned shud also get a reminder before it's due How can I do this?,3,0,4.16.3.6,2020-03-14 13:27:29,Whatsapp does not allow sharing reminders to someone else. The second user may simply create the reminder on their end and receive them directly :),2020-03-15 23:44:28,newest,com.anydo +Gautama Himawan,https://lh3.googleusercontent.com/-8uFGAM9b8go/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO8L_XPnp9FJTjo6VZF6YcUVT3GEA/photo.jpg,"This apps not suitable for my needs. The reminder keep show every day, even the task mark as 'Done' (everyday I do click 'Done' at reminder, the next day, and next day, and next day, the reminder still come up). The logic for the apps does not make sense for me (I'm not a paid subscribber).",3,5,4.17.0.2,2020-03-14 03:17:21,Are you referring to a task reminder or the daily planner? Please send us more details at https://www.any.do/contact_form and our team will gladly help solve this for you and offer further guidance :),2020-03-15 23:41:47,newest,com.anydo +Nia P,https://lh3.googleusercontent.com/a-/AOh14GgxWWfSos7oe8g-AGAgxvB9Z5gz3y1ir3IO5IOg,"This is a lovely app, but I would rather to pay one time off for using it. It becomes too expensive if you use it for years :( Doesn't connect to google tasks neither",3,0,4.16.6.2,2020-03-12 13:13:20,"Any.do is not only a product but also a service. We are continuously adding new features, keeping your information synced and safe 24/7, and providing Priority Support for any need you may have. Since Any.do is offering much more than a standard product, we have decided a subscription is the best pricing for it, like similar apps on the market :)",2020-03-15 23:31:49,newest,com.anydo +Sharon Robles,https://lh3.googleusercontent.com/-QvZdcap_qG4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOJlzJlJS7I7qZHe_HmB4y_5abNzA/photo.jpg,No longer getting reminder pop-ups. What happened?,3,0,4.17.0.2,2020-03-12 12:02:06,"Due to Android 10 regulations, the pop up option was removed. However, we do plan on adding it back in a future version so stay tuned for updates!",2020-03-15 23:21:38,newest,com.anydo +Win Oo,https://lh3.googleusercontent.com/a-/AOh14Gi-U9qyzGKfD6O4mFvNHkJY1BH5KessNr7NUIvr,any.do.:to do list,3,0,4.17.0.2,2020-03-11 19:00:48,Why only 3 stars? :),2020-03-12 02:57:45,newest,com.anydo +Rajasekhar K,https://lh3.googleusercontent.com/a-/AOh14Ghs5Muk0Yed4qYDTN95Zl9haR3YiMA-He6oiNMIxw,"1. Apart from events, how to import Reminders from Google Calendar App? 2. How to import the tasks from Google Tasks App?",3,0,4.17.0.2,2020-03-11 08:38:07,"The Calendar Integration imports events only. If you're looking for a custom integration with Google Tasks and Reminders, we recommend checking out our Zapier Integration: https://support.any.do/zapier/.",2020-03-12 02:59:45,newest,com.anydo +Mike Endrizzi,https://lh3.googleusercontent.com/a-/AOh14GhGptDSJGljk3mG25c_CnGuXmqTy1PpbSqnR9vP,Cant view a month in one screen. One week is the maximum that it will show. Uninstalled.,3,0,,2020-03-08 01:03:13,"In the Agenda View, simply tap on the weekly spread at the top of the screen to open the monthly spread :)",2020-03-10 03:56:09,newest,com.anydo +Shafiqul Islam,https://lh3.googleusercontent.com/a-/AOh14Giz3iIjvUcAAdrmVu2sh899R42Quw-VhoqJPoX1,Unlock,3,0,,2020-03-03 10:36:28,"Not sure what the issue is, but if you're experiencing issues with the app you're welcome to reach out to our team at https://www.any.do/contact_form.",2020-03-03 21:20:00,newest,com.anydo +Marko VALENTE,https://lh3.googleusercontent.com/a-/AOh14GhWW9NZ3TQxGOE6RDwR_Dd60XXfpOpZ5nDzCCbeww,"I was noticed that my phone memory is low and when I was checking which apps I can move to external memory=SD card I found that I can't install/move your app to the phone's SD card and use it from it, but only on and from phone's internal memory. As I see that is not an issue by many other apps with similar features and requirements so I suggest you to make this possible.",3,12,4.16.6.2,2020-03-02 15:11:54,"Apps installed on your SD card cannot send notifications in the way Any.do requires in order for reminders to show in time. Accordingly, this is not an option at this time.",2020-03-03 21:08:26,newest,com.anydo +Robert Strunk,https://lh3.googleusercontent.com/a-/AOh14GisA1Otub_ES6q_-1EJWv_4y0IG3l8ANdt-7nuxKw,I'm shocked there isn't a free trial period for this app. All the things that I'm looking for are premium features and aren't unlocked without a subscription. As a rule I do not subscribe to anything unless I am confident it will add value. A trial would help me make that assessment.,3,5,4.16.6.2,2020-02-28 01:43:03,"90% of the app is completely free and unlike similar apps, we allow our users to enjoy most of the features for as long and as much as they wish without any 3rd party ads or a requirement to upgrade :) You may find a 7 days trial plan under Settings - Go Premium. For assistance, reach out to our team at https://www.any.do/contact_form.",2020-02-28 02:17:59,newest,com.anydo +Paul Raymond,https://lh3.googleusercontent.com/-oGwR5osbxdc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNG98ffadXMpcBViAgrwfpAZVk6Ag/photo.jpg,"Irrespextive of having task completed, there should be a way of having access to your ""do list"" as long as it is not deleted. One might want to crosscheck a few sruffs. They should fix that issue.",3,1,4.16.6.2,2020-02-27 04:30:55,"Not sure what you mean. All completed tasks are available under the designated folder in the app's settings, from which they can be retrieved. For assistance with this, please reach out to our team: https://www.any.do/contact_form.",2020-02-28 02:10:17,newest,com.anydo +Mina Mamdouh,https://lh3.googleusercontent.com/a-/AOh14Gg4SMoxPRlEilFzAUZeJqeQVz3O6x5s5q9uVkj2RQ,Does this app has sticky notes??,3,0,,2020-02-26 16:11:02,"We offer a notes section per each task, which you are welcome to read about on our Help Center: https://support.any.do/notes-and-files/ :)",2020-02-28 02:08:30,newest,com.anydo +Riley Schwengel,https://lh3.googleusercontent.com/-QKcUZeVXKP8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM7LOs175XCY-eu5_8fjfFFQJqxEQ/photo.jpg,Good interface and design. But the sharing capabilities were riddled with issues. The app became almost unusable if you tried to share anything,3,2,4.15.7.14,2020-02-25 02:41:06,We're sorry for this experience! Please submit a bug report via Settings - Support so our team can help resolving these issues for you!,2020-02-26 14:40:56,newest,com.anydo +Nevimate,https://lh3.googleusercontent.com/a-/AOh14GilPdJq985PBvUDIWaj9eBCdoir_2hsdtd9OMnD4w,Cool app,3,0,4.16.6.2,2020-02-23 12:49:38,Then why just 3 stars? 😁,2020-02-26 14:29:13,newest,com.anydo +eletronic designer,https://lh3.googleusercontent.com/a-/AOh14GiktN91hh89rO8jfAw-8wAmALIzd5wJKlaRHwMw,Paid dark theme. Im going behind another app,3,1,4.16.6.2,2020-02-19 17:48:51,Thanks for the feedback! We will be introducing a free dark mode in the upcoming months.,2020-02-23 12:44:08,newest,com.anydo +wynand du toit,https://lh3.googleusercontent.com/-Zp4W16s3oRI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPTlyDTedgKs5YGU3wQlmkw_nz7ng/photo.jpg,Ok,3,0,4.16.6.2,2020-02-19 08:40:02,,,newest,com.anydo +Ritu Vashisth,https://lh3.googleusercontent.com/-RqFGwTXkrd8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMDxdCdw3to1COhQ0K6-Aw3_iIXuQ/photo.jpg,Not bad,3,0,4.16.6.2,2020-02-19 06:59:40,How can we make it to 5 stars then? ;),2020-02-23 12:41:42,newest,com.anydo +Scott Wilson,https://lh3.googleusercontent.com/a-/AOh14GiAHVjGp5PqYS3nB11_Ct4mHKre1fcYspmRvPCQ,"Decent app, very helpful to split things up visually but several issues over the past few months of usage. Tasks suddenly stop syncing up from a desktop PC to the app, deletion of lists seem to work but then the lists re-appear, and most recently all the tasks that have been completed over a period of time are suddenly back in my list. On a basic level, this app is useful, for anything more than that it's not the solution I was hoping for. I am a little OCD but if you are too then look elsewhere",3,0,4.9.5.1,2020-02-15 15:22:30,We're sorry for this experience! Please submit a bug report via Settings - Support so our team can look into this for you!,2020-02-16 11:37:47,newest,com.anydo +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Great app BUT it takes away access to your data after a while unless you grant full access to email addresses/google acct/ everything. Fair enough request, but not by holding data to ransom. Either that or its been compromised by malware, but I don't think so",3,5,4.16.5.0,2020-02-15 11:50:28,Any.do requires user to setup accounts under a user name and password for years now. We do not block access at any point as this data always remains under the account the user initially created.,2020-02-16 11:34:06,newest,com.anydo +Inner World Resources- LILI YAP,https://lh3.googleusercontent.com/a-/AOh14Gjv40KzEjNFPHbR8QJriPgIzUvFZg87Oa3VCmxg2qQ,"The tasks completed are no longer shown on the date itself, which made us hard to trace back what were the activities done on that particular day Add on review: thanks for the reply. But when I check on my calendar, completed tasks are no longer shown. I'm not sure we are on the same page. Yes They are still on the task list but no longer in calendar",3,74,4.16.6.2,2020-02-14 02:16:37,"If you do not remove the Completed Tasks from your active lists, they will continue to show in the Calendar View :) Once moved to the Completed Tasks folder, these tasks are cleared from all views. The tasks will only appear on the original dates you added them to. If you cannot see them please reach out to the team at www.any.do/contact_form.",2020-02-16 11:13:53,newest,com.anydo +H Rose,https://lh3.googleusercontent.com/-v48lflCjDxk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM5-xeI9RqYpAM35GVRWhsQPA9-HQ/photo.jpg,It wouldn't let me delete/edit events and had no monthly view on the calendar.,3,0,,2020-02-10 23:58:57,"We have a designated Agenda View that allows users to see a monthly spread with events right below. As to editing issues, it sounds like you calendar wasn't setup properly. Please open a bug report via Settings - Support so our team can assist you.",2020-02-12 13:34:42,newest,com.anydo +jourdan wee,https://lh3.googleusercontent.com/a-/AOh14GjOjsLDaQdF_3u_iCsXYOAN7QAeZStqH45G7lMmNQ,"Everything is good. My only issue is that it doesn't send the message to you the exact moment you assigned it. Eg. I set a reminder at 8pm. The BOT only WhatsApped me 15mins later. Other than this, everything else is good. Love the feature of a WhatsApp reminder BOT. Improve on this area and you'll earn 1 more loyal customer",3,18,4.16.5.0,2020-02-07 10:53:20,"Our team has already fixed this minor issue, which occurred for a few users. Please let us know at https://www.any.do/contact_form if you are still experiencing this issue so that we can check further :)",2020-02-09 12:32:12,newest,com.anydo +Dan Lake,https://lh3.googleusercontent.com/-o7dDgsi3MWs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPQXi-3_cu68leNDnGHU0SJlLhWCQ/photo.jpg,"The app is OK but it could be much better in terms of usability. For example: 1. When setting a new reminder, the first button (which you are most likely to press without thinking) should be 'set timer', not 'share the task'. More people will want to set a reminder than share a person note. 2. The 'focus' button when the reminder comes up is in the prime location for when you are typing/using your phone and leads to you accidentally cancelling reminders each time.",3,15,4.16.5.0,2020-02-03 21:12:16,"Thank you for your feedback. We truly value our users input, and our Product team is always adding user suggestions to our roadmap. We would be more than happy to hear any other suggestions you have for the app at Customers@any.do!",2020-02-05 08:45:25,newest,com.anydo +Dipanjan Das,https://lh3.googleusercontent.com/a-/AOh14GiMG3tduLqZ7-3qKfUdnpRf42JQ5cwwFbfcaKcTUA,Doesn't let me view the lists from my Android Wear OS Smart Watch,3,0,4.16.5.0,2020-01-30 15:56:09,"The Wear app is a compact view of upcoming tasks, allowing you to receive reminders and delete/ complete tasks. It is an on-the-go display that does not contain the same functionality as the main app. To view your lists, simply use the main app.",2020-02-03 16:42:11,newest,com.anydo +Rosemary desris,https://lh3.googleusercontent.com/a-/AOh14GhXxNvMoxYhri661PhwR_1fyKFjdgBBbTG8gXQkkpo,"Waste , there was not an option to set an alarm to remind . I can write a note anywhere , I need the note to remind me which this app said it would . Too busy trying to get me to but it . I will just but an alarm clock",3,0,,2020-01-29 18:54:58,"If you're experiencing issues with your reminders, we highly recommend you take a look at our Help Center Troubleshooting article on this: support.any.do/why-did-my-reminders-stop-working/ or contact us directly by submitting a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2020-01-30 10:02:22,newest,com.anydo +Patrick Yeck,https://lh3.googleusercontent.com/a-/AOh14GipeqoyKpcIBS_U4A4r6aheHNFpChdQcSk5QLWJOA,I love the concept of the app I'm just not digging the functionality. Trying to set a custom date and time is a complete pain in the you know what. Every time I select pm it's stays at am. I have to do it multiple times before it catches. Same issue with the clock. I try to rotate the dial to select an hour and it hangs and throws me over to minutes. I go back to hours and it does the same thing. I finally just gave up. Back to the old string around the finger. ☹️,3,86,4.16.4.6,2020-01-29 02:57:08,If you're using a single-time reminder for the current day and the morning hours have passed than you will not be able to set the reminder for AM :) Simply select a different date and the AM option will be available.,2020-02-03 16:39:35,newest,com.anydo +Amrit Lamichhane,https://lh3.googleusercontent.com/a-/AOh14GhF-Cp7UhEnXoYG5eOdvEVJujtlMGiF9aJs-9ygng,Sticky notification bar should show task according to the up next time strictly rather its showing randomly.,3,0,4.0.11.5,2020-01-29 01:02:08,"It is showing tasks in the same order as in the app. If this is not the case for you, please submit a bug report via https://www.any.do/contact_form so our team can check it out for you!",2020-02-03 16:40:43,newest,com.anydo +diego nunes,https://lh3.googleusercontent.com/a-/AOh14GjPlQD8jvDQe6O_ZSaFuPnYjwjR43JtzG7QvBAh8Q,"I'm using the free version and its a disapontiment. No themes, you can't delete default lists. It's ugly.",3,0,,2020-01-27 01:09:43,,,newest,com.anydo +Ewan Cox,https://lh3.googleusercontent.com/a-/AOh14Gi1rqmxCWgny8wPa00M6BWbQ-I5FYPhSnCmhGHAC_4,The free app works well but pops up with annoying notifications every now and then to remind you to set more reminders... Kind of pointless. I'm also not a fan of the subscription model for premium. The layout and app itself is good though so it's a shame about those negatives. I would have considered buying if there was a one-time payment model.,3,160,4.16.4.6,2020-01-26 04:23:04,"You can disable any notifications you don't like from the app. The Any.do Moment reminder which can be toggled off in settings. The only other notifications you should receive are for reminders, which if you don't like, you can turn off these reminders and simply have due dates for tasks without any notification.",2020-01-27 08:57:32,newest,com.anydo +Maddalena Z.,https://lh3.googleusercontent.com/a-/AOh14Ghjo-yzs9zyihOxD6uzEMh-FxA6NBdnJ-kAUyAtYkE,My favorite thing is when to do list speak loud the task to do. Is good not having to read your screen. I unistalled because I miss this feature,3,0,,2020-01-25 22:39:43,"Please note that Any.do never supported a 'natural language' feature such as the one you mentioned. However using our Google Assistant, and Alexa integrations, you are able to hear what is on your lists, via the Smart Assistant you are using. +If you are experiencing any issues with this please send us a bug report in your app via Settings - Support",2020-01-27 08:56:28,newest,com.anydo +Sabiat Sulaiman,https://lh3.googleusercontent.com/-s6SfhHe_TSc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOXLjtk2tNMVPQWL4flIOQwHVGtZg/photo.jpg,"Pls and pls, kindly refund me. I was charged yesterday. I didnt realize that i was still subscribed to the app because i deleted it. I cant afford it right now cuz i dont have a job and i still need to pay my tution fees. Pls refund me!! Crying** pls refund my money",3,1,,2020-01-24 18:52:06,,,newest,com.anydo +Matheus Vilas Boas,https://lh3.googleusercontent.com/-GKYUez80lYE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMf3lnsbC5a2W8WScI4ebzslJ0JiA/photo.jpg,"Bom, mas tudo tem que pagar",3,0,,2020-01-23 17:46:38,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. You can use Any.do for free for as long as you like.",2020-01-27 08:10:30,newest,com.anydo +kundankb,https://lh3.googleusercontent.com/a-/AOh14Gh_vwP3MdHwYdJ_mcUD3wPW4_sEQ5oynwZ12-TRHg,"I have been using this app everyday but last update cleared all my future reminders. Now its impossible to recollect those important reminders. Searching for better alternative. REPLY : awesome, tried your advise to sign out and sign in...but lost yesterdays reminders also...fyi i had requested forgot password for this account.",3,0,4.16.4.6,2020-01-22 19:57:13,"We would be more than happy to assist you with this issue, please submit a bug report in your app via Settings - Support so we can look into this for you.",2020-01-23 08:58:10,newest,com.anydo +Secretly Alien,https://lh3.googleusercontent.com/a-/AOh14Gji5vfTj1nJMvhH8zyBqWhlaFhjbMV1ys7nxwriMg,I want dark mode without payin. Like the light mode is too light,3,0,4.16.3.6,2020-01-21 08:23:48,,,newest,com.anydo +Kgotso Malefetse,https://lh3.googleusercontent.com/a-/AOh14GhfaUYY2CR4jmbM17BJrjGsH9-xJfiRD1iUA17fHA,Works well for me and does its jobs and I never forget stuff anymore. Well done guys. And thank you for this app. Jannov,3,0,4.16.3.6,2020-01-20 15:20:59,,,newest,com.anydo +hel0is0heaven,https://lh3.googleusercontent.com/-kf6m1WDzu24/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJODki-UvTdd-Qcney1PSIU9AQU8Ug/photo.jpg,"I really like any.do and having my to do list and events in the same place. However I have knocked off stars because I need more customisable repeat options and notifications. Sometimes my tasks are every two weeks, or every other day, or every 3 days. Would be nice for this option. I also like to put reminders in for my work calendar. I don't seem to get the option to change this when doing a new event reminder. Can't afford premium. Shame. Back to Google calendar. :(",3,7,4.16.3.6,2020-01-20 08:25:30,"Hi, please note that we do support advanced recurrence settings! You are able to customize your recurring reminders in this way, however please note that this is a premium feature. +You can learn more here: https://support.any.do/recurring-reminders/",2020-01-20 08:07:04,newest,com.anydo +Kyle Bain,https://lh3.googleusercontent.com/a-/AOh14GgRL_o37QGYlReu7fNH9UMmJVT_Tfl3uOX7ppxcsQ,The prices for this app is abit stupid when I can find apps that do the same thing for free! 26$ should give me life not everyone is rich !!!,3,0,4.16.4.2,2020-01-19 18:37:54,"You can use the free version, most people do :)",2020-01-19 19:56:04,newest,com.anydo +shaurya o Connor,https://lh3.googleusercontent.com/a-/AOh14Gj1K0S0vjEZepjNpp2A38aR3WvKe0Gjnzwogxsy,Just fine for me I mean it has a smooth transition and everything but all the cool stuff is paid it's like there's nothing extra for freebies you can do the same in a normal calendar.,3,0,,2020-01-19 06:55:11,,,newest,com.anydo +Yun Dong,https://lh3.googleusercontent.com/a-/AOh14Gje61torUWpV-rFDsdzsollundQFqQbZEA75d0N,"Small but significant issue for me: I like to look ahead at the events and tasks or whatever I put into the calendar/widget in advance. BUT I wish there was a way to automatically go back (like a button) to today's date and events afterwards because I don't like having to manually click on the arrows to go back to today's date after I view my future months and events . Overall, awesome app! Hopefully something like this gets added , I really want to continue using this app. Thank you :) !",3,15,4.16.3.6,2020-01-17 20:52:35,"Hi Yun, please note that you are able to do this! you can do so by tapping on the 'Calendar' button in the widget, or in the app! +If you have any further questions, please let us know at Customers@any.do!",2020-01-20 09:49:05,newest,com.anydo +Co Paloma,https://lh3.googleusercontent.com/a-/AOh14GgJLNUprjNDWv8eh1g88pbLZ3p9z3oRI87yPYZTCyg,"I like it, a lot and also not a lot. I like the way it looks once the tasks are created, but I dislike creating the tasks using the current interface. 4 comments. 1. I have the full version with WhatsApp linked and it causes duplicate reminders. 2. The widgets are not recognized by my homescreen replacement app (go launcher). 3. I would like to be able to resize the fonts and spacing. 4. Creating tasks via WhatsApp or Google assistant is very limited in its possibilities and often erroneous.",3,6,4.16.3.6,2020-01-17 19:52:18,"Hi Co, please note that you are able to turn off receiving Whatsapp reminders via settings => integrations => Whatsapp. We would be more than happy to hear any further feedback you may have, and assist with any issue, please contact us at Customers@any.do or submit a bug report via Settings - Support, so we can further assist you!",2020-01-20 09:45:44,newest,com.anydo +Reagan Noelle,https://lh3.googleusercontent.com/a-/AOh14Ghzccs7MVEfyNpnfLXzQR8Qg90LKcMaeqPuP-iXyK4,why I gotta sync,3,1,4.16.3.6,2020-01-16 21:11:53,"We sync our user's tasks, so they can access all of their tasks, across all platforms, quickly and easily. If you have any further questions, please let us know at Customers@any.do!",2020-01-20 09:17:33,newest,com.anydo +Adrian Neave,https://lh3.googleusercontent.com/a-/AOh14Git4mGCgDtd9TkFtrjxnvvz3ryWnWcmd9kvcr-jSw,"Easy to use decent integration. One major flaw in the shopping list, no way of entering quantities, schoolboy error!!",3,1,4.16.3.6,2020-01-12 14:18:59,,,newest,com.anydo +Latrice Jamison,https://lh3.googleusercontent.com/-1b3rqQuaYiU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMEv1KjD3GFtH0bKU1abOSYNVnVrg/photo.jpg,"The app is pretty good and has good features. However, when I shared a grocery list with my fiance it wouldn't let him accept and it it sent him TONS of emails regarding it. Literally 1 every few minutes for hours and I have no clue how to stop this without him just unsubscribing. Given that sharing is a big part of why I wanted the app, it does put a damper on things for me.",3,11,4.16.3.6,2020-01-05 22:14:34,,,newest,com.anydo +Terri Brunner,https://lh3.googleusercontent.com/-839JfXNlyOA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP_5vhK739rMuGitBXhOFjgakqaWg/photo.jpg,"Updated: It's widget can switch between calander / todolist and view the events for the calander, in the widget when clicking instead of it opening the calander app like most apps. It's task list doesn't seem to sync to gtasks but the calander does. Upgrade to premium to add things like a recurring event, daily planner, WhatsApp reminders, extra colors etc.",3,1,4.16.3.6,2020-01-02 19:46:27,"We're sorry to hear you aren't enjoying Any.do. If you have any feedback about the app that you'd like to share, we'd love to hear it at Customers@any.do. We're constantly trying to make the best app possible for our users, so feedback like yours is vital for improving the app.",2020-01-02 09:27:27,newest,com.anydo +G G,https://lh3.googleusercontent.com/-OjNdeuQy408/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPf7P1HzccnRbfWdjKPghkqIhv5Ag/photo.jpg,Stop looking at users as cash cows. I will be uninstalling this and moving to a different app which is as good and does not nag. This is quite a good To Do app other than that it too often comes up with prompts to upgrade to the premium subscription-based version. Since when have customers disrespectfully/greedily been treated as cash cows. It used to be apps were$5 at most for a lifetime of use but now they are greedy and arrogant enough to want $5 or thereabouts per Month! I wud pay a one off,3,9,4.16.2.7,2020-01-02 04:44:41,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. We modeled all our pricing tiers off of similar services so we could stay competitive. We also occasionally offer promotions, you can inquire about them at premium@any.do!",2020-01-02 09:25:50,newest,com.anydo +Jesse Van,https://lh3.googleusercontent.com/a-/AOh14GgSaXB4wCo11rXVVxjjhojTpAxHpgTcVdIF5oQ,"Awesome app but hate the new placement of the buttons. When you use to create a task you clicked under the title to select when you wanted a reminder. Now it's halfway down the page. I keep hitting ""share task"" and it takes forever to back out of that screen.",3,6,4.16.2.7,2020-01-01 22:56:42,"Thank you for your feedback! Please note that we have done this to make the app more consistent across all platforms, however we will be sure to review your feedback!",2020-01-02 09:21:32,newest,com.anydo +Albert Cofie,https://lh3.googleusercontent.com/-1Jix05PF8pA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPpZ9mgJ_zHdzgTEcc7UpSJjom8iQ/photo.jpg,I don't understand why all the tags disappear once you start pay or join the trial. The only tag showing is Priority. Before I joined premium there were other options which disappeared.,3,2,4.16.2.7,2020-01-01 15:59:52,"Hi Albert, please note that we only support the Priority tag for standard users, however if your tags are disappearing, please send us a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2020-01-02 09:14:41,newest,com.anydo +habib mohammed,https://lh3.googleusercontent.com/-m22-pxnnTJw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNimvPwrPcvteeytm4Uke9G2j2o8A/photo.jpg,I love the app But its shame that I can't add my tasks on my calendar after I planned my day. I am heavy calendar user I use it to schedule every hour of my day but I can't do anything similar with this app except to remind me at certsin time. To me having to see how your day is structured by the hours is really usefull. Uninstalling it for this reason.😏,3,0,,2019-12-31 05:35:06,"Hi, please note that you are able to view your days by the hour, with our Daily view! To get to the daily view, simply go to the Calendar tab, tap the Calendar menu icon in the top left, and then select 'Daily'.",2020-01-01 09:12:40,newest,com.anydo +Kevbo Jones,https://lh3.googleusercontent.com/-dTneVD3g3kY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPFUkrYAPddNnKIBfW3xE1RmdlWDQ/photo.jpg,"I have a problem. The ""I want to..."" bar at the bottom is covering up the ""someday"" subsection of tasks. Please fix this.",3,0,,2019-12-28 05:25:28,"Hi, that's odd, please send us a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2019-12-30 08:17:01,newest,com.anydo +Kenneth Ho,https://lh3.googleusercontent.com/a-/AOh14GitUJTLwivaJ3Aw5ccIAjuofI_qNUQFyVc0xG_D6qM,App doesn't have pop up notifications anymore for my tasks that I set a reminder at a certain time for. I have checked the app permissions and it allows full notifications.,3,6,4.16.2.7,2019-12-27 06:02:08,,,newest,com.anydo +AF Z,https://lh3.googleusercontent.com/-oe5UPGqFeFQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPD1DrjVTVr41DmL61PBHuZKeqVGQ/photo.jpg,Why its so hard to sync,3,0,4.16.2.7,2019-12-24 22:01:32,"Hi, this sounds a little strange, please send us a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2019-12-25 08:03:23,newest,com.anydo +Taha Ahmed,https://lh3.googleusercontent.com/a-/AOh14GivyVU92mHWHyamcG_iK49ELnmiOweeRivMceeX,Every time I change the language to Arabic and the app restore the default language!!!!,3,1,,2019-12-24 07:39:31,"Hi, that sounds strange, please send us a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2019-12-24 08:35:00,newest,com.anydo +Justin Gaughan,https://lh3.googleusercontent.com/a-/AOh14GhjGSif621kdD5cdg006kP-3RrHJtuj7az_0NsQX9I,"A decent app, but for me, it's not worth paying £15/yr for, and that's at 50% off. £30 is just ridiculous for a to-do/calender app. There are other task/calender apps, just as good and free.",3,0,,2019-12-21 21:45:15,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. We modeled all our pricing tiers off of similar services so we could stay competitive. We also occasionally offer promotions, you can inquire about them at premium@any.do!",2019-12-23 08:02:56,newest,com.anydo +Alyson Patterson,https://lh3.googleusercontent.com/-8H3AYV5ZjLU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOaFs5rgbZxY8OaZi4oMMXZIiKhkA/photo.jpg,Long time user...do not like the latest changes! Changing the location of the remind feature is very frustrating. Now I keep clicking on the wrong option because it is in the same place as the remind feature used to be. Please change back...,3,6,4.16.2.5,2019-12-17 04:28:36,"Hi Alyson, please note that we recently updated the UI to make the app more uniform across all platforms. +However we may review your feedback at a later date.",2019-12-17 09:39:18,newest,com.anydo +Warwick Vos,https://lh3.googleusercontent.com/a-/AOh14GijEl50KxPytEn5q_9n11WFUM0K3XEiCtszw1h0xws,"Useless. Have to pay a subscription to be reminded? No thank you. Honestly a once off fee is fair, but a continued yearly fee. I can see why these guys partnered with Facebook and mark Suckerberg . To suck your wallet. I gave it 3 stars because it is a well made app.",3,0,,2019-12-16 12:51:14,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. We modeled all our pricing tiers off of similar services so we could stay competitive. We also occasionally offer promotions, you can inquire about them at premium@any.do!",2019-12-16 07:51:37,newest,com.anydo +Denise Garcia,https://lh3.googleusercontent.com/a-/AOh14GjgpDTRiOX2j8iIOnkIKS-sS_qEGpUI_TjfJR1k-Q,"Some nice features here. Their approach really set it apart from the other I've tried so far. It's a strong contender as a Wunderlist replacement. The only reason I am still not confident on a switch is their Wear integration. It's terrible! The app doesn't listen to the watch at all. I've tried completing and snoozing and it does nothing. The watch app can only add tasks, so the screenshots they're sharing here are DECEPTIVE. I also wish I could hide completed task, instead of deleting.",3,36,4.16.2.5,2019-12-14 19:35:03,"Dear Denise, +Could you please contact us via Customers@any.do? We'd love to hear more about this issue in order to assist you.",2019-12-15 12:34:06,newest,com.anydo +Nita C.,https://lh3.googleusercontent.com/-ljNkWX3eQwM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOUt1c3VjjDpjo8PkhtBdZO_2X8ZA/photo.jpg,"Sorry this is not a review but a question : anything I enter in google calendar ends up in any.do, but not the other way around ? How do I do this ? Have I missed something ? Specifically, I want my Goggle Home mini to be able to tell me what's on my any.do tasks and calendars.",3,1,,2019-12-14 14:18:12,We're launching our Google Home integration in the next few days! :),2019-12-15 12:34:55,newest,com.anydo +Daniel McCormack,https://lh3.googleusercontent.com/a-/AOh14GiAMiv2DFXCMQ1scqNR7SrtEMjEAjpjFNxgRMze,Great app but crazy there's no Google Calendar integration!! Even tried setting this up with Zapier but it only creates an entry (with no link to any.do task title) for when the task is created and not when the task is scheduled. Will Google Calendar integration be coming to the app?,3,6,4.16.2.5,2019-12-13 22:53:02,Did you get into the calendar tab? It's integrated with whatever google account you have synced to your device.,2019-12-15 12:36:57,newest,com.anydo +Kathleen Cervas,https://lh3.googleusercontent.com/a-/AOh14GjP8RHYobHUs7552gikdcXhoHiCrfM0hLwdBGGigg,"This is my first time rating this app because I noticed that there were changes in putting a reminder. Hopefully after the task tab, the time & date will be under it. It's a bit hassle that it was made smaller that without my glasses I didn't notice it for several times. Also,I don't see any purpose of sharing it to other people ;so it should not be the priority. I hope that you can do something about this. Anyway, thank you for helping me get through my daily tasks.I'll wait for another update",3,30,4.16.2.5,2019-12-13 13:26:24,,,newest,com.anydo +Cvituljak B,https://lh3.googleusercontent.com/a-/AOh14GiZyIKbqZ8xRdULMhh-7tCaMxY5YrkvJook-CZLjQ,I liked it...nice features but not giving the colour changing option (premium only) is just cheap... I wish I can set my own music for my reminders,3,6,4.16.2.5,2019-12-12 19:37:12,"You can change the notification sound in your native device settings. Simply go to Settings - Apps & Notifications - App Info - Any.do - App notifications - Reminder notifications - Sound. From here you can choose any sound you like as your reminder sound. If you have any further questions, please let us know at Customers@any.do",2019-12-15 09:29:44,newest,com.anydo +Jason Beard,https://lh3.googleusercontent.com/-8EWcvMMCTOI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPGzRF4Fd9q_RN7mIkwKYiKVKbY_Q/photo.jpg,Very useful BUT needs Dark/Night mode. Am sure that aint to hard to create?,3,0,4.16.1.6,2019-12-10 23:22:34,"Hi Jason, please note that we do have a black theme for premium users! +If you would like to learn more about our premium service, feel free to visit our Support Center here: https://support.any.do/premium/",2019-12-11 08:29:23,newest,com.anydo +Bryan Lee Jia Yao,https://lh3.googleusercontent.com/-hjpGc6Kg9Ys/AAAAAAAAAAI/AAAAAAAAAAk/AAKWJJNM0BA_0niC1n7mkMRAZbqFUGT0dw/photo.jpg,App crash often happens....and i cant even open the app so how am i going to send a bug report.... 😑,3,1,4.16.1.6,2019-12-04 07:51:43,"Hi Bryan, if you are unable to send us a bug report via your settings, please note that you can also contact us via Customers@any.do",2019-12-04 08:29:51,newest,com.anydo +vivek seelam,https://lh3.googleusercontent.com/a-/AOh14GiIS3WC5bYW8DnNJod96SvRDlGETFIeuMuojMYEUzg,"The app notification doesn't go away even after ticking the task complete, otherwise an amazing app",3,1,4.16.0.6,2019-11-29 18:09:09,"Hi, that's odd, please send us a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2019-12-01 09:59:23,newest,com.anydo +sunil saraogi,https://lh3.googleusercontent.com/-6XlcjZGbaZ8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPbOG9FxzqMFSd1CYmCstFW6LqH6w/photo.jpg,Nice App... Will suggest some changes after some time,3,0,4.15.9.12,2019-11-22 13:31:36,"We truly value our user's feedback, please contact us, and let us know what suggestions you have at Customers@any.do",2019-11-26 09:10:55,newest,com.anydo +dawn Miles,https://lh3.googleusercontent.com/a-/AOh14GjYo_za_fkkwrxxV4GCJZEkSS8JkiZh3knq_xKXDQ,It's good and is useful only problem that lets it down is you have to upgrade to premium for it to do all the things it lists so that lets it down,3,5,4.15.9.12,2019-11-16 00:50:02,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. You can use Any.do for free for as long as you like.",2019-11-18 16:34:17,newest,com.anydo +shreedhar bs,https://lh3.googleusercontent.com/a-/AOh14GjG8TS0lFhGvvPzAmMQ2HP8j4XZdJG3eLt0i-1V,good app but........ i would like to have a feature of having a log maintained of my completed tasks. So that i can go back and check when i completed them for any future references.,3,0,4.15.9.9,2019-11-14 07:08:06,"Hi, please note, you can see your completed tasks in the 'Completed tasks' section in the settings!",2019-11-18 16:25:33,newest,com.anydo +Jayakumar Perumal,https://lh3.googleusercontent.com/-PzHfD3dzKfc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNu2YCl22wmmBU2eZ8Qrb3mDWXAPg/photo.jpg,Sound is not coming while the task is reminding.. How to get sound? without sound while reminding is not useful..please tell how to enable sound,3,3,4.15.9.9,2019-11-11 18:36:44,"If you're experiencing issues with your reminders, we highly recommend you take a look at our Help Center Troubleshooting article on this: support.any.do/why-did-my-reminders-stop-working/ or contact us directly by submitting a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2019-11-13 08:35:58,newest,com.anydo +Stefan Ferreira,https://lh3.googleusercontent.com/a-/AOh14GjGdkNXGne_rpJ-jcV6Knd_sbpg1ls8bATM0_PY0w,"Not usable since the pop-up cannot be disabled without completely disabling notifications. They do not intend to fix this for anyone who isn't on Android Q. Pity, the rest of the app beats most other to-do apps.",3,30,4.15.9.10,2019-11-11 12:44:24,"We're sorry to hear you aren't enjoying Any.do. This is something that a lot of our users like, however we understand that everyone likes different features :) However we respect your feedback, and we hope you find the solution that you are looking for.",2019-11-11 12:40:01,newest,com.anydo +Harish CG,https://lh3.googleusercontent.com/a-/AOh14Gi-z-t_4g2bW6cqv5CG4USCCaz3EzQtxBvLPFSu_A,Good but need some improvements. Some times completed task show in to fo list,3,0,4.2.1.2,2019-11-09 03:10:15,"Hi, that's strange, please send us a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2019-11-11 12:44:44,newest,com.anydo +ɛռtʀօքʏ •v•,https://lh3.googleusercontent.com/-CoAdIhD63vw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOGA6kMOuObkfY7yXwUyHHWziRJow/photo.jpg,"Honestly I would give it 5 star, since I'm not going to subscribe or anything, but the fact that you need to subscribe just to change the theme (just to change it into dark theme) is deal-breaker, so 3 star it is. I know, you guys also need to make money but for a appearance options need to be paid is a no for me, I get it if it's like new option like color-coding so you can easily sort stuff, things like that.",3,19,4.15.9.9,2019-11-07 16:03:02,,,newest,com.anydo +Noteる fj,https://lh3.googleusercontent.com/-9DnapVNGF-A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMdMhgDtGJz15tvJMG29HZfNK589g/photo.jpg,conflict Strack,3,0,,2019-11-05 23:44:20,"Heya! As mentioned before, please send us a screenshot of what you're seeing, along with your device details to customers@any.do so we can look into this for you :)",2018-03-29 14:21:57,newest,com.anydo +Tuukka Rinkinen,https://lh3.googleusercontent.com/a-/AOh14GhRZVSDOI9rRFjyWaw9QO8LN3GhfhhC4-Q_Cd-L5g,"Much better since my last review in 2015. Right now, easily the best to-do app out there. All the issues I faced back then, are gone. One thing that makes this a 4-star (above average) app rather than 3 (average), is the automatic inclusion of past-due tasks in Today-list. Of course, if it's past due, it has to be due today. Somehow most to-do apps miss this. 5-stars will be when(or if) they actually release the google assistant integration and it actually works without issues. That Zapier-stuff, though.... what a joke. If anyone has the time to deal with that, they have plenty of extra time and have no need for a to-do app. Also, including zapier as a premium feature, with zapier itself requiring an expensive subscription to actually work, is a pretty damn dick move. Yea, just thought about this again, and this dick move costs 1 star. Pay $10 for a 1 star extra DLC!",3,0,4.15.9.9,2019-11-04 06:49:56,"Thank you for your feedback! Please note Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. We modeled all our pricing tiers off of similar services so we could stay competitive. We also occasionally offer promotions, you can inquire about them at premium@any.do!",2019-11-05 15:36:42,newest,com.anydo +SHAILESH PATEL,https://lh3.googleusercontent.com/-zXjWiT3qPmQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOGP8wAL2WM30TrJ_1Pm1byNI-y0w/photo.jpg,App is good but it could have better,3,0,4.15.9.6,2019-10-31 11:01:05,"We appreciate your feedback, let us know what else we could do at Customers@any.do!",2019-10-31 16:44:23,newest,com.anydo +Neal Yumnam,https://lh3.googleusercontent.com/-ScmHt5XaPXo/AAAAAAAAAAI/AAAAAAAAeiU/AAKWJJMyJy3qml7Hp5rKxu4VyNTKw4hPUA/photo.jpg,"There's a very important feature missing — to SELECT AND EDIT MULTIPLE TASKS at once. Also, the app could improve speed wise. It feels a little SLOW and HEAVY, specially with the transition animations. Otherwise, 5 stars.",3,1,4.15.9.6,2019-10-29 07:08:56,"Thank you for your feedback. We truly value our users input, and our Product team is always adding user suggestions to our roadmap. The suggestion you posted has already added to our UserVoice forum, and you are welcome to vote for it here: https://bit.ly/2NsGSJF +The more votes a suggestion gets, the more likely it is to be added in the future!",2019-10-31 16:32:20,newest,com.anydo +Ovidiu Toader,https://lh3.googleusercontent.com/-JwkepvaNyD8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPQGE3KIg-_534vgya8HOs6bPyPjg/photo.jpg,"very simle with few functions, maybe for childrens. there are missing a lot of usual functions that others free app have: time tracking, a true calendar where you add tasks by minutes steps, no task, subtask numbering, no tabel, spreadshets tasks, no custom fields, no timesheet , etc on this premium account. If you want and work with advanced GTD, planners, project management go away and dont lose your time.",3,5,4.15.9.6,2019-10-28 10:31:48,"Please note that of your feedback is already on our UserVoice forum, and is pending more votes, you are welcome to vote for them. +Event reminders: https://bit.ly/2NlXWkH +Time tracker: https://bit.ly/2JtQl2d +If you have any more feedback, we would love to hear it in more detail at Customers@any.do",2019-10-28 09:42:26,newest,com.anydo +Mario Ratkovic,https://lh3.googleusercontent.com/a-/AOh14GgAr6XxqRXibTywIgpcSfdu6aFCH42659V8Kho,Unfortunately Tic Tick is better app for me 😑.,3,0,4.15.9.6,2019-10-27 13:42:37,"We're sorry to hear you aren't enjoying Any.do. If you have any feedback about the app that you'd like to share, we'd love to hear it at Customers@any.do. We're constantly trying to make the best app possible for our users, so feedback like yours is vital for improving the app.",2019-10-28 09:45:58,newest,com.anydo +Steven Sutherton,https://lh3.googleusercontent.com/a-/AOh14Gg2D6nwqxiDjgQlB_38EpD7LGNLnu3_wRtW_-1plw,The reminders aren't partixularly noticeable.,3,9,4.15.9.6,2019-10-26 17:17:42,"If you're experiencing issues with your reminders, we highly recommend you take a look at our Help Center Troubleshooting article on this: support.any.do/why-did-my-reminders-stop-working/ or contact us directly by submitting a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2019-10-28 09:15:59,newest,com.anydo +Aymia H,https://lh3.googleusercontent.com/a-/AOh14GifmycTwTe9B9D-Kki_VLz6HkQtQXq9nuO4vDm_sw,I set an event and told it to remind me an hour before. It didn't remind me and I ended up missing my doctors appointment. Not good.,3,0,4.15.8.11,2019-10-24 08:03:00,"If you're experiencing issues with your reminders, we highly recommend you take a look at our Help Center Troubleshooting article on this: support.any.do/why-did-my-reminders-stop-working/ or contact us directly by submitting a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2019-10-27 09:07:05,newest,com.anydo +Cody McLean,https://lh3.googleusercontent.com/a-/AOh14GgAuArKrtULzOgng7s7NhDpC6HYs8TFlb2jpmR4Kg,I've turned off every notification option I can find and I still get pop up reminders on my screen. I just want a silent reminder in my notification bar. Can't tell you how many times a reminder has popped up during a call and I can't press the end button to hang up. Or accidently clicked the reminder while trying to do something else on my phone. Please give an option or tell me where to find it for notifications WITHOUT a popup on the screen that steals focus on whatever I'm working on.,3,13,4.15.9.6,2019-10-23 13:04:36,"Hi Cody, please note, we have disabled the popup for anyone who uses Android Q, however we may look into adding more versions of Android to this list in the future.",2019-10-24 07:25:27,newest,com.anydo +bait ahaly,https://lh3.googleusercontent.com/-1Duzqa0HA-k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP0Tj9wU-gh5ui9hwrNcLD7C_YJKg/photo.jpg,It seems it is not designed for android users. It is look like Iphone application for me. Thats why I didn't give 5 stars,3,0,,2019-10-22 09:32:20,,,newest,com.anydo +Paula Boyer,https://lh3.googleusercontent.com/a-/AOh14GgX57caZps5kTNb35hqAbDVcPCE4pEZOn5dz6y6VBs,I accepted a 14 day free trial but changed my mind just straight away. How do I cancel? I go into my subscriptions in Google play but I do not find this app among my subscriotions. I suppose it will turn up there only when the 14days free trial is over. Pleas confirm how to cancel. Thanks//,3,0,,2019-10-22 06:59:01,"Hi Paula, in order to cancel your trial you will need to cancel your trial through the Play Store, you can do this by going to the Play Store, then the Any.do page, and cancel your subscription there.",2019-10-23 07:33:28,newest,com.anydo +Senthil Kumar,https://lh3.googleusercontent.com/a-/AOh14GiQNwy9N7XWVfT4v03WnFZ9jon-G0-Y7J9shgKpeQ,Drag and drop task is not working.. tasks disappear while dropping..,3,0,4.15.9.6,2019-10-22 04:50:46,,,newest,com.anydo +Rasool Khodayari,https://lh3.googleusercontent.com/a-/AOh14GjTEyazHRBmbWbFWdU6tHNWq3wYSZqEeRDMTnnNZg,This app would be better if it support jalali(Shamsi) date format :-),3,1,4.15.9.6,2019-10-21 16:17:24,"Dear User, really appreciate your suggestion. We will consider it for a future update!",2019-10-23 07:17:10,newest,com.anydo +Nok01 Ia01,https://lh3.googleusercontent.com/-m7_RTojRf7o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPY5qd3qFwIXKuRBFUWtL1Ra9d2cA/photo.jpg,There are much more eady to do list apps. This one is not intuitive and no time to waste searching. Maybe could be interesting after getting used to it.,3,0,4.15.9.6,2019-10-21 05:34:52,"We're sorry to hear you aren't enjoying Any.do. We believe in a minimalistic approach, and we try to reflect that in our design. This is something that a lot of our users like, however we understand that everyone likes different layouts :) However we respect your feedback, and we hope you find the solution that you are looking for.",2019-10-23 07:00:07,newest,com.anydo +Ram Thakur,https://lh3.googleusercontent.com/a-/AOh14GhWNmFI8aJA7f60LdGLPDv_w_XZS4mV05NQeDeQ,Ok,3,0,,2019-10-18 01:44:42,Hello! Thank you for rating us. Please share your ideas on how we can make the app better at Customers@any.do!,2019-10-19 15:27:34,newest,com.anydo +Linda Kenny,https://lh3.googleusercontent.com/a-/AOh14Ggp-1yIPLNQVkbQoMByP_X6_16sd9_fq2ugRxXBTQ,"Presently use for Tasks &Reminders only, but it's great! Needed support once, and was very helpful and quick! Reducing to 3 Stars. They must've made some changes that I don't care for. Too many reminder steps, and the reminder doesn't show up when it supposed to. Looking for new Reminder App.",3,0,4.10.1.4,2019-10-17 15:38:16,"What do you find troublesome about the update? We'd love to get your feedback about what specifically you liked or disliked about the new update, by writing to us at Customers@any.do. We're constantly trying to provide the best possible app for our users, and feedback like yours help us do so.",2019-10-19 15:22:03,newest,com.anydo +Joan Casals,https://lh3.googleusercontent.com/-Em2ppgdQ6Ug/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOYuLQJE3jsHubMGPv3wmU9_8bBfg/photo.jpg,"On the phone it works perfectly, but now that I've installed the app on the tablet, I realise that it doesn't have the option to rotate the screen if the tablet is rotated, please add this feature so that I can see better the tasks",3,3,4.15.9.6,2019-10-17 08:42:43,"Hi, that's a little strange, please send us a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2019-10-19 15:13:39,newest,com.anydo +Julieta Correa,https://lh3.googleusercontent.com/a-/AOh14GifZaVbDtvbACCiyi1_Z9P-v7-HKzTejeg-dzB27Q,"I used this app for a long time. But now, I don't know what happened. The alarm doesn't ring and the notification bar isn't working. The reminders don't work as well. I don't know why, but this app is working worst everyday...",3,0,4.15.9.6,2019-10-16 13:35:15,"If you're experiencing issues with your reminders, we highly recommend you take a look at our Help Center Troubleshooting article on this: support.any.do/why-did-my-reminders-stop-working/ or contact us directly by submitting a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2019-10-19 13:59:08,newest,com.anydo +Temp Test,https://lh3.googleusercontent.com/-4BJ-9iC8p8Q/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOrdsE9TMIUQfoPEFjhEtAYmND_AA/photo.jpg,"Working great so far until my Nokia 8.1 was forced to upgrade to Android 10 lately, after the upgrade reminders no longer show in pop-ups, though they still appear in notifications. Please advise how to enable pop-up reminders again, thanks in advance.",3,4,4.15.9.6,2019-10-15 13:13:05,"Hi, due to Android Q limitations pop up notifications, will display only after tapping the notification in your Android curtain. That said, we are working on a workaround that will allow for you to set the app to ‘draw over other apps’. This will enable you to see the feature if you so choose.",2019-10-17 07:04:37,newest,com.anydo +Bharat Gupta,https://lh3.googleusercontent.com/a-/AOh14GhsLZQxFFWmPJtfGD7tNWpKiZ8CJ69TlYI0Fgx69Q,"Too many crashes over the past few months, especially in the widget",3,0,4.15.9.6,2019-10-12 15:46:21,"Hi, that's odd, please send us a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2019-10-16 08:28:03,newest,com.anydo +Edvinas Masliukovas,https://lh3.googleusercontent.com/a-/AOh14GhevPgtSg7hmmQ8qoz0LvUy4Bsoky_bPQ3sGCu5,A good app but does not show full month tasks and that makes it hard to plan ahead or look back to previous events,3,1,4.15.9.6,2019-10-12 07:38:21,"Hi, that sounds a little strange, please send us a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2019-10-16 08:22:17,newest,com.anydo +Dee Iser,https://lh3.googleusercontent.com/-dv4ccaD86lU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOUH9UJAMD3oqFDGuFl75lzRqhhpg/photo.jpg,All the things that it advertises that it does you have to pay for disappointed,3,1,,2019-10-11 16:51:25,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. You can use Any.do for free for as long as you like.",2019-10-16 08:10:05,newest,com.anydo +Flausbert,https://lh3.googleusercontent.com/a-/AOh14Gi6JxOBGV-JorfVnt9eTOb57-t--sB1Z7WWvPj173k,"We are missing a chat feature AND notification when a task is changed / completed / modified in shared lists. Any.do is pretty good for my personal use but even though we are both premium, we don't see any possibility of interaction with the - kind of interaction Wunderlist provides not just tiny notification WITHIN the app.",3,7,4.15.8.11,2019-10-08 09:00:12,,,newest,com.anydo +Rabia Anjum,https://lh3.googleusercontent.com/a-/AOh14GiHj7rvjb-y7hcWjGGmcObAHTX4MJG5de_4BH5Tg_M,Zapier integration doesn't work for me. It says something went wrong at our end,3,1,4.15.9.6,2019-10-07 18:13:48,"Hi, that's odd, please send us a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2019-10-10 07:28:06,newest,com.anydo +Ayush Pandey,https://lh3.googleusercontent.com/-zH3CMLhK7N8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM5fWHWCD7fuy9iCHK1BSEim9Ncvw/photo.jpg,Good,3,0,4.15.9.6,2019-10-06 12:29:52,Hello! Thank you for rating us. Please share your ideas on how we can make the app better at Customers@any.do. Thank you.,2019-10-07 06:29:56,newest,com.anydo +gowtham,https://lh3.googleusercontent.com/a-/AOh14Gi4xccO1YOayCmKw3jAB9Fp1GcqzU7bb9mZ9qFk6w,Needs premium subscription for dark mode. That is so greedy. Dark mode is a basic requirement in 2019. Charging for different themes is understandable but for dark mode? Edit: i have uninstalled your app for the moment. Thank you for your consideration. I'll change my ratings from 1 to 3 for now.,3,4,4.15.8.11,2019-10-04 09:23:04,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. However there are some premium only features, that can help you be even more productive! That being said we truly value your feedback, and we are going to review a free black theme sometime in the future.",2019-10-04 08:36:43,newest,com.anydo +Cheedance,https://lh3.googleusercontent.com/a-/AOh14GikneUM6CvF9ehUw2PXTe__g2XikFmhVSWhdGyXkA,I'm giving this app 3 out 5 because there is a really annoying behaviour when you're adding a quick note and if you by mistake tap outside the text box (which one would do on the go) your note is erased and you need to start again. I'm considering uninstalling it because this happens almost every time I add a note which means that it takes me twice the time. Please at least keep the text and don't erase it in case of an accidental tap outside the box. Thanks,3,12,4.15.8.11,2019-10-04 07:11:32,,,newest,com.anydo +L OBC,https://lh3.googleusercontent.com/-55L5d4G0O-k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPNkKD_NpbJb5GjtxLUOVzIDb5LkQ/photo.jpg,The app was reccomended by my CBT therapy group but I do shift work and it's not friendly for those with rotating schedules. Great for 9-5rs who have single event tasks or those who tasks always repeat at the same tone each week or month. I need my tasks to repeat on a 4 week cycle and it ended up giving me all my tasks together each week.,3,0,,2019-10-03 21:59:02,"Hi, if you wish to set recurring reminders, you can! Just tap the task, press 'Add reminder', and select 'Repeat'. If you are talking about recurring events, please note that all events sync with your native calendar! If you want to learn more, feel free to visit our Support Center here: https://support.any.do/recurring-reminders/",2019-10-04 08:58:07,newest,com.anydo +カシャニニッキー,https://lh3.googleusercontent.com/a-/AOh14GjUmxJn_nZqvckgV7TazQLlE6oaW_Tr28pwdbCB,"Excellent app, with plenty of functionality for free users and worthy upgrades for paid users. I love that it can be used across multiple platforms. That being said, it's super unreliable so I'd never upgrade. Repeated tasks sometimes get marked off and stay on the current day, needing to be marked completed as many as 5-7x before moving to the next day. Sometimes when you add a task it'll disappear; maybe related to server syncing. But not always, so you better remember (defeats the purpose)!",3,13,4.15.8.11,2019-09-30 15:03:10,"Hi, that's odd, please send us a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2019-10-03 09:11:46,newest,com.anydo +Martin Brown,https://lh3.googleusercontent.com/a-/AOh14Gg5V5G3AuDAO97zpaHDgz21IjtFUyjQiQ7__RsUw3k,"Is this Google Calendar, Tasks and Keep? If not, why pay for a duplicate?",3,0,,2019-09-29 23:08:35,"If you're having trouble figuring out how to take advantage of Any.do, feel free to check out our help center: Support.any.do. Furthermore Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. You can use Any.do for free for as long as you like.",2019-10-03 09:00:14,newest,com.anydo +Jonathan Easton,https://lh3.googleusercontent.com/a-/AOh14GjuD5fPevxBOj96qUwU-GX1vhFxxXt35SN3vh64AY8,"Was great, but monetized and less useful as features are locked behind a subscription.",3,1,4.15.7.14,2019-09-29 18:52:34,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. You can use Any.do for free for as long as you like.",2019-10-02 19:13:44,newest,com.anydo +Elyse Eastman,https://lh3.googleusercontent.com/a-/AOh14GgYbC8xWvIl5XZeeMLAYdtt926N2LoJMF0IDNUceQ,"Overall, the app is pretty good. I have a few complaints, but they don't imapct the basic usefulness of the app. 1. The app doesn't make a noise when a reminder comes up. 2. It has been sporadic and may not keep a reminder posted even when it hasn't been marked complete. 3. The format for setting a reminder day is clunky. Recurring reminders are especially difficult and may not even be available (for example, there is no way to set a recurring reminder to every 6 months).",3,41,4.15.8.11,2019-09-29 03:27:39,This sounds very odd as we're not aware of any issues with receiving or setting up reminders. Please submit a bug report via Settings - Support and our team will look into this ASAP.,2019-09-19 14:29:16,newest,com.anydo +Trevor Trinkaus,https://lh3.googleusercontent.com/a-/AOh14GjMuOp5YpplElDbCbYwiec2w3QYL6ioFziUXIXT3UE,"Update to my original review -- to clarify, I'm saying that in previous versions you could choose which list to put the task under when doing a quick add of it via the ""+"" widget on home screen, and same for adding it from the bottom quick bar in the app. In the current version, it doesn't allow you to choose the list when doing a quick add. Your reply to my review is describing the regular (long) way of adding the task. I want to be able to choose the list when quick adding from the ""+"" widget!",3,14,4.15.8.11,2019-09-27 00:18:21,"Hi Trevor, please note that in order to choose which list you want to make a task under, all you have to do is go to your task view, tap the grid view icon in the top left, select the list you want to make the task under, and make a new task! +If you have any further questions, please let us know at Customers@any.do 😊",2019-09-26 16:53:49,newest,com.anydo +Sherri C,https://lh3.googleusercontent.com/-NHKUvYhCq4A/AAAAAAAAAAI/AAAAAAAAACw/AAKWJJMI8J_MLfD6Qw7-5WYv9uTkhf-oIA/photo.jpg,"I have been using this app ever since I switched to an Android phone 5-6 years ago, and I have liked it for the most part. However, the recent addition of the ""focus"" button in the pop-up reminder bar is annoying. Focus is only available in the premium version and there's no way to turn it off. Time to shop for a new to-do list app.",3,14,4.15.8.11,2019-09-26 15:25:22,"Please note all of the app's features are inherent to the design, therefore we are not planning on removing any of these features, premium or not. Furthermore you are not obligated to use this feature. We are sorry to see you go, but we hope you can find an app that better suites your needs!",2019-10-02 15:16:45,newest,com.anydo +selma Kedir,https://lh3.googleusercontent.com/a-/AOh14GhF2FVg24WbVNBjt6djYe39iiJm-RtUh3bbMeHwOg,Google play,3,0,,2019-09-26 10:46:00,"If you are experiancing any issue with Any.do, please contact us at Customers@any.do",2019-10-02 15:09:10,newest,com.anydo +Christopher Keffer,https://lh3.googleusercontent.com/a-/AOh14GgegCn9eVwlxzDULLL_TDtSnAx_K1-pI-gN6x5Y9w,"Has Any.do changed the way Moment works? Five stars for me until recently, and not sure if it's associated with change to Android 10 or a change with the app. I used to have Moment pop up daily. I no longer get Moment, nor continued pop-up on screen reminders for tasks throughout the day. Just looking for clarification that these are no longer features in the non-paid version.",3,9,4.15.8.11,2019-09-25 19:39:10,,,newest,com.anydo +Rigved P.,https://lh3.googleusercontent.com/a-/AOh14GjCFlCdo-BxwRtSoYcHoHoA8N_OV5FnFEMDPLhK,"Has many nice features but they lack polish - 1. Has notifications like TickTick but unlike TickTick, you'll have to unlock the phone for you to see it. 2. Has a grocery list where you can add things but you cannot add quantity.. And many others...",3,0,,2019-09-25 15:20:09,,,newest,com.anydo +Johnny Walker,https://lh3.googleusercontent.com/a-/AOh14Gh-iJllX0BhDzEqxiXmh55oCfRw-aaRERfQW3FDZSw,Question really... Interface so far seems pleasant enough. Does it work with Google assistant?,3,1,4.15.8.11,2019-09-24 06:47:42,"Hi, please note that we are currently working on an update that supports Google Assistant, and it should be ready by the end of the year!",2019-09-26 17:05:37,newest,com.anydo +"Calvin Rouse, III",https://lh3.googleusercontent.com/a-/AOh14GgWs8cQYwenh0h5Fgk9gx0fkKNW_WorbsJ13CUNnA,"I cannot add invitees u less they are in my contacts and sometimes, not then either.",3,0,4.15.1.5,2019-09-23 21:08:47,,,newest,com.anydo +2M k.o.r,https://lh3.googleusercontent.com/a-/AOh14GiXAuw98jlSAahl4hFn4u4AIVS-5D4AUpb1IZRx0w,"I'm an ui/ux designer, I use this app for 5 month I think it's great but hard to use!!",3,1,4.15.8.11,2019-09-23 05:05:12,Thank you for your feedback. Please note that you can find instructions on all of Any.do's features in our Support Center: https://support.any.do and our blog: https://blog.any.do if you have any further questions please let us know at Customers@any.do,2019-09-26 16:37:25,newest,com.anydo +Jay Yudith,https://lh3.googleusercontent.com/-VZoSd5ASxNw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPGumIfxaIzAosCgvi5LID3viKjWw/photo.jpg,"Great app! But have a few suggestions that would make it the best app in the market! Trust me people are looking for this! 1) The ability to add your schedule with a few clicks. For example you can set reoccuring events, but peoples schedules alternate. Would be great to be able to click the days you work group then at the same time and categorize them under work. (For reference look at the nursegrid app) 2) add your spouse or family directly. So everything is synced real time.(familywall)",3,0,,2019-09-20 15:14:03,"We have forwarded your idea to the product team Thank you for your feedback. We truly value our users input, and our Product team is always adding user suggestions to our roadmap. Regarding the real time sync with your family, I would recommend trying out shared lists, you can find more about it here: https://support.any.do/sharing-lists-and-tasks/",2019-09-22 12:54:25,newest,com.anydo +Kapi Eria,https://lh3.googleusercontent.com/-QIJkpwgC8is/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOkoW6Lpx44EoK7FwqlVxQBay3xww/photo.jpg,Awesome,3,0,,2019-09-18 16:43:25,Thank you for your support! If there is anything that we could do to get us to 5 stars be sure to let us know at Customers@any.do!,2019-09-19 14:55:10,newest,com.anydo +Jordan Waka,https://lh3.googleusercontent.com/-2SDTCOwZwYc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPEjZZ_YWqM1T6Aj-pV7BveJZ8Nsg/photo.jpg,"Pretty good app but nothing crazy that I can't achieve with Google calendars already if there is I'm not in need for the feature atm. I've really been looking for the feature to set a reoccurring remind with a full custom option for say repeat every 43 days or repeat 3 months, then 4 months then 3 then 4 etc this sorts of features would be amazingly handy as you would then not have to set up a new reminder for each date after having worked them out manually. If you add this feature please LMK",3,0,,2019-09-16 22:41:36,"Thank you for your feedback. We truly value our users input, and our Product team is always adding user suggestions to our roadmap. The suggestion you posted has already added to our UserVoice forum, and you are welcome to vote for it here: https://bit.ly/2mol4oZ +The more votes a suggestion gets, the more likely it is to be added in the future!",2019-09-19 16:22:12,newest,com.anydo +rajesh patidar,https://lh3.googleusercontent.com/-z4yh_lSwi5s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPBvA-AzygARNKTkG_xgSwK2rm_pg/photo.jpg,Just new,3,0,4.15.7.14,2019-09-16 19:46:56,"As a new user we recommend checking out our help center: Support.any.do. Or if you want tips or news about Any.do, take a look at our blog: blog.any.do. If you have any specific questions, you can also write to Customers@any.do, and we’d love to help you out.",2019-09-19 16:24:10,newest,com.anydo +Mehmet Faik Demirez,https://lh3.googleusercontent.com/a-/AOh14GjOSEjVL-KY8pwZTqVP7hTPzccjjLGVFJvhulm2,"Very useful app if you are in the habit of forgetting things. But it has one major defect. If you have set up a recurring reminder and if you miss one instance of that reminder, further instances will never show up. They are gone forever. I had to pay a penalty fee for late payment into my credit card because of that ridiculous bug.",3,3,4.15.5.4,2019-09-11 07:26:55,,,newest,com.anydo +CA DA,https://lh3.googleusercontent.com/-4kzJnrJEx08/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOPiY_o3Pl1q2kdQtxISfsv_l01ZQ/photo.jpg,"Tasks dont show up in google cal, and you cant schedule a certain amount of time for each task",3,1,,2019-09-09 02:04:39,"Hi, the sync feature is only available to sync events, however we do have an integration with Zapier that can help you sync all your future tasks, you can learn more about it here: https://support.any.do/zapier/",2019-09-09 14:56:14,newest,com.anydo +Raj V Jain,https://lh3.googleusercontent.com/a-/AOh14GjmMVgthO4ga_jE0adApbHrYxyWXBoLpPGEHqEHNA,UI is great/awesome. But recurring task is a very common use case. You keep it in Premium version so unable to use this app.,3,0,,2019-09-08 07:17:34,"Hi Raj, if you want to use recurring tasks you can! The premium version only allows you to have a bit more control when the task recurs, you can still set the task to be daily, weekly, monthly, or yearly!",2019-09-09 15:06:09,newest,com.anydo +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"The app UI has changes have made it very annoying to use in some cases. The custom timer, most used by me is all the way to the end and scrolling to it sometimes erases everything written in the reminder.",3,0,4.15.7.14,2019-09-06 14:28:56,"We're not sure what you are referring to. You are welcome to send your feedback about what specifically you liked or disliked, by writing to us at Customers@any.do. We're constantly trying to provide the best possible app for our users, and feedback like yours help us do so.",2019-09-10 13:28:45,newest,com.anydo +Saba Anujan,https://lh3.googleusercontent.com/a-/AOh14Gjs6P45ABfWWDfEuBHpmq26k8xsB40KaXBopWzrsA,Dont try this. They limting everythings for the premium,3,0,4.15.7.14,2019-09-06 00:45:27,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. You can use Any.do for free for as long as you like. You can see exact differences in our premium page here: https://support.any.do/premium/",2019-09-10 13:46:12,newest,com.anydo +Subham Garai,https://lh3.googleusercontent.com/a-/AOh14GgWmbj0kmHZ-iLmHCXfHe0uLo1xxtPPxYtg4ORjtMM,Events on calendar show's incorrect data and on clicking Edit the Window closes to home screen,3,0,,2019-08-31 20:50:13,,,newest,com.anydo +Immy Wimee,https://lh3.googleusercontent.com/a-/AOh14GjcZ84gl3o9hrsmwhrr6U6fj7_b-Bda2UEd6tTM,"My notifications bar is telling me i have no tasks today even when i know i do which is kind of frustrating. Plus when i log into the app, my tasks aren't in chronological order for some reason after i set times for them at the beginning of the day. Other than that, i think it's a fab app and i love the little pop ups that happen at the beginning of the day and when a task needs to be done!",3,1,4.15.5.4,2019-08-29 09:29:26,"Regarding the notification bar, this is odd! We highly recommend you submit a bug report in your app via Settings - Support. +Note that our tasks are ordered chronologically only on our Calendar View, while on our Task View you can drag and drop tasks to anywhere you like :)",2019-08-29 14:20:16,newest,com.anydo +Matt C,https://lh3.googleusercontent.com/a-/AOh14Gj5QhafzFphQ4Rsq4VJmN4wREIr0tk_M9NJ6HFVLA,Full of promise but the lack of word wrapping means task detail is hidden. Particularly bad for sub tasks where the font is also larger and therefore exacerbates the issue. If and when this is resolved I'll be able to use the app and give a more balanced appraisal.,3,1,4.15.5.4,2019-08-29 07:53:23,Thank you for your feedback! We've forwarded it to our product team for consideration. And if we see more support for a similar feature from other users we'll definitely look into adding it. :),2019-08-29 14:20:13,newest,com.anydo +သာအေး ကပြား,https://lh3.googleusercontent.com/-b-EtV0JJftU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP-bShvJmSFF-iTTNqYn7fZC0-M2A/photo.jpg,Good,3,0,4.15.5.4,2019-08-29 05:05:57,Is there anything we can help you with?,2019-08-29 14:20:07,newest,com.anydo +Anuj Narayan,https://lh3.googleusercontent.com/a-/AOh14GhOOHti2uCov-stfaJ3CiZUsb-dNtfdunZrdly1Cw,Good app bit i am facing a perineal problem. The option to select AM-PM is not working where the clock is shown. This needs to be fixed as every time i select the time is defaults to PM,3,1,4.15.5.4,2019-08-28 14:41:27,"This is very odd! We highly recommend you submit a bug report in your app via Settings - Support or contacting us directly at Customers@any.do, so we can get to the bottom of this for you.",2019-08-29 14:17:47,newest,com.anydo +Jeff Rogers,https://lh3.googleusercontent.com/a-/AOh14GguMA-NLTzxebAVtAIi1c5D-qv_IV1Ppy1Dqr2GPLg,"Decent enough GTD app, but i only started using it after reading it will be integrated with Google Assistant soon. Seems like they've been touting this integration for months, with no real action or even updates on when we can expect this! Disappointing.",3,27,4.15.7.14,2019-08-27 04:26:49,"We are sorry to hear you feel that way! We are working on the Google Assistant integration and wish to release it as soon as possible. Right now we don't have a specific release date, you are welcome to follow us at Facebook and Twitter for updates.",2019-08-28 13:06:21,newest,com.anydo +Darryl Wickham,https://lh3.googleusercontent.com/-iWinj71YSdI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJParZHBBuDOvmRn_-K1jpqCViAYpg/photo.jpg,Don't know,3,0,4.15.5.4,2019-08-26 06:54:31,Is there is anything we can help you with? :),2019-08-27 15:03:26,newest,com.anydo +Nii 1k,https://lh3.googleusercontent.com/-yt9twaNDaDM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP0TjfwUplBtEZaBgUMZK1DIXtHUg/photo.jpg,I love this app however I sent the link to several friends and they got the app and I received no premium time whatsoever . Don't be dishonest with your apps . That's lame .,3,0,,2019-08-25 22:14:36,"Please note that affiliate function works if the user signs up directly from your link. We highly recommend you submit a bug report in your app via Settings - Support or contacting us directly at Customers@any.do, so we can get to the bottom of this for you.",2019-08-26 04:11:19,newest,com.anydo +A.J. O.,https://lh3.googleusercontent.com/a-/AOh14GjKrHARPCBVSbreoOoctJImYugGICLwb3quixwMFQ,"I used to love it, but now every time I want to add any tasks it asks for speak text, which when you're trying to discretely add a reminder is offputting. Fix that and you've got a great app",3,0,,2019-08-25 20:07:16,"This is very odd! We highly recommend you submit a bug report in your app via Settings - Support, so we can get to the bottom of this for you.",2019-08-26 04:08:02,newest,com.anydo +Henry Inman,https://lh3.googleusercontent.com/-38r2hdq8mvw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOilDDQNbJ-XT18zfoQ0uytfWlC5g/photo.jpg,"Nice widgets and user interface. I really wanted to use this app for the Moments daily review, but ALL lists are included in the daily review with no option to hide lists. This made the Moments feature feel clunky and unusable.",3,0,,2019-08-22 00:45:00,You can set your tasks on other lists to Someday or future date and then you won't see them on your Moment :),2019-08-22 09:33:13,newest,com.anydo +Arudhran Thirumurugan,https://lh3.googleusercontent.com/a-/AOh14Gj4mqOBDBnDE6kV26DkedBfQL8vZZ6DeFoFYrUKILY,"Nice app overall! It does what it promises. I have two issues with this. 1. The widget seem broken. Previously, when I click on the task and mark as complete. Now it takes me to the task management page and there is no way to mark that as complete from there. I have to open the app to do that. 2. There is no way to sort tasks based on date. As a user, when I open a task list, I should see all tasks that are coming up so I can plan accordingly . I have to manually do that when I mark as complete.",3,0,4.15.5.4,2019-08-16 18:31:05,"This is very odd! We highly recommend you submit a bug report in your app via Settings - Support, so we can get to the bottom of this for you.",2019-08-18 04:22:12,newest,com.anydo +lady dulayne,https://lh3.googleusercontent.com/a-/AOh14GjGDAyYfosgcO-417PpuQBo2FrIG17deRlB-eevV4k,"So far so good but two improvements would allow me to delete the other planner app I have on my phone. 1) Reminders. I am looking for an app that would act like a print planner where I would list my tasks by day for the future. I'd like to be able to check an app for Mon., Tue, Weds., etc but without having to set a specific reminder for each. Monday should just be Monday without needing to set a time. Would be great to just have a list for the whole day. 2) For lists such as grocery lists, I don't see any setting to allow the app to stay on screen if you are currently in a store and trying to buy off your list. This is important!! No one wants to grocery shop and have to constantly unlock their screen to see the list.",3,19,4.15.6.9,2019-08-16 14:38:40,"You can set a due date without a reminder by setting a reminder and then toggling the bell icon on the right side to disable the alarm. Regarding your Grocery List suggestion, I will pass it to our Dev Team. In the meantime, you can set your device to lock only after manually closing it if you would like that under the device settings.",2019-08-18 04:21:55,newest,com.anydo +James Wallis,https://lh3.googleusercontent.com/a-/AOh14Gg0ls9NR5D3sgJ5QBHkUSxWVv-APnc_erEXvGUkxfQ,Why doesn't this to-do list app work with natural language? In most others you can write 'at 12pm do x and y!' and you'll get a task added automatically.,3,0,4.15.5.4,2019-08-15 23:55:56,"Any.do does not support natural language at this time, that said I will make sure to pass your feedback to our Product Team for consideration :)",2019-08-16 11:11:35,newest,com.anydo +Santhu M,https://lh3.googleusercontent.com/-fWqpkaXnhiQ/AAAAAAAAAAI/AAAAAAAAAvE/AAKWJJMuWI1rpmhXK4lDJcgZvFS2pN7d_w/photo.jpg,Cannot sync with google task,3,0,4.15.5.4,2019-08-11 16:12:45,You can set an integration between Google Tasks and Any.do using Zapier :),2019-08-12 06:05:04,newest,com.anydo +beth ardron,https://lh3.googleusercontent.com/a-/AOh14GhKIg9pXNcSdosXfaFK6nqY7S0b5CYhh1qz6OPBVg,"I used to like this app, it is simple and easy to use. but lately it keeps deleting subtasks, or not saving correctly, so I go back to do thing I needed help remembering, it to find it gone. it also could be a lot easier to add a reminder notification",3,0,4.10.7.3,2019-08-09 16:40:38,"This is very odd! We highly recommend you submit a bug report in your app via Settings - Support, so we can get to the bottom of this for you.",2019-08-11 04:18:10,newest,com.anydo +Hitesh Sood,https://lh3.googleusercontent.com/a-/AOh14GhSle8E6_m4IkuPgXExwDtY7dLOwOn8O1MxBdk1DQ,i will rather pay one time. update My rule is i never my buy subscription based apps. Doesn't make sense,3,0,,2019-08-09 14:37:31,"You can use Any.do for free a long as you want. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade.",2019-08-12 05:48:06,newest,com.anydo +Mauri Galvez,https://lh3.googleusercontent.com/a-/AOh14GiVBnjU55bFD7THcC0j8uS3vS8Ez3u7YKLEOZdhhkY,"Nothing special, limited options, no Google Tasks sync, and costs $2.99/mo? No thanks.",3,2,4.15.5.4,2019-08-08 10:14:53,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. You can use Any.do for free for as long as you like.",2019-08-09 11:13:32,newest,com.anydo +Mina Pendar,https://lh3.googleusercontent.com/a-/AOh14GhVtWWByiS4wDcMA-i7YjWcQF_nnRhPnk0rRfBmvA,"I have a big problem with this app, daily routine doesn't repeat unless i complete it. But somtimes i really could not complete it. then it's stop repeating, why?!!!! plz fix it",3,0,,2019-08-07 09:46:16,"In order to create the next reoccurrence of the recurring reminder, you must complete the previous one. until then, you will see it on your today list waiting to be completed. For further assistance, you are welcome to reach us at Customers@any.do :)",2019-08-11 03:55:59,newest,com.anydo +Niklas Widmark,https://lh3.googleusercontent.com/a-/AOh14Gg5pz3ofSClDd-2kbrIa5eGTUyob29QCxHKbp71MA,"This was a great app, a year or more, ago. The simplicity of adding and checking off tasks, without clutter of a bunch of fancy features, was it's strength. Basically, it was as simple as making a list on a piece of paper, with the added bonus of having reminders. Now, however, it requires more steps to add to-dos, and is becoming more of a complicated app, loosing the original appeal. As of some time ago, notifications also stopped working, which mean I will leave, after some 5+ years of use.",3,26,4.15.5.4,2019-08-05 16:10:00,,,newest,com.anydo +Yogaraj Ponnusamy,https://lh3.googleusercontent.com/a-/AOh14GhEnXeprZylmydwkzlrgvX1NpPq9xFx0YmrLtZs,Ok. Found the root cause. If I use cleaner application it will turn off the app. Now back to normal. Thanks,3,2,4.15.5.4,2019-08-04 04:40:22,"That's odd! Please follow the instructions in our Help Center to solve this problem: https://support.any.do/why-did-my-reminders-stop-working/. If you are still experiencing issues after, please report a bug via your app by tapping Settings - Support or email us at customers@any.do.",2019-08-06 06:45:06,newest,com.anydo +Erika,https://lh3.googleusercontent.com/a-/AOh14Gi0tdkYIHc7yYsNQHeo9Es7JaZslJDSd9pvQv5ViQ,"there seems go be a bug and the last task is not visible skmce it is covered by the ""I want to..."" bar",3,1,4.15.5.4,2019-08-02 06:28:46,"This is very odd! We highly recommend you submit a bug report in your app via Settings - Support, so we can get to the bottom of this for you.",2019-08-06 06:15:47,newest,com.anydo +estrella mardones,https://lh3.googleusercontent.com/a-/AOh14GhN8_wwEKftgb4x63RnAsVVufB4bP3fBp579LD7Sg,"I don't like a widget with the monthly calendar plus events plus task. That monthly calendar is too big and unnecessary. I would like to have the option to watch a widget just with the date, the events and tasks. Something SYMPLE: As if we can watch it in the application the same would better in the widget. When they change it I'll give the 5",3,0,,2019-07-30 14:35:32,"Thank you for the feedback! We've designed the calendar in both the widget and the app in order to maximize productivity. For now we have no plans on changing it; however, we will forward this to our dev team for consideration.",2019-07-31 08:58:22,newest,com.anydo +Amanda Roth,https://lh3.googleusercontent.com/a-/AOh14GiAaxeLKz9eFUQJzEL2hYmD7uzXzOXNmO927kUMkw,"the app its good and all but i cant do anything without the app telling me i cant do it cuz i got to pay to do it and its very anoying for that i go to an app that is called OurHome that is completely free and has all the features ok the ""Any.Do Premium"" for FREE so check that.",3,24,4.15.5.4,2019-07-29 16:55:32,The majority of our app is free - there are only 3 features that are exclusively premium as well as a few limited features. You will only see the Premium pop-up when you try to use a feature that is exclusively Premium. You can find more information about this in our Help Center: https://support.any.do/premium/.,2019-07-30 14:23:07,newest,com.anydo +Dennis Bareis,https://lh3.googleusercontent.com/a-/AOh14Gh-BN6ustOnMs86NplPBdEqarsU7Tt7Fx6gjBWI-1I,"Subscription based (if you want non-trivial repeating tasks and no task repeating on completion option either), rather pay more upfront, uninstalling will stick with Toodledo.",3,4,4.15.5.4,2019-07-29 09:24:01,"Recurring tasks are a free feature. There are only advanced recurring tasks that fall into the premium category. You can find more information about this feature here: https://support.any.do/recurring-reminders/. We decided a subscription is the best pricing for it, like similar apps, but please note that you are in no way obligated to upgrade.",2019-07-30 14:30:56,newest,com.anydo +Sajid,https://lh3.googleusercontent.com/-5KvDKYnWtUo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN3zfL5N7OmiJKshEday8ggb-Uwgw/photo.jpg,good but need group list/ list inside list option.,3,0,4.15.5.4,2019-07-27 11:53:16,"You are able to share lists and you can find more information about this feature in our Help Center here: https://support.any.do/sharing-lists-and-tasks/. Also, within lists are tasks and within the tasks you can create subtasks (a list of subtasks). You can find more information about that here: https://support.any.do/subtasks/.",2019-07-29 09:05:45,newest,com.anydo +Mitali Sajjan,https://lh3.googleusercontent.com/a-/AOh14Gha51yKLPOI5sm3F0oiQY5_rB_CpOWIFYy2pqG6,No notifications and tasks are not arranged in time orders,3,1,4.15.5.4,2019-07-26 04:55:27,"That's odd! Please follow the instructions in our Help Center to solve this problem: https://support.any.do/why-did-my-reminders-stop-working/. As for your tasks, in task view they are organized by ""Today"", ""Tomorrow"", etc. so you can organize them by priority. If you want them in chronological order, then please use the Calendar View.",2019-07-29 09:11:52,newest,com.anydo +Wes Garner,https://lh3.googleusercontent.com/a-/AOh14GjnQmOlWUJSPcQyqxOH4g8z7DnHKmwvI66mI-FTXw,"Seems like it may be a good app, but I uninstalled as soon as I found out you have to pay a monthly fee for recurring reminders (which is developed once and costs nothing to maintain)",3,64,4.15.5.4,2019-07-25 01:41:53,The majority of our app is free - there are only 3 features that are exclusively premium as well as a few limited features. Most recurring reminders are free and only a few advanced ones are exclusive to premium users. You can find more information about this in our Help Center: https://support.any.do/recurring-reminders/.,2019-07-25 08:18:59,newest,com.anydo +ojo adekunle,https://lh3.googleusercontent.com/a-/AOh14GihLvcib91OEFbCkld2Orf4De-OqXdkShcvxEhzMn8,"it's a very useful app, especialy when you are trying to form new habit and you need constant reminded to do that thing but what i hate in this app is y do i need to subscribe it don't make any sense at all.",3,2,4.15.5.4,2019-07-22 18:05:24,The majority of our app is free - there are only 3 features that are exclusively premium as well as a few limited features. You can find more information about this in our Help Center: https://support.any.do/premium/. Be advised that you are in no way obligated to upgrade.,2019-07-24 09:33:57,newest,com.anydo +Wardowilkins,https://lh3.googleusercontent.com/-N8oW6QaV59M/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOnmmXjeNWlZpthhYLb-esqVkZI0w/photo.jpg,"Really great app, great interface, easy to input tasks but you can't have your tasks show on Google calendar which is pretty disappointing.",3,1,4.15.5.4,2019-07-22 18:01:51,"Any.do works so that you can integrate as many calendars you want into it and if you add any events to the native calendars, those events will appear in Any.do. However, if you add an event to your Any.do calendar, the event will not appear in your native calendars so that you do not, for example, add personal events into your work calendar.",2019-07-24 09:33:50,newest,com.anydo +"ALPHA, Abdullahi Aliyu",https://lh3.googleusercontent.com/a-/AOh14Ghj-kyBEcOJiAxfI2YddV1TZ3BmIq1XrOTM5Azavg,Does not work for Oreo,3,0,4.15.5.4,2019-07-22 10:14:43,"We are not aware of any issues with Any.do and Oreo. Any.do does support Oreo so this is odd. Please email customers@any.do with your device, OS, Any.do version, and a description of your problem so we can get to the bottom of this for you.",2019-07-24 09:29:04,newest,com.anydo +Doni Firdaus,https://lh3.googleusercontent.com/a-/AOh14Gg_Yi1S1ZLFSqiFadoISztcJQRDAk8V_Cm4Vs7j,"There is a bug, I can't scroll down.",3,1,4.15.5.4,2019-07-21 23:18:19,That's odd! Please submit a bug report in your app via Settings - Support or email customers@any.do so we can get to the bottom of this for you.,2019-07-22 08:01:55,newest,com.anydo +Julian Ingel,https://lh3.googleusercontent.com/a-/AOh14GgPp8YupBFRkUVMzKtpgpIfVVfzGm8TAtBJDKxScTA,"This is a great app for a group. But what it lacks is a ""comment"" for every tasks. (Or even a separated note section)",3,0,3.4.29.3,2019-07-21 05:35:52,"You can add notes to any task and they will be shared if the task is shared! You can find this by tapping the task and scrolling down to where you see ""Notes"". If you have any more questions or a problem using this, please contact customers@any.do with your device, OS, and Any.do version and someone will be happy to help!",2019-07-22 07:58:31,newest,com.anydo +vishnu prasad,https://lh3.googleusercontent.com/a-/AOh14GjeIfA7muJ9AeQdWLZhGAcCoC0z8ouFJCsjcYnkWQ,its not working in my op6 properly ..i am not able to access the full functionality of task in notification area...looks like a bug,3,13,4.15.5.4,2019-07-18 19:30:53,"That's odd! Please follow the instructions in our Help Center to solve this problem: https://support.any.do/why-did-my-reminders-stop-working/. If you are still experiencing issues after, please report a bug via your app by tapping Settings - Support or email us at customers@any.do.",2019-07-21 13:15:54,newest,com.anydo +Doga Yucalan,https://lh3.googleusercontent.com/-Q4x1vH9XFcE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMb5eUuGqKMemgCMJgiJ-t4g_A01Q/photo.jpg,"It is an okay app, but it keeps logging me out once a few weeks for some reason.",3,2,4.15.4.11,2019-07-17 13:53:43,That's odd! Please submit a bug report in your app via Settings - Support or email customers@any.do so we can get to the bottom of this for you.,2019-07-21 11:55:12,newest,com.anydo +Joshua Werbelow,https://lh3.googleusercontent.com/-EVnCKjxiIm8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP3SDQbzTTrvkS0jJoX5pDpOM1J2g/photo.jpg,uninstalled do to app starting randomly,3,0,4.0.11.3,2019-07-16 12:05:52,"That's odd! Please email customers@any.do with your device, OS, and Any.do version so we can get to the bottom of this for you.",2019-07-17 08:29:50,newest,com.anydo +saw lay,https://lh3.googleusercontent.com/a-/AOh14Gj4MhdRuXVZ8l3N7uZ0ZknxBi_ulLQnaWkWBoaSWbs,good,3,0,,2019-07-15 19:09:24,So why only 3 stars?,2019-07-16 09:49:49,newest,com.anydo +Humphrey Nunoo,https://lh3.googleusercontent.com/-FdVPptAjifs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNWLTAeFVVGKIqOFXrAKjhZX9F-LQ/photo.jpg,marvellous,3,0,4.15.4.11,2019-07-13 18:52:55,So why only three stars?,2019-07-15 11:09:09,newest,com.anydo +Daniel Serratos,https://lh3.googleusercontent.com/a-/AOh14Gi_vwrKm56rfV4NHw69ikvQqcnhbG2Tv6pfCxj4Xg,I really like must of the app but it has 2 horrible bugs that made me uninstall it. Whenever I make a new event in the widget it places it a day after the date that I chose and then the edit button doesn't work and you are stuck with it and it might get confusing. I might download it again if that is fixed.,3,1,4.14.1.2,2019-07-11 04:34:05,We are not aware of any issues with adding events through the widget. Please email customers@any.do with your account and device details so we can get to the bottom of this for you!,2019-07-11 14:27:40,newest,com.anydo +Mick Hemingbrough,https://lh3.googleusercontent.com/-0AZvriK6Qw8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOFiO1ThRxsrFa-4sME5fY5VahqQg/photo.jpg,hi love the app so paid to remove adds on my phone but they are still showing on my tablet how do I remove.,3,0,4.9.1.2,2019-07-10 18:12:37,Any.do does not allow any third-party ads on our app so this sounds very odd. Please email premium@any.do with your account details and screenshots of this so we can help you!,2019-07-11 14:31:08,newest,com.anydo +Lesley Shelton,https://lh3.googleusercontent.com/a-/AOh14Gj53PImXxk3mDGpUOUBFyUy_f5AqELGZavOXypXNA,"Where is the priority setting? My app interface doesn't match the video you created for new users. I liked everywhere and can't find any any to prioritize tasks, only set a time for a reminder. Please provide up to date instruction for setting priorities and other details for using the app. Thanks.",3,2,4.15.4.11,2019-07-07 20:49:08,"Thank you for the feedback! We are going to update the video in the next couple of weeks with a new version. You can find all of the features in our Help Center and here is the direct link to our color tags, which you can use to prioritize your tasks: https://support.any.do/color-tags/.",2019-07-09 13:28:55,newest,com.anydo +Chinmay Garg,https://lh3.googleusercontent.com/a-/AOh14GjW8ks1IMftC8_Aw572gGsCxxz7iae-25VYuhkRrg,"This app was a life saver for me. But its not working properly with my new OnePlus 7. It doesn't gives reminders which I set for whatever time. I get it once in a while, but most of the time no reminder. Please provide a solution for this asap. Thanks. Edit (7/7): It started working now. All I did was, in the battery settings, selected Any Do app, n selected the option Dont Optimize in it.",3,8,4.15.4.11,2019-07-07 13:40:20,We are so happy your app is back up and running smoothly now! 😉,2019-07-09 11:08:30,newest,com.anydo +Denny Setiawan,https://lh3.googleusercontent.com/a-/AOh14Gh-aAaVmxNuPS3wsiNbCcA7BeQFR2TejTOVFdujZA,I hope i can change the template instead of this morning or tomorrow morning,3,1,4.15.4.11,2019-07-07 10:00:35,Not sure what you're referring to :) Please send us more details to customers@any.do so we can look into this for you.,2019-07-09 11:06:00,newest,com.anydo +Christopher Knotts,https://lh3.googleusercontent.com/a-/AOh14Gh5DAzK8bVuRZ78ZD5A91T1B5_huRu5raxrPlGP9ak,"Decent app. Would try premium, but not going to pay yearly, almost $50 for it. Offer a monthly plan and I might try it.",3,3,4.15.4.11,2019-07-04 18:44:06,We have a monthly plan via the web app for desktops only. You can find more information about this here: https://www.any.do/premium.,2019-07-09 11:33:54,newest,com.anydo +Maxim Khasiev,https://lh3.googleusercontent.com/a-/AOh14GjHSUvKR4WmSZLDNdpaJCpd2JBwBGHKgF-2K8kNtQ,"9am ""plan your day"" bothers a lot, and I didn't find how to turn it off. Also, reminders for events don't work, and I relied on them a couple of times",3,0,4.14.1.2,2019-07-04 16:51:05,"The ""Plan Your Day"" can be disable under Settings - Moment but the fact that event reminders are not working is odd. Please submit a bug report in your app via Settings - Support or email customers@any.do and include your device version so that we can help you!",2019-07-09 12:48:55,newest,com.anydo +Nancy Mueller,https://lh3.googleusercontent.com/a-/AOh14GgJ6qTpnmRamDk1H_-VC_vVKlO8FYxbYyMHVMIriw,"Mainly, I want the option to have a bigger font!! I forgot to cancel after the free week so I guess I am stuck with it for a year... but the ONLY reason I wanted to cancel thus otherwise good app is the font size. 7/3/19. I did not want to increase the font size of all the other apps etc on my phone in order to increase this one. The others were an adequate size. Since I could not change the size of the font internally to the app, I ended up not using it at all and now I am cancelling.",3,2,4.10.1.4,2019-07-04 05:20:38,"Heya, you can increase fonts from your device's Settings :) As for any subscription issues, you're welcome to reach out to Premium@any.do and our team would be happy to help!",2018-08-27 13:59:26,newest,com.anydo +KUMAR GAUTAM,https://lh3.googleusercontent.com/a-/AOh14Gj2Zpk53iQY_X1Dx6VXDhAy40YGMzw80DX42mS346M,"App UI is really good, i have tried almost all the top task list apps and like any.do best however would like to have Heisenberg matrix added to organise my tasks. That is the one thing stoping me. I want the quadrants features in this app and i would be absolute member of this app until forever.",3,0,3.4.12.8,2019-07-04 03:36:34,Thank you for your feedback - we appreciate the suggestion! We are forwarding this over to our dev team for consideration 😊,2019-07-07 13:11:19,newest,com.anydo +Lathifah Nur,https://lh3.googleusercontent.com/a-/AOh14GgqiDBW86eltOhzsiOeYb-g_EZw_DvfLHEsE7CvjQ,I just downloaded the app and tried to make a reminder but I didn't get any notification. Do I have to keep my mobile data on if I want to get notified?,3,6,4.15.4.11,2019-07-01 14:51:16,"No, that's odd! Check out this page in the Help Center to see if it solves your problem: https://support.any.do/why-did-my-reminders-stop-working/. If you are still experiencing issues, please submit email customers@any.do, so we can get to the bottom of this for you.",2019-07-07 12:40:18,newest,com.anydo +Richard Mulvey,https://lh3.googleusercontent.com/a-/AOh14GgiBjS92UghU32TSBLUx360fZpWVoTRXNbroo2_,"seems legit, but I don't know... I don't use it.",3,1,,2019-06-29 03:01:29,"You should try it out, Richard! The app is free and you can download it in the App Store, Google Play Store, or on the web 😊",2019-07-04 11:24:46,newest,com.anydo +Paul Wiggins,https://lh3.googleusercontent.com/a-/AOh14GgoYXBrT2e26HMYNOyTj17kQvigvk5Fjq0mWPrlKw,good app but at present unable to add additional attendees to events as it causes the app to crash. also it would be good to filter lists appearing on the calendar,3,1,4.15.4.11,2019-06-27 21:08:10,"This is very odd! We highly recommend you submit a bug report in your app via Settings - Support, so we can get to the bottom of this for you.",2019-06-30 06:45:01,newest,com.anydo +Samir Ali Khan,https://lh3.googleusercontent.com/a-/AOh14GglDGih7mlbhLKqeqxWvTRW2QZ2HD-3RnyCZkKpQA,needs an AMOLED Black dark mode I am sick and tired of blinding myself everytime I use the app in the dark. Would re-install in a heartbeat if and when that happens.,3,0,4.15.3.4,2019-06-27 11:00:06,The dark mode is available to our Premium users. You can learn more about our full Premium offering here :),2019-06-30 06:29:16,newest,com.anydo +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,The android app is pretty good but the web app is lacking. I need both for a work flow that works for me. Things like clear colour coding on projects across all platforms is needed. Maybe this exists but I couldn't easily find it.,3,0,4.15.4.11,2019-06-27 10:02:22,We are planning on adding color tags to our Web App in the near future :),2019-06-30 06:27:57,newest,com.anydo +Anissa Mayangsari,https://lh3.googleusercontent.com/a-/AOh14Ggm4xxYqYuVXmR1hVhI9Z-yGjNmaqcJDn-iZ4t0_cs,"i like the app, but when i open the app it always pop up to upgrade the app. this is a little bit annoying, since i just wanna check the to do list",3,2,4.15.4.11,2019-06-26 08:27:29,"You should only receive a pop-up about Premium if you try to use a Premium exclusive feature, plus one time when you first log in. If you are seeing it more than this, please submit a bug report in your app via Settings - Support so we can look into this for you.",2019-06-30 04:47:17,newest,com.anydo +Fernanda Pelaez,https://lh3.googleusercontent.com/-GVkLuH3k4WQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMGyt10YS4ayQsgWV9qViLJzRmocw/photo.jpg,"I'm new to using Any.do, so I'm still really unfamiliar with the app. I'm so far finding that the free version is quite limited... I wanted to try the free version before doing the free trial for the premium, to compare the differences. The main point I'm unhappy with, is the fact that the reminders don't make any noise, so if you're not looking at your phone, you never realize you're getting a reminder. Is there a way in the free version to put a sound to the reminders?",3,20,4.15.4.11,2019-06-25 08:44:58,"You should hear sound when receiving an Any.do reminder! We highly recommend you submit a bug report in your app via Settings - Support, so we can get to the bottom of this for you.",2019-06-30 04:15:01,newest,com.anydo +Goktug Erol,https://lh3.googleusercontent.com/a-/AOh14GhjRqI-uqq26JLkGRx4yDRfPfhUM5m1ve1gIW4Olw,It's very nice. I would definitely buy the premium version if it was one time payment but they ask monthly subscription...,3,0,,2019-06-25 03:24:41,"Any.do is not only a product but also a service. We are continuously adding new features, keeping your information synced and safe 24/7, and providing Priority Support for any need you may have. Since Any.do is offering much more than a standard product, we have decided a subscription is the best pricing for it, like similar apps on the market :)",2019-06-30 04:05:26,newest,com.anydo +Dhiraj Jamdade,https://lh3.googleusercontent.com/a-/AOh14GjPvI2bAV3Y9W78wkqqHCKl9d_z1Ctw4BXndj-ckQ,ok,3,0,,2019-06-24 20:16:38,Is there anything we can help you with?,2019-06-26 07:30:47,newest,com.anydo +Brent Barnhisel,https://lh3.googleusercontent.com/a-/AOh14GiXMzpgaP9u_ENhy6za6I0Zjifa5zApDY7BRpmQRw,"Great for daily list. Used to use the grocery list. Used to. Had to turn it off due to spam. If it continues, I'll uninstall the app. UPDATE/CLARIFY: IMO, spam is getting items added to my grocery list that I don't want & never buy. It was the app telling me ""we've added XYZ to your grocery list""",3,11,4.15.4.11,2019-06-23 12:27:39,"This is very odd! We highly recommend you submit a bug report in your app via Settings - Support, so we can get to the bottom of this for you.",2019-06-24 07:49:14,newest,com.anydo +inaz swift,https://lh3.googleusercontent.com/a-/AOh14GjRRL75CVFTL4uP1CgAO76O7jMzLNtPFuo6TfEG,it is really good but the instructions are very simple . i couldn't use the app to its full potential because i didn't know how .,3,0,,2019-06-21 19:55:00,"You are welcome to check out our Help Center (https://bit.ly/2sO10ft) Youtube channel (https://bit.ly/2HeafzE) and blog (blog.any.do) for any questions. Also, feel free to reach out at customers@any.do :)",2019-06-24 07:05:39,newest,com.anydo +Az Li,https://lh3.googleusercontent.com/a-/AOh14GizPaE8fL7s-VSCjGB_1LRDaXbhswudFGN2kgi2CgU,"The app is great, wish the premium version was cheaper though. 3.49 per month is just too much.",3,2,4.15.4.11,2019-06-21 15:51:24,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. You can use Any.do for free for as long as you like. You are also welcome to reach out to us to hear more about our special offers at Customers@any.do :)",2019-06-24 05:20:58,newest,com.anydo +Luis M.,https://lh3.googleusercontent.com/a-/AOh14GhFazPQOzoHaJd5XwlCpXBNbb_pxkOKYOYPEk0ma14,For change the colors we have to pay...? No thanks Uninstall process..,3,5,4.15.4.11,2019-06-18 14:05:29,,,newest,com.anydo +Srittam Das,https://lh3.googleusercontent.com/a-/AOh14GgJ86rkqGnU4RX7YQlRFAyybKjYVJAYCe0smxl3UsY,Not showing contact suggestions after the latest update. I am using Nokia 6.1 Plus with Android Pie latest security patch.,3,2,4.15.4.11,2019-06-18 05:51:18,"This is very odd! We highly recommend you submit a bug report in your app via Settings - Support, so we can get to the bottom of this for you.",2019-06-20 08:02:34,newest,com.anydo +fardin emamdadi,https://lh3.googleusercontent.com/-GBGbHdb7PyI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMJW-70WzPoJ5xEJul4kbclj9v8ZA/photo.jpg,یاشار,3,0,,2019-06-17 09:00:27,We love users feedback and would greatly appreciate if you could send us a detailed review to Customers@any.do so we can learn and improve in the future :),2019-06-20 07:32:49,newest,com.anydo +Lisa Maree,https://lh3.googleusercontent.com/a-/AOh14GgETXEY_4Sw7guvwno627UBErD09m1v-BMtfL22uw,"it was working great, for about 2 weeks but now shuts down ant time I try and invite atty attendee to any event. so disappointed. I thoight this was going to be my ""go to"" app and be reliable. the search continues....",3,7,4.15.4.11,2019-06-17 08:04:39,"This is very odd! We highly recommend you submit a bug report in your app via Settings - Support, so we can get to the bottom of this for you.",2019-06-20 07:32:28,newest,com.anydo +Anna Atabekyan,https://lh3.googleusercontent.com/-4xBsVQV1lqE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMCvgwzv4o93gvsHZYPlfLRPS6eHw/photo.jpg,First impression is sufficient but not excellent. There are no settings for applying priorities to tasks and I couldn't find also a setting for repeating tasks (daily or for certain periods) for specified hours (from 17:00 - 20:00).,3,1,4.15.3.4,2019-06-17 07:47:48,You can drag and drop tasks for prioritization as a standard user. Premium users can also use Color Tags. You can learn more about how to create recurring reminders here - https://bit.ly/2GAP1JW :),2019-06-20 07:31:38,newest,com.anydo +Dr Jogi Bhaskar Patra,https://lh3.googleusercontent.com/a-/AOh14GjolLDI17CGFWB5LLBvuxJdyOeIwRebHII400yc9Q,"Recurring tasks an essential feature is available only in premium. Premium is not available for one time purchase. monthly payment is way too much for an Indian. it got to be affordable with one time payment for everyone to use. may be some one time payment option for different features like recurrent tasks, location reminder and paid themes would have been made it accessible for many.",3,34,4.15.4.11,2019-06-16 18:40:51,"Our standard recurring reminders are available to all of our users, you can learn more about here - https://bit.ly/2GAP1JW. To learn more about our special Premium offers, please reach out to us at Customers@any.do :)",2019-06-19 07:23:42,newest,com.anydo +Vivien,https://lh3.googleusercontent.com/-6npLVkUGPsA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPCxv62Z63Vf8BKGylOGFKG612d0Q/photo.jpg,"Please allow ability to scroll to see all the tasks. other than that, I like the main features and the shopping list",3,1,4.15.4.11,2019-06-10 15:31:52,What do you mean?😀,2019-06-11 13:57:08,newest,com.anydo +Renz Original,https://lh3.googleusercontent.com/a-/AOh14GjhktKku0eR0-qvxzeUYtRi9NLPgEQA1WifQ3s,Good but needs a widget,3,0,4.15.3.4,2019-06-10 05:43:48,We have a widget http://support.any.do/widget :),2019-06-10 14:49:04,newest,com.anydo +Tish Kee,https://lh3.googleusercontent.com/a-/AOh14Gj4dtieHUY64-Y-Fmi6ymwUlvB7wIC6uxJ4fRxUwt0,Don't want to subscribe...,3,1,4.15.4.11,2019-06-07 16:21:24,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. You can use Any.do for free for as long as you like.",2019-06-10 14:22:24,newest,com.anydo +Arush Gupta,https://lh3.googleusercontent.com/a-/AOh14Gh4T22tqLxhTaUX0HlwsIyeJlGau38gEXsKWz8m2w,Love the app... But the reminder function is not working well . Otherwise app is awesome . Plz requested to fix it soon,4,1,4.17.0.3,2020-04-01 16:56:32,,,most_relevant,com.anydo +Adel Abdull,https://lh3.googleusercontent.com/-1kqK-KsZWEM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOr0rwKIgM_2r43Gbvi8_6dghbhZw/photo.jpg,"Reminders don't pop up if the app isn't open such as clearing all open tabs or if you haven't opened it at all in a day. I think that's why the app should be for, remind you because you may not have the time to. It's a good app but pls I'd like that this be worked on. I would also be nice if you can permit the option to pick alternating days or weeks as frequency of a task may not fall under weekly or daily. (e.g Tuesday, Thursdays and Saturdays).",4,37,4.16.4.6,2020-01-25 08:59:53,"If you're experiencing issues with your reminders, we highly recommend you take a look at our Help Center Troubleshooting article on this: support.any.do/why-did-my-reminders-stop-working/ or contact us directly by submitting a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2020-01-27 08:42:09,most_relevant,com.anydo +Stephen Mbugua,https://lh3.googleusercontent.com/-NAgqkQV0ST0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNRcJs9P96qq-KmgZU9ChBcA00LOg/photo.jpg,"Excellent app and honestly my life would be so disorganised without it. Really helps me to stay on track. My only request would be to give me greater control over when events repeat than the current setup of every day, week, 2 weeks, etc. (E.g. Allow me to repeat events on weekdays or even better specific days. Like Mondays and Wednesdays for instance.) Otherwise the app is sublime. If this small detail is added then I see no reason to withhold my 5 start reading from you. Great app.",4,32,4.16.6.2,2020-02-23 19:35:35,,,most_relevant,com.anydo +Janinah,https://lh3.googleusercontent.com/-cczjmBFUbC4/AAAAAAAAAAI/AAAAAAAAAB4/AAKWJJM_IWalekJOG6di6FaJ7W9rYRKouA/photo.jpg,"Pros - Really good app in terms of productivity and usability. - Love how it's possible to colour code and label tasks eg personal, work, university etc. - Love that it syncs with my Google calendar. - Plus I love the app's UI. - I also like the focus option; Cons - I think the focus option should be more like the forest app and not allow you to go away from the screen/tree, otherwise the tree dies. - I also think you should be able to add attachments to events like you can with Tasks.",4,62,4.16.6.2,2020-03-01 08:34:58,,,most_relevant,com.anydo +devv24u7,https://lh3.googleusercontent.com/-IXzNzL2ad04/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNS70fPgi-P_Vva50o112_CC2aI0A/photo.jpg,"A good app. If you know exactly what you want, you'll need this app to get started. But a lot of us don't know what we want to do. We don't have a lifestyle coach to tell us how to improve our habits, or how to be productive. We seek it out in the charming articles on the internet. So maybe populate the internet with this app's usability, behind a healthy/productive living theme. Idk, just saying.",4,10,4.16.4.6,2020-01-28 06:33:15,,,most_relevant,com.anydo +Adriana Elliott,https://lh3.googleusercontent.com/a-/AOh14GjCQNbMFEV7dJoCC-_3F4P_8_a_yVsNL6GiW1t4rw,"After testing the app for a while, I was ready to purchase it but read on your user guide that searching for tasks is not available on Android. Do you know when it would be available? Also, is there a one time fee purchase option? Is there a GMAIL integration feature? Like Google Tasks? I like the minimalist simplistic clean look of your app 👍. Nice work on the Widgets 👍. Thanks 🙂",4,18,4.16.6.2,2020-02-27 04:53:17,,,most_relevant,com.anydo +milind chingalwar,https://lh3.googleusercontent.com/a-/AOh14GhvlExMNRKAQQHOvujRpaT8slJ8lGQBw0I5pzbR,"this app is just simply awesome 👌 just one thing I missed was notification sound, it won't ring when a task is due, as a result I won't be able to know about the task if I ain't using my phone.",4,2,4.16.6.2,2020-02-29 04:23:03,,,most_relevant,com.anydo +Ana Simic,https://lh3.googleusercontent.com/a-/AOh14Giy5W3Sd7A4aEp0ZazHDy7cnXF1HjT-Kq98U5YsGw,"Very good app, it's simple yet you can add layers to your tasks. My only issue is that, you need to pay for some features that are important for executing your tasks.",4,6,4.17.0.2,2020-03-16 23:58:02,,,most_relevant,com.anydo +Victor Banke,https://lh3.googleusercontent.com/a-/AOh14Gi6FPfD_c21xeClGZfF8JoOnI8YtxZXfLQYHIHU8Q,"Super good! But the Any.do Moment no longer pops up on my new Pixel 3a, which is the only reason I use this. It is enabled but only shows up in notifications, no popup. How do I get this working again?",4,4,4.16.5.0,2020-02-05 18:56:57,"Hi Victor, please make sure that your Moment is scheduled in your settings via settings => Any.do Moment, and if you are still having an issue, please send us a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2020-02-06 08:00:03,most_relevant,com.anydo +Sandra Krysik,https://lh3.googleusercontent.com/-rlc5rDArAso/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNIBWJMjKjLFWctMwIgYXjQPx8vVA/photo.jpg,"Awesome app, I love it! Simple and great reminder systems! One big thing is missing though: family calender: shared calender with family members (incisive kids without the app/phone/e-mail) and option to organise event and tasks for other familymembers.",4,20,4.16.6.2,2020-02-08 08:51:05,,,most_relevant,com.anydo +Brett Walsh,https://lh3.googleusercontent.com/a-/AOh14GipcViBrbzSRqQdw5xFuLuUUSLzGxTJR41K8odA,Reminder popups are not displaying at the bottom of my screen on my new Samsung Galaxy S20 Ultra. They only appear in the notification area at the top of screen. Is this an Android 10 issue? How do I get the popups again? It worked fine on my Samsung Galaxy S8+,4,36,4.17.0.2,2020-03-06 02:44:44,,,most_relevant,com.anydo +Raghaw Dubey,https://lh3.googleusercontent.com/a-/AOh14Gg2XfkmGWiAo1Nch8F9pN4-kTw1wnSdHfmed77L,"This application which I used thoroughly, and this application seriously deserves 5 stars ✨. I have given 4 stars because it don't have multiple user merged account in it. Which helps our 4 members of family to write their to-do in a single place.",4,7,4.16.6.2,2020-02-07 09:19:18,,,most_relevant,com.anydo +Stefanovski Igor,https://lh3.googleusercontent.com/a-/AOh14GiC_U5qbfECtqtoxd79KwNwbQwELxr_UJupTbSuHQ,I'm using the app couple of years and i really nice. It just really annoying when the reminder message pops up while you type a message or during the call (while hanging up...),4,4,4.16.4.6,2020-01-27 21:05:03,,,most_relevant,com.anydo +Muhammad Saloojee,https://lh3.googleusercontent.com/a-/AOh14GgTH95xYkkMlQqG6CIvYP0WrrTqvGqk4vs3xIDrug,"Needs an easier way to switch from other task apps, specifically common ones such as Google Tasks. Please add the functionality to import tasks, lists, reminders and events by logging in with a Google account.",4,5,4.16.6.2,2020-02-12 20:27:24,,,most_relevant,com.anydo +CANDY,https://lh3.googleusercontent.com/-V54UlUwb5Nc/AAAAAAAAAAI/AAAAAAAAEJc/AAKWJJPNn5Q9EngznapZDA4e518s5acr6g/photo.jpg,It's very simple to use you can make your list easily and remind your tasks at the moment. Thank's,4,3,4.17.0.2,2020-03-12 04:34:20,,,most_relevant,com.anydo +Drew McLaughlin,https://lh3.googleusercontent.com/a-/AOh14GhGmdx2QCE61nQKeiR3oP6IFhK2OeoPW0VoSlz0qg,Awesome app very helpful and does its purpose very well. Just wish it was free or a one time purchase.,4,0,4.17.0.2,2020-03-30 17:26:25,,,most_relevant,com.anydo +Aftab Qamar,https://lh3.googleusercontent.com/a-/AOh14GjVAsJ1kKv-V3h_2YRvzSmoJX7w2ZojWOG8m1_SxMU,App services are very best. But its very expensive. When i tap for subscribe yearly subscription google say your limit cross.,4,3,4.16.6.2,2020-02-16 06:55:44,,,most_relevant,com.anydo +Curtis Gabrielson,https://lh3.googleusercontent.com/a-/AOh14GjYe8CMCH5mTQ1OsxnvJ1xEt6TYoTfuaOPAgJEChks,Money hungry devs want about $5/mo for simple features... That's about $60/year for the fully functional organizer app. Other than that it seems nice so far.,4,4,4.16.4.6,2020-01-25 04:19:18,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. We modeled all our pricing tiers off of similar services so we could stay competitive. We also occasionally offer promotions, you can inquire about them at premium@any.do!",2020-01-27 08:38:43,most_relevant,com.anydo +Jeff Boon,https://lh3.googleusercontent.com/a-/AOh14GghfG0VPktVHZOUbgcG7oRqzrpKJfsVoCL401HrVQ,"Widget not working correctly. when updating the date of task to future date, it still shows in today task",4,6,4.17.0.2,2020-03-05 04:52:30,,,most_relevant,com.anydo +Eimor,https://lh3.googleusercontent.com/a-/AOh14GhxDBnYmtVXKDobHASPjSFDm7jAeLU0Vd4LKao3,It is exelent! Sometimes a little buggy when deleting some tasks that are daily,4,0,4.16.6.2,2020-03-01 19:02:43,,,most_relevant,com.anydo +Janak Rajpurohit,https://lh3.googleusercontent.com/a-/AOh14Gj8oPOfmtXP22ClTdRPq1ZMWoxiNy0ZZImdHrG2Nw,This platform very good platform Anything planning Just used to any do,4,0,4.17.0.2,2020-03-29 12:13:42,,,most_relevant,com.anydo +Raveen Vedarshana,https://lh3.googleusercontent.com/a-/AOh14GhSCl2zZNQ8a0r7vtxWjqfypz63gjjx7RNg7THSCw,"Good application, its better if synchronisation time can be improved",4,0,4.17.0.2,2020-03-07 06:30:08,"The sync is done in the background and depends on your device settings and when your OS is calling for the sync :) If you're experiencing any specific issues though, please submit a bug report via Settings - Support so our team can look into it for you!",2020-03-10 04:34:24,most_relevant,com.anydo +Evans Kaniaru,https://lh3.googleusercontent.com/-pCj_PUpVeZw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNpvhFDEdkBHf_7dPenADcBmNJyNA/photo.jpg,Add how long it takes to do a task instead of what time I should do the task,4,0,4.16.5.0,2020-02-07 00:55:43,,,most_relevant,com.anydo +Tyler Summers,https://lh3.googleusercontent.com/-c31JH0pxByQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOFj9ys1fCu0qasTY2pcL2ZSAVgJA/photo.jpg,"Perfect except for one thing. The 'I want to...' button at the bottom of my to do list sometimes blocks the bottom item on my list, making it more difficult to cross off. There is already an add item button on each list category, so I think it should be removed or users should be given an option to remove it.",4,4,4.16.3.6,2020-01-18 09:39:26,,,most_relevant,com.anydo +Kristina Rosokha,https://lh3.googleusercontent.com/a-/AOh14GgaaKjA5jStsax1Knu9Ga5vEcK5Jn5uyS4h4i2XNA,"The ideal task mamager for me! Perfect combination of ability to customize tasks, design and great for team work. Still would be better if tasks added to My lists wouldn't automatically add to all tasks where Today, Tomorrow etc sections are. Sometimes I need them to keep in my lists and not be added to lists with some time attachment:) If possible, I am your fan forever !",4,5,4.16.3.6,2020-02-21 19:54:21,,,most_relevant,com.anydo +Kelly_Anne_ Young,https://lh3.googleusercontent.com/a-/AOh14Gg5cnZ17ncqbC7Kl3VIeReZb0fDzMmjkRuU7xklwg,Nice but cost too much yearly to buy.,4,0,4.16.6.2,2020-02-21 20:34:08,,,most_relevant,com.anydo +Francesca Lubega,https://lh3.googleusercontent.com/a-/AOh14GgpUxG2lpzH8M0jur1g0_f-JaawyLPNeT-8_V1Vaw,Good but have to pay for many of the features,4,0,4.16.6.2,2020-03-09 16:17:35,"90% of the app is completely free and unlike similar apps, we allow our users to enjoy most of the features for as long and as much as they wish without any 3rd party ads or a requirement to upgrade :)",2020-03-10 04:27:08,most_relevant,com.anydo +Lucas Machado,https://lh3.googleusercontent.com/a-/AOh14Gjm-amISxeazZLDQYrFjV_tjYqHOZlsENZ10OYG,"I love the to do lists with simple and useful style and features, but the calendar is lacking a bit. You should be able to change events color. Would be nice to have independent notes, instead of notes in each task, if it had that, the app would be the best organizer.",4,3,4.16.2.7,2020-01-16 08:35:57,"Hi Lucas, please note that we sync all events from your native calendar, from which you are able to change the color of your events. If you would like any assistance in doing this, please let us know at Customers@any.do.",2020-01-16 09:11:06,most_relevant,com.anydo +Karl -,https://lh3.googleusercontent.com/-WO-2vnzb0Qs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOP55FO76qAA1ekC6ZDLS8oxYl8hA/photo.jpg,"Prefering this over Google Calendar. There is still an annoying bug where I cant edit/delete events added to the calendar externally (through a gym app, for example). Pressing ""edit"" then it just goes back to the calendar view instead of to editing",4,3,4.16.3.6,2020-01-09 08:02:23,,,most_relevant,com.anydo +SJ Carver,https://lh3.googleusercontent.com/-ZWAV_YpYoWk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN_ynuBLtzcJTht-qb16ZlfdrRpGg/photo.jpg,"Links to my Amazon alexa and very useful, I hated typing stuff in but now I can just ask Alexa to add stuff to my to do and shopping lists I really like it. There was nothing wrong with it before, I just don't like typing much!",4,1,4.16.3.6,2020-01-18 12:47:00,,,most_relevant,com.anydo +Ghislain Anselmo DJOKO,https://lh3.googleusercontent.com/a-/AOh14GjHSnYFPS1JH_t40hBnw0jOO3wACRefY5jmNonbkw,"LIKES ~Free; The possibility of arranging the tasks list in my own order with a simple clic ans scroll, and having it in that order as home screen widget; The possibility of having the events list widget just next to the tasks list widget. The events list also show the tasks and this seemingly appears like the rare feature of an events list and tasks list integrated on one screen. DISLIKES But it would be better if the tasks kept my prioritisation order even when they appear in the events list.",4,1,4.16.2.7,2020-01-31 12:35:53,,,most_relevant,com.anydo +Henrique Heron,https://lh3.googleusercontent.com/a-/AOh14GhgvQuV9qkexHTWrhHSwfIp5_tH75FHRklT8JhwPQ,"Great app for planning. The missing 5th star is because the reminders are restricted, and not personalizable. If you want to be reminded at a specific hour of the day, you can't.",4,2,4.16.2.7,2020-01-10 18:30:43,"Hi Henrique, please note that we do support the customization of your recurring reminders and you can learn more here: https://support.any.do/recurring-reminders/ +Please note that this is a premium feature.",2020-01-14 11:08:41,most_relevant,com.anydo +Paulus Agung Pranoto,https://lh3.googleusercontent.com/a-/AOh14Gh4pxXYiAVmd9KsWemzPBzJa2Mfy-Mep1JJd8gDhw,Helpfull apps but it would be great if there is search feature,4,0,4.17.0.2,2020-03-28 11:40:14,,,most_relevant,com.anydo +Ajay Jadhao,https://lh3.googleusercontent.com/a-/AOh14Gj57bp_shYv1pnA44Cg1-mkuoi79J0ZS-ZQsSoFuQ,You should keep recurring tasks for free. That is the only reason I left using your app four years ago and started to use google keep. Everything else is great.,4,1,4.16.3.6,2020-01-13 10:03:58,,,most_relevant,com.anydo +Samuel Ojo,https://lh3.googleusercontent.com/a-/AOh14GicWrFgjc2OGt21r4YnjlYUhnX-EkSgQFBbe3BWaw,"I'm enjoying the user interface. It's has a nice aesthetic and more importantly has pretty much everything I need for putting down my tasks. However, the widget keeps freezing on my home page, and my completed tasks for a particular day don't show up in the app for that day.",4,6,4.16.2.7,2020-01-03 07:18:10,,,most_relevant,com.anydo +Dan Gottesman,https://lh3.googleusercontent.com/a-/AOh14Gh8bIy3R2S6n5lOujlawayC-wwgwOyWBigFeb81,"Overall good and useful. I'll likely continue to use, and.. .. . ..I would like more control of reminder sounds including repeating (so i don't miss it) and sounds without needing to open app. (maybe there are settings i can adjust). also more integration with other apps including Trello and Evernote and more a general multi app share feature would be great. As is i am copying and reentering things in multiple apps, and i want to just send them.",4,16,4.16.2.7,2020-01-05 19:10:46,,,most_relevant,com.anydo +Kevin Bartschi,https://lh3.googleusercontent.com/-i1hwSGOBIrk/AAAAAAAAAAI/AAAAAAAAea0/AAKWJJPqYK5Zo-bnO8Nd9tyfiRPy5MYpRA/photo.jpg,"The app itself is great and I don't mind that there's a paid premium version. In fact I think that's a great idea, but I don't want to have to pay a subscription for a simple list app. I'd absolutely pay a generous one time price for it because the app is worth it, but I don't care for another subscription. I'll have to stick with the free version",4,9,4.16.2.7,2020-01-02 05:37:53,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. However please note that we modeled all our pricing tiers off of similar services so we could stay competitive. We also occasionally offer promotions, you can inquire about them at premium@any.do!",2020-01-02 09:27:15,most_relevant,com.anydo +Mahananda Ray,https://lh3.googleusercontent.com/a-/AOh14GjL290NgD_zm2_P88dwR3SWrFB4xx8NeApdLlWZdg,"App UI is very good. When I see my today tasks, I see all the tasks. But I only want to see my today tasks list(like todo list app). Need another feature mean automatically overdue notification when I cannot complete my today which tasks. I know that your reply, but i think it's actually perfect example on todo.list.",4,18,4.16.1.6,2019-12-05 10:40:51,"It sounds like you could use the 'Daily Planner', using the daily planner you can quickly and easily schedule all of today's tasks, including any overdue tasks you have! However we will review your feedback! If you have any other feedback, please let us know at Customers@any.do",2019-12-09 10:10:53,most_relevant,com.anydo +Ben Marshall,https://lh3.googleusercontent.com/-7bqH3tb4K1Y/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMcbDAjHeU6j7SJlL16qdHtDnd9dw/photo.jpg,Only had a couple of days and generally good experience. Ties in nicely with Google Assistant though I cant get it to automatically set a time to remind on a task when created by voice. Slight niggle that when I do certain actions completing events the app jumps to mid july on the calendar; no clue why but it's pretty irritating Overall seems to be helpful for productivity,4,106,4.16.2.7,2020-01-05 18:10:04,,,most_relevant,com.anydo +Linh Nguyen,https://lh3.googleusercontent.com/a-/AOh14GhayGqw_HeH_HMbkwgS7iOeAto_eae86bgo4lp79w,I want to love this more but I’m not heaps impressed that dark mode is free and native on iOS but not on Android. I use my devices a lot later at night and it would really help if this app would keep the dark theme the rest of my apps generally manage to keep. It’s also the one constant notification that annoys the pants off me as it is bright white against the dark screen.,4,9,4.15.9.12,2019-11-18 15:43:47,,,most_relevant,com.anydo +Daniel Diaz,https://lh3.googleusercontent.com/-OwDOZTPcnWE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM0XYWvB6uFv8RRWeFb0W0LOcJEEQ/photo.jpg,Love this app. I use it daily and it's an important part of my planning. The only thing I think would make it 5 star to me personally would be the ability to create seperate lists so that I can have 1 personal widget and 1 work widget. At the moment I can only create widgets using the same list.,4,259,4.16.2.5,2019-12-13 04:24:51,,,most_relevant,com.anydo +Fæjæ Lichean,https://lh3.googleusercontent.com/-FilPLhI2gU8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOyJJxPa8uIS2Tz_tZBEpc5_s_15w/photo.jpg,"Love the organization so far. Super easy to use even in comparison to other apps like this. Would make one change, I would like to be able to click on a specific, individual time/date block on the single day, 3 day, week calendar set up to add a specific event/task to THAT individual date/time block",4,16,4.16.3.6,2020-01-06 17:34:11,,,most_relevant,com.anydo +Tiaan Gariseb,https://lh3.googleusercontent.com/a-/AOh14GgEpl8vpg0-NdaTey59Zpi510PP_Vb3AhR6MYyS7Xw,Very nice app. It could use some more work. But I like the color tags and the plan your day feature.,4,0,4.16.3.6,2020-01-13 16:12:06,,,most_relevant,com.anydo +Bruno Robert Deschamps,https://lh3.googleusercontent.com/a-/AOh14GgSi-Vn6lVgoZPdDAsQXojKCefYGMTuysBNr7DoxtM,Becoming undispensable very fast...,4,0,4.16.6.2,2020-02-14 06:20:58,,,most_relevant,com.anydo +Daniel Zhou,https://lh3.googleusercontent.com/a-/AOh14GjTKJOyBSJINJ2e0JU-KIoCiuOdps0hCGbzjLcEKg,Repetition should not be a premium function,4,0,4.16.6.2,2020-03-01 15:02:28,,,most_relevant,com.anydo +hilary davies,https://lh3.googleusercontent.com/a-/AOh14GgsejrbI8AOCD1acqRDOpo1RHmt6UEypLIWLtmmCg,Loving this- the only addition I would have is being able to view highlighted tasks and events on the calender,4,0,4.16.2.7,2020-01-29 23:54:31,,,most_relevant,com.anydo +marya bashar,https://lh3.googleusercontent.com/--5vZIi4rL9g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO4QI6lXxoI7w7NO9yg3AoRqJEvxQ/photo.jpg,It's an excellent app very helpful I have one problem with it.. That I couldn't easily copy tasks from one day to another.. If there is an easy way to do it please help me,4,3,4.15.9.9,2019-11-17 01:36:42,"Hi Marya, I'm not quite sure what you mean, feel free to send us an email at Customers@any.do so we can assist you!",2019-11-20 15:46:17,most_relevant,com.anydo +Cheng Yung Tat,https://lh3.googleusercontent.com/a-/AOh14GhE0EgwxHBP1NTjMXxTK5EWsYIfpB9vUNicwl5RVA,"The calendar widget cannot follow up with today date, it just fixed at the date that created the widget only. Hopefully can fix this problem",4,1,4.16.0.6,2019-12-02 01:37:07,"Hi, that's odd, please send us a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2019-12-02 08:25:22,most_relevant,com.anydo +mohamed hadi,https://lh3.googleusercontent.com/a-/AOh14Gi5w0iyr5vTlknQtlcuFw0de-aKJSfoHswRxniXI3o,Good app. But it needs to have tasks accepted from Google calender,4,0,4.16.3.6,2020-01-08 19:30:30,,,most_relevant,com.anydo +Bob Williams,https://lh3.googleusercontent.com/a-/AOh14Gjx1ctxubpecux9LzfX-KFJ-blEXcHmCh9_gDJq,How to change letter style. Can't read sub titles with double lines!,4,0,4.16.1.6,2020-02-02 10:50:55,,,most_relevant,com.anydo +Morhaf Osama,https://lh3.googleusercontent.com/-Fx0crTCSrUQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMPHvsDR2DxDMKD5zHuUrw3J-a_zQ/photo.jpg,"Its a great app, although it only allows me to connect to amazon alexa, and not any other assistant.",4,3,4.15.9.12,2019-11-22 13:38:15,"Hi, please note we are currently working on our new Google assistant support, and we should have an update supporting the Google Assistant next month!",2019-11-26 09:09:42,most_relevant,com.anydo +Saul,https://lh3.googleusercontent.com/a-/AOh14GhoIlWm8kwkOtHy6AJ_UJaA8ukKqJvX0ArdmECK-g,"Smooth and simple UI. Devs could make setting an alarm for tasks even simpler with less taps, since I use reminders at specific times for each task.",4,4,4.16.1.6,2019-12-11 12:21:02,"Hi Saul, we just released a new update that can make this process quicker (v4.16.2)! Please be sure to update the app, and try it out!",2019-12-12 08:43:32,most_relevant,com.anydo +Effraim Munsaka,https://lh3.googleusercontent.com/a-/AOh14GhaU9iM3s0PkqXU4DstQ6Y9gLvbaVZ7oTlk-XA0JrE,Easy to use and I love the daily prompts to get things done! Even when I have not scheduled anything,4,1,4.15.9.12,2019-11-21 06:11:03,,,most_relevant,com.anydo +Antonios Asmpach,https://lh3.googleusercontent.com/a-/AOh14Gg_ILE88Xac1Z7n601VNX3dS9LJfb4SkfDn8tib4w,Make more advanced settings for paid subscription not the color of the theme.,4,0,4.16.3.6,2020-01-21 13:03:45,,,most_relevant,com.anydo +Addison Bainter,https://lh3.googleusercontent.com/-q-xt81TdcLs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPZ7Hcj4xhPxp222IDTylQVgB-B2g/photo.jpg,"This is great! Help ful, I get a lot more done now. I love this. It's a great app.",4,2,4.16.1.6,2019-12-06 04:38:19,,,most_relevant,com.anydo +Calina North,https://lh3.googleusercontent.com/a-/AOh14Gig0cCGwH57nEP3s5mWpYji1Pi7LnvKIPL0DFdT,Good app so far. Only problem is that there are some events that dont give me the delete option. Why is that?,4,1,4.16.1.6,2019-12-09 15:35:32,"Hi Calina, These may be due to the calendar they are from not giving the option to delete them, however feel free to submit a bug report via Settings - Support so we can look into this for you!",2019-12-10 15:53:39,most_relevant,com.anydo +Alex D,https://lh3.googleusercontent.com/-FvNrO52efpo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMpYHM7aidLJ7IpPQfvaciUcWPAJA/photo.jpg,"Not always reminder message pop up , sometimes missing time or day.",4,0,4.15.9.9,2019-11-09 12:42:56,"If you're experiencing issues with your reminders, we highly recommend you take a look at our Help Center Troubleshooting article on this: support.any.do/why-did-my-reminders-stop-working/ or contact us directly by submitting a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2019-11-11 12:47:33,most_relevant,com.anydo +Birch Wind,https://lh3.googleusercontent.com/a-/AOh14GiiIYGzfZhCop1pzUF7Go8yzt0hFFYDOr6Kx_VEsw,It seems to be a good wonderlist option. Good notifications and i enjoy having the full calendar available.,4,1,4.16.2.5,2019-12-14 21:03:34,Perfect! Did you know you can also import your wunderlist tasks? https://www.any.do/import/wunderlist/,2019-12-15 12:33:06,most_relevant,com.anydo +Fazal Abbas,https://lh3.googleusercontent.com/-9jNRuhV7Kyo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOI8dxPeLc_VMaNbVI7ZgMRing_iA/photo.jpg,Amazingly good experience that lets you manage and plan your days ahead and let's you take some time for yourself out of the haphazard schedule.,4,0,4.15.9.9,2019-11-01 04:37:35,,,most_relevant,com.anydo +Aadam Hanif,https://lh3.googleusercontent.com/a-/AOh14GgVyCTi-W_E8rReWiZH7ZB1qM9NIBlf_JRVAxr9Bw,Beautifully done...love the features,4,0,4.16.4.6,2020-01-30 14:04:20,,,most_relevant,com.anydo +Adrian Anderson,https://lh3.googleusercontent.com/a-/AOh14GhOhDgUHhsKl8VEXnMYoqbS-jV_JPBWAKBdnfh0,Very helpful and detailed app...love it!,4,0,4.16.3.6,2020-01-16 15:52:19,"We 💙 you, and we would love to know how we can make it to 5 stars. Please contact us at Customers@any.do with any feedback you may have!",2020-01-20 09:10:45,most_relevant,com.anydo +Yan B,https://lh3.googleusercontent.com/a-/AOh14GirMPiclPdo-x1QyhUSAQLY7PQFUoDoINv8HWUldg,No ads that's nice,4,0,4.17.0.2,2020-03-30 06:50:04,,,most_relevant,com.anydo +Erika Flint,https://lh3.googleusercontent.com/-6e4LnUHUEmE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM_Qn9B6FIqD-0xfsqYO3Te9bCAHg/photo.jpg,"Long time user of this app, problem is it doesn't have a search feature. Or if it does I can't find it. Sometimes I forget where I filed my note or task (again longtime user) and then it takes me a while to go through all my files to figure out which title heading I put it under, but if it had a search feature I could quickly find it and get back to being productive. For this reason I gave it 4 stars because it has room for improvement.",4,1,4.15.9.6,2020-03-12 22:12:26,,,most_relevant,com.anydo +Иван Павлов,https://lh3.googleusercontent.com/-uSvgckTEUQ4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOJ9opvTxf-aUYLSEZWMuy2vj528A/photo.jpg,"Good app, but many paid services",4,0,4.16.3.6,2020-01-10 14:38:13,,,most_relevant,com.anydo +Dr. Carla Lynette King,https://lh3.googleusercontent.com/a-/AOh14GgdtYZetWCJmn8w0osL6wlQCDnjD2Yl-m0DetLppg,Helpful for my day to day tasks. Still using free version,4,0,4.15.9.9,2019-11-04 15:06:43,"Thank you for downloading our app. We'd love to earn 5 stars, so please write to us at Customers@any.do suggesting what we can do to improve.",2019-11-05 15:37:46,most_relevant,com.anydo +Joel Baptiste,https://lh3.googleusercontent.com/a-/AOh14GgcDD0lwVU1tH7vnYplV6HCdelnaNOdUFJnz9QnJQ,Great way to stay organized,4,0,4.16.6.2,2020-02-27 12:13:11,,,most_relevant,com.anydo +Saeed Hadadi,https://lh3.googleusercontent.com/a-/AOh14GioJ_W7GKvTfH5TQQt-TVjVypnJg1iBFSUjr45IBQ,Easy to use smart and flexible options,4,1,4.15.9.9,2019-11-11 02:59:26,,,most_relevant,com.anydo +Bruce Ferguson,https://lh3.googleusercontent.com/-wySe4k_iyRs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOfKjTpQoCypmc5eioTA_Mq_kVojg/photo.jpg,"I use this for my honey-do, hardware store, and movies lists",4,1,4.15.9.9,2019-11-02 15:55:49,,,most_relevant,com.anydo +Make Money With Cassie,https://lh3.googleusercontent.com/a-/AOh14GjU0V00N4pZSqVvjtfmNDZ7WEeXgAl-JrQk9lYbOqg,"I love this app and I am so glad that I have found it. I wish I had found it sooner, then I wouldn't have wasted my money on other apps! The only things I would like improved is: - preview of the tasks in the tags and my list view. - the box view for the tags to be colour coded. Instead of the text, the whole box is in the chosen colour. - Quicker synchronisation with windows Keep up the great work!",4,27,4.15.9.6,2019-10-21 22:34:46,"We 💙 you! Please note that we display tags this way in order to allow for multiple tags to be visible for a task in list view. However, we'll be sure to let the product team know your feedback, and make sure to consider it for a future update!",2019-10-23 07:27:51,most_relevant,com.anydo +Muhdzaki Abshah,https://lh3.googleusercontent.com/-nhhgPeWnoJw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP9n89sGGyDsXPy-b73-jJV4Xg9yg/photo.jpg,Very helpful for me to list out my works,4,0,4.17.0.2,2020-03-08 14:27:16,,,most_relevant,com.anydo +Ristomatti Airo,https://lh3.googleusercontent.com/a-/AOh14Gi8iJA4n1oAHyQ_2MyYDTvokEd71Bi-S5kwZgocoI8,"Updated review based on developer reply: Sadly not for me. For example you can't 1) turn off vibration when reordering tasks, 2) quickly select multiple tasks to assign labels, 3) view a list sorted by label/tag, 4) add priority to tasks, only labels which you cannot use for sorting the list.",4,7,4.15.9.6,2019-10-16 15:45:05,,,most_relevant,com.anydo +Arno Yan,https://lh3.googleusercontent.com/a-/AOh14Gi5l-cvkKc_7lYxxHmtKAix7qWBeMDYvMzbBtLE13c,"Very clear app to use! -> Please add a widget with dark background (now there are only light and dark transparant) -> Would also be nice to have a possibility to make a task that can only be checked if other task is done (i know there are subtask possibities, but there are not so clear how to use then and they are not being showen in the main windows untill you open the parent task)",4,8,4.15.9.6,2019-10-25 19:14:08,"Thank you for your feedback, your suggestions have actually already been added to our UserVoice forum and you are welcome to vote for them here: +Tasks: https://bit.ly/2pZcWg6 +Widget: https://bit.ly/2Prtmsj",2019-10-28 08:39:18,most_relevant,com.anydo +thomson antony,https://lh3.googleusercontent.com/a-/AOh14Ggwz83jPCOoXfiOm3rRSPe56A-1rJIZzJDdUn_-8Q,"This is a good app...Requesting you to add some more options . 1. One is SORTING for all tasks by Date, by Alphabet etc. 2. And the second option is to add SEARCH option for finding out any task which we already added. 3. The task on the bottom end is not visible because of the ADD Button. Please correct it",4,22,4.15.9.6,2019-10-20 07:10:49,"Thank you for your feedback, some of your suggestions have already been added to our UserVoice forum, and you are welcome to vote for it here: https://bit.ly/2kVPC0L, https://bit.ly/2GUMM4T +In regards to the task on the bottom not being visible, please send us a bug report in your app via Settings - Support, so we can assist you :)",2019-10-23 06:45:11,most_relevant,com.anydo +khosta dollah,https://lh3.googleusercontent.com/a-/AOh14Gi2I_tsRjBcPWJiQEC2FJM5s8_SHGoEwoM1ztk0,"It's a very good App, just that sometimes it doesn't open like it's frozen. I then have to go force it to stop then try again to open it.",4,0,,2020-01-11 10:27:48,,,most_relevant,com.anydo +Suhas Kulhalli,https://lh3.googleusercontent.com/-QCPDSuzjgNA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNlOXxMXKiQXhif28ERwvT_KgB4AQ/photo.jpg,Good. Works offline so I love that. But one improvement they must include is to allow us to have a hierarchy in projects. Else it is too cluttered,4,0,,2020-02-04 14:13:20,"Thank you for your feedback. We truly value our users input, and our Product team is always adding user suggestions to our roadmap. The suggestion you posted has already added to our UserVoice forum, and you are welcome to vote for it here: https://bit.ly/2GTr3J5 +The more votes a suggestion gets, the more likely it is to be added in the future!",2020-02-05 08:56:17,most_relevant,com.anydo +Yogesh Kapoor,https://lh3.googleusercontent.com/a-/AOh14GgCKF_BFG2EfyGVnDrdFEp61tPZkNdRu3ApmqsimQ,"Very happy with this app, exactly what I needed. Just 1 issue, if I put a repeating reminder for any task, it works (rings/notifies) only on the first day and nothing after that. Please fix this.",4,5,4.15.9.6,2019-10-09 09:23:18,"Thank you for your review! We would love to help you get to the bottom of this issue, please send us a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2019-10-10 07:51:51,most_relevant,com.anydo +Sony Joy,https://lh3.googleusercontent.com/a-/AOh14GjcTlhOW0mZd7DwMgPyRRV9hB-yl8miGDA7jpZ6buI,"Tagging could be a much better experience. Doesn't support display by tags in Mac and desktop apps. There's got to be a way to snooze in bulk. Should have an option to disable getting alerts for calendar entry, already too many of them.",4,3,4.15.9.6,2019-10-19 11:22:39,"Thank your for your feedback! We recently released a new update that brings tags to the Mac and Desktop apps. Furthermore your bulk actions suggestion was already added to our UserVoice forum and you are welcome to vote for it here:https://bit.ly/2kCbuhx, lastly please note, you are able to disable calendar notifications in your settings!",2019-10-20 05:57:42,most_relevant,com.anydo +Yumna Rizwan,https://lh3.googleusercontent.com/a-/AOh14Gg4bFigwGzcMnewZQ1-n648Qx5NMi6gntDA5nMm,"It's okay, I just really hope it would let you do more for free! I know it's 95% free, but I like to repeat some tasks for a week, I am not saying it is bad, It's an excellent app!",4,0,,2020-01-14 16:18:11,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. You can use Any.do for free for as long as you like.",2020-01-14 11:42:22,most_relevant,com.anydo +jadon Belezos,https://lh3.googleusercontent.com/a-/AOh14GinYp9-jFiTvbLkCqJyhviNYK-0PWuuoPmOFoFL2w,It a great app. Repeating tasks are great when its chores that you only do once in a while. And sub tasks can actually be helpful too. The reason i give it 4 stars is because priorites in tasks come in a very tacked on way,4,5,4.15.9.6,2019-10-12 08:08:15,"Thank you for your review. We believe in a minimalistic approach, and we try to reflect that in our design. This is something that a lot of our users like, however we understand that everyone likes different features :) However we respect your feedback!",2019-10-16 08:25:50,most_relevant,com.anydo +Sinerak Vale,https://lh3.googleusercontent.com/a-/AOh14Ggp-7DuSRhL9oaopLLnTIvgjQnOFYGlmq3SMzsk,"I really love this app. I find myself wanting to make tasks for myself about it. It has an incredibly clean UI and feels great to use. The only issue I have with it is the pricing model for the pro version. For 5 or 6- admittedly useful- features, there's a monthly subscription. Which personally I find to be ludicrous. I'd willingly pay a one time charge, but a monthly payment is just silly for this app.",4,24,4.10.3.4,2018-10-02 11:26:19,,,most_relevant,com.anydo +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I LOVED this app because it has a calendar and to-do list in one go. I can categorize my tasks and put subtasks below. But when I recently updated the app, no radio button to tick off for the subtasks. I handle a lot of tasks categorized. Plus the notes below the subtasks is not there anymore. You need to add more clicks. It was easy and organized. Now, in uninstalling. So sad, i thought I have found the app. Was about to go Premium to get the full benefits but uninstalling. 😢",4,1,4.10.4.1,2018-10-22 08:20:59,"This is strange behavior. The button to complete subtasks was never removed, and neither were the notes below the task. If you're not seeing these, we recommend you submit a bug report via Settings - Support so we can check this issue on our end.",2018-10-23 10:41:24,most_relevant,com.anydo +Cathy Hildebrand,https://lh3.googleusercontent.com/a-/AOh14GhtVqPCoSfJSZD7zNsL9J4XPLZiNg3Z_yLVNmem,"I used to love this (five stars) before you changed it. I was able to set repeatable tasks for each day of the week, but now if I set a repeating task today, for example, for every Wednesday, the reminder will come up today, not Wednesday. I want the reminder on the day I want. I am very disappointed. By the way, I won't use Any Do for my grocery list. I use a better one that keeps a running cost (including tax) for each store I go to.",4,3,4.12.0.4,2019-01-06 21:19:14,We are aware of this issue and working on an updated version that will fix it. Stay tuned! :),2019-01-08 12:00:06,most_relevant,com.anydo +Ariana Hill,https://lh3.googleusercontent.com/a-/AOh14GigGMXozabDLD9CZ2puRhcfWp9f7o2yEppyi6hfNA,"It's a great app, it has this option to connect to Amazon Alexa, which is great, but I wish there was the option of connecting to Google assistant. Otherwise it would have gotten 5 stars.",4,6,4.15.9.6,2019-10-25 02:23:05,"Hi Ariana, thank you for your support! Please note that we should be ready to release our Google Assistant support, before the end of the year!",2019-10-27 09:40:47,most_relevant,com.anydo +Nick Moore,https://lh3.googleusercontent.com/a-/AOh14GjdnlzpXzNtW5hLdnB228MJrFdozKM2zSZRwpp4Mg,Would give 5 stars if it wasn't buggy and didn't cause me to miss a task. The calendar widget is a complete failure. It randomly removes some of the calendars that are synced and creates a duplicate of repeated tasks when they are marked as complete. The whole reason I subscribed to this app was because I needed to sync all my calendars and make my life easier by maintaining them all in one place and not miss any appointments or tasks. The app is useless if I can't rely on it to display and sync correctly. Fix the bugs and I'll reinstall and change to 5 stars.,4,2,4.10.4.1,2018-10-13 11:08:09,"We're sorry for this! We're not aware of any issues with the calendar but would be happy to look into this for you :) Please submit a bug report in your app via Settings - Support, so we can diagnose and solve this issue ASAP.",2018-10-14 13:41:58,most_relevant,com.anydo +Svensk Blonske,https://lh3.googleusercontent.com/-WlKJuDbQFog/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNk0unDyBiyHkz5b2wyhQNVmCVy0Q/photo.jpg,"Confused. I'm not sure what happened and I'm glad I didn't have a long grocery list because I just had to transfer everything from my ""Grocery List"" to a new one so it would open like a normal list and not as a pop up. I don't understand why y'all thought that was a good idea but whatever. I've clicked everything I can think to click. ""Convert to regular list"" isn't an option that I've seen anywhere. Is that only in premium?",4,0,4.11.0.18,2019-01-03 18:46:24,"You can convert your Smart Grocery Lists into regular lists by opening their list options and selecting ""Convert to regular list."" :)",2019-01-01 14:26:35,most_relevant,com.anydo +Daniel Fernandez,https://lh3.googleusercontent.com/-67PdLpSNP5g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMXQLffI1r-KifTGITUNjK0Gq0jxw/photo.jpg,It's very good. Moved off Wunderlist since Microsoft is forcing a MS account and will eventually get rid of it. It's not as good as Wunderlist which I miss but it's very good so using this moving forward.,4,0,,2019-10-22 08:12:19,,,most_relevant,com.anydo +Renee Drakes,https://lh3.googleusercontent.com/a-/AOh14Gg_jpEJsKwo1hUrwo_E-aIBLXqDHMtIJveYCjQuOw,Great App gets my day well organized. But I can't easily search for items in the list. I have to scan through all items one after the other. Takes time,4,1,4.15.9.6,2019-11-02 09:42:25,"Thank you for your feedback. We truly value our users input, and our Product team is always adding user suggestions to our roadmap. The suggestion you posted has already added to our UserVoice forum, and you are welcome to vote for it here: https://bit.ly/2PGJKpd +The more votes a suggestion gets, the more likely it is to be added in the future!",2019-11-03 09:13:48,most_relevant,com.anydo +John Smith,https://lh3.googleusercontent.com/a-/AOh14GgRdrZJh0rQGhAypHtirx5xdA-UAPgvxsq5_9rwSw,"It's a GREAT app. 4 Stars because I think one addition would be a way to have 2 identical widgets running without being connected. Like 1 widget set for my daily goals tasks (shower, laundry, gym), and the second widget for tasks I update and add throughout the day (pick up milk, get haircut)! That way i don't get overwhelmed by a single long list but instead have 2 smaller lists. I'm a ""one screen all widgets"" guy. Another addition would possibly be a widget calendar list, instead of having the 30 day calendar + each days events. Seems useless to have such a huge window of calendar days when I really just need to have a list of events of each day. Samsung calendar has this widget and it's perfect.",4,0,4.10.7.3,2018-12-05 19:09:15,"Having additional widgets is a great idea! We've forwarded this suggestion to our product team for consideration, and if we see support from more users for a similar idea, we'll definitely look into implementing this.",2018-12-10 07:34:23,most_relevant,com.anydo +Marius 100mark,https://lh3.googleusercontent.com/a-/AOh14GiDOj7KBZI7DnoxtBff5xYMPOVmqh0jKtmujxfa-w,"Very good for scheduling, making tasks and sorting your day, considerably better than Google calendar, but there is a part of the app that you have to buy. Works fine without buying, I use it on a daily basis",4,24,4.15.9.6,2019-10-16 10:17:29,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. You can use Any.do for free for as long as you like.",2019-10-16 10:08:58,most_relevant,com.anydo +Sam T,https://lh3.googleusercontent.com/-Fj3AidaJinI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOWibhGXBeT8SgzVZ5dsWvkTOX8iw/photo.jpg,Loving this app so far. My only concern is that it does not highlight the current date on the calender when I open the app if there are no tasks/events for that day. This can be confusing. Another concern is that the calender does not indicate whether there are tasks/events for particular days by showing tiny dots next to the date.,4,19,4.10.5.2,2018-10-22 10:34:46,These are great suggestions! We've forwarded them to our product team for consideration. Thanks for the suggestions and the review! 😄,2018-10-23 10:42:53,most_relevant,com.anydo +Jim Manley,https://lh3.googleusercontent.com/a-/AOh14GiXQQLSdOuqs4LH79gC-gq0wFxroADMthsueKdb1wU,"Useful program. Could be the center of my daily activities. Would be better-smoother, more integration with Gmail and Google Calendar with, again, better, easy, even default--'scheduled follow-ups' on same screen--Category, Priority, Time/Date. No less important, drag and drop tasks onto other Categorical Tasks to create a Categorical Hierarchy based on Time/Date/Priority-Level in the Task. Then, instantly shows in Google Calendar with a simple, mouse-over 'Zoom-to-Task' in the Calendar.",4,5,4.14.0.4,2019-02-03 19:40:42,"We have a Calendar Integration which can be used with your Google calendar, as well as a Gmail add-on for adding tasks straight from your inbox. Not sure what you mean by 'Categorical Tasks', but you're welcome to send us more details to customers@any.do! That said, Any.do was never planned to be Google-adjacent, but its own productivity hub :)",2019-02-05 15:04:42,most_relevant,com.anydo +Harvey Andruss,https://lh3.googleusercontent.com/a-/AOh14Gh19p5gf5TLaG-n9g9kVnR7l0OECn2heQD-HrU9dGU,"Real nice app. I like links to google calendar for events, reminders. Not sure about tasks. Have you guys thought about drag and drop between tasks and events? It'd be perfect for time blocking or scheduling tasks. Right now I use a zapier that takes new tasks in a specific list and lists them as 5 am on today's calendar. I'd like to drag them to certain times so my schedule doesn't fill up (shows time blocks as busy in Calendar). Thanks",4,1,4.10.9.0,2018-12-19 14:39:37,Allowing an easy exchange between tasks and events is a great idea! We actually have a UserVoice page where you can add your support or subscribe to updates concerning this feature: http://bit.ly/2A9Fsy2,2018-12-20 13:08:11,most_relevant,com.anydo +Chen,https://lh3.googleusercontent.com/a-/AOh14GiUL_bzPs2h8etpOkF5dETdCDLDqzxdZ_fV8ez62w,"This app is just great, it not only reminds me what I need to do, it really motivates me to do stuff. the only problem I'm facing, whenever I try to mark a task as completed, the task crashes, and then it updates and actually shown as completed, except this annoying bug, I love it.",4,4,4.10.5.2,2018-10-24 22:01:50,,,most_relevant,com.anydo +Sugandh Katyal,https://lh3.googleusercontent.com/a-/AOh14Gj3LGdlkc9ECCzsJ3WOu4bhkEU0wp5cVhmugEFslg,I really like this application. It's super simple. Two things I want - schedule upcoming tasks in my calendar and do meal planning as well in it.,4,3,4.15.9.6,2019-10-22 13:49:58,,,most_relevant,com.anydo +Liam Wilson,https://lh3.googleusercontent.com/a-/AOh14Gi9xsJBnDny4gfISA4_eO_9uBB7cjMKW4_ybOj3tA,All it needs is Google Calendar integration. Edit: Oh wait it does have it! I was using the Any.do Chrome Extension (the little pop out thing) when writing this review. The Any.do Chrome Extension does not have the ability to display Google Calendar events alongside one's Any.do tasks whereas the Any.do Android app does indeed have it. AFAIK. It doesn't have IFTTT applets but I'd return if it made some.,4,1,4.10.4.1,2018-11-20 18:14:26,"Glad to hear you got the Google Calendar integration working! Should you need any assistance with the feature, you're always welcome to reach out to customers@any.do 😄 We appreciate your feedback about IFTTT and will pass it on to our Product Team.",2018-11-06 15:41:01,most_relevant,com.anydo +Yee Cynthia,https://lh3.googleusercontent.com/-lSACwSDJG1k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPyoN0-LvPYSrx2UiVYc-lQZNhGLA/photo.jpg,The app is really amazing. It helps me plan my day ahead and it's super convenient because it plays u whatever that have been planned on the day like a recap moment. Thanks :),4,0,,2019-10-11 14:42:57,Hi! We are glad that you like our app. We'd very much appreciate if you have any recommendations/suggestions for us to get 5-star rating. Thank you very much.,2019-10-16 08:08:31,most_relevant,com.anydo +Devin Nocterum,https://lh3.googleusercontent.com/a-/AOh14GiVQcPu6J5CgQyr6_fzjS0NlF5ZUCTHgHiKXhTQuQ,"meh, doesn't have dark mode (easier on the eyes) that's the one thing that breaks it for me",4,0,,2020-02-15 00:41:57,,,most_relevant,com.anydo +Lisa Zielbauer,https://lh3.googleusercontent.com/a-/AOh14GhLpwEd1ndSRXfnrNM7ehFNg0zQ7RrTVU-VmHbxHQ,"I like the ease of creating different to do lists, ability to create subtasks, and that i can make my grocery shopping list according to what store I shop at. It's great that the grocery list are automatically sorted by aisle for you. However, i noticed that if i add a price to the beginning or end of the grocery item, that it gets put in the 'other' aisle category. I also like how you can switch something in one list to a different one just by tapping on it. Nice work 👍",4,448,4.15.1.5,2019-03-14 22:17:55,Thanks for the feedback Lisa! We're glad you're enjoying the app and we will definitely look into allowing adding prices and quantities to Grocery Items without losing their categorization :),2019-03-18 00:11:32,most_relevant,com.anydo +Kirk H,https://lh3.googleusercontent.com/-JDPx6DbsXEE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMRQBThyzPmAASFyBQ8nX_scYQXfA/photo.jpg,"1 week in. not bad. somewhat intuituve. I like this app so far for its thoughtful blend of simplicity and intuitive features that go beyond being a task list, & more into routine habits. some important features are hard to find or change after initial set up. my day planning activity 'anydo.moment': I could not find all week to modify... So, it was starting this important step at a difficult time of day to use. Many simmilar apps aim & claim to be useful but only achieve novelty.",4,4,4.14.0.4,2019-02-03 16:29:04,"Thanks for the review Kirk! As a new user we highly recommend checking out our Help Center to learn more about utilizing the features (https://support.any.do/), as well as our Blog which contains lots of articles on how to best apply these tools to your daily routine (http://blog.any.do/) 😊",2019-02-05 14:44:56,most_relevant,com.anydo +Rin,https://lh3.googleusercontent.com/a-/AOh14GjdQcMtensveGFGAVCQV_Q7iJC90csOMRZSZiHwlA,"As someone with ADHD, organizational tools are a necessity and this is one of the best. I say that having tried just about every well rated organizational app in the app store. That said, this is obviously still in development. The web version is missing many important aspects. However new features are coming out regularly and the team is very responsive. Once a few more features are up to par (namely the website and the smart lists) I'll be changing this to a 5 star reveiw and paying for pro.",4,8,4.15.4.11,2019-06-27 21:19:10,Thank you for your support Rin! We are working on improving our Web App constantly and planning on adding new features soon! :),2019-06-30 06:46:43,most_relevant,com.anydo +Nivea Ellebar,https://lh3.googleusercontent.com/-OWSl5BKl0SE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOBEhdvXT6_AwALM6LeUhnJpd4mtQ/photo.jpg,good,4,0,,2020-04-05 17:52:48,What do you think can make it a 5 stars review? :) You are welcome to leave your feedback at https://www.any.do/contact_form,2020-04-06 14:16:57,newest,com.anydo +Bruce,https://lh3.googleusercontent.com/a-/AOh14GgNLBGmkiz8GyDqdowDJJ5C0E-fIJ1EnJP6DAGxbQ,Everyone would be more productive if tasks had multiple notifications aside from the due date notification. Hopefully you'll introduce it in the next update. Thanks!,4,8,4.17.0.3,2020-04-05 09:53:39,"Any.do is a minimalist task manager. Our approach to task management is simplistic and we intentionally avoid adding unnecessary features so, users remain focused only on what matters :) We appreciate your feedback but for now, this type of feature is not on our agenda, however, we are always looking to improve and might consider it in the future!",2020-04-06 14:09:42,newest,com.anydo +Abdul Khalique Chachar,https://lh3.googleusercontent.com/a-/AOh14GgckAJDfv7UKYWo6u8kDyoI4Vd0b1FK-YV36jvn9A,Nice,4,0,4.17.0.3,2020-04-04 07:05:16,,,newest,com.anydo +L. M.P.,https://lh3.googleusercontent.com/a-/AOh14GgsUhGvlYyHMmNECnkyVaFLHHlBBHCnCDBEZYxfvw,best list app on this app store,4,0,4.17.0.3,2020-04-03 13:40:54,,,newest,com.anydo +Tay Zaa,https://lh3.googleusercontent.com/a-/AOh14Gi_yo7QWVQR7fI9YPpv0UWZtakAjxyo8Ow5rcbS,Good luck,4,0,,2020-04-02 00:32:56,,,newest,com.anydo +Arush Gupta,https://lh3.googleusercontent.com/a-/AOh14Gh4T22tqLxhTaUX0HlwsIyeJlGau38gEXsKWz8m2w,Love the app... But the reminder function is not working well . Otherwise app is awesome . Plz requested to fix it soon,4,1,4.17.0.3,2020-04-01 16:56:32,,,newest,com.anydo +120 HIT,https://lh3.googleusercontent.com/a-/AOh14GgBTNcjDF7J0ZTSs4hOqT8F1_drBGsebYeo5DCZ,Can u ads the sub task in the home page,4,1,4.17.0.2,2020-03-30 18:53:40,"Thanks for the feedback, we will be sure to pass it on to our Product Team!",2020-03-12 03:04:04,newest,com.anydo +Drew McLaughlin,https://lh3.googleusercontent.com/a-/AOh14GhGmdx2QCE61nQKeiR3oP6IFhK2OeoPW0VoSlz0qg,Awesome app very helpful and does its purpose very well. Just wish it was free or a one time purchase.,4,0,4.17.0.2,2020-03-30 17:26:25,,,newest,com.anydo +Yan B,https://lh3.googleusercontent.com/a-/AOh14GirMPiclPdo-x1QyhUSAQLY7PQFUoDoINv8HWUldg,No ads that's nice,4,0,4.17.0.2,2020-03-30 06:50:04,,,newest,com.anydo +Janak Rajpurohit,https://lh3.googleusercontent.com/a-/AOh14Gj8oPOfmtXP22ClTdRPq1ZMWoxiNy0ZZImdHrG2Nw,This platform very good platform Anything planning Just used to any do,4,0,4.17.0.2,2020-03-29 12:13:42,,,newest,com.anydo +Paulus Agung Pranoto,https://lh3.googleusercontent.com/a-/AOh14Gh4pxXYiAVmd9KsWemzPBzJa2Mfy-Mep1JJd8gDhw,Helpfull apps but it would be great if there is search feature,4,0,4.17.0.2,2020-03-28 11:40:14,,,newest,com.anydo +mohd khairul,https://lh3.googleusercontent.com/a-/AOh14GgjCdGa5FzXpRUXyKZcLacog7SVElAWCH15Dnsb,awesome,4,0,4.17.0.2,2020-03-27 23:08:32,,,newest,com.anydo +John Q Sample,https://lh3.googleusercontent.com/a-/AOh14GjfWUEWTAJeih8CXZxe1ZndOJFrFCflvoRGVXjR,To do list,4,0,,2020-03-26 19:00:37,,,newest,com.anydo +Abhik Dutta,https://lh3.googleusercontent.com/a-/AOh14Gh7xJbJsfAALfFpiTSwYOUfCBIXOeQ3TzMk_IRBDpM,Bit improvement,4,0,,2020-03-23 16:57:56,,,newest,com.anydo +Maryam Shamaei,https://lh3.googleusercontent.com/a-/AOh14Gg6HhZWnrJdB2YyIews0pGtGTGtNp9LNfPzP30i,Great,4,0,4.17.0.2,2020-03-17 05:29:17,,,newest,com.anydo +Ana Simic,https://lh3.googleusercontent.com/a-/AOh14Giy5W3Sd7A4aEp0ZazHDy7cnXF1HjT-Kq98U5YsGw,"Very good app, it's simple yet you can add layers to your tasks. My only issue is that, you need to pay for some features that are important for executing your tasks.",4,6,4.17.0.2,2020-03-16 23:58:02,,,newest,com.anydo +Erika Flint,https://lh3.googleusercontent.com/-6e4LnUHUEmE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM_Qn9B6FIqD-0xfsqYO3Te9bCAHg/photo.jpg,"Long time user of this app, problem is it doesn't have a search feature. Or if it does I can't find it. Sometimes I forget where I filed my note or task (again longtime user) and then it takes me a while to go through all my files to figure out which title heading I put it under, but if it had a search feature I could quickly find it and get back to being productive. For this reason I gave it 4 stars because it has room for improvement.",4,1,4.15.9.6,2020-03-12 22:12:26,,,newest,com.anydo +CANDY,https://lh3.googleusercontent.com/-V54UlUwb5Nc/AAAAAAAAAAI/AAAAAAAAEJc/AAKWJJPNn5Q9EngznapZDA4e518s5acr6g/photo.jpg,It's very simple to use you can make your list easily and remind your tasks at the moment. Thank's,4,3,4.17.0.2,2020-03-12 04:34:20,,,newest,com.anydo +Francesca Lubega,https://lh3.googleusercontent.com/a-/AOh14GgpUxG2lpzH8M0jur1g0_f-JaawyLPNeT-8_V1Vaw,Good but have to pay for many of the features,4,0,4.16.6.2,2020-03-09 16:17:35,"90% of the app is completely free and unlike similar apps, we allow our users to enjoy most of the features for as long and as much as they wish without any 3rd party ads or a requirement to upgrade :)",2020-03-10 04:27:08,newest,com.anydo +Carin,https://lh3.googleusercontent.com/-MwODtK806II/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPLXRh5b_z6o5PCwEtMNL6rVf0W8Q/photo.jpg,Great,4,0,4.17.0.2,2020-03-09 11:50:58,,,newest,com.anydo +Muhdzaki Abshah,https://lh3.googleusercontent.com/-nhhgPeWnoJw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP9n89sGGyDsXPy-b73-jJV4Xg9yg/photo.jpg,Very helpful for me to list out my works,4,0,4.17.0.2,2020-03-08 14:27:16,,,newest,com.anydo +Raveen Vedarshana,https://lh3.googleusercontent.com/a-/AOh14GhSCl2zZNQ8a0r7vtxWjqfypz63gjjx7RNg7THSCw,"Good application, its better if synchronisation time can be improved",4,0,4.17.0.2,2020-03-07 06:30:08,"The sync is done in the background and depends on your device settings and when your OS is calling for the sync :) If you're experiencing any specific issues though, please submit a bug report via Settings - Support so our team can look into it for you!",2020-03-10 04:34:24,newest,com.anydo +Brett Walsh,https://lh3.googleusercontent.com/a-/AOh14GipcViBrbzSRqQdw5xFuLuUUSLzGxTJR41K8odA,Reminder popups are not displaying at the bottom of my screen on my new Samsung Galaxy S20 Ultra. They only appear in the notification area at the top of screen. Is this an Android 10 issue? How do I get the popups again? It worked fine on my Samsung Galaxy S8+,4,36,4.17.0.2,2020-03-06 02:44:44,,,newest,com.anydo +Jeff Boon,https://lh3.googleusercontent.com/a-/AOh14GghfG0VPktVHZOUbgcG7oRqzrpKJfsVoCL401HrVQ,"Widget not working correctly. when updating the date of task to future date, it still shows in today task",4,6,4.17.0.2,2020-03-05 04:52:30,,,newest,com.anydo +Eimor,https://lh3.googleusercontent.com/a-/AOh14GhxDBnYmtVXKDobHASPjSFDm7jAeLU0Vd4LKao3,It is exelent! Sometimes a little buggy when deleting some tasks that are daily,4,0,4.16.6.2,2020-03-01 19:02:43,,,newest,com.anydo +Selenity Jade,https://lh3.googleusercontent.com/a-/AOh14GjTxCOsCYlcxDodOb0Ya6Z2oIn7qL3bUY3Gblm_lQ,Good!,4,0,4.15.2.1,2020-03-01 16:53:18,,,newest,com.anydo +Daniel Zhou,https://lh3.googleusercontent.com/a-/AOh14GjTKJOyBSJINJ2e0JU-KIoCiuOdps0hCGbzjLcEKg,Repetition should not be a premium function,4,0,4.16.6.2,2020-03-01 15:02:28,,,newest,com.anydo +Janinah,https://lh3.googleusercontent.com/-cczjmBFUbC4/AAAAAAAAAAI/AAAAAAAAAB4/AAKWJJM_IWalekJOG6di6FaJ7W9rYRKouA/photo.jpg,"Pros - Really good app in terms of productivity and usability. - Love how it's possible to colour code and label tasks eg personal, work, university etc. - Love that it syncs with my Google calendar. - Plus I love the app's UI. - I also like the focus option; Cons - I think the focus option should be more like the forest app and not allow you to go away from the screen/tree, otherwise the tree dies. - I also think you should be able to add attachments to events like you can with Tasks.",4,62,4.16.6.2,2020-03-01 08:34:58,,,newest,com.anydo +milind chingalwar,https://lh3.googleusercontent.com/a-/AOh14GhvlExMNRKAQQHOvujRpaT8slJ8lGQBw0I5pzbR,"this app is just simply awesome 👌 just one thing I missed was notification sound, it won't ring when a task is due, as a result I won't be able to know about the task if I ain't using my phone.",4,2,4.16.6.2,2020-02-29 04:23:03,,,newest,com.anydo +Joel Baptiste,https://lh3.googleusercontent.com/a-/AOh14GgcDD0lwVU1tH7vnYplV6HCdelnaNOdUFJnz9QnJQ,Great way to stay organized,4,0,4.16.6.2,2020-02-27 12:13:11,,,newest,com.anydo +kaushik patel,https://lh3.googleusercontent.com/a-/AOh14GjmAui9zWXhqjNhxqgpJKjOTAsyIQ4nz3Od43OH,Nice App,4,0,4.16.6.2,2020-02-27 10:30:31,,,newest,com.anydo +Adriana Elliott,https://lh3.googleusercontent.com/a-/AOh14GjCQNbMFEV7dJoCC-_3F4P_8_a_yVsNL6GiW1t4rw,"After testing the app for a while, I was ready to purchase it but read on your user guide that searching for tasks is not available on Android. Do you know when it would be available? Also, is there a one time fee purchase option? Is there a GMAIL integration feature? Like Google Tasks? I like the minimalist simplistic clean look of your app 👍. Nice work on the Widgets 👍. Thanks 🙂",4,18,4.16.6.2,2020-02-27 04:53:17,,,newest,com.anydo +Kyi Thu,https://lh3.googleusercontent.com/-wiKUT6enrC0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPyIKLGfsUIl_qi7hA8ogUCGGmEyQ/photo.jpg,Like,4,0,,2020-02-24 15:11:32,,,newest,com.anydo +Stephen Mbugua,https://lh3.googleusercontent.com/-NAgqkQV0ST0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNRcJs9P96qq-KmgZU9ChBcA00LOg/photo.jpg,"Excellent app and honestly my life would be so disorganised without it. Really helps me to stay on track. My only request would be to give me greater control over when events repeat than the current setup of every day, week, 2 weeks, etc. (E.g. Allow me to repeat events on weekdays or even better specific days. Like Mondays and Wednesdays for instance.) Otherwise the app is sublime. If this small detail is added then I see no reason to withhold my 5 start reading from you. Great app.",4,32,4.16.6.2,2020-02-23 19:35:35,,,newest,com.anydo +Kelly_Anne_ Young,https://lh3.googleusercontent.com/a-/AOh14Gg5cnZ17ncqbC7Kl3VIeReZb0fDzMmjkRuU7xklwg,Nice but cost too much yearly to buy.,4,0,4.16.6.2,2020-02-21 20:34:08,,,newest,com.anydo +Kristina Rosokha,https://lh3.googleusercontent.com/a-/AOh14GgaaKjA5jStsax1Knu9Ga5vEcK5Jn5uyS4h4i2XNA,"The ideal task mamager for me! Perfect combination of ability to customize tasks, design and great for team work. Still would be better if tasks added to My lists wouldn't automatically add to all tasks where Today, Tomorrow etc sections are. Sometimes I need them to keep in my lists and not be added to lists with some time attachment:) If possible, I am your fan forever !",4,5,4.16.3.6,2020-02-21 19:54:21,,,newest,com.anydo +Tarek Ghosn,https://lh3.googleusercontent.com/a-/AOh14GhHp8ukFK0DcNH0k3-_QrLmRQbBwv9Tp5kv4Fon,Good a d structured,4,1,4.16.6.2,2020-02-20 09:48:25,,,newest,com.anydo +Bruce Cameron,https://lh3.googleusercontent.com/a-/AOh14GhmYesVPK4GHD-TxzgePhhRy_dCxjxD3pe_g8ePJmI,Good,4,0,4.16.6.2,2020-02-16 22:22:24,,,newest,com.anydo +Aftab Qamar,https://lh3.googleusercontent.com/a-/AOh14GjVAsJ1kKv-V3h_2YRvzSmoJX7w2ZojWOG8m1_SxMU,App services are very best. But its very expensive. When i tap for subscribe yearly subscription google say your limit cross.,4,3,4.16.6.2,2020-02-16 06:55:44,,,newest,com.anydo +Devin Nocterum,https://lh3.googleusercontent.com/a-/AOh14GiVQcPu6J5CgQyr6_fzjS0NlF5ZUCTHgHiKXhTQuQ,"meh, doesn't have dark mode (easier on the eyes) that's the one thing that breaks it for me",4,0,,2020-02-15 00:41:57,,,newest,com.anydo +Mohammed Abdeen,https://lh3.googleusercontent.com/a-/AOh14Gjd_1ROAiN8iJ_jCPbeRkhhaeUxWnAh9mC0g2Zw,Is 4 enough?,4,0,4.16.6.2,2020-02-14 13:03:53,Then why just 3 stars? ;),2020-02-14 01:35:39,newest,com.anydo +Bruno Robert Deschamps,https://lh3.googleusercontent.com/a-/AOh14GgSi-Vn6lVgoZPdDAsQXojKCefYGMTuysBNr7DoxtM,Becoming undispensable very fast...,4,0,4.16.6.2,2020-02-14 06:20:58,,,newest,com.anydo +Mr EveryDayLife,https://lh3.googleusercontent.com/a-/AOh14GiQ0N6Dl9A1kqLdnf06A6qyjw3rGb3fRZqraf28tA,"Beautiful design but, I'd prefer a one time charge option for the PRO version",4,0,,2020-02-13 17:47:24,,,newest,com.anydo +Muhammad Saloojee,https://lh3.googleusercontent.com/a-/AOh14GgTH95xYkkMlQqG6CIvYP0WrrTqvGqk4vs3xIDrug,"Needs an easier way to switch from other task apps, specifically common ones such as Google Tasks. Please add the functionality to import tasks, lists, reminders and events by logging in with a Google account.",4,5,4.16.6.2,2020-02-12 20:27:24,,,newest,com.anydo +S Y,https://lh3.googleusercontent.com/-xBlhbwgIOtg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNNkTGJ0wzBeJJ55uO0-QFWYNZFkw/photo.jpg,May I know what's the difference between this app and the any.do calendar app?,4,0,4.16.6.2,2020-02-12 13:26:23,,,newest,com.anydo +david okongor,https://lh3.googleusercontent.com/a-/AOh14GgsAigTNg3CnMyw4zP8jyCQsNrJgrPuBd_umqc29w,Good performance so far,4,0,4.16.5.0,2020-02-11 10:19:59,Thanks! Please share Any.do with your friends 🙏,2020-02-12 08:22:45,newest,com.anydo +Efrain sanchez,https://lh3.googleusercontent.com/-gxh6iBZwyk0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMihhC4UZd2LuACIZNWkiC0ZpsDxQ/photo.jpg,Good,4,0,4.16.6.2,2020-02-10 09:39:43,,,newest,com.anydo +Sandra Krysik,https://lh3.googleusercontent.com/-rlc5rDArAso/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNIBWJMjKjLFWctMwIgYXjQPx8vVA/photo.jpg,"Awesome app, I love it! Simple and great reminder systems! One big thing is missing though: family calender: shared calender with family members (incisive kids without the app/phone/e-mail) and option to organise event and tasks for other familymembers.",4,20,4.16.6.2,2020-02-08 08:51:05,,,newest,com.anydo +Raghaw Dubey,https://lh3.googleusercontent.com/a-/AOh14Gg2XfkmGWiAo1Nch8F9pN4-kTw1wnSdHfmed77L,"This application which I used thoroughly, and this application seriously deserves 5 stars ✨. I have given 4 stars because it don't have multiple user merged account in it. Which helps our 4 members of family to write their to-do in a single place.",4,7,4.16.6.2,2020-02-07 09:19:18,,,newest,com.anydo +Evans Kaniaru,https://lh3.googleusercontent.com/-pCj_PUpVeZw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNpvhFDEdkBHf_7dPenADcBmNJyNA/photo.jpg,Add how long it takes to do a task instead of what time I should do the task,4,0,4.16.5.0,2020-02-07 00:55:43,,,newest,com.anydo +Gabriel Bio Guerra,https://lh3.googleusercontent.com/a-/AOh14GhWdK30XmHuFd9sVfgD3JGefLxsYpaugSVm_YFq,"I need help, the app does not send notifications about my tasks, even I had put a time to go off and allowed all the permissions in my smartphone configuration.",4,0,,2020-02-06 14:19:00,,,newest,com.anydo +brian dawes,https://lh3.googleusercontent.com/a-/AOh14GhgN7tx8_DmzeuQtodszu7g4OuqXLt7eWyWvv8I-g,V good but complex,4,0,4.16.3.6,2020-02-05 19:17:53,,,newest,com.anydo +Victor Banke,https://lh3.googleusercontent.com/a-/AOh14Gi6FPfD_c21xeClGZfF8JoOnI8YtxZXfLQYHIHU8Q,"Super good! But the Any.do Moment no longer pops up on my new Pixel 3a, which is the only reason I use this. It is enabled but only shows up in notifications, no popup. How do I get this working again?",4,4,4.16.5.0,2020-02-05 18:56:57,"Hi Victor, please make sure that your Moment is scheduled in your settings via settings => Any.do Moment, and if you are still having an issue, please send us a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2020-02-06 08:00:03,newest,com.anydo +Suhas Kulhalli,https://lh3.googleusercontent.com/-QCPDSuzjgNA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNlOXxMXKiQXhif28ERwvT_KgB4AQ/photo.jpg,Good. Works offline so I love that. But one improvement they must include is to allow us to have a hierarchy in projects. Else it is too cluttered,4,0,,2020-02-04 14:13:20,"Thank you for your feedback. We truly value our users input, and our Product team is always adding user suggestions to our roadmap. The suggestion you posted has already added to our UserVoice forum, and you are welcome to vote for it here: https://bit.ly/2GTr3J5 +The more votes a suggestion gets, the more likely it is to be added in the future!",2020-02-05 08:56:17,newest,com.anydo +Bob Williams,https://lh3.googleusercontent.com/a-/AOh14Gjx1ctxubpecux9LzfX-KFJ-blEXcHmCh9_gDJq,How to change letter style. Can't read sub titles with double lines!,4,0,4.16.1.6,2020-02-02 10:50:55,,,newest,com.anydo +rony prince,https://lh3.googleusercontent.com/a-/AOh14GgBAXccgYD8drQz8oLl0KFKNa0lQ_zYWoPZkXKu1w,nothing important but some time innocently surprise made me stronger..👯,4,0,4.16.5.0,2020-02-01 20:32:28,,,newest,com.anydo +AKASH SINGH,https://lh3.googleusercontent.com/a-/AOh14GjnT9y7jKJuaWtr69dLEn5BUakgWbeHTkNtP_Vxbw,Good app,4,0,4.16.5.0,2020-01-31 19:19:16,,,newest,com.anydo +Ghislain Anselmo DJOKO,https://lh3.googleusercontent.com/a-/AOh14GjHSnYFPS1JH_t40hBnw0jOO3wACRefY5jmNonbkw,"LIKES ~Free; The possibility of arranging the tasks list in my own order with a simple clic ans scroll, and having it in that order as home screen widget; The possibility of having the events list widget just next to the tasks list widget. The events list also show the tasks and this seemingly appears like the rare feature of an events list and tasks list integrated on one screen. DISLIKES But it would be better if the tasks kept my prioritisation order even when they appear in the events list.",4,1,4.16.2.7,2020-01-31 12:35:53,,,newest,com.anydo +Aadam Hanif,https://lh3.googleusercontent.com/a-/AOh14GgVyCTi-W_E8rReWiZH7ZB1qM9NIBlf_JRVAxr9Bw,Beautifully done...love the features,4,0,4.16.4.6,2020-01-30 14:04:20,,,newest,com.anydo +Satya vachan,https://lh3.googleusercontent.com/a-/AOh14GgGWL1JxiamYhPyJscmWm-6zZnxqHhk3kYAzyx1oA,What programming language used to develop it for Android. I'm a student & i wanna build apps. Please help. I loved the app. I find it very inspiring.,4,0,,2020-01-30 10:04:48,,,newest,com.anydo +hilary davies,https://lh3.googleusercontent.com/a-/AOh14GgsejrbI8AOCD1acqRDOpo1RHmt6UEypLIWLtmmCg,Loving this- the only addition I would have is being able to view highlighted tasks and events on the calender,4,0,4.16.2.7,2020-01-29 23:54:31,,,newest,com.anydo +devv24u7,https://lh3.googleusercontent.com/-IXzNzL2ad04/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNS70fPgi-P_Vva50o112_CC2aI0A/photo.jpg,"A good app. If you know exactly what you want, you'll need this app to get started. But a lot of us don't know what we want to do. We don't have a lifestyle coach to tell us how to improve our habits, or how to be productive. We seek it out in the charming articles on the internet. So maybe populate the internet with this app's usability, behind a healthy/productive living theme. Idk, just saying.",4,10,4.16.4.6,2020-01-28 06:33:15,,,newest,com.anydo +Stefanovski Igor,https://lh3.googleusercontent.com/a-/AOh14GiC_U5qbfECtqtoxd79KwNwbQwELxr_UJupTbSuHQ,I'm using the app couple of years and i really nice. It just really annoying when the reminder message pops up while you type a message or during the call (while hanging up...),4,4,4.16.4.6,2020-01-27 21:05:03,,,newest,com.anydo +Mohammad Al-Mohammadi,https://lh3.googleusercontent.com/a-/AOh14GjzyFimKAyvvO8LBm75gj9HKsbATRpWILxQhSGZJg,Great app,4,0,4.16.4.6,2020-01-26 07:09:27,,,newest,com.anydo +Adel Abdull,https://lh3.googleusercontent.com/-1kqK-KsZWEM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOr0rwKIgM_2r43Gbvi8_6dghbhZw/photo.jpg,"Reminders don't pop up if the app isn't open such as clearing all open tabs or if you haven't opened it at all in a day. I think that's why the app should be for, remind you because you may not have the time to. It's a good app but pls I'd like that this be worked on. I would also be nice if you can permit the option to pick alternating days or weeks as frequency of a task may not fall under weekly or daily. (e.g Tuesday, Thursdays and Saturdays).",4,37,4.16.4.6,2020-01-25 08:59:53,"If you're experiencing issues with your reminders, we highly recommend you take a look at our Help Center Troubleshooting article on this: support.any.do/why-did-my-reminders-stop-working/ or contact us directly by submitting a bug report in your app via Settings - Support, so we can get to the bottom of this for you :)",2020-01-27 08:42:09,newest,com.anydo +Curtis Gabrielson,https://lh3.googleusercontent.com/a-/AOh14GjYe8CMCH5mTQ1OsxnvJ1xEt6TYoTfuaOPAgJEChks,Money hungry devs want about $5/mo for simple features... That's about $60/year for the fully functional organizer app. Other than that it seems nice so far.,4,4,4.16.4.6,2020-01-25 04:19:18,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. We modeled all our pricing tiers off of similar services so we could stay competitive. We also occasionally offer promotions, you can inquire about them at premium@any.do!",2020-01-27 08:38:43,newest,com.anydo +Tonny Kazimoto,https://lh3.googleusercontent.com/a-/AOh14Gh6mc-PYUYZ6cLBfH0lGLub9aZ_Hbs9a7dQ21NF,Helpful,4,0,4.16.3.6,2020-01-24 04:37:20,"Thank you for your review! We would love to know what we could do to get to 5 stars, please contact us at Customers@any.do if you have any feedback!",2020-01-27 08:31:51,newest,com.anydo +Antonios Asmpach,https://lh3.googleusercontent.com/a-/AOh14Gg_ILE88Xac1Z7n601VNX3dS9LJfb4SkfDn8tib4w,Make more advanced settings for paid subscription not the color of the theme.,4,0,4.16.3.6,2020-01-21 13:03:45,,,newest,com.anydo +Satyaa Rao,https://lh3.googleusercontent.com/a-/AOh14GhK3qW1giqbKQxzjjV9mlnq_xNIoAh1iNVqEPNc8A,Unmatched,4,0,4.16.3.6,2020-01-21 04:20:43,Awesome 😎 Please share it with your friends 🙏,2020-01-21 10:35:45,newest,com.anydo +SJ Carver,https://lh3.googleusercontent.com/-ZWAV_YpYoWk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN_ynuBLtzcJTht-qb16ZlfdrRpGg/photo.jpg,"Links to my Amazon alexa and very useful, I hated typing stuff in but now I can just ask Alexa to add stuff to my to do and shopping lists I really like it. There was nothing wrong with it before, I just don't like typing much!",4,1,4.16.3.6,2020-01-18 12:47:00,,,newest,com.anydo +Tyler Summers,https://lh3.googleusercontent.com/-c31JH0pxByQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOFj9ys1fCu0qasTY2pcL2ZSAVgJA/photo.jpg,"Perfect except for one thing. The 'I want to...' button at the bottom of my to do list sometimes blocks the bottom item on my list, making it more difficult to cross off. There is already an add item button on each list category, so I think it should be removed or users should be given an option to remove it.",4,4,4.16.3.6,2020-01-18 09:39:26,,,newest,com.anydo +Adrian Anderson,https://lh3.googleusercontent.com/a-/AOh14GhOhDgUHhsKl8VEXnMYoqbS-jV_JPBWAKBdnfh0,Very helpful and detailed app...love it!,4,0,4.16.3.6,2020-01-16 15:52:19,"We 💙 you, and we would love to know how we can make it to 5 stars. Please contact us at Customers@any.do with any feedback you may have!",2020-01-20 09:10:45,newest,com.anydo +Lucas Machado,https://lh3.googleusercontent.com/a-/AOh14Gjm-amISxeazZLDQYrFjV_tjYqHOZlsENZ10OYG,"I love the to do lists with simple and useful style and features, but the calendar is lacking a bit. You should be able to change events color. Would be nice to have independent notes, instead of notes in each task, if it had that, the app would be the best organizer.",4,3,4.16.2.7,2020-01-16 08:35:57,"Hi Lucas, please note that we sync all events from your native calendar, from which you are able to change the color of your events. If you would like any assistance in doing this, please let us know at Customers@any.do.",2020-01-16 09:11:06,newest,com.anydo +Nathan Bradley,https://lh3.googleusercontent.com/a-/AOh14GisigzjS87-ElgrRvvYaTvTr1Tt2kuA3-iZzgLZ7A,Calendar widget has a glitch when you edit event to repeat it changes the day to a day before example I put my mom's bday on jan 15 all day event and saved then went back in to edit repeat every year and it changed it to jan 14,4,0,4.16.3.6,2020-01-14 23:47:55,"Thank you Nathan! We are working hard to improve the app to it's full;est potential. Keep you eye out for our new calendar integration, which will be released within the next couple of months :)",2017-01-03 10:04:16,newest,com.anydo +Yumna Rizwan,https://lh3.googleusercontent.com/a-/AOh14Gg4bFigwGzcMnewZQ1-n648Qx5NMi6gntDA5nMm,"It's okay, I just really hope it would let you do more for free! I know it's 95% free, but I like to repeat some tasks for a week, I am not saying it is bad, It's an excellent app!",4,0,,2020-01-14 16:18:11,"Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. You can use Any.do for free for as long as you like.",2020-01-14 11:42:22,newest,com.anydo +Matt G,https://lh3.googleusercontent.com/a-/AOh14Gj989qSglnXEb6jlRuF9FetjwRtuNPN-FnqxQqWXYw,Great to do app,4,0,4.16.3.6,2020-01-13 19:18:24,,,newest,com.anydo +Anshul Agarwal,https://lh3.googleusercontent.com/a-/AOh14Gg1OYfrYfiJ_nV_x_O1i82YJJIBMDoniSm3M0zs,Excellent!,4,0,4.16.3.6,2020-01-13 19:15:43,,,newest,com.anydo +sina hosseini,https://lh3.googleusercontent.com/-zLCsOeM0riM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO2p_yR6gSk7v_1gZSfg-A_AXNdvA/photo.jpg,I'm waiting for it's Windows app :/,4,1,4.15.8.11,2020-01-13 19:04:29,,,newest,com.anydo +Tiaan Gariseb,https://lh3.googleusercontent.com/a-/AOh14GgEpl8vpg0-NdaTey59Zpi510PP_Vb3AhR6MYyS7Xw,Very nice app. It could use some more work. But I like the color tags and the plan your day feature.,4,0,4.16.3.6,2020-01-13 16:12:06,,,newest,com.anydo +Ajay Jadhao,https://lh3.googleusercontent.com/a-/AOh14Gj57bp_shYv1pnA44Cg1-mkuoi79J0ZS-ZQsSoFuQ,You should keep recurring tasks for free. That is the only reason I left using your app four years ago and started to use google keep. Everything else is great.,4,1,4.16.3.6,2020-01-13 10:03:58,,,newest,com.anydo +Alireza Alidousti,https://lh3.googleusercontent.com/a-/AOh14GgbcYY4QeZtKjkrWESO1GPYfG2mgfD2MpEbNVJMPA,"so cliche! first u make people addicted to something, then u put a price on it. not all the countries have the possibility to purchase. Please add Hijri Shamsi to any.do's calendar. The Christian month names and other calendar features are not any recognizable for we persians using shamsi calendar month names",4,0,3.4.13.12,2020-01-12 09:48:31,,,newest,com.anydo +Yu Sim,https://lh3.googleusercontent.com/-D--I6KxqLh8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNzmp2Vu5BfsfxIyoVHi0bwd8P0YA/photo.jpg,Good,4,0,,2020-01-12 07:34:25,,,newest,com.anydo +khosta dollah,https://lh3.googleusercontent.com/a-/AOh14Gi2I_tsRjBcPWJiQEC2FJM5s8_SHGoEwoM1ztk0,"It's a very good App, just that sometimes it doesn't open like it's frozen. I then have to go force it to stop then try again to open it.",4,0,,2020-01-11 10:27:48,,,newest,com.anydo +le John,https://lh3.googleusercontent.com/a-/AOh14GjFu22-AuaXw7blqXgDRvQp5zua75WmH4L5jOsTPQ,I really like it,4,1,4.16.3.6,2020-01-10 20:59:34,,,newest,com.anydo +Henrique Heron,https://lh3.googleusercontent.com/a-/AOh14GhgvQuV9qkexHTWrhHSwfIp5_tH75FHRklT8JhwPQ,"Great app for planning. The missing 5th star is because the reminders are restricted, and not personalizable. If you want to be reminded at a specific hour of the day, you can't.",4,2,4.16.2.7,2020-01-10 18:30:43,"Hi Henrique, please note that we do support the customization of your recurring reminders and you can learn more here: https://support.any.do/recurring-reminders/ +Please note that this is a premium feature.",2020-01-14 11:08:41,newest,com.anydo +Иван Павлов,https://lh3.googleusercontent.com/-uSvgckTEUQ4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOJ9opvTxf-aUYLSEZWMuy2vj528A/photo.jpg,"Good app, but many paid services",4,0,4.16.3.6,2020-01-10 14:38:13,,,newest,com.anydo +Hannes v Heeden,https://lh3.googleusercontent.com/-3h8VD1ZoRbs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNJExTyhqt3zjv2TzVDp4xSVZM9XQ/photo.jpg,Works lovely,4,0,4.16.2.7,2020-01-10 11:32:01,,,newest,com.anydo +Karl -,https://lh3.googleusercontent.com/-WO-2vnzb0Qs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOP55FO76qAA1ekC6ZDLS8oxYl8hA/photo.jpg,"Prefering this over Google Calendar. There is still an annoying bug where I cant edit/delete events added to the calendar externally (through a gym app, for example). Pressing ""edit"" then it just goes back to the calendar view instead of to editing",4,3,4.16.3.6,2020-01-09 08:02:23,,,newest,com.anydo +mohamed hadi,https://lh3.googleusercontent.com/a-/AOh14Gi5w0iyr5vTlknQtlcuFw0de-aKJSfoHswRxniXI3o,Good app. But it needs to have tasks accepted from Google calender,4,0,4.16.3.6,2020-01-08 19:30:30,,,newest,com.anydo +gulam muheeudddin,https://lh3.googleusercontent.com/-KMqjqywQYA4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMP5r8-_ASdS94yijALrEEtXsP--A/photo.jpg,Good,4,0,4.16.3.6,2020-01-08 14:03:26,,,newest,com.anydo +Lucas Gonçalves,https://lh3.googleusercontent.com/a-/AOh14Gi24q-jow8rGF4t_jdW1_Swo4MbNDhEOjnpi22r5A,could have more types of priorities,4,0,,2020-01-07 19:25:30,,,newest,com.anydo +Dani K,https://lh3.googleusercontent.com/a-/AOh14Gh2HsUYG_n9iF1oFGc25rBtbxjWHG5ShyhoFNWVrxI,"Thank you for the prompt response. I've been using any.do for years and will be continuing to do so 😀. I like some features available with the premium option, but I'm not a subscription person... Still, I haven't seen any app to beat any.do 💙",4,26,4.16.3.6,2020-01-07 14:29:09,"We 💙 you! We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. We modeled all our pricing tiers off of similar services so we could stay competitive. We also occasionally offer promotions, you can inquire about them at premium@any.do!",2020-01-07 08:25:18,newest,com.anydo +Fæjæ Lichean,https://lh3.googleusercontent.com/-FilPLhI2gU8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOyJJxPa8uIS2Tz_tZBEpc5_s_15w/photo.jpg,"Love the organization so far. Super easy to use even in comparison to other apps like this. Would make one change, I would like to be able to click on a specific, individual time/date block on the single day, 3 day, week calendar set up to add a specific event/task to THAT individual date/time block",4,16,4.16.3.6,2020-01-06 17:34:11,,,newest,com.anydo +Dan Gottesman,https://lh3.googleusercontent.com/a-/AOh14Gh8bIy3R2S6n5lOujlawayC-wwgwOyWBigFeb81,"Overall good and useful. I'll likely continue to use, and.. .. . ..I would like more control of reminder sounds including repeating (so i don't miss it) and sounds without needing to open app. (maybe there are settings i can adjust). also more integration with other apps including Trello and Evernote and more a general multi app share feature would be great. As is i am copying and reentering things in multiple apps, and i want to just send them.",4,16,4.16.2.7,2020-01-05 19:10:46,,,newest,com.anydo +Ben Marshall,https://lh3.googleusercontent.com/-7bqH3tb4K1Y/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMcbDAjHeU6j7SJlL16qdHtDnd9dw/photo.jpg,Only had a couple of days and generally good experience. Ties in nicely with Google Assistant though I cant get it to automatically set a time to remind on a task when created by voice. Slight niggle that when I do certain actions completing events the app jumps to mid july on the calendar; no clue why but it's pretty irritating Overall seems to be helpful for productivity,4,106,4.16.2.7,2020-01-05 18:10:04,,,newest,com.anydo +Brent Atchley,https://lh3.googleusercontent.com/a-/AOh14GiV5726JaydVMrmrgRsTJS0Zeoy_SMSUlOh7tXR,Ok so far.,4,1,4.16.2.7,2020-01-04 13:05:22,,,newest,com.anydo +Roaa Omran,https://lh3.googleusercontent.com/-QCSdzTMUMUM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPv5AOviczEv0wnB7QjVOgDGIyLqA/photo.jpg,Its a good app,4,0,,2020-01-03 23:34:19,,,newest,com.anydo +Oghenewaye Zion,https://lh3.googleusercontent.com/--w-oO4eVOgg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNdVuKb0qteYcLyvQByF3gdWLsfdA/photo.jpg,Nice one,4,0,4.16.2.7,2020-01-03 21:16:55,,,newest,com.anydo +Jenna Saikaly,https://lh3.googleusercontent.com/-SH_FH2q2yMA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN8JrI9Yr0fsF1Rju18J3otauLtaQ/photo.jpg,Good app,4,0,4.16.2.7,2020-01-03 16:37:17,,,newest,com.anydo +Samuel Ojo,https://lh3.googleusercontent.com/a-/AOh14GicWrFgjc2OGt21r4YnjlYUhnX-EkSgQFBbe3BWaw,"I'm enjoying the user interface. It's has a nice aesthetic and more importantly has pretty much everything I need for putting down my tasks. However, the widget keeps freezing on my home page, and my completed tasks for a particular day don't show up in the app for that day.",4,6,4.16.2.7,2020-01-03 07:18:10,,,newest,com.anydo +Fiona Cuff,https://lh3.googleusercontent.com/-EiCakytOHwA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOeoCL-G3YLiqcGL0MCOBMfOSFzTw/photo.jpg,"Update: Thank you for the info! It does what I want:) I have been using this app for about a month. I was excited to see I can separate my to-do list into today, tomorrow, someday etc., as this feature I use to prioritise tasks, which is what I really wanted from the app. Unfortunately it keeps moving all the tasks back into today, which makes it kind of pointless to separate them in the first place :( Please fix this or I'm on the hunt for another to-do list organizer.)",5,117,4.17.0.2,2020-03-12 11:14:40,"The date categories filter tasks according to the reminder/ due dates. If a task has a reminder for the current date, it will move to the Today's section :) This is simply how the app works. For a fixed view, simply filter by lists and create your own prioritization https://support.any.do/sorting-and-filtering/.",2020-03-10 04:21:05,most_relevant,com.anydo +Brad Black,https://lh3.googleusercontent.com/a-/AOh14GiHsPKf4Z_JpMZBRB_zyRVI3htGCeGOePNlHolWJA,Great App! I'm a heavy hitter when it comes to looking for something wrong with an app and I will be blunt. So far no complaints. The app runs smoothly. There are a lot of great features for the free version. WHAT WOULD SET THIS APP OVER THE TOP FOR ME. WOULD BE THE ABILITY TO MOVE TASK TO ANOTHER TOPIC. BOOM 🤯 .Hope this review helps you in best way possible. Let me know what you think 🤔 ?,5,25,4.16.4.6,2020-01-28 19:21:45,,,most_relevant,com.anydo +Goughy,https://lh3.googleusercontent.com/a-/AOh14GiwzddksS3XvsCR63iQWKkRilVkdHicPZcvHstBXw,"Since Microsoft scrapped ""Wunderlist"" for ""Microsoft To-Do"" which is a significant downgrade, I had to look for an alternative. I can't believe that I found something that not only gave me back everything I lost from switching to ""To-Do"" but is actually a major improvement. Highly recommended.",5,18,4.17.0.2,2020-03-09 10:12:57,We love hearing Any.do was the solution you were looking for! Glad you're enjoying the features and we hope you will share the app with your friends and family so they can try it out too ;),2020-03-10 04:28:00,most_relevant,com.anydo +Vladimir Tamindžija,https://lh3.googleusercontent.com/a-/AOh14GgEBq7gqGW2n-qzbcxCT3JMCJS-SCKzSIdLCKYBZg,"This is the best productivity app I have ever used and I'll keep using it. It is so simple and intuitive, with useful reminders that keep you on track. The only option that is missing in my opinion is to set alarms (not only reminders) for tasks that can go on few hours before, other than that it's 5 stars all day long! Thanks guys.",5,92,4.16.6.2,2020-03-02 21:24:25,,,most_relevant,com.anydo +Eva Gillespie-Larsen,https://lh3.googleusercontent.com/a-/AOh14Gir37KHCLYWN664xC_fd_WH-VdHWNDC_PzbdlHs,"I'm kind of a geek....I like planners. I used to try out lots of different physical planners, then switched to trying out lots of planner apps. This is my current favorite. I love that it integrates with my calendars and that I can put specific times on my to-do tasks if I want....makes it so I can look at their calendar view and see all of my meetings AND my tasks based on when I'm planning to do them. I like being able to quickly schedule tasks, snooze tasks, schedule recurring tasks, etc.",5,73,4.16.6.2,2020-02-26 16:53:34,,,most_relevant,com.anydo +Dean Fawley,https://lh3.googleusercontent.com/a-/AOh14Gi0DcS7yrUS9g4vCZlGo1SE4VyfwDEnzJnI9PaLmQ,Using the free app works for what I need. It helps me put down my thoughts of what I need to get done later when they pop into my head. When I have the time later I check it and see all the things I normally forget about and get them done. Sometimes the reminders are annoying and I'm sure they're a way to turn them off but they do remind me to check out what I've out down.,5,32,4.16.6.2,2020-03-03 11:23:25,"Indeed the reminders are there to keep you on track :) But if you do not need them, simply turn the notification off from the reminders menu. For assistance, reach out to our team at https://www.any.do/contact_form.",2020-03-03 21:25:54,most_relevant,com.anydo +James Pearson,https://lh3.googleusercontent.com/-LkNJjEuyRuI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMLHyfnoH5tveEpNUJ_HE4Bohm5Tg/photo.jpg,"I love the fact this integrates with WhatsApp, I use it for work and personal it make thing so much easier!",5,1,4.17.0.3,2020-03-30 14:34:40,,,most_relevant,com.anydo +matt clarkin,https://lh3.googleusercontent.com/a-/AOh14GjBQTR-Is2ATUG0rXOcllWR_kvAN25BRwIoosHtfIM,"Wildly impressed at how much this has helped me to continue to get more organized in life as a whole, not personally and at work, its inexpensive for the subscription and can do so many things, most of which I have yet to tap in to, I feel so much more in control as this keeps everything in front of me and I k ow what I have to do and when",5,153,4.16.6.2,2020-02-09 21:44:37,,,most_relevant,com.anydo +Cindi Downes,https://lh3.googleusercontent.com/a-/AOh14Gg2GTV4llsFbkjPxX-az_yoBFq6NbGJwq_4eBfWlg,I started using any do when I was very unorganized and had too much stuff in my head. I used the 7-Day trial and got everything out on paper with all of the different kinds of things I had to do and it was all included in any do which was perfect so I signed up for a year everything from doctors to paying bills and making a grocery list! I've never had a problem it's wonderful.,5,61,4.16.5.0,2020-02-05 15:36:00,"We are glad we could help you keep track, and stay organized! 😄 Thank you for your support!",2020-02-06 07:57:22,most_relevant,com.anydo +Grant McCormick,https://lh3.googleusercontent.com/a-/AOh14GgQ4g6q4JqoSxhk7hLhgEdrKF6tU7aNEWEFAtjhjw,"It took 5 different apps to find this one. Everyone lacked in some major way. Be it reminders, the interface, or the way it was organized. THIS IS BY FAR THE BEST! Lacking: Occurrences option is limited to one one occurance on Andriod, need more, grouping lists under a single name (aka, history, math, science under ""School""), for things to be arranged by time with unschulded things at bottom of ""today"" or ""tomorrow"" columns to schedule later. And importance/urgency ratings on tasks. AMAZIN APP",5,44,4.16.6.2,2020-02-21 00:31:22,,,most_relevant,com.anydo +X X,https://lh3.googleusercontent.com/a-/AOh14GjfC_c9EqbyMg_KJd3n-F-j5quqxMDbMNJvGC8wBPk,"Love hate relationship. The app is great.. It nags and nags and @*! @@! nags per your settings until you want to kill it.. Dead!! And then again! But it does its job. The reminders are rude, intrusive, nagging, annoying and constant but acheive your goal of reminding you to take care of things until you actually achieve items on your list. I HATE it.. But it's supreme for procrastinators, busy people, air heads, and anyone else who needs a keeper to keep them on target. Phone/setting dependent",5,1,4.17.0.2,2020-03-31 03:29:59,,,most_relevant,com.anydo +Anurag Sen,https://lh3.googleusercontent.com/a-/AOh14GjdJCuXm59famV0btwRPb76TMBZvIQ4uNKmS6iIDQ,"In my opinion, it is the best app for reminders and to do. I use it every day to plan and organize my day. Some features I constantly use are Google calendar integration, focus mode and priority tags. The interface is also very clean. Great work, Any.do team",5,14,4.16.6.2,2020-02-16 18:15:28,,,most_relevant,com.anydo +Satish Mruthyunjaya,https://lh3.googleusercontent.com/a-/AOh14GgjYEheOTefp6t4fV7o7XziT6nkW0bmiqukqkWpzg,"Clean interface. I liked the minimalistic design without much clutter. But have a question for team. I have added hundreds of tasks in a list. Now i want to edit a particular task. I could not figure out how to search that task , it is difficult to go through huge list.",5,9,4.16.5.0,2020-02-06 10:29:37,,,most_relevant,com.anydo +Justin Gallagher,https://lh3.googleusercontent.com/a-/AOh14Ggs1rKAgLNsuklsSLF0iSgM0Db9WMHs1SRlFsXz7A,"I love this app! It has helped me get organized and remember important things in a way that is so simple and easy! I have one request...can the developers make a widget for the ""lists"" so I can swipe easily to it on my home screen? Thanks!",5,16,4.17.0.2,2020-03-10 13:00:27,,,most_relevant,com.anydo +Luis Cancino,https://lh3.googleusercontent.com/-X1rnTwYBDhk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOsBGEVuHcbqXKH8LOAMhcJwIPmdA/photo.jpg,One thing most apps lack is the calendar. This app has the list and calendar integrated into one. You can actually see your entire day of what you have to do in ONE APP. Great job guys. My #1 planning app so far.,5,8,4.17.0.2,2020-03-12 15:19:59,,,most_relevant,com.anydo +Elpha Boi,https://lh3.googleusercontent.com/a-/AOh14GgEe7Z66r-V-Be6AzHy9NFOiRTyhcY5TlXUWJqx,"I have tried a LOT of these types of apps. HANDS DOWN ANY.DO is the best. Im terms of user friendliness, user experience, and what have you. Gonna buy and would recommend the same. Thank you Any.Do! My head is a lot less noisy now ☺️.",5,11,4.16.6.2,2020-02-13 21:41:47,,,most_relevant,com.anydo +Michelle Glasscock,https://lh3.googleusercontent.com/a-/AOh14Gh5S6C7fhF0VU85y4AyUN_eBTEEs7NTjLQYOlkK_w,The app has a clean sharp interface and is easy to use. I appreciate having one app for my daily ToDo's and calendar needs. It also never unexpectedly quits on me.,5,0,4.16.5.0,2020-03-31 03:44:35,,,most_relevant,com.anydo +Namitha Satheesh,https://lh3.googleusercontent.com/a-/AOh14GjPeAjuxjiHFMxe4iEhZvLbztwiG5RphBcJ17OCOw,I'm a novice free user and I use it primarily to set reminders. I love the way it pops up at the bottom of the screen and the display of the reminders. The design and user friendliness is super cool! It's been a wonderful experience so far and I highly recommend it!,5,124,4.16.4.6,2020-01-26 11:33:38,,,most_relevant,com.anydo +gleeful dragon,https://lh3.googleusercontent.com/-tmxOJp21f-w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMvdYWDcuctRqQPj72TqhItk6nJ7w/photo.jpg,"I have been using this app for years, I can make different lists, add reminders, and it's very easy to use... Love it!",5,1,4.16.6.2,2020-03-20 14:12:17,,,most_relevant,com.anydo +Liz Bode,https://lh3.googleusercontent.com/a-/AOh14GjaLfEPfHLMZPTNgH7ZUf0EY1V01zNrAvVGLQapttU,"This is the best to do application I've ever used. I've tried a lot and I love the way this one breaks down the lists into today, tomorrow, upcoming and someday. I would definitely recommend it.",5,3,4.16.6.2,2020-02-25 15:34:52,,,most_relevant,com.anydo +Matthew Langmaid,https://lh3.googleusercontent.com/a-/AOh14GhB5lnv5BsXeyUwTxGbnNwMnf8zQjg89PGbFEwbfw,Does what it says and well ave doesn't try to be anything else. Easy interface to use. I have been using this for years and never had any issues and recently upgraded to premium.,5,6,4.16.6.2,2020-02-11 21:24:24,,,most_relevant,com.anydo +Bhurbhuva Chauhan,https://lh3.googleusercontent.com/-d2mJdl_3eEU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMPOuam0Gu4Xlii2EqYlic3T5PhAw/photo.jpg,User friendly interface with voice commands ...thats the best feature However It still takes time to add a task by voice as We have to use GUI for time and date reminder Can i somehow Set by default : priority to high and reminder to repeat with alarm,5,7,4.16.6.2,2020-02-24 07:01:49,,,most_relevant,com.anydo +Laura Rogers,https://lh3.googleusercontent.com/a-/AOh14GjIuofQmxl39ZK1-j2uBOjPVmB6dn8xICyg0N4u2g,Really helpful app to keep track of my to do list. It is nice to have an app that is very organized. And I can keep it separated from my other things. Great App and better than any app I have tried. A++++,5,57,4.16.4.6,2020-01-24 20:46:41,Thanks for your review 🙏! Please share it with your friends 😎 we would greatly appreciate it!,2020-01-27 08:37:03,most_relevant,com.anydo +Kyle M,https://lh3.googleusercontent.com/-2_-9HbjIqVI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP1qr-1q8F6cyW1aEtoiP-f7dHSJQ/photo.jpg,"I like I can have a list of my assignments to do and even create grocery lists and it sections it off automatically. Once done, I just simple cross out what was completed. No issues after using for about 2 weeks.",5,5,4.16.5.0,2020-02-04 16:26:44,,,most_relevant,com.anydo +Deborah Telek,https://lh3.googleusercontent.com/a-/AOh14GirJKTexvUXCGGZwwFBSuPQ2cBYDHjdklFuA2s3,"I have loved the past 2 days of using the free version and, coupled with ""focus"" mode on my phone, the past 2 days have been super productive. Thank you!",5,8,4.16.5.0,2020-02-06 05:35:55,"We 💙 you! Feel free to check out our Support Center to learn how you can take better advantage of the app here: https://support.any.do and if you have any questions, feel free to let us know at Customers@any.do!",2020-02-06 08:02:23,most_relevant,com.anydo +Johannes Wöhler,https://lh3.googleusercontent.com/a-/AOh14GgECDJKN0E3InO9spQnkk2a8BQ3LVrkwxXZdcKJaw,"Happy!!! I just found out this amazing app. I love devs from Israel, not discriminating others tho. But I have a thing about calendar view. It shows different month other than the current month, same with the today's date, it shows other dates hmmm...maybe I clicked or touch something? Help!",5,1,4.16.6.2,2020-02-27 02:59:26,,,most_relevant,com.anydo +Ching Pang Wong,https://lh3.googleusercontent.com/a-/AOh14Gj066aKkK0zv_0xWMzGmUnbiYGAlEGPnFOVAPUBrw,"Love it. Downloaded it and deleted it over the years, and everytime I get it back I get so amazed at the amazing new features. It helps me straighten up my life. Thank you.",5,4,4.16.4.6,2020-01-27 02:03:45,,,most_relevant,com.anydo +Bill Harnsberry,https://lh3.googleusercontent.com/-8zvuKd2fcpQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPMpU11bRUoSHmiTYKAWo0MsPHghA/photo.jpg,"Super app! Great layout makes it better for planning than using a standard calendar. Recurring tasks function clears so much unnecessary mental clutter, freeing up neurons to work on more passionate pursuits.",5,4,4.16.5.0,2020-02-05 15:16:36,,,most_relevant,com.anydo +Anat Orgad,https://lh3.googleusercontent.com/a-/AOh14Gi-tMpmIP2IyhPUWcQXJ06I0Ax5HdjLFcX_M5s3Mw,"Great app. Combining the calendar, tasks and grocery list make it so much easier to handle and manage my time/day.",5,5,4.17.0.2,2020-03-15 02:21:03,,,most_relevant,com.anydo +vidya sagar reddy,https://lh3.googleusercontent.com/-ci8CVEEimAU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMBxKNchtmdRxXU5-MrP6ECT2Q7wA/photo.jpg,Super cool app to organize your day. It reminds you all the time to keep up with your schedule. A great app to change your way from unorganized to better organized.,5,2,4.16.6.2,2020-03-02 18:06:56,,,most_relevant,com.anydo +Rachelle Todd,https://lh3.googleusercontent.com/a-/AOh14GidCFMZ1Cv2jcMLmf0ZSZY1RDC6WQ5ryvyzmEbOaw,This app has helped me greatly in getting organized and managing my life. I like that it intergrates with my calendar and email. Great productivity and goal app.,5,5,4.16.5.0,2020-02-07 13:56:13,,,most_relevant,com.anydo +xKrystal RL,https://lh3.googleusercontent.com/a-/AOh14GjLk0sXh3hRrxmbCTRYmx8RafBzh0NEOdDrpWmwUg,This all is great! I have downloaded and used it for 20 minutes then I bought premium for one year straight away because it worth So much things in this app and helps me alot. 5 Stars and reccomend it!,5,6,4.16.6.2,2020-02-07 05:51:06,,,most_relevant,com.anydo +Mia Marie,https://lh3.googleusercontent.com/a-/AOh14GheTgJkdtFqsJetki_fx5NEqIwYpJ8I-6MZPOXU5A,"This is the very best app I've EVER used. If you are a lists person, ANY.DO is a must have, so easy to use, tons of feature, but as simple as you need it to be.",5,3,4.16.6.2,2020-03-03 15:17:48,We love hearing that! Thanks for sharing and make sure to spread the word to your friends and family so that they can have their productivity boosted as well!,2020-03-03 21:24:15,most_relevant,com.anydo +Ashwinn Muttharasappaan,https://lh3.googleusercontent.com/a-/AOh14GjZTs12xhrFnSASzxg6_SrzTBlAz7oqGJvZpPoW3l0,Bough the premium subscription for 37 AUD. Worth every penny. Made a top firm list of things I need to sort out this week. Was wondering where to start for past couple hours. Checked out Google. Creating a group for myself in whatsapp to remind. Astonightly undoubtedly worthy. New whatsapp integrations let's you to be reminded whenever you set it to. Chartbots to the win!,5,3,4.16.6.2,2020-02-17 11:43:06,,,most_relevant,com.anydo +David Gimmig,https://lh3.googleusercontent.com/-zEfFotyoAvk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP7HNK5KuPzFts0Pd4sWBv300480A/photo.jpg,Contnuously improving and yet very good since the beginning. Very clear UI and design. Easy to use. Great job !,5,4,4.17.0.2,2020-03-15 13:42:06,,,most_relevant,com.anydo +Dantastic TM,https://lh3.googleusercontent.com/-AK4LV3NGMGg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPOnKNm5fXFyToLGSZAk6sLK7vp6w/photo.jpg,I really appreciate the format of this one. I just wish I could color code without paying extra.,5,4,4.17.0.2,2020-03-22 21:13:24,,,most_relevant,com.anydo +Mad Hatter,https://lh3.googleusercontent.com/a-/AOh14GjgBsm_Sn8FyfjCkw_P8ydDqkzbhFGdOpeYlOVx,Brilliant and syncs with Google Home like a gem! Interface is gorgeous compared to Google calendar. Love the way Google calendar and tasks all work together seamlessly.,5,8,4.16.6.2,2020-02-11 01:26:03,,,most_relevant,com.anydo +Amit Dusane,https://lh3.googleusercontent.com/a-/AOh14Gi812DqAuHC1IF-evpwlCn2VmFcTbAh7EhadYwM3k4,I bought paid version. It works perfectly for me. Serves the purpose. Now I am able to manage my daily tasks with efficiency.,5,2,4.16.6.2,2020-03-02 11:31:23,,,most_relevant,com.anydo +Chandra.S.Shekar,https://lh3.googleusercontent.com/a-/AOh14Gg30PJGtof2GOwmDAG99ESO0ZvnpK3LTH0ZcFWVkQ,The 4th image from the beginning has a time difference in the phone time and the edited time.. can change it Apart from that.. the app is just great and loved it 😁✌,5,2,4.16.6.2,2020-02-19 13:44:23,,,most_relevant,com.anydo +Renee Tu,https://lh3.googleusercontent.com/a-/AOh14Gi3Yg76IHJTc2NJKdZQIl-4M0Jx_AaeihP0VLkLtw,Amazing app! I love how easy it is to use. It automatically syncs with my calenders and the grocery list is such a plus!,5,4,4.16.5.0,2020-02-04 01:16:31,,,most_relevant,com.anydo +Sujith Kumar,https://lh3.googleusercontent.com/a-/AOh14GhHr_Zvfv77rSxKJqFELOoC0oV-VhBxBD-uDaO9Lw,"This app is truly helping me be productive and the UI is very good. Reminders sent on WhatsApp are a boon, in short a great app.",5,1,4.17.0.2,2020-03-23 03:47:13,,,most_relevant,com.anydo +Laura Kate,https://lh3.googleusercontent.com/a-/AOh14GiE1zshm4isXWANQxz8IlLZCOuRFM9YLLww7xDvpQ,I love this app. It never crashes or loses my data. The collaborative features are great. This is the only task managment app I recommend.,5,4,4.16.6.2,2020-02-19 15:01:53,Love hearing that! We hope you made sure to share the app with your friends and colleagues so that they can boost their productivity too!,2020-02-23 13:25:53,most_relevant,com.anydo +Becky Morton,https://lh3.googleusercontent.com/a-/AOh14GjekrJ7ujewD21sZCvVmxANdvzuqLBRCj3OLfi-,"Great app, a section to keep track of birthdays, anniversaries, addresses.would be a great addition",5,3,4.16.4.6,2020-01-27 13:30:08,,,most_relevant,com.anydo +JT JR. vlogs,https://lh3.googleusercontent.com/a-/AOh14Gg9WZLLkdEsqqH6yCNd98PkKIydIM1gY2RTLIvF,Great since i always forget everything. I highly recommend the premium it makes my life so much easier im sure it would make yours easier too,5,4,4.16.5.0,2020-01-31 14:02:16,,,most_relevant,com.anydo +Vasyl Sk,https://lh3.googleusercontent.com/-93DTkx-0P2o/AAAAAAAAAAI/AAAAAAAAAJI/AAKWJJPiuu9K2fMc5RGrtZ55LY9Qi84_Sw/photo.jpg,"Basic functionality, and apparently that's enough for personal usage. But this animations and user experience make you open this app again and again and again...",5,1,4.16.6.2,2020-02-17 22:06:48,Just what we're aiming at! This way it's easy to stay productive ;) Make sure to share Any.do with your family and friends so that they can boost their productivity too!,2020-02-23 13:24:15,most_relevant,com.anydo +Mobola Ojibara,https://lh3.googleusercontent.com/-QLR9ynb6qes/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMXdhk5wBhwjzB6GxEjCiHi2cCNXA/photo.jpg,"Any.do is just the best task organiser, it has been of tremendous help to me professionally and even for organising stuff at home. I love love love this App!",5,3,4.16.5.0,2020-02-14 10:01:05,,,most_relevant,com.anydo +Alex Arsenault,https://lh3.googleusercontent.com/a-/AOh14Ggr5w-ve2ZQpcXTmQ9kdbu5vMgNP63mlvAg-MIX0Q,"Amazing app, I use it frequently and it is a life saver, as my memory can be bad sometimes. Thank you for the awesome app!",5,2,4.16.6.2,2020-02-17 06:44:40,,,most_relevant,com.anydo +Trevor Lamb,https://lh3.googleusercontent.com/-IR9wcdAxaXA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMpRJwoqUJKnesld4zp5QP2EARlzw/photo.jpg,"Streamlined, attractive and functional interface. My favorite app for making lists!!!",5,2,4.16.6.2,2020-02-21 03:46:54,,,most_relevant,com.anydo +Любомир Буткевич,https://lh3.googleusercontent.com/a-/AOh14Gh25Z_cDXwq4qTkHmVHpx0NH63ym-oOJFs92j31,"At the moment I'm using free version and it's suit my needs. I've never rated apps before, so I think it's good mark.",5,8,4.17.0.2,2020-03-04 09:02:26,,,most_relevant,com.anydo +umesh kolandra,https://lh3.googleusercontent.com/a-/AOh14GjG_m7Md8YSN4l7SqnbN9NcObqDlGNTxAvEGyyN,Good reminder app fir personal and professional use i used the free version and am happy with it. Takes a couple if days to get used to although the UI is quite simple.,5,6,4.16.6.2,2020-02-08 17:22:59,,,most_relevant,com.anydo +Andres Marciales,https://lh3.googleusercontent.com/a-/AOh14GgPCooMmAkKbQ0Zrvbie2Ga1UnL3Lyr43oKDIeioQ,I just love it! It's so simple without so many colors that stun the brain! I like!,5,4,4.16.6.2,2020-02-16 21:25:41,,,most_relevant,com.anydo +Joon H. Lee,https://lh3.googleusercontent.com/a-/AOh14Gh_wQzpKWPvwi5VKfVsjzUcHi9THoLDiPA4SABULA,Looks clean and this app have those details which other apps doesnt have. This can complete functions which I needed. Great App.,5,3,4.16.5.0,2020-02-04 03:13:53,,,most_relevant,com.anydo +Aya Ali,https://lh3.googleusercontent.com/a-/AOh14GiQZf7kG2_xFm28Fi4XA-XFub5KFyt3lhBrBC-zMA,This app helps me with my Tasks. The new update is really awesome. I'm impressed and totally satisfied. Thanks 😉,5,3,4.16.4.2,2020-01-24 00:16:31,,,most_relevant,com.anydo +cholo,https://lh3.googleusercontent.com/a-/AOh14GimojbtYWjxsYHEgl5hqRrIuV9fzYNJq-Ueh1Dt,"The best, cleanest, most uncluttered to do list app. Thank you Matt for sharing this",5,1,4.16.6.2,2020-02-20 04:53:39,,,most_relevant,com.anydo +Jonathan Shaw,https://lh3.googleusercontent.com/a-/AOh14GgrXkvAMru1qE52l31Lk9COI-IDehFYGOw6xg8uTg,"Any.do has helped me significantly in my day. The app allows you to have control of your plans, events and tasks.",5,3,4.16.6.2,2020-02-13 11:13:20,,,most_relevant,com.anydo +Juanita Chong,https://lh3.googleusercontent.com/-lYesWkEJY4Y/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMxGBkonwhfp9tkRFmvIjzO8HWitA/photo.jpg,"I used this app many years ago but I can't remember why I stopped using it. Whatever the reason was, they must have improved a lot because I'm loving the app now. Never been so productive.",5,1,4.16.6.2,2020-02-22 09:00:43,,,most_relevant,com.anydo +Salman Sheikh,https://lh3.googleusercontent.com/a-/AOh14Gg3Gdsi40kLrtC0BH2-xkNFoo52QpwApIkTnut8,"Love the user experience, makes it easy and fun to manage my todos!",5,2,4.17.0.2,2020-03-08 00:22:14,We love hearing that! Make sure to share the app with your family and friends so that they can get in on the fun as well 😉,2020-03-10 04:32:07,most_relevant,com.anydo +Mushon,https://lh3.googleusercontent.com/a-/AOh14Gg-bXjLjzqdPpHmpYDRlmswaFHpchuAnM5a0I-RFeA,"Amazing app, would be happy to have simple record button to add taska while drivrin thing pop up to my head",5,2,4.16.4.2,2020-01-22 08:59:39,Awesome 😎 Please share it with your friends 🙏,2020-01-22 10:27:43,most_relevant,com.anydo +Tammy LeDoux,https://lh3.googleusercontent.com/a-/AOh14GjTkWzhYrVNLIPr9cbQNCtY1CBMHDhkBhrWxoRqYg,This app is perfect for making my list and helping me stay on task to complete them.,5,2,4.16.5.0,2020-02-02 12:21:25,,,most_relevant,com.anydo +Luke Choate,https://lh3.googleusercontent.com/-o4DCr5uxRLM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN8UM6V3peYH_wyACHWyrtgtRFwdg/photo.jpg,Makes managing an ever changing task list with various deadlines manageable. Highly recommend.,5,4,4.17.0.2,2020-03-04 13:03:42,,,most_relevant,com.anydo +TJ Rutty,https://lh3.googleusercontent.com/a-/AOh14Ghwv_TdWP0PT7p4ys90ff5JbeNGy_an0KS3gBLa,Great app for staying on track with several tasks.,5,1,4.17.0.2,2020-03-10 10:32:50,,,most_relevant,com.anydo +kakumanu vijayalakshmi,https://lh3.googleusercontent.com/-QaOgSbeKaqQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMc3JCZZ7vGQG-wHguqaYe7_5jENQ/photo.jpg,This is the best app u can customize your to do list and its reminding feature can help u not 4get any of the task u have to do and it can be much more better to have ur to do list on ur phone cz it can keep u remember ur tasks,5,2,4.16.5.0,2020-01-30 13:47:56,,,most_relevant,com.anydo +Kevin Heffernan,https://lh3.googleusercontent.com/a-/AOh14Gg3oq1Wocfaqqp7tYB3egfS19JaW-h9eTVQB4i1_Kk,"Any.do does it right. Light where it needs to be light, strong where it needs to be strong. A delight to use.",5,1,4.17.0.2,2020-03-10 17:43:28,,,most_relevant,com.anydo +Ameerah H,https://lh3.googleusercontent.com/-6VTXHrGQjeM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO4MABK0voWnjVLh8FbVWtefWB48Q/photo.jpg,Excellent app.helps thru the day to get things done. Great app,5,5,4.17.0.2,2020-03-24 06:31:44,,,most_relevant,com.anydo +Ken Spurvey,https://lh3.googleusercontent.com/-SdeBfd9ZjyI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMLKbMZAo2zPeRVHOyV9KvyBA0smA/photo.jpg,Honestly perfect. Allows for you to add subtasks to major objectives and is very cross platform compatible.,5,3,4.16.5.0,2020-01-30 20:27:20,,,most_relevant,com.anydo +Mike Cahill,https://lh3.googleusercontent.com/-hPFuCWk13QU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPkcEReKpxSnoFMrcsFeya0mT77AQ/photo.jpg,"Excellent app, easy to use, and great, responsive customer service.",5,4,4.16.6.2,2020-02-10 00:36:22,,,most_relevant,com.anydo +Donna Russell-Agnew,https://lh3.googleusercontent.com/-MJKeU7RWuHk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPSJdXyqUrJgLZyqhK2i4ImvdwDdw/photo.jpg,Lifesaver...I am very forgetful but this app along with Alexa make sure I remember the simplest of things every day. Love it,5,3,4.16.6.2,2020-02-13 20:39:57,,,most_relevant,com.anydo +Claire Swain,https://lh3.googleusercontent.com/a-/AOh14Gh6y8zJUiWBjO_Rywrx4DJA4263Tts5InpzYb9g0w,Excellent - Thank you. I appreciate you having a free version without a time limit.,5,2,4.16.6.2,2020-02-20 21:29:11,,,most_relevant,com.anydo +Monta ha Run,https://lh3.googleusercontent.com/a-/AOh14Gjci5DehjXgXf9sAL7Mz6JiKVMAgqJcwetEpnbK,It's an awesome apps to maintain daily work and get notify.,5,2,4.16.6.2,2020-03-10 12:13:45,,,most_relevant,com.anydo +Khanyisa Sowazi,https://lh3.googleusercontent.com/a-/AOh14GjEZgWis9FTOm_UfTx9ZtkMs1Re3ap6EDMPodPCIA,"This is a very useful app, helps me a lot with my day to day task management",5,2,4.17.0.2,2020-03-19 15:13:15,,,most_relevant,com.anydo +Fabio Manara,https://lh3.googleusercontent.com/a-/AOh14GioyeRqEP4zK8u2Kc6ZvO9F4bUXpssrkDmd97dg,Exceptional!!! Works perfectly.,5,0,4.17.0.3,2020-04-01 14:01:47,,,most_relevant,com.anydo +Brian Fuller,https://lh3.googleusercontent.com/a-/AOh14Gh8o3fPU5L5N7w8GFIgEbkZDRP05Kc2IdgBdloq,Helps me keep track of my tasks and goals in an intuitive and easy to use interface.,5,2,4.16.4.6,2020-01-26 12:57:41,,,most_relevant,com.anydo +Hus na,https://lh3.googleusercontent.com/a-/AOh14GhnTLA4__hcx4ANyoIK8n07VbTuxwR6vUSya9KiHw,Simple and easy to use. Help and remind me day to day task.,5,1,4.16.6.2,2020-03-01 04:38:34,,,most_relevant,com.anydo +Mrs D,https://lh3.googleusercontent.com/a-/AOh14Ggwha5pBAB4pWkeWz2aKmIpUXlS112qUGH2BU5vPg,It's very very helpful and simple to use....I use it daily to list n maintain by task list or reminders.,5,3,4.17.0.2,2020-03-03 02:31:08,Thanks for the support! Be sure to share the app with your friends and family so that they can enjoy it too!,2020-03-03 21:29:13,most_relevant,com.anydo +alfe calunod,https://lh3.googleusercontent.com/a-/AOh14GhBadi6MNnQw4-WWqpXpHShn17Xn-MjleQl2unCKw,Smooth and easy to use. No disruptive ads and no annoying interface overlays,5,5,4.16.4.6,2020-01-28 01:07:20,,,most_relevant,com.anydo +Wilson Gomez,https://lh3.googleusercontent.com/a-/AOh14GjvoVxmTLvws9f4x5BKXPuckBq7_mKUcRoI-wyB6w,"This is very well design app, the calendar mixing of the tasks and events is very handy.",5,2,4.16.6.2,2020-02-15 02:26:35,,,most_relevant,com.anydo +Amber,https://lh3.googleusercontent.com/a-/AOh14Gg3eZZu4Mt4uAQjDZ4WW36N19LGzyOv7AAGME4i,"As someone with chronic forgetfulness, the intrusive overlay and mediative periods to plan needed tasks are a godsend.",5,2,4.16.5.0,2020-01-31 04:19:38,,,most_relevant,com.anydo +Gilang J,https://lh3.googleusercontent.com/-rivppGqFx4Y/AAAAAAAAAAI/AAAAAAAADaM/AAKWJJN4u9I24lep5g6aD4-9InY6BX8NQw/photo.jpg,This app is simple to use. Reliable for daily use. It helped me much to do my tasks.,5,2,4.16.6.2,2020-02-11 10:08:11,Thanks! Please share Any.do with your friends 🙏,2020-02-12 08:24:19,most_relevant,com.anydo +Mo' Ajibona,https://lh3.googleusercontent.com/a-/AOh14GiE9zgnC_Ov1GNkwlbJ437mSPnwo4xvFhttW7mW7Q,Simple and intuitive. Best to-do app I've ever used.,5,1,4.16.6.2,2020-02-27 15:07:19,,,most_relevant,com.anydo +Lucy Grady,https://lh3.googleusercontent.com/-DKNjUrkeMyM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOaM6-jaN5DQRP45xI17prTu7kJdg/photo.jpg,"Perfect for my to do list, easy to use and does what it says on the tin!",5,1,4.16.6.2,2020-02-21 21:20:47,,,most_relevant,com.anydo +Niranjan Shrestha,https://lh3.googleusercontent.com/a-/AOh14GiV6UCn_ibUnlf_Zd1F9KFEItJx6w5JffXmcC77Dg,"Really intuitive, works great. Simplified my life. Highly recommended",5,3,4.16.6.2,2020-02-17 17:10:34,Love hearing that! We hope you made sure to share the app with your friends and colleagues so that they can enjoy its features too!,2020-02-23 13:24:50,most_relevant,com.anydo +okeng fernando,https://lh3.googleusercontent.com/a-/AOh14GhlrpJdLcmmuwnn6UaSpRRk-VRhKQxxZN4Gb1xTMA,"Awesome app Improved my efficiency by 80% Pros-> integrates with google cal, awesome UI&UX",5,0,4.16.5.0,2020-04-03 17:51:33,,,most_relevant,com.anydo +SushiKat 1071,https://lh3.googleusercontent.com/a-/AOh14Gi1zj5-1U82INW1RZ4-VvfBY8sPJFINgkPknlVB,Very good for time management and reminding you when need to get things done.,5,2,4.16.4.6,2020-01-29 01:00:45,,,most_relevant,com.anydo +Nate Warren Colleps,https://lh3.googleusercontent.com/a-/AOh14GiK_AH6CNtiHlY11eNXlTI_0UZ6Op7FmOFjGB2uTw,excellent app. I like how seamlessly it Zaps to other apps.,5,2,4.16.6.2,2020-02-12 03:06:07,,,most_relevant,com.anydo +Katty C,https://lh3.googleusercontent.com/a-/AOh14GihWgnx_kBGWqoqEpeJJaXePqS2Q3HI-GSe2SADMJo,Super easy to use. Great widget keeps lists clean . Love it,5,3,4.17.0.2,2020-03-04 02:49:50,,,most_relevant,com.anydo +Charlene Gainey,https://lh3.googleusercontent.com/a-/AOh14GhPBJx9jYUxL2PAUAXTIx2iggeT94BmEqMg39Jyr7w,This app Rocks goodness! Perfect for daily tasks and appts.,5,2,4.17.0.2,2020-03-03 22:49:55,,,most_relevant,com.anydo +Bafo Hutiva,https://lh3.googleusercontent.com/a-/AOh14GjPXV8DspYVr-tPCgC-VD7Dp-udKm8kNfSVqQky_Q,"Its a great todo app, have assistant integration make it awesome! If you can please add telegram bot and ifttt..",5,19,4.16.5.0,2020-01-30 10:20:26,"Hi, please note that we recently released our Google Assistant support! You can enable this via the Google Assistant app, by tapping on your profile => settings => services => Notes & Lists, and selecting Any.do as your default Notes & lists provider! +You can learn more here: https://support.any.do/anydo-google-assistant/",2020-01-27 08:50:47,most_relevant,com.anydo +HamZa BalOch,https://lh3.googleusercontent.com/a-/AOh14GhRKgzHnFEmMTvnIuV1OZM5_Jwemu2CQln77b3FLQ8,"Amazing App Now I Can Easily Remember Every Single Shopping Items, But I Can't Afford Premium 😭😭😭 Thank you So much Sir💕💕💕",5,3,4.16.5.0,2020-02-01 18:53:29,"No worries😁! Any.do is a free app. We provide 95% of our features at no cost, including all core features. We never require our users to upgrade. You can use Any.do for free for as long as you like.",2020-01-30 09:48:10,most_relevant,com.anydo +blake c,https://lh3.googleusercontent.com/a-/AOh14GhpaGj7oHTuRKlRIZWj9d8PFYLWxz1v7nLO1dWPxw,Love the app... Very powerful. Used it for 2 years.,5,2,4.16.6.2,2020-02-10 00:42:55,,,most_relevant,com.anydo +Steve Hronec,https://lh3.googleusercontent.com/a-/AOh14GjBA00C8MqeBeh3VNg-PrNYh1wlqmieaPQF46oKdWE,Love the app! Great replacement for the dying Wunderlist!,5,2,4.16.6.2,2020-02-16 00:33:38,,,most_relevant,com.anydo +Wendi Smith,https://lh3.googleusercontent.com/-O8WpOUovIPU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPPTExJ1Dbu9PK1ZCM2Y4EoEC6n3w/photo.jpg,So far app has performed well. Has many more features that I need to explore. Recommend it for important reminders,5,2,4.16.6.2,2020-02-15 02:01:35,,,most_relevant,com.anydo +Rajinder Singh Dhariwal,https://lh3.googleusercontent.com/-tcMpP3Yf2eQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPn4pEP6dSQf7oH0UthNfLXv5wGpw/photo.jpg,Very best planner. I just love using it.,5,2,4.16.6.2,2020-02-21 14:27:30,,,most_relevant,com.anydo +Mike Byrne,https://lh3.googleusercontent.com/-eq8-tW75bbI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMAXE9VIbJBfGokDdwpJs5z3fdriA/photo.jpg,"Great planning app, reliable and easy to use.",5,1,4.16.4.6,2020-01-24 18:45:56,,,most_relevant,com.anydo +Melissa Mccallum,https://lh3.googleusercontent.com/--39vSGiwhB0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM4uHxyLUc270bYJc3YHTAiGkqsQw/photo.jpg,"Very easy to use ,never neglect a bill or task now😃",5,1,4.16.5.0,2020-02-04 03:55:03,,,most_relevant,com.anydo +Christina A,https://lh3.googleusercontent.com/-d_AxlVgy58g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM3lmz_TUpOnPIShztqPMy6WHmN4Q/photo.jpg,So easy to use and the free options are generous,5,1,4.17.0.2,2020-03-25 01:17:34,,,most_relevant,com.anydo +Jay F,https://lh3.googleusercontent.com/a-/AOh14GgWhyQN_1c7voPJbbtBhFSSK4PUY1y-A5YTAxcSOg,Great but I'm on premium and I cant cancel play store not showing subscription either,5,1,4.17.0.2,2020-03-22 17:36:43,,,most_relevant,com.anydo +Zainab Ahmad,https://lh3.googleusercontent.com/a-/AOh14GiH2xUG4kknQIP2XKwLK5jCbn_p9b_4QuFfBPY9,"It is absolutely amazing,I can complete my tasks now very easily.",5,1,4.16.4.6,2020-01-25 16:00:21,,,most_relevant,com.anydo +Bonginkosi Phumlane,https://lh3.googleusercontent.com/-dqAuCM2Z1uE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNLxbEf8h-K8EEfJZwZEDJ5e9P27A/photo.jpg,"Best experience, has helped me to be organised as much as possible. Thanks",5,2,4.17.0.2,2020-03-01 11:30:36,,,most_relevant,com.anydo +Ammon Bingham,https://lh3.googleusercontent.com/-wH_MhVOx0hY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNXWn1mAnMIzqaONS7gRj0fTiNLKg/photo.jpg,It's been great! A great to do list app,5,1,4.17.0.2,2020-03-19 18:04:26,,,most_relevant,com.anydo +Chase Cobb,https://lh3.googleusercontent.com/a-/AOh14GhFbaYaRfpzG_4qnvWPA6bNGWdu-GeoR0xMc2oqvlA,Love this app. It works very well and helps me organize my life,5,1,4.17.0.2,2020-03-09 20:46:42,We 💙you too! Be sure to share the app with your friends and family so that they can enjoy it as well :),2020-03-10 04:26:19,most_relevant,com.anydo +Vishal Agrawal,https://lh3.googleusercontent.com/-iSaWgRNPPVI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPeX4BLvp9LNpp17cEKRURGCeTBFQ/photo.jpg,"I have tried soo many to do apps. But this is the best I've come across. Regret that I found it this late. 😅 this is an amazing app. Great work guys! ♥️ Planning to buy a subscription pretty soon. One suggestion: Instead of billing annually, could you do it quarterly or monthly subscription.",5,0,4.17.0.3,2020-04-06 18:51:38,,,newest,com.anydo +Aleza Rohan,https://lh3.googleusercontent.com/a-/AOh14Ggeg7YMTCtwtMPfCpfrRn88wrc2znEhoCzE1MB5,Lovely 👍👍👍👍👍,5,0,,2020-04-06 18:29:40,,,newest,com.anydo +Linda Brigante,https://lh3.googleusercontent.com/a-/AOh14Gj0-OYXwY6Vk1tsn_V1vlPQjMDnrLvG-uPvlu55,I appreciate being able to schedule blocks of time to tackle tasks (I also love the grocery list app),5,0,4.17.0.3,2020-04-06 17:09:39,,,newest,com.anydo +Sar Sothy,https://lh3.googleusercontent.com/-ZgSQGFq813Y/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMJiyhDfnMuGfD6yTGmSlSBo9ECdw/photo.jpg,I'm glad it's app have clear more,5,0,4.17.0.2,2020-04-06 10:29:20,,,newest,com.anydo +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"This app is the best, I started leaving my games, YouTube, social media, and just organizing my life through this, it started organising everything in my life, from the grocery lists, to my studying lists, to my cleaning lists, to the calender, and all of these and I still didnt participate in the premium of this app, it is amazing even without it, though I think it would be better with it... THIS APPLICATION IS THR BEST LIFE ORGANISER!!! DOWNLOAD IT NOW FOR FREE!!! FOR BETTER LIFE!!! ;)",5,3,4.17.0.3,2020-04-05 23:58:33,Thanks for the awesome review! We're so glad Any.do is helping you organize your life and school work! Keep up the good work ❤️️,2019-02-05 13:07:29,newest,com.anydo +Chijioke Ike,https://lh3.googleusercontent.com/-3vCE0_fJzo0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOqV-fyCNDtg5LwoQzxuvQMdg8IVw/photo.jpg,Good organizer,5,0,4.17.0.3,2020-04-05 19:42:03,,,newest,com.anydo +Zoey Thae,https://lh3.googleusercontent.com/-cx-LsTDyluk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNYJvF3ZKVSHn7t31mWjVLlP-Zgyw/photo.jpg,"It really helped dude, I have online school and since there is no teacher to scream at me I delay my work but never seem to do it. But thanks to this app I'm planning everything and I'm slowly getting back in track. Recommend to all students out there",5,0,4.17.0.3,2020-04-05 18:52:54,We are really glad to hear that Any.do is helping you stay focused in school! Thanks for the recommendation :D,2020-04-06 14:18:10,newest,com.anydo +Khushman Deomurari,https://lh3.googleusercontent.com/a-/AOh14GiZqKE7ve-gKQBc1IJ0Agn3Aj0wIlAwbgZ8xXLsHg,"If you don't do any event today, it will not move to next day automatically. You have to manually click on event and give time and date again. I have to use task for this. I got it. It's good if time of tasks can also be shown on widget. Thanks!",5,9,4.17.0.3,2020-04-05 15:10:20,"Hi, we're happy we could help :) At the moment, the widget shows Tasks from the All lists, by today\ tomorrow\ upcoming\ someday. You can also switch to the Calendar View on the widget, and see all tasks with time stamps right below the monthly display. If you have any questions, please let us know here- https://www.any.do/contact_form",2020-04-06 14:12:46,newest,com.anydo +Katia Teixeira,https://lh3.googleusercontent.com/a-/AOh14GhV1DIUJvEDW8KFdT2VOP11virTSunA27bbOqf0Rw,Love it to keep track of my projects,5,0,4.17.0.2,2020-04-05 02:22:27,,,newest,com.anydo +ahmad Mortazavi,https://lh3.googleusercontent.com/a-/AOh14GhaXguIkPNGdu9grChXnA6MiS7fZv5pe3nyT__jgQ,Perfect 👌👌,5,0,,2020-04-04 15:08:14,,,newest,com.anydo +Aahnik Daw,https://lh3.googleusercontent.com/a-/AOh14GgsIw6w6KiGVWgfLTci6-7cn5JdfjXRILai-I019g,Download ing,5,0,,2020-04-04 02:04:50,,,newest,com.anydo +okeng fernando,https://lh3.googleusercontent.com/a-/AOh14GhlrpJdLcmmuwnn6UaSpRRk-VRhKQxxZN4Gb1xTMA,"Awesome app Improved my efficiency by 80% Pros-> integrates with google cal, awesome UI&UX",5,0,4.16.5.0,2020-04-03 17:51:33,,,newest,com.anydo +YB MOHD YUSUF,https://lh3.googleusercontent.com/a-/AOh14GjUD2F68beqWdBOrmPV1CFDbvb0ZW-35kwKIdA5eWw,Excellent,5,0,,2020-04-03 15:58:46,,,newest,com.anydo +George Savlovschi,https://lh3.googleusercontent.com/a-/AOh14GhPGsy2E1iILNyonRMxW4pOanPGrm5aZjRAYEIz9Q,"Hey friends, your ""draw over other apps"" isn't working on Huawei latest EMUI anymore.",5,1,4.17.0.3,2020-04-03 11:31:25,,,newest,com.anydo +Dzhilaal Bahalwan,https://lh3.googleusercontent.com/a-/AOh14Gh0Y6Qe4PivvHcKwBcrkb13cPCAjPU7GMtAPiV8,Good app,5,0,4.17.0.3,2020-04-03 02:23:59,,,newest,com.anydo +drasj kakar,https://lh3.googleusercontent.com/-hnFnDoqo-9Y/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPZTf0brYVMRER-h9mEJg6MjDCV4A/photo.jpg,Highly appreciable app,5,0,,2020-04-03 01:36:21,,,newest,com.anydo +Haleigh Goins,https://lh3.googleusercontent.com/a-/AOh14GhAdU2YCIbOPtx-SlY0j6Pl6WQFO_hzDrgiZBKZ8Q,It's great,5,0,,2020-04-03 00:27:11,,,newest,com.anydo +Lavelle New,https://lh3.googleusercontent.com/-4To55kCWhmU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMzfeBuNXzjLi6n3sLe2P7p8so98w/photo.jpg,"HANDS DOWN ""THE BEST!"" If you have a laundry list of ""TO DO"" items on your list, this app is absolutely the best that I have found that keeps all of them nice and compact in one very user friendly interface.",5,0,,2020-04-02 22:33:16,,,newest,com.anydo +Imran Sattar,https://lh3.googleusercontent.com/a-/AOh14GjGf9LHDUQ9gqdBM83gkB8QKPdYE9dJi5Q6RqC6Cw,Excellent,5,0,4.17.0.3,2020-04-02 10:04:17,,,newest,com.anydo +דור לובטון,https://lh3.googleusercontent.com/a-/AOh14Gi7TNlQ9Szn8PKSEpg6XpsERFB7TwHAaiyULi1QMQ0,"אחלה אפליקציה , עובדת נהדר גם בעיברית",5,0,4.17.0.3,2020-04-02 07:22:31,,,newest,com.anydo +ruhollah ghodusi,https://lh3.googleusercontent.com/a-/AOh14GhsmRSjAmKIQ_dYHqBXZfkoGaHQ31S7whVLu7gJ,Perfect app,5,0,4.17.0.2,2020-04-01 21:05:59,,,newest,com.anydo +Dino Mikael,https://lh3.googleusercontent.com/-lmH5Y68tK_Q/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOSPydcmAXNzPCWrDLB6QUPJvhH1g/photo.jpg,Has been using for 6 years now. Thumbs Up!,5,0,4.17.0.3,2020-04-01 16:54:06,,,newest,com.anydo +ROγAL GAMING,https://lh3.googleusercontent.com/a-/AOh14GgsYId8z36jHVKFx5LCy-LpKE_bQ91kMnhquTKI8w,Very good,5,0,4.17.0.3,2020-04-01 16:47:03,,,newest,com.anydo +Fabio Manara,https://lh3.googleusercontent.com/a-/AOh14GioyeRqEP4zK8u2Kc6ZvO9F4bUXpssrkDmd97dg,Exceptional!!! Works perfectly.,5,0,4.17.0.3,2020-04-01 14:01:47,,,newest,com.anydo +Trideep Mushahary,https://lh3.googleusercontent.com/-ksVlJTKjckg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN3sP1TSx8-zKOwUMAHR7f4GfChNw/photo.jpg,Student,5,0,4.17.0.3,2020-04-01 07:45:39,,,newest,com.anydo +Pedro Sousa,https://lh3.googleusercontent.com/a-/AOh14GhkZMQUsBSlmuhcQxR_x0LW2nw8n0Iz5qJdYWuEQQ,So far great for me,5,1,4.17.0.3,2020-03-31 22:24:05,,,newest,com.anydo +EH Enayet Reza,https://lh3.googleusercontent.com/a-/AOh14GjTj1xFjT2EfBXxfVi7V-Tty3JmNHROhjNDL8HIPA,Wonderful application,5,0,4.17.0.3,2020-03-31 17:39:20,,,newest,com.anydo +Afi Jashari,https://lh3.googleusercontent.com/-8NrB9cA8_vo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPD8ajLdKqCKaVBbLICRx99tcSLeQ/photo.jpg,I lovet it,5,0,,2020-03-31 09:50:05,,,newest,com.anydo +Ranu Hazra,https://lh3.googleusercontent.com/a-/AOh14Gjj47g8uAtY8iozULplM6LJDD2rWoCF7cm0s-mshg,Nice,5,0,,2020-03-31 07:59:56,,,newest,com.anydo +Satyan Khushoo,https://lh3.googleusercontent.com/a-/AOh14Gh9qL_Z7MminICxMGaBzsYin7VeRmc47SzUgJowCu8,Excellent app to get your daily tasks organised.,5,0,4.17.0.2,2020-03-31 04:56:12,,,newest,com.anydo +Michelle Glasscock,https://lh3.googleusercontent.com/a-/AOh14Gh5S6C7fhF0VU85y4AyUN_eBTEEs7NTjLQYOlkK_w,The app has a clean sharp interface and is easy to use. I appreciate having one app for my daily ToDo's and calendar needs. It also never unexpectedly quits on me.,5,0,4.16.5.0,2020-03-31 03:44:35,,,newest,com.anydo +X X,https://lh3.googleusercontent.com/a-/AOh14GjfC_c9EqbyMg_KJd3n-F-j5quqxMDbMNJvGC8wBPk,"Love hate relationship. The app is great.. It nags and nags and @*! @@! nags per your settings until you want to kill it.. Dead!! And then again! But it does its job. The reminders are rude, intrusive, nagging, annoying and constant but acheive your goal of reminding you to take care of things until you actually achieve items on your list. I HATE it.. But it's supreme for procrastinators, busy people, air heads, and anyone else who needs a keeper to keep them on target. Phone/setting dependent",5,1,4.17.0.2,2020-03-31 03:29:59,,,newest,com.anydo +karell oliver,https://lh3.googleusercontent.com/-B02Zl1sbi_o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNMeHKw5mWwnQ8focxE6bMmonS40A/photo.jpg,Does everything you need when you have a task top of mind throw it in Anydo.,5,0,4.16.6.2,2020-03-30 19:30:59,,,newest,com.anydo +Vanix Affzon,https://lh3.googleusercontent.com/-nrTzHTWl3wQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNXettc85Mmcqwd3sr0NR1UD-rqLQ/photo.jpg,This app can really improve your life!,5,0,4.17.0.2,2020-03-30 19:06:50,,,newest,com.anydo +meditation before exam,https://lh3.googleusercontent.com/-miTFipgVqmQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPU6bUISooZ8xXWq-SZ_tcT4Oj_WQ/photo.jpg,Perfect,5,0,4.17.0.2,2020-03-30 17:00:46,,,newest,com.anydo +Aneeqe A. Khan,https://lh3.googleusercontent.com/a-/AOh14GjtH4g8MYQkKeP4X8s1N9HHiHbjTnp0Ta2fm1ITrA,"Any.do is one of the best productivity app, I've made my whole family download it!",5,0,4.17.0.2,2020-03-30 16:08:43,,,newest,com.anydo +James Pearson,https://lh3.googleusercontent.com/-LkNJjEuyRuI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMLHyfnoH5tveEpNUJ_HE4Bohm5Tg/photo.jpg,"I love the fact this integrates with WhatsApp, I use it for work and personal it make thing so much easier!",5,1,4.17.0.3,2020-03-30 14:34:40,,,newest,com.anydo +Satta M Fogbawa Sheka,https://lh3.googleusercontent.com/-Kf1eOPnoMB8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPg4DjFI89ukSX8aRxHHNa473LUtQ/photo.jpg,Great app,5,0,,2020-03-30 02:50:30,,,newest,com.anydo +Pietros Mikhailovich,https://lh3.googleusercontent.com/-JC85BvcaWu4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPt9EGVPyT_8mVotylmCFOorSdk_Q/photo.jpg,Exceptional!,5,0,4.17.0.3,2020-03-29 08:45:10,,,newest,com.anydo +Dravity Gaming,https://lh3.googleusercontent.com/a-/AOh14GiA61Vos0Qb85B7_AHGi5-OcpgyWsWhL_xa8vl9HB8,pretty useful,5,0,4.17.0.2,2020-03-29 06:17:57,,,newest,com.anydo +leonil chachona,https://lh3.googleusercontent.com/-aTT2WwhjDpQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN8lyarRzDJbae5OUcJqvzu8ZWPww/photo.jpg,Wonderful app,5,0,4.17.0.2,2020-03-28 06:36:13,,,newest,com.anydo +MARCUS DELONTE THOMPSON,https://lh3.googleusercontent.com/a-/AOh14GiAS1NXtZBtZLrVc74mUotWPTM1mwg9dDkT0F1myA,lMMD,5,0,4.17.0.3,2020-03-27 17:34:13,,,newest,com.anydo +Gordan Polonijo,https://lh3.googleusercontent.com/a-/AOh14GiSWsdHYoYBxa9Og9gmCFFXrGvrQfJfeVhny0rk6g,Cool,5,0,4.16.5.0,2020-03-27 09:09:44,,,newest,com.anydo +Soheil Jafari,https://lh3.googleusercontent.com/-ykFYFqFDJcM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO88x2IRH3RafEdk4UAeUxCP-dKrA/photo.jpg,very good,5,0,4.16.6.2,2020-03-27 08:25:21,,,newest,com.anydo +Ram kumar,https://lh3.googleusercontent.com/a-/AOh14GgoFSJJUGba7wGOh9aBSpCNdgtbdb13daNZ9HHvrw,5 stars for being a radiohead fan.... Great app by the way....,5,0,4.15.9.9,2020-03-26 17:14:10,,,newest,com.anydo +Samiron Paul,https://lh3.googleusercontent.com/a-/AOh14GiagYIvitNzL3zA5LocCxZ7vXr_hCIbonRaZHV0dvQ,Excellent product!! I think this is the third time I am editing my review for this app. That's mainly because the app popped up the review request while I was planning my tasks. I should feel like I was interrupted right? No I wasn't. This app is helping me for several years I even forgot when I started using it. And I just can't stress enough how much I like it. Fantastic work guys!,5,28,4.17.0.2,2020-03-26 16:26:42,Thank you for the updated review Samiron! We work hard to make Any.do the best that it can be :),2019-02-05 13:04:05,newest,com.anydo +Elias Dib,https://lh3.googleusercontent.com/-T_tE48fyfhw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNA_S0DJi24JpNljOL0CFYApHnvOg/photo.jpg,Great.... makes you organise your life.,5,0,4.17.0.2,2020-03-26 13:06:19,,,newest,com.anydo +Sumarni Kala',https://lh3.googleusercontent.com/a-/AOh14Giy8mq0mlCTcnr-Sibcwqzd4mQ4G76JjlyZE2P0Bw,"Dari beberapa aplikasi untuk list kerjaan, ini yg terbaik. Wajib punya aplikasi ini",5,0,4.17.0.2,2020-03-26 10:26:33,,,newest,com.anydo +Matsha Matan,https://lh3.googleusercontent.com/a-/AOh14GjL6bInpItsRJaYAHEbjJiM2KM6zfFwbFhhIY_j,Awesome easy to use,5,0,4.17.0.2,2020-03-26 09:13:26,,,newest,com.anydo +Ramesh Chand,https://lh3.googleusercontent.com/-j8qInAqXki4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO-9nmZtfQBqvdLuRXkn1guTVSJQQ/photo.jpg,TV,5,0,4.17.0.2,2020-03-26 07:36:11,,,newest,com.anydo +John Tull,https://lh3.googleusercontent.com/-25u77serx8Q/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO_u-9keGky396-zpcZ4MzPsaxy6Q/photo.jpg,"I really like this app. It is right there to write down reminders and if you need to write a more detailed description is easy to add. Addendum 3/25/2020. Still happy with this App. Use it everyday, every week. Right there when I need it.",5,0,4.17.0.3,2020-03-26 03:57:54,,,newest,com.anydo +Mishel Monro,https://lh3.googleusercontent.com/a-/AOh14Gi1kl0yh6Wcluwemqumt28aClYPM5epzalBy1tHsQ,Awesome!,5,5,4.17.0.3,2020-03-25 21:02:57,,,newest,com.anydo +Eddie Mayes,https://lh3.googleusercontent.com/a-/AOh14GjoIj941E3zwa8sGhZXHfeSZJLec8j_UftTbgvOtA,Love it. Helps keep my mind monkeys on task.,5,0,4.17.0.2,2020-03-25 20:06:23,,,newest,com.anydo +Manish Sharma,https://lh3.googleusercontent.com/a-/AOh14Gj-gHM93_QDiExbvXkt_mvevVN_axw9d30vEeQrsQ,Good. Please make a note taking app also. You make amazing apps.,5,0,4.17.0.2,2020-03-25 14:08:05,,,newest,com.anydo +Mohamed Shapan,https://lh3.googleusercontent.com/a-/AOh14GiMpwSjej9UmMPjkXmlmYKA_8x0axEdmVFuczcC3g,Very good,5,0,4.15.9.6,2020-03-25 06:35:22,,,newest,com.anydo +sunny dahiya,https://lh3.googleusercontent.com/-gbp0AJ8uG6A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNpbkVQgVkSUy2n4Vy4fUEMdEw5XQ/photo.jpg,Very good experience...,5,0,4.17.0.2,2020-03-25 05:16:47,,,newest,com.anydo +Christina A,https://lh3.googleusercontent.com/-d_AxlVgy58g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM3lmz_TUpOnPIShztqPMy6WHmN4Q/photo.jpg,So easy to use and the free options are generous,5,1,4.17.0.2,2020-03-25 01:17:34,,,newest,com.anydo +hussain ali,https://lh3.googleusercontent.com/a-/AOh14Ggbd_AnB-Kup2lOyTYmbco5tsjJktFD5Hgehl4,The best yo do list app 👌🏻👌🏻 I like the notification process and style,5,0,4.17.0.2,2020-03-24 13:09:10,,,newest,com.anydo +AFTM. media,https://lh3.googleusercontent.com/a-/AOh14Giwm95xL9aHFYDPyH2v4e7Rvz7v8EZ671VEzL9lkw,very helpful,5,0,4.17.0.2,2020-03-24 10:04:49,,,newest,com.anydo +Darlington Katsuwa,https://lh3.googleusercontent.com/a-/AOh14Gid3bCXxsoRNHaF0N8bbM-hHhksT3teffjNI6AYzA,Awesome apk,5,0,4.17.0.2,2020-03-24 07:32:19,,,newest,com.anydo +Ameerah H,https://lh3.googleusercontent.com/-6VTXHrGQjeM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO4MABK0voWnjVLh8FbVWtefWB48Q/photo.jpg,Excellent app.helps thru the day to get things done. Great app,5,5,4.17.0.2,2020-03-24 06:31:44,,,newest,com.anydo +Ahmed Elserty,https://lh3.googleusercontent.com/a-/AOh14Gjlolg_lVpx8za_5kEEMNh3PkjwWczzqgsBu4ha8w,Good app,5,1,4.14.1.2,2020-03-23 20:45:43,,,newest,com.anydo +Adi Sagie,https://lh3.googleusercontent.com/a-/AOh14GgweP2UheEQrg3L4BXOZv7EiSX4M9RNNlZwmehgNl8,"אפליקציה פשוטה, ברורה ועונה על הצרכים. כיף להשתמש בה. עדי",5,0,4.17.0.2,2020-03-23 16:29:43,,,newest,com.anydo +Raghu Iyer,https://lh3.googleusercontent.com/a-/AOh14Gh31Cb2oofLcNOaMgoVYndbcllxNBdcRAzuQUWVgQ,Amazing,5,0,4.17.0.2,2020-03-23 15:52:09,,,newest,com.anydo +HINDUSTANI BOY,https://lh3.googleusercontent.com/a-/AOh14Gj0OX3oTcKzDhSEtiW4p09FVyP64j-hUbBIzlze6g,Superb.,5,0,4.17.0.2,2020-03-23 06:48:37,,,newest,com.anydo +Sujith Kumar,https://lh3.googleusercontent.com/a-/AOh14GhHr_Zvfv77rSxKJqFELOoC0oV-VhBxBD-uDaO9Lw,"This app is truly helping me be productive and the UI is very good. Reminders sent on WhatsApp are a boon, in short a great app.",5,1,4.17.0.2,2020-03-23 03:47:13,,,newest,com.anydo +Markjhayjoseph Roque,https://lh3.googleusercontent.com/a-/AOh14GhzzbrVbIcvtGy3xtf1h6hRHKzXLaTtC06ZoQfUFw,Verry good,5,0,,2020-03-23 01:18:58,,,newest,com.anydo +HámØod Śåd,https://lh3.googleusercontent.com/-_Lu1iDn_xY8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP9_Vk4670MXFqHOFfqgAcXGbfMvQ/photo.jpg,Very good app,5,0,4.17.0.2,2020-03-22 21:25:17,,,newest,com.anydo +Dantastic TM,https://lh3.googleusercontent.com/-AK4LV3NGMGg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPOnKNm5fXFyToLGSZAk6sLK7vp6w/photo.jpg,I really appreciate the format of this one. I just wish I could color code without paying extra.,5,4,4.17.0.2,2020-03-22 21:13:24,,,newest,com.anydo +Rochelle Rochelle,https://lh3.googleusercontent.com/a-/AOh14GiFto0BosZNrU2CxkGiCRgKEqbQ01144BavgPQ,Excellent with alexa,5,1,4.17.0.2,2020-03-22 18:28:10,,,newest,com.anydo +Jay F,https://lh3.googleusercontent.com/a-/AOh14GgWhyQN_1c7voPJbbtBhFSSK4PUY1y-A5YTAxcSOg,Great but I'm on premium and I cant cancel play store not showing subscription either,5,1,4.17.0.2,2020-03-22 17:36:43,,,newest,com.anydo +Longdisang Tzudir,https://lh3.googleusercontent.com/a-/AOh14Gijx_2WXsVBSlriVwmKUrWiJrHlDEDCKiqdIXdRUw,Just starting out. Will post an honest opinion after I take it for a spin!!!,5,0,4.17.0.2,2020-03-22 08:37:29,,,newest,com.anydo +Petyo Popov,https://lh3.googleusercontent.com/a-/AOh14Gh9Y5Wv6BqRdszdzsZHFuI3ZjEbYBxjaPW0KRZRyA,best,5,0,,2020-03-22 07:39:48,,,newest,com.anydo +Linda Walker,https://lh3.googleusercontent.com/a-/AOh14GjKo4CiVCgfh-YZFvHE-qYnIPxMy3UfPQhvDJGT,Great app,5,0,4.17.0.2,2020-03-22 07:27:41,,,newest,com.anydo +Nuruddeen A. Muhammad,https://lh3.googleusercontent.com/-E_rGvHbT9no/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN7C-lu74fCIrz3dXfEPvKj-8K-nA/photo.jpg,Good. Simple and Effective,5,0,4.17.0.2,2020-03-22 00:59:46,,,newest,com.anydo +Carel Jacobus Els,https://lh3.googleusercontent.com/-3slwkBCWu_E/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNHdrvKQu9bj1N7VGDjdbU77Uz8kg/photo.jpg,Always good,5,0,,2020-03-21 18:07:50,,,newest,com.anydo +Harry Triplet,https://lh3.googleusercontent.com/a-/AOh14Gg-Ogh2gVlmw_GDNU1QxRSPVaIOItosFuK2jRB2cQ,"Been using it well over a year, I find it useful",5,0,4.17.0.2,2020-03-21 16:50:23,,,newest,com.anydo +Trisha Oakes,https://lh3.googleusercontent.com/a-/AOh14GjtEPB1rnjFJxpdWUdnP4pOIDz9LIb0TbBPFkuomw,The best organizational app out there!,5,0,4.17.0.2,2020-03-21 13:15:51,,,newest,com.anydo +Keoagile Khiba,https://lh3.googleusercontent.com/a-/AOh14GhxO16_padXITjliyp1LKLB3VvK78mx2f8Hxqly,"Easy to use, efficient, beats the rest.",5,1,4.17.0.2,2020-03-21 10:30:34,,,newest,com.anydo +gleeful dragon,https://lh3.googleusercontent.com/-tmxOJp21f-w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMvdYWDcuctRqQPj72TqhItk6nJ7w/photo.jpg,"I have been using this app for years, I can make different lists, add reminders, and it's very easy to use... Love it!",5,1,4.16.6.2,2020-03-20 14:12:17,,,newest,com.anydo +DaviGamer X,https://lh3.googleusercontent.com/a-/AOh14GhprtG2zaW-gER1o_fSFUMNVX8mlbY9KgPM-9Fx,"It is very useful, and helps my day yield more",5,0,4.17.0.2,2020-03-20 13:25:43,,,newest,com.anydo +Nidaa Al Siraj,https://lh3.googleusercontent.com/-3-XY5wHAc8A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNvqSjl7QaqikKHoP6XlI2s0edkMw/photo.jpg,Very useful app,5,0,4.17.0.2,2020-03-20 06:15:13,,,newest,com.anydo +Suthee Vannasirikul,https://lh3.googleusercontent.com/a-/AOh14GiWyPQ09KMFo6njyQQbMRBXxycAEYZl2if7w_Grdjo,"agenda always in sync so you’ll never forget a thing. Sync your phone’s calendar, google calendar, Facebook events, outlook calendar or any other calendar so you don’t forget an important event. • SET REMINDERS - One time reminders, recurring reminders, Location reminders & voice reminders. NEW! Easily create tasks and get reminders in WhatsApp. • WORK TOGE",5,0,4.15.7.14,2020-03-19 21:13:15,,,newest,com.anydo +Ammon Bingham,https://lh3.googleusercontent.com/-wH_MhVOx0hY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNXWn1mAnMIzqaONS7gRj0fTiNLKg/photo.jpg,It's been great! A great to do list app,5,1,4.17.0.2,2020-03-19 18:04:26,,,newest,com.anydo +Monica Gladson,https://lh3.googleusercontent.com/-2HLCtLQ4CeY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPihcUms-j0WPkVG0_tocP_n8FlOw/photo.jpg,Love the reminders,5,0,,2020-03-19 15:50:12,,,newest,com.anydo +Khanyisa Sowazi,https://lh3.googleusercontent.com/a-/AOh14GjEZgWis9FTOm_UfTx9ZtkMs1Re3ap6EDMPodPCIA,"This is a very useful app, helps me a lot with my day to day task management",5,2,4.17.0.2,2020-03-19 15:13:15,,,newest,com.anydo +Oxy Graal,https://lh3.googleusercontent.com/a-/AOh14GiNFGlF7xdJZ-O2UIbIaLJQlleMvNQu4Os09iXY,niceee it help me alotp,5,0,4.17.0.2,2020-03-19 10:31:52,,,newest,com.anydo +mahdi bagherzadeh,https://lh3.googleusercontent.com/a-/AOh14GhSOXOqj-emwgxn2lySmWJKGRUJdvXPSJ4aaruLoQ,Didn't syncs with google account,5,0,4.17.0.2,2020-03-19 09:20:39,,,newest,com.anydo +Tiago H. Ferreira,https://lh3.googleusercontent.com/a-/AOh14GhAiD2SxCl7IOtfaCy-rJtuEhgfTOQRcwJx79lBYA,Amazing,5,0,4.17.0.2,2020-03-18 23:03:40,,,newest,com.anydo +Sanjeed Salahuddin,https://lh3.googleusercontent.com/a-/AOh14GiPFiCI4lw10JYqIAqd77prBQNuomiSJ6zTJqtXqQ,Really useful,5,0,4.17.0.2,2020-03-18 19:23:46,,,newest,com.anydo +Farkasova Andrea,https://lh3.googleusercontent.com/a-/AOh14GiL_056-szhdQSOSf5uOVe4rjQ6tOPh9Us9Odgy63U,Easy good app. So far I like it.,5,0,,2020-03-18 12:11:08,Please share with your friends ❤️,2020-03-18 13:52:28,newest,com.anydo +Oluwatobi Emmanuel Toya,https://lh3.googleusercontent.com/a-/AOh14Gg7BWw4rKCfhYRf4wgX6nKV5Nru4ldeNtdGt_zYAA,Great app,5,0,4.16.3.6,2020-03-17 22:50:02,Please share with your friends ❤️,2020-03-18 13:54:56,newest,com.anydo +PaynGerry,https://lh3.googleusercontent.com/a-/AOh14GgBcyKUvbsNmmBtoYPWVBtf63vZ-dtoPdfgFS9weQ,Super usefull....plain and simple,5,0,4.17.0.2,2020-03-17 20:35:33,Please share with your friends ❤️,2020-03-18 13:55:05,newest,com.anydo +Behaylhu Sime,https://lh3.googleusercontent.com/-a31rzg61C-o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMEnBWPzorpqImLRtJyYsw0btcrBQ/photo.jpg,Ok,5,0,4.17.0.2,2020-03-17 19:07:38,Please share with your friends ❤️,2020-03-18 13:55:09,newest,com.anydo +kurt simon,https://lh3.googleusercontent.com/a-/AOh14GjrYYCOgRQOyLhLHtX8QDFakETaeacDGv5tzmtP,Absolutely love it,5,0,,2020-03-17 18:27:56,Please share with your friends ❤️,2020-03-18 13:55:15,newest,com.anydo +Anita Marbrow,https://lh3.googleusercontent.com/a-/AOh14GhpRSRkBMEVXGGUdL1xIpkfmWHyJBx0Rhc3qsV9T9g,"Really useful, easy to use",5,1,4.17.0.2,2020-03-17 17:14:16,,,newest,com.anydo +J A B,https://lh3.googleusercontent.com/a-/AOh14GikGr0ZMG-zPWst59ExJC9a8R0pOGWkggqoQsg,Very well polished minimalist.,5,0,4.17.0.2,2020-03-17 13:50:31,Please share with your friends ❤️,2020-03-18 13:55:30,newest,com.anydo +Rohan Rawat,https://lh3.googleusercontent.com/a-/AOh14Gj8259Cuz68B0DLEWoGnYxF2lQmjxRkZrbrhnF1PQ,Best productivity App till now🌠🌠🌠🌠🌠,5,0,,2020-03-17 05:53:49,Please share with your friends ❤️,2020-03-18 13:55:54,newest,com.anydo +sanmath Shetty,https://lh3.googleusercontent.com/-8I0ggcLcqIo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN4rgQse2Vm_fBSTd9uO40AmTmQ4g/photo.jpg,User friendly,5,0,4.16.6.2,2020-03-16 16:06:51,Please share with your friends ❤️,2020-03-18 13:56:11,newest,com.anydo +Alfie Hisanan,https://lh3.googleusercontent.com/a-/AOh14GgxG5EEAqIgnsn-ysyQAzeDN-Yx_WKL1JhJPmgUTQ,Very good,5,0,4.17.0.2,2020-03-16 14:51:17,Please share with your friends ❤️,2020-03-18 14:03:41,newest,com.anydo +Norbert Purger,https://lh3.googleusercontent.com/a-/AOh14GjVyuQbhFXhIAm593hCYOWPX-npXeSTf-PAYV9KpQ,"Rescheduling tasks is simply randomly not working. Rescheduling something for today can make task dissapear, earlier I have experienced that it duplicated tasks. This way a basic functionality is broken and I just lost what should I follow-up today... No activity log available, as that is a paid feature. I guess I will never try that now.",1,1,15.4.0,2020-03-30 08:12:27,,,most_relevant,com.todoist +Dustin DeForest,https://lh3.googleusercontent.com/-_8TFWeWRNpw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNAjvqmJJp0ghxpC2b1K3VepCzOzA/photo.jpg,"Subscription service to enable simple reminders is ridiculous. I was willing to pay a one time fee for a solid app, but having to pay nearly $5 per month just to enable reminders is absurd. Once I saw how many basic features were being kept behind a pay wall, I had to stop using it",1,0,15.4.0,2020-04-04 02:40:42,,,most_relevant,com.todoist +Peter Venn,https://lh3.googleusercontent.com/-nA6xAMn3NWQ/AAAAAAAAAAI/AAAAAAAATCA/AAKWJJM3xhV93AQgkGGVwwhhVqNqRmHIMg/photo.jpg,Dislike the latest widget downgrade - the loss of the ability to select multiple tasks is frustrating. Not sure how long I will stick with this app now as the widget is far less user friendly than previous version.,1,3,15.4.0,2020-03-28 23:30:52,"Hi Peter, thank you for the feedback! This has been noted.",2020-03-30 19:22:40,most_relevant,com.todoist +Riley Rimer,https://lh3.googleusercontent.com/a-/AOh14GhEW-_kfYm3A3ZwnZFYbuCeynmaZsipyYbsfnFavw,newest update to the widget made it suck. There is not a reschedule button anymore which I used to use to move all my overdue tasks to a new day. Also no button on the widget to open up the main app anymore.,1,2,15.4.0,2020-03-30 03:35:14,"Hi Riley, thank you for the feedback! This is something that we are looking into.",2020-03-30 19:03:05,most_relevant,com.todoist +Charles Ewert,https://lh3.googleusercontent.com/a-/AOh14GiT0QlO44UiYIOI2eMQmtPD0Nchh7xMRTOX_2oKjn4,"New android widget is garbage. ""Full control"" yea ok you took away useful features and gave us more theme options. Can no longer open app from widget and most importantly you can no longer select multiple tasks from the widget which was super useful for rescheduling.",1,4,15.4.0,2020-03-28 06:26:23,"Hi Charles, thank you for the feedback! We are looking into this now :)",2020-03-30 19:34:59,most_relevant,com.todoist +Макар Лысенко,https://lh3.googleusercontent.com/-C2J84IKNbr8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNRstLmvTD3v0mpz3IERHCT8UGSgw/photo.jpg,Please make it possible to quickly switch from the widget to the app. One star to attract attention. Will make it 5 as soon as widgetToAppButton appears.,1,2,15.4.0,2020-03-31 00:49:16,,,most_relevant,com.todoist +Foolish and Hungry,https://lh3.googleusercontent.com/a-/AOh14GgI5A248u9WznfnAbYaXD20WsSQNNszeoJ02-81,A nice little app. Liked most aspects of it... But had to uninstall because of just one feature - reminder. I dont know why would someone decide to ship this very basic feature as a premium one! If an app like this reminds me after two days in an email that I have overdue tasks than there is absolutely no purpose of using such an app.,1,7,15.1.0,2020-02-11 11:55:13,,,most_relevant,com.todoist +Sameer Motiwala,https://lh3.googleusercontent.com/a-/AOh14Gh_vMKBIoIXm0Aww6ihMv5pKNErejLKtALkVn5MBg,"Looking at the features and lots of accolades I tried uninstalled after just a trial. Reason: In the free version notification feature is missing. If the task misses the set time, there is no notification. We will come to know only if we open the app. Insanely Ridiculous. Not sure what have the product team thought while excluding such a basic feature.",1,73,15.2.0,2020-02-21 14:56:16,,,most_relevant,com.todoist +Rahul Trivedi,https://lh3.googleusercontent.com/a-/AOh14GhOBN1LVAxs6S-iaX0EC2ZJHmRqAuyBRfEvwKjf,Mostly features are for premium account and you can not delete account once you create. Disappointed with to this app,1,1,15.3.3,2020-03-27 02:51:16,,,most_relevant,com.todoist +Acey Day,https://lh3.googleusercontent.com/a-/AOh14GhSoecM1JSeLiBsA0bg_VPR9AR3MlcuQhU-qwWx,"The widget, which is the whole reason I downloaded this app, doesn't seem to be updating anymore, even when I click the refresh button. Additionally, there doesn't seem to be a way to mark a task as not completed once you've already marked it as completed.",1,5,15.2.0,2020-02-21 15:40:37,,,most_relevant,com.todoist +Lars Panzerbjørn,https://lh3.googleusercontent.com/a-/AOh14Gg-hRhh5qF7oSYW7NTA-6wCWpiu0ikwFkA2SR-2dA,"Wow... A To Do list app without the option to make your tasks recurring. I won't lie, I am absolutely baffled that this is omitted. Maybe it's in the web version, or the iOS version, but I'll never know... You tick a date in the calendar and... Where is the tick box for 'repeat every xxx'? Maybe it's a premium feature, I guess I'll never know that either...",1,18,15.2.0,2020-03-04 10:49:01,"Lars, we fully support recurring task. All you have to do to create them is simply type something like ""every day"" or ""every Monday"" or ""every 3 weeks"" within the name of the task and the app will recognize it :)",2020-03-09 14:37:44,most_relevant,com.todoist +Federico Santamorena,https://lh3.googleusercontent.com/a-/AOh14Gi90xXxlTpaBMqFy_jFIL4kFLiAbCy7FHtDf1we5uM,Todoist has 1 big flaw that really prevents me to use it well: if you schedule a task to be repeated daily and do it few minutes after midnight it will skip a day. Overdue tasks that are completed should add the repeat time to the previous date not be reset to the day they are marked compete!!,1,4,15.2.0,2020-02-23 07:17:48,,,most_relevant,com.todoist +J. R. West,https://lh3.googleusercontent.com/-pwVS78z1nxw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPJsfBxDgL5efA5SAT-WQXGCrOCtw/photo.jpg,"This is a loser. Upgraded to premium without my permission for a free trial, no option in the app to return to free option. And I'm maxed out on tasks ON the premium. Will delete before I pay for premium. Prior review: Migrated from Wunderlist seamlessly. Much more cumbersome compared to Wunderlist.",1,0,15.2.0,2020-03-02 17:47:09,"Hello, sorry to hear that. Could you please contact us at support@todoist.com so that we could help you sort it out?",2020-03-02 15:24:17,most_relevant,com.todoist +La Poupée,https://lh3.googleusercontent.com/a-/AOh14GhQ4MgMXTES7OkaH89dw0EkElT110LMIkM9eSbTaw,"Todoist is garbage. Nevermind the idiotic text-based method for creating daily tasks, this stupid app seems to think ""every day"" is a suggestion, even with Premium. Been using this app for three weeks & every few days, it refuses to renew my daily tasks. Scheduled reminders disappear. Curse & blast whoever EOL'd Wunderlist cuz it was perfect for my needs. This todoist trash? Not at all. I will cling to Wunderlist until the very end.",1,21,15.0.8,2020-01-23 21:04:51,,,most_relevant,com.todoist +Travis,https://lh3.googleusercontent.com/a-/AOh14GixxoG-3neKxKSo3WSC3tHMwlMtFZ-4knhZC59h,Bought the paid version and added various tasks on desktop. Won't even log me in or load anything. Downloaded the app to access my tasks and shows nothing. I even paid for premium. Very dissatisfied and disputing through my bank. This is worst than free apps like keepnote. Seriously disappointed,1,37,15.0.8,2020-01-23 07:32:11,,,most_relevant,com.todoist +Khushman Deomurari,https://lh3.googleusercontent.com/a-/AOh14GiZqKE7ve-gKQBc1IJ0Agn3Aj0wIlAwbgZ8xXLsHg,No trial to try premium features. What's the point trying app without able to set reminders?,1,0,15.4.0,2020-04-04 20:09:22,,,most_relevant,com.todoist +TE5LA,https://lh3.googleusercontent.com/a-/AOh14GiLFfmZO0KVgE8Ve62G5cA2KMkTPS2R0AKmX7RL,"First, the app changed my task name. Then, the task just disappeared and was not in the app. Bad app.",1,0,15.2.0,2020-03-09 17:58:13,Sorry to hear that. Please contact support@todoist.com about this issue and we'll look into it.,2020-03-17 15:01:27,most_relevant,com.todoist +stephen heuser,https://lh3.googleusercontent.com/a-/AOh14GiC7s7rDfQPPMpxkDrZU3sT3rljXaoVMTr4XMpY2g,"Don't lock reminders behind a pay wall, or if you do, make it a 1 time purchase.",1,0,15.4.0,2020-04-02 06:24:53,,,most_relevant,com.todoist +Faizal Khan,https://lh3.googleusercontent.com/a-/AOh14GgABSTcKr6F2FcHtMxSOb-9D1iRj41GZRBlBWpzwA,Needs registration. Can't use existing caldav task accounts,1,0,15.3.2,2020-03-20 21:41:00,"Hi Faizal, are you trying to migrate to Todoist? Could you send us more details at support@todoist.com?",2020-03-23 16:53:41,most_relevant,com.todoist +M. K.,https://lh3.googleusercontent.com/-wp3t2-va_xo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNlu4mcNfobsw8-8wl-xduYkeUumg/photo.jpg,AFTER THE LAST UPDATE I CAN'T CONNECT TO THE APP ANYMORE WITH MY VPN TURNED ON WHICH IS EXTREMELY ANNOYING!!!,1,2,15.1.0,2020-01-26 14:43:08,"Hi M. K., sorry to hear that :( Could you please contact us at support@todoist.com with your Todoist account email? We'll be happy to look into it 👍🏻",2020-01-27 16:40:16,most_relevant,com.todoist +Xyxyxy,https://lh3.googleusercontent.com/a-/AOh14Ghh9igTh-AQ1J7V0HtXw2vmpb646mRvA606S1V3_w,Can't use it without providing your email address. Immediate uninstall.,1,2,15.1.0,2020-01-29 09:25:23,"Sorry to hear that :( Setting up an account takes only a few seconds and allows you to access your to-do list anytime, anywhere, not just on one device.",2020-02-04 12:04:22,most_relevant,com.todoist +Philip Wright,https://lh3.googleusercontent.com/a-/AOh14GivZwNIYM05AG_CgvznCHq75DAF_BxuWOWIahj6qg,$36 per year for push notification reminders? No thanks.,1,1,15.3.2,2020-03-13 00:57:58,,,most_relevant,com.todoist +Eda Aksoy,https://lh3.googleusercontent.com/a-/AOh14Gj_RR4qzAh9CFnWWZm4tRG6bd6w7I4qA5Wb8LeW7Q,Reminders are a premium feature? Are you kidding me? This is an absolute deal breaker. I deleted after trying for 2 minutes.,1,1,15.2.0,2020-02-22 22:42:44,,,most_relevant,com.todoist +Amity Joshi,https://lh3.googleusercontent.com/a-/AOh14Ggk9Orx-6334O5XfBrN9qoCPAdHrIdGbxVHY6mhagc,Half of stuff is paid.. reminder is something basic with notes. If this is not free whats use of app.,1,1,15.1.0,2020-02-12 02:46:55,,,most_relevant,com.todoist +Krzysztof Zimmermann,https://lh3.googleusercontent.com/a-/AOh14GjuO4Ich-dfSKTME1z1bXCDy8sdiO0wofWG1UyMHA,"The app will put by default new tasks into Inbox but Inbox is not what you see when opening Todoist. Instead you might see that there are no tasks for the next 7 days. There's no logic in it, app's assistant integrated with Google Assistant fails to find any tasks, even if asked specifically about those in Inbox. Todoist is cumbersome and annoying, it's actually a general problem with task apps: they're too much and fail to actually do what they are made for.",1,10,15.0.7,2020-01-16 12:30:48,"Krzysztof, the app uses the Inbox as a default project because every task has to go to some project so, unless specified otherwise, it'll go to the Inbox. You can change the default start view in the settings. Reg. the Assistant issue, please contact support@todoist.com and we'll look into it.",2020-01-20 12:46:36,most_relevant,com.todoist +Nidal Iguer,https://lh3.googleusercontent.com/a-/AOh14GjyWvtGg2Wyctjii5z_k6uY5vRm_-_kBkrThF8Nmw,"Another simple app with a subscription plan... This is not the right strategy to attract more people... This kind of app should be a one time payment no more. Whatever the number of apps with this strategy, it doesn't make it a good one.",1,3,15.0.7,2020-01-15 08:21:44,,,most_relevant,com.todoist +Henry,https://lh3.googleusercontent.com/-n-h6CfAP3qI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO5JwjKWdBqgoot0rBuVbwadsZN8g/photo.jpg,"Lazy tech support. Just can't be bothered. Took down my initial adverse review to give tech support a chance to sort things out. They just couldn't be bothered. I'm using Nine email and having a problem sharing with Todoist when I want to create a task using an email. Sometimes it works, more often it doesn't. However sharing with Wunderlist works every time! Todoist tech support answer: sort it out yourself with Nine! UPDATE. After numerous emails to tech support they still haven't bothered.",1,2,15.0.7,2020-01-21 20:06:18,"Pete, sorry to hear that, we will try to look into this issue again to double-check if it's an issue on Nine's end.",2019-11-19 12:26:36,most_relevant,com.todoist +Tiffany Ng,https://lh3.googleusercontent.com/-TjFgsKMkT10/AAAAAAAAAAI/AAAAAAAAMKk/AAKWJJNLrODmh1jFobgMwWElaf4XkH377g/photo.jpg,"Todoist has LOTS of bugs after update. Most annoying: 1 no longer able to select multiple tasks at a time, 2 when writing a task, keyboard blocks view of task box so you cant see what you're typing, 3completeled subtasks used to remain but crosses out, not it disappears (forcing users to relearn how to use the app), and 4 some tasks scheduled to appear under today does not. Makes you question the integrity of the app. I see no benefits to recent changes. Only bugs.",1,7,15.0.3,2019-11-20 22:57:44,"Tiffany, thank you for your feedback. 1. You can tap the 3-dot icon at the top and enter multi-select mode or swipe to the left to multi-select (if configured in the settings). 2. We will fix this bug soon. 3. This will partially be improved soon as well. 4. Please contact support@todoist.com to report this issue in detail.",2019-11-25 12:55:35,most_relevant,com.todoist +Natalya Turovtseva,https://lh3.googleusercontent.com/-BzwHLinLQ24/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM1ll1zacB07PEWwRaI7-5MNvUP6w/photo.jpg,"I've spent lot of time creating great multilevel reccuring subtasks just to find out that I actually see them unorganized in most needful page - today! And in Projects they are organized, but all together, regardless deadline. This is sooooo inconvenient, that makes having subtasks functionality just useless. Why can't you show subtasks under their parents everywhere? REPLY: Sorry, but it's inconsistent logic, as currently you show subtasks, that are NOT due today under task, that is due today.",1,6,15.0.3,2019-11-19 14:13:51,"Natalya, thank you for your feedback, we'll try to improve this in the future. The main reason why we currently don't show sub-tasks always under their parent in the today view is because doing so would require showing you tasks that aren't due today on your today list, if they have sub-tasks that are due today.",2019-11-19 12:25:20,most_relevant,com.todoist +Bryan Bartik,https://lh3.googleusercontent.com/-1xC5j8AiEw0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNKg_eV6RfmMowOOMog8D6isfH7RQ/photo.jpg,I used to like this. Then the updated it to include something called in Inbox which is just ruining it for me. I dont need that its making it confusing to keep track of things. I will be replacing this with another app.,1,2,15.0.7,2020-01-20 03:44:03,"Hi Bryan, to tell you the truth, we’ve always had the inbox 🙂 That's where the tasks go when you don't specify a project when adding a task. If you feel there is an issue, please do not hesitate to contact us at support@todoist.com.",2020-01-27 16:38:02,most_relevant,com.todoist +Kevin Trumbull,https://lh3.googleusercontent.com/-ishWiq-5dZY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM7k5sEbHC0yzv9shIgLny6NYVcsg/photo.jpg,"Like many others, the new big update has severely hindered my ability to use the app effectively. What used to be simple is now cumbersome with a 3x increase in the number of clicks to accomplish simple tasks. It wasn't broken, why did you have to 'fix' it. I'm hoping they roll back some of these changes, if they don't I will probably need to look elsewhere for a todo app.",1,63,15.0.1,2019-10-28 14:43:03,"Kevin, sorry to hear that. Please contact support@todoist.com to let us know which functionality exactly are you having trouble with so we could fix those issues in future updates.",2019-11-04 12:48:01,most_relevant,com.todoist +Nathan Harvey,https://lh3.googleusercontent.com/a-/AOh14GhAczhWEA2Pof-rf2xGaB5c1Ob8xd_1yB2BuTLiM6w,"Don't waste your money! Instead, to get a free trial you have to select business even if you aren't a business. Then you can still experience the miserable support experience of 6 days of radio silence (and it has now been 48 Hours of radio silence on my urgent ticket). The app/system/api is fairly good, but I would expect better bug support if they claim to have a business or even premium plan.",1,4,15.0.3,2019-11-21 18:57:20,,,most_relevant,com.todoist +Gillian Z,https://lh3.googleusercontent.com/a-/AOh14Gg0XOo7NDpPwMeJ-ZFxSDEb3U-FpFhJoIjc2rrmRw,"Todoist is the cornerstone of my organizational system. I am an undergraduate student and use this app to manage my reading assignments, exam schedule, administrative deadlines etc. sync with windows 10 desktop app is awesome. I am a free user and would gladly pay a one time price for full features here but a monthly subscription is a turn off. most recent update added check boxes which confused and altered the functionality of the widget (which was wicked BTW!). please add ability to turn off.",1,24,15.0.2,2019-11-01 17:06:27,"Gillian, thank you for your feedback, we'll look into improving this in the future.",2019-03-04 15:12:20,most_relevant,com.todoist +Damon Kiperchuk,https://lh3.googleusercontent.com/-qq57eLkHqVg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOd2NCJ5v5DOF8etV7GCrTBhEkMUg/photo.jpg,"And once again, here we have another app that gets worse with every update. Over complicating things. If it ain't broke, don't fix it. I get what they are trying to do, but it has made it less user friendly and more restrictive. I wish I could revert back to the previous version. Currently considering going back to the previous app I used to use.",1,18,15.0.0,2019-10-27 03:02:07,"Damon, sorry to hear that :( Please let us know which changes are you referring to exactly and what is it about them that you don't like. This way we could fix and improve things based on your detailed feedback.",2019-10-29 14:28:19,most_relevant,com.todoist +Luis Gomez,https://lh3.googleusercontent.com/a-/AOh14GgT3_jO6qm-8b9aZFfGFfPKCqVC_s5GZv3UqCgcCg,"Updates keep making the app worse for power users I can no longer type `3p` to make something due at 3pm when renaming a task. In fact, I cant find a way to assign a time to a task after its been created at all. If i do it the long way (assign time -> choose time on clock -> click ok) the time never gets assigned I can no longer type `p1` to give it first priority when renaming a task I used these features all the time and now it takes me significantly more time to perform these actions",1,23,15.0.0,2019-10-23 17:46:54,"Hi Luis, could you please contact us at support@todoist.com so we can help you with this? Thank you!",2019-10-29 14:15:31,most_relevant,com.todoist +Pamela Anderson,https://lh3.googleusercontent.com/a-/AOh14GhIBQuhngrJBaCIDrv7lG0u12aIgJhrTWur4hwqknc,"DO NOT BUY the premium if you need Alexa and/or Outlook to integrate like they falsely claim this ap does or you need any support from Todoist. Outlook integration has never been a synced integration, it only forwards tasks one-way & only works with limited Outlook paid platforms. They have Alexa issue notice seen only when you try to set it up, no warning before buying believing you can integrate both. No Support response yet. I want my money back. Such waste of hours. I feel scammed",1,9,15.0.3,2019-11-19 04:19:53,"Pamela, sorry to hear that :( Our Outlook plugin works on Windows, but we're planning to develop a new one which will also work on macOS. We're also working with Amazon on a new Alexa integration based on their new API. You will definitely receive a response from support to every question.",2019-11-25 12:57:12,most_relevant,com.todoist +Moritz Lindner,https://lh3.googleusercontent.com/a-/AOh14GjWKmgu84sEbC-PQvG5gGjjUlbl2vtCM8hZ4RsGLQ,"Recent major update has strongly impeded on usability of app. I understand and appreciate the focus on subtasks and some other features, however I think the developers have severely misjudged the actual most common user stories. Was always a big fan, paid subscriber for many years, but this update was a major letdown. Unnecessary changes for something that was working almost perfectly.",1,37,15.0.4,2019-12-11 06:56:19,,,most_relevant,com.todoist +Vishweshwaran D,https://lh3.googleusercontent.com/-qbe1b5Z6muk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOmoMjuXR0heT-7ZaSCwOQ1yCVH9A/photo.jpg,"1) Why are you disabling enter key's next line function? When I click enter key, ""Next line"" does NOT come. So I used other apps to type with new lines by using enter key. 2) Now when I cut and paste the exact contents from another app, even then, it does NOT appear line by line. It appears as a paragraph.",1,9,15.0.5,2019-12-25 15:36:55,We recommend keeping task names short and simple and adding any long descriptions or paragraphs of text as task comments :),2020-01-07 15:08:10,most_relevant,com.todoist +Jamie Norton,https://lh3.googleusercontent.com/-tX2W29NYhOI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN8TZ4K9INxLcOBSdnWCrUsnApTyw/photo.jpg,"Seems a good app, but can't use the basic functions without paying for premium. Eg can't have a reminder at a certain time of day without premium. Surely the basic function of a reminder app is reminders on a certain day or time. Premium is £36 so expensive, loads of free alternatives out there.....",1,10,15.0.5,2019-12-24 11:02:00,,,most_relevant,com.todoist +Daniel Petty,https://lh3.googleusercontent.com/-W_pEmbgbgWU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNhA36pgVKffnEjPhxHeV8F5e-Ymg/photo.jpg,"There are glitches in the Android app that aren't in the web app. (I love the web app) Would give this 5 stars if Todoist fixed them, and introduce a bug reporting feature so that bugs like these don't remain unfixed. Dragging subtasks is often glitchy and doesn't parent under the correct parent task, or just reorders back to original placement after I drag it to a parent task. The @ and # symbol rarely actually pops up with label auto recognition as I type like it does on the web app.",1,1,15.0.6,2020-01-04 08:04:55,Sorry about that! We’re currently reworking our drag-and-drop system and will hopefully release an improved version soon!,2020-01-07 15:16:40,most_relevant,com.todoist +wojtek wolinski,https://lh3.googleusercontent.com/-q6bs_kltP5c/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN-CFXqOF7Y9bFhnXp7L_SXxNOLXg/photo.jpg,Ruined a perfectly good app. Add task above/below features have been removed. When I create a new task it goes all the way to the bottom of the list. I have to then drag it all the way back up to the top of the list of 100+ tasks. App is now useless.,1,2,15.0.6,2020-01-04 20:41:20,"Add task above/below is possible in a project, but we’re working on a feature that should be even better and faster. It’ll be available soon!",2020-01-07 15:16:33,most_relevant,com.todoist +Mark Heck,https://lh3.googleusercontent.com/-CySXOL_S5JI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNt-81wVDsYh4rNYzGAWToANQPdSw/photo.jpg,"Wow, the latest update killed my productivity. Is the multi-select coming back? Why remove features? This app is garbage now and it used to be so great Edit: the ability to multi select is there, you just have to do extra steps and ignore the common, recommended Android app design of long-pressing to select.",1,5,15.0.1,2019-10-29 14:18:17,"Hi Mark, sorry to hear that! Rest assured, we still support multi-selecting tasks. To multi-select either 1) swipe right on one task and then you can tap to select or 2) select the “select tasks” option from the 3-dot icon on the top right corner :)",2019-10-29 14:10:36,most_relevant,com.todoist +Lankesh,https://lh3.googleusercontent.com/-NKMHwH6cwVc/AAAAAAAAAAI/AAAAAAAADu8/AAKWJJNKiJil4mw6UmTGwz6yP4JSLy_kkg/photo.jpg,Was 5 stars lowering to 2 so hopefully they see this - make the completed tasks section it's own thing again why would I want it merged with my existing tasks? Makes it very hard to find accidentally closed tasks or to look thru historical data. Dont think this change was necessary,1,5,15.0.0,2019-10-24 18:52:43,"Lankesh, we read every single review, regardless of the rating :) We'll consider improving the task detail view in the future, thank you for your feedback.",2019-10-29 14:32:50,most_relevant,com.todoist +Barb M,https://lh3.googleusercontent.com/a-/AOh14Gjt7FIefJwjufWIR2eBtFsSA3RuYLkF9zujMoARJe8,After the update all my completed sub tasks were deleted. I set those up because I uncheck them every month when I need to use the same lists over and over. Really annoying especially since I don't think I'll be using the new features at all.,1,8,15.0.0,2019-10-24 13:51:26,"Hello, this is the new sub-tasks behavior with the Foundations release, sub-tasks will now be removed from the view instead of staying there like before. Apologies for any inconvenience. We would recommend using recurring sub-tasks for your use case. Please feel free to contact us with your feedback/comments at support@todoist.com Thank you!",2019-10-29 14:07:44,most_relevant,com.todoist +Greg S,https://lh3.googleusercontent.com/-lTdnsHTmaUU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP_fTWXc7Bm2pPp2Waxovec4n0ohw/photo.jpg,"Like others have said. Before it was the best todo list app, but now it's painful to do even simple things. Specifically the additional pop-up window on mobile app is just horrible.",1,1,15.0.1,2019-10-30 09:03:23,"Gregor, sorry to hear that. Please contact support@todoist.com and let us know why exactly are you having issues with our app - which features are you referring to and what happens when you use them etc. Also please let us know what popup are you referring to.",2019-11-04 12:42:58,most_relevant,com.todoist +Mark Jagan,https://lh3.googleusercontent.com/a-/AOh14GiGKzcR-Lb2JCFW_Lt5WOaCOHrCKasfUUZ6a9ENjeo,"Alexa shopping list integration is rubbish, items are added correctly but if an item is removed by another user they never leave the list.",1,0,15.0.7,2020-01-18 18:22:21,"Mark, please contact support@todoist.com and we'll look into this.",2020-01-20 12:52:53,most_relevant,com.todoist +Andrew Nguyen,https://lh3.googleusercontent.com/a-/AOh14Gh-7QiEsFW3pCjTIQN1BPZBFJDoaqE0nj8XAKQGmg,"Newest update nerfs the widget so you can't utilize as much functionality to it. The main app also features the annoying swipe to select feature now. The previous click to select was fine and this new change doesn't add anything, only creates a new barrier of frustration.",1,2,15.0.5,2019-12-24 00:30:02,"Andrew, we’re working on an updated widget and it’ll be available in our Beta channel soon. We’d love to get feedback on it once it’s available! Also, we switched from tap-to-select to swipe-to-select so that tap-to-select can open the task details view, to make all the task info and subtasks more easily accessible.",2020-01-07 15:13:30,most_relevant,com.todoist +Mario Matos,https://lh3.googleusercontent.com/a-/AOh14Ghn9lmGrKyTkq2UueU-aMm2a23dt0V-eB1cazf5,"Useful features ask you to get premium version but when I try I get to this page, which is the app I already have installed. 1/5",1,0,15.0.7,2020-01-19 20:03:36,"Mario, Premium is a subscription service which gives you access to more features. For more information please go to https://todoist.com/premium",2020-01-20 12:51:02,most_relevant,com.todoist +Ms Watts,https://lh3.googleusercontent.com/a-/AOh14GgZwHJghOyatfnP81y7-qL4wWVLv-_D0rRss-PQDQ,Didn't sync at all with current list,1,1,15.1.0,2020-01-26 09:12:51,"Sorry to hear that, Ms :( Could you please contact us at support@todoist.com so we can look into this for you?",2020-01-27 16:41:49,most_relevant,com.todoist +Nick Hsieh,https://lh3.googleusercontent.com/a-/AOh14GjvnhU6E8RhfKDkNb7E1EdxtrLE2czLwoIuK7PREw,"Is there a way to rollback previous UI? The new UI introduces more clicks for the same action - which decrease my productivity. If I need to modify the name and due date for the same task, I need to save twice instead of one time(previous design)",1,16,15.0.1,2019-10-30 11:13:30,"Hi Nick, could you please contact us at support@todoist.com and let us know which actions now require more clicks? We'll look into it, thank you 😊",2019-10-29 14:08:35,most_relevant,com.todoist +Justin Ho,https://lh3.googleusercontent.com/a-/AOh14GgweTgG1zJZt61s3GbgYkgPsYrXhKwMx4JKU_gXLnA,"If you use Gmail, calendar go with Google tasks free with much more functions and integrated with your calendar events, reminder, tasks without subscription. Stick with the big guys! Waste of time with this app.",1,3,15.0.1,2019-10-24 21:09:42,,,most_relevant,com.todoist +Nevada John,https://lh3.googleusercontent.com/a-/AOh14GjX1_Sz203yMXMYA4Em_zvG0BlK-efVOBaCNwHy5Q,"Automatically completes task, for the day, as I open the program. I do not have any access to see what was completed or if I lost something important I have to do.",1,3,15.0.4,2019-12-05 13:32:37,"Hi John! You should always be able to view completed tasks. In this article are some different options on how to do it: http://bit.ly/2t5CSbF. Could you please contact us at support@todoist.com, so that we can help find out why your tasks were automatically completed?",2019-12-11 08:39:54,most_relevant,com.todoist +payyavula murali,https://lh3.googleusercontent.com/a-/AOh14Gi8tsrV10mq89dZYgIb0-Gx8opy5yHFxg4BIL7RiA,it's not a user friendly app..too much complicated usage. it's of no use. don't have an option of recurring task.its not mobile friendly app... i prefer not use this app in my life.. waste of money and i dont know why this one cost is 300+ bucks..,1,2,15.0.4,2019-12-11 22:02:55,"Hi Payyavula, rest assured that we do offer recurring tasks, you can find out more about them here: https://get.todoist.help/hc/en-us/articles/360000636289 As for the cost, a year of Premium is about 36 USD depending on the platform or the currency you are using. If you have any questions, please send us an email at support@todoist.com",2019-12-18 14:55:17,most_relevant,com.todoist +Simonxca,https://lh3.googleusercontent.com/a-/AOh14GjH9V4JgNNoEvZ84DekpMunMMI78uJEWfyEVYv0MA,"By default tasks are due today and it's not easy to find the option to change this. I wanted to save time, not spend time learning another tool. Uninstalling.",1,4,15.0.0,2019-10-25 13:01:48,,,most_relevant,com.todoist +Handsome Pete,https://lh3.googleusercontent.com/a-/AOh14GgPqTYlEF2TQc6Vv2SvXbw4xgxF800vw-pzZU7zPg,It's very easy to accidentally complete tasks and the only way to undo an accidental completion is behind a pay wall. Instant one star,1,1,15.0.4,2019-12-04 21:39:13,"Hi Pete! There are a few ways to undo accidental completions without a subscription. For example, you can use the undo option at the bottom of your screen, or view the completed tasks in the project view and uncomplete it. For more information, please contact us at support@todoist.com 🙏",2019-12-11 08:35:43,most_relevant,com.todoist +Bing Heng,https://lh3.googleusercontent.com/a-/AOh14GhqCLYqT9RFMGe099bWOe0I_Y_CxxrRO2jFuSolKw,"If you created an account with Gmail then try to sign in with Google after, neither of your accounts will work. Really????",1,0,15.0.1,2019-10-30 16:56:32,"Bing, sorry to hear that, please contact us at support@todoist.com, let us know what email address are you using with Gmail and we'll look into this issue.",2019-11-04 12:52:38,most_relevant,com.todoist +Veera Medida,https://lh3.googleusercontent.com/a-/AOh14GiGpQQWIycLtMlU56BTxbp3_2Ru7X3HWUnAIqrjQg,"Stupid app,even a reminder which is pretty much basic is under premium useless.Don't waste time in exploring this.Just go to any other nice applications",1,0,15.0.7,2020-01-12 01:43:42,,,most_relevant,com.todoist +Matte Tarsier,https://lh3.googleusercontent.com/a-/AOh14Gj9cyqckAo-hH7ZZSmSCwuwBq5FbS8T-ufIRAk5zw,Do not install you have to pay for everything all you can do is write notes. Waste of time and storage,1,2,15.0.7,2020-01-21 19:23:33,,,most_relevant,com.todoist +Ant,https://lh3.googleusercontent.com/a-/AOh14GhVCX-SiPXYsCXfGj1MGJUXUigtgE3UtW2GXVr4Ag,I would use the app but it's a paid app and I'm not sure of its true value because I haven't used it. How is it better than keep or others that are (for lack of a better description) free.,1,0,15.0.5,2019-12-27 01:29:08,,,most_relevant,com.todoist +Shubhi Gupta,https://lh3.googleusercontent.com/-COkirkKLgoE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN2W1XvYdmb-Db14-cUmNlwFT1Unw/photo.jpg,It have reminders in premium version. How it can organize when we can't set reminders,1,0,15.0.3,2019-11-24 14:29:35,,,most_relevant,com.todoist +Colin Rimmer,https://lh3.googleusercontent.com/a-/AOh14Gh07bId110xJF3_F85BD-K5WI7itMTAK4uK2R33,Can't even use labels for free - it's a premium feature! Uninstalling on principle.,1,1,15.0.6,2020-01-05 23:50:09,,,most_relevant,com.todoist +Vampire The Immortal God,https://lh3.googleusercontent.com/a-/AOh14Gj0YiZ2WOC7O7PNpoTmAVlvz446hjE4Qs9lQcGDTA,Seriously? Reminder is a premium feature? What's the point of all this then? 1 star. I can understand comments and labels but reminders? At least other paid apps give reminders.,1,1,15.0.7,2020-01-19 08:01:35,,,most_relevant,com.todoist +Mukul Sharma,https://lh3.googleusercontent.com/-i3w4soO83XM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOIjhBWA0IWaaGyNHgZHdnJUxDK6w/photo.jpg,I am not able to sign in to my account. Don't know what is happening but I believe I lost all of my progress,1,0,15.0.0,2019-10-23 18:16:34,"Hi Mukul, could you please contact us at support@todoist.com so we can help you with this sign-in issue? Please specify which email addresses you may have used so our team can look if there is an account. Thank you!",2019-10-29 14:13:22,most_relevant,com.todoist +Yossi Doctor,https://lh3.googleusercontent.com/a-/AOh14GgrC7_1XHPVmVZ0356eW_9ctxPKbNH9Qz8pNR6YePI,Every basic and simple feature is premium,1,0,15.0.3,2019-11-26 13:04:28,,,most_relevant,com.todoist +Mark Shar,https://lh3.googleusercontent.com/a-/AOh14Gj0qPHoimxmLT3jKrGO9fpBBnbxzaZd7NNHut-pjw,Another company where the programmers have no respect for their users! :-( An exceptional app that the latest update seriously screws up.,1,3,15.0.0,2019-10-23 19:54:40,"Hi Mark, sorry to hear that :( Could you please share your feedback/comments with us at support@todoist.com? Please let us know how we can improve things, thank you 👍🏻",2019-10-29 14:11:27,most_relevant,com.todoist +David Back,https://lh3.googleusercontent.com/-Et_oa0HbmO8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO8_tuxbybqWTbBNpw4I-3K8yEEnw/photo.jpg,Requires my email? No thanks.,1,1,15.2.0,2020-03-10 17:00:24,,,most_relevant,com.todoist +Natalia Correa,https://lh3.googleusercontent.com/-w6hhAW1Gj6k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM7MMCExSxo0UJURMetKM6HAZE-vg/photo.jpg,Remainder app for free? That’s what I Thought this app was. Please don’t waste our time it is very disrespectful. For you to get people you say it’s for free the app and it’s not for free. Please don’t do that its not nice to delete apps because you say lies. Lies are not good and if you play with my trust and the world trust you are not helping the world to be a better place you are helping to continue destroy I don't want to open no more apps I don’t trust what they say,1,4,15.1.0,2020-02-08 09:53:40,,,most_relevant,com.todoist +Darin Werner,https://lh3.googleusercontent.com/-g7bvOWBqsTQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMRmk7Fs1ZjYNQx4LbVKvjQsi4A1Q/photo.jpg,"One of the main sticking points for me is how well an app does recurring tasks. In particular, not just fixed date recurrences, but the ability to set the next date off the last completion date. So many apps fail to offer this. Alas, I could find NO way to do a recurring task at all, in spite of them saying it can be done. So, much less checking on this nuance, I see no way of doing them at all. Fail. Moving on.",1,0,,2019-12-23 06:56:54,,,most_relevant,com.todoist +Casey,https://lh3.googleusercontent.com/a-/AOh14GgkieYa7ZZY8iQdKDKCs8YIeRhRmf7XR_esJUhXJpg,Used to be simple well organized app. Latest update was a major step backwards and makes it unusable and completely unreliable. Do not trust them with your data.... Most of my prior history of completed tasks disappeared. For some reason timed ones seemed to stick around... Completed tasks are now automatically hidden and lose any order you had them in. If you ever care to reference completed tasks in any structure this app is not for you. It's a hot mess now for that. And their backups do not include completed tasks. They claim all your information is backed up securely but when I asked for my completed tasks they were not able to provide my attachments.,1,1,8.4.3,2019-11-11 23:34:35,,,most_relevant,com.todoist +Tabitha Cottrill,https://lh3.googleusercontent.com/a-/AOh14GgzzGFMYO0b6Rw5AxlZBaq9G60qZqe6Hl-F58qmsw,"Really unimpressed that I cannot get notifications unless I subscribe to premium. I can set up memos on my Google calendar & be reminded for free. Why would I pay for that with an app? Without notifications I'll have to remember to check what needs done, where I'm at, etc. I also found it difficult to figure out how to navigate & use what little was included in the free version. Gave up in frustration when I realized that to be actually useful I'd have to pay extra.",1,1,,2019-12-01 15:00:42,,,most_relevant,com.todoist +Amber Sandvick,https://lh3.googleusercontent.com/-AgVOXttPvGI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMcc7NFEte24VZ9bZzHOXGVkHS-1Q/photo.jpg,"I agree with a previous user that recent updates are making the app worse. I've used this app for several years and loved that my to-do list syncs across devices, but recent changes (specifically, deleting completed tasks instead of leaving them visible/able to be restored, despite modifying settings) make this app basically useless for my purposes. I'm disappointed that I need to find a new app after so long using this one.",1,2,,2019-10-25 13:10:52,"Hi Amber, this is the new sub-tasks behavior with the Foundations release, sub-tasks will now be removed from the view instead of staying there like before. Apologies for any inconvenience caused to your workflow. Please note that this is quite a popular feedback and our team is currently reviewing/discussing this change.",2019-10-29 14:20:26,most_relevant,com.todoist +Craig Fisher,https://lh3.googleusercontent.com/a-/AOh14GivqKwUXueKXZ9T0OSlGZFzsXRMXIxZ6jAOUfMu-_0,"Way too overpriced. $60 per year, lol.",1,0,15.0.7,2020-01-18 04:14:07,,,most_relevant,com.todoist +Andrew Pitoniak,https://lh3.googleusercontent.com/a-/AOh14GjsVkLaiJOAu8IQzIC8TGVsuVuIoeBqCb-W-1MVvMQ,Bad UI bad quick short cuts,1,0,15.0.4,2019-12-07 02:04:22,,,most_relevant,com.todoist +Allan David del Cid Morales,https://lh3.googleusercontent.com/a-/AOh14GjDb-flB8Qpq9MnYC7EvfCKmCWE9AkvUWpq8MbWdg,Reminders are a premium feature. Enough said.,1,0,15.0.7,2020-01-20 00:50:29,,,most_relevant,com.todoist +Kathy Brown,https://lh3.googleusercontent.com/a-/AOh14Gib81H9fqFfH7pJJsyxj9TdiOEJyyfUk1fq4o90vA,Anything that calls itself a to do list that doesn't include a reminder unless you upgrade is useless. Uninstalled.,1,0,,2020-03-28 19:09:01,,,most_relevant,com.todoist +Mike Brubaker,https://lh3.googleusercontent.com/-ryhqc8xI_p4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOJDPrgyv7zyPdPu4hLnn_AmZZTmQ/photo.jpg,"Not only is the app bad, the second they have your email address they start spamming you. --- Response. Hey Doist I have a better idea, quit taking people's email information and spamming them without their permission.",1,0,,2020-01-07 15:14:59,"Sorry to hear that. Do you mean our “Daily Digest” email? You can unsubscribe from it if it’s not useful, like any other email we may sent!",2020-01-07 15:09:14,most_relevant,com.todoist +Dana MacKay,https://lh3.googleusercontent.com/-_H67XjxFeWc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPWqOetI4RhAj1rpRivcU8v5msZXQ/photo.jpg,Download it and then immediately uninstalled. Have to pay premium prices to get any features at all. Can't even set up reminders. Don't bother with this app.,1,0,,2020-01-11 18:36:08,,,most_relevant,com.todoist +Sabarivel Janarthanan,https://lh3.googleusercontent.com/a-/AOh14GipcmMYKs-lf8WxWaamyfptAk9_nJMrzWx7sOLGjfw,Microsoft To Do does almost all of this for free. It is pointless to pay such a hefty sum of money for these so-called premium features!!!,1,0,13.4.3,2020-01-14 02:18:43,,,most_relevant,com.todoist +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I couldn't work out how to use this app and decided to stick to my conventional hand written to do list and I uninstalled this app. However, I still keep getting 'reminders' about things I never even put in myself (they seemed to be there, maybe as examples?, when I first installed the app). I find this really annoying. How can this even happen!",1,0,,2019-01-29 06:24:18,"Sorry to hear that. If you no longer wish to use Todoist, you can delete your account as described on this page: https://get.todoist.help/hc/en-us/articles/203799822 - this will delete your email address from our database and therefore you won't receive any mails/reminders from us anymore.",2019-02-04 11:52:26,most_relevant,com.todoist +Andrew Cook,https://lh3.googleusercontent.com/a-/AOh14GjhhhjOVGDfgLsavR63Fqbyyw0-3vBttddAQePE,"Too greedy on the premium features. I'm not going to pay monthly for the ability to add a description/comment to my task. Without this, you have a one liner for the task. There are tons of alternatives that do the same things as this app. I tried this one, the premium features don't interest me and the rest isn't worth a subscription.",1,9,13.4.1,2018-12-13 09:00:22,,,most_relevant,com.todoist +Jaun Kok,https://lh3.googleusercontent.com/a-/AOh14GhHGj80K5YPDz-UyyDufazQyT4QBt7Iodvm5wOPhQ,Limiting sections is ridiculous .... so if you want to add things for 30 days you need to have seperate projects.,1,1,,2020-02-09 18:18:51,"Jaun, thank you for your feedback, we'll consider changing this in the future. In the meantime you could try to set up your 30-day schedule using due dates and then you'll see it in any date-based view, sorted and separated by day, without even needing sections.",2020-02-11 11:22:26,most_relevant,com.todoist +Rob Fowler,https://lh3.googleusercontent.com/a-/AOh14GgGKbdnQmTAvUflgpFYD2zjoOp8d_Mei66vNd_Q_w,"I once rated this app and company a five star. However long, with their recent updates they have utterly failed to test the user experience. All the alerts.settings are changed so you get texts, notifications and emails when you had turn them off. The suggested time zone change so their app ""will.function correctly"" breaks the assigned due date times. I like to see companies trying to improve, but if they are this lazy with the user experience who lazy are they with customer data. Lost of all trust here.",1,5,13.3,2018-11-04 12:46:39,"Rob, sorry to hear that. You can enable or disable all alerts anytime, we've improved it recently so you no longer have to manually remove/change every reminder in every task, but can select your preferred reminder method in the settings and it'll apply to all tasks. Reg. time zone, please make sure all your devices also use the same zone.",2018-11-13 12:50:57,most_relevant,com.todoist +Alex Favero,https://lh3.googleusercontent.com/a-/AOh14GieMy_Vp6RguEAZfiRsAPASLefa7aX5RM-c-cvIMA,"This app was great, but now in 14.1.0 I can no longer click on a project and see all of its sub-projects and their tasks at once. This is a stupidly frustrating change and it completely messes up how I use the app. Why not make this a setting I can change back, OR leave it alone altogether? I will be manually rolling this app back. Thanks for making more work for me guys. SERIOUSLY STUPID ""UPDATE"".",1,11,13.6.1,2019-03-29 17:30:16,,,most_relevant,com.todoist +Simeon Babadzhanov,https://lh3.googleusercontent.com/a-/AOh14Gg8Apy0BdEn-5jjPTamHJzFBunTCAQWNkO6dJV_,Horrible experince. Glitchy and slow with no user friendly interface. Waste of time to download check it out and uninstall after 10 minutes. On top of that the most important features are paid. But wait... its a subscription to pay £4 monthly!! For a todo app which can't do something better than the hundreds free or those with one time payments. Cannot recommend to anyone.,1,0,,2019-04-22 13:25:33,,,most_relevant,com.todoist +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I was facing a problem that my reminder never pop out at notification bar when it's time. I have send a few message to support team regarding this problem. But no one reply, just a member who call David, he sent me a welcome message. Then I replied him with my problem as well. He did not reply too. I have just paid for 1 year package, now I hope I can get my refund.",1,3,14.4.1,2019-08-28 18:12:34,Sorry to hear that. We will definitely reply to your message and you can also request a refund through support@todoist.com,2019-09-02 13:48:11,most_relevant,com.todoist +Joshua Brocklesby,https://lh3.googleusercontent.com/a-/AOh14GiHgkiaHxOyUTjsOa5_iqTotJD0w726rUGwdKgf_A,"I previously gave 5 stars. New feature forces 1 star. ""When you view a project, you'll no longer see all the tasks in its sub-projects."" is TERRIBLE. please allow it as an option or revert! I set up all my stores (Costco, Walmart, etc.) now there is NO WAY TO LOOK AT MY ENTIRE SHOPING LIST! I know I could drag sub tasks, but... 1. It's too easy to complete the parent task thus completing all child tasks. Not good... 2. Moving tasks from one parent task to another is also very dif",1,32,14.1.0,2019-03-23 04:15:14,"Joshua, thank you for your feedback, we'll consider adding an option to change this behavior in the future.",2019-03-26 12:50:17,most_relevant,com.todoist +Jordan C,https://lh3.googleusercontent.com/-CYR92c7SDuU/AAAAAAAAAAI/AAAAAAAAefQ/AAKWJJMI_U_-aVSVzQZyc-EyL5018noATw/photo.jpg,"Viewing the sub-project tasks inside the main project was an integral feature of the app that I used daily. Removing this without warning as if it were an 'improvement' is unacceptable and makes the app borderline useless for me, and as such I will begin looking for another app that can better suit my needs. Removing features and making pointless changes is no way to retain users.",1,28,2.1.0,2019-03-20 08:47:02,"Jordan, thank you for your feedback, we'll consider adding an option to change this behavior in the future.",2019-03-26 12:45:10,most_relevant,com.todoist +Olivier Gosselin,https://lh3.googleusercontent.com/a-/AOh14GgfshjDfDCz-QT7l4skDzrT2zUbeSORestZHGMXP2M,"Nice app, great features, good design, however the pricepoint on the monthly fee is ridiculously high and is a must for core features that any to-do app must do, things like 'reminders' and 'labels'... Would try it out properly if the price was right (like 1/12th of what it is now?) but for now it's a pass.",1,5,13.4.1,2018-12-15 02:16:02,,,most_relevant,com.todoist +Dave Spiegel,https://lh3.googleusercontent.com/a-/AOh14GieVua1N54DEDZjd8rjLwGrFyhXStCxm3SmzU9Zpw,"Requires account to use. I was just giving a simple reason why I didn't like it. But since your response indicates I don't have 10 seconds, then I'll waist 5 minutes to make you understand. The point is that it ""Requires An Account""! I don't need another stinking account to keep track of a task list. If I wanted to share on multiple devices, I would just use any number of desktop applications that I already own. I don't need another stinking program tracking my business in the sake of ""backing up my data' or make it available everywhere. I have that covered already. Just wanted a simple task list for a small price to use on my phone. But without that choice, no thanks. To act as though 10 seconds to give up my privacy is no big deal, well my information and data is not your business or any one else unless I decide I want to do that. That is what you need to understand, some customers like to have options to do something and not have something stuffed down their throat. Downloaded ""Tasks: Todo List"" and been happy with it. Donated $1.99 to developer for making app for me and not their self.",1,0,,2019-07-08 17:40:47,"Dave, that's true, within 10 seconds you can set up an account and then you'll be able to access all your tasks on all your devices, not just on one phone :)",2019-07-08 15:01:16,most_relevant,com.todoist +Sam Gregory,https://lh3.googleusercontent.com/-xoCHbhN4gGE/AAAAAAAAAAI/AAAAAAAAAQ8/AAKWJJNjXS2UdL5FKKFHaLtZvFOW5pYBXw/photo.jpg,"Downloaded the app so I could have a widget with my list on my home screen. shortly thereafter, tney added checkboxes, which can't be turned off, making it easy to accidentally ""complete"" a task on the widget. And unlike when you have the app open, this can't be undone. It was good when I downloaded it, but is now completely useless.",1,71,14.3.0,2019-06-22 16:34:35,"Hello, thanks for the feedback and sorry to hear that. We are planning to add the ""Undo"" option to the widget in the future updates.",2019-06-24 16:13:05,most_relevant,com.todoist +Steve Savage,https://lh3.googleusercontent.com/a-/AOh14GiNjnBoUPoeog9V9_AjD3E5s1X9l_3K2ke1aAEXe_A,Who wants to pay $3 a month? The free version just tries to upsell you the premium version while you're trying to use it.,1,1,,2020-02-11 19:07:36,,,most_relevant,com.todoist +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Hey todoist! Why are you todoing this to me!? First you put these silly little checkmarks on my tasks that are 100% in my way (leftys are people too). I keep unintentionally deleting tasks and having to dig through my completed items to restore them. That's annoying! Now this latest update, you've taken away subgroups? Subgroups are part of the entire project. Having an overall view of all subs within a group is convenient. Having to flip from sub to sub is illogical. I just don't get it!",1,27,14.1.0,2019-03-20 21:50:23,"Thank you for your feedback, we'll consider adding an option to change this behavior in the future.",2019-03-26 12:46:13,most_relevant,com.todoist +Marios Baxev,https://lh3.googleusercontent.com/-jGZL_qm8Iuw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP_XDtz3p2L_fM_n5fN4-zJ6Swnow/photo.jpg,Bad experience. The support is the worst ever. And no thought has been put except for the visual ui. The ux is bad.,1,1,,2020-02-25 06:51:42,,,most_relevant,com.todoist +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Not all tasks reach completion, some need to be deleted and rightly so. But by design delete action is tucked away under three dots menu and then behind confirmation message. Thus making deleting tasks in bulk deliberately harder, probably to keep fake karma number high and jack up usage statistics.The swipe action on the list should be customisable so delete action can be set when its swipe left. Also since recent updates the upgrade to premium nudge is slapped everywhere.",1,1,13.0.1,2018-10-12 09:21:25,,,most_relevant,com.todoist +Hassaan Qayyum,https://lh3.googleusercontent.com/-U-KWDf9htIA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOdwJIBpzy16WgBS5VeaQMwfmcm8g/photo.jpg,"reply to developer: whatsapp continues to run in background and show notifications even after being closed. why are you unable to do that? .. original comment: I paid $4 for the reminders. However, reminders work only when the application is active. If you exit / shut-down the application, no reminders for you. Developer should design the application in such a way that it continues to run in background even when user exits it. I would like to have my money back unless this problem is rectified.",1,4,14.2.3,2019-06-10 16:34:39,"The app is designed to show you reminders even if it's closed, but please note that other services such as battery optimization/power saving modes etc. can affect this in ways that we can't control.",2019-06-10 11:47:57,most_relevant,com.todoist +Melissa Gonzalez,https://lh3.googleusercontent.com/a-/AOh14Gi06DZx_DdjcDAdqoUKvpGaMFIc_WxgmCEOdaEzXjY,"The whole point of a to do list is to remind you to get things done with the help of a numeric badge count. Since they can't be bothered to add this feature, the app, is useless to me. You just loss a potential lifetime user who would have even paid a subscription to have that one feature. Other apps can offer badge counts through launchers such as Evie. Don't give me the excuse that Android is not developing this feature.",1,4,14.4.1,2019-09-13 11:59:29,,,most_relevant,com.todoist +Toni H.,https://lh3.googleusercontent.com/a-/AOh14Ghp5VzFEXu7377yX6l_iQjRopx2_htfD_PXKqScLL8,Lacking calendar/monthly overview to be able to perceive tasks & projects also in a timely manner! So that essential dimension is just missing.,1,0,,2019-10-10 10:41:04,,,most_relevant,com.todoist +Leah Kaskeski,https://lh3.googleusercontent.com/-pQiJ0fJ2Snw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO0C2FEqDyqhpN5vsSGL2VOhFuzGQ/photo.jpg,I paid for the subscription and now it doesnt show up under manage subscriptions for me to be able to end my subscription!!😡,1,0,,2019-11-02 01:52:47,"Leah, sorry to hear that. Subscriptions are managed directly by Google's Play Store so please contact Google about this issue as that's something we can't check or control on our end :(",2019-11-04 13:01:40,most_relevant,com.todoist +Jared Lee,https://lh3.googleusercontent.com/a-/AOh14GjXtut5I_HPdZ-i-BMU_ozaoqHn1FfwB03EAkMS9w,"Cannot get it to stop asking me to verify the time zone. Pressed yes, kept asking. Pressed don't ask again, kept asking. Pressed no, kept asking. Finally deleted. I'll use the the one that comes with outlook. It's not as versatile but it doesn't ask me to verify my time zone every time I look at it. Especially when I ask it not to ask me again.",1,0,13.3.2,2018-11-28 02:21:13,"Jared, sorry for the inconvenience. This is a bug which will be fixed ASAP.",2018-12-03 11:43:28,most_relevant,com.todoist +Margaret xxx,https://lh3.googleusercontent.com/-lffiYfYajQ4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNe77kyqB_uh_F5bEmjk6D5Y5UaKw/photo.jpg,"I went through all the stuff to link this to my Google Assistant, but it doesn't work right. I can get it to add a task, supposedly, but when I tell it to read my tasks it says I have no tasks for today and doesn't give me any way to list the complete set of tasks, the ones I just added. This is worthless.",1,11,13.4.3,2018-12-23 22:55:02,"Hi there! Please, send us a message at support@todoist.com so we can take a look into it for you.",2019-01-02 17:14:04,most_relevant,com.todoist +Ian Taylor,https://lh3.googleusercontent.com/-qmr30f7fx2E/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMQ6gFx9CULyh1YumjlPWVH-u_Vzw/photo.jpg,"I couldn't figure out a way to sync with my Google Tasks, and then now the app won't uninstall from my watch.",1,0,15.4.0,2020-04-06 18:44:40,,,newest,com.todoist +Khushman Deomurari,https://lh3.googleusercontent.com/a-/AOh14GiZqKE7ve-gKQBc1IJ0Agn3Aj0wIlAwbgZ8xXLsHg,No trial to try premium features. What's the point trying app without able to set reminders?,1,0,15.4.0,2020-04-04 20:09:22,,,newest,com.todoist +Dustin DeForest,https://lh3.googleusercontent.com/-_8TFWeWRNpw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNAjvqmJJp0ghxpC2b1K3VepCzOzA/photo.jpg,"Subscription service to enable simple reminders is ridiculous. I was willing to pay a one time fee for a solid app, but having to pay nearly $5 per month just to enable reminders is absurd. Once I saw how many basic features were being kept behind a pay wall, I had to stop using it",1,0,15.4.0,2020-04-04 02:40:42,,,newest,com.todoist +Aren Earles,https://lh3.googleusercontent.com/a-/AOh14GhnpV3tBxe8ukDJr_t9cvIaoHHFCFA2nSQikYcmTw,"""Reminders are a premium feature""",1,0,,2020-04-02 20:02:20,,,newest,com.todoist +Ankith Singh,https://lh3.googleusercontent.com/-Njp934HgfhI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP8tIG4Nbc9qDuM7Mk2CxrAKXpNUQ/photo.jpg,"Two word - Paid mess. Please dont waste data and get tricked by editors choice , just go for a better app.",1,0,,2020-04-02 18:05:17,,,newest,com.todoist +stephen heuser,https://lh3.googleusercontent.com/a-/AOh14GiC7s7rDfQPPMpxkDrZU3sT3rljXaoVMTr4XMpY2g,"Don't lock reminders behind a pay wall, or if you do, make it a 1 time purchase.",1,0,15.4.0,2020-04-02 06:24:53,,,newest,com.todoist +George Grigore,https://lh3.googleusercontent.com/a-/AOh14Ghn0rwkDOZ5eFhW-uOIMT48m1ARoPEd-84r-ds05Q,"Update 04.2020 - this is getting worse and worse still, with every update. Now they made it harder to edit your task - they moved it behind two clicks. Why?? Seems like this app is moving away from the todo-app for power users to just another todo app, same as any other. This is the last time I paid for the premium subscription. Time to move. ----- It used to be the best for power users, but after the latest ""updates"", the app keeps getting worse and worse. I am not really sure who this updates are for, definitely doesn't seem like it's for its core user group.",1,2,15.4.0,2020-04-01 19:32:14,,,newest,com.todoist +Макар Лысенко,https://lh3.googleusercontent.com/-C2J84IKNbr8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNRstLmvTD3v0mpz3IERHCT8UGSgw/photo.jpg,Please make it possible to quickly switch from the widget to the app. One star to attract attention. Will make it 5 as soon as widgetToAppButton appears.,1,2,15.4.0,2020-03-31 00:49:16,,,newest,com.todoist +Norbert Purger,https://lh3.googleusercontent.com/a-/AOh14GjVyuQbhFXhIAm593hCYOWPX-npXeSTf-PAYV9KpQ,"Rescheduling tasks is simply randomly not working. Rescheduling something for today can make task dissapear, earlier I have experienced that it duplicated tasks. This way a basic functionality is broken and I just lost what should I follow-up today... No activity log available, as that is a paid feature. I guess I will never try that now.",1,1,15.4.0,2020-03-30 08:12:27,,,newest,com.todoist +Riley Rimer,https://lh3.googleusercontent.com/a-/AOh14GhEW-_kfYm3A3ZwnZFYbuCeynmaZsipyYbsfnFavw,newest update to the widget made it suck. There is not a reschedule button anymore which I used to use to move all my overdue tasks to a new day. Also no button on the widget to open up the main app anymore.,1,2,15.4.0,2020-03-30 03:35:14,"Hi Riley, thank you for the feedback! This is something that we are looking into.",2020-03-30 19:03:05,newest,com.todoist +Peter Venn,https://lh3.googleusercontent.com/-nA6xAMn3NWQ/AAAAAAAAAAI/AAAAAAAATCA/AAKWJJM3xhV93AQgkGGVwwhhVqNqRmHIMg/photo.jpg,Dislike the latest widget downgrade - the loss of the ability to select multiple tasks is frustrating. Not sure how long I will stick with this app now as the widget is far less user friendly than previous version.,1,3,15.4.0,2020-03-28 23:30:52,"Hi Peter, thank you for the feedback! This has been noted.",2020-03-30 19:22:40,newest,com.todoist +Kathy Brown,https://lh3.googleusercontent.com/a-/AOh14Gib81H9fqFfH7pJJsyxj9TdiOEJyyfUk1fq4o90vA,Anything that calls itself a to do list that doesn't include a reminder unless you upgrade is useless. Uninstalled.,1,0,,2020-03-28 19:09:01,,,newest,com.todoist +Mohammad Mahdi Noorsalehi,https://lh3.googleusercontent.com/a-/AOh14GhJTUAi5QqL1hZMuUw2lgEWo_FbrZ16EGIhtRFXPA,I want to schedule a task daily ! Should I add it every day ?! What's the way ??,1,0,,2020-03-28 06:59:28,"Hi Mohammad, thank you for asking! You can create recurring tasks: https://get.todoist.help/hc/en-us/articles/360000636289",2020-03-30 19:34:29,newest,com.todoist +Charles Ewert,https://lh3.googleusercontent.com/a-/AOh14GiT0QlO44UiYIOI2eMQmtPD0Nchh7xMRTOX_2oKjn4,"New android widget is garbage. ""Full control"" yea ok you took away useful features and gave us more theme options. Can no longer open app from widget and most importantly you can no longer select multiple tasks from the widget which was super useful for rescheduling.",1,4,15.4.0,2020-03-28 06:26:23,"Hi Charles, thank you for the feedback! We are looking into this now :)",2020-03-30 19:34:59,newest,com.todoist +rishi shukla,https://lh3.googleusercontent.com/-F0Xj7dm9IO4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP4R49o7G8TgOtV3SMr46lhJ0nlLQ/photo.jpg,Good,1,0,,2020-03-28 04:47:01,,,newest,com.todoist +Rahul Trivedi,https://lh3.googleusercontent.com/a-/AOh14GhOBN1LVAxs6S-iaX0EC2ZJHmRqAuyBRfEvwKjf,Mostly features are for premium account and you can not delete account once you create. Disappointed with to this app,1,1,15.3.3,2020-03-27 02:51:16,,,newest,com.todoist +The Orion,https://lh3.googleusercontent.com/-0ecR6FxeUm8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOxclg8rytK_pUubjRkscdR4xX-iw/photo.jpg,I will use other app. I will not pay,1,1,,2020-03-24 18:07:34,,,newest,com.todoist +Aaron Eastland,https://lh3.googleusercontent.com/-xJnDE6z8V_U/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMiF6COlPkTz_PvG_QM2oskkGJN2A/photo.jpg,Not easy to use. Horrible design.,1,1,,2020-03-24 13:34:52,"Hi Aaron, sorry to hear this :( If you do not mind, please share more details at support@todoist.com.",2020-03-30 19:52:25,newest,com.todoist +Faizal Khan,https://lh3.googleusercontent.com/a-/AOh14GgABSTcKr6F2FcHtMxSOb-9D1iRj41GZRBlBWpzwA,Needs registration. Can't use existing caldav task accounts,1,0,15.3.2,2020-03-20 21:41:00,"Hi Faizal, are you trying to migrate to Todoist? Could you send us more details at support@todoist.com?",2020-03-23 16:53:41,newest,com.todoist +Arjun Verma,https://lh3.googleusercontent.com/a-/AOh14GjpZUJxUSCCCx9D6Z3f7vODzqU_FKVn2THnaR_ddA,In basic app why can't even add comment its not even basic when it comes to free.,1,1,,2020-03-16 07:25:45,,,newest,com.todoist +Philip Wright,https://lh3.googleusercontent.com/a-/AOh14GivZwNIYM05AG_CgvznCHq75DAF_BxuWOWIahj6qg,$36 per year for push notification reminders? No thanks.,1,1,15.3.2,2020-03-13 00:57:58,,,newest,com.todoist +David Back,https://lh3.googleusercontent.com/-Et_oa0HbmO8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO8_tuxbybqWTbBNpw4I-3K8yEEnw/photo.jpg,Requires my email? No thanks.,1,1,15.2.0,2020-03-10 17:00:24,,,newest,com.todoist +TE5LA,https://lh3.googleusercontent.com/a-/AOh14GiLFfmZO0KVgE8Ve62G5cA2KMkTPS2R0AKmX7RL,"First, the app changed my task name. Then, the task just disappeared and was not in the app. Bad app.",1,0,15.2.0,2020-03-09 17:58:13,Sorry to hear that. Please contact support@todoist.com about this issue and we'll look into it.,2020-03-17 15:01:27,newest,com.todoist +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,The Google Calendar integration is riddled with bugs and it has been this way for months. They don't fix it and they are pretty slow on their communication. TickTick is becoming very tempting.,1,0,15.2.0,2020-03-08 00:27:04,"Sorry to hear that. Please contact support@todoist.com reg. the bugs you've mentioned. We've had a large backlog of tickets recently which extended our response time, but usually we reply very fast.",2020-03-09 14:31:39,newest,com.todoist +duy dang,https://lh3.googleusercontent.com/-lPp2Xqly35g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOJtMTuN2Xtug4xR2i37VbyGpz2Lw/photo.jpg,Pay to remind??? Really???,1,0,15.2.0,2020-03-07 16:16:46,,,newest,com.todoist +Abton Classicans,https://lh3.googleusercontent.com/a-/AOh14GhMg3qjJEaz2WFv3CISPdcwgRJKaQUwtNjdKPak,Total waste of money.,1,0,15.2.0,2020-03-07 04:41:10,,,newest,com.todoist +William Abbott,https://lh3.googleusercontent.com/-xEB6YSvD3HE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNhHuoljyn92lwbC1oD4dntaWnGBg/photo.jpg,"I deleted, still sending emails inscribed STILL CANT GET RID OF IT. PLAYSTORE HELP",1,0,,2020-03-07 00:36:36,"William, if you're no longer using our service in general (not just the app), you can delete your account anytime, as described here: https://get.todoist.help/hc/en-us/articles/203799822",2020-03-09 14:34:31,newest,com.todoist +Lars Panzerbjørn,https://lh3.googleusercontent.com/a-/AOh14Gg-hRhh5qF7oSYW7NTA-6wCWpiu0ikwFkA2SR-2dA,"Wow... A To Do list app without the option to make your tasks recurring. I won't lie, I am absolutely baffled that this is omitted. Maybe it's in the web version, or the iOS version, but I'll never know... You tick a date in the calendar and... Where is the tick box for 'repeat every xxx'? Maybe it's a premium feature, I guess I'll never know that either...",1,18,15.2.0,2020-03-04 10:49:01,"Lars, we fully support recurring task. All you have to do to create them is simply type something like ""every day"" or ""every Monday"" or ""every 3 weeks"" within the name of the task and the app will recognize it :)",2020-03-09 14:37:44,newest,com.todoist +J. R. West,https://lh3.googleusercontent.com/-pwVS78z1nxw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPJsfBxDgL5efA5SAT-WQXGCrOCtw/photo.jpg,"This is a loser. Upgraded to premium without my permission for a free trial, no option in the app to return to free option. And I'm maxed out on tasks ON the premium. Will delete before I pay for premium. Prior review: Migrated from Wunderlist seamlessly. Much more cumbersome compared to Wunderlist.",1,0,15.2.0,2020-03-02 17:47:09,"Hello, sorry to hear that. Could you please contact us at support@todoist.com so that we could help you sort it out?",2020-03-02 15:24:17,newest,com.todoist +Bob Builder,https://lh3.googleusercontent.com/-X4mNH5ScyrQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNlP2et8Bjr0_EjLvBBTPVAFP0BBg/photo.jpg,"Requires signing up, which I only assume is to spy on me for profit.",1,1,15.2.0,2020-02-26 03:21:19,,,newest,com.todoist +Cristian Velásquez,https://lh3.googleusercontent.com/a-/AOh14Gjen6YhY1p4faIHuNHB9_lcMCtj9dJLc6QDnGnoSA,"me cobraron y siempre me pide suscripción, ma de correo y nunca contestaron.",1,0,15.2.0,2020-02-26 00:14:07,,,newest,com.todoist +Marios Baxev,https://lh3.googleusercontent.com/-jGZL_qm8Iuw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP_XDtz3p2L_fM_n5fN4-zJ6Swnow/photo.jpg,Bad experience. The support is the worst ever. And no thought has been put except for the visual ui. The ux is bad.,1,1,,2020-02-25 06:51:42,,,newest,com.todoist +Federico Santamorena,https://lh3.googleusercontent.com/a-/AOh14Gi90xXxlTpaBMqFy_jFIL4kFLiAbCy7FHtDf1we5uM,Todoist has 1 big flaw that really prevents me to use it well: if you schedule a task to be repeated daily and do it few minutes after midnight it will skip a day. Overdue tasks that are completed should add the repeat time to the previous date not be reset to the day they are marked compete!!,1,4,15.2.0,2020-02-23 07:17:48,,,newest,com.todoist +Eda Aksoy,https://lh3.googleusercontent.com/a-/AOh14Gj_RR4qzAh9CFnWWZm4tRG6bd6w7I4qA5Wb8LeW7Q,Reminders are a premium feature? Are you kidding me? This is an absolute deal breaker. I deleted after trying for 2 minutes.,1,1,15.2.0,2020-02-22 22:42:44,,,newest,com.todoist +Acey Day,https://lh3.googleusercontent.com/a-/AOh14GhSoecM1JSeLiBsA0bg_VPR9AR3MlcuQhU-qwWx,"The widget, which is the whole reason I downloaded this app, doesn't seem to be updating anymore, even when I click the refresh button. Additionally, there doesn't seem to be a way to mark a task as not completed once you've already marked it as completed.",1,5,15.2.0,2020-02-21 15:40:37,,,newest,com.todoist +Sameer Motiwala,https://lh3.googleusercontent.com/a-/AOh14Gh_vMKBIoIXm0Aww6ihMv5pKNErejLKtALkVn5MBg,"Looking at the features and lots of accolades I tried uninstalled after just a trial. Reason: In the free version notification feature is missing. If the task misses the set time, there is no notification. We will come to know only if we open the app. Insanely Ridiculous. Not sure what have the product team thought while excluding such a basic feature.",1,73,15.2.0,2020-02-21 14:56:16,,,newest,com.todoist +Amity Joshi,https://lh3.googleusercontent.com/a-/AOh14Ggk9Orx-6334O5XfBrN9qoCPAdHrIdGbxVHY6mhagc,Half of stuff is paid.. reminder is something basic with notes. If this is not free whats use of app.,1,1,15.1.0,2020-02-12 02:46:55,,,newest,com.todoist +Steve Savage,https://lh3.googleusercontent.com/a-/AOh14GiNjnBoUPoeog9V9_AjD3E5s1X9l_3K2ke1aAEXe_A,Who wants to pay $3 a month? The free version just tries to upsell you the premium version while you're trying to use it.,1,1,,2020-02-11 19:07:36,,,newest,com.todoist +Foolish and Hungry,https://lh3.googleusercontent.com/a-/AOh14GgI5A248u9WznfnAbYaXD20WsSQNNszeoJ02-81,A nice little app. Liked most aspects of it... But had to uninstall because of just one feature - reminder. I dont know why would someone decide to ship this very basic feature as a premium one! If an app like this reminds me after two days in an email that I have overdue tasks than there is absolutely no purpose of using such an app.,1,7,15.1.0,2020-02-11 11:55:13,,,newest,com.todoist +Jaun Kok,https://lh3.googleusercontent.com/a-/AOh14GhHGj80K5YPDz-UyyDufazQyT4QBt7Iodvm5wOPhQ,Limiting sections is ridiculous .... so if you want to add things for 30 days you need to have seperate projects.,1,1,,2020-02-09 18:18:51,"Jaun, thank you for your feedback, we'll consider changing this in the future. In the meantime you could try to set up your 30-day schedule using due dates and then you'll see it in any date-based view, sorted and separated by day, without even needing sections.",2020-02-11 11:22:26,newest,com.todoist +Philip Ankney,https://lh3.googleusercontent.com/a-/AOh14GgOAl7Y3AO8HlhFaPQpiM_GVuwqEk1hOUr4m9wn,🏕😋👨‍🍳😬😬😬😬😬😘🏔🏔🏔🤣🏔🏔👩‍🍳👨‍🍳🤓😘👨‍🍳w🏔🏕🤼‍♀️😋👨‍🍳😋🙃😬👨‍🍳🏕😬😋😋😍🙂🏔🏕,1,0,15.1.0,2020-02-09 16:14:15,"We're sorry to see that you don't like our app, we would greatly appreciate to hear what exactly did you not like about it so we can improve it based on your feedback.",2020-02-11 11:25:36,newest,com.todoist +Sean Armstrong,https://lh3.googleusercontent.com/a-/AOh14GjROHi7geUkXODC-TMpPZJiHH8nT81OlFguzi48Qg,No Reminders in Free Version. How do you expect to compete with other ToDo apps if your Free Version is useless? SUBSCRIPTION MODELS SUCK.,1,1,12.5.2,2020-02-09 09:33:44,,,newest,com.todoist +Joy Steinmiller,https://lh3.googleusercontent.com/a-/AOh14GhZnQlJ3f7QUdGuir6o1v1KhL20I2Mt2Fq21uru0Q,In order to use reminders you HAVE to pay. That's complete B.S.,1,1,,2020-02-08 16:37:04,,,newest,com.todoist +Natalia Correa,https://lh3.googleusercontent.com/-w6hhAW1Gj6k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM7MMCExSxo0UJURMetKM6HAZE-vg/photo.jpg,Remainder app for free? That’s what I Thought this app was. Please don’t waste our time it is very disrespectful. For you to get people you say it’s for free the app and it’s not for free. Please don’t do that its not nice to delete apps because you say lies. Lies are not good and if you play with my trust and the world trust you are not helping the world to be a better place you are helping to continue destroy I don't want to open no more apps I don’t trust what they say,1,4,15.1.0,2020-02-08 09:53:40,,,newest,com.todoist +Dhanush raju,https://lh3.googleusercontent.com/-V0KNZEy03nc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMF3j53bQPWZECMBdO1_Wz85kSpog/photo.jpg,no reminder for free version,1,1,,2020-02-06 03:24:48,,,newest,com.todoist +SUKHDEV SINGH,https://lh3.googleusercontent.com/-rko1b_yNXEA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPYsOZCdD67jt_ywFFuF9SWqhkwiA/photo.jpg,"Too much confusion, not able to understand",1,1,,2020-02-02 10:29:27,,,newest,com.todoist +Xyxyxy,https://lh3.googleusercontent.com/a-/AOh14Ghh9igTh-AQ1J7V0HtXw2vmpb646mRvA606S1V3_w,Can't use it without providing your email address. Immediate uninstall.,1,2,15.1.0,2020-01-29 09:25:23,"Sorry to hear that :( Setting up an account takes only a few seconds and allows you to access your to-do list anytime, anywhere, not just on one device.",2020-02-04 12:04:22,newest,com.todoist +M. K.,https://lh3.googleusercontent.com/-wp3t2-va_xo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNlu4mcNfobsw8-8wl-xduYkeUumg/photo.jpg,AFTER THE LAST UPDATE I CAN'T CONNECT TO THE APP ANYMORE WITH MY VPN TURNED ON WHICH IS EXTREMELY ANNOYING!!!,1,2,15.1.0,2020-01-26 14:43:08,"Hi M. K., sorry to hear that :( Could you please contact us at support@todoist.com with your Todoist account email? We'll be happy to look into it 👍🏻",2020-01-27 16:40:16,newest,com.todoist +Albert Cofie,https://lh3.googleusercontent.com/-1Jix05PF8pA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPpZ9mgJ_zHdzgTEcc7UpSJjom8iQ/photo.jpg,Not allowing me to delete my account,1,1,15.1.0,2020-01-26 10:56:50,,,newest,com.todoist +Ms Watts,https://lh3.googleusercontent.com/a-/AOh14GgZwHJghOyatfnP81y7-qL4wWVLv-_D0rRss-PQDQ,Didn't sync at all with current list,1,1,15.1.0,2020-01-26 09:12:51,"Sorry to hear that, Ms :( Could you please contact us at support@todoist.com so we can look into this for you?",2020-01-27 16:41:49,newest,com.todoist +Nekochan,https://lh3.googleusercontent.com/a-/AOh14Gij-Wd-VQgyWrq7OJm3Qf9cwyRFKjSRJCwni1Pp,notification is a pro feature??? are you kidding me? why dont you just make this app a paid app from the start??,1,1,,2020-01-25 20:18:05,,,newest,com.todoist +Toxin LY,https://lh3.googleusercontent.com/a-/AOh14GjunRGJrY1ypZwF8-y0gXE5XVMviC_LO4_cpRD0xg,"It's a To do list, why do I have to buy the premium to get "" reminder "" ?",1,1,,2020-01-25 06:48:44,,,newest,com.todoist +La Poupée,https://lh3.googleusercontent.com/a-/AOh14GhQ4MgMXTES7OkaH89dw0EkElT110LMIkM9eSbTaw,"Todoist is garbage. Nevermind the idiotic text-based method for creating daily tasks, this stupid app seems to think ""every day"" is a suggestion, even with Premium. Been using this app for three weeks & every few days, it refuses to renew my daily tasks. Scheduled reminders disappear. Curse & blast whoever EOL'd Wunderlist cuz it was perfect for my needs. This todoist trash? Not at all. I will cling to Wunderlist until the very end.",1,21,15.0.8,2020-01-23 21:04:51,,,newest,com.todoist +Travis,https://lh3.googleusercontent.com/a-/AOh14GixxoG-3neKxKSo3WSC3tHMwlMtFZ-4knhZC59h,Bought the paid version and added various tasks on desktop. Won't even log me in or load anything. Downloaded the app to access my tasks and shows nothing. I even paid for premium. Very dissatisfied and disputing through my bank. This is worst than free apps like keepnote. Seriously disappointed,1,37,15.0.8,2020-01-23 07:32:11,,,newest,com.todoist +Henry,https://lh3.googleusercontent.com/-n-h6CfAP3qI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO5JwjKWdBqgoot0rBuVbwadsZN8g/photo.jpg,"Lazy tech support. Just can't be bothered. Took down my initial adverse review to give tech support a chance to sort things out. They just couldn't be bothered. I'm using Nine email and having a problem sharing with Todoist when I want to create a task using an email. Sometimes it works, more often it doesn't. However sharing with Wunderlist works every time! Todoist tech support answer: sort it out yourself with Nine! UPDATE. After numerous emails to tech support they still haven't bothered.",1,2,15.0.7,2020-01-21 20:06:18,"Pete, sorry to hear that, we will try to look into this issue again to double-check if it's an issue on Nine's end.",2019-11-19 12:26:36,newest,com.todoist +Matte Tarsier,https://lh3.googleusercontent.com/a-/AOh14Gj9cyqckAo-hH7ZZSmSCwuwBq5FbS8T-ufIRAk5zw,Do not install you have to pay for everything all you can do is write notes. Waste of time and storage,1,2,15.0.7,2020-01-21 19:23:33,,,newest,com.todoist +Bryan Bartik,https://lh3.googleusercontent.com/-1xC5j8AiEw0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNKg_eV6RfmMowOOMog8D6isfH7RQ/photo.jpg,I used to like this. Then the updated it to include something called in Inbox which is just ruining it for me. I dont need that its making it confusing to keep track of things. I will be replacing this with another app.,1,2,15.0.7,2020-01-20 03:44:03,"Hi Bryan, to tell you the truth, we’ve always had the inbox 🙂 That's where the tasks go when you don't specify a project when adding a task. If you feel there is an issue, please do not hesitate to contact us at support@todoist.com.",2020-01-27 16:38:02,newest,com.todoist +Allan David del Cid Morales,https://lh3.googleusercontent.com/a-/AOh14GjDb-flB8Qpq9MnYC7EvfCKmCWE9AkvUWpq8MbWdg,Reminders are a premium feature. Enough said.,1,0,15.0.7,2020-01-20 00:50:29,,,newest,com.todoist +Mario Matos,https://lh3.googleusercontent.com/a-/AOh14Ghn9lmGrKyTkq2UueU-aMm2a23dt0V-eB1cazf5,"Useful features ask you to get premium version but when I try I get to this page, which is the app I already have installed. 1/5",1,0,15.0.7,2020-01-19 20:03:36,"Mario, Premium is a subscription service which gives you access to more features. For more information please go to https://todoist.com/premium",2020-01-20 12:51:02,newest,com.todoist +Vampire The Immortal God,https://lh3.googleusercontent.com/a-/AOh14Gj0YiZ2WOC7O7PNpoTmAVlvz446hjE4Qs9lQcGDTA,Seriously? Reminder is a premium feature? What's the point of all this then? 1 star. I can understand comments and labels but reminders? At least other paid apps give reminders.,1,1,15.0.7,2020-01-19 08:01:35,,,newest,com.todoist +Mark Jagan,https://lh3.googleusercontent.com/a-/AOh14GiGKzcR-Lb2JCFW_Lt5WOaCOHrCKasfUUZ6a9ENjeo,"Alexa shopping list integration is rubbish, items are added correctly but if an item is removed by another user they never leave the list.",1,0,15.0.7,2020-01-18 18:22:21,"Mark, please contact support@todoist.com and we'll look into this.",2020-01-20 12:52:53,newest,com.todoist +Craig Fisher,https://lh3.googleusercontent.com/a-/AOh14GivqKwUXueKXZ9T0OSlGZFzsXRMXIxZ6jAOUfMu-_0,"Way too overpriced. $60 per year, lol.",1,0,15.0.7,2020-01-18 04:14:07,,,newest,com.todoist +Krzysztof Zimmermann,https://lh3.googleusercontent.com/a-/AOh14GjuO4Ich-dfSKTME1z1bXCDy8sdiO0wofWG1UyMHA,"The app will put by default new tasks into Inbox but Inbox is not what you see when opening Todoist. Instead you might see that there are no tasks for the next 7 days. There's no logic in it, app's assistant integrated with Google Assistant fails to find any tasks, even if asked specifically about those in Inbox. Todoist is cumbersome and annoying, it's actually a general problem with task apps: they're too much and fail to actually do what they are made for.",1,10,15.0.7,2020-01-16 12:30:48,"Krzysztof, the app uses the Inbox as a default project because every task has to go to some project so, unless specified otherwise, it'll go to the Inbox. You can change the default start view in the settings. Reg. the Assistant issue, please contact support@todoist.com and we'll look into it.",2020-01-20 12:46:36,newest,com.todoist +Nidal Iguer,https://lh3.googleusercontent.com/a-/AOh14GjyWvtGg2Wyctjii5z_k6uY5vRm_-_kBkrThF8Nmw,"Another simple app with a subscription plan... This is not the right strategy to attract more people... This kind of app should be a one time payment no more. Whatever the number of apps with this strategy, it doesn't make it a good one.",1,3,15.0.7,2020-01-15 08:21:44,,,newest,com.todoist +Sabarivel Janarthanan,https://lh3.googleusercontent.com/a-/AOh14GipcmMYKs-lf8WxWaamyfptAk9_nJMrzWx7sOLGjfw,Microsoft To Do does almost all of this for free. It is pointless to pay such a hefty sum of money for these so-called premium features!!!,1,0,13.4.3,2020-01-14 02:18:43,,,newest,com.todoist +Jothi Kumar,https://lh3.googleusercontent.com/a-/AOh14Ggb54qvQJ9S6-3qq9mKtyPic-n2FPJBAp-g8x-PZA,All features are available only on premium.,1,0,,2020-01-12 13:08:17,,,newest,com.todoist +Veera Medida,https://lh3.googleusercontent.com/a-/AOh14GiGpQQWIycLtMlU56BTxbp3_2Ru7X3HWUnAIqrjQg,"Stupid app,even a reminder which is pretty much basic is under premium useless.Don't waste time in exploring this.Just go to any other nice applications",1,0,15.0.7,2020-01-12 01:43:42,,,newest,com.todoist +Dana MacKay,https://lh3.googleusercontent.com/-_H67XjxFeWc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPWqOetI4RhAj1rpRivcU8v5msZXQ/photo.jpg,Download it and then immediately uninstalled. Have to pay premium prices to get any features at all. Can't even set up reminders. Don't bother with this app.,1,0,,2020-01-11 18:36:08,,,newest,com.todoist +Ketan,https://lh3.googleusercontent.com/-ylNfEQ3G_fI/AAAAAAAAAAI/AAAAAAAAJUs/AAKWJJPJ5H3nQdnChBByLkDvGi6nl4IYJw/photo.jpg,needs a pure black theme for the app and widget,1,0,15.0.7,2020-01-09 19:08:21,"Ketan, thank you for your suggestion, we'll look into adding such option in future updates.",2020-01-13 12:15:46,newest,com.todoist +Mike Brubaker,https://lh3.googleusercontent.com/-ryhqc8xI_p4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOJDPrgyv7zyPdPu4hLnn_AmZZTmQ/photo.jpg,"Not only is the app bad, the second they have your email address they start spamming you. --- Response. Hey Doist I have a better idea, quit taking people's email information and spamming them without their permission.",1,0,,2020-01-07 15:14:59,"Sorry to hear that. Do you mean our “Daily Digest” email? You can unsubscribe from it if it’s not useful, like any other email we may sent!",2020-01-07 15:09:14,newest,com.todoist +Colin Rimmer,https://lh3.googleusercontent.com/a-/AOh14Gh07bId110xJF3_F85BD-K5WI7itMTAK4uK2R33,Can't even use labels for free - it's a premium feature! Uninstalling on principle.,1,1,15.0.6,2020-01-05 23:50:09,,,newest,com.todoist +Hassan,https://lh3.googleusercontent.com/-z8dEa8fhlFY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMGIXzDl-Wx4bfxbCWx-xoyevq_FQ/photo.jpg,Lacks task duplication,1,0,15.0.6,2020-01-05 17:59:00,"When you open a task and select the three-dot menu, you'll find the “Duplicate task” option 🙂",2020-01-07 15:17:00,newest,com.todoist +Sunny Bora,https://lh3.googleusercontent.com/a-/AOh14GiE5FsVnornjeGno67ivlMlrNCDBJ48jxunff720Q,Reminders are premium. It defeats the main purpose of the app.,1,0,,2020-01-05 08:19:32,,,newest,com.todoist +wojtek wolinski,https://lh3.googleusercontent.com/-q6bs_kltP5c/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN-CFXqOF7Y9bFhnXp7L_SXxNOLXg/photo.jpg,Ruined a perfectly good app. Add task above/below features have been removed. When I create a new task it goes all the way to the bottom of the list. I have to then drag it all the way back up to the top of the list of 100+ tasks. App is now useless.,1,2,15.0.6,2020-01-04 20:41:20,"Add task above/below is possible in a project, but we’re working on a feature that should be even better and faster. It’ll be available soon!",2020-01-07 15:16:33,newest,com.todoist +Daniel Petty,https://lh3.googleusercontent.com/-W_pEmbgbgWU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNhA36pgVKffnEjPhxHeV8F5e-Ymg/photo.jpg,"There are glitches in the Android app that aren't in the web app. (I love the web app) Would give this 5 stars if Todoist fixed them, and introduce a bug reporting feature so that bugs like these don't remain unfixed. Dragging subtasks is often glitchy and doesn't parent under the correct parent task, or just reorders back to original placement after I drag it to a parent task. The @ and # symbol rarely actually pops up with label auto recognition as I type like it does on the web app.",1,1,15.0.6,2020-01-04 08:04:55,Sorry about that! We’re currently reworking our drag-and-drop system and will hopefully release an improved version soon!,2020-01-07 15:16:40,newest,com.todoist +Heidi,https://lh3.googleusercontent.com/a-/AOh14GjK8nNRn5xnSD5Qxi9wUnS-uHPDZj-e-CRD3ZIv7Q,"Not having push notifications (reminders for tasks) in the free version makes the app entirely worthless, and premium is far too expensive.",1,0,,2020-01-02 06:34:07,,,newest,com.todoist +Matt Campbell,https://lh3.googleusercontent.com/-1Zlem1oIooA/AAAAAAAAAAI/AAAAAAABD-Q/AAKWJJOePOFOtB54mvW5fq2fZQAA90zMCQ/photo.jpg,"How does this app have such a high rating. You have to pay to get reminders. What a joke. Going back to ""Any.do""",1,0,,2020-01-02 03:27:13,,,newest,com.todoist +Javed Shaikh,https://lh3.googleusercontent.com/a-/AOh14GgciLNfXySUEs_MijWnTYclCmoMZ8JafI-IphR2wA,Why i need sign in for just to do list doesn't make sense.,1,0,,2019-12-27 16:21:39,"Javed, this option allows you to access all your tasks anytime anywhere so you won't have to rely on having the one device with your task list at hand, but can log into your account on any other device to see your to-do list.",2020-01-07 15:11:22,newest,com.todoist +Ant,https://lh3.googleusercontent.com/a-/AOh14GhVCX-SiPXYsCXfGj1MGJUXUigtgE3UtW2GXVr4Ag,I would use the app but it's a paid app and I'm not sure of its true value because I haven't used it. How is it better than keep or others that are (for lack of a better description) free.,1,0,15.0.5,2019-12-27 01:29:08,,,newest,com.todoist +Vishweshwaran D,https://lh3.googleusercontent.com/-qbe1b5Z6muk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOmoMjuXR0heT-7ZaSCwOQ1yCVH9A/photo.jpg,"1) Why are you disabling enter key's next line function? When I click enter key, ""Next line"" does NOT come. So I used other apps to type with new lines by using enter key. 2) Now when I cut and paste the exact contents from another app, even then, it does NOT appear line by line. It appears as a paragraph.",1,9,15.0.5,2019-12-25 15:36:55,We recommend keeping task names short and simple and adding any long descriptions or paragraphs of text as task comments :),2020-01-07 15:08:10,newest,com.todoist +Vasya Drobushkov,https://lh3.googleusercontent.com/a-/AOh14GhgoL3UtmMb3ICOuZnHXc4YpNoWfZpsHNOkMRkB7Uk,Notifications are still premium feature? Okay,1,0,5.2.5,2019-12-24 18:26:58,,,newest,com.todoist +Kamil Dziedzic,https://lh3.googleusercontent.com/a-/AOh14GjdikJQy__vTExI7Y4ugTJxrfl7ni2DIgIv_WUA,Widget is not working. Will show up but then it freezes and you can't do much with it only remove it.,1,0,,2019-12-24 14:42:00,"Sorry for the inconvenience, we’re working on an updated widget and it’ll be available in our Beta channel soon.",2020-01-07 15:12:31,newest,com.todoist +Jamie Norton,https://lh3.googleusercontent.com/-tX2W29NYhOI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN8TZ4K9INxLcOBSdnWCrUsnApTyw/photo.jpg,"Seems a good app, but can't use the basic functions without paying for premium. Eg can't have a reminder at a certain time of day without premium. Surely the basic function of a reminder app is reminders on a certain day or time. Premium is £36 so expensive, loads of free alternatives out there.....",1,10,15.0.5,2019-12-24 11:02:00,,,newest,com.todoist +Andrew Nguyen,https://lh3.googleusercontent.com/a-/AOh14Gh-7QiEsFW3pCjTIQN1BPZBFJDoaqE0nj8XAKQGmg,"Newest update nerfs the widget so you can't utilize as much functionality to it. The main app also features the annoying swipe to select feature now. The previous click to select was fine and this new change doesn't add anything, only creates a new barrier of frustration.",1,2,15.0.5,2019-12-24 00:30:02,"Andrew, we’re working on an updated widget and it’ll be available in our Beta channel soon. We’d love to get feedback on it once it’s available! Also, we switched from tap-to-select to swipe-to-select so that tap-to-select can open the task details view, to make all the task info and subtasks more easily accessible.",2020-01-07 15:13:30,newest,com.todoist +Darin Werner,https://lh3.googleusercontent.com/-g7bvOWBqsTQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMRmk7Fs1ZjYNQx4LbVKvjQsi4A1Q/photo.jpg,"One of the main sticking points for me is how well an app does recurring tasks. In particular, not just fixed date recurrences, but the ability to set the next date off the last completion date. So many apps fail to offer this. Alas, I could find NO way to do a recurring task at all, in spite of them saying it can be done. So, much less checking on this nuance, I see no way of doing them at all. Fail. Moving on.",1,0,,2019-12-23 06:56:54,,,newest,com.todoist +Abanoub Victor,https://lh3.googleusercontent.com/a-/AOh14Gi3a1l2jlUDq-qMBW7fAtKzvDO_cA9Pp9WmkvDB6w,Complicated and tasks vanishing i dislike this,1,0,,2019-12-23 06:44:31,,,newest,com.todoist +Thony Thorn,https://lh3.googleusercontent.com/a-/AOh14GganWyPZf8y5iFf37AyYrsrkps_tjk8KZq5w6TP,Dont loggin with google.. Its pain to delete the acconunt.. Look at TickTick instead.,1,0,,2019-12-22 20:09:22,,,newest,com.todoist +Matt MacAdams,https://lh3.googleusercontent.com/a-/AOh14GiMnQvYhkgctxmMtFivXt2Upc6SKeBbQCnLCTIF,Way too expensive,1,0,15.0.5,2019-12-22 18:37:05,,,newest,com.todoist +Ramona Jeffery,https://lh3.googleusercontent.com/a-/AOh14GhdXRJbEI656JFZtX65R-69Z6C_OWR5gyPZ_ruDsFs,Did not like the way of interfaced that all.,1,0,,2019-12-20 02:53:28,,,newest,com.todoist +Francis Andrew Chavez,https://lh3.googleusercontent.com/a-/AOh14Gjngqax7_2FsA0KtC-6zJOpKc5XKC96xyg08cCXSQ,"Stupid app. After you created list of tasks, it will be removed then they will ask to restore if you buy the premium license. Fraud!",1,0,,2019-12-18 09:36:14,,,newest,com.todoist +Danish Official Channel,https://lh3.googleusercontent.com/a-/AOh14GjF3DvVdsxWXMs1broecxCRHI_U2mG0yG8J30ggTg,Not bad,1,0,,2019-12-16 07:04:59,,,newest,com.todoist +Muhammad Hussnain,https://lh3.googleusercontent.com/a-/AOh14Gg4lofeCDo06tgwTQbFH3ULt1JUL05R0t5wUl1QvA,Quite ordinary experience.,1,0,,2019-12-13 12:17:11,,,newest,com.todoist +payyavula murali,https://lh3.googleusercontent.com/a-/AOh14Gi8tsrV10mq89dZYgIb0-Gx8opy5yHFxg4BIL7RiA,it's not a user friendly app..too much complicated usage. it's of no use. don't have an option of recurring task.its not mobile friendly app... i prefer not use this app in my life.. waste of money and i dont know why this one cost is 300+ bucks..,1,2,15.0.4,2019-12-11 22:02:55,"Hi Payyavula, rest assured that we do offer recurring tasks, you can find out more about them here: https://get.todoist.help/hc/en-us/articles/360000636289 As for the cost, a year of Premium is about 36 USD depending on the platform or the currency you are using. If you have any questions, please send us an email at support@todoist.com",2019-12-18 14:55:17,newest,com.todoist +Moritz Lindner,https://lh3.googleusercontent.com/a-/AOh14GjWKmgu84sEbC-PQvG5gGjjUlbl2vtCM8hZ4RsGLQ,"Recent major update has strongly impeded on usability of app. I understand and appreciate the focus on subtasks and some other features, however I think the developers have severely misjudged the actual most common user stories. Was always a big fan, paid subscriber for many years, but this update was a major letdown. Unnecessary changes for something that was working almost perfectly.",1,37,15.0.4,2019-12-11 06:56:19,,,newest,com.todoist +Abigail Airhart,https://lh3.googleusercontent.com/-L3WYRreoU6g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPm-6VBXxSmisqtpbTQCnQ-PuqNHQ/photo.jpg,I need an app with free reminders. I forget a lot of things so this is not fair...I'm uninstalling.,1,1,,2019-12-10 23:21:29,,,newest,com.todoist +Sama Samrin,https://lh3.googleusercontent.com/a-/AOh14GhqmZM0DG92M-RfH83K3-3ssFQ9sZ37POPOWAmVVR4,Demands premium account for serving the most basic features,1,1,12.9.1,2019-12-10 04:11:29,,,newest,com.todoist +Andrew Pitoniak,https://lh3.googleusercontent.com/a-/AOh14GjsVkLaiJOAu8IQzIC8TGVsuVuIoeBqCb-W-1MVvMQ,Bad UI bad quick short cuts,1,0,15.0.4,2019-12-07 02:04:22,,,newest,com.todoist +Nevada John,https://lh3.googleusercontent.com/a-/AOh14GjX1_Sz203yMXMYA4Em_zvG0BlK-efVOBaCNwHy5Q,"Automatically completes task, for the day, as I open the program. I do not have any access to see what was completed or if I lost something important I have to do.",1,3,15.0.4,2019-12-05 13:32:37,"Hi John! You should always be able to view completed tasks. In this article are some different options on how to do it: http://bit.ly/2t5CSbF. Could you please contact us at support@todoist.com, so that we can help find out why your tasks were automatically completed?",2019-12-11 08:39:54,newest,com.todoist +Handsome Pete,https://lh3.googleusercontent.com/a-/AOh14GgPqTYlEF2TQc6Vv2SvXbw4xgxF800vw-pzZU7zPg,It's very easy to accidentally complete tasks and the only way to undo an accidental completion is behind a pay wall. Instant one star,1,1,15.0.4,2019-12-04 21:39:13,"Hi Pete! There are a few ways to undo accidental completions without a subscription. For example, you can use the undo option at the bottom of your screen, or view the completed tasks in the project view and uncomplete it. For more information, please contact us at support@todoist.com 🙏",2019-12-11 08:35:43,newest,com.todoist +Gavin Scarman,https://lh3.googleusercontent.com/-04acpCD9FNs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPER6b4dK7t7UwmIZjdj0SvXJLTsw/photo.jpg,"Not compatible with older Samsung tablet. What a crock, it's a to do app. Explain why Wunderlist can run but not this app...",1,0,,2019-12-02 22:42:46,,,newest,com.todoist +Lisa Guthrie,https://lh3.googleusercontent.com/-VT-kNUKhvD4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOfB-D6qlUzo-ccVBDsqrpqcDma9g/photo.jpg,"Used to be a great app though the most recent update has made the widget unusable. Too small to see and there is no way to change the size, you also can no longer select multiple tasks, or pop out the widget to see multiple days. I requested to go back to the previous version, but didn't get much response so now I'm looking for a replacement.",2,1,15.4.0,2020-04-04 16:35:10,,,most_relevant,com.todoist +camille valley,https://lh3.googleusercontent.com/a-/AOh14GjC6WP15qP2h58GvPPzDRXFf6ZDLUMcdFxyMaIfGg,"--- EDIT: there is some annoying bugs when assigning a date: ""tomorrow"" is sometimes sent to next week and ""next week"" the week after. I double checked my datetime settings. --- Good tool but removing a star because of the subscription model. I would be happy to pay, but a monthly fee is difficult to justify by the extra features being offered. At least not for my usage.",2,11,15.4.0,2020-03-28 20:05:27,"Hi Camille, could you please contact us about this date issue at support@todoist.com?",2020-03-30 19:27:31,most_relevant,com.todoist +Chris,https://lh3.googleusercontent.com/a-/AOh14GgsYNvcXeClLWCZwWPy0WFHBO0hQrceHVrz1ABrMg,"New update to the widget makes it so I can no longer get into the full app by tapping on the widget, I actually have to go into my list of apps or create a whole other shortcut. You tout a fully operational widget but I can't rearrange my list entries via the widget, only the full app menu (and it was already a pain to rearrange my tasks in the first place, I really really wish there was an option to add new tasks to the top of the list rather than the bottom.) I will be trying out new to-do list apps now.",2,16,15.4.0,2020-03-28 17:07:32,"Hi Chris, thank you for the detailed feedback! This has been noted :)",2020-03-30 19:29:14,most_relevant,com.todoist +Ashwani Kumar Kashyap,https://lh3.googleusercontent.com/a-/AOh14GhLGWM-58K3_qtk5962AVWlfNxAPPP5FS9Yc1lm_4s,"It was already very irritating to see your latest added tasks being pushed at the bottom and you have to everytime open the app to rearrange. And with new update you can't even open the app from the widget, you have to create a seperate icon which is super super annoying. Probably gonna uninstall the app if this is not fixed soon.",2,3,15.4.0,2020-04-01 02:34:57,,,most_relevant,com.todoist +Dmitriy Solovyov,https://lh3.googleusercontent.com/a-/AOh14Gj6ZvBiY9lMu-7boaGX8UzaXKEuj6tdcURw4iFa7VA,"The new widget redesign omits one important feature. Before the widget has todoist icon and I could use it to launch the app from the widget right away. It is no more there. So I have to go to the app drawer to lunch the app, every time I need it. Makes widget less useful. Not happy.",2,8,15.4.0,2020-03-27 15:03:15,"Hi Dmitriy, thank you for the feedback! We are looking into this now :)",2020-03-30 19:42:51,most_relevant,com.todoist +David B,https://lh3.googleusercontent.com/-vE4U49NUgOA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOM57ULDrzaRidxR5G9XxbMJWZKVQ/photo.jpg,"New update has lost the ability to click on the widget and open the list full screen. The font is smaller, and ticking off an item on the widget has became more difficult. Please fix, five stars otherwise.",2,2,15.4.0,2020-04-02 12:34:26,,,most_relevant,com.todoist +Anthony Prescott,https://lh3.googleusercontent.com/a-/AOh14Gji-9w7SIXs534IduapxocudlrxuNjM74kRWaYYm6Y,Trying to set a reoccurring daily task is so convoluted that it requires reading a lengthy help article 😡😡😡? I've switched to Google Tasks which is way more intuitive.,2,1,15.4.0,2020-03-31 06:03:08,"Hi Anthony, could you please clarify your question? Are you trying to add recurring tasks? +Here is how to do it: https://get.todoist.help/hc/en-us/articles/360000636289",2020-03-30 19:12:12,most_relevant,com.todoist +Shane Mackinnon,https://lh3.googleusercontent.com/a-/AOh14GhicD-cOzQMlg9r-R2v-uQtZ4cPkW3aisR2tgqOkA,"The new widget does not allow me to open the app directly, like it could before. Updates should never remove features. Knocking my review down - rest of the app is still great.",2,3,15.4.0,2020-03-28 05:03:17,"Hi Shane, thank you for the feedback! This is something that we are looking into :)",2020-03-30 19:37:13,most_relevant,com.todoist +Je Gr,https://lh3.googleusercontent.com/-Tyc_xWk1XLA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNumGEWd4LGakNl-THPD8jmtdKMqw/photo.jpg,"Can't use with VPN. I practice Information Security and prefer to use a VPN whenever I can. I use 2 Norton & NordVPN (not of course at the same time). In both usage cases, when my VPN is activated it would say there is no connection. I have even tried different servers. Is there a reason that VPNs are a problem for your service? How is your data management & security? Does your company view people's data? How do you keep others from being to steal others data, because username & passcodes...",2,6,15.1.0,2020-02-01 22:12:02,Our app should work with a VPN. Please contact support@todoist.com and let us know which servers you're selecting (from which countries) and we'll look into it. You can find all details about our privacy and security policies at https://todoist.com/security and https://todoist.com/privacy,2020-02-04 12:06:47,most_relevant,com.todoist +Paul Thomas,https://lh3.googleusercontent.com/a-/AOh14Gh08IXGgvFLfRseUn3wKXcyylf4Fnv6rHIMjBNYDqE,"Can't drag n reorder lists on widget which is a big issue for me. Google Assistant integration, poor at best, very awkward, it's easily confused, doesnt move tasks, and generally doesn't work for me",2,0,15.2.0,2020-03-06 20:34:56,"Paul, sorry to hear that. Please contact us at support@todoist.com and we'll look into those issues.",2020-03-09 14:35:40,most_relevant,com.todoist +Vitaly Mush,https://lh3.googleusercontent.com/-Q082dUOU6fU/AAAAAAAAAAI/AAAAAAAAAQ4/AAKWJJO7NVhl8vbYY07xVG0vP_z26pq5yQ/photo.jpg,So you tell me to pay every month for same functionality in premium? NO still doing normal in everything else,2,0,15.4.0,2020-04-02 00:26:59,,,most_relevant,com.todoist +Mr. Rogers,https://lh3.googleusercontent.com/a-/AOh14Gh3LyIKHGvtPYSn9lpzUF0hBryQYXtiPF0BIXXrhg,"The interface is very nice and simple, however, once I got down to using it and setting some tasks(five tasks total), about an hour later I went back to the app to make edits, but instead saw the list of tasks that I have set were deleted. If the app has an issue saving the tasks, it needs to be fixed. I will change the rating once that bug is resolved.",2,52,15.0.7,2020-01-15 21:27:52,Thank you for your report. Please contact support@todoist.com and we'll look into this issue.,2020-01-20 12:41:03,most_relevant,com.todoist +Robert Mowles,https://lh3.googleusercontent.com/-6WEfzVVgagw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNbWHtGhkxRmDp2ZrHOJoAndNXJag/photo.jpg,Subscription required just to set a reminder.,2,2,15.2.0,2020-02-16 15:32:36,,,most_relevant,com.todoist +Faith Roberts,https://lh3.googleusercontent.com/a-/AOh14Gikl62u33e9bvGQ_QI3Sx6eoJO84fApbfk8kEsv,"I have used this app for a few years and loved but what have they done with the app?! The major update in December has made adding/moving tasks harder thus makes me less productive Edit to answer: can't always change projects with a simple #, the gui is cluttered with too much going on, when I tap on a task I used to tap out but when I do it comes out of edit mode, goes to the top and I have to back out again to get to list view",2,1,15.0.7,2020-01-13 12:14:31,"Faith, could you please contact support@todoist.com reg. the last issue you've mentioned and preferably send us a screenshot showing where this problem happens? It would greatly help us identify this issue.",2020-01-20 12:37:05,most_relevant,com.todoist +Jack Parra,https://lh3.googleusercontent.com/a-/AOh14Gid3SQqPJpreVIIGZiNI4Qnl5NBwoAPAaMZxYsM,"Functions fine in general, easy drag to subtasks. Can't adjust the Notifications to not go through ""Do not disturb"" mode (bad if you work off shifts), can't set timing of notifications. In a productivity app, scheduling is important. Reminders require premium, seriously? I'll just install one of the tons of free apps that include it for free rather than pay $3 month. Overall: Average functioning app that requires paid premium for some basic functions.",2,1,15.0.5,2020-01-05 14:53:36,,,most_relevant,com.todoist +blue anonymous,https://lh3.googleusercontent.com/--IrPpgblXi8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOleMb-kZcU_3Cpk4u0ahap-ek6ng/photo.jpg,"Every update have been a step backwards. All the small changes only made everything less convenient and looks like will only continue to do so. The last straw for me is now you can't add things quickly (to default ""inbox"" project) anymore, now you have to spend several more clicks to designate a project, even though I just want to add quickly to the default inbox. Making the quick add widget useless now. Also premium pricing has always been terrible and greedy (monthly cost instead of one time).",2,23,15.0.1,2019-10-30 12:07:17,Sorry to hear that :( We're planning to improve the app in future updates.,2019-11-04 12:53:28,most_relevant,com.todoist +Deborah Higgins,https://lh3.googleusercontent.com/a-/AOh14GjXZOr6l-I5PufdDiXFOb5b-CsxCd9SGLKoVUOOdoY,"I was keeping track of Christmas gifts by checking then off once they were purchased and looking back by selecting, ""show completed tasks"". Until today when I went to check and they are all deleted. Kind of a bummer. It was convenient that the purchased gifts were hidden and nobody could snoop on my phone unless they knew to select that option. But now I have to go through my hidden gift stash. Which if you are a parent... you know how immpossible that can be with kids around all the time.",2,4,15.0.4,2019-12-03 15:46:19,Hi Deborah! Data deletion is something that we very actively guard against. Could you please contact us at support@todoist.com with your Todoist email address so we can look into this? 🔍,2019-12-11 08:20:01,most_relevant,com.todoist +Camila F. Miner,https://lh3.googleusercontent.com/a-/AOh14Gg3ZyDOjIz-NSziK9sEOiVkwq2DdFAEiMGX3SnDpg,It seems like a good app with good features but it's not intuitive at all. I spent fifteen minutes trying to find a way to skip a repeating task this week and I could mark it done. I try deleting to see if it would delete just that occurrences but it deleted the whole thing. The icons are also not intuitive at all.,2,4,15.0.2,2019-11-05 12:17:25,"Camila, sorry to hear that. To skip a recurring task, you can use the ""Postpone"" option in the scheduler - this will move it to the next occurrence without marking the previous one as done or deleting the whole task.",2019-11-12 12:42:35,most_relevant,com.todoist +Lance K,https://lh3.googleusercontent.com/a-/AOh14GiVBrWW9OT3nnbt8JZ87LUwJkydQgoJGy5Dh0QKrw,"Revised review: Sometimes we seek out apps to help with deficiencies or make life work out. App was so great and so functional for months, until a few days ago. I was working around the changed, now cumbersome, reschedule/edit/rename tasks process. But Labels beyond a few characters are hidden now. Todoist Labels was The Thing for this app for me, with efficiently visually seeing/grouping tasks. Had made app ahead of many others. App needs more display settings then...to be usable again.",2,3,15.0.2,2019-11-02 14:56:40,"Lance, thank you for your feedback, we'll look into addressing those issues in future updates.",2019-11-04 12:59:37,most_relevant,com.todoist +Gustaf HauRuck,https://lh3.googleusercontent.com/a-/AOh14GhtGvhJmubO4W0cMhrH2gd-J9iM8Xi5ju34czdleg,"The premium version might be good but the free version is more restricted then other to-do apps, you can not even use the labels/ tags function without paying. If you are looking for a free todo list this is probably not the app for you.",2,3,15.0.1,2019-10-28 00:39:41,,,most_relevant,com.todoist +Alexander Lamaison,https://lh3.googleusercontent.com/a-/AOh14Gh9xw0c9uakLDBBT8lRfAFtdc4XuMywdK3qG2oG3A,The new update is awful. I have to do so many extra clicks to perform basic operations like moving tasks to different days. Multi-select doesn't work any more and the widget is totally broken. Rescheduling anything from the widget locks it up completely.,2,3,15.0.2,2019-11-02 13:30:28,"Alexander, sorry to hear that, we'll bring back text parting in the edit field in future updates. Multi-selecting can be done in two ways now - through the top menu where you can enter multi-select mode or by configuring the ""swipe to left"" gesture in the settings to ""multi-select"".",2019-11-04 13:00:45,most_relevant,com.todoist +Adam Bell,https://lh3.googleusercontent.com/a-/AOh14Gh_RGS8IsdPCeQmJddmyxuoFyeYbkCCfGGRrZQ40g,"The latest update is poorly designed for users with lots of tasks, completely changes the old interface, with attending bugs, out of the blue. Biggest fan to dead in the water overnight. Shocker.",2,1,15.0.2,2019-11-05 03:55:23,,,most_relevant,com.todoist +Tux Penguin,https://lh3.googleusercontent.com/a-/AOh14GhHlNpGIIv4Q0aFF8QoP8wHQm3mYG0wlYR5vvi9JA,"Reminders are kind of a core feature in a to-do list app. Why should I have to pay for it? The app is fine, but I can't use the reminders.",2,1,15.0.7,2020-01-15 19:11:11,,,most_relevant,com.todoist +Brayden Houston,https://lh3.googleusercontent.com/a-/AOh14GhcbSAeL8wn8UwHFgWRAEH_J7mIFznGTUCAIGjQIag,Not a fan of the new Foundations update. You promised so many new features and didn't deliver any of them. The update to Subtasks didn't fix some of the core issues with them.,2,6,3.0.1,2019-10-25 15:48:07,"Brayden, sorry to hear that. We've shipped all the features we've planned an announced and will continue to add new ones based on those new foundations.",2019-10-29 14:20:10,most_relevant,com.todoist +Francis Picard,https://lh3.googleusercontent.com/a-/AOh14GjtX8BnCRRqyQ1nKbKkfgPA-JqLzCZoWTn2OiZ0TA,The changes made to how completed task are handled are not only bad UX but they introduced many quite critical bugs! Please fix.,2,2,15.0.4,2019-12-07 15:32:46,"Hi Francis, we're sorry to hear that! We would love to get some information about the bugs that you mentioned so we can fix them. Could you please report them to us at support@todoist.com? 🙏",2019-12-11 08:42:43,most_relevant,com.todoist +Ryan Renshaw,https://lh3.googleusercontent.com/-0ZpOWso9WEw/AAAAAAAAAAI/AAAAAAAAcP8/AAKWJJMhzX90GLaRymQZ7zEPv-N6uh5GdA/photo.jpg,The widget has been broken for the last couple of weeks since an update. Please fix it.,2,0,15.0.4,2019-12-04 02:02:21,"Sorry to hear that, Ryan! Could you please contact us at support@todoist.com so that we can take a look at what could be causing this?",2019-12-11 08:33:31,most_relevant,com.todoist +I hate registrating,https://lh3.googleusercontent.com/-NasHUsPcPiU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMFhcf6EWydUvQD3Vn1-kgX-2WKFg/photo.jpg,The main feature does not work - it doesn't remind me about todo with system notification,2,0,15.0.4,2019-12-10 15:47:35,"Hi there, we're very sorry to hear that. Could you please try the steps in this article? https://bit.ly/38PXmp3 In case that doesn't help, please send us an email at support@todoist.com and we'll be happy to help.",2019-12-18 14:53:06,most_relevant,com.todoist +Vivekanand Mogali,https://lh3.googleusercontent.com/a-/AOh14GjVU8FJy53KUZIbE2WQJFH5gQ7kiNbMtYmB3CO5aA,Yeah keep everything for premium and then say its free,2,0,15.0.3,2019-11-17 09:01:39,,,most_relevant,com.todoist +Fred Cone,https://lh3.googleusercontent.com/a-/AOh14GhN56xsc6RGaTAl7l44Q9F968f_W_PvjF62eG_0RQ,"Cannot use because of the 299 entry limit. My most important list was split into 7 lists. The first list segment is full, so I cannot add a new entry to the top of it. I copied my lists from Wunderlist, and several lists got split like that. If it had copied starting at the bottom of the list so the first segment was the one not full, I might have been able to make it work.",2,2,,2020-02-16 06:31:10,"Sorry to hear that. Please note that you can have 300 projects each with 300 tasks for a total of 90 000 tasks - a limit you'll most likely never reach. Therefore, if you're only reaching the ""tasks per project"" limit, you can split those big projects into sub-projects, as described here: https://get.todoist.help/hc/en-us/articles/115001862065",2020-02-18 11:29:34,most_relevant,com.todoist +Roux Phoenix,https://lh3.googleusercontent.com/a-/AOh14GiM9NihMXWwGh2ECk-GOVVLbd1fgpa92PMkGfyFHVg,"'It's free, forever' but 'reminders are a premium feature.' Hmm. I'm dyspraxic, without much money to waste, and I'm looking for a to-do list app to help with this. Without reminders, this app is functionally useless to me. Disappointed that you've opted to content-carve to this extent, and I'd argue your claim of being free is misleading. Please reconsider which features to gatekeep, because locking basic functions behind a paywall makes me *less* likely to support you financially.",2,2,,2020-02-12 13:26:21,,,most_relevant,com.todoist +Adnan Saleem,https://lh3.googleusercontent.com/a-/AOh14GgeWAdPEt_uRLH6LLKVK8x7NaAW7DCTsxEE7Eo2Cyk,"While everything else about this app is good, the process of scheduling a task is frustrating. Half of the time, it fails to recognize what I'm trying to set. You should just bring back the old scheduling layout from a few years ago. That was easy.",2,0,,2020-02-16 09:39:27,,,most_relevant,com.todoist +Christine Muller,https://lh3.googleusercontent.com/-mDFmTrRo6Pk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP-4WWOcaExcH1tOh_5iZUMcWiYuA/photo.jpg,"I used Todoist Premium for about 6 years but I must say that it has gone down over the years. There are so many features missing compared to other similar apps which are either free or charge much less for their premium version. The new ""major update"" feels like a complete let down with absolutely no new features other than now being able to see subtasks in the parent task dialog box. Still no Kanban view, no native calendar view, limited to no sorting options, just to name a few. I'm sorry, but dabbing a bit of color on icons or adding a color name next to a color do not qualify as new features. I left Todoist for TickTick a couple of months ago and have not looked back.",2,2,12.9,2019-10-22 18:44:16,"Very sorry to hear that, Christine. We are definitely working on s Kanban view and better sorting options. As for a native calendar view, we are actually re-imagining the Next 7 days view and a calendar view is in the cards :) Please feel free to share any feedback or comments with us at support@todoist.com Thank you!",2019-10-29 14:03:28,most_relevant,com.todoist +Erwin Mayer,https://lh3.googleusercontent.com/a-/AOh14GjuO8v2po8suQRWA5DRpeH_0F4QO1NBD7KHILJSMg,"Since last major update, rescheduling a task takes you to the day where it is scheduled, preventing you from quickly rescheduling all tasks on a given day. Productivity killer.",2,2,15.0.2,2019-11-03 11:17:53,"Erwin, sorry for the inconvenience, we'll look into this.",2019-11-04 12:58:09,most_relevant,com.todoist +Maxim Kushner,https://lh3.googleusercontent.com/a-/AOh14GjIvAZ0BI2f6C7o5aKxMYyzCDWvPNQ9uFPwreTwRw,"Guys you created a great app that I'd been using for years, but the latest update is weird. Modal views when selecting a single task (WHY do I need it instead of previous submenu for rescheduling??), no ability to choose multiple tasks (only by top menu - select tasks), strange icons.. That all makes me really sad. Rolled out to the previous friendly Todoist :(",2,6,14.4.7,2019-10-27 21:54:15,"Maxim, sorry to hear that, we'll consider improving the task detail view in the future. As for multi-selecting, you can do it by swiping the task to the left.",2019-10-29 14:34:30,most_relevant,com.todoist +Nathan Kent,https://lh3.googleusercontent.com/-a7iVcrDuAZU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPqxCd1qzC8OXN9wh_Sqib7_Bi63A/photo.jpg,"It seems like the developer is paying attention to customers, which is a good thing. Hopefully they'll respond to the overwhelmingly critical reviews of the most recent update. The checkboxes simply make it too easy to accidentally mark a task as complete. This is a bad, bad deal. I use Todoist to help me more efficiently run my businesses. If I errantly check off a task, it could cost me a lot of money, and possibly lose me a client. Hopefully you'll fix this right away.",2,9,14.1.0,2019-04-13 23:16:24,"Nathan, sorry to hear that. We'll consider adding an option to disable them in future updates.",2019-04-15 11:37:42,most_relevant,com.todoist +J P Sank,https://lh3.googleusercontent.com/-ONJGxGMIpuM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN-jrylgum9kparSkDNxnRKHxXJuQ/photo.jpg,"I used to like this app. Been using it for a few years with tolerably okay results. But it's been having too many problems with sync, and with failing to load ""Karma"" data. Not only that, but if you miss checking a box but don't see that omission until the next day, there's nothing you can do about it. Maybe the fatal flaw of this app is that it has too many features for its own good. I'd like to get rid of sync entirely and just use the app on my Android, but apparently that can't be done, and if I delete my online account I delete everything. I think I just want to dump this flawed app and see if I can find a good app that does everything offline in one device with no registration required.",2,0,14.1.0,2019-07-30 02:33:56,,,most_relevant,com.todoist +Yeho,https://lh3.googleusercontent.com/a-/AOh14GiD5qxqRWJFORLGbd6MDxALw477lVbuaYdwV0MsqyQ,"I like the app. It works, it's functional, and it's great. However, one thing still strikes me down. Why the hell are reminders a paid feature? Seriously, what's a To-Do app without reminders? I could use even my calendar, or almost any other app, and that would too have reminders, for free. So why should I pay for such a basic feature on a fully fledged app?",2,0,,2019-05-13 09:58:00,,,most_relevant,com.todoist +Kaeda Tiger,https://lh3.googleusercontent.com/a-/AOh14GhhcZyNKSIavOR60ziayrkthyz_dkiSuYy9kL9R2w,I tried out this app but decided not to go with it because it wasn't as intuitive as I like and might be missing some features. Imagine my annoyance to receive a reminder email this morning when I specifically turned off all notification settings. This app is probably great for people who like to be nagged. I don't. I like to be organized.,2,0,,2019-02-27 12:18:41,"Sorry to hear that. Please note that you can disable all notifications not just in the app, but on your account at todoist.com. Also, if you're no longer using our service, you can delete your account which will remove your email address from our database and stop any emails/reminders.",2019-03-04 15:11:08,most_relevant,com.todoist +Catherine Dubé,https://lh3.googleusercontent.com/a-/AOh14GhomelscskSwFKpCn62Ccc2uh7OBdnUyIHwAw,"It was so good and then the PC version became extremely annoying overnight. I'll add tasks in a project, the app will sync and move the task to an entirely unrelated project on its own. And sure, I can reassign it, but I didn't have to before and that's just an annoying waste of time. I don't mind waiting for it to get fixed, but I might just start looking for a new app, which sucks because I really liked this one.",2,53,14.1.0,2019-03-25 15:11:52,"Catherine, sorry for the inconvenience, we will of course fix this issue in the Windows app. We'd love to hear if you like the Android app, though :)",2019-04-09 12:09:43,most_relevant,com.todoist +James Muir,https://lh3.googleusercontent.com/a-/AOh14Ginv-EOFWEXJLCXWcXKB971uBlfyWVmEZP9L3OJlA,I would rate this app 5 stars except I hate the way it scrambles all your tasks every time you change time zones. It's absolutely maddening if you have a lot of tasks because you'll be forced to re-priotitize every time. Going coast to coast with a layover and you'll be doing it three times. Ugh. [Update] Constantly crashing on my Galaxy Note 9 now. Like 20+ times a day.,2,9,13.2.1,2018-10-26 01:48:04,"James, please contact support@todoist.com with more details about these issues. In general, whenever you change the time zone, the app should ask you if you want to adjust it and you should select ""Yes"". If your device is also set to the correct new zone, all your tasks' dates and times should remain correct.",2018-10-29 14:38:13,most_relevant,com.todoist +Uzume Kami,https://lh3.googleusercontent.com/-7zGidjqO3c0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP7cJzROyIsl2ACV5EfP3a90_0QOw/photo.jpg,"Kept getting ""an unknown error has occurred, please try again later"" .... Tried on several devices on my T3 connection, had no problem with other apps immediately after leaving this one. Uninstalled. Sad cuz it looked great. In re: dev's reply, yes I did that. I made sure it was plugged in and turned on too. I did take a look at the .apk and I've found an alternative for me for right now. Thanks.",2,0,,2019-09-15 05:46:10,"Sorry to hear that. Could you please try to delete and reinstall the app, and see if this helps? If not, please contact support@todoist.com and we'll look into it.",2019-09-02 13:51:20,most_relevant,com.todoist +Tom Kelly,https://lh3.googleusercontent.com/-GooqZEnIFlk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNwgQI293IE6Ov7piZLyLfIh0mwyA/photo.jpg,There are better options available. I just didn't like the layout and functionality of the app. I tried it for a couple of months but now it's deleted and I am going to try another.,2,0,,2020-01-11 11:01:54,,,most_relevant,com.todoist +Mohamed Mansour,https://lh3.googleusercontent.com/a-/AOh14GhSmyL1gz_IY7OnvUff_Yu6FLBqaskbPFJRftei8w,"Lots of emails notifications that you can not stop! Most of the features you need - including seeing a completed task - are all in the pro version (needs payment!) Edit after ""Doist"" reply: I mean the email notifications for the due jobs on the lists. They keep filling my email every day and I could not stop them!",2,0,14.1.0,2019-04-30 05:47:54,"Mohamed, you can go to the Settings - Reminders menu and disable automatic default reminders for tasks with time. Once you do that, you can also remove all existing reminders in each task and you won't get those notifications anymore.",2019-05-06 11:29:06,most_relevant,com.todoist +Love Instead,https://lh3.googleusercontent.com/--gnLwjpB_Kg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPGJI3vyZfqpoMZclmSKcLMGa4Gsg/photo.jpg,"Seems like a good tool, but almost nothing that I actually need to do with it is possible without a subscription. I'd happily puchase the app, or do a free trial period, but honestly, it annoys me when companies offer a free download only to put everything useful behind a paywall, especially when they try to give a discount for a year's sub before you even really get to try the features. Nope.",2,319,14.4.1,2019-08-29 04:47:30,,,most_relevant,com.todoist +Alex Miller,https://lh3.googleusercontent.com/a-/AOh14GjxZgFYLbFRO78HfSxgHS6QA_g_7qSow9B9dUyEcA,"Fundamental problem in their development cycle...force users to update, but the value to the consumer doesn't have a feedback mechanism prior to forcing the update. Is there not a beta program with participating users? Todoist, that's what you need to fix. For everyone else,my widgets have lost their usefulness and are now just place holders until I can remove the complete buttons, shrink text, have fully customizable widgets, or settle on another app. but really, focus on the root problem.",2,5,14.1.0,2019-05-09 01:23:22,"Hello, sorry to hear that. We have beta which you can join in the Play Store’s page of Todoist (at the bottom).",2019-05-13 16:39:01,most_relevant,com.todoist +scopio african,https://lh3.googleusercontent.com/-cc2nm2w_0kc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPK7TgQ0QBymfOfmMM_AWaoHju78Q/photo.jpg,The splash screen says the account is free forever. But to have reminder of events / tasks a fairly fundemental aspect to a task reminder app its £3 per month. That's quite misleading. #response to the developer. Thank you for responding. The main point is that a reminder function is a key aspect of a to do list rather than a premium feature.... best wishes with the app.,2,10,14.2.2,2019-05-27 11:30:09,"Scopio, the app is indeed free forever, you'll never have to pay to use it. Only the additional Premium service is paid and we never claim that it's free as well.",2019-05-27 11:15:13,most_relevant,com.todoist +Thomas Rokicki,https://lh3.googleusercontent.com/-AoIN0LYWqxY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNKupxLrhw0jj4x8JqvjBfdAgGnbg/photo.jpg,"Would be better if the Inbox was not treated as a project, but rather a scheduling location, and that items could be created in the inbox and EASILY (bulk) moved to other projects (but stay in the inbox) to then be scheduled to daily or next week or whatever Tracking would be easier. and the app would get a higher rating and I may actually subscribe.. Its a deal breaker for me.",2,0,,2019-02-27 16:26:20,"Thomas, sorry to hear that. Please note that all that can already be done with filters. You can even pin filters to the top area so instead of using the Inbox project, you could use the custom filter that will show you tasks for the next days or weeks in any projects. More info on filters: https://get.todoist.help/hc/en-us/articles/205248842",2019-03-04 15:09:33,most_relevant,com.todoist +Daniel Watson,https://lh3.googleusercontent.com/a-/AOh14GhfkKWbLiK51wnbhDQTXKcANbXO_DyFbTYrZs-pRQg,"Some pretty basic standard features in other apps are missing. The options menu is very limited with no option to default a tasks due date, project, category etc. These have to be entered every single time a task is created which makes adding quick tasks on the fly very annoyingly slower than other apps. There is no sorting options or filters on views (ability to create custom views does not exempt this feature from being useful). Too many clicks to edit tasks, eg notes/comments, rescheduling.",2,15,14.3.1,2019-07-12 05:47:09,"Daniel, thanks a lot for your feedback, we'll consider adding such options and improvements in the future.",2019-07-15 15:54:55,most_relevant,com.todoist +The Worthy Witch,https://lh3.googleusercontent.com/a-/AOh14Gj3JnnrZX43QuhS62AS-iPaorddQNgGPT36cJye,"New lay out is awful and takes extra steps to do everything that was once easy. App no longer syncs to my computer app, which has syncing problems of own. Since the last update it's slow on either set up and honestly no longer as good which is upsetting as I paid for the full year right before the update that screwed it all up. I really hope you guys are working to fix the lag, the lay out and the syncing problem. This last update was a terrible idea",2,1,14.1.0,2019-04-27 22:38:39,"Hello, could you please contact us at support@todoist.com with more details about the syncing issue you are experiencing?",2019-04-29 16:34:29,most_relevant,com.todoist +Savvas Navrozidis,https://lh3.googleusercontent.com/--OvmC1H4zF4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOm4p4L9U6jkNR8BnnH43kMU4f65w/photo.jpg,"I tried the free version. I liked the way, that you are writing the day to remind you and it set itself, but the free version doesn't support calendar and for me this is a big minus. I prefer to use Google task app, that signs up with calendar and reminds you for the task.",2,0,14.3.1,2019-08-03 10:40:21,,,most_relevant,com.todoist +Kevin Harrop,https://lh3.googleusercontent.com/-ElxtYVBRZnw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN5cz0VwqFmIwXZUl74YlBAdjePNA/photo.jpg,"Beautiful interface and design. Unfortunately most features are locked behind a subscription, including some important features such as viewing completed daily tasks. As is, other top rated To Do apps offer more features for absolutely no cost. Would consider paying a one time fee for it but the subscription is a deal breaker.",2,12,14.3.1,2019-06-25 05:36:09,,,most_relevant,com.todoist +Harsh Saglani,https://lh3.googleusercontent.com/a-/AOh14GiAakxCF4r83fAWE2Y53Ro6inXfnOmzqZBr0SXmMw,"Great app. Alas, I'm constantly reminded that ""Hey btw there's a paid version which has the functionality you're looking for : ) "". This is tiresome and the subscription based model just doesn't make any sense. Plus hey! Its expensive.",2,4,14.4.1,2019-08-24 03:00:24,,,most_relevant,com.todoist +Guillermo Alessandri,https://lh3.googleusercontent.com/a-/AOh14GhwgN1O_v15v8M47Ogf1ILbhkSS9ZXAwJpLW8ie5L4,"Great app that suffers from the most annoying design flaw. Every time I create a task, it goes to the bottom of the list. I always want the task at the top so I can see it. That's the whole point of using a to do list. So I have to drag the task, one by one to the top. Makes me crazy.",2,1,14.4.1,2019-09-13 07:53:24,"Guillermo, sorry to hear that. The task goes to the bottom just like on a real to-do list where you'd add new to-dos to the bottom of the list, but we'll consider changing this in future updates :)",2019-09-17 09:48:16,most_relevant,com.todoist +Paul Schimpf,https://lh3.googleusercontent.com/a-/AOh14GgVO1NaJbK3gYRy9E8T1-Rn5OncV5pmvg_LfthuTg,"I'd like it except the widget is the most important feature for me. It displayed my inbox for about a week and now comes up blank. The tasks are there tho. I can read them if I open them, or open the app. :-( You're not the only organizer with this problem tho. Android 9.",2,6,13.3,2018-11-02 00:38:22,"Paul, sorry to hear that. Please try to re-add the widget and if this won't help - reinstall the app. If this still doesn't fix it, please contact support@todoist.com with more details such as - when exactly did it start happening (after an update or after the change of the widget's view, for example).",2018-11-13 12:45:46,most_relevant,com.todoist +Gareth,https://lh3.googleusercontent.com/a-/AOh14GjjGUiNycVdz-Uw988HXyZJrKybtI85Jo4ULKfhjQ,"Mostly good but simply things like creating subtasks are incredibly fiddly, why can you do it from only projects? Why can you only do it by long pressing and dragging slightly to the right (to much marks is completed) allow a simple option on the menu. Deleting tasks is several options in etc. Doing almost anything other than straight adding tasks is cumbersome as hell and just frustrating. Needs some real UX love.",2,2,14.3.1,2019-07-01 21:45:22,"Gareth, thank you for your feedback, we're already working on improvements for the UI and UX so we hope you'll like the app more once the changes roll out :)",2019-07-08 14:58:31,most_relevant,com.todoist +A O,https://lh3.googleusercontent.com/-8-OJbgsj3NI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN4Nyw2pYlxnczMSdxt0-w5mA8qrw/photo.jpg,"I am not receiving my notifications on any of my tasks/projects I have scheduled, so I end up missing out on things I want to take care of. I have it turned on in Settings. Why is that?... I utilize the Smart Schedule tool, but still no notification. Pls help or fix.",2,1,14.3.1,2019-07-04 06:51:10,"Please check if any battery-saving app or low-power mode isn't active and preventing our app from generating notifications and also try to reinstall the app. If nether helps, please contact support@todoist.com and we'll look into this.",2019-07-08 15:06:07,most_relevant,com.todoist +daryn thompson,https://lh3.googleusercontent.com/--TxZd1HfebM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMtVtIzeTks82kxzTYH378o2dZ4NQ/photo.jpg,"fantastic app a critical flaw... one touch completion, now when you brush the screen your tasks get set to complete and you can't find them easily.. (updated July 25) the developer asked me to respond to comment... thanks for responding. don't fuss on my part .",2,1,14.3.1,2019-07-25 16:19:02,"Daryn, thanks for clarifying, we're already planning to add the undo option to the widget in near future :)",2019-07-08 14:59:16,most_relevant,com.todoist +Dana Casey,https://lh3.googleusercontent.com/a-/AOh14Gg8A5GoBhv5rduIREVLJxsmdL_W3WIjE3R3fSVLvw,"I have read quite a bit about updates being frustrating. Before applying the update, I had hoped to find documentation about changes. Found nothing on the todoist website, no comments in reviews. Update is attempting to be pushed, where's the documentation????",2,0,13.4.9,2019-05-09 17:29:06,,,most_relevant,com.todoist +Kurt P,https://lh3.googleusercontent.com/a-/AOh14GhbZc2snaQvuB14FKHXAMG5axtUHwrg64DtGhzpwQ,Really liked this app until they started charging for basic functions on a monthly basis...would have been happy with one time charge but not worth $36 a year when there is better for less...,2,0,13.4.9,2019-02-19 14:42:39,,,most_relevant,com.todoist +Josh Deakin,https://lh3.googleusercontent.com/a-/AOh14Gi77O6zvybPyQDopmHHDSwNYklLXj4j_b8B_7w3KQ,"it's clear to me that this is the best todo app, and I've used it for a long time, but having reminders be a premium feature is just unreasonable as it's impossible to use a todo app without them. I'll be switching to TickTick.",2,0,14.2.3,2019-06-01 09:30:12,,,most_relevant,com.todoist +Andy Byrd,https://lh3.googleusercontent.com/a-/AOh14Gh5IOvfGTyQmFwmbnEacZlS4vT3qFyfPJqAEXEo9Dg,Lost half its use once they got rid of seeing children categories in the widget. I use ToDoist for homework assignments and I used the parent functions for assignments to categorize what class the assignment is for. Without being able to see all my parent/sub folders from the widget it kills most of the use of the app. I went back to an old APK but then I started getting prompts that the app would stop working if I didn't update. I still use it as a grocery list with IFTTT until Keep is fixed.,2,3,14.2.1,2019-05-22 13:41:48,,,most_relevant,com.todoist +Chuckles Buster,https://lh3.googleusercontent.com/-TOQY5V0pKlc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPGeeP6oMgnXhHr4J7eFGq6hX8wzw/photo.jpg,"Maybe it works for some people, but this was absolutely the worst 'to do list' app I have tried! Every time I opened it, therr was a 'feature' blocking my use. The ultimate problem was finding no task delete function.",2,5,13.4.1,2018-12-17 16:52:30,"Hello, sorry to hear that. + +To delete a task, tap on it - tap the three-dot icon in the top right - Delete.",2019-01-02 17:34:51,most_relevant,com.todoist +Ai Ajoc,https://lh3.googleusercontent.com/-YLmVvTpbB30/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMMNfssBI9-kAz_eZZCmH1bHhOU4g/photo.jpg,"Please I need help. When I try to log in with Google in the app, it said ""Unknown error occurred. Please check again in a few seconds"". I've uninstalled and re-installed the app, but no such luck😢",2,0,14.0.0,2019-03-19 10:32:14,"Ai, please contact support@todoist.com and include the following information: can you log in with Google on the web at todoist.com with no issues or does the issue persist there as well? If you can log in, if you set a password for your Todoist account, can you then log in manually (not through Google) through the Android app?",2019-03-26 12:42:08,most_relevant,com.todoist +Devin Jacobs,https://lh3.googleusercontent.com/-rU0Z_KcsSTg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOWMrwKvF1rMZJvB-A3GfP3McqpFw/photo.jpg,I really dislike the projects thing. Just let me make new lists. I want a list for movies to watch another for gift ideas etc. The best way to do that through this app is subitems which are a pain to deal with. Moving over to wunderlist,2,0,13.3,2018-11-03 17:55:50,,,most_relevant,com.todoist +Holly Weitze,https://lh3.googleusercontent.com/a-/AOh14GiDwadsaKhNz5SjrWxmEWcDISWKDh2OO1jweURsKc0,"dont like the layout, not very user friendly and you can't see your completed tasks unless you pay a monthly fee that is overpriced. don't recommend. there are much better apps that cost much less or are free.",2,0,14.1.0,2019-04-25 02:25:14,"Hello, could you please clarify what specifically you don't like in the layout? Also, it's possible to view completed tasks in a free version: enter a project - three dots icon in the top right - Completed tasks.",2019-04-29 16:30:54,most_relevant,com.todoist +Yuswei S,https://lh3.googleusercontent.com/-YLUIREtl99w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNyd4WUKwOy-BfYl6TvPKhgv-WP7Q/photo.jpg,I was shocked to discover that notifications is a paid feature. I uninstalled. Would have been great otherwise.,2,0,,2019-12-17 16:41:50,,,most_relevant,com.todoist +gatito sanjuan,https://lh3.googleusercontent.com/a-/AOh14GissKYE37BtqsP4PU4pjzGr8Cx2kvG_AVQfjNszSg,This is only to add your todo list and thats all tou can do with the free if you want to put date and time to let you know you have to do somthing. You pay not good at all With free versions drom other apps do the same this pay app,2,0,13.0.1,2018-10-04 12:56:19,,,most_relevant,com.todoist +halit yilmaz,https://lh3.googleusercontent.com/a-/AOh14Gi-8ZrZQrLZg-cuIJktPT9VFMrtxJnB-cbsCiKjYA,where my reply ended up i cant see but i am a user for 2.5 years and this app never worked properly for me. i use for the script task adding feature and pay for supporting its development but they are not much interested i guess. businessline.halit.... try searching your emails. i wrote more details in original post.,2,0,14.0.0,2019-03-19 18:52:17,Sorry to hear that. Please contact support@todoist.com and send us the ticket numbers so we can check what responses from us you found confusing and clarify them for you.,2019-03-19 13:53:19,most_relevant,com.todoist +Sjur Pollen,https://lh3.googleusercontent.com/-xxQ_tjnzNaU/AAAAAAAAAAI/AAAAAAAAgXw/AAKWJJMhQbnoonZQ4nM1faZ-lyu7wQgCJg/photo.jpg,"Removing features from the free version is not a good way to attract people to premium version, and the price is way to high. looking elsewhere :-(",2,1,13.6.1,2019-03-02 15:17:58,,,most_relevant,com.todoist +The Jucktion,https://lh3.googleusercontent.com/a-/AOh14GiWY8BTFNkL1dy6qLEHqCfcG54iTwXmy__8m5tE,the only reason I had premium was because I could get SMS notifications while still be offline and not worry about unreliable push notifications. beats the purpose of having an additional app now than the default calendar.,2,0,13.4.1,2018-12-20 02:14:07,"Hello, + +Thanks for sharing your candid feedback. We know that the change might be considered as an inconvenience for some users and we'd like to apologize for that. + +In case you are facing any issues with push notifications reminders, please reach out to us at support@todoist.com so we can assist you further.",2019-01-02 17:24:39,most_relevant,com.todoist +BHX,https://lh3.googleusercontent.com/-a7nNZo3gsQ0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNQL1q7Mk8liu1CdwmBIPvi36aLhQ/photo.jpg,"I tested a few task apps, and this one looked promising at first. But very quickly I hit the paywall, even for basic and essential features such as reminders and labels. I'm going to use Trello instead.",2,0,,2019-09-29 11:39:29,,,most_relevant,com.todoist +Stephanie York,https://lh3.googleusercontent.com/a-/AOh14Gjcm6FbVuDYjR7JcD_ltVdFV46Yliz9SpJnmDcIe7E,"There is a bug in this app. No matter what I selected the ""Change time zone to..."" pop up kept coming up. If this could be fixed I would definitely be interested in using it.",2,0,,2018-12-14 15:01:10,"Hello Stephanie, sorry for the inconvenience. This issue will be fixed in the next version 13.4.2.",2018-12-17 16:37:21,most_relevant,com.todoist +Beau Badeaux,https://lh3.googleusercontent.com/a-/AOh14GiadSobWS6i3OJWfyRrpDJnUKmnmBo58RD4saTlzA,"As someone who isn't interested in task sharing or syncing, I find it insulting Todoist locks some otherwise basic features like reminder notifications behind a subscription instead of a one-time unlock. That's just greedy.",2,1,,2019-01-20 20:04:15,,,most_relevant,com.todoist +Phillip Adams,https://lh3.googleusercontent.com/-AwYvyfwtUZc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPka3Y9K_m18J0DdjDBKIkkPHtQBg/photo.jpg,Was a good app but the 'improvements' made have made it fairly useless. Especially the widget. I don't pay premium prices to have an app get worse. Please restore,2,3,14.1.0,2019-03-26 10:04:26,,,most_relevant,com.todoist +C Rigby,https://lh3.googleusercontent.com/a-/AOh14Gi8rNZ8-EKJ1ptvUs71CIXyEb9xzmL_Nigi0rBdeA,Seems pretty good but most of the options that make if stand out are not available unless you pay for it. Splendo is cleaner and easier to use.,2,0,13.3,2018-11-05 16:33:38,,,most_relevant,com.todoist +Jonathan Couchenour,https://lh3.googleusercontent.com/-7vwR_mzeJ40/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOlTU90jXJPTWro7ZcYmzWnKpidug/photo.jpg,"App deleted my tasks out of no where, as well as the app seems to be bloated with features. Needs to be more sleek and refined. I dont believe the audience for a to do list app is looking for anything with a lot of features.",2,0,,2018-11-20 00:32:47,"Jonathan, sorry to hear that. Please contact support@todoist.com with more details about this issue such as - are you sure you're logging into the same account across platforms, can you see your tasks on a different platform, in a different browser etc.?",2018-11-26 14:17:55,most_relevant,com.todoist +J Lee,https://lh3.googleusercontent.com/a-/AOh14GgPsGzjMQ7_x_MvGOsCyua2rinbTGVN4PbRx_Zd7g8,it works. but WAY TOO EXPENSE and compkicated than most user will need. this free version has too many pieces missing and is just frustrating.,2,0,13.6.2,2019-03-09 12:12:58,,,most_relevant,com.todoist +Rishi M Dave,https://lh3.googleusercontent.com/-vXC_yPN5F4k/AAAAAAAAAAI/AAAAAAAAAF4/AAKWJJMzNOqXhxZyKqdFoRwPHlc7gbQRHA/photo.jpg,"Hi, I am using Vivo V5 Plus handset. I had downloaded ""Todoist"" for quick reminder but your application does not remind me on time set for work, if screen is idle and notify only when i turn on screen. Kindly help me in this regard.",2,0,,2019-01-03 12:07:20,"Hi Rishi, sorry for the inconvenience. We hope to have this issue resolved in the upcoming update.",2019-01-07 19:08:06,most_relevant,com.todoist +Barry Hill,https://lh3.googleusercontent.com/-NvDXp-tgMxw/AAAAAAAAAAI/AAAAAAAAVHA/AAKWJJNAjuVmLX8XKWf8_1l9C54Ru-yzNQ/photo.jpg,Almost every feature requires a premium account for 36€ per year... It's not even possible to test these features without subscribing to an annual plan,2,5,14.4.1,2019-09-07 11:02:16,,,most_relevant,com.todoist +Cole Lite,https://lh3.googleusercontent.com/-bFaOfe3uJKI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNnB4_yhNby-okAbLYQLfkQ7WVi1g/photo.jpg,Would even pay & advertise but I am not able to see in one view WHEN future stuff is taking place...,2,0,14.4.7,2019-10-10 10:45:25,"You can use the search bar to search for ""view all"" to see all your tasks on one list. You can also search for ""p1, p2, p3, p4"" or ""overdue, 50000 days, no date"" to see all your tasks with different sorting (by priority or by date). You can create filters with those queries so you won't have to type them into the search bar every time.",2019-10-14 11:17:40,most_relevant,com.todoist +Ryan Pattengale,https://lh3.googleusercontent.com/-BAEqQWL9gB4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMMj8w8K-01ia_D2GyAM3ypVAVnHA/photo.jpg,I couldn't find an easy way to make a project recurring without using templates or add attachments and notes to individual tasks.,2,0,,2018-12-21 12:55:44,"Hello Ryan, thanks for the feedback 🙂 Indeed, it's not possible to make projects recurring automatically. We may improve this functionality in the future, though.",2019-01-02 17:22:18,most_relevant,com.todoist +Lord Meatball,https://lh3.googleusercontent.com/-CxMnA4Pr6EA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPPZBjJ8rL7NAfh3HG7ltJAa0T1Hw/photo.jpg,"Its good for making lists, but if you want reminders or other features you need to upgrade to premium, its just not for me",2,0,,2019-08-28 07:26:16,,,most_relevant,com.todoist +icarus,https://lh3.googleusercontent.com/a-/AOh14Gg6YpdbUo-UxkybVMCweFoLZLilNJyc_7w6nbHMjA,very simple design that makes adding a task complex! also most useful features are premium.,2,0,14.1.0,2019-03-31 07:00:05,,,most_relevant,com.todoist +Richard Shepherd,https://lh3.googleusercontent.com/a-/AOh14GimnN_wUnWME3alMDUI6EnFO2bfhz2KLK26hVOkxg,Widget constantly breaking. Not updating and showing a loading icon at bottom. Defeats the entire point of having a widget easily viewable.,2,2,13.3,2018-11-01 20:17:50,"Richard, please check if the issue still persists in the latest version of our app which contains a fix for a bug in the widget. If it won't help, please contact support@todoist.com with more details, preferably a screenshot showing this issue.",2018-11-13 12:44:07,most_relevant,com.todoist +Sébastien Zurfluh,https://lh3.googleusercontent.com/a-/AOh14Gi1s-7ioFoayu9HM7ySgmLL2mWQGgBDQQvOdD0xlA,Adding a picture to a task is a paid feature... So free version is not great.,2,0,12.9.1,2018-09-22 15:04:39,,,most_relevant,com.todoist +Alireza,https://lh3.googleusercontent.com/-KbFpbUcCmFA/AAAAAAAAAAI/AAAAAAAAL0s/AAKWJJP1scUYBFwkDdhp5I5WvtteFqKxMw/photo.jpg,Why would I pay for this app for reminders? It's just a goddamn simple feature!,2,0,,2020-03-08 15:28:23,,,most_relevant,com.todoist +Moe Perez,https://lh3.googleusercontent.com/a-/AOh14GiRV296h2ObKLoLt9bvk6LaWcn1rvhKlHbvkZf0vQ,"Just uninstalled it It looks a great app, but one its fundamental features (reminder) was available only in premium mode.",2,0,,2018-11-17 09:39:10,,,most_relevant,com.todoist +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Difficult onboarding, no integration with google calendars, documentation is not very clear.",2,1,13.4.9,2019-02-16 11:20:54,Thanks for reaching out to us. Google Calendar integration is among the many features of the platform and so we would love to get the chance to assist with any onboarding challenges that you may be facing. Please contact us at support@todoist.com with more details and we’ll gladly help to get you up and running 💪,2019-02-19 12:32:12,most_relevant,com.todoist +Kathy Malone,https://lh3.googleusercontent.com/a-/AOh14Ghib7pr1CWQ6jGlO3CQResS_B6hhstW0IFS9brlkw,"Doesn't let you say you did something yesterday, which is for me a big deal, as I browsed the options looking for a way to do that almost everything was only a premium option",2,0,13.3,2018-11-06 18:36:43,"Kathy, thank you for your feedback, we'll consider adding such option in future updates.",2018-11-13 12:53:40,most_relevant,com.todoist +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Latest update has changed how to set a date and time, and it's not great. Prefer the old version.",2,0,13.1,2018-10-20 18:44:06,,,most_relevant,com.todoist +Dan Tal,https://lh3.googleusercontent.com/a-/AOh14GgOkkuW6jLYrnkwHAeR6eXDG3AQW-E8-0Tn_1bekw,The free version has a minimal functionality. There more advanced free apps on the PlayStore.,2,0,,2019-02-09 08:38:36,,,most_relevant,com.todoist +Ratri Arista,https://lh3.googleusercontent.com/-j5QKKVUj5kk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOJtxiGihLIwq1lA5q6BAszkbZ6qA/photo.jpg,Have to pay for labels. there's no separate sections for different categories on widget,2,3,13.4.1,2019-04-09 08:15:11,,,most_relevant,com.todoist +Hassan Elwy,https://lh3.googleusercontent.com/a-/AOh14Gh1Rp2qhgbgTL73KVIxFWm8ZbF7APq5OwDuiamt,"Push Notifications are a premium feature, so if you need this feature this app is not really free",2,0,13.2.2,2018-10-26 13:11:39,,,most_relevant,com.todoist +Ikiam Paladines,https://lh3.googleusercontent.com/a-/AOh14GjiXkoK4JQ9TeSnD0Xqo8y4EkEoeCjEKpBhmITRgg,"I hate when the things are no clear, basic features as reminders are in the premium membership",2,2,14.4.1,2019-09-16 12:07:21,,,most_relevant,com.todoist +Lachlan Roberts,https://lh3.googleusercontent.com/-Wh0ikIN3WBs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM9K0H-7emDdqWkcs0ZibNIYbJsaw/photo.jpg,puts basic functionality such as setting notfications behind a paywall you have to pay monthly or yearly.,2,0,,2018-12-20 13:12:11,,,most_relevant,com.todoist +Salim Baidoun,https://lh3.googleusercontent.com/a-/AOh14GjRFqTCJEBQ9CMCwH2BIlaBFkli43NOzj9P8GkXzA,I am a premium user and found it very complicated and got many bugs,2,0,13.0.1,2018-10-05 05:09:56,"Salim, sorry to hear that. Please contact support@todoist.com and let us know what bugs or issues did you encounter, we will fix them ASAP.",2018-10-08 10:13:35,most_relevant,com.todoist +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"No easy way to import or export tasks in a non-proprietary, other app (e.g. Google Tasks) compatible format.",2,0,,2018-11-14 22:52:32,You can easily export all your active tasks as templates in a non-proprietary standard CSV format :),2018-11-19 12:37:41,most_relevant,com.todoist +rehtafrey,https://lh3.googleusercontent.com/a-/AOh14GiFD5dJPoW9mHR3jR16A78RWQ6sxcUnS2A52Xkp0g,why doesnt the widget remember to sort by date? i have to keep going into the app to select sort by date.. can this be fixed???,2,1,14.4.7,2019-10-04 05:52:08,,,most_relevant,com.todoist +M Murphy,https://lh3.googleusercontent.com/a-/AOh14GhSf-qXMU7UPczCujRCP9FyuwQBIYF9ZJG8xhTpnM4,"cannot enter how long a task will take, which severely limits its use for scheduling",2,14,13.6.2,2019-03-10 16:38:51,,,most_relevant,com.todoist +João Café,https://lh3.googleusercontent.com/a-/AOh14GhEtVEoDAkfZRRTfvJIMGqrKpfLpETB9xAZuY_pGQ,Looks good until you have to pay 3£/month to add labels,2,0,,2019-02-10 11:09:35,,,most_relevant,com.todoist +Denis Cowley,https://lh3.googleusercontent.com/a-/AOh14Gh4UlwwPD-hu8QG9N-jNxIjtqm3Qwi0ZqjEPNzRjpQ,"Its almost there, but a bit buggy. I used Chrome OS and Chromebook. The app does not handle recurring reminders properly. When I mark the reminder as done it should automatically reschedule for the next occurance. When I mark as 'done' the task goes away forever. I contacted support and shared a video of the behavior. They acknowledge a bug, but that's been weeks ago. I have no faith yet the recurring reminders are reliable. Proceed here with caution if you rely on strong reminders such as I do, as you could be left hanging and missing an important task.",2,0,15.4.0,2020-04-06 12:15:08,,,newest,com.todoist +Lisa Guthrie,https://lh3.googleusercontent.com/-VT-kNUKhvD4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOfB-D6qlUzo-ccVBDsqrpqcDma9g/photo.jpg,"Used to be a great app though the most recent update has made the widget unusable. Too small to see and there is no way to change the size, you also can no longer select multiple tasks, or pop out the widget to see multiple days. I requested to go back to the previous version, but didn't get much response so now I'm looking for a replacement.",2,1,15.4.0,2020-04-04 16:35:10,,,newest,com.todoist +David B,https://lh3.googleusercontent.com/-vE4U49NUgOA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOM57ULDrzaRidxR5G9XxbMJWZKVQ/photo.jpg,"New update has lost the ability to click on the widget and open the list full screen. The font is smaller, and ticking off an item on the widget has became more difficult. Please fix, five stars otherwise.",2,2,15.4.0,2020-04-02 12:34:26,,,newest,com.todoist +Vitaly Mush,https://lh3.googleusercontent.com/-Q082dUOU6fU/AAAAAAAAAAI/AAAAAAAAAQ4/AAKWJJO7NVhl8vbYY07xVG0vP_z26pq5yQ/photo.jpg,So you tell me to pay every month for same functionality in premium? NO still doing normal in everything else,2,0,15.4.0,2020-04-02 00:26:59,,,newest,com.todoist +Ashwani Kumar Kashyap,https://lh3.googleusercontent.com/a-/AOh14GhLGWM-58K3_qtk5962AVWlfNxAPPP5FS9Yc1lm_4s,"It was already very irritating to see your latest added tasks being pushed at the bottom and you have to everytime open the app to rearrange. And with new update you can't even open the app from the widget, you have to create a seperate icon which is super super annoying. Probably gonna uninstall the app if this is not fixed soon.",2,3,15.4.0,2020-04-01 02:34:57,,,newest,com.todoist +Anthony Prescott,https://lh3.googleusercontent.com/a-/AOh14Gji-9w7SIXs534IduapxocudlrxuNjM74kRWaYYm6Y,Trying to set a reoccurring daily task is so convoluted that it requires reading a lengthy help article 😡😡😡? I've switched to Google Tasks which is way more intuitive.,2,1,15.4.0,2020-03-31 06:03:08,"Hi Anthony, could you please clarify your question? Are you trying to add recurring tasks? +Here is how to do it: https://get.todoist.help/hc/en-us/articles/360000636289",2020-03-30 19:12:12,newest,com.todoist +Fábio Christian,https://lh3.googleusercontent.com/-SkuplVSHFxw/AAAAAAAAAAI/AAAAAAAADOo/AAKWJJNfQ42WjNlvgwajy7dMWN9WzNyrrQ/photo.jpg,The new update destroyed the widget. Terrible.,2,2,15.4.0,2020-03-30 23:18:11,,,newest,com.todoist +camille valley,https://lh3.googleusercontent.com/a-/AOh14GjC6WP15qP2h58GvPPzDRXFf6ZDLUMcdFxyMaIfGg,"--- EDIT: there is some annoying bugs when assigning a date: ""tomorrow"" is sometimes sent to next week and ""next week"" the week after. I double checked my datetime settings. --- Good tool but removing a star because of the subscription model. I would be happy to pay, but a monthly fee is difficult to justify by the extra features being offered. At least not for my usage.",2,11,15.4.0,2020-03-28 20:05:27,"Hi Camille, could you please contact us about this date issue at support@todoist.com?",2020-03-30 19:27:31,newest,com.todoist +Chris,https://lh3.googleusercontent.com/a-/AOh14GgsYNvcXeClLWCZwWPy0WFHBO0hQrceHVrz1ABrMg,"New update to the widget makes it so I can no longer get into the full app by tapping on the widget, I actually have to go into my list of apps or create a whole other shortcut. You tout a fully operational widget but I can't rearrange my list entries via the widget, only the full app menu (and it was already a pain to rearrange my tasks in the first place, I really really wish there was an option to add new tasks to the top of the list rather than the bottom.) I will be trying out new to-do list apps now.",2,16,15.4.0,2020-03-28 17:07:32,"Hi Chris, thank you for the detailed feedback! This has been noted :)",2020-03-30 19:29:14,newest,com.todoist +Michael Wiegand,https://lh3.googleusercontent.com/-kXc37ZFcRds/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMnHhgkx-KKRJO80Y_umBvWmwB0zw/photo.jpg,"They fixed the crashing issue. Awesome. My impression of the app was 5 stars after that. What brings me back though is the latest GUI change to the widget. 2 stars now. They took away the ability to easily select multiple tasks. I am considering switching task managers now. I do not see a way to restore the old functionality. Also I used to be able to launch ToDoist from the widget. That button is gone now too. I am a long time user. I've reached the """"enlightened"""" rating on the app. Boo...",2,2,,2020-03-28 15:11:04,"Hi Michael, thank you for the feedback. This has been noted.",2020-03-30 19:30:27,newest,com.todoist +Mike Kwstaras,https://lh3.googleusercontent.com/a-/AOh14GiwPKV_joY9J8Zmyi2LHUUWo5gThqexm-YlXHoNeg,"Why did you remove the ability to enter the main app from the widget? The widget also has some serious performance issues and freezes often. Other than that it's a great app, does its job and the web interface is really useful when you're on desktop.",2,2,15.4.0,2020-03-28 10:19:29,"Hi Mike, we are looking into adding the shortcut to open the main app again. As for the widget freezing issue, could you contact us at support@todoist.com?",2020-03-30 19:32:24,newest,com.todoist +Shane Mackinnon,https://lh3.googleusercontent.com/a-/AOh14GhicD-cOzQMlg9r-R2v-uQtZ4cPkW3aisR2tgqOkA,"The new widget does not allow me to open the app directly, like it could before. Updates should never remove features. Knocking my review down - rest of the app is still great.",2,3,15.4.0,2020-03-28 05:03:17,"Hi Shane, thank you for the feedback! This is something that we are looking into :)",2020-03-30 19:37:13,newest,com.todoist +Dmitriy Solovyov,https://lh3.googleusercontent.com/a-/AOh14Gj6ZvBiY9lMu-7boaGX8UzaXKEuj6tdcURw4iFa7VA,"The new widget redesign omits one important feature. Before the widget has todoist icon and I could use it to launch the app from the widget right away. It is no more there. So I have to go to the app drawer to lunch the app, every time I need it. Makes widget less useful. Not happy.",2,8,15.4.0,2020-03-27 15:03:15,"Hi Dmitriy, thank you for the feedback! We are looking into this now :)",2020-03-30 19:42:51,newest,com.todoist +Lemonlogix J.C,https://lh3.googleusercontent.com/a-/AOh14Gid0yjx6pDp1YHeJDzRKqwe7BVxPe2PjifW3a82Og,Too complex,2,0,15.3.3,2020-03-22 11:05:23,"Hello, thank you for the feedback! Do you mind if you could tell us more details at support@todoist.com?",2020-03-23 16:36:43,newest,com.todoist +Alireza,https://lh3.googleusercontent.com/-KbFpbUcCmFA/AAAAAAAAAAI/AAAAAAAAL0s/AAKWJJP1scUYBFwkDdhp5I5WvtteFqKxMw/photo.jpg,Why would I pay for this app for reminders? It's just a goddamn simple feature!,2,0,,2020-03-08 15:28:23,,,newest,com.todoist +Paul Thomas,https://lh3.googleusercontent.com/a-/AOh14Gh08IXGgvFLfRseUn3wKXcyylf4Fnv6rHIMjBNYDqE,"Can't drag n reorder lists on widget which is a big issue for me. Google Assistant integration, poor at best, very awkward, it's easily confused, doesnt move tasks, and generally doesn't work for me",2,0,15.2.0,2020-03-06 20:34:56,"Paul, sorry to hear that. Please contact us at support@todoist.com and we'll look into those issues.",2020-03-09 14:35:40,newest,com.todoist +Денис Фейнман,https://lh3.googleusercontent.com/a-/AOh14GjvkFWFaYhGstJmF33o7x5vJjiX3kWvoMJ789jw,"Бесплатная версия не очень, лучше уже использовать Microsoft to do.",2,0,15.0.7,2020-02-16 22:05:05,,,newest,com.todoist +Robert Mowles,https://lh3.googleusercontent.com/-6WEfzVVgagw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNbWHtGhkxRmDp2ZrHOJoAndNXJag/photo.jpg,Subscription required just to set a reminder.,2,2,15.2.0,2020-02-16 15:32:36,,,newest,com.todoist +Adnan Saleem,https://lh3.googleusercontent.com/a-/AOh14GgeWAdPEt_uRLH6LLKVK8x7NaAW7DCTsxEE7Eo2Cyk,"While everything else about this app is good, the process of scheduling a task is frustrating. Half of the time, it fails to recognize what I'm trying to set. You should just bring back the old scheduling layout from a few years ago. That was easy.",2,0,,2020-02-16 09:39:27,,,newest,com.todoist +Fred Cone,https://lh3.googleusercontent.com/a-/AOh14GhN56xsc6RGaTAl7l44Q9F968f_W_PvjF62eG_0RQ,"Cannot use because of the 299 entry limit. My most important list was split into 7 lists. The first list segment is full, so I cannot add a new entry to the top of it. I copied my lists from Wunderlist, and several lists got split like that. If it had copied starting at the bottom of the list so the first segment was the one not full, I might have been able to make it work.",2,2,,2020-02-16 06:31:10,"Sorry to hear that. Please note that you can have 300 projects each with 300 tasks for a total of 90 000 tasks - a limit you'll most likely never reach. Therefore, if you're only reaching the ""tasks per project"" limit, you can split those big projects into sub-projects, as described here: https://get.todoist.help/hc/en-us/articles/115001862065",2020-02-18 11:29:34,newest,com.todoist +Roux Phoenix,https://lh3.googleusercontent.com/a-/AOh14GiM9NihMXWwGh2ECk-GOVVLbd1fgpa92PMkGfyFHVg,"'It's free, forever' but 'reminders are a premium feature.' Hmm. I'm dyspraxic, without much money to waste, and I'm looking for a to-do list app to help with this. Without reminders, this app is functionally useless to me. Disappointed that you've opted to content-carve to this extent, and I'd argue your claim of being free is misleading. Please reconsider which features to gatekeep, because locking basic functions behind a paywall makes me *less* likely to support you financially.",2,2,,2020-02-12 13:26:21,,,newest,com.todoist +Je Gr,https://lh3.googleusercontent.com/-Tyc_xWk1XLA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNumGEWd4LGakNl-THPD8jmtdKMqw/photo.jpg,"Can't use with VPN. I practice Information Security and prefer to use a VPN whenever I can. I use 2 Norton & NordVPN (not of course at the same time). In both usage cases, when my VPN is activated it would say there is no connection. I have even tried different servers. Is there a reason that VPNs are a problem for your service? How is your data management & security? Does your company view people's data? How do you keep others from being to steal others data, because username & passcodes...",2,6,15.1.0,2020-02-01 22:12:02,Our app should work with a VPN. Please contact support@todoist.com and let us know which servers you're selecting (from which countries) and we'll look into it. You can find all details about our privacy and security policies at https://todoist.com/security and https://todoist.com/privacy,2020-02-04 12:06:47,newest,com.todoist +Aden sk8erboy,https://lh3.googleusercontent.com/a-/AOh14GhQ5XK9B4rVTzZhxXBNNQ6SU2fr0izTo-UyHHZJ6w,Why you gotta pay for push notifications or reminders at a certain point.. You guys are just a company trying to get rich.,2,1,15.0.8,2020-01-24 17:34:28,,,newest,com.todoist +Mr. Rogers,https://lh3.googleusercontent.com/a-/AOh14Gh3LyIKHGvtPYSn9lpzUF0hBryQYXtiPF0BIXXrhg,"The interface is very nice and simple, however, once I got down to using it and setting some tasks(five tasks total), about an hour later I went back to the app to make edits, but instead saw the list of tasks that I have set were deleted. If the app has an issue saving the tasks, it needs to be fixed. I will change the rating once that bug is resolved.",2,52,15.0.7,2020-01-15 21:27:52,Thank you for your report. Please contact support@todoist.com and we'll look into this issue.,2020-01-20 12:41:03,newest,com.todoist +Tux Penguin,https://lh3.googleusercontent.com/a-/AOh14GhHlNpGIIv4Q0aFF8QoP8wHQm3mYG0wlYR5vvi9JA,"Reminders are kind of a core feature in a to-do list app. Why should I have to pay for it? The app is fine, but I can't use the reminders.",2,1,15.0.7,2020-01-15 19:11:11,,,newest,com.todoist +Faith Roberts,https://lh3.googleusercontent.com/a-/AOh14Gikl62u33e9bvGQ_QI3Sx6eoJO84fApbfk8kEsv,"I have used this app for a few years and loved but what have they done with the app?! The major update in December has made adding/moving tasks harder thus makes me less productive Edit to answer: can't always change projects with a simple #, the gui is cluttered with too much going on, when I tap on a task I used to tap out but when I do it comes out of edit mode, goes to the top and I have to back out again to get to list view",2,1,15.0.7,2020-01-13 12:14:31,"Faith, could you please contact support@todoist.com reg. the last issue you've mentioned and preferably send us a screenshot showing where this problem happens? It would greatly help us identify this issue.",2020-01-20 12:37:05,newest,com.todoist +Tom Kelly,https://lh3.googleusercontent.com/-GooqZEnIFlk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNwgQI293IE6Ov7piZLyLfIh0mwyA/photo.jpg,There are better options available. I just didn't like the layout and functionality of the app. I tried it for a couple of months but now it's deleted and I am going to try another.,2,0,,2020-01-11 11:01:54,,,newest,com.todoist +küptiš,https://lh3.googleusercontent.com/a-/AOh14GgG92I_7i3_bGWLk9OS5mqiyZuaqYPW9odI6xFx,Reminder requires payment,2,0,15.0.6,2020-01-06 20:51:49,,,newest,com.todoist +Jack Parra,https://lh3.googleusercontent.com/a-/AOh14Gid3SQqPJpreVIIGZiNI4Qnl5NBwoAPAaMZxYsM,"Functions fine in general, easy drag to subtasks. Can't adjust the Notifications to not go through ""Do not disturb"" mode (bad if you work off shifts), can't set timing of notifications. In a productivity app, scheduling is important. Reminders require premium, seriously? I'll just install one of the tons of free apps that include it for free rather than pay $3 month. Overall: Average functioning app that requires paid premium for some basic functions.",2,1,15.0.5,2020-01-05 14:53:36,,,newest,com.todoist +Leroy Kid,https://lh3.googleusercontent.com/a-/AOh14GgO1nc4qd5adBlHgl0YTI0rIz83-xmkbJxE5XExDw,expensive,2,0,15.0.5,2019-12-20 14:19:48,,,newest,com.todoist +Yuswei S,https://lh3.googleusercontent.com/-YLUIREtl99w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNyd4WUKwOy-BfYl6TvPKhgv-WP7Q/photo.jpg,I was shocked to discover that notifications is a paid feature. I uninstalled. Would have been great otherwise.,2,0,,2019-12-17 16:41:50,,,newest,com.todoist +I hate registrating,https://lh3.googleusercontent.com/-NasHUsPcPiU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMFhcf6EWydUvQD3Vn1-kgX-2WKFg/photo.jpg,The main feature does not work - it doesn't remind me about todo with system notification,2,0,15.0.4,2019-12-10 15:47:35,"Hi there, we're very sorry to hear that. Could you please try the steps in this article? https://bit.ly/38PXmp3 In case that doesn't help, please send us an email at support@todoist.com and we'll be happy to help.",2019-12-18 14:53:06,newest,com.todoist +Francis Picard,https://lh3.googleusercontent.com/a-/AOh14GjtX8BnCRRqyQ1nKbKkfgPA-JqLzCZoWTn2OiZ0TA,The changes made to how completed task are handled are not only bad UX but they introduced many quite critical bugs! Please fix.,2,2,15.0.4,2019-12-07 15:32:46,"Hi Francis, we're sorry to hear that! We would love to get some information about the bugs that you mentioned so we can fix them. Could you please report them to us at support@todoist.com? 🙏",2019-12-11 08:42:43,newest,com.todoist +Ryan Renshaw,https://lh3.googleusercontent.com/-0ZpOWso9WEw/AAAAAAAAAAI/AAAAAAAAcP8/AAKWJJMhzX90GLaRymQZ7zEPv-N6uh5GdA/photo.jpg,The widget has been broken for the last couple of weeks since an update. Please fix it.,2,0,15.0.4,2019-12-04 02:02:21,"Sorry to hear that, Ryan! Could you please contact us at support@todoist.com so that we can take a look at what could be causing this?",2019-12-11 08:33:31,newest,com.todoist +Sid M,https://lh3.googleusercontent.com/-PcU04xWwkLE/AAAAAAAAAAI/AAAAAAAAAPE/AAKWJJMgJQbAueZZnE1Fz-Y90QXFp2Yo8w/photo.jpg,"New update is incredibly finicky and makes it difficult to add existing items to projects, change dates, etc. Appending a task with #project_name no longer adds it to the project, it just takes it as a string literal.",2,0,15.0.4,2019-12-04 02:00:11,,,newest,com.todoist +Deborah Higgins,https://lh3.googleusercontent.com/a-/AOh14GjXZOr6l-I5PufdDiXFOb5b-CsxCd9SGLKoVUOOdoY,"I was keeping track of Christmas gifts by checking then off once they were purchased and looking back by selecting, ""show completed tasks"". Until today when I went to check and they are all deleted. Kind of a bummer. It was convenient that the purchased gifts were hidden and nobody could snoop on my phone unless they knew to select that option. But now I have to go through my hidden gift stash. Which if you are a parent... you know how immpossible that can be with kids around all the time.",2,4,15.0.4,2019-12-03 15:46:19,Hi Deborah! Data deletion is something that we very actively guard against. Could you please contact us at support@todoist.com with your Todoist email address so we can look into this? 🔍,2019-12-11 08:20:01,newest,com.todoist +Rick Restivo,https://lh3.googleusercontent.com/-jNlDvSbAENQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOJMRfaoVKXsDmVRNLylL51Xld4og/photo.jpg,Not very user friendly.,2,0,15.0.4,2019-11-30 21:11:40,,,newest,com.todoist +Varg Cyborg,https://lh3.googleusercontent.com/a-/AOh14GjILE_TUw4OelQYRLnTsOBkYxCgHcEbN1EVIBRgXA,"Looks great, but not useful in free plan. And it's very expensive.",2,0,10.1.2,2019-11-18 19:08:55,,,newest,com.todoist +Vivekanand Mogali,https://lh3.googleusercontent.com/a-/AOh14GjVU8FJy53KUZIbE2WQJFH5gQ7kiNbMtYmB3CO5aA,Yeah keep everything for premium and then say its free,2,0,15.0.3,2019-11-17 09:01:39,,,newest,com.todoist +Gabrielius Davlijevas,https://lh3.googleusercontent.com/-xWxcaH1E9Fw/AAAAAAAAAAI/AAAAAAAAV5g/AAKWJJM6f6avf3Kl_CcCZMWe44w62yNlsQ/photo.jpg,I wish there would be a widget on lockscreen,2,0,15.0.2,2019-11-07 18:41:19,,,newest,com.todoist +Camila F. Miner,https://lh3.googleusercontent.com/a-/AOh14Gg3ZyDOjIz-NSziK9sEOiVkwq2DdFAEiMGX3SnDpg,It seems like a good app with good features but it's not intuitive at all. I spent fifteen minutes trying to find a way to skip a repeating task this week and I could mark it done. I try deleting to see if it would delete just that occurrences but it deleted the whole thing. The icons are also not intuitive at all.,2,4,15.0.2,2019-11-05 12:17:25,"Camila, sorry to hear that. To skip a recurring task, you can use the ""Postpone"" option in the scheduler - this will move it to the next occurrence without marking the previous one as done or deleting the whole task.",2019-11-12 12:42:35,newest,com.todoist +Adam Bell,https://lh3.googleusercontent.com/a-/AOh14Gh_RGS8IsdPCeQmJddmyxuoFyeYbkCCfGGRrZQ40g,"The latest update is poorly designed for users with lots of tasks, completely changes the old interface, with attending bugs, out of the blue. Biggest fan to dead in the water overnight. Shocker.",2,1,15.0.2,2019-11-05 03:55:23,,,newest,com.todoist +Erwin Mayer,https://lh3.googleusercontent.com/a-/AOh14GjuO8v2po8suQRWA5DRpeH_0F4QO1NBD7KHILJSMg,"Since last major update, rescheduling a task takes you to the day where it is scheduled, preventing you from quickly rescheduling all tasks on a given day. Productivity killer.",2,2,15.0.2,2019-11-03 11:17:53,"Erwin, sorry for the inconvenience, we'll look into this.",2019-11-04 12:58:09,newest,com.todoist +Lance K,https://lh3.googleusercontent.com/a-/AOh14GiVBrWW9OT3nnbt8JZ87LUwJkydQgoJGy5Dh0QKrw,"Revised review: Sometimes we seek out apps to help with deficiencies or make life work out. App was so great and so functional for months, until a few days ago. I was working around the changed, now cumbersome, reschedule/edit/rename tasks process. But Labels beyond a few characters are hidden now. Todoist Labels was The Thing for this app for me, with efficiently visually seeing/grouping tasks. Had made app ahead of many others. App needs more display settings then...to be usable again.",2,3,15.0.2,2019-11-02 14:56:40,"Lance, thank you for your feedback, we'll look into addressing those issues in future updates.",2019-11-04 12:59:37,newest,com.todoist +Alexander Lamaison,https://lh3.googleusercontent.com/a-/AOh14Gh9xw0c9uakLDBBT8lRfAFtdc4XuMywdK3qG2oG3A,The new update is awful. I have to do so many extra clicks to perform basic operations like moving tasks to different days. Multi-select doesn't work any more and the widget is totally broken. Rescheduling anything from the widget locks it up completely.,2,3,15.0.2,2019-11-02 13:30:28,"Alexander, sorry to hear that, we'll bring back text parting in the edit field in future updates. Multi-selecting can be done in two ways now - through the top menu where you can enter multi-select mode or by configuring the ""swipe to left"" gesture in the settings to ""multi-select"".",2019-11-04 13:00:45,newest,com.todoist +M. Sadegh Feiz,https://lh3.googleusercontent.com/a-/AOh14Ggw_nEv22XHatcB65qOhYl1p_nAHx9H3wGkoYR3ow,گزینه آندو ش میپره,2,0,14.4.7,2019-11-01 15:29:34,,,newest,com.todoist +blue anonymous,https://lh3.googleusercontent.com/--IrPpgblXi8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOleMb-kZcU_3Cpk4u0ahap-ek6ng/photo.jpg,"Every update have been a step backwards. All the small changes only made everything less convenient and looks like will only continue to do so. The last straw for me is now you can't add things quickly (to default ""inbox"" project) anymore, now you have to spend several more clicks to designate a project, even though I just want to add quickly to the default inbox. Making the quick add widget useless now. Also premium pricing has always been terrible and greedy (monthly cost instead of one time).",2,23,15.0.1,2019-10-30 12:07:17,Sorry to hear that :( We're planning to improve the app in future updates.,2019-11-04 12:53:28,newest,com.todoist +Ties Koot,https://lh3.googleusercontent.com/a-/AOh14GgROD2nVzZOAN-t27Ys31i3rOj_Vh8nwuSbe8ezYco,"Completed subtasks are now forced below uncompleted ones and hidden by default. I thought that was a bug regression, but apparently it's by design. Subscription cancelled (for now?).",2,2,15.0.1,2019-10-29 18:59:42,"Hello, this is actually the new sub-tasks behavior with the Foundations release, sub-tasks will now be removed from the view instead of staying there like before. Apologies for any inconvenience caused to your workflow. As for the bug regressions and removed functionality, could you please tell us more at support@todoist.com? Thank you!",2019-10-29 14:00:51,newest,com.todoist +Samuel Tremblay,https://lh3.googleusercontent.com/a-/AOh14Gj_oRgvRzu9arDgALVldAdQbnCMPyX6y8JlSWy2,"Update on Oct 29: The new update with sections and the new UX design is a real drop of usability in my case. My day to day work force me to constantly change priority, project and other properties and with the new version, the natural language as been removed when editing a task. I will strongly consider not renewing my subscription because todoist was my workhorse because of that natural language. Original review : It's my day to day to do application to drive all my tasks.",2,0,15.0.1,2019-10-29 11:09:20,"Samuel, sorry to hear that, we'll look into improving this in future updates.",2019-11-04 12:43:49,newest,com.todoist +Gustaf HauRuck,https://lh3.googleusercontent.com/a-/AOh14GhtGvhJmubO4W0cMhrH2gd-J9iM8Xi5ju34czdleg,"The premium version might be good but the free version is more restricted then other to-do apps, you can not even use the labels/ tags function without paying. If you are looking for a free todo list this is probably not the app for you.",2,3,15.0.1,2019-10-28 00:39:41,,,newest,com.todoist +Maxim Kushner,https://lh3.googleusercontent.com/a-/AOh14GjIvAZ0BI2f6C7o5aKxMYyzCDWvPNQ9uFPwreTwRw,"Guys you created a great app that I'd been using for years, but the latest update is weird. Modal views when selecting a single task (WHY do I need it instead of previous submenu for rescheduling??), no ability to choose multiple tasks (only by top menu - select tasks), strange icons.. That all makes me really sad. Rolled out to the previous friendly Todoist :(",2,6,14.4.7,2019-10-27 21:54:15,"Maxim, sorry to hear that, we'll consider improving the task detail view in the future. As for multi-selecting, you can do it by swiping the task to the left.",2019-10-29 14:34:30,newest,com.todoist +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,(Sep 2013) took almost 1 year for decent reminders. Is still annoying to click twice to view the notes. Not very productive! (Oct 2019) with new interface the notes disappeared. The interface is just a copy of Wunderlist or TickTick. What is the point of paying a subscription when the competition offers the same functionality (reminders and notes) for nothing?,2,5,15.0.1,2019-10-25 20:50:48,"Sorry to hear that, we'll look into improving the interface in future updates.",2019-10-29 14:20:46,newest,com.todoist +Brayden Houston,https://lh3.googleusercontent.com/a-/AOh14GhcbSAeL8wn8UwHFgWRAEH_J7mIFznGTUCAIGjQIag,Not a fan of the new Foundations update. You promised so many new features and didn't deliver any of them. The update to Subtasks didn't fix some of the core issues with them.,2,6,3.0.1,2019-10-25 15:48:07,"Brayden, sorry to hear that. We've shipped all the features we've planned an announced and will continue to add new ones based on those new foundations.",2019-10-29 14:20:10,newest,com.todoist +Heavenly Juice,https://lh3.googleusercontent.com/a-/AOh14Gh3Xt6w5xqxbpvgiUNiBTTO69wcgoUaKLuaM7qkXg,To many features locked behind premium,2,0,14.4.7,2019-10-25 15:09:34,,,newest,com.todoist +Clay A,https://lh3.googleusercontent.com/a-/AOh14Gg3IEE5gCCOa82Zrk6Mw_grJYIuqgOH6KIZn298YA,New layout and functionality is no bueno. Don't like the interface for rescheduling tasks. Please fix!!!,2,4,15.0.0,2019-10-24 17:57:22,"Clay, sorry to hear that. Please let us know why or what exactly do you not like about it so we can understand the issue and fix it in future updates.",2019-10-29 14:33:33,newest,com.todoist +Anirudh Ramanathan,https://lh3.googleusercontent.com/a-/AOh14Gh9gO5GXgYtveae6V9Xzi3HUEuOdxOcafNkYTnRQPE,"I dislike the new update. Now when I have to update the time and date of a task, editing and adding text doesn't work anymore. I need to actually select things from the menu to change those things, or even add a label. The older interface was so much better that let me deal with everything by typing it out.",2,4,15.0.0,2019-10-24 16:48:36,"Hi Anirudh, you'll be pleased to know that we will soon reintroduce shortcuts when editing tasks (#projects, @labels, etc.) Thanks for your feedback!",2019-10-29 14:05:02,newest,com.todoist +mahamoud mohammed,https://lh3.googleusercontent.com/a-/AOh14GhDv6anFIn0KuwgpUNQvG8IPok6Jy7aDO-iGsT3MA,Gud,2,0,15.0.0,2019-10-23 12:22:46,,,newest,com.todoist +Christine Muller,https://lh3.googleusercontent.com/-mDFmTrRo6Pk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP-4WWOcaExcH1tOh_5iZUMcWiYuA/photo.jpg,"I used Todoist Premium for about 6 years but I must say that it has gone down over the years. There are so many features missing compared to other similar apps which are either free or charge much less for their premium version. The new ""major update"" feels like a complete let down with absolutely no new features other than now being able to see subtasks in the parent task dialog box. Still no Kanban view, no native calendar view, limited to no sorting options, just to name a few. I'm sorry, but dabbing a bit of color on icons or adding a color name next to a color do not qualify as new features. I left Todoist for TickTick a couple of months ago and have not looked back.",2,2,12.9,2019-10-22 18:44:16,"Very sorry to hear that, Christine. We are definitely working on s Kanban view and better sorting options. As for a native calendar view, we are actually re-imagining the Next 7 days view and a calendar view is in the cards :) Please feel free to share any feedback or comments with us at support@todoist.com Thank you!",2019-10-29 14:03:28,newest,com.todoist +Cole Lite,https://lh3.googleusercontent.com/-bFaOfe3uJKI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNnB4_yhNby-okAbLYQLfkQ7WVi1g/photo.jpg,Would even pay & advertise but I am not able to see in one view WHEN future stuff is taking place...,2,0,14.4.7,2019-10-10 10:45:25,"You can use the search bar to search for ""view all"" to see all your tasks on one list. You can also search for ""p1, p2, p3, p4"" or ""overdue, 50000 days, no date"" to see all your tasks with different sorting (by priority or by date). You can create filters with those queries so you won't have to type them into the search bar every time.",2019-10-14 11:17:40,newest,com.todoist +rehtafrey,https://lh3.googleusercontent.com/a-/AOh14GiFD5dJPoW9mHR3jR16A78RWQ6sxcUnS2A52Xkp0g,why doesnt the widget remember to sort by date? i have to keep going into the app to select sort by date.. can this be fixed???,2,1,14.4.7,2019-10-04 05:52:08,,,newest,com.todoist +Carolina Bury,https://lh3.googleusercontent.com/a-/AOh14Gjh2awbGW_OKBRj-EwTwBqhsSAdOjVxm1hkJJlgUw,Versão Free não faz quase nada. Quase enganação falar que o app é gratuito,2,0,14.4.7,2019-09-30 13:18:33,,,newest,com.todoist +BHX,https://lh3.googleusercontent.com/-a7nNZo3gsQ0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNQL1q7Mk8liu1CdwmBIPvi36aLhQ/photo.jpg,"I tested a few task apps, and this one looked promising at first. But very quickly I hit the paywall, even for basic and essential features such as reminders and labels. I'm going to use Trello instead.",2,0,,2019-09-29 11:39:29,,,newest,com.todoist +Raspiy,https://lh3.googleusercontent.com/a-/AOh14Ghrhs_MxRtOfiaWTPuop5uGLr7wjvNcXCYoQvmOhw,You can't have your to do list as notifications,2,0,14.4.5,2019-09-21 15:53:02,Thank you for your feedback. Please consider using our widget which could give you quick access to your tasks :),2019-09-25 15:28:49,newest,com.todoist +Ikiam Paladines,https://lh3.googleusercontent.com/a-/AOh14GjiXkoK4JQ9TeSnD0Xqo8y4EkEoeCjEKpBhmITRgg,"I hate when the things are no clear, basic features as reminders are in the premium membership",2,2,14.4.1,2019-09-16 12:07:21,,,newest,com.todoist +Uzume Kami,https://lh3.googleusercontent.com/-7zGidjqO3c0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP7cJzROyIsl2ACV5EfP3a90_0QOw/photo.jpg,"Kept getting ""an unknown error has occurred, please try again later"" .... Tried on several devices on my T3 connection, had no problem with other apps immediately after leaving this one. Uninstalled. Sad cuz it looked great. In re: dev's reply, yes I did that. I made sure it was plugged in and turned on too. I did take a look at the .apk and I've found an alternative for me for right now. Thanks.",2,0,,2019-09-15 05:46:10,"Sorry to hear that. Could you please try to delete and reinstall the app, and see if this helps? If not, please contact support@todoist.com and we'll look into it.",2019-09-02 13:51:20,newest,com.todoist +endashaw demsis,https://lh3.googleusercontent.com/-U6SQ93nff8E/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPY7p9lKkb3UlrxTwYJzCu-94Aoyw/photo.jpg,It just feel old...,2,0,14.4.1,2019-09-14 09:00:28,,,newest,com.todoist +Guillermo Alessandri,https://lh3.googleusercontent.com/a-/AOh14GhwgN1O_v15v8M47Ogf1ILbhkSS9ZXAwJpLW8ie5L4,"Great app that suffers from the most annoying design flaw. Every time I create a task, it goes to the bottom of the list. I always want the task at the top so I can see it. That's the whole point of using a to do list. So I have to drag the task, one by one to the top. Makes me crazy.",2,1,14.4.1,2019-09-13 07:53:24,"Guillermo, sorry to hear that. The task goes to the bottom just like on a real to-do list where you'd add new to-dos to the bottom of the list, but we'll consider changing this in future updates :)",2019-09-17 09:48:16,newest,com.todoist +Barry Hill,https://lh3.googleusercontent.com/-NvDXp-tgMxw/AAAAAAAAAAI/AAAAAAAAVHA/AAKWJJNAjuVmLX8XKWf8_1l9C54Ru-yzNQ/photo.jpg,Almost every feature requires a premium account for 36€ per year... It's not even possible to test these features without subscribing to an annual plan,2,5,14.4.1,2019-09-07 11:02:16,,,newest,com.todoist +Meli. O.,https://lh3.googleusercontent.com/a-/AOh14GizXx9THWjiRtDTjK3xH3pdce8zQUK3kQmx3MOgbOs,You have to upgrade to get notifications...,2,0,14.4.1,2019-09-04 03:38:35,,,newest,com.todoist +Love Instead,https://lh3.googleusercontent.com/--gnLwjpB_Kg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPGJI3vyZfqpoMZclmSKcLMGa4Gsg/photo.jpg,"Seems like a good tool, but almost nothing that I actually need to do with it is possible without a subscription. I'd happily puchase the app, or do a free trial period, but honestly, it annoys me when companies offer a free download only to put everything useful behind a paywall, especially when they try to give a discount for a year's sub before you even really get to try the features. Nope.",2,319,14.4.1,2019-08-29 04:47:30,,,newest,com.todoist +Lord Meatball,https://lh3.googleusercontent.com/-CxMnA4Pr6EA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPPZBjJ8rL7NAfh3HG7ltJAa0T1Hw/photo.jpg,"Its good for making lists, but if you want reminders or other features you need to upgrade to premium, its just not for me",2,0,,2019-08-28 07:26:16,,,newest,com.todoist +Harsh Saglani,https://lh3.googleusercontent.com/a-/AOh14GiAakxCF4r83fAWE2Y53Ro6inXfnOmzqZBr0SXmMw,"Great app. Alas, I'm constantly reminded that ""Hey btw there's a paid version which has the functionality you're looking for : ) "". This is tiresome and the subscription based model just doesn't make any sense. Plus hey! Its expensive.",2,4,14.4.1,2019-08-24 03:00:24,,,newest,com.todoist +Savvas Navrozidis,https://lh3.googleusercontent.com/--OvmC1H4zF4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOm4p4L9U6jkNR8BnnH43kMU4f65w/photo.jpg,"I tried the free version. I liked the way, that you are writing the day to remind you and it set itself, but the free version doesn't support calendar and for me this is a big minus. I prefer to use Google task app, that signs up with calendar and reminds you for the task.",2,0,14.3.1,2019-08-03 10:40:21,,,newest,com.todoist +Dylan Ferrari,https://lh3.googleusercontent.com/-P7bV5x64mWA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP0Er3agIRawQq6VfDWipINjkO76A/photo.jpg,Tedious and annoying to use. Went back to using Google Keep.,2,2,14.3.1,2019-08-02 17:57:31,,,newest,com.todoist +AbdElrhman Mohey,https://lh3.googleusercontent.com/a-/AOh14GiX00-tNmlY3mFVQaT_Wx9PmR1j5KK-QBuWFJEu,cant make into my calendar,2,0,14.3.1,2019-08-01 13:57:16,,,newest,com.todoist +Richard Carignan,https://lh3.googleusercontent.com/a-/AOh14GjcowUNfptovLM7CVrj8gGfLQk1URsvxbbtqtcoUQ,No longer able to add note to Todoist quickly using Google and Note-to-self. Yes you can do it but it takes 60 seconds instead of 10 seconds. Not sure if this is a Google change or a Todoist change but it removes one of the most useful parts on Todoist. I am a LONG TIME premium user looking for another tool.,2,1,14.3.1,2019-08-01 09:58:29,"Richard, on our end it still works very fast, within a few seconds at most. Please contact support@todoist.com with more details (such as - does the delay happen every time, both when using a mobile network and WiFi, does it happen in other apps that support the ""Let me talk to..."" command) and we'll look into it.",2019-08-06 11:03:13,newest,com.todoist +J P Sank,https://lh3.googleusercontent.com/-ONJGxGMIpuM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN-jrylgum9kparSkDNxnRKHxXJuQ/photo.jpg,"I used to like this app. Been using it for a few years with tolerably okay results. But it's been having too many problems with sync, and with failing to load ""Karma"" data. Not only that, but if you miss checking a box but don't see that omission until the next day, there's nothing you can do about it. Maybe the fatal flaw of this app is that it has too many features for its own good. I'd like to get rid of sync entirely and just use the app on my Android, but apparently that can't be done, and if I delete my online account I delete everything. I think I just want to dump this flawed app and see if I can find a good app that does everything offline in one device with no registration required.",2,0,14.1.0,2019-07-30 02:33:56,,,newest,com.todoist +daryn thompson,https://lh3.googleusercontent.com/--TxZd1HfebM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMtVtIzeTks82kxzTYH378o2dZ4NQ/photo.jpg,"fantastic app a critical flaw... one touch completion, now when you brush the screen your tasks get set to complete and you can't find them easily.. (updated July 25) the developer asked me to respond to comment... thanks for responding. don't fuss on my part .",2,1,14.3.1,2019-07-25 16:19:02,"Daryn, thanks for clarifying, we're already planning to add the undo option to the widget in near future :)",2019-07-08 14:59:16,newest,com.todoist +Kriss Kulins,https://lh3.googleusercontent.com/a-/AOh14GiQZeZXWKMogz2H7Vc7zx9nHu4imcwLfWTgQ4BbiQ,why does my theme switch from dark to light every time i open the app?,2,0,14.3.1,2019-07-23 19:35:46,"Kriss, please check if ""Sync theme"" is enabled in the settings and any other app/platform is using one of the light themes. If this won't help, please contact support@todoist.com and we'll look into it.",2019-07-29 11:52:14,newest,com.todoist +John Brosz,https://lh3.googleusercontent.com/a-/AOh14Gi18GFEuZ7hOiJMZPGe42WulzTE-GTAEOWKzLrlTQM,use Google tasks instead,2,0,,2019-07-22 17:26:22,,,newest,com.todoist +Daniel Watson,https://lh3.googleusercontent.com/a-/AOh14GhfkKWbLiK51wnbhDQTXKcANbXO_DyFbTYrZs-pRQg,"Some pretty basic standard features in other apps are missing. The options menu is very limited with no option to default a tasks due date, project, category etc. These have to be entered every single time a task is created which makes adding quick tasks on the fly very annoyingly slower than other apps. There is no sorting options or filters on views (ability to create custom views does not exempt this feature from being useful). Too many clicks to edit tasks, eg notes/comments, rescheduling.",2,15,14.3.1,2019-07-12 05:47:09,"Daniel, thanks a lot for your feedback, we'll consider adding such options and improvements in the future.",2019-07-15 15:54:55,newest,com.todoist +A O,https://lh3.googleusercontent.com/-8-OJbgsj3NI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN4Nyw2pYlxnczMSdxt0-w5mA8qrw/photo.jpg,"I am not receiving my notifications on any of my tasks/projects I have scheduled, so I end up missing out on things I want to take care of. I have it turned on in Settings. Why is that?... I utilize the Smart Schedule tool, but still no notification. Pls help or fix.",2,1,14.3.1,2019-07-04 06:51:10,"Please check if any battery-saving app or low-power mode isn't active and preventing our app from generating notifications and also try to reinstall the app. If nether helps, please contact support@todoist.com and we'll look into this.",2019-07-08 15:06:07,newest,com.todoist +Yawhann Chong,https://lh3.googleusercontent.com/a-/AOh14GgSrn79xVMFHrJWURC4JHxdP0kve1id5QaGg7Mo,"Awful UX/UI - I don't like how you have to use a rigid syntax to set recurrence for tasks. I like old fashioned controls, but Todoist is just trying to be different for no reason. Was on Premium for several months and gave it a fair shot - needless to say, I cancelled my subscription and switched to TickTick instead. I don't normally downvote apps, but this just didn't do it for me, and I spent money on it. I should have ignored the hype, so the fault is mine.",2,0,14.3.1,2019-07-02 22:37:38,Sorry to hear that. Every date format we support is documented at https://support.todoist.com/hc/en-us/articles/205325931 please let us know what dates exactly did you try to enter that didn't work and we'll definitely look into this.,2018-05-10 12:34:29,newest,com.todoist +Gareth,https://lh3.googleusercontent.com/a-/AOh14GjjGUiNycVdz-Uw988HXyZJrKybtI85Jo4ULKfhjQ,"Mostly good but simply things like creating subtasks are incredibly fiddly, why can you do it from only projects? Why can you only do it by long pressing and dragging slightly to the right (to much marks is completed) allow a simple option on the menu. Deleting tasks is several options in etc. Doing almost anything other than straight adding tasks is cumbersome as hell and just frustrating. Needs some real UX love.",2,2,14.3.1,2019-07-01 21:45:22,"Gareth, thank you for your feedback, we're already working on improvements for the UI and UX so we hope you'll like the app more once the changes roll out :)",2019-07-08 14:58:31,newest,com.todoist +Greg Hill,https://lh3.googleusercontent.com/a-/AOh14GhNby9KeBLr0iezRibrXxSPDC9I3AoT9MYpLaKTMw,"technically a paid app(pay for reminders), UI not as attractive as related apps.",2,2,14.3.1,2019-06-30 19:12:23,,,newest,com.todoist +Kevin Harrop,https://lh3.googleusercontent.com/-ElxtYVBRZnw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN5cz0VwqFmIwXZUl74YlBAdjePNA/photo.jpg,"Beautiful interface and design. Unfortunately most features are locked behind a subscription, including some important features such as viewing completed daily tasks. As is, other top rated To Do apps offer more features for absolutely no cost. Would consider paying a one time fee for it but the subscription is a deal breaker.",2,12,14.3.1,2019-06-25 05:36:09,,,newest,com.todoist +Rowan Paul,https://lh3.googleusercontent.com/a-/AOh14GjtW-Zq4mVx-t-n-MeWScx0ucMWzdf53zSpP3pWK6A,Too many premium features,2,0,,2019-06-23 20:41:16,,,newest,com.todoist +Anna Malki,https://lh3.googleusercontent.com/a-/AOh14GjbAT313J_a16mHOP7oOhYP7i6Cj_BpMjYW_DEX,Notifications don't sync without opening the app.,2,1,14.3.0,2019-06-14 09:07:31,"Anna, please try to reinstall the app, make sure that your device isn't using any power saving mode and if this won't help, contact support@todoist.com.",2019-06-18 11:35:56,newest,com.todoist +Josh Deakin,https://lh3.googleusercontent.com/a-/AOh14Gi77O6zvybPyQDopmHHDSwNYklLXj4j_b8B_7w3KQ,"it's clear to me that this is the best todo app, and I've used it for a long time, but having reminders be a premium feature is just unreasonable as it's impossible to use a todo app without them. I'll be switching to TickTick.",2,0,14.2.3,2019-06-01 09:30:12,,,newest,com.todoist +Earl Harris Jr,https://lh3.googleusercontent.com/-qihbX_hiXkM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN-AI0kAqwfHacfD8z-8QDmTkxdEQ/photo.jpg,should tell the cost first,2,0,,2019-05-27 16:25:30,,,newest,com.todoist +scopio african,https://lh3.googleusercontent.com/-cc2nm2w_0kc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPK7TgQ0QBymfOfmMM_AWaoHju78Q/photo.jpg,The splash screen says the account is free forever. But to have reminder of events / tasks a fairly fundemental aspect to a task reminder app its £3 per month. That's quite misleading. #response to the developer. Thank you for responding. The main point is that a reminder function is a key aspect of a to do list rather than a premium feature.... best wishes with the app.,2,10,14.2.2,2019-05-27 11:30:09,"Scopio, the app is indeed free forever, you'll never have to pay to use it. Only the additional Premium service is paid and we never claim that it's free as well.",2019-05-27 11:15:13,newest,com.todoist +Andy Byrd,https://lh3.googleusercontent.com/a-/AOh14Gh5IOvfGTyQmFwmbnEacZlS4vT3qFyfPJqAEXEo9Dg,Lost half its use once they got rid of seeing children categories in the widget. I use ToDoist for homework assignments and I used the parent functions for assignments to categorize what class the assignment is for. Without being able to see all my parent/sub folders from the widget it kills most of the use of the app. I went back to an old APK but then I started getting prompts that the app would stop working if I didn't update. I still use it as a grocery list with IFTTT until Keep is fixed.,2,3,14.2.1,2019-05-22 13:41:48,,,newest,com.todoist +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"The update got rid of a major tool for me. You can no longer press and hold the task to bring up the option to delete it. Not even sure how you delete on mobile now, which is very inconvenient!",2,0,14.2.1,2019-05-21 16:33:36,"To delete a task, you can tap on it, then tap on the 3 dot icon in the top-right corner and here you'll find the ""Delete"" option.",2019-05-27 11:11:23,newest,com.todoist +Kevin Dillman,https://lh3.googleusercontent.com/a-/AOh14GhkRpvcq24JNQgZhV06FJ44khH4S5jlVetWU5sfdQ,Doesn't even come close to Wunderlist or Any.do unless you pay.,2,0,,2019-05-19 01:41:18,,,newest,com.todoist +Anaclet Moulangou,https://lh3.googleusercontent.com/a-/AOh14Gj2wJuyk0LUEjy0EYxS2mcWp6NE54JCeFhwn3k2,need to learn more,2,0,14.2.1,2019-05-17 07:33:17,,,newest,com.todoist +Yeho,https://lh3.googleusercontent.com/a-/AOh14GiD5qxqRWJFORLGbd6MDxALw477lVbuaYdwV0MsqyQ,"I like the app. It works, it's functional, and it's great. However, one thing still strikes me down. Why the hell are reminders a paid feature? Seriously, what's a To-Do app without reminders? I could use even my calendar, or almost any other app, and that would too have reminders, for free. So why should I pay for such a basic feature on a fully fledged app?",2,0,,2019-05-13 09:58:00,,,newest,com.todoist +Dana Casey,https://lh3.googleusercontent.com/a-/AOh14Gg8A5GoBhv5rduIREVLJxsmdL_W3WIjE3R3fSVLvw,"I have read quite a bit about updates being frustrating. Before applying the update, I had hoped to find documentation about changes. Found nothing on the todoist website, no comments in reviews. Update is attempting to be pushed, where's the documentation????",2,0,13.4.9,2019-05-09 17:29:06,,,newest,com.todoist +Alex Miller,https://lh3.googleusercontent.com/a-/AOh14GjxZgFYLbFRO78HfSxgHS6QA_g_7qSow9B9dUyEcA,"Fundamental problem in their development cycle...force users to update, but the value to the consumer doesn't have a feedback mechanism prior to forcing the update. Is there not a beta program with participating users? Todoist, that's what you need to fix. For everyone else,my widgets have lost their usefulness and are now just place holders until I can remove the complete buttons, shrink text, have fully customizable widgets, or settle on another app. but really, focus on the root problem.",2,5,14.1.0,2019-05-09 01:23:22,"Hello, sorry to hear that. We have beta which you can join in the Play Store’s page of Todoist (at the bottom).",2019-05-13 16:39:01,newest,com.todoist +Mohamed Mansour,https://lh3.googleusercontent.com/a-/AOh14GhSmyL1gz_IY7OnvUff_Yu6FLBqaskbPFJRftei8w,"Lots of emails notifications that you can not stop! Most of the features you need - including seeing a completed task - are all in the pro version (needs payment!) Edit after ""Doist"" reply: I mean the email notifications for the due jobs on the lists. They keep filling my email every day and I could not stop them!",2,0,14.1.0,2019-04-30 05:47:54,"Mohamed, you can go to the Settings - Reminders menu and disable automatic default reminders for tasks with time. Once you do that, you can also remove all existing reminders in each task and you won't get those notifications anymore.",2019-05-06 11:29:06,newest,com.todoist +The Worthy Witch,https://lh3.googleusercontent.com/a-/AOh14Gj3JnnrZX43QuhS62AS-iPaorddQNgGPT36cJye,"New lay out is awful and takes extra steps to do everything that was once easy. App no longer syncs to my computer app, which has syncing problems of own. Since the last update it's slow on either set up and honestly no longer as good which is upsetting as I paid for the full year right before the update that screwed it all up. I really hope you guys are working to fix the lag, the lay out and the syncing problem. This last update was a terrible idea",2,1,14.1.0,2019-04-27 22:38:39,"Hello, could you please contact us at support@todoist.com with more details about the syncing issue you are experiencing?",2019-04-29 16:34:29,newest,com.todoist +Emily Slinger,https://lh3.googleusercontent.com/a-/AOh14GjcOuQzb4_JuPuTroO9PpbmXx8QwE365B_1NdcmjX4,"This app is ok. The thing that makes it stand out for me is that I've been able to set it up to work with Google Home as my grocery and to do list. However, since the update I now can't click into the full app from the widget, which is necessary as I'm unable to rearrange my tasks from the widget and I can't seem to find a way so that the app automatically sorts my tasks by 'priority'. I can only see how to do it afterwards.",3,11,15.4.0,2020-04-01 07:23:17,,,most_relevant,com.todoist +CJ Chatham,https://lh3.googleusercontent.com/a-/AOh14GhAg4p6C_D5mIhJW9vKuEpBr7Tmit305Xugn4YceQ,"Great app, BUT the update has ruined the functionality of the widget. I can no longer figure out how to select multiple tasks, and it is no longer possible to go straight to the app from the widget. These are to important features for quickly making more complex changes to your schedule. The widget could be improved, otherwise the app is great.",3,20,15.4.0,2020-03-31 07:20:25,,,most_relevant,com.todoist +Tereza Fuxová,https://lh3.googleusercontent.com/a-/AOh14GgYuw7I2SOCUZnITU6c2VCLxv2GiNUARkEO8nsLtQ,"I use Todoist every day and it is awesome service in general but the latest update to the widget made it absolutely unusable for me. It has too slim lines even without compact mode (compact is ridiculous, even though I have small fingers), the quick button to open the main app is gone and the WORST - it is now not possible to select more tasks and do anything quick with them. Bye bye fast rescheduling... I am greatly upset, it is my main tool for staying on track.",3,4,15.4.0,2020-03-31 22:22:08,,,most_relevant,com.todoist +Anna Sedlacek,https://lh3.googleusercontent.com/a-/AOh14Gh_p00IxQ0ynaj-f1vakwpQEGEHlXM0WdIZ5FKGAw,"Generally pretty good, but a lot of awkward design choices: no compact mode, inefficient use of colors for organization, difficulty selecting and moving tasks, lack of icon consistency, preset snooze and reminder time options rather than being able to choose them yourself.",3,0,15.4.0,2020-03-27 15:32:46,"Hi Anna, thank you for the feedback! Could you please send us more details at support@todoist.com?",2020-03-30 19:42:08,most_relevant,com.todoist +Anssi Nevalainen,https://lh3.googleusercontent.com/a-/AOh14GjFK_ajlvqfpMyBmwEyTRthuX5BN7NZRkxUgfU0sA,Would be better if it was possible to add to the top of the list. It is not easy to use with one hand since everything is in the top left corner. Lists do not automatically sort and sort needs to be done again if anything is changed,3,1,15.4.0,2020-03-29 18:03:47,,,most_relevant,com.todoist +Jodi H,https://lh3.googleusercontent.com/-pL4Mm8bGwdg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNXDBiUsoE2zNhE3j2Lw1HiNj38Hw/photo.jpg,I can no longer touch the widget to open the full app. What happened? I use to be able to touch the upper left hand corner of the widget and the list would open in full screen.,3,2,15.4.0,2020-03-30 21:36:54,,,most_relevant,com.todoist +K Heyob,https://lh3.googleusercontent.com/-Im-mrylkCQM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJObuYleHRl1PbYYAXk9U5njS17AtA/photo.jpg,"I'd be fine with paying $10 or $20 for this app. I'm not fine with paying $3 a month forever to continue using it. Without being able to use reminders on the free version, it's no more useful than a $5 pocket calendar, and I'm not willing to pay what they're asking.",3,2,15.2.0,2020-03-10 16:09:27,,,most_relevant,com.todoist +Jessica Ramirez,https://lh3.googleusercontent.com/a-/AOh14GjhAUxKqgcL-O9cRg_Yu-XeUPdDXW8zBmw4k7Wr,"Great app, but needs to be able to switch accounts easily. I have an account for personal life, and work life. On my phone it is very difficult to switch back and forth and keep my other apps happy that are connected to todoist.",3,4,15.1.0,2020-02-02 16:29:01,"Jessica, thank you for your feedback, we'll look into adding an option to quickly switch between accounts in the future :)",2020-02-04 12:05:08,most_relevant,com.todoist +Stuart Wildman,https://lh3.googleusercontent.com/a-/AOh14Ggs45MFl_XNE_f4fUZiBAljiZHQz1T7CVJC5auo3_U,"Ok for free but limited. There are better free apps. I want to add details to my DIY jobs, such as prices, links etc. I want to easily share. And I don't want the task to close every time I talk it trying to interact with it. Maybe just me, but limited and a little frustrating. But it's free so how can I complain",3,4,15.2.0,2020-02-19 09:55:10,,,most_relevant,com.todoist +SDL,https://lh3.googleusercontent.com/a-/AOh14Gi8j1bQBCSHFS6hS91gZtyzsMv3Z3BHTgkyjp_pmyI,Need notes option like Wunderlist has Get that and you'll get a 5 star I have the premium version and we want notes aswell as the chat please JUST LIKE WUNDERLIST,3,0,15.3.2,2020-03-17 15:14:18,Thank you for the suggestion! This has been noted :),2020-03-23 17:06:05,most_relevant,com.todoist +Edwin van Rooij,https://lh3.googleusercontent.com/a-/AOh14GiuK1s68JRzMgi_QoJgDQW4huwDeBgfJ1tVd54y3g,"Really great app, but it sucks that you have to get premium to get the most basic feature: notifications for a timed reminder.",3,0,15.2.0,2020-03-09 22:57:56,,,most_relevant,com.todoist +Kelly Pettit,https://lh3.googleusercontent.com/-9KgXSfUC2yo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOD8_b1CWWo8qsNomrX9x2zUS20lw/photo.jpg,Not sure yet about other features but definitely need the ability to access the full app from the widget,3,1,15.4.0,2020-04-01 02:32:01,,,most_relevant,com.todoist +D Smith,https://lh3.googleusercontent.com/-k9yyPUuAQkI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMTFnfSwCDQDoS4yarAFqwl13q7cw/photo.jpg,Having some problems figuring out what all this app offers; still learning it.,3,0,15.1.0,2020-02-06 05:44:17,Thank you for your feedback :) Feel free to check our help page at https://get.todoist.help/hc/en-us for detailed instructions on all features and general tips how to get started.,2020-02-11 11:20:54,most_relevant,com.todoist +William Hester,https://lh3.googleusercontent.com/-OPE8cGtVDoo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPInvJ1DqtOWfiptbtwDaSr2Td8qg/photo.jpg,Please add app option to put new task at the TOP of the list for those that are coming from wunderlist.,3,0,15.2.0,2020-02-29 12:44:55,,,most_relevant,com.todoist +nik kamarulzaman Y,https://lh3.googleusercontent.com/a-/AOh14Giownnstf8ivTetBR3hglKccP2Trzp87FJVRuim,Widget non responsive.. suddenly u want to tick one item. A whole lot of other items tht got clicked,3,0,15.1.0,2020-01-29 11:27:30,,,most_relevant,com.todoist +Fabulous Flynns,https://lh3.googleusercontent.com/-CsU7J79JDD4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJML5lIZc4wKZ02I4h26Dfekh-OBHw/photo.jpg,"A few major issues: 1. The addition of sections in projects is nice, but not useful if they only appear in project view but not filters. 2. The sections cannot be reordered to appear at the top of a list, the can only be at the end of a task list. 3. In filtered view, pulling subtasks out of their parent task or non-completable tasks is ludicrous. Duplicating them like that is silly at best.",3,0,15.0.6,2020-03-03 01:26:20,Please contact support@todoist.com about this issue and include the exact query of your filter so we can try to reproduce it under the same circumstances.,2019-06-10 11:53:16,most_relevant,com.todoist +Frankly Freddie,https://lh3.googleusercontent.com/a-/AOh14Gjl-9xJ9ycFDOdb2mJYoJQxAyqwO8VTO_TncQFdBw,"Being a ""free version"" user, regularly. I can boast about Todoist's opening yield of tools you receive. Although they are not much different or more varied than most other task apps. What makes Todoist stand out is the easy-to-operate platform. The simplicity mixed with the intuitive functionality makes this a hair more effective, enjoyable, & my recommendation for anyone needing some help being more structured. It helped me greatly.",3,0,15.0.6,2020-01-18 01:17:12,,,most_relevant,com.todoist +Shay Finemore,https://lh3.googleusercontent.com/a-/AOh14GjByT8cvxfUdj_mbvAhSC5wLovPoW5MR_nWWtPDKQ,Would be awesome if paid but free version too restricted it ain't worth it,3,1,15.1.0,2020-02-06 13:57:01,,,most_relevant,com.todoist +Irwan Santoso,https://lh3.googleusercontent.com/a-/AOh14Gi6LOIjpR5PczdvpNGHcZXtqNlHTxUjNUTdC6cddg,Waiting for you to fix the widget issues. Namely parsing @ p # and smart date,3,3,15.1.0,2020-02-13 03:57:21,"Sorry for the inconvenience, we've passed this to our developers and they'll look into this bug.",2020-01-20 12:38:55,most_relevant,com.todoist +Kristi Sealey,https://lh3.googleusercontent.com/a-/AOh14Gg8RybVZVhxpghDj7v-_6IMPooxsEnHVxNee55AgA,"I recently downloaded this app and paid for the premium subscription. I like the app, but I have two issues that are hindering its functionality. The first is that the notifications slate quite buggy. I have 3 different daily tasks which I've set to notify me when they start, and I only receive my notifications sometimes. The second is that my workweek is Sunday-Thursday, and I found out after speaking with their support that there is no option to set a non-standard workweek.",3,3,15.0.3,2019-11-23 05:21:41,"Kristi, reg. notifications, please make sure that the app always runs in the background. Reg. the workweek - you can change the first day of the week in the settings and also select your off-days in the Karma settings.",2019-11-25 12:52:43,most_relevant,com.todoist +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Its a to do list that can go everywhere with you and no writing! Can prioritize list as well great little app 11/2019 edit- hoping like other folks that they undo the changes. This app has gotten more difficult and counterintuitive with the last update. Used to be able to select multiple items to reschedule at one time. Can't do that anymore. Also used to be able to just type repeat everyday, repeat every Monday Wednesday and Friday etc. It now seems like only sometimes that works.",3,6,3.0.3,2019-11-18 03:05:49,"You can still multi-select tasks in two ways, either by using the ""Multi select"" option from the 3-dot menu at the top or by configuring the ""swipe to left"" gesture to multi-select. Recurring tasks still work when you enter them while adding the task, when editing it, you can use the scheduler, but we'll change this in a future update.",2019-11-19 12:28:23,most_relevant,com.todoist +Andy Richardson,https://lh3.googleusercontent.com/a-/AOh14GjyuY6ZdZYJtsgp02Aq9RaqHxPn8lGx8Wx18s4y,"PREVIOUSLY: The best to-do app by a million billion miles! I have tried many other systems and this one beats all the others for sheer usability and adjustability- excellent system. 26/10/19 UPDATE: This major update to your app is, for me, unfortunately counter intuitive, poor and makes my life harder! I like enhancements to apps but sometimes, as in this case, fiddling with something which was already very good is likely to make it worse. Many of the new ""features"" make the app worse!",3,19,15.0.1,2019-10-26 10:04:52,"Andy, sorry to hear that. We'd love to hear what changes exactly are you referring to and what's the reason you don't like them. This way we could understand what the issue is and fix or improve it in future updates.",2019-10-29 14:23:57,most_relevant,com.todoist +Joe Robinson,https://lh3.googleusercontent.com/a-/AOh14Gi9ex3pMjA9EdWnDrXVOYq2jq81-QLdLNObUaSZoT4,"Excellent with a single exception. I've used Todoist for about 5 years and it's the best app in its class- the free version outperforms other paid apps in my experience. The one thing holding it back for me is the home screen widget. On my phone it struggles to load, lags, is unresponsive, won't select tasks properly,, the list may well go on- in short there are so many things which sometimes break, it rarely works. This is fundamental. 5 stars if fixed. Til then, it's a reluctant 3.",3,6,15.0.6,2020-01-05 04:47:45,"Thanks for the feedback, we’re working on an improved app widget and it should be available in beta soon :)",2020-01-07 15:17:44,most_relevant,com.todoist +Paulo Endoh,https://lh3.googleusercontent.com/a-/AOh14Gh7TIKSIjhezkXHrrf-XPZ25Wgo3bQqug-oYMdYkOk,It was essential to me until the last updates.,3,0,15.4.0,2020-04-04 00:35:05,,,most_relevant,com.todoist +George Bezerra,https://lh3.googleusercontent.com/a-/AOh14GgCLCeouvffIdm0k8STVvpMAHpxoY_xKuypXceSfA,"I'm editing my review due to the new update. Dear todoist, the new update made it nontrivial to change the project of a task on the app. I have to click on the three dots then on move project. This should be as simple as changing the label. Please, be so kind to the users and fix this. .... Great app, does exactly what I need it to do. Extremely simplistic and elegant, yet functional design. I would tweak one little thing or too, but overall todoist is almost a perfect product.",3,11,15.0.1,2019-10-26 15:36:21,"George, thank you for your feedback, we'll look into changing this in future updates.",2019-10-29 14:25:46,most_relevant,com.todoist +Hans Gutbrod,https://lh3.googleusercontent.com/a-/AOh14Ggj4fYWhf5xTrVwYXPVdT-VGBcdepPCJ5tBQxsOuQ,"First reaction to new design - much worse, now cluttered, how can I allocate from inbox to task group or whatever they're called. Why break this when it worked? Frustrating. I otherwise love Todoist, it is seamless and I have been managing tasks with that for ages, clearing my mind. (Thx for response below -- but pls don't break what works nicely.)",3,3,15.0.2,2019-11-05 09:35:01,"Hans, sorry to hear that, we'll look into it. In the meantime, you can tap in the 3 dot icon when editing a task to find the ""Move to project"" option.",2019-11-04 12:54:10,most_relevant,com.todoist +Vicki Hogan,https://lh3.googleusercontent.com/a-/AOh14GiU0qr--JEzetW6XYcxBgG6KA3d9ddVUiHxI3eYFA,"I had a 5 star on this but recent updates have made it far less simple to edit tasks, 3x more taps first to open and then change then get out of the added window that opens. Also it is now impossible to select amd edit in bulk. Poor consideration of basic use cases on part of developers and testers.",3,11,15.0.1,2019-10-26 21:06:10,"Vicki, sorry to hear that, we'll look into improving this in the future. As for multi-selecting task, it's still possible, but now you have to swipe the task to the left to select it. You can also configure the left- and right-swipe gestures in the settings.",2019-10-29 14:27:09,most_relevant,com.todoist +Alex Pena,https://lh3.googleusercontent.com/a-/AOh14GiXV5tUTvzSS1YUB6GsUK8REKJ5HlILMh1A9MQNoA,"Why do you get rid of things after making users use to it?? What happened to the press and hold to multi select? Why can't I type 'tomorrow' and click backspace to remove the auto calendar add like I was able to before the update. Thanks for the new features but don't take out the old ones, or at least add an option in the settings to keep things the same",3,4,3.0.2,2019-11-04 18:28:01,"Alex, thank you for your feedback. You can now multi-select tasks either by using the ""Select"" mode from the top 3-dot menu or by swiping to the left if you configure the ""swipe left"" gesture to select tasks. You can also tap on a date to cancel its parsing.",2019-11-12 12:43:50,most_relevant,com.todoist +Alen M,https://lh3.googleusercontent.com/a-/AOh14GgbV0vF7hZojWi9TwhxFWFsX2hTmN5ayxnfcIzJPTQ,Looks very appealing and has support on multiple platforms however having basic push notification for individual tasks behind a pay wall is pretty stupid and makes it the app untempting to switch to. I would reconsider if the paywall wasn't a subscription or rather have the reminders as a separate one time purchase.,3,79,15.0.5,2019-12-21 08:45:07,,,most_relevant,com.todoist +A Alger,https://lh3.googleusercontent.com/a-/AOh14GjJfanC7TtxPz4SqzwuUJZsJjID6z3VKQH7K_jJ,Repeating previous posts- don't bother with the free version if you cannot pay the premium. It's just a shell not worth the space it requires.,3,2,15.0.7,2020-01-26 21:08:44,,,most_relevant,com.todoist +Drew Tromans,https://lh3.googleusercontent.com/a-/AOh14GhBjHi4ha8xa293TRdJD0RdXoQtiO5TxlfGgFII4g,"Pretty good but when I'm adding a reminder please don't assume the time will earlier in the day than the current time. Also, it goes a little haywire during the transition to/from Daylight Savings Time.",3,0,15.0.2,2019-11-03 19:22:59,"Sorry to hear that, please contact support@todoist.com and send us one example of the date and time you've used when adding a reminder when the app scheduled it for a different time.",2019-11-04 12:57:48,most_relevant,com.todoist +irfandi djailani,https://lh3.googleusercontent.com/a-/AOh14Gj5dJTj-vQXkbCvTy596oBZEUzwYB4CVY0y2WPAyA,"I have been using it for years now, but the windows version is still not as perfect as Android version. When I open the windows 10 version of todoist, the app load takes too long",3,0,15.0.0,2019-11-01 02:10:37,,,most_relevant,com.todoist +Karol Krysztopa,https://lh3.googleusercontent.com/a-/AOh14Gj9B8t3g0KZAtM9QGLj05tEx2Ih37iLSnKb5PaxTA,"Super app with horrible widget. You can mistakenly complete a task by clicking on widget, and it's gone without you even noticing it. Free apps have better widget honestly.",3,0,15.0.2,2019-11-20 05:43:57,,,most_relevant,com.todoist +Emina Karic,https://lh3.googleusercontent.com/-ttzSZMsut1k/AAAAAAAAAAI/AAAAAAAABE4/AAKWJJNVMA9Vc4xv6YQi6aqJ0ZE9INKRnw/photo.jpg,"ANDROID WIDGETS DON'T WORK ANYMORE. clicking on ""done"" circle but nothing updates. Only by restarting the phone, removing and re-adding widget to screen. Uninstalled.",3,2,15.0.5,2019-12-19 07:38:54,,,most_relevant,com.todoist +daniel cyr,https://lh3.googleusercontent.com/-f1dvclTgvrQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOiSI71CPus_lIcvYDr5_1ox4fkyQ/photo.jpg,It's pretty good so far. I'm still working on coordinating it with my other organisational apps.,3,0,15.2.0,2020-02-29 15:19:12,,,most_relevant,com.todoist +Freya ghc,https://lh3.googleusercontent.com/a-/AOh14GiGebbWtSP97H5dRvqDVgfx9SjLTl_Mi618ba2bvA,Think its great but keeps going black and crashing all the time!,3,0,15.0.1,2019-10-31 10:59:01,"Freya, sorry for the inconvenience, we'll investigate this issue.",2019-11-04 12:54:56,most_relevant,com.todoist +Miss. Kris LMHC,https://lh3.googleusercontent.com/a-/AOh14GjSsX4HYrlmnspKjqYqqkK21jOABhiz5GGFm9tE0ys,Keeps me focused!! But I don't want to purchase anything. I think it could all be free in my opinion.,3,0,15.0.6,2019-12-29 07:01:06,,,most_relevant,com.todoist +Angelface06000 Smith,https://lh3.googleusercontent.com/-fxYJwfoWTog/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO0XYxoonehSwrqiNafuVsF6W8wmw/photo.jpg,"A good app, although disappointed that I can't repeat a reminder without paying",3,0,15.0.4,2019-12-05 07:54:19,,,most_relevant,com.todoist +Max New,https://lh3.googleusercontent.com/-krU7HkxZJMc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPlCDE5Rcje_uDUQuJKDalT3h8xSQ/photo.jpg,Great app but unless you pay $48/year you can't type comments against your tasks!,3,2,15.0.2,2019-11-01 23:28:21,,,most_relevant,com.todoist +Tagr Endy,https://lh3.googleusercontent.com/a-/AOh14GgSoYVBpteREtTM1Om27r7PE6A38zCQnv2xYSaYQw,There is no way to edit repetetiveness through ui unless I know the smart commands.,3,0,15.0.7,2020-01-10 01:46:53,"Thank you for your feedback, we'll consider developing a UI for this feature :)",2020-01-13 12:14:08,most_relevant,com.todoist +Vitor Cruz,https://lh3.googleusercontent.com/a-/AOh14GhCktBJrj7SK10G7Sgg7BbFRi_mT1rpo_avYp64myg,Not user friendly. Free version very limited.,3,0,15.0.3,2019-11-14 15:21:43,,,most_relevant,com.todoist +Farhan Ashraf,https://lh3.googleusercontent.com/a-/AOh14Gh2MWAbAvAKWaPOlYrSxb4nZBi_D1Yq9DFvIUorbg,Widget I add on home screen doesn't work when I'm offline.,3,0,15.0.2,2019-11-11 09:31:15,"Sorry for the inconvenience, we're looking into this issue now.",2019-11-12 12:51:40,most_relevant,com.todoist +ray christensen,https://lh3.googleusercontent.com/-IwDL-XW12Xw/AAAAAAAAAAI/AAAAAAAAAq4/AAKWJJMuQhPIVy7y6U_c7jbcxAfc_CpMkQ/photo.jpg,"Have been having issues since last update, when adding a to do, it defaults to go to the inbox folder, instead of going right to 'today' list. So have been forgetting to do stuff because I didn't see it lol. 5 stars otherwise once the issue is fixed. EDIT: Sane thing happens when I am on today tab and have it set as homepage .",3,0,14.4.1,2020-01-20 21:12:45,"Hi Ray, we’ve looked into it and likely fixed your issue. Please contact us at support@todoist.com if the issue keeps happening in the latest release (version 15.0.8 or newer).",2020-01-27 16:30:58,most_relevant,com.todoist +Июльское Утро,https://lh3.googleusercontent.com/a-/AOh14GiBJakoiYEAsAQpphUN2Vyxj79BHO3vf89LVn9fZw,"Please, make the widget minimalistic/customizable/half-transoerent like in com.stuff.todo. What you have now it too cluncky, all-branded and in most cases doesn't fit homescreen aesthetically. Also make it possible to use different colors for sub and subsub tasks (for example, white, grayer, gray). Shifting from the left is not enough.",3,0,13.2.1,2020-02-20 17:59:08,,,most_relevant,com.todoist +Tony Tony,https://lh3.googleusercontent.com/a-/AOh14Giweyrmo8rq7RXo6Ihf53zu6qYr2xRREksLZWdL,Great way to start to get organized!,3,0,15.0.7,2020-01-14 20:16:10,,,most_relevant,com.todoist +kaleem Abuawad,https://lh3.googleusercontent.com/a-/AOh14Ghs4ARYBe3PMeMtj_Kln1wNTSOGQY6KxC33-bcxpA,"Great app, but whin i installed it and tried the basic feature which is the reminder, it doesn't avaliable thats mean you cant also try the reminder. I appreciate that, becouse no one will give you his work as a free. Ok, i will give it less than 4 becouse i didnt see the main feature which I need.",3,0,,2020-03-31 05:49:23,,,most_relevant,com.todoist +moonstone,https://lh3.googleusercontent.com/a-/AOh14GiO8DNeLQCr3DsISiJvZZCtfm_sIRD62sP0Kzt7kQ,"the app is good and I've switched to it from TickTick but then i switched to Microsoft Todo because of the design mainly but that's not the only thing. don't get me wrong it works but there are way to many features that are premium at least make the reminders a free feature because that is just absurd. maybe fix the design, add an all black theme and make the reminders a free feature but all in all it's great",3,0,,2019-12-14 18:15:02,,,most_relevant,com.todoist +Brooke Hintze,https://lh3.googleusercontent.com/a-/AOh14Gj2xwbf9BWnmlw5r7zZbpV1nCpmjYzPARH3UzhG5Q,"It's good, but I don't like how it makes me feel bad for how unproductive I am... But that's just me! Nothing against the program",3,0,15.0.6,2020-01-02 05:57:00,We’d rather want to make you feel productive! Can you let us know in more detail what’s making you feel bad so we can improve the app based on your feedback?,2020-01-07 15:15:22,most_relevant,com.todoist +Adrita Khawash,https://lh3.googleusercontent.com/a-/AOh14GjtLJVuNhI4tHXDRLXPE02JA7wTyk_DcAh2ZzdnbA,"Came highly recommended. Tried it. HATE that I can't see the subtasks in a project(why even..), and apparently that's a recent update! Well no one seems to like this feature, or at least there should be an option to either have subtasks or not, so hope you guys bring it back. Will use it then. Another observation- most of the top-notch features are unavailable to non-Premium users, and not many are willing to subscribe. Seems a bit unfair. One time payment would be great. Will that change?",3,1,14.1.0,2019-04-06 08:31:09,"Adrita, thank you for your feedback :) We'll look into adding an option to display sub-projects when selecting a parent project. As for the pricing model, it's unlikely that we'll change that, we offer Todoist Premium as an ongoing cross-platform service, for which a subscription model is more viable.",2019-04-09 11:53:56,most_relevant,com.todoist +Andrew Misko,https://lh3.googleusercontent.com/a-/AOh14GgVu7joR2WgBMwl1z0w4ENtldVN-tPbfZ5mkm1LkQ,"Todoist has been a big help for me getting organized and I love using it. Unfortunately I can only give it three starts due to a problem I've been having for months now. Long story short, my weekly streak doesn't reset when I fail to meet my weekly goal. I've contacted their customer support team twice since the problem started and both times I was told they were checking with the dev team followed by silence. No explanation or solution.",3,0,13.2.1,2018-10-23 19:26:03,"Andrew, sorry to hear that. I can assure you that this issue has been forwarded to the developers and they are still looking into it. As soon as we have more information or better - a fix, we'll definitely let you know.",2018-10-29 14:36:04,most_relevant,com.todoist +Abigail Sy,https://lh3.googleusercontent.com/a-/AOh14Gh92gZkwARS8cAeGTfCyQTzamHVD9vS4qA0DaR5MQ,"The UI is neat with pleasing graphics. It is straightforward to use = no frills. I just wish it can accomodate 6 people and the notes feature is available to use (it is a premium feature, but it would be nice if there is a character limit, as a compromise). The app supports syncing with calendars. But imo, a todoist calendar option will be better - no added step of linking and maintaining the other calendar's data integrity. All in all, this is an app with potential",3,0,13.4.1,2018-12-19 04:30:19,"Hello, + +Thank you for your feedback! We will take it into consideration for future. Happy New Year!",2019-01-02 17:29:34,most_relevant,com.todoist +Ruth McAuliffe,https://lh3.googleusercontent.com/a-/AOh14GixVAENbi-TUq1ZIOFFp-X1-F9mk2YznbrwUsW45A,"I like the way this app is so intuitive to use but it has just been updated and there are dots that can be selected. Generally on websites these are used for options, you select one then do something with it but in Todoist when an option is selected it deletes that task. It is very confusing and counter-productive. Swiping the task was much more intuitive. I don't know why this has been changed when it worked fine as it was. As the saying goes, if it ain't broke don't fix it!",3,0,14.1.0,2019-03-24 08:54:48,"Ruth, the circles won't delete the task, these are checkboxes you can use to mark the task as completed :) You can still configure the swipe behavior to ""complete"" in the settings.",2019-03-26 12:51:54,most_relevant,com.todoist +paeonia321 Z,https://lh3.googleusercontent.com/a-/AOh14GgggaZYHUeIWeoBRj26uCDtdvS1lTsgbAqR69o7tQE,"Very nice looking, the pricing is just right, and I love that you can have subtasks upon subtasks. But... almost nothing about it is intuitive. For an app that is all about helping the user be more productive, to have a new or occasional user blundering around poking and prodding until the app lets them accomplish basic tasks... well that is obviously detrimental to productivity and a surefire way to accidentally encourage customer churn. UX test your app please.",3,0,14.0.0,2019-03-17 04:58:37,,,most_relevant,com.todoist +Evelyne,https://lh3.googleusercontent.com/a-/AOh14GgSGO77SVQHX1UOEM73t8hRl7xxTjjIz-Xg2pPygg,"Overall i like this app and i am wondering if i should pay for the premium version, because there are serious limitations on the free one (no notes or labels)... But there is one thing that annoys me : the impossibly to control the view settings. It would be better if they had options to change the size of panels and size of fonts and smaller spacing between each entry. It would allow for a better overall view and/or permit to view more things at once and reduce wasted space of the left sidebar",3,1,14.1.0,2019-04-13 20:58:03,"Evelyne, thank you for your feedback, we'll consider adding such options in the future.",2019-04-15 11:38:18,most_relevant,com.todoist +Brett Fuoco,https://lh3.googleusercontent.com/a-/AOh14GhFefeAKYfkGEa1Xard7PiHmUW2v8cwGQWy9B2jfQ,"They changed the priority colors, so that instead of a gradient, it now goes grey, blue, yellow, red. I don't think this is an improvement - it is not immediately apparent to me which priority blue is at a glance. They also took away the priority color strip on the left and replaced with a colored checkbox. It looks worse to me. I'm not sure this was necessary, just so that the user could close out a task with a single click.",3,10,13.6.1,2019-03-07 15:01:58,,,most_relevant,com.todoist +Mauri Galvez,https://lh3.googleusercontent.com/a-/AOh14GiVBnjU55bFD7THcC0j8uS3vS8Ez3u7YKLEOZdhhkY,"Decent app, but not worthy of monthly fees. What happened to 1x Pro licenses?",3,0,11.1.2,2020-01-14 08:08:29,,,most_relevant,com.todoist +Justin B,https://lh3.googleusercontent.com/-EJtX4knEDRo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPkcXTtu88EP4Hpk0UJLUNTnYuPfQ/photo.jpg,"The app looked very promising, but there were too many ""Upgrade to premium"" notifications when initially clicking through the app. From what I saw, I probably would have paid for a year if I was able to try out the fill app first. Instead, I got what felt like being kicked in the face by upgrade notifications. For these reasons, 3 stars and lost buisness.",3,1,,2019-08-25 00:17:21,"Justin, sorry to hear that. After completing 5 tasks, the app gives you an option to start a free 30-day trial of the Premium version. We also offer a 30-day money-back guarantee if you'd like to evaluate it for another 30 days after the free trial.",2019-08-26 14:10:36,most_relevant,com.todoist +Saqib Ali,https://lh3.googleusercontent.com/a-/AOh14Ghuug3TT7l2CZ4ytB_84QU--BjOPRZouJskkgUjDZw,"Layout and appearance is good but main features like alarm, reminder etc are available only in premium version.",3,0,,2020-01-19 20:20:41,,,most_relevant,com.todoist +Ace B,https://lh3.googleusercontent.com/a-/AOh14GhpA9Z4jmXygtD9tZGy6jQkersUfoMjLkp6idQZ,This app seems great. However I switched to another app mainly because the reminder alarms and reoccurring task options are locked without premium. What the free version let's you do is fine but not impressive enough to risk a subscription billed annually. They should give a free premium preview for a week or two so this app can showcase itselbetterf. Without access to reminders it felt more like a note keeping app that i had to remember to check which hindered the promised productivity boost.,3,0,14.1.0,2019-04-09 17:52:21,,,most_relevant,com.todoist +Victor Gauzzi,https://lh3.googleusercontent.com/a-/AOh14GiskxJlVixB8T-XszfhYVLLM0NYRvsDyic_NGZKbg,"its a cool app, it really is, but developers need to understand that a subscription based system is not for every app. im fine paying a subscription fee to netflix, or Spotify because there is new content almost daily, but i refuse to pay a subscription fee for a todo list app. make a payed app, ill buy it for 30 bucks, what i wont is give you 3 bucks a month everymonth and add yet another subscription fee to my list",3,16,14.1.0,2019-04-01 17:58:04,,,most_relevant,com.todoist +Qua Couron,https://lh3.googleusercontent.com/a-/AOh14GimNa2y8Q8hoyfQAkC-YdHF-_3xZzNlNZl5HdDvOA,"Widget seriously needs fixing. Screen real estate is important, and your widget is huge & wastes so much space. Please set up options for controlling text size in it & try to remove dead space, & the title of the app, since it's unnecessary. This is almost a deal breaker for me. :( Also, small request, is there any way you can change the task example to anything but the name Alex? Like ""someone"" instead, because honestly it triggers me pretty bad (abuser). Thanks for considering my comments.",3,3,14.1.0,2019-03-21 19:30:50,"Thank you for your feedback, we'll consider adding an option to change this in the future.",2019-03-26 12:47:32,most_relevant,com.todoist +Itzchak Kvoras,https://lh3.googleusercontent.com/-2rjq13b2dms/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOguWjfUkBuCyWI75B8hNYfgNQ_Xw/photo.jpg,"Why did you remove the 'open app' button from the widget? this is very very annoying. Alao, new tasks should be inserted on top, not at the bottom.",3,2,,2020-03-27 19:18:46,"Hi Itzchak, thank you for the feedback! We are looking into this now :)",2020-03-30 19:40:35,most_relevant,com.todoist +Joel,https://lh3.googleusercontent.com/a-/AOh14GjxDng-37vg8r8X6ETrFS5CW9vkSP-ji9Lp_p5DhQ,"Right now I""m using Todoist for simple tasks, as an inbox for research and non-essential stuff but Todoist needs to step up their game. I don't use Todoist for long-term planning (I use my other task manager for that) or for important tasks or projects because Todoist simply is not built for actual projects although it refers to its lists as ""projects"". What Todoist and many users actually are wanting from Todoist is a task outliner close to MyLifeOrganized, Notion, Dynalist where projects exist within the task outline. Had to give it a three star ""Meh"" rating.",3,5,14.1.0,2019-05-07 02:51:48,,,most_relevant,com.todoist +Arcane Lady,https://lh3.googleusercontent.com/-yb468HcHIJw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMPrjyR6XpOEeh59AZA6OegxgJvgw/photo.jpg,"This application is good in a way that you can prioritize and organize your tasks. The thing is that, the important features such as the 'alarm' for notification of reminders and sharing of documents are only allowed in premium package and as a student I would not be able to avail these features monthly. I wish that you can add a feature wherein you can personalize your notes so it will be more fun and exciting to use.",3,9,14.4.4,2019-09-22 02:46:30,,,most_relevant,com.todoist +Michael Robbertze,https://lh3.googleusercontent.com/a-/AOh14GjxzR99FqUjeweo65vqQMKT6FOv1AKaSbXKMXv6uw,"It's good, but everytime I mark a task as completed on the widget I have to open the app and tell it to sort my tasks by date again. You guys should include a setting to choose how you want your tasks ordered and reorder them by that setting everytime. Cause it's annoying having them reorder themselves in a way I dislike constantly.",3,0,14.1.0,2019-04-05 16:04:45,"Michael, thank you for your suggestion, we'll consider adding such option to project views in the future :)",2019-04-09 11:55:08,most_relevant,com.todoist +pooya tolideh,https://lh3.googleusercontent.com/a-/AOh14GiEhxLI503EvxdnAv_428r1WQJoTEmnPvdlHQLO,"I've used Todoist for years and it's a fantastic app BUT I won't give it more stars unless they show sub-projects under the parent project again, like it is on desktop. **Edit**: I added one more star for having configurable swipe settings, which I really appreciate. This feature allows you to replace swipe-to-right to ""Select"" with ""Done"" which is far more useful.",3,18,14.1.0,2019-04-09 13:01:10,Thank you for your feedback. Reg. swiping to the right - this can be configured in the settings.,2019-04-09 12:11:38,most_relevant,com.todoist +Princess S.,https://lh3.googleusercontent.com/a-/AOh14GjX-LJOp6GSVD-Tf2gSNPUYYLDRYVlEMyd2m7G0KQ,"There is an issue in this app where comments dont show up on mobile app but you can see it on desktop or web. I have to logout from the app for the comments to appear. This happens every now and then. When it happens, I just need to logout and login but I find that inconvenient. Pls fix.",3,0,14.2.2,2019-05-27 09:09:13,"Sorry for the inconvenience, we are looking into this issue right now.",2019-05-27 11:13:10,most_relevant,com.todoist +Jessica Johnson,https://lh3.googleusercontent.com/a-/AOh14GhrcpzMtBXFPyNWrE7wNzf8iEF9ShyRSWcPqVPq,"todoist is the best I've found for allowing me to create to do lists and then assign tasks dates and times later, while syncing with Google calendar. Unfortunately, it has a bad habit of deleting past calandar entries, especially those that repeat -don't ever modify one instance of a recurring event!",3,1,14.3.0,2019-06-20 03:49:25,,,most_relevant,com.todoist +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"it was easy to use the first few days, but now it's only adding everyday things (like feeding my dogs) to my list every other day, and not letting me fix it. it also doesn't send notifications so in order to remember my todo list I have to remember to open an app with my todo list.",3,5,13.4.4,2019-01-09 14:30:44,"Hello, could you please provide a bit more detail? Do you mean you've created some recurring tasks but you don't need them anymore? In this case, you can tap on a task - three dots in the top right - Archive. As for reminders, are you a Premium user? Reminders are currently a Premium feature.",2019-01-14 17:04:35,most_relevant,com.todoist +Bryo,https://lh3.googleusercontent.com/a-/AOh14GjQMBSkopVfR-8FjwmxRegEDXt7OYyOr1Ed9YYarg,This app is great but one thing that bugs me is that it doesnt have the option to attach images to the tasks. You can comment images within a task but I just wish you could directly attach them so you could see it underneath a task rather than having to click on the task then go into comments.,3,0,,2019-06-23 11:07:21,"Hello, thank you for the feedback! Although this is not currently on our roadmap and not part of the design strategy, we will keep your suggestion in mind for future.",2019-06-24 16:15:40,most_relevant,com.todoist +sakina salem,https://lh3.googleusercontent.com/a-/AOh14GjHBdJSoHViz7SAC8obONfhQPj1A-xy3XkXbqxEjA,great app .. keeps things organized. my request is that changes should be saved automatically rather than having to press save like in google keep. i forget to save it before leaving the app usually because i am in a rush and so things don't get updated.. this feature would help a lot,3,4,14.3.0,2019-06-20 15:35:06,,,most_relevant,com.todoist +Johnette Morris,https://lh3.googleusercontent.com/a-/AOh14GhOeAKvvX16Ve1nS34k1afxZQQTrS0kgfSSxFVPkw,"I really can't speak to the full experience, because I do not have the premium version, but so far the free version has helped me with keeping my projects and tasks in one place. I am still getting the hang of prioritizing, but that is more of a personal thing.",3,0,14.1.0,2019-04-11 02:55:42,,,most_relevant,com.todoist +Roger Ewing,https://lh3.googleusercontent.com/a-/AOh14GgVbmLhZhAyYy1e36Bc31BgurDAzGWE5AvxQZo5hg,"Doesn't meet my needs. I'm looking for a to-do app that allows me to see the tasks on my smart watch, click them done, then restore the tasks. Wanting to create a task list that I'll do repeatedly. I do not want to have to touch my phone. This app doesn't perform in a manner that supports that.",3,0,12.9,2018-09-14 22:48:04,"Roger, please let us know which type of Android Watch do you have as we already have an Android Wear extension. You can create recurring task simply by typing ""every day"" or ""Every Monday at 2pm"".",2018-09-17 13:10:38,most_relevant,com.todoist +Tiffany Price,https://lh3.googleusercontent.com/-xdFucf8O3So/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPTqnoxxCENRWxYtMnL7-t4vmMuog/photo.jpg,"I like the app so far. One issue is like someone else said, why do you have to pay for the app before doing a free 14-day trial? Second, why don't the notifications pop up where I can see them? That was one of the main reasons that I got the app. I need to be constantly reminded of what I need to do. I have ADHD and remembering a bunch of things that I have to do is a HUGE issue.",3,2,14.3.1,2019-07-28 03:11:29,,,most_relevant,com.todoist +C.J. Perron,https://lh3.googleusercontent.com/a-/AOh14GizjgFkMF2LLX_bnb-Fn1bxMoq22PpXFuksw8DZiw,Phone: Samsung Galaxy J7 Star I just started using the app. I'll upgrade or downgrade accordingly.,3,0,15.0.3,2019-11-24 15:29:56,,,most_relevant,com.todoist +Amit Siewnarine,https://lh3.googleusercontent.com/-ax8pMmvSu4g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOrZ2_7DQO6q3ClRLiYtNaxXSSDUw/photo.jpg,"Good app. a lot of useful features. As a premium customer, I would like to have the ability to export to an excel or spreadsheet program for reporting purposes. Also, the app freezes a lot on Windows",3,0,14.1.0,2019-03-26 10:54:37,,,most_relevant,com.todoist +Joel Smith,https://lh3.googleusercontent.com/a-/AOh14Gg7d6SckS9y2qgwBIHiuMa20tr3UclMQdblV-pAUA,"Used to love this app, but the new widget is ugly, unreadable, and too easy to accidentally check something. I'll be looking for a replacement if this hasn't been fixed by the time my subscription runs out.",3,2,13.6.1,2019-03-06 12:36:02,"Joel, sorry to hear that. We'll consider adding an option to remove the checkboxes.",2019-03-11 16:25:00,most_relevant,com.todoist +Audy Joy,https://lh3.googleusercontent.com/-BnSgNiSCTDI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM8rwuGAd40KPJLLI3sKtxd9GxrWw/photo.jpg,"So far Todoist has worked fine, but the fact they want you to pay a monthly fee to set a ""reminder"" is ridiculous. So many times I'm in the middle of something and can't finish a task right then and I want to be able to set a reminder. Time to move on to another app.",3,7,13.1.1,2018-10-15 14:12:20,,,most_relevant,com.todoist +Damien Watkins,https://lh3.googleusercontent.com/a-/AOh14GjIT94yRUMT6Bq_B10DwUuBGD-urtkX-fKE9hdZMPo,"been using todoist for some months now great app but need to make the google home experience better. it would be great if it would ask to set a time and date and would i like to change the title of the context when it asked if you would like to change the context, add a label and move to a different project.",3,3,14.2.1,2019-05-16 09:40:41,,,most_relevant,com.todoist +eight thousand kilometers apart,https://lh3.googleusercontent.com/-p1Ui7BkBPGo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOR-EZIp4u0iSWLxaB3010dAKmOkw/photo.jpg,I cannot re-edit the date like i used to in the last update please fix it. I want to edit it from the text box not from the calender.,3,1,,2019-11-03 06:47:13,Sorry to hear that. You can change the task's date anytime and we're planning to bring back text parting in the edit field.,2019-11-04 12:58:53,most_relevant,com.todoist +Dani V,https://lh3.googleusercontent.com/a-/AOh14GhVPeQCJbPnKycDuf1LjNzjzNMLQkdDOsoe0INPtw,"The UI looks great. Love the dark theme. Problem is I downloaded this app because it was advertising watch compatibility in the pictures but the app is nowhere to be found on my Galaxy Watch Active, which was the only reason I chose this specific app.",3,1,14.2.1,2019-05-18 15:54:08,"Dani, please note that our app only works with the standard wearOS system. If your watch is indeed running wearOS and yet it still doesn't work, please contact support@todoist.com and we'll look into it.",2019-05-20 11:06:54,most_relevant,com.todoist +Cory Gallaher,https://lh3.googleusercontent.com/a-/AOh14GhTTRYcIyFhu-z9U32rQWD2IG8-kB0K6vmldOsURw,I dislike the update but mostly I dislike that it was changed and I had to look here to find out why. If you are going to change the core functionality of the app at least say so when I open it. I am greatly fighting my response to just uninstall out of frustration.,3,3,13.6.1,2019-03-03 01:37:41,"Cory, sorry to hear that, we always describe the changes in the app's changelog.",2019-03-04 15:24:08,most_relevant,com.todoist +Jim Roberts,https://lh3.googleusercontent.com/a-/AOh14GiG0Yim-0m06H2G911p0J8q_9a9eMaySbbMjZIO6Q,Frustrating update plans.,3,0,15.0.6,2020-01-10 04:16:35,,,most_relevant,com.todoist +Jakub Królikowski,https://lh3.googleusercontent.com/a-/AOh14GhlDzhj4rs99ZGFQt5fw3f23K_qcykYxu0IivdUsQ,sync between gcal was so bad that I wasted plenty of time waiting to add a single task. For almost half a year it worked fairly nice but that problems with sync today was enough to lose any trust for keeping important task on that platform,3,0,13.4.9,2019-02-19 12:33:58,,,most_relevant,com.todoist +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"When you complete a task it disappears!! Not a good function - means you can't remember what you accomplished, and you don't get the satisfaction of seeing a big list of things crossed out (something list makers love!)",3,0,,2019-01-27 10:30:54,"Please note that you can always view completed tasks either in each project or from all projects, as described here: https://get.todoist.help/hc/en-us/articles/205847912 this way you can both focus on things to do on your active list and also see what you've done on the completed list :)",2019-01-28 16:52:35,most_relevant,com.todoist +A. Burns,https://lh3.googleusercontent.com/-J3UsJZJrasg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPGfyOHbVN22n-AILUMyGJrCze-FA/photo.jpg,"Makes a less-than-good first impression on new users by makng word input as scheduling as cryptic as possible and having no undo for marking things done, or way of looking up what you accidentally marked as done. A pain in the neck in many ways.",3,0,13.4.9,2019-02-19 17:39:40,"Sorry to hear that. Please send us a few examples of the dates you were trying to use, but didn't work because of incorrect syntax. This wold help us improve it in the future. There is an ""Undo"" option at the bottom whenever you complete a task (or perform other actions). You can also use the top-right menu to access and un-complete finished tasks.",2019-02-25 12:48:22,most_relevant,com.todoist +Eugenia Lebedinska,https://lh3.googleusercontent.com/a-/AOh14GhcsCLKlaJkuTNw9T08DLHgZWr2DrseEfUJeeZG,"The app is very good, but after the change in scheduling settings the feature is not convenient at all. Each time I need to schedule the task to a certain time - it's a torture.",3,1,13.1,2018-10-08 13:38:56,"Eugenia, sorry to hear that, we're going to improve the time selection feature very soon, but in the meantime you can quickly and easily type the time within the task name after the date, for example: ""today at 5pm"" or ""ev Wed at 1630"".",2018-10-15 10:42:32,most_relevant,com.todoist +Jon Ford,https://lh3.googleusercontent.com/a-/AOh14GjVx7MconQ-uBusxPVZPkj8lEKRIVhlvImEKgTyZA,"Works great, easy to move unfinished tasks. why the 3? because they want 3 dollars a month to review completed tasks. there are others out there that don't charge.",3,1,14.1.0,2019-05-08 23:04:10,,,most_relevant,com.todoist +Elliot Leonard Price,https://lh3.googleusercontent.com/a-/AOh14GjhL9Knp-IsDaib_dVzS9lKizB6-3i2HvDZNJdn,"no longer syncs with alexa. useless for my needs edit: thanks for the response. I'll raise it by two stars in the benefit of doubt. hope Amazon solves your issue fast, as alexa is integral to your lists.",3,0,14.2.3,2019-06-04 15:32:07,"Elliot, sorry for the inconvenience. This is an issue on Alexa's end and we're hoping Amazon will address it soon.",2019-06-04 11:02:36,most_relevant,com.todoist +Anna Edwards,https://lh3.googleusercontent.com/a-/AOh14GjVHZWErWgFn53qzSQDZCSwjpQjbg5KqK9wU6KF,not quite as good as Wunderlist for me... but overall decent and as I need to use this for work now (as wunderlist blocked!) I am trying to get into it broadly. premium features seem quite pricey.,3,0,14.3.1,2019-07-03 21:43:11,,,most_relevant,com.todoist +Christine Jeong,https://lh3.googleusercontent.com/a-/AOh14GhRxlRhcuoTSwIs4nWXYltGyvdsBMyWR_HwObrD2L0,I found that the several tabs was unnecessary and prevents me to be productive. We have to pay for an app to get reminders. I'll rather use an app with ads if the reminder function is gone,3,0,13.4.4,2019-01-10 22:00:28,,,most_relevant,com.todoist +Vibhav Sinha,https://lh3.googleusercontent.com/a-/AOh14Gipcc0Vqb7FnmWPUBqwz4QoO51tpB-nJWG2cPl7TQ,Please reduce the font size in widget so that more items can be shown in a smaller window. There are not so many options so it shouldn't be any issues with click target size etc. Check how Google Calendar widget shows information in agenda mode.,3,0,,2019-08-30 09:12:24,,,most_relevant,com.todoist +Monica Huisamen,https://lh3.googleusercontent.com/-Vxukt7MqT-g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOIxJ6crTMFHAwfY2nZbR9hrWHEkQ/photo.jpg,"It's really handy for specific dates and categories, but I would love it if there were more customising and theme options that are not for the premium package.",3,0,14.2.3,2019-06-02 19:49:27,"Monica, thank you for your feedback :) Please let us know what other customization options (aside from new themes) would you like to see and we'll try to implement them in the future.",2019-06-04 11:01:57,most_relevant,com.todoist +Paul Watrobski,https://lh3.googleusercontent.com/a-/AOh14GiaLR2j56m90aIE1NlHZNOegPdtkks9s2zm75Pulhg,"Overall, it's pretty darn good. The only problem I have with the app right now is that the crown doesn't work for scrolling. Please integrate this simple feature for five stars.",3,1,2.4.1,2019-09-10 21:34:54,,,most_relevant,com.todoist +Luke M,https://lh3.googleusercontent.com/-RV9C9dq8I6I/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMJDhsAkZjbx4r4jcAoJEJQ2Hs0kQ/photo.jpg,Was great before the new 'redesign'. Now it's a PITA to reschedule things. I wish they'd stop messing with things. May have to check out a different app,3,1,13.3.2,2018-11-26 23:40:43,"Luke, sorry to hear that. A new simpler scheduler has been released in the beta branch and will be available to everyone very soon.",2018-12-03 11:45:47,most_relevant,com.todoist +Rashid Mukharlyamov,https://lh3.googleusercontent.com/a-/AOh14Gg9gIu5meQqAZ9CKZGowPCcSV0_oSnGXPI8fTMvCQ,"I wish widget would have a very compact design, just a list of tasks, nothing more -- no menu bar, no headers, etc. As for me, the widget eats too much of homescreen space and is not optimised.",3,0,14.3.1,2019-07-03 10:08:48,"Rashid, thanks a lot for your feedback, we're working on it already, although we don't have an ETA yet.",2019-07-08 15:00:24,most_relevant,com.todoist +Mike M,https://lh3.googleusercontent.com/a-/AOh14GhGMqfT4eWTUE1Q2aRFgSF-6fzHPowuF7YjqIyb,"Please ad an option to turn off check boxes on the widget. Since it was added, I'm constantly checking off items by mistske. Once you do this, it is tedious to get the item back.",3,8,14.1.0,2019-03-19 16:10:16,"Mike, thank you for your feedback, we'll look into it.",2019-03-26 12:42:55,most_relevant,com.todoist +jacob binny,https://lh3.googleusercontent.com/a-/AOh14GgbVypO5PABnrOBL9Hjy90YPUk_eaiJdMhO488kJw,I use the widget quite a lot and I have found it really difficult to mark a task as completed. It requires 3-4 clicks on the tick button to mark it is complete,3,0,13.4,2018-12-11 06:33:01,"Hi Jacob, sorry to hear that. It definitely shouldn't take so many clicks. You need to tap on a task, then tap the checkmark icon to complete. Could you please contact us at https://get.todoist.help so that we could investigate it for you? Thanks.",2018-12-17 16:18:20,most_relevant,com.todoist +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Free version does what I need, with the exception of undelete when accidentally clicking the wrong thing. However the cost of pro version too much for just that feature",3,0,14.1.0,2019-03-27 08:50:30,,,most_relevant,com.todoist +Peter Dallman,https://lh3.googleusercontent.com/-BF2trRB5CuI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOonEYz_nOV5VYyckLFmjDLn1_6EQ/photo.jpg,Generally very good. I have a few problems when I use it for reminders. working out what I need to write for a week of reminders in 10 days time is a bit challenging.,3,0,14.3.1,2019-07-16 11:30:22,"Peter, thank you for your feedback. Please contact support@todoist.com reg. the issue with reminders and we'll help you out :)",2019-07-22 15:46:18,most_relevant,com.todoist +paul p's tv,https://lh3.googleusercontent.com/a-/AOh14GiBs1AB_e5H56aGiWfnOV6BAoDNNRze33gbEOlbKQ,What I'm looking for is scheduling calls. Not just typing call so and so but click on call button and my contacts would pop up to choose from. When you have this I'll gladly pay a fee and will be strong proponent of the app.,3,0,,2018-11-18 22:24:22,"Paul, while we don't have an integration with the contacts list, if you include a phone number in a comment, you'll be able to tap it to dial this number.",2018-11-19 12:45:05,most_relevant,com.todoist +Tony Vu,https://lh3.googleusercontent.com/a-/AOh14GhCFgjFQhpV5Hv_7u1PlcyjbhDHOQbrtHbKxSY_,"it technically does most of things you would want a list app "" to do "", but it seems to make them a bit tougher than other apps, or charges",3,0,14.1.0,2019-05-03 01:54:21,"Tony, sorry to hear that. Could you please mention at least a few examples of features that you find too difficult to use? This information would help us understand the issue and fix it based on your feedback.",2019-05-06 11:38:07,most_relevant,com.todoist +Iulia Danila,https://lh3.googleusercontent.com/a-/AOh14Gjbo0RxxjG6hWtWOsmyZIPE6EtW9JKMzS7SImMF1g,"It's not a bad app but I find it too cumbersome to navigate, I would have liked a simpler display of tasks, visually and organizationally it needs work.",3,6,13.5,2019-02-25 12:54:16,,,most_relevant,com.todoist +Guilherme Zanetti,https://lh3.googleusercontent.com/a-/AOh14GiDvvh9lnGLaYUcYYJZ7synNXOJcvPPWjrOgxj9kQ,"Doesn't offer too many options to notes and writing (listing, text fonts and sizes). Tools and resources are very simple and limited.",3,0,13.4.5,2019-06-24 16:25:08,"Thank you for your feedback, we'll look into adding more formatting options in the future. For now, you can use these options: https://get.todoist.help/hc/en-us/articles/205195102",2019-07-01 11:56:14,most_relevant,com.todoist +Danica Catral,https://lh3.googleusercontent.com/a-/AOh14GgHqe3Zo82fPkZ_aPn-bW7vLsYLvJ8fHiXiUJjmuQ,Everything is premium. lots of useful things are premium and you actually have to buy them. everything except that is good.,3,0,14.3.1,2019-06-26 01:44:15,,,most_relevant,com.todoist +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Just migrated to Tick Tick - it's better with more holistic useful functionality and cheaper with free version having not that much restrictions like in Todoist. Sorry guys, it seems you have some work to do if you want to stay competitive.",3,19,14.4.7,2019-10-05 13:11:52,"Sorry to hear that, we'll consider adding an option to disable the checkboxes.",2019-03-04 15:19:24,most_relevant,com.todoist +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Uncomfortable manual typing for time setting in a reminder. Time reminders are not stable, some times push notifications doesn't work.",3,0,12.9,2018-09-14 06:07:40,"Maxim, sorry to hear that. We'll improve the option to pick a time (now you can tap on the arrow in the bottom-right corner of the calendar to do it). As for the reminder issue, please contact support@todoist.com with more details such as the exact dates, times and types of reminders you've used so we can try to find a pattern and fix this issue.",2018-09-17 13:06:38,most_relevant,com.todoist +Curtis Sirl-Moore,https://lh3.googleusercontent.com/-BUOhiHB2_84/AAAAAAAAAAI/AAAAAAAACzA/AAKWJJMJ2ldGmnS77gcxLL3W4wRT7o-eEg/photo.jpg,Absolutely love the app but the new checkboxes take up too much space. Please add an option to hide them.,3,0,13.6.1,2019-03-05 14:06:24,"Thank you for your feedback, we'll consider adding such option in the future.",2019-03-11 16:19:01,most_relevant,com.todoist +Josh Kramer,https://lh3.googleusercontent.com/a-/AOh14GgRZg6DeV5mIvISLNEgSsCN_D7oA8srSiNSsJMd2Q,"Seems pretty good, but totally crippled the free version by not allowing reminder notifications. What's the point without those? Not bothering with it.",3,0,,2019-06-15 13:04:59,,,most_relevant,com.todoist +Fiyin T.,https://lh3.googleusercontent.com/a-/AOh14GiPzfvpu4d_NQWmKLxpcagfC6qcz2iq3GE0aSz2Tw,"I wish reminders weren't just a premium feature, they should be a basic feature. Everything else is fine.",3,1,14.4.1,2019-09-08 12:23:37,,,most_relevant,com.todoist +Yolanda Mejia,https://lh3.googleusercontent.com/-r2w3PfpDNUo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMudPeg6sbOxjwL7obO6Xnspe9jaw/photo.jpg,I like that you value privacy. So I'm disappointed that tasks within a project can't be broken down into more tasks. The comments feature doesn't seem to be enough of a supplement.,3,1,14.2.2,2019-05-25 15:08:53,You can break tasks down into sub-tasks even on 4 levels :) Please check out this page to see how it can be done: https://get.todoist.help/hc/en-us/articles/206432369,2019-05-27 11:14:03,most_relevant,com.todoist +Arina Donahue,https://lh3.googleusercontent.com/-MBmKrQzrixo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOoCh9Po54GrN-0m2YHs0dRECyigw/photo.jpg,I wish more options be available to free version,3,0,15.0.7,2020-01-16 19:06:39,,,most_relevant,com.todoist +Y G,https://lh3.googleusercontent.com/-mwSWgPW3SAw/AAAAAAAAAAI/AAAAAAAAjw0/AAKWJJN9xydcNOq5JAvjd9bfW1NjwMkyyw/photo.jpg,this app is missing subtasks and obviously no prioritizing subtasks. when subtasks are added if they ever are please make with all the primary task options and a next action option.,3,0,14.3.0,2019-06-14 03:58:31,Sub-tasks are already available :) Please check out this article to see how you can use them: https://get.todoist.help/hc/en-us/articles/206432369,2019-06-18 11:36:39,most_relevant,com.todoist +M Walters,https://lh3.googleusercontent.com/a-/AOh14GhSjZn7Ch17QNxoqE1VhkwQ5yav1pptAADXTEbJrg,"looks great, but reminders/notifications are a premium feature. Google calendar is better.",3,0,13.4.7,2019-02-08 02:49:05,,,most_relevant,com.todoist +Pranav Patel,https://lh3.googleusercontent.com/a-/AOh14GjdPveX2xe_5mzgSu2RJGAlWfSV_-O5rGGzgrCNkg,Best app to use. 3 star only because it is not available in hindi language whenever it will be in hindi language i will add my 2 star. Thanks team Todoist. :),3,0,14.3.1,2019-07-08 12:57:46,,,most_relevant,com.todoist +Ashima Goel,https://lh3.googleusercontent.com/a-/AOh14GjsoMyS60VJoCdo-FmfzsAMxNw8tSDdBIw_9LaVnQ,To much time consuming and confusing features,3,0,,2020-03-28 15:27:26,,,most_relevant,com.todoist +john locke,https://lh3.googleusercontent.com/-gi4J8Makk0s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOt5M_zPAI258d8vSn-SP4_TdGILw/photo.jpg,good but not as good as tick tick. the weak sorting in todoist limits its effectiveness when managing multiple projects,3,0,2.3.0,2019-06-17 01:33:50,"Hi John, thanks for the feedback. Just to confirm: are you referring to sorting in filters? It's not currently available, but this is something we are considering for future.",2019-06-24 16:05:30,most_relevant,com.todoist +David Hanger,https://lh3.googleusercontent.com/-EVxArDmFFXY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNYYXfp3EytUFS3h66nth3ySP340A/photo.jpg,a little shy on functionality but for the price it can't be beat. I use it daily.,3,0,14.2.1,2019-05-23 03:24:46,"David, thank you for your feedback :) We'd love to hear what features/functionality would you like to see in our app in the future.",2019-05-27 11:12:46,most_relevant,com.todoist +Caroline Morais,https://lh3.googleusercontent.com/a-/AOh14Giicn3eiZTVnh_ffIZzYiTk7Xmm95cqQEeRdniMRQ,"The idea of the app is great, but many services are paid. The free version is more limited than I thought.",3,15,13.5,2019-02-22 01:32:39,,,most_relevant,com.todoist +sager alsager,https://lh3.googleusercontent.com/-NIwskkbRGlE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM8JkYQAqGSZC9417MdImfv0VzrHQ/photo.jpg,"Last update.is bad, its hard to put time for the task i dont why you have updated that.... i paid for something easy to do why you are making it hard to put a time for the task",3,7,13.2.2,2018-10-26 12:00:10,"Sager, sorry for the inconvenience, we're working on improving this as we speak.",2018-10-29 14:38:55,most_relevant,com.todoist +Eric Fach,https://lh3.googleusercontent.com/-g71OK0MCR90/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPtKK7a4laJ_QJDPSGysATYmZaQqA/photo.jpg,"$36 for premium and they won't even respond to my email for technical help. Whatever, I figured it out. Good app. No help.",3,3,14.2.1,2019-05-12 22:59:37,"Eric, sorry to hear that. I can assure you that we respond to every single ticket we receive. Please contact support@todoist.com and let us know which email address did you use to send your previous ticket from and we'll check why you haven't received a reply yet.",2019-05-06 11:31:24,most_relevant,com.todoist +Yee Jet Tan,https://lh3.googleusercontent.com/a-/AOh14GhIqiBLrEMq1AZjx20vdFsu9c4SU4xE7c5Bw8UlTQ,"It would help me to better schedule my tasks if the feature to repeat a task could be made to be more fluid, i.e. instead of only allowing users to key in ""every week"", ""every day"" etc., it would be better if it allows ""Aug 28, Oct 5, Nov 11"" .",3,2,14.4.0,2019-08-17 08:41:48,"Thank you for your feedback, we'll look into improving the date entry feature in the future :)",2019-08-19 11:17:51,most_relevant,com.todoist +Petr Pohorelsky,https://lh3.googleusercontent.com/a-/AOh14GhnMm2GpS2zyqy0dr1JPV-yNxi-jcdMT6YDLUPo7w,taking stars off because no swipe options. that's just so bad sorry to see that. get back to your previous designs please,3,0,,2019-07-08 04:17:54,,,most_relevant,com.todoist +Paweł Nadolski,https://lh3.googleusercontent.com/a-/AOh14GjKXkzSWpiqmfjrlynoQMQjMCTAIWSnweu8LxFnIyU,"I accidently deleted an item then screen rotated and Undo option did not appear! Developers, please preserve state of the app between rotations!",3,0,13.2.1,2018-10-22 12:40:22,"Paweł, thank you very much for your feedback, we'll look into it. As for the deletion, you can restore deleted data from the backup as described on this page: https://get.todoist.help/hc/en-us/articles/115001799989",2018-10-22 11:23:52,most_relevant,com.todoist +Mawmag Phils,https://lh3.googleusercontent.com/-wXknymb57bE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPr3LEmSXKwXQ8GKQHWSo8QrIe_cQ/photo.jpg,Has its own strengths. Not as easy and intuitive as Trello or Wrike but can handle Subtasking well.,3,0,,2018-10-02 14:18:08,,,most_relevant,com.todoist +Lori Cooke,https://lh3.googleusercontent.com/a-/AOh14Gi8N83Nqv7qkeGSP3_QBpz5zWhsX5OE98ZuKmM06g,I don't understand why the changes I make in this app don't sync with Google Calendar. What am I missing?,3,0,13.6.1,2019-03-05 00:50:57,"Lori, if you're using the direct integration, please try to delete it and set it up again. If you're using the iCal feed, then Google will only sync those changes once a day.",2019-03-11 16:21:30,most_relevant,com.todoist +Tie Zhong,https://lh3.googleusercontent.com/a-/AOh14Gg1nafmE-FmZ4L1Yy9Ni-qktfxtuBL3J21bhB3N1XA,"Good app, but notes become a paid feature so uninstalled after a few days.",3,0,,2018-09-17 16:14:49,,,most_relevant,com.todoist +Raphael Padua,https://lh3.googleusercontent.com/a-/AOh14GhP9GI2o8t_tRqewApB9stlTzsGpmCrHb3r1hzXUIY,good app. The way subtasks are structured are a pain in the ass though :/,3,0,14.4.1,2019-08-25 23:34:02,"Raphael, sorry to hear that. We're going to improve this very soon.",2019-08-26 14:08:57,most_relevant,com.todoist +Chon Seng Che,https://lh3.googleusercontent.com/a-/AOh14GgdE9ZTr9tip_iVA117jeKEz6KkOOFX4MBj-lFIjgA,i hate the checkbox so much... Please make an option to remove them. Totally ruined the old nice swiping experience.,3,8,13.6.1,2019-03-02 10:10:04,"Sorry to hear that, we'll consider adding an option to disable the checkboxes. Please note that you can still swipe tasks to complete if you configure the swiping gesture to ""Complete"" in the Settings.",2019-03-04 15:19:47,most_relevant,com.todoist +Erica Webster,https://lh3.googleusercontent.com/a-/AOh14GhxtntBPrxmOhJoPILlzTXU-g7ajuiWjzGxlHEy9A,"Love the content, but the price is way too high for premium",3,0,14.4.1,2019-08-30 02:19:30,,,most_relevant,com.todoist +Keshav Kumar,https://lh3.googleusercontent.com/a-/AOh14GhklJVw5tfogVAeTKE-Gen_g3oyYzQe07oK2mDsqw,phone app is great and syncs well but windows app always jumbles my tasks so i would recommend using online app on your computer,3,0,13.4.7,2019-01-31 09:40:30,"Thank you for your feedback, we'll look into improving the Windows app in future updates.",2019-02-04 11:54:24,most_relevant,com.todoist +Ritesh Karankal,https://lh3.googleusercontent.com/-w33cDaC_qjs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMVtj3G0R1rpo446-suQCHJ5H9iMw/photo.jpg,If it had reminders in free version it would have been the best to do list.,3,0,13.5,2019-02-25 05:20:41,,,most_relevant,com.todoist +Pelle Chamliden,https://lh3.googleusercontent.com/a-/AOh14GjRXWYa0DwBacO5yfHmMvEZXVN4MG4U3IGncYUl,Premium is subscription based...thays a huge deal breaker for a TODO program....just saying.,3,0,13.2.2,2018-10-29 21:46:42,,,most_relevant,com.todoist +mr_urvesh_ patel,https://lh3.googleusercontent.com/a-/AOh14Gh8B0gJoxP-ljktNA9R5TXuE57mTfKTR46wWUqm,App is good to use but it's premium so Not using now.,3,0,,2020-01-16 15:56:25,,,most_relevant,com.todoist +Christian Tschoepe,https://lh3.googleusercontent.com/a-/AOh14Gh2nnQiHso4HjZEO5sor7fT6meMFC3cIoppUAejJIA,Too many features that it becomes easy to be distracted,3,0,8.4.2,2019-01-29 10:06:35,,,most_relevant,com.todoist +Temsu Tzudir,https://lh3.googleusercontent.com/a-/AOh14Ghj-bIScQFI-1yEFWOZPjUNCs4y9jAnKlC1qzgyow,It would have been better if one could use the app without having to log in ...,3,0,12.4.1,2018-10-18 02:01:12,,,most_relevant,com.todoist +Tautvydas Misiunas,https://lh3.googleusercontent.com/a-/AOh14GhGxHqVpKwP3oDwis4eELZ-C-nl1kum2IdsSaNB8w,Nice app but requires payment for basic features.,3,0,14.4.1,2019-09-08 15:29:46,,,most_relevant,com.todoist +Marcos Orrego,https://lh3.googleusercontent.com/a-/AOh14Gg_-ERLNNPyg7Gt7eQxByMZZnudtcgEi8ehm1iwPuo,notification sound does not reflect the do not disturb option,3,2,14.3.1,2019-06-30 13:05:56,,,most_relevant,com.todoist +Vladimir Lazir,https://lh3.googleusercontent.com/a-/AOh14GgSxRnwb6dtiBz7VtFOWCN9b1vQy-e0ISyw8H9j,"needs registration, for online use...",3,0,,2020-03-15 05:57:06,,,most_relevant,com.todoist +Muhammad Bhatti,https://lh3.googleusercontent.com/a-/AOh14Gis6F1GFNupU-mAcSfvbjRhg14-PptazqMEzVb1,A very helpful software especially in management work,3,0,13.6.1,2019-03-06 16:23:28,,,most_relevant,com.todoist +Lichelle Grobler,https://lh3.googleusercontent.com/a-/AOh14GhefqLbn_hte8-LUqvp3t9IRr0Ifel8RkXgyM-8Nw,You cant set reminders without paying. What is the point of an electronic to do list if you cant be reminded to do your tasts.,3,5,14.3.0,2019-06-16 08:46:16,,,most_relevant,com.todoist +Andriono Slamet,https://lh3.googleusercontent.com/-YrNlhbWCEGA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOg68XXXiIMCc2Tq_vtP3tY9hF1oA/photo.jpg,excellence app. but now widget error on asus zenfone max 3,3,0,14.1.0,2019-03-28 14:07:34,"Andriono, sorry to hear that. Please try to reinstall the app and if this won't help, contact support@todoist.com with more information about this issue - what error do you see exactly, when does this happen etc.",2019-04-09 12:05:49,most_relevant,com.todoist +Himanshu Jagaty,https://lh3.googleusercontent.com/a-/AOh14Gi6m-jQbZsiWKgxYbeFunQ15x6-TsuP-jE5kbjxTA,If the reminder is not available in free version it is a waste to install.,3,0,,2018-09-16 21:03:36,,,most_relevant,com.todoist +Les Allan,https://lh3.googleusercontent.com/--BgF5dS_DcU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPRnlk7ja_XkQ4nuzx5yirNLAP_ew/photo.jpg,Helpful features but not everything accessible on app version,3,0,14.3.0,2019-06-20 14:56:21,,,most_relevant,com.todoist +MD.ASHRAFUR RAHMAN PRINCE,https://lh3.googleusercontent.com/a-/AOh14Gifylupr9rqOnUestUBdXOHdUt6JV3NYXuOzz4adfc,Great app but pricing is too high for premium,3,1,13.4.5,2019-01-17 19:18:42,,,most_relevant,com.todoist +annette snyman annette@dpsa.gov.za,https://lh3.googleusercontent.com/a-/AOh14Gh8rsxrMSO73Q5fMfQasLtFiqdlKBy8Z636p1p_0w,I like using this app. I would love to see a sync between devices in future.,3,0,14.4.1,2019-09-05 19:21:44,"Annette, our app autoomatically syncs data across all your devices :) Please make sure to log into the same Todoist account on each device.",2019-09-09 15:20:16,most_relevant,com.todoist +Rami Mahmoud,https://lh3.googleusercontent.com/a-/AOh14GiJRHDCc1OL3d3qWJ6xkP0DtmbNbxvDeqQxwltZcg,No feedback. And I want to arrange the tasks according to their priorities in the home screen widget. And I want to repeat some tasks weekly.,3,0,14.4.5,2019-09-22 08:27:06,"Thanks for your feedback :) You can create a filter with the query ""p1, p2, p3, p4"" and then use it in your widget to see tasks sorted by priority. To repeat a task weekly, you can simply type ""weekly"" or ""every Monday"" in its name.",2019-09-25 15:28:10,most_relevant,com.todoist +sam,https://lh3.googleusercontent.com/a-/AOh14Ggunm5Cza0Q_tXNixWWsmo7Ira7USOuZQZBIu_dN5Y,"Reminders are premium, kind of denotes the point of having a to-do list.",3,0,,2019-09-16 01:02:54,,,most_relevant,com.todoist +Vahid Sabouri,https://lh3.googleusercontent.com/-U8FzmnYJrV8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOF5NY-w55tZrE6qS_8mp6cuoRIHQ/photo.jpg,How can i set a task to repeat daily or weekly ??,3,0,15.2.0,2020-02-15 10:57:36,"Vahid, you can simply type ""daily"" or ""weekly"" or ""every Monday"" within the task's name :) Please check out this page for more examples: https://get.todoist.help/hc/en-us/articles/360000636289",2020-02-18 11:27:59,most_relevant,com.todoist +Rowland Olamide,https://lh3.googleusercontent.com/a-/AOh14GitTavn0Cr2vXOwVsCE3IFrKc3Epw-GdNBGfjXm,was nice using the app ...getting used to the interface,3,0,13.5,2019-03-15 17:10:16,,,most_relevant,com.todoist +B T,https://lh3.googleusercontent.com/-TEFvnFw1OJM/AAAAAAAAAAI/AAAAAAAABZA/AAKWJJPHNEBMLZB5WTsoT7Rc1SKv072sCg/photo.jpg,Can't use it without email.,3,0,,2018-11-16 02:12:25,,,most_relevant,com.todoist +Danell Burow,https://lh3.googleusercontent.com/a-/AOh14Ggy35RduxBPDoq-8YQSjYyUU-FVzx4_-6aeUmGQ,"only been using for 3 days, easy to use",3,0,14.1.0,2019-04-01 03:00:46,,,most_relevant,com.todoist +Brajeswar Das,https://lh3.googleusercontent.com/-bevuBpPqsT4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOrQ0hls15dmHjRpoWgymhZnLEAAA/photo.jpg,Quite boring app and can't add subtasks.,3,0,,2019-03-02 01:53:28,"Sorry to hear that. We'd love to hear what exactly do you find boring in our app, this would help us understand the issue and improve it based on your feedback. As for sub-tasks - you can add them as described on this page: https://get.todoist.help/hc/en-us/articles/206432369",2019-03-04 15:17:00,most_relevant,com.todoist +javid khan,https://lh3.googleusercontent.com/a-/AOh14Gi8XlQtR9ETTStlvGdcNsAQ9NAWYHbN9piZktHgdw,need to increase some options of task editing,3,1,14.2.2,2019-06-02 10:07:43,"Javid, please let us know which options you have in mind and we'll look into it :)",2019-06-04 11:02:59,most_relevant,com.todoist +Skyblugrp -,https://lh3.googleusercontent.com/a-/AOh14GjIhp_C2VW3E58YaPquR8e32WYh8OggAht7q01Yag,everything is locked.... repetition schedule is unable,3,2,14.4.0,2019-08-16 11:20:09,"Sorry to hear that. Please contact support@todoist.com, describe the issue in more detail (what exactly is locked, when exactly does this happen, do you see an error message etc.) and we'll look into it.",2019-08-19 11:14:35,most_relevant,com.todoist +CHANA TUBE,https://lh3.googleusercontent.com/a-/AOh14GiDO24VeYaqsb2B-x6jvFnHIh5S8IbJUrjaRb0w6Q,Widget is not working in nova launcher.,3,0,2.4.5,2019-10-02 05:57:37,"Sorry to hear that. Please contact support@todoist.com with more details such as - how exactly is it not working, can it not be added or can it be added, but you can't tap on it because it won't respond, or does it crash or show any error messages?",2019-10-07 11:52:26,most_relevant,com.todoist +gorcin stojanovic,https://lh3.googleusercontent.com/a-/AOh14GjVEbuNLyMpVPnnW9Ci30ceKIBq-A3EBJ7CN_vvMQ,good but not fully free,3,0,13.4.9,2019-02-22 21:25:43,,,most_relevant,com.todoist +Robert Lowe,https://lh3.googleusercontent.com/-KywEaMiA6oc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPmxqaqcyd_YpCdouCuUnsxXHEXRA/photo.jpg,New to the app so still learning,3,0,15.2.0,2020-02-19 23:56:32,,,most_relevant,com.todoist +Daniel Garcia,https://lh3.googleusercontent.com/-yIM3kg34Tao/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNw-34i2V2Lyk_wYVQaPUAMxq8Xjg/photo.jpg,it makes you rate the app and its extremely annoying.,3,0,14.1.0,2019-04-08 23:59:45,,,most_relevant,com.todoist +Bella Swan,https://lh3.googleusercontent.com/a-/AOh14GiR1XNp5up71Shbr5liqIcgH0hTkYDZH__fP5Lv,cool app. please include a repeat option,3,0,,2019-01-14 00:04:47,"Hello Bella, thanks for the feedback! We already support recurring tasks. Here is how to set them: https://get.todoist.help/hc/en-us/articles/360000636289",2019-01-14 16:54:49,most_relevant,com.todoist +Amanda Norton,https://lh3.googleusercontent.com/a-/AOh14Ghv69SUKU1HYih5r1ewW_d0iUpQ5U6dX96OuHIF,still getting to grips with the app. I'm sure it's great.,3,0,13.4.7,2019-02-07 10:29:05,,,most_relevant,com.todoist +Karabo Masimola,https://lh3.googleusercontent.com/a-/AOh14Ghg9jY_5joYSq_b1L6uAxL9Qc0ETgqF9UQjEmCx9A,Not all can afford premium for reminder,3,0,14.3.1,2019-08-16 16:11:23,,,most_relevant,com.todoist +w k,https://lh3.googleusercontent.com/a-/AOh14GhVsYBsYKhIity0rg9y4f6OBU3569s4OqYi8d2fWg,UI is hard to understand,3,0,,2019-04-26 08:48:42,,,most_relevant,com.todoist +Hernando Rosendo,https://lh3.googleusercontent.com/-gwRF6zycBq8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPQQZR0k5mn5-LIdkl3UIMRemQXDA/photo.jpg,Is this offline? Or can you use this even though your not connected to the internet?,3,1,,2019-04-17 12:21:36,"Hernando, while it is a cloud-based app, it can be used offline (while you're logged in) and will sync data later when you connect :)",2019-04-23 11:18:51,most_relevant,com.todoist +Deanna Saddlemire,https://lh3.googleusercontent.com/a-/AOh14Gg8h2MF6t8iIahzTJSnPX5NoRHnib6GSQhfu4RsKVk,It would be great if didn't cost 28.00,3,0,13.2.2,2018-10-27 07:58:26,,,most_relevant,com.todoist +Is a bell,https://lh3.googleusercontent.com/a-/AOh14GhYkc81yKAmp3g6eoj0bnguCjor4Fo29g4CFeUG,Not really what I'm looking for looks like it's more time consuming than just getting to work,3,1,13.2.1,2018-10-22 14:04:23,,,most_relevant,com.todoist +Katy Hart,https://lh3.googleusercontent.com/-jPeD9OFhngE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNHWwSbqIlpKW5NFzCRYJf4RKSU6Q/photo.jpg,not quite what i need. otherwise looks like a decent app,3,0,14.2.1,2019-05-21 22:39:29,,,most_relevant,com.todoist +Jim Grandits,https://lh3.googleusercontent.com/-Pz-KQgUehmw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNB3evagvvVd6Q2j7zoUyNywzd-LA/photo.jpg,"Every time you ask me to rate it, my review goes down a star. Stop asking me to rate it, I already have.",3,0,13.6.1,2019-03-06 03:23:12,"Jim, sorry for the inconvenience, this bug will be fixed soon.",2019-03-11 16:26:37,most_relevant,com.todoist +ROHAN SHARMA,https://lh3.googleusercontent.com/a-/AOh14Gj7CUOkpIFoP87vUWJXrNgr9FRw4PMFIH7pe_d6ng,Reminders should be available for all.,3,0,,2020-02-27 03:48:22,,,most_relevant,com.todoist +Amir Ben Aroia,https://lh3.googleusercontent.com/-XfZhgXIHppE/AAAAAAAAAAI/AAAAAAACxcE/AAKWJJM2_9CbCvvf2BPeilsQZtKsomqMuQ/photo.jpg,Nice app but the price scared me,3,0,,2019-09-06 10:29:58,,,most_relevant,com.todoist +Phil Sims,https://lh3.googleusercontent.com/a-/AOh14GgaGKUg_FZvp63I_jNgFDMYmiZS2G-dxpTUxH58Kg,Still trying to learn how to use the app. I'm going to go on YouTube for some help.,3,0,14.2.1,2019-05-15 03:30:04,"Phil, feel free to check out https://get.todoist.help/hc/en-us where you'll find instructions for every feature in our app as well as helpful videos showing how they work :)",2019-05-20 11:01:36,most_relevant,com.todoist +Nia P,https://lh3.googleusercontent.com/a-/AOh14GgxWWfSos7oe8g-AGAgxvB9Z5gz3y1ir3IO5IOg,Could you please add the option to repeat the tasks?,3,0,14.3.0,2019-06-11 19:18:00,"Nia, we already have such option :) To use it, you can simply type the recurrent pattern within the task's name, for example - ""Call John every Monday at 2pm"" or ""Drink water every day"".",2019-06-18 11:32:46,most_relevant,com.todoist +Rp haq,https://lh3.googleusercontent.com/a-/AOh14Gj-XbRcX3BQZQJZYlNjwnNV5Ci6Wv72x8SKuPDknw,hi how can I get this app on my Galaxy watch? ( 46mm) regards,3,0,14.3.1,2019-08-05 13:06:24,"Unfortunately that's not possible :( We only support Android's wearOS and the Galaxy Watch uses a different operating system called ""Tizen"".",2019-08-12 11:08:56,most_relevant,com.todoist +David Stephens,https://lh3.googleusercontent.com/-W4N-UqiNQ7k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOPXG0Khvmo2C_4sOYzUEALYfEKfA/photo.jpg,be nice to see all tasks by day instead of just 7 days out,3,1,14.2.3,2019-06-08 00:38:20,,,most_relevant,com.todoist +twig Hahn,https://lh3.googleusercontent.com/a-/AOh14GjqWPcGPsKJrtQQF755voNVLgBrqctWgzF8yWxKuA,i don't get reminded everyday like i wish Shalom,3,0,14.2.3,2019-06-17 16:46:20,"Hello, could you please clarify? Do you not receive daily review email, or is the problem that your task reminders don't work? You can reach out to us at support@todoist.com with more detail.",2019-06-24 16:04:15,most_relevant,com.todoist +Bruno Archer,https://lh3.googleusercontent.com/a-/AOh14GhCBBCpiw6zDYVMuVGaIt0Iu6lv4c6MLoHJRFoNBoA,Widget transparency please...,3,0,12.9.1,2018-09-18 10:32:21,"Bruno, thank you for your feedback, we'll consider adding such widget in the future :)",2018-09-25 10:38:04,most_relevant,com.todoist +Matthew Gulenchyn,https://lh3.googleusercontent.com/a-/AOh14GhiaNZf_BLfkByUhPyB2WOtixZ-zLmuS6sE_e8QQA,no to do hstoryi tracking??,3,0,14.2.1,2019-05-13 03:14:21,"Hello Matthew, you can view completed tasks in every project (three dot icon in the top right - Completed tasks). We also have the Activity log feature (Premium): https://get.todoist.help/hc/en-us/articles/209430045",2019-05-13 16:40:32,most_relevant,com.todoist +Ellen Glass,https://lh3.googleusercontent.com/-ruT3o4KbqfI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOihWF4XNb-6Y_tdn2gG4SPHNE5OA/photo.jpg,I Like it so far.,3,0,14.4.7,2019-10-01 18:20:57,,,most_relevant,com.todoist +Zulkarnain Hamdan,https://lh3.googleusercontent.com/-0-NOGAzvsHI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMxDBNbdA5DTtWvIjWubDSrY4bJ8w/photo.jpg,Need to explore more,3,0,14.4.1,2019-09-08 08:37:04,,,most_relevant,com.todoist +Marc Gamez,https://lh3.googleusercontent.com/a-/AOh14GgnYagofCYivF5vgCdc0gnKvkVmfgoseQmBBGMZsw,Didnt work out for me,3,0,14.3.1,2019-07-06 01:47:11,,,most_relevant,com.todoist +Fariborz Arbasi,https://lh3.googleusercontent.com/-pWKqcLWVxoc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPVf1Ds2waaqrMxzIbVv88tiAPcpA/photo.jpg,It's good for me.,3,0,14.1.0,2019-03-31 07:21:57,,,most_relevant,com.todoist +Kara Channa,https://lh3.googleusercontent.com/a-/AOh14GjYLBL0muuNwqR1x7IrKEW3IlOQH2m8_6jpR2jCEw,Nice app but would like access to a calendar without paying premium price,3,0,15.2.0,2020-02-18 00:22:51,,,most_relevant,com.todoist +Saumya Kaushik,https://lh3.googleusercontent.com/a-/AOh14GjVD7-dZsOSeGCvbv5Cc1guhZcVi7W8DEfkElqTvA,Nice app,3,0,15.2.0,2020-03-08 03:39:41,,,most_relevant,com.todoist +Pranav Singh,https://lh3.googleusercontent.com/a-/AOh14Ggt_yIfeI7AjXtnc9i98luPoLLzM50GMceuYqY7Ug,Loved Todoist but the new widget is a massive step backward for me. Can't multiselect and reschedule multiple tasks anymore.,3,1,15.1.0,2020-04-05 09:53:39,,,most_relevant,com.todoist +Yasmin Lemos,https://lh3.googleusercontent.com/a-/AOh14Ghzd2f_98a6qe4vpsyMdEAs0pLIf1amz4ZhlW_usQ,"Eu amo este aplicativo e uso sincronizado com o meu google calendar. Porem de um tempo para cá, mesmo com a configuraçao para manter no google calendar as tarefas ja executadas no todolist, o evento do google calendar some. Podem verificar? Era muito importante pra mim que os eventos continuassem no google calendar. Minha versao nao é premium e estava pensando em comprar. Estou com medo de comprar e continuar assim. Obrigada!",3,0,15.1.0,2020-01-30 13:15:30,"Oi Yasmin! Por favor, envie uma mensagem para support@todoist.com para te ajudarmos com essa questão :)",2020-02-03 20:36:30,most_relevant,com.todoist +Sandeep kumar Tomar,https://lh3.googleusercontent.com/a-/AOh14Gh73O7mVPLICITBfaRp09L5ABWZ_GuXBOK_8zqDGw,Useful,3,0,15.1.0,2020-02-06 12:16:20,,,most_relevant,com.todoist +A Gerro,https://lh3.googleusercontent.com/a-/AOh14Gg2srFGN2jLcVBtKbx21O518UiEmKt81WqTB8KkrfA,"Nice material design is to very old. Sound tons of TODO managers with beautiful UX and interesting UX. Since 2015 not namy changes. New releases is almost empty. Feels like this product develop single developer. I whanta a customizible icons for every project. Rich graphics with analytics, not single karma. More actions or favorite projects in long press shortcuts. Manual sorting favorite projects. More functions when I types a text. More performance, limit in 300 tasks per proje its nothing",3,0,15.0.5,2020-03-19 22:37:28,"Hello, thank you for the feedback. This has been noted!",2020-03-23 17:00:37,most_relevant,com.todoist +Enas Mohy,https://lh3.googleusercontent.com/a-/AOh14GiemVMhnrJM6nYMiyFpOc8us8Ym1vX5VDyH2KR20w,👍,3,0,15.0.5,2020-01-03 19:40:23,,,most_relevant,com.todoist +Hessen Zheng,https://lh3.googleusercontent.com/a-/AOh14GjvdNFNNeICFwLK4votK2XBgO41dibCzp3Sb5fEEQ,Please provide undo and redo for all actions,3,0,15.0.4,2019-12-03 23:42:10,"Thanks for the suggestion, Hessen! It's not something we're currently working on, but we have noted it for future consideration 😊",2019-12-11 08:31:28,most_relevant,com.todoist +Ahamed Tijjani Abdullahi,https://lh3.googleusercontent.com/a-/AOh14Gg01fGsW7UI-fgt3ckk_3uHwKgnVIaXpTEa3ci7oA,Great app,3,0,15.0.4,2019-12-18 16:17:08,,,most_relevant,com.todoist +Robert Tillung,https://lh3.googleusercontent.com/a-/AOh14Gjlb4cy5PYoZPjlrW8eoPn_LTVmVBduz0dkzUdm-A,"Very long time user. Latest updates are making things harder. Subtasks in recurring parent tasks are now automatically archived when completed and don't seem to reappear when parent task is due again. Example: I have a weekly todo titled ""Groceries"" with grocery items I need to buy as subtasks within that recurring parent task. Whereas before I could mark a subtask as complete and expect that same subtask to reappear next time when I go shopping again, it's now completely gone.",3,5,15.0.3,2019-11-17 01:36:00,,,most_relevant,com.todoist +Dennis Ngare,https://lh3.googleusercontent.com/a-/AOh14Gj5d0j15sWytmRmaubaNHdAfLa9aLfzwH-DCWXW-g,Good,3,0,15.0.3,2019-11-19 05:53:47,,,most_relevant,com.todoist +Ramesh L,https://lh3.googleusercontent.com/a-/AOh14Gh38pD1RyZcgSdbs12GwzKMgjjMAfilVcqfFlFHSw,"Looking good Todo manager. The premium was already expensive for India, but I just realized that not only they increased the price, but the price Indians pay would be more than the US price. Now, that's called a rip off.",3,0,15.0.0,2019-10-23 17:35:29,,,most_relevant,com.todoist +Davide De Rosa,https://lh3.googleusercontent.com/a-/AOh14GjhitXWbdjakO4BVgiTsnmGzfGihP3ipq1KbZmTNUE,"Things to do: - Add a ""Move task"" icon to the single selection toolbar (it's currently in the ""..."" menu, annoying) - Use the de facto Android standard for multiple selection: the LONG PRESS, gosh! Other than that, 3 stars for the occasional bugs. Tasks are often slow to move, as in I move a task then after 2s it goes back then moves again, making it a mess. Tasks got sometimes lost in other subtasks because the drag and drop gesture is clumsy.",3,2,15.0.0,2019-10-25 14:08:06,"Hi Davide, could you please send us this feedback at support@todoist.com? We have solutions for most of the issues you have mentioned here and we'll be happy to let you know more over there. Thank you!",2019-10-29 14:18:37,most_relevant,com.todoist +aflam4yaa,https://lh3.googleusercontent.com/a-/AOh14GgVVENm6WBu0tmNzI5HemRaRtRLIu3XIGS7mu3mqQ,اغلب الميزات الهامة مدفوعة,3,0,14.4.7,2019-10-08 04:03:57,,,most_relevant,com.todoist +man sabah,https://lh3.googleusercontent.com/a-/AOh14Gi4Ab1JsQo45q8KmvmjZ9S4Ro_0E1G759Il6ZVG,ok,3,0,14.4.7,2019-10-02 03:35:11,,,most_relevant,com.todoist +S Sarpana,https://lh3.googleusercontent.com/a-/AOh14Gif3sYI1TK0BS0Gyj4MSNcusB_-OPswMAIllzxAIw,Not bad,3,0,14.4.7,2019-10-11 23:08:02,,,most_relevant,com.todoist +Simoo Jimmy,https://lh3.googleusercontent.com/a-/AOh14GhHnZ7yCr4Q0uxGRb63CmCOlYrA6zDrrtptmqqQpA,Great,3,0,14.4.7,2019-10-16 08:12:31,,,most_relevant,com.todoist +Tejas Shah,https://lh3.googleusercontent.com/a-/AOh14GiSIiwQz3TswPOnb7Ju36uWGD57OZ3U7_f1fpLraQ,"Pop up notification (alarm with voice) is not available. Please do needful. Check to do reminder, it will help you to make your app improve.",3,0,14.4.1,2019-08-23 19:54:33,,,most_relevant,com.todoist +Amila Mettananda,https://lh3.googleusercontent.com/-O9hgec00W-U/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN9NWbg-e9WwVgNke3DuRuOwO0TjQ/photo.jpg,"Highly user friendly, but the free version lacks some of the useful features...",3,0,14.4.1,2019-09-15 23:22:16,,,most_relevant,com.todoist +Pranav Singh,https://lh3.googleusercontent.com/a-/AOh14Ggt_yIfeI7AjXtnc9i98luPoLLzM50GMceuYqY7Ug,Loved Todoist but the new widget is a massive step backward for me. Can't multiselect and reschedule multiple tasks anymore.,3,1,15.1.0,2020-04-05 09:53:39,,,newest,com.todoist +Paulo Endoh,https://lh3.googleusercontent.com/a-/AOh14Gh7TIKSIjhezkXHrrf-XPZ25Wgo3bQqug-oYMdYkOk,It was essential to me until the last updates.,3,0,15.4.0,2020-04-04 00:35:05,,,newest,com.todoist +Emily Slinger,https://lh3.googleusercontent.com/a-/AOh14GjcOuQzb4_JuPuTroO9PpbmXx8QwE365B_1NdcmjX4,"This app is ok. The thing that makes it stand out for me is that I've been able to set it up to work with Google Home as my grocery and to do list. However, since the update I now can't click into the full app from the widget, which is necessary as I'm unable to rearrange my tasks from the widget and I can't seem to find a way so that the app automatically sorts my tasks by 'priority'. I can only see how to do it afterwards.",3,11,15.4.0,2020-04-01 07:23:17,,,newest,com.todoist +Kelly Pettit,https://lh3.googleusercontent.com/-9KgXSfUC2yo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOD8_b1CWWo8qsNomrX9x2zUS20lw/photo.jpg,Not sure yet about other features but definitely need the ability to access the full app from the widget,3,1,15.4.0,2020-04-01 02:32:01,,,newest,com.todoist +Tereza Fuxová,https://lh3.googleusercontent.com/a-/AOh14GgYuw7I2SOCUZnITU6c2VCLxv2GiNUARkEO8nsLtQ,"I use Todoist every day and it is awesome service in general but the latest update to the widget made it absolutely unusable for me. It has too slim lines even without compact mode (compact is ridiculous, even though I have small fingers), the quick button to open the main app is gone and the WORST - it is now not possible to select more tasks and do anything quick with them. Bye bye fast rescheduling... I am greatly upset, it is my main tool for staying on track.",3,4,15.4.0,2020-03-31 22:22:08,,,newest,com.todoist +CJ Chatham,https://lh3.googleusercontent.com/a-/AOh14GhAg4p6C_D5mIhJW9vKuEpBr7Tmit305Xugn4YceQ,"Great app, BUT the update has ruined the functionality of the widget. I can no longer figure out how to select multiple tasks, and it is no longer possible to go straight to the app from the widget. These are to important features for quickly making more complex changes to your schedule. The widget could be improved, otherwise the app is great.",3,20,15.4.0,2020-03-31 07:20:25,,,newest,com.todoist +kaleem Abuawad,https://lh3.googleusercontent.com/a-/AOh14Ghs4ARYBe3PMeMtj_Kln1wNTSOGQY6KxC33-bcxpA,"Great app, but whin i installed it and tried the basic feature which is the reminder, it doesn't avaliable thats mean you cant also try the reminder. I appreciate that, becouse no one will give you his work as a free. Ok, i will give it less than 4 becouse i didnt see the main feature which I need.",3,0,,2020-03-31 05:49:23,,,newest,com.todoist +Jodi H,https://lh3.googleusercontent.com/-pL4Mm8bGwdg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNXDBiUsoE2zNhE3j2Lw1HiNj38Hw/photo.jpg,I can no longer touch the widget to open the full app. What happened? I use to be able to touch the upper left hand corner of the widget and the list would open in full screen.,3,2,15.4.0,2020-03-30 21:36:54,,,newest,com.todoist +Anssi Nevalainen,https://lh3.googleusercontent.com/a-/AOh14GjFK_ajlvqfpMyBmwEyTRthuX5BN7NZRkxUgfU0sA,Would be better if it was possible to add to the top of the list. It is not easy to use with one hand since everything is in the top left corner. Lists do not automatically sort and sort needs to be done again if anything is changed,3,1,15.4.0,2020-03-29 18:03:47,,,newest,com.todoist +Ashima Goel,https://lh3.googleusercontent.com/a-/AOh14GjsoMyS60VJoCdo-FmfzsAMxNw8tSDdBIw_9LaVnQ,To much time consuming and confusing features,3,0,,2020-03-28 15:27:26,,,newest,com.todoist +Itzchak Kvoras,https://lh3.googleusercontent.com/-2rjq13b2dms/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOguWjfUkBuCyWI75B8hNYfgNQ_Xw/photo.jpg,"Why did you remove the 'open app' button from the widget? this is very very annoying. Alao, new tasks should be inserted on top, not at the bottom.",3,2,,2020-03-27 19:18:46,"Hi Itzchak, thank you for the feedback! We are looking into this now :)",2020-03-30 19:40:35,newest,com.todoist +Anna Sedlacek,https://lh3.googleusercontent.com/a-/AOh14Gh_p00IxQ0ynaj-f1vakwpQEGEHlXM0WdIZ5FKGAw,"Generally pretty good, but a lot of awkward design choices: no compact mode, inefficient use of colors for organization, difficulty selecting and moving tasks, lack of icon consistency, preset snooze and reminder time options rather than being able to choose them yourself.",3,0,15.4.0,2020-03-27 15:32:46,"Hi Anna, thank you for the feedback! Could you please send us more details at support@todoist.com?",2020-03-30 19:42:08,newest,com.todoist +A Gerro,https://lh3.googleusercontent.com/a-/AOh14Gg2srFGN2jLcVBtKbx21O518UiEmKt81WqTB8KkrfA,"Nice material design is to very old. Sound tons of TODO managers with beautiful UX and interesting UX. Since 2015 not namy changes. New releases is almost empty. Feels like this product develop single developer. I whanta a customizible icons for every project. Rich graphics with analytics, not single karma. More actions or favorite projects in long press shortcuts. Manual sorting favorite projects. More functions when I types a text. More performance, limit in 300 tasks per proje its nothing",3,0,15.0.5,2020-03-19 22:37:28,"Hello, thank you for the feedback. This has been noted!",2020-03-23 17:00:37,newest,com.todoist +SDL,https://lh3.googleusercontent.com/a-/AOh14Gi8j1bQBCSHFS6hS91gZtyzsMv3Z3BHTgkyjp_pmyI,Need notes option like Wunderlist has Get that and you'll get a 5 star I have the premium version and we want notes aswell as the chat please JUST LIKE WUNDERLIST,3,0,15.3.2,2020-03-17 15:14:18,Thank you for the suggestion! This has been noted :),2020-03-23 17:06:05,newest,com.todoist +Vladimir Lazir,https://lh3.googleusercontent.com/a-/AOh14GgSxRnwb6dtiBz7VtFOWCN9b1vQy-e0ISyw8H9j,"needs registration, for online use...",3,0,,2020-03-15 05:57:06,,,newest,com.todoist +K Heyob,https://lh3.googleusercontent.com/-Im-mrylkCQM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJObuYleHRl1PbYYAXk9U5njS17AtA/photo.jpg,"I'd be fine with paying $10 or $20 for this app. I'm not fine with paying $3 a month forever to continue using it. Without being able to use reminders on the free version, it's no more useful than a $5 pocket calendar, and I'm not willing to pay what they're asking.",3,2,15.2.0,2020-03-10 16:09:27,,,newest,com.todoist +Edwin van Rooij,https://lh3.googleusercontent.com/a-/AOh14GiuK1s68JRzMgi_QoJgDQW4huwDeBgfJ1tVd54y3g,"Really great app, but it sucks that you have to get premium to get the most basic feature: notifications for a timed reminder.",3,0,15.2.0,2020-03-09 22:57:56,,,newest,com.todoist +Saumya Kaushik,https://lh3.googleusercontent.com/a-/AOh14GjVD7-dZsOSeGCvbv5Cc1guhZcVi7W8DEfkElqTvA,Nice app,3,0,15.2.0,2020-03-08 03:39:41,,,newest,com.todoist +Fabulous Flynns,https://lh3.googleusercontent.com/-CsU7J79JDD4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJML5lIZc4wKZ02I4h26Dfekh-OBHw/photo.jpg,"A few major issues: 1. The addition of sections in projects is nice, but not useful if they only appear in project view but not filters. 2. The sections cannot be reordered to appear at the top of a list, the can only be at the end of a task list. 3. In filtered view, pulling subtasks out of their parent task or non-completable tasks is ludicrous. Duplicating them like that is silly at best.",3,0,15.0.6,2020-03-03 01:26:20,Please contact support@todoist.com about this issue and include the exact query of your filter so we can try to reproduce it under the same circumstances.,2019-06-10 11:53:16,newest,com.todoist +daniel cyr,https://lh3.googleusercontent.com/-f1dvclTgvrQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOiSI71CPus_lIcvYDr5_1ox4fkyQ/photo.jpg,It's pretty good so far. I'm still working on coordinating it with my other organisational apps.,3,0,15.2.0,2020-02-29 15:19:12,,,newest,com.todoist +William Hester,https://lh3.googleusercontent.com/-OPE8cGtVDoo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPInvJ1DqtOWfiptbtwDaSr2Td8qg/photo.jpg,Please add app option to put new task at the TOP of the list for those that are coming from wunderlist.,3,0,15.2.0,2020-02-29 12:44:55,,,newest,com.todoist +ROHAN SHARMA,https://lh3.googleusercontent.com/a-/AOh14Gj7CUOkpIFoP87vUWJXrNgr9FRw4PMFIH7pe_d6ng,Reminders should be available for all.,3,0,,2020-02-27 03:48:22,,,newest,com.todoist +Июльское Утро,https://lh3.googleusercontent.com/a-/AOh14GiBJakoiYEAsAQpphUN2Vyxj79BHO3vf89LVn9fZw,"Please, make the widget minimalistic/customizable/half-transoerent like in com.stuff.todo. What you have now it too cluncky, all-branded and in most cases doesn't fit homescreen aesthetically. Also make it possible to use different colors for sub and subsub tasks (for example, white, grayer, gray). Shifting from the left is not enough.",3,0,13.2.1,2020-02-20 17:59:08,,,newest,com.todoist +Robert Lowe,https://lh3.googleusercontent.com/-KywEaMiA6oc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPmxqaqcyd_YpCdouCuUnsxXHEXRA/photo.jpg,New to the app so still learning,3,0,15.2.0,2020-02-19 23:56:32,,,newest,com.todoist +Stuart Wildman,https://lh3.googleusercontent.com/a-/AOh14Ggs45MFl_XNE_f4fUZiBAljiZHQz1T7CVJC5auo3_U,"Ok for free but limited. There are better free apps. I want to add details to my DIY jobs, such as prices, links etc. I want to easily share. And I don't want the task to close every time I talk it trying to interact with it. Maybe just me, but limited and a little frustrating. But it's free so how can I complain",3,4,15.2.0,2020-02-19 09:55:10,,,newest,com.todoist +Kara Channa,https://lh3.googleusercontent.com/a-/AOh14GjYLBL0muuNwqR1x7IrKEW3IlOQH2m8_6jpR2jCEw,Nice app but would like access to a calendar without paying premium price,3,0,15.2.0,2020-02-18 00:22:51,,,newest,com.todoist +Vahid Sabouri,https://lh3.googleusercontent.com/-U8FzmnYJrV8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOF5NY-w55tZrE6qS_8mp6cuoRIHQ/photo.jpg,How can i set a task to repeat daily or weekly ??,3,0,15.2.0,2020-02-15 10:57:36,"Vahid, you can simply type ""daily"" or ""weekly"" or ""every Monday"" within the task's name :) Please check out this page for more examples: https://get.todoist.help/hc/en-us/articles/360000636289",2020-02-18 11:27:59,newest,com.todoist +Irwan Santoso,https://lh3.googleusercontent.com/a-/AOh14Gi6LOIjpR5PczdvpNGHcZXtqNlHTxUjNUTdC6cddg,Waiting for you to fix the widget issues. Namely parsing @ p # and smart date,3,3,15.1.0,2020-02-13 03:57:21,"Sorry for the inconvenience, we've passed this to our developers and they'll look into this bug.",2020-01-20 12:38:55,newest,com.todoist +Shay Finemore,https://lh3.googleusercontent.com/a-/AOh14GjByT8cvxfUdj_mbvAhSC5wLovPoW5MR_nWWtPDKQ,Would be awesome if paid but free version too restricted it ain't worth it,3,1,15.1.0,2020-02-06 13:57:01,,,newest,com.todoist +Sandeep kumar Tomar,https://lh3.googleusercontent.com/a-/AOh14Gh73O7mVPLICITBfaRp09L5ABWZ_GuXBOK_8zqDGw,Useful,3,0,15.1.0,2020-02-06 12:16:20,,,newest,com.todoist +D Smith,https://lh3.googleusercontent.com/-k9yyPUuAQkI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMTFnfSwCDQDoS4yarAFqwl13q7cw/photo.jpg,Having some problems figuring out what all this app offers; still learning it.,3,0,15.1.0,2020-02-06 05:44:17,Thank you for your feedback :) Feel free to check our help page at https://get.todoist.help/hc/en-us for detailed instructions on all features and general tips how to get started.,2020-02-11 11:20:54,newest,com.todoist +Jessica Ramirez,https://lh3.googleusercontent.com/a-/AOh14GjhAUxKqgcL-O9cRg_Yu-XeUPdDXW8zBmw4k7Wr,"Great app, but needs to be able to switch accounts easily. I have an account for personal life, and work life. On my phone it is very difficult to switch back and forth and keep my other apps happy that are connected to todoist.",3,4,15.1.0,2020-02-02 16:29:01,"Jessica, thank you for your feedback, we'll look into adding an option to quickly switch between accounts in the future :)",2020-02-04 12:05:08,newest,com.todoist +Yasmin Lemos,https://lh3.googleusercontent.com/a-/AOh14Ghzd2f_98a6qe4vpsyMdEAs0pLIf1amz4ZhlW_usQ,"Eu amo este aplicativo e uso sincronizado com o meu google calendar. Porem de um tempo para cá, mesmo com a configuraçao para manter no google calendar as tarefas ja executadas no todolist, o evento do google calendar some. Podem verificar? Era muito importante pra mim que os eventos continuassem no google calendar. Minha versao nao é premium e estava pensando em comprar. Estou com medo de comprar e continuar assim. Obrigada!",3,0,15.1.0,2020-01-30 13:15:30,"Oi Yasmin! Por favor, envie uma mensagem para support@todoist.com para te ajudarmos com essa questão :)",2020-02-03 20:36:30,newest,com.todoist +nik kamarulzaman Y,https://lh3.googleusercontent.com/a-/AOh14Giownnstf8ivTetBR3hglKccP2Trzp87FJVRuim,Widget non responsive.. suddenly u want to tick one item. A whole lot of other items tht got clicked,3,0,15.1.0,2020-01-29 11:27:30,,,newest,com.todoist +A Alger,https://lh3.googleusercontent.com/a-/AOh14GjJfanC7TtxPz4SqzwuUJZsJjID6z3VKQH7K_jJ,Repeating previous posts- don't bother with the free version if you cannot pay the premium. It's just a shell not worth the space it requires.,3,2,15.0.7,2020-01-26 21:08:44,,,newest,com.todoist +ray christensen,https://lh3.googleusercontent.com/-IwDL-XW12Xw/AAAAAAAAAAI/AAAAAAAAAq4/AAKWJJMuQhPIVy7y6U_c7jbcxAfc_CpMkQ/photo.jpg,"Have been having issues since last update, when adding a to do, it defaults to go to the inbox folder, instead of going right to 'today' list. So have been forgetting to do stuff because I didn't see it lol. 5 stars otherwise once the issue is fixed. EDIT: Sane thing happens when I am on today tab and have it set as homepage .",3,0,14.4.1,2020-01-20 21:12:45,"Hi Ray, we’ve looked into it and likely fixed your issue. Please contact us at support@todoist.com if the issue keeps happening in the latest release (version 15.0.8 or newer).",2020-01-27 16:30:58,newest,com.todoist +Saqib Ali,https://lh3.googleusercontent.com/a-/AOh14Ghuug3TT7l2CZ4ytB_84QU--BjOPRZouJskkgUjDZw,"Layout and appearance is good but main features like alarm, reminder etc are available only in premium version.",3,0,,2020-01-19 20:20:41,,,newest,com.todoist +Frankly Freddie,https://lh3.googleusercontent.com/a-/AOh14Gjl-9xJ9ycFDOdb2mJYoJQxAyqwO8VTO_TncQFdBw,"Being a ""free version"" user, regularly. I can boast about Todoist's opening yield of tools you receive. Although they are not much different or more varied than most other task apps. What makes Todoist stand out is the easy-to-operate platform. The simplicity mixed with the intuitive functionality makes this a hair more effective, enjoyable, & my recommendation for anyone needing some help being more structured. It helped me greatly.",3,0,15.0.6,2020-01-18 01:17:12,,,newest,com.todoist +Arina Donahue,https://lh3.googleusercontent.com/-MBmKrQzrixo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOoCh9Po54GrN-0m2YHs0dRECyigw/photo.jpg,I wish more options be available to free version,3,0,15.0.7,2020-01-16 19:06:39,,,newest,com.todoist +mr_urvesh_ patel,https://lh3.googleusercontent.com/a-/AOh14Gh8B0gJoxP-ljktNA9R5TXuE57mTfKTR46wWUqm,App is good to use but it's premium so Not using now.,3,0,,2020-01-16 15:56:25,,,newest,com.todoist +Tony Tony,https://lh3.googleusercontent.com/a-/AOh14Giweyrmo8rq7RXo6Ihf53zu6qYr2xRREksLZWdL,Great way to start to get organized!,3,0,15.0.7,2020-01-14 20:16:10,,,newest,com.todoist +Mauri Galvez,https://lh3.googleusercontent.com/a-/AOh14GiVBnjU55bFD7THcC0j8uS3vS8Ez3u7YKLEOZdhhkY,"Decent app, but not worthy of monthly fees. What happened to 1x Pro licenses?",3,0,11.1.2,2020-01-14 08:08:29,,,newest,com.todoist +Jim Roberts,https://lh3.googleusercontent.com/a-/AOh14GiG0Yim-0m06H2G911p0J8q_9a9eMaySbbMjZIO6Q,Frustrating update plans.,3,0,15.0.6,2020-01-10 04:16:35,,,newest,com.todoist +Tagr Endy,https://lh3.googleusercontent.com/a-/AOh14GgSoYVBpteREtTM1Om27r7PE6A38zCQnv2xYSaYQw,There is no way to edit repetetiveness through ui unless I know the smart commands.,3,0,15.0.7,2020-01-10 01:46:53,"Thank you for your feedback, we'll consider developing a UI for this feature :)",2020-01-13 12:14:08,newest,com.todoist +Joe Robinson,https://lh3.googleusercontent.com/a-/AOh14Gi9ex3pMjA9EdWnDrXVOYq2jq81-QLdLNObUaSZoT4,"Excellent with a single exception. I've used Todoist for about 5 years and it's the best app in its class- the free version outperforms other paid apps in my experience. The one thing holding it back for me is the home screen widget. On my phone it struggles to load, lags, is unresponsive, won't select tasks properly,, the list may well go on- in short there are so many things which sometimes break, it rarely works. This is fundamental. 5 stars if fixed. Til then, it's a reluctant 3.",3,6,15.0.6,2020-01-05 04:47:45,"Thanks for the feedback, we’re working on an improved app widget and it should be available in beta soon :)",2020-01-07 15:17:44,newest,com.todoist +Enas Mohy,https://lh3.googleusercontent.com/a-/AOh14GiemVMhnrJM6nYMiyFpOc8us8Ym1vX5VDyH2KR20w,👍,3,0,15.0.5,2020-01-03 19:40:23,,,newest,com.todoist +Brooke Hintze,https://lh3.googleusercontent.com/a-/AOh14Gj2xwbf9BWnmlw5r7zZbpV1nCpmjYzPARH3UzhG5Q,"It's good, but I don't like how it makes me feel bad for how unproductive I am... But that's just me! Nothing against the program",3,0,15.0.6,2020-01-02 05:57:00,We’d rather want to make you feel productive! Can you let us know in more detail what’s making you feel bad so we can improve the app based on your feedback?,2020-01-07 15:15:22,newest,com.todoist +Miss. Kris LMHC,https://lh3.googleusercontent.com/a-/AOh14GjSsX4HYrlmnspKjqYqqkK21jOABhiz5GGFm9tE0ys,Keeps me focused!! But I don't want to purchase anything. I think it could all be free in my opinion.,3,0,15.0.6,2019-12-29 07:01:06,,,newest,com.todoist +Xaid roid,https://lh3.googleusercontent.com/-MXUGEPtq5Vo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNXlke-sFdXWj9-O1C_7xFyF67PZA/photo.jpg,"Google should make an app like this, it's Calendar app is not intuitive like this, giving this app low partly becuz of no integration",3,0,,2019-12-23 23:41:06,"Thank you for your feedback. We offer many different integrations, as described on this page: https://todoist.com/integrations 🙂",2020-01-07 15:14:21,newest,com.todoist +Alen M,https://lh3.googleusercontent.com/a-/AOh14GgbV0vF7hZojWi9TwhxFWFsX2hTmN5ayxnfcIzJPTQ,Looks very appealing and has support on multiple platforms however having basic push notification for individual tasks behind a pay wall is pretty stupid and makes it the app untempting to switch to. I would reconsider if the paywall wasn't a subscription or rather have the reminders as a separate one time purchase.,3,79,15.0.5,2019-12-21 08:45:07,,,newest,com.todoist +Emina Karic,https://lh3.googleusercontent.com/-ttzSZMsut1k/AAAAAAAAAAI/AAAAAAAABE4/AAKWJJNVMA9Vc4xv6YQi6aqJ0ZE9INKRnw/photo.jpg,"ANDROID WIDGETS DON'T WORK ANYMORE. clicking on ""done"" circle but nothing updates. Only by restarting the phone, removing and re-adding widget to screen. Uninstalled.",3,2,15.0.5,2019-12-19 07:38:54,,,newest,com.todoist +Ahamed Tijjani Abdullahi,https://lh3.googleusercontent.com/a-/AOh14Gg01fGsW7UI-fgt3ckk_3uHwKgnVIaXpTEa3ci7oA,Great app,3,0,15.0.4,2019-12-18 16:17:08,,,newest,com.todoist +moonstone,https://lh3.googleusercontent.com/a-/AOh14GiO8DNeLQCr3DsISiJvZZCtfm_sIRD62sP0Kzt7kQ,"the app is good and I've switched to it from TickTick but then i switched to Microsoft Todo because of the design mainly but that's not the only thing. don't get me wrong it works but there are way to many features that are premium at least make the reminders a free feature because that is just absurd. maybe fix the design, add an all black theme and make the reminders a free feature but all in all it's great",3,0,,2019-12-14 18:15:02,,,newest,com.todoist +Angelface06000 Smith,https://lh3.googleusercontent.com/-fxYJwfoWTog/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO0XYxoonehSwrqiNafuVsF6W8wmw/photo.jpg,"A good app, although disappointed that I can't repeat a reminder without paying",3,0,15.0.4,2019-12-05 07:54:19,,,newest,com.todoist +Hessen Zheng,https://lh3.googleusercontent.com/a-/AOh14GjvdNFNNeICFwLK4votK2XBgO41dibCzp3Sb5fEEQ,Please provide undo and redo for all actions,3,0,15.0.4,2019-12-03 23:42:10,"Thanks for the suggestion, Hessen! It's not something we're currently working on, but we have noted it for future consideration 😊",2019-12-11 08:31:28,newest,com.todoist +C.J. Perron,https://lh3.googleusercontent.com/a-/AOh14GizjgFkMF2LLX_bnb-Fn1bxMoq22PpXFuksw8DZiw,Phone: Samsung Galaxy J7 Star I just started using the app. I'll upgrade or downgrade accordingly.,3,0,15.0.3,2019-11-24 15:29:56,,,newest,com.todoist +Kristi Sealey,https://lh3.googleusercontent.com/a-/AOh14Gg8RybVZVhxpghDj7v-_6IMPooxsEnHVxNee55AgA,"I recently downloaded this app and paid for the premium subscription. I like the app, but I have two issues that are hindering its functionality. The first is that the notifications slate quite buggy. I have 3 different daily tasks which I've set to notify me when they start, and I only receive my notifications sometimes. The second is that my workweek is Sunday-Thursday, and I found out after speaking with their support that there is no option to set a non-standard workweek.",3,3,15.0.3,2019-11-23 05:21:41,"Kristi, reg. notifications, please make sure that the app always runs in the background. Reg. the workweek - you can change the first day of the week in the settings and also select your off-days in the Karma settings.",2019-11-25 12:52:43,newest,com.todoist +Karol Krysztopa,https://lh3.googleusercontent.com/a-/AOh14Gj9B8t3g0KZAtM9QGLj05tEx2Ih37iLSnKb5PaxTA,"Super app with horrible widget. You can mistakenly complete a task by clicking on widget, and it's gone without you even noticing it. Free apps have better widget honestly.",3,0,15.0.2,2019-11-20 05:43:57,,,newest,com.todoist +Dennis Ngare,https://lh3.googleusercontent.com/a-/AOh14Gj5d0j15sWytmRmaubaNHdAfLa9aLfzwH-DCWXW-g,Good,3,0,15.0.3,2019-11-19 05:53:47,,,newest,com.todoist +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Its a to do list that can go everywhere with you and no writing! Can prioritize list as well great little app 11/2019 edit- hoping like other folks that they undo the changes. This app has gotten more difficult and counterintuitive with the last update. Used to be able to select multiple items to reschedule at one time. Can't do that anymore. Also used to be able to just type repeat everyday, repeat every Monday Wednesday and Friday etc. It now seems like only sometimes that works.",3,6,3.0.3,2019-11-18 03:05:49,"You can still multi-select tasks in two ways, either by using the ""Multi select"" option from the 3-dot menu at the top or by configuring the ""swipe to left"" gesture to multi-select. Recurring tasks still work when you enter them while adding the task, when editing it, you can use the scheduler, but we'll change this in a future update.",2019-11-19 12:28:23,newest,com.todoist +Robert Tillung,https://lh3.googleusercontent.com/a-/AOh14Gjlb4cy5PYoZPjlrW8eoPn_LTVmVBduz0dkzUdm-A,"Very long time user. Latest updates are making things harder. Subtasks in recurring parent tasks are now automatically archived when completed and don't seem to reappear when parent task is due again. Example: I have a weekly todo titled ""Groceries"" with grocery items I need to buy as subtasks within that recurring parent task. Whereas before I could mark a subtask as complete and expect that same subtask to reappear next time when I go shopping again, it's now completely gone.",3,5,15.0.3,2019-11-17 01:36:00,,,newest,com.todoist +Vitor Cruz,https://lh3.googleusercontent.com/a-/AOh14GhCktBJrj7SK10G7Sgg7BbFRi_mT1rpo_avYp64myg,Not user friendly. Free version very limited.,3,0,15.0.3,2019-11-14 15:21:43,,,newest,com.todoist +Farhan Ashraf,https://lh3.googleusercontent.com/a-/AOh14Gh2MWAbAvAKWaPOlYrSxb4nZBi_D1Yq9DFvIUorbg,Widget I add on home screen doesn't work when I'm offline.,3,0,15.0.2,2019-11-11 09:31:15,"Sorry for the inconvenience, we're looking into this issue now.",2019-11-12 12:51:40,newest,com.todoist +Hans Gutbrod,https://lh3.googleusercontent.com/a-/AOh14Ggj4fYWhf5xTrVwYXPVdT-VGBcdepPCJ5tBQxsOuQ,"First reaction to new design - much worse, now cluttered, how can I allocate from inbox to task group or whatever they're called. Why break this when it worked? Frustrating. I otherwise love Todoist, it is seamless and I have been managing tasks with that for ages, clearing my mind. (Thx for response below -- but pls don't break what works nicely.)",3,3,15.0.2,2019-11-05 09:35:01,"Hans, sorry to hear that, we'll look into it. In the meantime, you can tap in the 3 dot icon when editing a task to find the ""Move to project"" option.",2019-11-04 12:54:10,newest,com.todoist +Alex Pena,https://lh3.googleusercontent.com/a-/AOh14GiXV5tUTvzSS1YUB6GsUK8REKJ5HlILMh1A9MQNoA,"Why do you get rid of things after making users use to it?? What happened to the press and hold to multi select? Why can't I type 'tomorrow' and click backspace to remove the auto calendar add like I was able to before the update. Thanks for the new features but don't take out the old ones, or at least add an option in the settings to keep things the same",3,4,3.0.2,2019-11-04 18:28:01,"Alex, thank you for your feedback. You can now multi-select tasks either by using the ""Select"" mode from the top 3-dot menu or by swiping to the left if you configure the ""swipe left"" gesture to select tasks. You can also tap on a date to cancel its parsing.",2019-11-12 12:43:50,newest,com.todoist +Drew Tromans,https://lh3.googleusercontent.com/a-/AOh14GhBjHi4ha8xa293TRdJD0RdXoQtiO5TxlfGgFII4g,"Pretty good but when I'm adding a reminder please don't assume the time will earlier in the day than the current time. Also, it goes a little haywire during the transition to/from Daylight Savings Time.",3,0,15.0.2,2019-11-03 19:22:59,"Sorry to hear that, please contact support@todoist.com and send us one example of the date and time you've used when adding a reminder when the app scheduled it for a different time.",2019-11-04 12:57:48,newest,com.todoist +eight thousand kilometers apart,https://lh3.googleusercontent.com/-p1Ui7BkBPGo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOR-EZIp4u0iSWLxaB3010dAKmOkw/photo.jpg,I cannot re-edit the date like i used to in the last update please fix it. I want to edit it from the text box not from the calender.,3,1,,2019-11-03 06:47:13,Sorry to hear that. You can change the task's date anytime and we're planning to bring back text parting in the edit field.,2019-11-04 12:58:53,newest,com.todoist +Max New,https://lh3.googleusercontent.com/-krU7HkxZJMc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPlCDE5Rcje_uDUQuJKDalT3h8xSQ/photo.jpg,Great app but unless you pay $48/year you can't type comments against your tasks!,3,2,15.0.2,2019-11-01 23:28:21,,,newest,com.todoist +irfandi djailani,https://lh3.googleusercontent.com/a-/AOh14Gj5dJTj-vQXkbCvTy596oBZEUzwYB4CVY0y2WPAyA,"I have been using it for years now, but the windows version is still not as perfect as Android version. When I open the windows 10 version of todoist, the app load takes too long",3,0,15.0.0,2019-11-01 02:10:37,,,newest,com.todoist +Freya ghc,https://lh3.googleusercontent.com/a-/AOh14GiGebbWtSP97H5dRvqDVgfx9SjLTl_Mi618ba2bvA,Think its great but keeps going black and crashing all the time!,3,0,15.0.1,2019-10-31 10:59:01,"Freya, sorry for the inconvenience, we'll investigate this issue.",2019-11-04 12:54:56,newest,com.todoist +Vicki Hogan,https://lh3.googleusercontent.com/a-/AOh14GiU0qr--JEzetW6XYcxBgG6KA3d9ddVUiHxI3eYFA,"I had a 5 star on this but recent updates have made it far less simple to edit tasks, 3x more taps first to open and then change then get out of the added window that opens. Also it is now impossible to select amd edit in bulk. Poor consideration of basic use cases on part of developers and testers.",3,11,15.0.1,2019-10-26 21:06:10,"Vicki, sorry to hear that, we'll look into improving this in the future. As for multi-selecting task, it's still possible, but now you have to swipe the task to the left to select it. You can also configure the left- and right-swipe gestures in the settings.",2019-10-29 14:27:09,newest,com.todoist +George Bezerra,https://lh3.googleusercontent.com/a-/AOh14GgCLCeouvffIdm0k8STVvpMAHpxoY_xKuypXceSfA,"I'm editing my review due to the new update. Dear todoist, the new update made it nontrivial to change the project of a task on the app. I have to click on the three dots then on move project. This should be as simple as changing the label. Please, be so kind to the users and fix this. .... Great app, does exactly what I need it to do. Extremely simplistic and elegant, yet functional design. I would tweak one little thing or too, but overall todoist is almost a perfect product.",3,11,15.0.1,2019-10-26 15:36:21,"George, thank you for your feedback, we'll look into changing this in future updates.",2019-10-29 14:25:46,newest,com.todoist +Andy Richardson,https://lh3.googleusercontent.com/a-/AOh14GjyuY6ZdZYJtsgp02Aq9RaqHxPn8lGx8Wx18s4y,"PREVIOUSLY: The best to-do app by a million billion miles! I have tried many other systems and this one beats all the others for sheer usability and adjustability- excellent system. 26/10/19 UPDATE: This major update to your app is, for me, unfortunately counter intuitive, poor and makes my life harder! I like enhancements to apps but sometimes, as in this case, fiddling with something which was already very good is likely to make it worse. Many of the new ""features"" make the app worse!",3,19,15.0.1,2019-10-26 10:04:52,"Andy, sorry to hear that. We'd love to hear what changes exactly are you referring to and what's the reason you don't like them. This way we could understand what the issue is and fix or improve it in future updates.",2019-10-29 14:23:57,newest,com.todoist +Davide De Rosa,https://lh3.googleusercontent.com/a-/AOh14GjhitXWbdjakO4BVgiTsnmGzfGihP3ipq1KbZmTNUE,"Things to do: - Add a ""Move task"" icon to the single selection toolbar (it's currently in the ""..."" menu, annoying) - Use the de facto Android standard for multiple selection: the LONG PRESS, gosh! Other than that, 3 stars for the occasional bugs. Tasks are often slow to move, as in I move a task then after 2s it goes back then moves again, making it a mess. Tasks got sometimes lost in other subtasks because the drag and drop gesture is clumsy.",3,2,15.0.0,2019-10-25 14:08:06,"Hi Davide, could you please send us this feedback at support@todoist.com? We have solutions for most of the issues you have mentioned here and we'll be happy to let you know more over there. Thank you!",2019-10-29 14:18:37,newest,com.todoist +AZI CLOCLO,https://lh3.googleusercontent.com/a-/AOh14GhV8SrF55TZ3sj_60HBZNm5alV4CXaes6wrhxJVeQ,Cool application,3,0,12.5.3,2019-10-23 21:16:05,,,newest,com.todoist +Ramesh L,https://lh3.googleusercontent.com/a-/AOh14Gh38pD1RyZcgSdbs12GwzKMgjjMAfilVcqfFlFHSw,"Looking good Todo manager. The premium was already expensive for India, but I just realized that not only they increased the price, but the price Indians pay would be more than the US price. Now, that's called a rip off.",3,0,15.0.0,2019-10-23 17:35:29,,,newest,com.todoist +Simoo Jimmy,https://lh3.googleusercontent.com/a-/AOh14GhHnZ7yCr4Q0uxGRb63CmCOlYrA6zDrrtptmqqQpA,Great,3,0,14.4.7,2019-10-16 08:12:31,,,newest,com.todoist +S Sarpana,https://lh3.googleusercontent.com/a-/AOh14Gif3sYI1TK0BS0Gyj4MSNcusB_-OPswMAIllzxAIw,Not bad,3,0,14.4.7,2019-10-11 23:08:02,,,newest,com.todoist +aflam4yaa,https://lh3.googleusercontent.com/a-/AOh14GgVVENm6WBu0tmNzI5HemRaRtRLIu3XIGS7mu3mqQ,اغلب الميزات الهامة مدفوعة,3,0,14.4.7,2019-10-08 04:03:57,,,newest,com.todoist +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Just migrated to Tick Tick - it's better with more holistic useful functionality and cheaper with free version having not that much restrictions like in Todoist. Sorry guys, it seems you have some work to do if you want to stay competitive.",3,19,14.4.7,2019-10-05 13:11:52,"Sorry to hear that, we'll consider adding an option to disable the checkboxes.",2019-03-04 15:19:24,newest,com.todoist +CHANA TUBE,https://lh3.googleusercontent.com/a-/AOh14GiDO24VeYaqsb2B-x6jvFnHIh5S8IbJUrjaRb0w6Q,Widget is not working in nova launcher.,3,0,2.4.5,2019-10-02 05:57:37,"Sorry to hear that. Please contact support@todoist.com with more details such as - how exactly is it not working, can it not be added or can it be added, but you can't tap on it because it won't respond, or does it crash or show any error messages?",2019-10-07 11:52:26,newest,com.todoist +man sabah,https://lh3.googleusercontent.com/a-/AOh14Gi4Ab1JsQo45q8KmvmjZ9S4Ro_0E1G759Il6ZVG,ok,3,0,14.4.7,2019-10-02 03:35:11,,,newest,com.todoist +Ellen Glass,https://lh3.googleusercontent.com/-ruT3o4KbqfI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOihWF4XNb-6Y_tdn2gG4SPHNE5OA/photo.jpg,I Like it so far.,3,0,14.4.7,2019-10-01 18:20:57,,,newest,com.todoist +Rami Mahmoud,https://lh3.googleusercontent.com/a-/AOh14GiJRHDCc1OL3d3qWJ6xkP0DtmbNbxvDeqQxwltZcg,No feedback. And I want to arrange the tasks according to their priorities in the home screen widget. And I want to repeat some tasks weekly.,3,0,14.4.5,2019-09-22 08:27:06,"Thanks for your feedback :) You can create a filter with the query ""p1, p2, p3, p4"" and then use it in your widget to see tasks sorted by priority. To repeat a task weekly, you can simply type ""weekly"" or ""every Monday"" in its name.",2019-09-25 15:28:10,newest,com.todoist +Arcane Lady,https://lh3.googleusercontent.com/-yb468HcHIJw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMPrjyR6XpOEeh59AZA6OegxgJvgw/photo.jpg,"This application is good in a way that you can prioritize and organize your tasks. The thing is that, the important features such as the 'alarm' for notification of reminders and sharing of documents are only allowed in premium package and as a student I would not be able to avail these features monthly. I wish that you can add a feature wherein you can personalize your notes so it will be more fun and exciting to use.",3,9,14.4.4,2019-09-22 02:46:30,,,newest,com.todoist +sam,https://lh3.googleusercontent.com/a-/AOh14Ggunm5Cza0Q_tXNixWWsmo7Ira7USOuZQZBIu_dN5Y,"Reminders are premium, kind of denotes the point of having a to-do list.",3,0,,2019-09-16 01:02:54,,,newest,com.todoist +Amila Mettananda,https://lh3.googleusercontent.com/-O9hgec00W-U/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN9NWbg-e9WwVgNke3DuRuOwO0TjQ/photo.jpg,"Highly user friendly, but the free version lacks some of the useful features...",3,0,14.4.1,2019-09-15 23:22:16,,,newest,com.todoist +ADEJUMO SAMSON,https://lh3.googleusercontent.com/a-/AOh14Gi2PuhZ00I4hD4WGm0pJnKiFxbTFodhHksAkzYsCg,Good,3,0,14.4.1,2019-09-15 21:22:57,,,newest,com.todoist +Paul Watrobski,https://lh3.googleusercontent.com/a-/AOh14GiaLR2j56m90aIE1NlHZNOegPdtkks9s2zm75Pulhg,"Overall, it's pretty darn good. The only problem I have with the app right now is that the crown doesn't work for scrolling. Please integrate this simple feature for five stars.",3,1,2.4.1,2019-09-10 21:34:54,,,newest,com.todoist +Tautvydas Misiunas,https://lh3.googleusercontent.com/a-/AOh14GhGxHqVpKwP3oDwis4eELZ-C-nl1kum2IdsSaNB8w,Nice app but requires payment for basic features.,3,0,14.4.1,2019-09-08 15:29:46,,,newest,com.todoist +Fiyin T.,https://lh3.googleusercontent.com/a-/AOh14GiPzfvpu4d_NQWmKLxpcagfC6qcz2iq3GE0aSz2Tw,"I wish reminders weren't just a premium feature, they should be a basic feature. Everything else is fine.",3,1,14.4.1,2019-09-08 12:23:37,,,newest,com.todoist +Zulkarnain Hamdan,https://lh3.googleusercontent.com/-0-NOGAzvsHI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMxDBNbdA5DTtWvIjWubDSrY4bJ8w/photo.jpg,Need to explore more,3,0,14.4.1,2019-09-08 08:37:04,,,newest,com.todoist +Amir Ben Aroia,https://lh3.googleusercontent.com/-XfZhgXIHppE/AAAAAAAAAAI/AAAAAAACxcE/AAKWJJM2_9CbCvvf2BPeilsQZtKsomqMuQ/photo.jpg,Nice app but the price scared me,3,0,,2019-09-06 10:29:58,,,newest,com.todoist +annette snyman annette@dpsa.gov.za,https://lh3.googleusercontent.com/a-/AOh14Gh8rsxrMSO73Q5fMfQasLtFiqdlKBy8Z636p1p_0w,I like using this app. I would love to see a sync between devices in future.,3,0,14.4.1,2019-09-05 19:21:44,"Annette, our app autoomatically syncs data across all your devices :) Please make sure to log into the same Todoist account on each device.",2019-09-09 15:20:16,newest,com.todoist +Vibhav Sinha,https://lh3.googleusercontent.com/a-/AOh14Gipcc0Vqb7FnmWPUBqwz4QoO51tpB-nJWG2cPl7TQ,Please reduce the font size in widget so that more items can be shown in a smaller window. There are not so many options so it shouldn't be any issues with click target size etc. Check how Google Calendar widget shows information in agenda mode.,3,0,,2019-08-30 09:12:24,,,newest,com.todoist +Erica Webster,https://lh3.googleusercontent.com/a-/AOh14GhxtntBPrxmOhJoPILlzTXU-g7ajuiWjzGxlHEy9A,"Love the content, but the price is way too high for premium",3,0,14.4.1,2019-08-30 02:19:30,,,newest,com.todoist +Raphael Padua,https://lh3.googleusercontent.com/a-/AOh14GhP9GI2o8t_tRqewApB9stlTzsGpmCrHb3r1hzXUIY,good app. The way subtasks are structured are a pain in the ass though :/,3,0,14.4.1,2019-08-25 23:34:02,"Raphael, sorry to hear that. We're going to improve this very soon.",2019-08-26 14:08:57,newest,com.todoist +Justin B,https://lh3.googleusercontent.com/-EJtX4knEDRo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPkcXTtu88EP4Hpk0UJLUNTnYuPfQ/photo.jpg,"The app looked very promising, but there were too many ""Upgrade to premium"" notifications when initially clicking through the app. From what I saw, I probably would have paid for a year if I was able to try out the fill app first. Instead, I got what felt like being kicked in the face by upgrade notifications. For these reasons, 3 stars and lost buisness.",3,1,,2019-08-25 00:17:21,"Justin, sorry to hear that. After completing 5 tasks, the app gives you an option to start a free 30-day trial of the Premium version. We also offer a 30-day money-back guarantee if you'd like to evaluate it for another 30 days after the free trial.",2019-08-26 14:10:36,newest,com.todoist +Ben Dover,https://lh3.googleusercontent.com/a-/AOh14Gg_Q_0JHqYMLuJSpgmM1NTGKCcKdBfO_FQlWc1q7w,"It's pretty useless, google does a better job",3,0,14.4.1,2019-08-24 07:38:10,"Ben, sorry to hear that. We'd love to hear what features or improvements would you like to see so we could understand the issue and fix it based on your feedback.",2019-08-26 14:11:26,newest,com.todoist +Tejas Shah,https://lh3.googleusercontent.com/a-/AOh14GiSIiwQz3TswPOnb7Ju36uWGD57OZ3U7_f1fpLraQ,"Pop up notification (alarm with voice) is not available. Please do needful. Check to do reminder, it will help you to make your app improve.",3,0,14.4.1,2019-08-23 19:54:33,,,newest,com.todoist +Yee Jet Tan,https://lh3.googleusercontent.com/a-/AOh14GhIqiBLrEMq1AZjx20vdFsu9c4SU4xE7c5Bw8UlTQ,"It would help me to better schedule my tasks if the feature to repeat a task could be made to be more fluid, i.e. instead of only allowing users to key in ""every week"", ""every day"" etc., it would be better if it allows ""Aug 28, Oct 5, Nov 11"" .",3,2,14.4.0,2019-08-17 08:41:48,"Thank you for your feedback, we'll look into improving the date entry feature in the future :)",2019-08-19 11:17:51,newest,com.todoist +Karabo Masimola,https://lh3.googleusercontent.com/a-/AOh14Ghg9jY_5joYSq_b1L6uAxL9Qc0ETgqF9UQjEmCx9A,Not all can afford premium for reminder,3,0,14.3.1,2019-08-16 16:11:23,,,newest,com.todoist +Skyblugrp -,https://lh3.googleusercontent.com/a-/AOh14GjIhp_C2VW3E58YaPquR8e32WYh8OggAht7q01Yag,everything is locked.... repetition schedule is unable,3,2,14.4.0,2019-08-16 11:20:09,"Sorry to hear that. Please contact support@todoist.com, describe the issue in more detail (what exactly is locked, when exactly does this happen, do you see an error message etc.) and we'll look into it.",2019-08-19 11:14:35,newest,com.todoist +Rp haq,https://lh3.googleusercontent.com/a-/AOh14Gj-XbRcX3BQZQJZYlNjwnNV5Ci6Wv72x8SKuPDknw,hi how can I get this app on my Galaxy watch? ( 46mm) regards,3,0,14.3.1,2019-08-05 13:06:24,"Unfortunately that's not possible :( We only support Android's wearOS and the Galaxy Watch uses a different operating system called ""Tizen"".",2019-08-12 11:08:56,newest,com.todoist +Tiffany Price,https://lh3.googleusercontent.com/-xdFucf8O3So/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPTqnoxxCENRWxYtMnL7-t4vmMuog/photo.jpg,"I like the app so far. One issue is like someone else said, why do you have to pay for the app before doing a free 14-day trial? Second, why don't the notifications pop up where I can see them? That was one of the main reasons that I got the app. I need to be constantly reminded of what I need to do. I have ADHD and remembering a bunch of things that I have to do is a HUGE issue.",3,2,14.3.1,2019-07-28 03:11:29,,,newest,com.todoist +Gibb Son,https://lh3.googleusercontent.com/-5-kSJvf6i-I/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMXc35SD02JZjWTmWYZUNvg_ukP2g/photo.jpg,"Been a paid member for years. They've been completely frozen in time, features people have begged for years have been ignored or if they do it takes them years to implement. Had to wait years just for dark mode. I saw a blog post on their site where the project manager boasts about travelling full time in his car with his family, explains a lot really. They've really let their (once) loyal users down. Hopefully another app comes along and eats their lunch because it's there for the taking.",3,1,14.3.1,2019-07-24 11:18:00,,,newest,com.todoist +Sengthai Phoeng,https://lh3.googleusercontent.com/a-/AOh14GgVbuTBtGdQ-ALcu-eXJDRuCK3fOuqP2ASOKtHcEA,Two pricy,3,0,14.2.2,2019-07-18 13:27:42,,,newest,com.todoist +Peter Dallman,https://lh3.googleusercontent.com/-BF2trRB5CuI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOonEYz_nOV5VYyckLFmjDLn1_6EQ/photo.jpg,Generally very good. I have a few problems when I use it for reminders. working out what I need to write for a week of reminders in 10 days time is a bit challenging.,3,0,14.3.1,2019-07-16 11:30:22,"Peter, thank you for your feedback. Please contact support@todoist.com reg. the issue with reminders and we'll help you out :)",2019-07-22 15:46:18,newest,com.todoist +Pranav Patel,https://lh3.googleusercontent.com/a-/AOh14GjdPveX2xe_5mzgSu2RJGAlWfSV_-O5rGGzgrCNkg,Best app to use. 3 star only because it is not available in hindi language whenever it will be in hindi language i will add my 2 star. Thanks team Todoist. :),3,0,14.3.1,2019-07-08 12:57:46,,,newest,com.todoist +Petr Pohorelsky,https://lh3.googleusercontent.com/a-/AOh14GhnMm2GpS2zyqy0dr1JPV-yNxi-jcdMT6YDLUPo7w,taking stars off because no swipe options. that's just so bad sorry to see that. get back to your previous designs please,3,0,,2019-07-08 04:17:54,,,newest,com.todoist +Marc Gamez,https://lh3.googleusercontent.com/a-/AOh14GgnYagofCYivF5vgCdc0gnKvkVmfgoseQmBBGMZsw,Didnt work out for me,3,0,14.3.1,2019-07-06 01:47:11,,,newest,com.todoist +Anna Edwards,https://lh3.googleusercontent.com/a-/AOh14GjVHZWErWgFn53qzSQDZCSwjpQjbg5KqK9wU6KF,not quite as good as Wunderlist for me... but overall decent and as I need to use this for work now (as wunderlist blocked!) I am trying to get into it broadly. premium features seem quite pricey.,3,0,14.3.1,2019-07-03 21:43:11,,,newest,com.todoist +Rashid Mukharlyamov,https://lh3.googleusercontent.com/a-/AOh14Gg9gIu5meQqAZ9CKZGowPCcSV0_oSnGXPI8fTMvCQ,"I wish widget would have a very compact design, just a list of tasks, nothing more -- no menu bar, no headers, etc. As for me, the widget eats too much of homescreen space and is not optimised.",3,0,14.3.1,2019-07-03 10:08:48,"Rashid, thanks a lot for your feedback, we're working on it already, although we don't have an ETA yet.",2019-07-08 15:00:24,newest,com.todoist +Marcos Orrego,https://lh3.googleusercontent.com/a-/AOh14Gg_-ERLNNPyg7Gt7eQxByMZZnudtcgEi8ehm1iwPuo,notification sound does not reflect the do not disturb option,3,2,14.3.1,2019-06-30 13:05:56,,,newest,com.todoist +Tessa O'Brien,https://lh3.googleusercontent.com/-dhGsDP7oHfo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPJGBa8TCeIVGaR_lRv03EGZA79Cw/photo.jpg,great!,3,0,14.3.0,2019-06-27 21:42:49,,,newest,com.todoist +Ian Price,https://lh3.googleusercontent.com/-yK6SJlOmvng/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPi41jMUPLgo9gWVNq9OplEZoCWMA/photo.jpg,Handy.,3,0,14.3.1,2019-06-26 17:03:44,,,newest,com.todoist +Danica Catral,https://lh3.googleusercontent.com/a-/AOh14GgHqe3Zo82fPkZ_aPn-bW7vLsYLvJ8fHiXiUJjmuQ,Everything is premium. lots of useful things are premium and you actually have to buy them. everything except that is good.,3,0,14.3.1,2019-06-26 01:44:15,,,newest,com.todoist +Guilherme Zanetti,https://lh3.googleusercontent.com/a-/AOh14GiDvvh9lnGLaYUcYYJZ7synNXOJcvPPWjrOgxj9kQ,"Doesn't offer too many options to notes and writing (listing, text fonts and sizes). Tools and resources are very simple and limited.",3,0,13.4.5,2019-06-24 16:25:08,"Thank you for your feedback, we'll look into adding more formatting options in the future. For now, you can use these options: https://get.todoist.help/hc/en-us/articles/205195102",2019-07-01 11:56:14,newest,com.todoist +Bryo,https://lh3.googleusercontent.com/a-/AOh14GjQMBSkopVfR-8FjwmxRegEDXt7OYyOr1Ed9YYarg,This app is great but one thing that bugs me is that it doesnt have the option to attach images to the tasks. You can comment images within a task but I just wish you could directly attach them so you could see it underneath a task rather than having to click on the task then go into comments.,3,0,,2019-06-23 11:07:21,"Hello, thank you for the feedback! Although this is not currently on our roadmap and not part of the design strategy, we will keep your suggestion in mind for future.",2019-06-24 16:15:40,newest,com.todoist +sakina salem,https://lh3.googleusercontent.com/a-/AOh14GjHBdJSoHViz7SAC8obONfhQPj1A-xy3XkXbqxEjA,great app .. keeps things organized. my request is that changes should be saved automatically rather than having to press save like in google keep. i forget to save it before leaving the app usually because i am in a rush and so things don't get updated.. this feature would help a lot,3,4,14.3.0,2019-06-20 15:35:06,,,newest,com.todoist +Les Allan,https://lh3.googleusercontent.com/--BgF5dS_DcU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPRnlk7ja_XkQ4nuzx5yirNLAP_ew/photo.jpg,Helpful features but not everything accessible on app version,3,0,14.3.0,2019-06-20 14:56:21,,,newest,com.todoist +Jessica Johnson,https://lh3.googleusercontent.com/a-/AOh14GhrcpzMtBXFPyNWrE7wNzf8iEF9ShyRSWcPqVPq,"todoist is the best I've found for allowing me to create to do lists and then assign tasks dates and times later, while syncing with Google calendar. Unfortunately, it has a bad habit of deleting past calandar entries, especially those that repeat -don't ever modify one instance of a recurring event!",3,1,14.3.0,2019-06-20 03:49:25,,,newest,com.todoist +twig Hahn,https://lh3.googleusercontent.com/a-/AOh14GjqWPcGPsKJrtQQF755voNVLgBrqctWgzF8yWxKuA,i don't get reminded everyday like i wish Shalom,3,0,14.2.3,2019-06-17 16:46:20,"Hello, could you please clarify? Do you not receive daily review email, or is the problem that your task reminders don't work? You can reach out to us at support@todoist.com with more detail.",2019-06-24 16:04:15,newest,com.todoist +john locke,https://lh3.googleusercontent.com/-gi4J8Makk0s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOt5M_zPAI258d8vSn-SP4_TdGILw/photo.jpg,good but not as good as tick tick. the weak sorting in todoist limits its effectiveness when managing multiple projects,3,0,2.3.0,2019-06-17 01:33:50,"Hi John, thanks for the feedback. Just to confirm: are you referring to sorting in filters? It's not currently available, but this is something we are considering for future.",2019-06-24 16:05:30,newest,com.todoist +Lichelle Grobler,https://lh3.googleusercontent.com/a-/AOh14GhefqLbn_hte8-LUqvp3t9IRr0Ifel8RkXgyM-8Nw,You cant set reminders without paying. What is the point of an electronic to do list if you cant be reminded to do your tasts.,3,5,14.3.0,2019-06-16 08:46:16,,,newest,com.todoist +Josh Kramer,https://lh3.googleusercontent.com/a-/AOh14GgRZg6DeV5mIvISLNEgSsCN_D7oA8srSiNSsJMd2Q,"Seems pretty good, but totally crippled the free version by not allowing reminder notifications. What's the point without those? Not bothering with it.",3,0,,2019-06-15 13:04:59,,,newest,com.todoist +Y G,https://lh3.googleusercontent.com/-mwSWgPW3SAw/AAAAAAAAAAI/AAAAAAAAjw0/AAKWJJN9xydcNOq5JAvjd9bfW1NjwMkyyw/photo.jpg,this app is missing subtasks and obviously no prioritizing subtasks. when subtasks are added if they ever are please make with all the primary task options and a next action option.,3,0,14.3.0,2019-06-14 03:58:31,Sub-tasks are already available :) Please check out this article to see how you can use them: https://get.todoist.help/hc/en-us/articles/206432369,2019-06-18 11:36:39,newest,com.todoist +Nia P,https://lh3.googleusercontent.com/a-/AOh14GgxWWfSos7oe8g-AGAgxvB9Z5gz3y1ir3IO5IOg,Could you please add the option to repeat the tasks?,3,0,14.3.0,2019-06-11 19:18:00,"Nia, we already have such option :) To use it, you can simply type the recurrent pattern within the task's name, for example - ""Call John every Monday at 2pm"" or ""Drink water every day"".",2019-06-18 11:32:46,newest,com.todoist +David Stephens,https://lh3.googleusercontent.com/-W4N-UqiNQ7k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOPXG0Khvmo2C_4sOYzUEALYfEKfA/photo.jpg,be nice to see all tasks by day instead of just 7 days out,3,1,14.2.3,2019-06-08 00:38:20,,,newest,com.todoist +Elliot Leonard Price,https://lh3.googleusercontent.com/a-/AOh14GjhL9Knp-IsDaib_dVzS9lKizB6-3i2HvDZNJdn,"no longer syncs with alexa. useless for my needs edit: thanks for the response. I'll raise it by two stars in the benefit of doubt. hope Amazon solves your issue fast, as alexa is integral to your lists.",3,0,14.2.3,2019-06-04 15:32:07,"Elliot, sorry for the inconvenience. This is an issue on Alexa's end and we're hoping Amazon will address it soon.",2019-06-04 11:02:36,newest,com.todoist +Monica Huisamen,https://lh3.googleusercontent.com/-Vxukt7MqT-g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOIxJ6crTMFHAwfY2nZbR9hrWHEkQ/photo.jpg,"It's really handy for specific dates and categories, but I would love it if there were more customising and theme options that are not for the premium package.",3,0,14.2.3,2019-06-02 19:49:27,"Monica, thank you for your feedback :) Please let us know what other customization options (aside from new themes) would you like to see and we'll try to implement them in the future.",2019-06-04 11:01:57,newest,com.todoist +javid khan,https://lh3.googleusercontent.com/a-/AOh14Gi8XlQtR9ETTStlvGdcNsAQ9NAWYHbN9piZktHgdw,need to increase some options of task editing,3,1,14.2.2,2019-06-02 10:07:43,"Javid, please let us know which options you have in mind and we'll look into it :)",2019-06-04 11:02:59,newest,com.todoist +Princess S.,https://lh3.googleusercontent.com/a-/AOh14GjX-LJOp6GSVD-Tf2gSNPUYYLDRYVlEMyd2m7G0KQ,"There is an issue in this app where comments dont show up on mobile app but you can see it on desktop or web. I have to logout from the app for the comments to appear. This happens every now and then. When it happens, I just need to logout and login but I find that inconvenient. Pls fix.",3,0,14.2.2,2019-05-27 09:09:13,"Sorry for the inconvenience, we are looking into this issue right now.",2019-05-27 11:13:10,newest,com.todoist +Yolanda Mejia,https://lh3.googleusercontent.com/-r2w3PfpDNUo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMudPeg6sbOxjwL7obO6Xnspe9jaw/photo.jpg,I like that you value privacy. So I'm disappointed that tasks within a project can't be broken down into more tasks. The comments feature doesn't seem to be enough of a supplement.,3,1,14.2.2,2019-05-25 15:08:53,You can break tasks down into sub-tasks even on 4 levels :) Please check out this page to see how it can be done: https://get.todoist.help/hc/en-us/articles/206432369,2019-05-27 11:14:03,newest,com.todoist +David Hanger,https://lh3.googleusercontent.com/-EVxArDmFFXY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNYYXfp3EytUFS3h66nth3ySP340A/photo.jpg,a little shy on functionality but for the price it can't be beat. I use it daily.,3,0,14.2.1,2019-05-23 03:24:46,"David, thank you for your feedback :) We'd love to hear what features/functionality would you like to see in our app in the future.",2019-05-27 11:12:46,newest,com.todoist +Frank Zhang,https://lh3.googleusercontent.com/a-/AOh14Gg1H65hRlezVlutLej-zB6ToGzCSUzqU81-amelPew,Can you guys implement a sound upon completing a task? That'd trigger my dopamine production tremendously.,3,0,14.2.1,2019-05-22 02:52:25,"Frank, thank you for the suggestion, we'll consider adding such feature in the future :)",2019-05-27 11:09:36,newest,com.todoist +Katy Hart,https://lh3.googleusercontent.com/-jPeD9OFhngE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNHWwSbqIlpKW5NFzCRYJf4RKSU6Q/photo.jpg,not quite what i need. otherwise looks like a decent app,3,0,14.2.1,2019-05-21 22:39:29,,,newest,com.todoist +Menasse Cloete,https://lh3.googleusercontent.com/a-/AOh14Gj3KzeM-e9TfjxiQQE4j5NHFy2OVvDPDARaBzkOSQ,new,3,0,14.1.0,2019-05-20 11:05:10,,,newest,com.todoist +Dani V,https://lh3.googleusercontent.com/a-/AOh14GhVPeQCJbPnKycDuf1LjNzjzNMLQkdDOsoe0INPtw,"The UI looks great. Love the dark theme. Problem is I downloaded this app because it was advertising watch compatibility in the pictures but the app is nowhere to be found on my Galaxy Watch Active, which was the only reason I chose this specific app.",3,1,14.2.1,2019-05-18 15:54:08,"Dani, please note that our app only works with the standard wearOS system. If your watch is indeed running wearOS and yet it still doesn't work, please contact support@todoist.com and we'll look into it.",2019-05-20 11:06:54,newest,com.todoist +Damien Watkins,https://lh3.googleusercontent.com/a-/AOh14GjIT94yRUMT6Bq_B10DwUuBGD-urtkX-fKE9hdZMPo,"been using todoist for some months now great app but need to make the google home experience better. it would be great if it would ask to set a time and date and would i like to change the title of the context when it asked if you would like to change the context, add a label and move to a different project.",3,3,14.2.1,2019-05-16 09:40:41,,,newest,com.todoist +Phil Sims,https://lh3.googleusercontent.com/a-/AOh14GgaGKUg_FZvp63I_jNgFDMYmiZS2G-dxpTUxH58Kg,Still trying to learn how to use the app. I'm going to go on YouTube for some help.,3,0,14.2.1,2019-05-15 03:30:04,"Phil, feel free to check out https://get.todoist.help/hc/en-us where you'll find instructions for every feature in our app as well as helpful videos showing how they work :)",2019-05-20 11:01:36,newest,com.todoist +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"This app and Todoist Web are nice products, but they do have their issues: 1. It's hard to know what to expect from Todoist in the future. Updates and fixes take a very long time, and there is no public roadmap or issue/request voting system. 2. Todoist promotes itself as great for the GTD method, but it lacks core concepts like Next Actions, Waiting For, and Reviews. 3. The app refuses to start if you don't like Google Services (GSF) on your phone.",3,3,14.2.1,2019-05-13 23:28:50,,,newest,com.todoist +Matthew Gulenchyn,https://lh3.googleusercontent.com/a-/AOh14GhiaNZf_BLfkByUhPyB2WOtixZ-zLmuS6sE_e8QQA,no to do hstoryi tracking??,3,0,14.2.1,2019-05-13 03:14:21,"Hello Matthew, you can view completed tasks in every project (three dot icon in the top right - Completed tasks). We also have the Activity log feature (Premium): https://get.todoist.help/hc/en-us/articles/209430045",2019-05-13 16:40:32,newest,com.todoist +Eric Fach,https://lh3.googleusercontent.com/-g71OK0MCR90/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPtKK7a4laJ_QJDPSGysATYmZaQqA/photo.jpg,"$36 for premium and they won't even respond to my email for technical help. Whatever, I figured it out. Good app. No help.",3,3,14.2.1,2019-05-12 22:59:37,"Eric, sorry to hear that. I can assure you that we respond to every single ticket we receive. Please contact support@todoist.com and let us know which email address did you use to send your previous ticket from and we'll check why you haven't received a reply yet.",2019-05-06 11:31:24,newest,com.todoist +Jon Ford,https://lh3.googleusercontent.com/a-/AOh14GjVx7MconQ-uBusxPVZPkj8lEKRIVhlvImEKgTyZA,"Works great, easy to move unfinished tasks. why the 3? because they want 3 dollars a month to review completed tasks. there are others out there that don't charge.",3,1,14.1.0,2019-05-08 23:04:10,,,newest,com.todoist +Joel,https://lh3.googleusercontent.com/a-/AOh14GjxDng-37vg8r8X6ETrFS5CW9vkSP-ji9Lp_p5DhQ,"Right now I""m using Todoist for simple tasks, as an inbox for research and non-essential stuff but Todoist needs to step up their game. I don't use Todoist for long-term planning (I use my other task manager for that) or for important tasks or projects because Todoist simply is not built for actual projects although it refers to its lists as ""projects"". What Todoist and many users actually are wanting from Todoist is a task outliner close to MyLifeOrganized, Notion, Dynalist where projects exist within the task outline. Had to give it a three star ""Meh"" rating.",3,5,14.1.0,2019-05-07 02:51:48,,,newest,com.todoist +Tomislav Salar,https://lh3.googleusercontent.com/a-/AOh14GgThcosbVujGMni8UnUE9zslskk5pj3weDoz1sC,like,3,0,14.1.0,2019-05-03 08:13:40,,,newest,com.todoist +Tony Vu,https://lh3.googleusercontent.com/a-/AOh14GhCFgjFQhpV5Hv_7u1PlcyjbhDHOQbrtHbKxSY_,"it technically does most of things you would want a list app "" to do "", but it seems to make them a bit tougher than other apps, or charges",3,0,14.1.0,2019-05-03 01:54:21,"Tony, sorry to hear that. Could you please mention at least a few examples of features that you find too difficult to use? This information would help us understand the issue and fix it based on your feedback.",2019-05-06 11:38:07,newest,com.todoist +Oleg Andelman,https://lh3.googleusercontent.com/-Ge87hSgLOtA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOGbf4QvzSuZMRWaz_FrHI5z75Tnw/photo.jpg,"This is wonderfully simple and functional app UPDATE 4/30: Lately I've been running into some limitations of this app. For example for some reason could not sort tasks when looking at the label, or on start screen. What is more troublesome are latest updates. For some reason they removed ability to customize start page. That's the feature I relied on day to day. They have also made mobile app LESS convenient to use. I am now afraid to complete tasks by accident due to change in app layout.",3,0,14.1.0,2019-04-30 10:44:07,"Oleg, we'll add an option to reorder task in different views in the future. We didn't remove the option to customize your start page, we only removed the ""custom query"" option, but you can still use such query in a filter and then set this filter as your start page :)",2019-05-06 11:28:06,newest,com.todoist +w k,https://lh3.googleusercontent.com/a-/AOh14GhVsYBsYKhIity0rg9y4f6OBU3569s4OqYi8d2fWg,UI is hard to understand,3,0,,2019-04-26 08:48:42,,,newest,com.todoist +Tim Morrison,https://lh3.googleusercontent.com/a-/AOh14GiEwX91cjk1-S5xcPs1vfshBql63B2M3wsapvqmqZc,Gotta be kidding me! I don't mind paying premium but not for adding notes to a task. No way. This feature is free on every one of the 100+ ToDo apps in Play. Other things should be charged for.,3,0,,2019-04-17 19:46:15,Premium includes various features https://todoist.com/pricing - but unfortunately we can't offer all features for free while maintaining a high level cloud-based software with multi-platforms. We're constantly developing new and improving old services. We’re sorry to see the pricing seems to have influenced your overall rating so significantly. :´(,2013-02-19 15:25:03,newest,com.todoist +Hernando Rosendo,https://lh3.googleusercontent.com/-gwRF6zycBq8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPQQZR0k5mn5-LIdkl3UIMRemQXDA/photo.jpg,Is this offline? Or can you use this even though your not connected to the internet?,3,1,,2019-04-17 12:21:36,"Hernando, while it is a cloud-based app, it can be used offline (while you're logged in) and will sync data later when you connect :)",2019-04-23 11:18:51,newest,com.todoist +Andy Hickman,https://lh3.googleusercontent.com/a-/AOh14GjcUJemnFZXs8jtmLGm0W7K_9NBzUyYZt-3Al2uwA,"**Update** After about 4years, I have grown frustrated with Todoist. The support team takes around a week to get back to premium members and almost ALWAYS w/ a generic ""thanks for your feedback but I'll say nothing tangible"" response, but 24hrs if you post publicly on Twitter - priorities seem to be off. Development has seriously plateaued. No significant features in a very long time. It seems like they are falling behind in the market.",3,0,14.1.0,2019-04-16 15:46:45,"Andy, sorry to hear that. We always try to respond in less than a few hours regardless of how you contact us. We haven't released many new features lately because we were working on a major rewrite of our back-end which was necessary to implement many requested features so soon you'll start seeing lots of great changes :)",2019-04-23 11:21:44,newest,com.todoist +Evelyne,https://lh3.googleusercontent.com/a-/AOh14GgSGO77SVQHX1UOEM73t8hRl7xxTjjIz-Xg2pPygg,"Overall i like this app and i am wondering if i should pay for the premium version, because there are serious limitations on the free one (no notes or labels)... But there is one thing that annoys me : the impossibly to control the view settings. It would be better if they had options to change the size of panels and size of fonts and smaller spacing between each entry. It would allow for a better overall view and/or permit to view more things at once and reduce wasted space of the left sidebar",3,1,14.1.0,2019-04-13 20:58:03,"Evelyne, thank you for your feedback, we'll consider adding such options in the future.",2019-04-15 11:38:18,newest,com.todoist +Johnette Morris,https://lh3.googleusercontent.com/a-/AOh14GhOeAKvvX16Ve1nS34k1afxZQQTrS0kgfSSxFVPkw,"I really can't speak to the full experience, because I do not have the premium version, but so far the free version has helped me with keeping my projects and tasks in one place. I am still getting the hang of prioritizing, but that is more of a personal thing.",3,0,14.1.0,2019-04-11 02:55:42,,,newest,com.todoist +Ace B,https://lh3.googleusercontent.com/a-/AOh14GhpA9Z4jmXygtD9tZGy6jQkersUfoMjLkp6idQZ,This app seems great. However I switched to another app mainly because the reminder alarms and reoccurring task options are locked without premium. What the free version let's you do is fine but not impressive enough to risk a subscription billed annually. They should give a free premium preview for a week or two so this app can showcase itselbetterf. Without access to reminders it felt more like a note keeping app that i had to remember to check which hindered the promised productivity boost.,3,0,14.1.0,2019-04-09 17:52:21,,,newest,com.todoist +pooya tolideh,https://lh3.googleusercontent.com/a-/AOh14GiEhxLI503EvxdnAv_428r1WQJoTEmnPvdlHQLO,"I've used Todoist for years and it's a fantastic app BUT I won't give it more stars unless they show sub-projects under the parent project again, like it is on desktop. **Edit**: I added one more star for having configurable swipe settings, which I really appreciate. This feature allows you to replace swipe-to-right to ""Select"" with ""Done"" which is far more useful.",3,18,14.1.0,2019-04-09 13:01:10,Thank you for your feedback. Reg. swiping to the right - this can be configured in the settings.,2019-04-09 12:11:38,newest,com.todoist +Daniel Garcia,https://lh3.googleusercontent.com/-yIM3kg34Tao/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNw-34i2V2Lyk_wYVQaPUAMxq8Xjg/photo.jpg,it makes you rate the app and its extremely annoying.,3,0,14.1.0,2019-04-08 23:59:45,,,newest,com.todoist +chris thoka,https://lh3.googleusercontent.com/a-/AOh14GjEiMUPT3-iMvXH0g8xMGZ-cQx4MczVPpeJ7eZcfg,Awesome,3,0,14.1.0,2019-04-07 07:02:41,,,newest,com.todoist +jesse vadasz,https://lh3.googleusercontent.com/-ymKlWu_JDeA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOTmOfTj__9y2-ZGyFi_dtCqmVicw/photo.jpg,good app,3,0,14.1.0,2019-04-06 15:37:56,,,newest,com.todoist +Adrita Khawash,https://lh3.googleusercontent.com/a-/AOh14GjtLJVuNhI4tHXDRLXPE02JA7wTyk_DcAh2ZzdnbA,"Came highly recommended. Tried it. HATE that I can't see the subtasks in a project(why even..), and apparently that's a recent update! Well no one seems to like this feature, or at least there should be an option to either have subtasks or not, so hope you guys bring it back. Will use it then. Another observation- most of the top-notch features are unavailable to non-Premium users, and not many are willing to subscribe. Seems a bit unfair. One time payment would be great. Will that change?",3,1,14.1.0,2019-04-06 08:31:09,"Adrita, thank you for your feedback :) We'll look into adding an option to display sub-projects when selecting a parent project. As for the pricing model, it's unlikely that we'll change that, we offer Todoist Premium as an ongoing cross-platform service, for which a subscription model is more viable.",2019-04-09 11:53:56,newest,com.todoist +Michael Robbertze,https://lh3.googleusercontent.com/a-/AOh14GjxzR99FqUjeweo65vqQMKT6FOv1AKaSbXKMXv6uw,"It's good, but everytime I mark a task as completed on the widget I have to open the app and tell it to sort my tasks by date again. You guys should include a setting to choose how you want your tasks ordered and reorder them by that setting everytime. Cause it's annoying having them reorder themselves in a way I dislike constantly.",3,0,14.1.0,2019-04-05 16:04:45,"Michael, thank you for your suggestion, we'll consider adding such option to project views in the future :)",2019-04-09 11:55:08,newest,com.todoist +Victor Gauzzi,https://lh3.googleusercontent.com/a-/AOh14GiskxJlVixB8T-XszfhYVLLM0NYRvsDyic_NGZKbg,"its a cool app, it really is, but developers need to understand that a subscription based system is not for every app. im fine paying a subscription fee to netflix, or Spotify because there is new content almost daily, but i refuse to pay a subscription fee for a todo list app. make a payed app, ill buy it for 30 bucks, what i wont is give you 3 bucks a month everymonth and add yet another subscription fee to my list",3,16,14.1.0,2019-04-01 17:58:04,,,newest,com.todoist +Danell Burow,https://lh3.googleusercontent.com/a-/AOh14Ggy35RduxBPDoq-8YQSjYyUU-FVzx4_-6aeUmGQ,"only been using for 3 days, easy to use",3,0,14.1.0,2019-04-01 03:00:46,,,newest,com.todoist +Fariborz Arbasi,https://lh3.googleusercontent.com/-pWKqcLWVxoc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPVf1Ds2waaqrMxzIbVv88tiAPcpA/photo.jpg,It's good for me.,3,0,14.1.0,2019-03-31 07:21:57,,,newest,com.todoist +Andriono Slamet,https://lh3.googleusercontent.com/-YrNlhbWCEGA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOg68XXXiIMCc2Tq_vtP3tY9hF1oA/photo.jpg,excellence app. but now widget error on asus zenfone max 3,3,0,14.1.0,2019-03-28 14:07:34,"Andriono, sorry to hear that. Please try to reinstall the app and if this won't help, contact support@todoist.com with more information about this issue - what error do you see exactly, when does this happen etc.",2019-04-09 12:05:49,newest,com.todoist +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Free version does what I need, with the exception of undelete when accidentally clicking the wrong thing. However the cost of pro version too much for just that feature",3,0,14.1.0,2019-03-27 08:50:30,,,newest,com.todoist +Amit Siewnarine,https://lh3.googleusercontent.com/-ax8pMmvSu4g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOrZ2_7DQO6q3ClRLiYtNaxXSSDUw/photo.jpg,"Good app. a lot of useful features. As a premium customer, I would like to have the ability to export to an excel or spreadsheet program for reporting purposes. Also, the app freezes a lot on Windows",3,0,14.1.0,2019-03-26 10:54:37,,,newest,com.todoist +Ruth McAuliffe,https://lh3.googleusercontent.com/a-/AOh14GixVAENbi-TUq1ZIOFFp-X1-F9mk2YznbrwUsW45A,"I like the way this app is so intuitive to use but it has just been updated and there are dots that can be selected. Generally on websites these are used for options, you select one then do something with it but in Todoist when an option is selected it deletes that task. It is very confusing and counter-productive. Swiping the task was much more intuitive. I don't know why this has been changed when it worked fine as it was. As the saying goes, if it ain't broke don't fix it!",3,0,14.1.0,2019-03-24 08:54:48,"Ruth, the circles won't delete the task, these are checkboxes you can use to mark the task as completed :) You can still configure the swipe behavior to ""complete"" in the settings.",2019-03-26 12:51:54,newest,com.todoist +Qua Couron,https://lh3.googleusercontent.com/a-/AOh14GimNa2y8Q8hoyfQAkC-YdHF-_3xZzNlNZl5HdDvOA,"Widget seriously needs fixing. Screen real estate is important, and your widget is huge & wastes so much space. Please set up options for controlling text size in it & try to remove dead space, & the title of the app, since it's unnecessary. This is almost a deal breaker for me. :( Also, small request, is there any way you can change the task example to anything but the name Alex? Like ""someone"" instead, because honestly it triggers me pretty bad (abuser). Thanks for considering my comments.",3,3,14.1.0,2019-03-21 19:30:50,"Thank you for your feedback, we'll consider adding an option to change this in the future.",2019-03-26 12:47:32,newest,com.todoist +Mike M,https://lh3.googleusercontent.com/a-/AOh14GhGMqfT4eWTUE1Q2aRFgSF-6fzHPowuF7YjqIyb,"Please ad an option to turn off check boxes on the widget. Since it was added, I'm constantly checking off items by mistske. Once you do this, it is tedious to get the item back.",3,8,14.1.0,2019-03-19 16:10:16,"Mike, thank you for your feedback, we'll look into it.",2019-03-26 12:42:55,newest,com.todoist +paeonia321 Z,https://lh3.googleusercontent.com/a-/AOh14GgggaZYHUeIWeoBRj26uCDtdvS1lTsgbAqR69o7tQE,"Very nice looking, the pricing is just right, and I love that you can have subtasks upon subtasks. But... almost nothing about it is intuitive. For an app that is all about helping the user be more productive, to have a new or occasional user blundering around poking and prodding until the app lets them accomplish basic tasks... well that is obviously detrimental to productivity and a surefire way to accidentally encourage customer churn. UX test your app please.",3,0,14.0.0,2019-03-17 04:58:37,,,newest,com.todoist +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Best to-do application. Still needed calendar view.,3,0,14.0.0,2019-03-16 07:59:40,"Thank you for your feedback, we'll look into adding such view in the future :)",2019-03-19 13:49:57,newest,com.todoist +Rowland Olamide,https://lh3.googleusercontent.com/a-/AOh14GitTavn0Cr2vXOwVsCE3IFrKc3Epw-GdNBGfjXm,was nice using the app ...getting used to the interface,3,0,13.5,2019-03-15 17:10:16,,,newest,com.todoist +Britt Smiley,https://lh3.googleusercontent.com/a-/AOh14Ggbda2VSitzXWwjkOZFjOoxaiKt3dW0MemgO5Fh,I love the app but a possibility to put in task progress (0-100%) would be great! In the updated version when I select the filter 'view all' on my widget the subcategories are gone... And now all tasks are only ordered by priority without regard for category. That is very very confusing!! Please bring the categories back!! Or at least an option to show them again.,3,1,14.0.0,2019-03-13 15:51:15,"Britt, thank you for your suggestion, we'll consider adding such option in the future. In the meantime, you could try to break big tasks down into sub-tasks and keep track of their progress this way :)",2018-11-19 12:34:22,newest,com.todoist +Kundan Kumar,https://lh3.googleusercontent.com/a-/AOh14GhV7uc-NfeJlCE0VQVmSzfkHI5YfqtPzKDPITEN,very good,3,0,13.6.1,2019-03-11 04:29:35,,,newest,com.todoist +Brett Fuoco,https://lh3.googleusercontent.com/a-/AOh14GhFefeAKYfkGEa1Xard7PiHmUW2v8cwGQWy9B2jfQ,"They changed the priority colors, so that instead of a gradient, it now goes grey, blue, yellow, red. I don't think this is an improvement - it is not immediately apparent to me which priority blue is at a glance. They also took away the priority color strip on the left and replaced with a colored checkbox. It looks worse to me. I'm not sure this was necessary, just so that the user could close out a task with a single click.",3,10,13.6.1,2019-03-07 15:01:58,,,newest,com.todoist +Muhammad Bhatti,https://lh3.googleusercontent.com/a-/AOh14Gis6F1GFNupU-mAcSfvbjRhg14-PptazqMEzVb1,A very helpful software especially in management work,3,0,13.6.1,2019-03-06 16:23:28,,,newest,com.todoist +Joel Smith,https://lh3.googleusercontent.com/a-/AOh14Gg7d6SckS9y2qgwBIHiuMa20tr3UclMQdblV-pAUA,"Used to love this app, but the new widget is ugly, unreadable, and too easy to accidentally check something. I'll be looking for a replacement if this hasn't been fixed by the time my subscription runs out.",3,2,13.6.1,2019-03-06 12:36:02,"Joel, sorry to hear that. We'll consider adding an option to remove the checkboxes.",2019-03-11 16:25:00,newest,com.todoist +Jim Grandits,https://lh3.googleusercontent.com/-Pz-KQgUehmw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNB3evagvvVd6Q2j7zoUyNywzd-LA/photo.jpg,"Every time you ask me to rate it, my review goes down a star. Stop asking me to rate it, I already have.",3,0,13.6.1,2019-03-06 03:23:12,"Jim, sorry for the inconvenience, this bug will be fixed soon.",2019-03-11 16:26:37,newest,com.todoist +Curtis Sirl-Moore,https://lh3.googleusercontent.com/-BUOhiHB2_84/AAAAAAAAAAI/AAAAAAAACzA/AAKWJJMJ2ldGmnS77gcxLL3W4wRT7o-eEg/photo.jpg,Absolutely love the app but the new checkboxes take up too much space. Please add an option to hide them.,3,0,13.6.1,2019-03-05 14:06:24,"Thank you for your feedback, we'll consider adding such option in the future.",2019-03-11 16:19:01,newest,com.todoist +Lori Cooke,https://lh3.googleusercontent.com/a-/AOh14Gi8N83Nqv7qkeGSP3_QBpz5zWhsX5OE98ZuKmM06g,I don't understand why the changes I make in this app don't sync with Google Calendar. What am I missing?,3,0,13.6.1,2019-03-05 00:50:57,"Lori, if you're using the direct integration, please try to delete it and set it up again. If you're using the iCal feed, then Google will only sync those changes once a day.",2019-03-11 16:21:30,newest,com.todoist +SIJU T. KURIEN,https://lh3.googleusercontent.com/a-/AOh14GhZ074tREswhb7b-478zQt-dUnXcLNCTN4SB6YDhQ,paid app,3,0,,2019-03-03 17:17:04,,,newest,com.todoist +Daniel Lima dos Santos,https://lh3.googleusercontent.com/a-/AOh14GgAPZtO_1QGv9uSh6Xh7yw5T_lZs8Axa8IwguLFfA,Removed two stars because of the horrible checkboxes. Changing things like that without a option to disable is a disrespect to paying customers. [previous 5 star review] Recommended for anyone who wants the most feature filled to-do list. Tested a lot of them and this really stands out. You can adapt it to a lot of workflows and the new integrations made it even better!,3,4,13.6.1,2019-03-03 03:00:47,"Daniel, sorry to hear that, we'll consider adding an option to disable the checkboxes.",2019-03-04 15:24:22,newest,com.todoist +Cory Gallaher,https://lh3.googleusercontent.com/a-/AOh14GhTTRYcIyFhu-z9U32rQWD2IG8-kB0K6vmldOsURw,I dislike the update but mostly I dislike that it was changed and I had to look here to find out why. If you are going to change the core functionality of the app at least say so when I open it. I am greatly fighting my response to just uninstall out of frustration.,3,3,13.6.1,2019-03-03 01:37:41,"Cory, sorry to hear that, we always describe the changes in the app's changelog.",2019-03-04 15:24:08,newest,com.todoist +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Great app but please give an option to disable checkboxes. I hit them all the time by accident and there's no Undo on the widget :-(,3,2,13.6.1,2019-03-02 18:04:08,"Sorry to hear that, we'll consider adding an option to disable the checkboxes.",2019-03-04 15:22:54,newest,com.todoist +Chon Seng Che,https://lh3.googleusercontent.com/a-/AOh14GgdE9ZTr9tip_iVA117jeKEz6KkOOFX4MBj-lFIjgA,i hate the checkbox so much... Please make an option to remove them. Totally ruined the old nice swiping experience.,3,8,13.6.1,2019-03-02 10:10:04,"Sorry to hear that, we'll consider adding an option to disable the checkboxes. Please note that you can still swipe tasks to complete if you configure the swiping gesture to ""Complete"" in the Settings.",2019-03-04 15:19:47,newest,com.todoist +Sibi Sengottuvel,https://lh3.googleusercontent.com/a-/AOh14Gig-XJB-Fn33aWZ3fN1X1wG9xfJvSC0P6zrkssMYg,"i dont like the new update. tapping the circle to finsish taps is not nearly as satisfactory as the swipe from before. more importantly however, this means i very easily mark tasks as done from the widget by accident as it only requires one tap now. (before the widget required 2 taps to mark a task done which is how wdgets should be).",3,7,13.6.1,2019-03-02 07:44:50,"Sorry to hear that, we'll consider adding an option to disable the checkboxes. Please note, though, that you can still swipe a task to complete it. You can configure what the swipe gesture will do in the Settings.",2019-03-04 15:18:55,newest,com.todoist +Brajeswar Das,https://lh3.googleusercontent.com/-bevuBpPqsT4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOrQ0hls15dmHjRpoWgymhZnLEAAA/photo.jpg,Quite boring app and can't add subtasks.,3,0,,2019-03-02 01:53:28,"Sorry to hear that. We'd love to hear what exactly do you find boring in our app, this would help us understand the issue and improve it based on your feedback. As for sub-tasks - you can add them as described on this page: https://get.todoist.help/hc/en-us/articles/206432369",2019-03-04 15:17:00,newest,com.todoist +Iulia Danila,https://lh3.googleusercontent.com/a-/AOh14Gjbo0RxxjG6hWtWOsmyZIPE6EtW9JKMzS7SImMF1g,"It's not a bad app but I find it too cumbersome to navigate, I would have liked a simpler display of tasks, visually and organizationally it needs work.",3,6,13.5,2019-02-25 12:54:16,,,newest,com.todoist +Ritesh Karankal,https://lh3.googleusercontent.com/-w33cDaC_qjs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMVtj3G0R1rpo446-suQCHJ5H9iMw/photo.jpg,If it had reminders in free version it would have been the best to do list.,3,0,13.5,2019-02-25 05:20:41,,,newest,com.todoist +Priyesh Jaiswal,https://lh3.googleusercontent.com/-R2T-vBmuR4s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN8grrTlIyJ9jZhzIF3c_GBIADTaA/photo.jpg,Baf,3,0,,2019-02-23 05:39:50,,,newest,com.todoist +gorcin stojanovic,https://lh3.googleusercontent.com/a-/AOh14GjVEbuNLyMpVPnnW9Ci30ceKIBq-A3EBJ7CN_vvMQ,good but not fully free,3,0,13.4.9,2019-02-22 21:25:43,,,newest,com.todoist +Caroline Morais,https://lh3.googleusercontent.com/a-/AOh14Giicn3eiZTVnh_ffIZzYiTk7Xmm95cqQEeRdniMRQ,"The idea of the app is great, but many services are paid. The free version is more limited than I thought.",3,15,13.5,2019-02-22 01:32:39,,,newest,com.todoist +A. Burns,https://lh3.googleusercontent.com/-J3UsJZJrasg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPGfyOHbVN22n-AILUMyGJrCze-FA/photo.jpg,"Makes a less-than-good first impression on new users by makng word input as scheduling as cryptic as possible and having no undo for marking things done, or way of looking up what you accidentally marked as done. A pain in the neck in many ways.",3,0,13.4.9,2019-02-19 17:39:40,"Sorry to hear that. Please send us a few examples of the dates you were trying to use, but didn't work because of incorrect syntax. This wold help us improve it in the future. There is an ""Undo"" option at the bottom whenever you complete a task (or perform other actions). You can also use the top-right menu to access and un-complete finished tasks.",2019-02-25 12:48:22,newest,com.todoist +Jakub Królikowski,https://lh3.googleusercontent.com/a-/AOh14GhlDzhj4rs99ZGFQt5fw3f23K_qcykYxu0IivdUsQ,sync between gcal was so bad that I wasted plenty of time waiting to add a single task. For almost half a year it worked fairly nice but that problems with sync today was enough to lose any trust for keeping important task on that platform,3,0,13.4.9,2019-02-19 12:33:58,,,newest,com.todoist +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,good app,3,0,,2019-02-11 01:33:12,,,newest,com.todoist +M Walters,https://lh3.googleusercontent.com/a-/AOh14GhSjZn7Ch17QNxoqE1VhkwQ5yav1pptAADXTEbJrg,"looks great, but reminders/notifications are a premium feature. Google calendar is better.",3,0,13.4.7,2019-02-08 02:49:05,,,newest,com.todoist +Amanda Norton,https://lh3.googleusercontent.com/a-/AOh14Ghv69SUKU1HYih5r1ewW_d0iUpQ5U6dX96OuHIF,still getting to grips with the app. I'm sure it's great.,3,0,13.4.7,2019-02-07 10:29:05,,,newest,com.todoist +Keshav Kumar,https://lh3.googleusercontent.com/a-/AOh14GhklJVw5tfogVAeTKE-Gen_g3oyYzQe07oK2mDsqw,phone app is great and syncs well but windows app always jumbles my tasks so i would recommend using online app on your computer,3,0,13.4.7,2019-01-31 09:40:30,"Thank you for your feedback, we'll look into improving the Windows app in future updates.",2019-02-04 11:54:24,newest,com.todoist +Laís Tomaselli,https://lh3.googleusercontent.com/a-/AOh14Gj1EEQg_hy7ucnZUve0E9WTfFEGOkUIjK2QSE2Rqy0,"It's a good app. It's pretty, minimalist and works really well. It just really bothers me that the ""undo"" (button that appears when you make a change) gets in the way of adding a new task and gets accidentally clicked, so I have to wait for it to go away. I would suggest for the developers to please take a look and see if you can adjust the placement of the buttons in this case. Thanks!",4,10,15.4.0,2020-04-04 14:43:48,,,most_relevant,com.todoist +Jennifer McGaffey,https://lh3.googleusercontent.com/a-/AOh14GiVnoQODHs_IulDDZSpuYx0LyQBLrg62LKdOGHMrg,"The app is excellent; simple, streamlined, functional to-do list. However, the newly redesigned widget gives me a heck of a lot _less_ control. How do I select and reschedule a group of tasks? How do I open the app from the widget (so I don't need both the widget and an icon)? If I wanted to do complex editing, I could easily open the app, and the widget could do things the app couldn't. Give it back!",4,10,15.4.0,2020-03-28 07:03:17,"Hi Jennifer, thank you for the feedback! We are looking into those features now :)",2020-03-30 19:33:56,most_relevant,com.todoist +Thomas K,https://lh3.googleusercontent.com/a-/AOh14GgGr6oFdZMiU3c-P_EpQJhZiW45jWMewablQqJyTw,"By far and away the best of all the dozens of task manager apps I've tried using! So intuitive. Can't wait for the ""upcoming"" feature that's on the way. But gotta thumbs-down the new widget. No way to open the app straight from the widget so I removed the widget from my home screen all together.",4,0,15.4.0,2020-04-03 17:17:35,,,most_relevant,com.todoist +Duha,https://lh3.googleusercontent.com/a-/AOh14Ghoo5Zhf4ZGGSJpjmd8kt4Kq3fHNBZxAGA4Xhe8Aw,By far this is the best to do list app I have used . But I have 2 issues with new widget. First :I can't press the icon and go to the app like I used to. The icon is gone now . And second: the font is too small .really hard to read my list .,4,4,15.4.0,2020-03-28 09:42:15,"Hello, thank you for the suggestions! We will look into this with the team :)",2020-03-30 19:32:55,most_relevant,com.todoist +Kari Johnson,https://lh3.googleusercontent.com/-tj4fmqLKfkw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMqRDjPlLgnOkZhEaOephigizwJBw/photo.jpg,"Great app! Easily share lists with others. Easy to add or check off items. One enhancement request would be to make another default view option the list of all projects, rather than having to choose one project to default view.",4,1,15.3.2,2020-03-15 23:24:50,,,most_relevant,com.todoist +Anna F.,https://lh3.googleusercontent.com/a-/AOh14Gg9NX7Fzef6V7G5Aaoq_D1a6_gGLoMrENdSerrqv4s,"I LOVE the new widget! It's finally useful! Please let us change the time when the day changes... For example, I go to bed at around 3AM. I consider any time before that to still be the technically previous day. That completely messes up tasks that repeat after completion...",4,1,15.4.0,2020-03-27 10:35:43,"Thank you for the suggestion, Anna!",2020-03-30 19:44:29,most_relevant,com.todoist +Ayush Gupta,https://lh3.googleusercontent.com/a-/AOh14GjioVp1YLpeZYyOsy1aaLAzWZTq_c88MB47GFvAaQ,"It's an overall great app but the problem is that it notifies all of the notifications once be it at 8AM or 10PM. If there was an option where tasks are pinned on notification untill you check them from app, I'd give it a 5 star",4,11,15.3.2,2020-03-10 03:56:28,"Thank you for your feedback, we'll look into changing this in the future :)",2020-03-17 14:59:35,most_relevant,com.todoist +Dan Arritt,https://lh3.googleusercontent.com/a-/AOh14GiOKK7TyR8HNtPMDqxGMTY4x4uCcgW_ih4tnWszpQ,Straightforward solution for business and personal use in my cell and laptop. Sometimes I get a bit lost on how to get from granular details back to an overview of projects.,4,0,15.3.2,2020-03-21 09:03:27,"Hi Dan, would you be able to send us your question at support@todoist.com?",2020-03-23 16:48:01,most_relevant,com.todoist +Raphael De Guzman,https://lh3.googleusercontent.com/a-/AOh14GjVuYSUm_SwkTmzd8EBVvCbRhS1znnycKLKm3zY,"Hi can I have an OPTION TO CHOOSE BETWEEN THE NEW AND OLD DESIGNS OF THE WIDGET? The previous version was able to have larger boxes to fit long description tasks, while the new one just puts three dots and shortens the task descriptions to fit in one fixed width, which disables full reading of the task(bad). Also, subtasks cannot be seen WITHOUT CLICKING the main task, which kinda defeats the purpose(again) of having a todoist widget where i should be seeing the overview of everything. Thanks",4,2,15.4.0,2020-03-30 11:39:05,,,most_relevant,com.todoist +Charlie Victoria Taylor,https://lh3.googleusercontent.com/a-/AOh14GjbgEEZvZYuVYiau7hC-75KsEG6s4lhei1aJONqcg,"Good app, just wish you were able to back date a completed task so I can use it for tracking habits as well, but it's a to do list app and works well.",4,0,15.3.2,2020-03-20 01:36:47,"Thank you for the feedback, Charlie!",2020-03-23 16:59:26,most_relevant,com.todoist +David Dirgo,https://lh3.googleusercontent.com/a-/AOh14GiGiPqNNnRaw-V2VTiPhOIWQTfYrlbslymv9U4JDA,"The new widget is an improvement, but the fact that I can no longer open the app from the widget is IMMENSELY frustrating. It means I have to waste home screen space in the app icon, and isn't that what a widget is supposed to avoid?",4,0,15.4.0,2020-03-31 12:47:12,,,most_relevant,com.todoist +Joseph Sarpong,https://lh3.googleusercontent.com/a-/AOh14Gj2TJmFxtvHyXtGSgIfKDH3kvQkYlRwOeutgbHzEQ,"I have barely began using this app (less than 15 minutes) and I am already in love! The Terms you have to agree to alone are just so assuring and satisfying. Kudos developers, kudos!",4,1,15.3.3,2020-03-25 20:57:05,,,most_relevant,com.todoist +Chan Pong Chiu,https://lh3.googleusercontent.com/-vsMzLO4ziZQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNkCtGeaDkWjHU-yIuY-FY02Cjzgg/photo.jpg,It is a fantastic apps. But if they can allow the push reminder in the free version it will make it perfect.,4,0,15.3.2,2020-03-21 10:59:29,,,most_relevant,com.todoist +Алина Матвеева,https://lh3.googleusercontent.com/a-/AOh14GhE6tEXPRD5M0COwKmK9ghbCHGHZDxYQ7GaDdH8,"Please, make an option to use the old style widget. Unfortunartely letters became too small for 4x6 home screen grid.",4,0,15.4.0,2020-03-29 08:06:25,Thank you for the feedback! This has been noted.,2020-03-30 19:12:41,most_relevant,com.todoist +Rildwan Bello,https://lh3.googleusercontent.com/a-/AOh14Ggsi-aXdPNgylhLKGJn908C4Tsn0prL6cJLd199nw,Easy to use. I will however like to have a time boxing feature for my daily activities.,4,0,15.3.3,2020-03-25 09:09:06,,,most_relevant,com.todoist +Caleb,https://lh3.googleusercontent.com/a-/AOh14Gi55Ojcll8-9BxISZvjHcQdGqtewiUJH07XK64zlA,"Useful, efficient, and simple! While some people find the simplistic nature of the app as a downfall, I believe this is one of it's best features. I can make tasks with deadlines and make the subtasks have subtasks, meaning big projects are a lot more step by step and manageable. I've recommended this app to a few friends and would do the same thing for others, especially students!",4,113,15.1.0,2020-01-27 20:48:59,,,most_relevant,com.todoist +Travis Green,https://lh3.googleusercontent.com/a-/AOh14Ggi_8uutxt39lsQNKltYAXC5QyLOJUkaYY-GKVuIl8,"I've been using Todoist Premium for just over one year now. I think I've tried nearly every todo app out there. There has been some quirky behavior introduced over the last few months, especially around rescheduled occurrences of recurring tasks, and it's been a bit frustrating there. But overall, it's the best app for me and the team behind it seem like great people based on my interactions. Give it a shot!",4,11,15.1.0,2020-02-13 03:05:23,,,most_relevant,com.todoist +Yury Karaliuk,https://lh3.googleusercontent.com/a-/AOh14Ggtx_khu2c4dgRbt7rFVDMX6PCXl-KsWCztIY5i,"For me it takes a lot of additional actions to schedule a task and set the reminders. Even in free apps I can do it easier. For one task I've left comments from mobile phone, however I couldn't find then. They were only in the web version. Of cource there are things that I like: projects, subtasks, labels, reminders by location. And access from a mobile phone and a browser.",4,30,15.1.0,2020-01-26 20:00:23,,,most_relevant,com.todoist +Michelle S.,https://lh3.googleusercontent.com/a-/AOh14GgXlhkk8ctLY-ivAhPVSJZ1jhsV0uN8kYaWaXhzaw,"Mostly a good app, helps me keep on top of things. Morning notifications are a bloody lifesaver. My only criticisms are that the free version is rather lacking in basic features, at least for people like me coming from other apps. Also the top bar and the system status bar when in the app are different colors, slightly, and that's always bugged me.",4,13,15.2.0,2020-03-06 13:28:08,,,most_relevant,com.todoist +xeigh,https://lh3.googleusercontent.com/a-/AOh14GgwcqDFYPsXk2-SwWXTRr_kxAnbzld81r4nftXb,"I love this app. I tried many to do list apps but this is the one that meets my satisfaction, I guess? The basic features are good, just right. But I'll give it 4 stars since I'm still finding something I myself can't say and it's not here. Maybe it's in the premium version but I'm broke as hell and I can't afford to pay for it because I have other expenses. I do hope that some other features would someday be free, it'll be really helpful.",4,9,15.2.0,2020-03-04 14:34:56,"Jersey, thank you for your feedback. Please let us know which feature you're missing and we'll try to implement it in the future :)",2020-03-09 14:36:58,most_relevant,com.todoist +Toni F,https://lh3.googleusercontent.com/a-/AOh14GjtpQsY5a-Cbro7R2yYIsYk0zF6P62RqMg3Ar5VaUY,We use it for running our home & project improvements. It is easy to use.. not as user attractive as some but ok.,4,0,15.3.2,2020-03-17 03:47:28,,,most_relevant,com.todoist +Siya N,https://lh3.googleusercontent.com/a-/AOh14GhJtEM_Vemt0BPwNrJCxdZKmtsO_IY2I6bViBtE,"Very nice working space, but the display of things can be a bit nicer.",4,0,15.3.2,2020-03-19 04:07:15,,,most_relevant,com.todoist +Martin Bede,https://lh3.googleusercontent.com/a-/AOh14Gi0BNatRR2LrRyXHhR5WHPoh__si78QJ1rIjQ9Pu_U,The best app for to-do lists. It does have a couple of minor issues: * The widget can become unusable once in a while (stuck forever on the loading screen). * It can also take a couple of seconds for an item to be removed after you check it off on the widget.,4,1,15.2.0,2020-03-04 09:35:00,"Martin, thank you for your feedback, we will soon release a new, improved and more reliable widget :)",2020-03-09 14:39:06,most_relevant,com.todoist +cchamp 4,https://lh3.googleusercontent.com/a-/AOh14Gjr-pJi_G9J_4GP436gvSf7PCnNv_KmNfIOv04_SA,"This is a great app, and I love it, bit I have two small issues with it. First, I don't like how insistent it is with notifying you to complete tasks. Second, I wish the interface had a better tutorial so that it would be easier to have the due dates and such easy to prepare when you enter the task in. Since fixing one would fix both, this is still a great app",4,3,15.2.0,2020-03-02 21:31:31,"Thank you for your feedback :) Reg. the issue with notifications to complete tasks, please contact support@todoist.com with more details about it (are you referring to task reminders, push notifications etc.) and we'll look into it.",2020-03-09 14:42:39,most_relevant,com.todoist +Ben Buie,https://lh3.googleusercontent.com/a-/AOh14GgWvnPCWFpm35cB64R4MaRWamTISsYj91hqV7kzkQ,"Love the app, but there is a bug in the current version of the app where ""next week"" actually schedules things for two weeks out. Actually scheduling in general in the app seems a little wonky. These are new issues as of a few weeks ago. Otherwise it would be 5 stars.",4,0,15.2.0,2020-03-03 16:21:42,"Ben, thank you for your feedback, please contact support@todoist.com about this issue and we'll look into it.",2020-03-09 14:39:33,most_relevant,com.todoist +Andre Moore,https://lh3.googleusercontent.com/a-/AOh14GhJQe8SRNF9xqmpUFWJb7mkB94sxe2LaLVT4YJW,I really like this app. Getting to know all the little features that are included in the free version. It has helped me with my productivity as a sales professional and given me more control of task that need to be done daily to often get forgotten. I recommend this to anyone that find using a to do list helpful.,4,8,15.1.0,2020-01-27 03:26:11,,,most_relevant,com.todoist +c argyle,https://lh3.googleusercontent.com/-RzxTexieOqA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPi1M_NG-NHELw5o6ojSMvfctpY6g/photo.jpg,"I've been enjoying the app. I love how I can easily set recurring tasks. There's just one thing I wish I could change. I wish I could change the hour at which a new day begins. I know that sounds weird, but I am a night owl and usually don't go to bed until after midnight. Before I settle down for the night, I like to review my day and check off tasks that I forgot to check off earlier. But by the time I do that, it is technically a new day and the tasks are automatically marked overdue.",4,5,15.1.0,2020-01-27 07:34:06,"Thank you for your feedback, we'll consider adding such option in the future :)",2020-02-04 12:03:40,most_relevant,com.todoist +Lorenzo Rey,https://lh3.googleusercontent.com/a-/AOh14GiEnkZ8bRegEPBlzuRT_--xq-feoOZSVbDL8TbD-Fw,Hey guys the new update messed up the widget layout for me now everything is smaller and more difficult to read!,4,1,15.4.0,2020-03-27 01:18:52,"Hi Lorenzo, we will look into your feedback with the team!",2020-03-30 19:46:12,most_relevant,com.todoist +Zach Salinas,https://lh3.googleusercontent.com/-bzidP1MqS8s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM8ABz-JAOdW74FMxT2dNDmQKAkSQ/photo.jpg,"Great app for the most part. Functionality is amazing. Sync is great. But, I really hate that this app puts itself on top of whatever I'm doing every 5 minutes exactly. Been through all the settings and turned all syncing off but no. Incredibly obnoxious on my tablet. Haven't had the same issue on my Android phone",4,6,15.2.0,2020-02-22 20:36:18,,,most_relevant,com.todoist +Denis Starovoitau,https://lh3.googleusercontent.com/a-/AOh14GhP01HxiWWWbCd9PEs2HrvsJcqZYxR0pQkcATk9,"A bit inconvenient interface when adding and asigning date to the task. Other than that pretty cool intuitive UI along with minimalistic style. My first choice of todo app, even free version is good enough to keep your plans out of your head but in this app.",4,0,15.2.0,2020-02-17 10:40:41,,,most_relevant,com.todoist +Sarah Jane Woodruff,https://lh3.googleusercontent.com/a-/AOh14GiQ86MLlokP0nEsDLsiXKuywH_qRAr91oI2PYL2AQ,"You responded to but STILL DON'T understand my comment about repeating event scheduling. I KNOW that you can schedule repeating events, & I KNOW how to do that, but each repeating event is scheduled at intervals reliant on the original event date. What if I sometimes would like the event to repeat from the actual completion date? For example, I forget to renew my library books for a week. When I renew them finally l have 3 weeks before I need to review them again but your system says 2.",4,3,15.2.0,2020-02-24 13:06:29,"Hi Sarah, you can try using ""every! 3 weeks"" in this case: it will schedule the next occurrence based on the last completion date instead of the original date.",2020-03-02 15:22:25,most_relevant,com.todoist +Fernando Torres,https://lh3.googleusercontent.com/a-/AOh14Ggi2r4PZDlKsJNAkyESgQ7EkjTfGxg-IGyXENNseg,It's a great app. It's sad it doesn't run on Samsung wearables,4,0,15.3.3,2020-03-27 03:44:45,,,most_relevant,com.todoist +Suaibu MJ17,https://lh3.googleusercontent.com/a-/AOh14GivSck0o2qD_fLBPXjpzoYH8GqSwoaL0m0wqfDwpw,"Todoist is really useful if you have a variety of tasks that you need to carry out, but don't want to write it down on pen and paper.",4,0,15.4.0,2020-03-31 12:28:01,,,most_relevant,com.todoist +Alex Tanti,https://lh3.googleusercontent.com/a-/AOh14GiDjqL6oMR05xMHvLcublpMR1zld50BtSqSAgWR7uU,I like but there are some basic features that aren't free.,4,0,15.4.0,2020-04-04 17:27:25,,,most_relevant,com.todoist +Josi,https://lh3.googleusercontent.com/-Q-Jj0r4qqrs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM4vqXlDtUj152B9B1C1YWkpb6gpQ/photo.jpg,"It's a good assistant for daily life. But I don't like, that in there's a premium upgrade for money.",4,0,15.3.2,2020-03-21 14:45:56,,,most_relevant,com.todoist +Rafael Vega,https://lh3.googleusercontent.com/a-/AOh14GjDyy2_9tSy1w1RE-OYXy7-STKxTcztELC6NAWUsg,"Despite the unresponsive widget, overall a pretty decent app.",4,0,15.3.2,2020-03-17 18:17:47,,,most_relevant,com.todoist +Adil Shareef,https://lh3.googleusercontent.com/a-/AOh14GjsKVYDzlj-epWJNks1R-bmhYe3Bf17JPeaeC2-NA,This app has helped me be productive with the amount of features it has. The only negative I would say is that I would have liked to see the reminders feature included for free,4,1,15.1.0,2020-02-02 10:52:10,,,most_relevant,com.todoist +Circus Freak,https://lh3.googleusercontent.com/a-/AOh14Gic73S9xu5JX-sYey-DMu4arLr5tdcMLB69Intxfw,"Great app, good at keeping you accountable and productive. Would be nice to be able to re-order your to-dos though and set deadlines for when they have to be done",4,0,15.1.0,2020-02-14 19:31:43,,,most_relevant,com.todoist +Satwik Das,https://lh3.googleusercontent.com/a-/AOh14GgDd_-Ba14nTB5_a30_egbYnvYHQUETyeEQ5vkI,Paid experience is better than free. But it will do since there are no ads. UI and design can be made note clutter free.,4,1,15.1.0,2020-02-09 07:28:34,,,most_relevant,com.todoist +Leigh King,https://lh3.googleusercontent.com/a-/AOh14Gi1u6NI3ifkn2ME8j7bF97op3TVuhsBUCX--FWMfA,"Im using the free app & enjoying it alot! Super easy to capture ideas and reminders when they pop into your head, before you forget!",4,0,15.2.0,2020-03-06 06:56:42,,,most_relevant,com.todoist +Stretch Bands,https://lh3.googleusercontent.com/a-/AOh14GhQ352JXlQkjIP3per8UyWoXBTV8C6YCr3r0zGS,"Great app to keep tight training schedules and regimes. Premium isnt necessary, only downfall would be reminders notifications more than once",4,1,15.1.0,2020-02-09 09:07:38,,,most_relevant,com.todoist +Karthik Kannan,https://lh3.googleusercontent.com/a-/AOh14GgPAW5IolrVlwIUlQLYgCBSvqDt_UqkrT_LdeR9Mw,It's the perfect kind of list I've tried. Everything is great. It could be better if we had a calendar view as well.,4,0,15.1.0,2020-02-14 07:17:20,,,most_relevant,com.todoist +Mindaugas Bernotas,https://lh3.googleusercontent.com/a-/AOh14GhUrxvKQcd0jP0A10XRRUlemigSiQk3x1vSCUSbRQ,Seems almost perfect. I'm missing a monthly view feature of the tasks/assignments/etc.,4,0,15.2.0,2020-03-09 23:31:19,"Thank you for your feedback. You can achieve this with filters - set them up to show you all tasks for a month or year or all tasks assigned to a specific person etc. For more information, please check out this help article: https://get.todoist.help/hc/en-us/articles/205248842",2020-03-17 15:01:04,most_relevant,com.todoist +Mackenzie Farquhar,https://lh3.googleusercontent.com/a-/AOh14Ggi7a393XYYxgu72TFT1D5iQdeaI0aGhKg2Gl62,The free option has all the features I need. An alarm would be nice but since I don't have the premium I'll do without for now.,4,1,15.2.0,2020-02-22 15:54:49,,,most_relevant,com.todoist +Ian Robertshaw,https://lh3.googleusercontent.com/--eFIHfvzvGg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMn-FNCQzuHUeYr_-ETgOm0IH3xSA/photo.jpg,Good app easy to use. I like the fact that it emails my daily to do list.,4,0,15.2.0,2020-02-23 19:14:18,,,most_relevant,com.todoist +Nick Mullikin,https://lh3.googleusercontent.com/a-/AOh14GhIBXIc1dQs4ZFFSdsVTRKONG0wq9Tderr1jYkwfw,"Works well, except it keeps asking to change the timezone when I switch to firefox",4,0,15.2.0,2020-03-10 22:39:43,"Nick, please make sure that all devices are set to the same time zone and if this won't help, contact support@todoist.com about this issue.",2020-03-17 14:58:40,most_relevant,com.todoist +Debbie Klont,https://lh3.googleusercontent.com/-7W3URnCLKZI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO7fDBOvBVu7Dfq2WtwH2TBcIsUZg/photo.jpg,"Very useful app, gives reminders, easy to set up.",4,0,15.1.0,2020-02-03 16:36:01,,,most_relevant,com.todoist +Kalina Filby,https://lh3.googleusercontent.com/a-/AOh14Ggfg-wsFdbB_zXELCOUfOxrXzLW8R7myfm7L5HqOQ,Great app only annoying that the mobile and desktop app don't always sync up,4,0,15.1.0,2020-02-05 09:25:19,"Kalina, please try to reinstall the app and make sure it's always open in the background. If this won't help, contact support@todoist.com and we'll look into this.",2020-02-11 11:20:09,most_relevant,com.todoist +Nobi Ki,https://lh3.googleusercontent.com/-zfIlF5N8TL0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNCatNrfGARym8pN1ZRA4G0X32b8w/photo.jpg,"I still feel like it's more complicated than necessary, but it is good for special projects",4,0,15.1.0,2020-02-05 03:37:49,,,most_relevant,com.todoist +Monse J.,https://lh3.googleusercontent.com/a-/AOh14Gh2ugmTFKLOFQkwv6c_1VeypaTc4-ciFDuYr-NDmA,Easy to use and does it job to keep me on track.,4,0,15.2.0,2020-02-20 05:02:44,,,most_relevant,com.todoist +hiraganaguy,https://lh3.googleusercontent.com/-G9pFWYpUmAo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNYg8VqB-MegMLqXCvjw1y7guYLYg/photo.jpg,Easy to use. Will continue further and decide if I will get the Premium.,4,0,15.1.0,2020-02-18 10:51:11,,,most_relevant,com.todoist +Roshel M,https://lh3.googleusercontent.com/a-/AOh14GiqY6oqScXAfien50770fOhYb8-yGuaWUERnyuyRw,All of the free features are really good and I am way more organized,4,0,15.1.0,2020-01-30 10:01:02,,,most_relevant,com.todoist +Paul Whitmer,https://lh3.googleusercontent.com/-u2yjG1fiMUA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPornvhjtbOIpYiAcYUPZ8VnyYR_g/photo.jpg,"I love the Dynamic Add Button, now that it's finally here in the Android version!",4,0,15.2.0,2020-03-06 13:06:12,,,most_relevant,com.todoist +Samson Chan,https://lh3.googleusercontent.com/a-/AOh14GidbvuxBHZ7qTE_8mYNXBhANju3DyrROTMahCWZ1gw,"Having migrated from Wunderlist (Thanks, MS) - really enjoying the similar experience I'm having with Todist. Definitely both worthy of the high praise it gets, and an alternative to Wunderlist for us migrating away. Pros: - The dark theme is really nice - ""Sections"" is a nice way to break up a list / project without having a sub list / project - Having colours assigned to different lists / projects, making it easier to categorise - Option to import from Wunderlist. Note I did not use this feature, but it's a pro because there's an option to i.e. I do not know how well it works or not Cons: - The resizing / reactiveness of the webapp isn't ideal ATM; on a 1920x1280 screen the web app occupies the middle third - Comments are a premium only feature, compared to being in the freebie section of Wunderlist - Ditto on labels being a premium only feature (hashtag support was available in Wunderlist) TL;DR: 4/5 Pretty awesome to-do app. I missing some of the features I had from a competitor but not deal-breakers",4,20,15.0.7,2020-01-10 11:02:26,,,most_relevant,com.todoist +angelica barner,https://lh3.googleusercontent.com/-G49ARsoaiKg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMxmtDeUSvegU9XcXSuHJKS4UvtMw/photo.jpg,Only thing missing from this tool is an in-app calendar.,4,0,15.1.0,2020-02-02 19:39:26,,,most_relevant,com.todoist +Ted Chirvasiu,https://lh3.googleusercontent.com/a-/AOh14GgaMC6fPl0eraJOk73HJJOWXWdhzpEAnkrO48Gbig,"It is pretty good, I use it everyday. However, I think adding recurring tasks is not very intuitive. You have to remember the ""every"" syntax. Some UI would help, especially for new users and non-native English speakers. Other than that, it's a pretty plain to-do list, does not include much gamification to keep you motivated to do what you have to do (other than setting a general goal number of tasks to do in a day or week). Reporting is a premium feature which comes in pretty thin too, you can only see a barchart of how many tasks you've completed each day in the past week or how many tasks you've completed every week in the past 4 weeks. For what it offers, the premium option feels a bit expensive.",4,5,15.0.5,2019-12-26 11:58:10,Thanks for the feedback! We’re thinking about how we can improve our reporting and also do a better job motivating our users to complete their goals :),2020-01-07 15:12:07,most_relevant,com.todoist +the light,https://lh3.googleusercontent.com/a-/AOh14GgrwjrFD_atP0sbut1E2OXh8R4Ab59kccGJ-4qK,I like the design and speed of the app But some features are behind a pay wall that are very helpful ( but they need to get money someway right ) The only thing that i dont like about the app is that its not possible to schedule repeting tasks,4,0,15.0.7,2020-01-16 23:09:25,,,most_relevant,com.todoist +Bradley Hopkins,https://lh3.googleusercontent.com/a-/AOh14Gh-P3nsU6TgW79nYjVJPQZk2yj053NSFJp62v58dxw,"Taking off a star because I'm not sure where else to give feedback about the update. I'm not a fan of having to click the drop-down box in the corner in order to select multiple tasks at once. Especially because the task selection mode expires each time I make a single change to the selected tasks, requiring me to then go into the drop-down menu again to and then re-select all of the tasks I just selected. I really liked before how I could just select multiple tasks and make multiple changes to them at once in a few clicks. I know this change was made to allow easy re-ordering of tasks, although I don't find this particularly helpful because I don't typically re-order my tasks. I would prefer that this is changed back or some kind of compromise is made so that it isn't so cumbersome to edit multiple tasks at once.",4,12,15.0.1,2019-10-30 19:18:49,"Bradley, thank you for your feedback, we'll look into addressing those issues in future updates. Reg. multi-selecting tasks, please note that you can configure the ""swipe to left"" gesture in the settings so that it multi-selects tasks when you use it.",2019-11-04 12:51:47,most_relevant,com.todoist +Alex Galkin,https://lh3.googleusercontent.com/a-/AOh14GgzpxUjCgcmjKH1wQHzQJag6nKLaP30K-3SKh4JLGI,"Powerful and simple. The only thing missing is integration with Google calendar, which I used for years, and I do not see any option to migrate either. So, no backward search for the events, calendar sharing and other integrations. Well, task and project-wise, this is a powerhouse! Much more simple and well designed than Google Keep I've been using for years.",4,54,15.0.4,2019-12-08 15:48:40,,,most_relevant,com.todoist +Kyle Jahnke,https://lh3.googleusercontent.com/-kpNy5KiqjRc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP03g_YEqr88YSKIoewxTgwuRzvNA/photo.jpg,"Almost perfect. A feature I'd love is if using share could predict the project you're adding to based on the app you're sharing from. When I share from Spotify, YouTube or SoundCloud, it always goes to my ""Music"" project. I wish after doing that a dozen times todoist would know that I like to add these links to my ""Music"" protect and preselect it for me.",4,1,15.0.3,2019-11-15 14:31:15,,,most_relevant,com.todoist +Danyelle Hintz,https://lh3.googleusercontent.com/a-/AOh14Gj0kjozwV-qamtfIwYV6guKBSPoW1LHc4Owq-wjkg,"I really enjoy this app! The design is very simple and well put together. The cute designs of people enjoying their day when I finish tasks is almost rewarding, and it's nice when the app tells me to enjoy my day off when I have no tasks. I like that I can color-code things and add subtasks, as well as create different priority levels for tasks. The only thing I wish it had was a monthly view. Then I would give it 5 stars.",4,39,15.0.3,2019-11-11 21:32:37,,,most_relevant,com.todoist +Sajish Ponneth,https://lh3.googleusercontent.com/-PoQNcbv_34o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM4xc70hLQmtBi_2ogy3ZpgWO2lnA/photo.jpg,"It is an extraordinarily designed app. However the subscription price is high. Please reduce the price so that more & more people can enroll Please add the option to have ""end time"" for each task, I mean the ""From"" and ""To"" time for each task. Also the unfinished tasks of ""Yesterday"" can automatically come to ""Today"" since tasks showing in yesterday's list does not make sense. Reducing one star for this. Once these changes are done, I will surely re-rate as 5 stars. Thanks..You guys Rock!!",4,3,15.0.3,2019-11-14 16:30:38,,,most_relevant,com.todoist +Md Fitri,https://lh3.googleusercontent.com/a-/AOh14GjjqvOI7nVOSiQh_z6_hL7eCd9sO8k4fMJUcX8B,A very good apps. It helps me a lot when it comes into managing my time. I love the features where I can set time by simply typing at 8pm for example. Good job developer,4,0,15.0.7,2020-01-15 12:36:55,,,most_relevant,com.todoist +Saurabh Bashera,https://lh3.googleusercontent.com/a-/AOh14Ghsa9DvWWrxc0bePMAo66OI1gaAs8y4q4Ub5WtgWQ,Its good but can work on notifocation panel,4,0,15.2.0,2020-02-23 11:50:44,,,most_relevant,com.todoist +Francesco Panella,https://lh3.googleusercontent.com/a-/AOh14GiKO4nFWJwDgDNaH_NNhMWTrM7E80j0yCi5r6nMyg,"I just would like to have also the possibility to set and see the amount of time estimated per each task or group of tasks, otherwise I am just in love for the app.",4,0,15.0.7,2020-01-13 21:16:00,"Francesco, thank you for your feedback, we'll consider adding such feature in the future :)",2020-01-20 12:34:42,most_relevant,com.todoist +Gabriel Pineda,https://lh3.googleusercontent.com/-sgzkU-4RR38/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNFImGUmBY_GNq8cLE7KCyrkWMf9Q/photo.jpg,"I paid for premium on this and it is by far the best todo app I've used. The only thing keeping it from getting a 5 stars for me is that it needs an option to set what time your day ends or when the day starts. Because i usually end my day at 2am and by that time tasks become overdue and karma points are not credited for the previous day. Nonetheless, great app 👏🏼",4,0,15.0.3,2019-11-15 01:17:21,,,most_relevant,com.todoist +Ben Durr,https://lh3.googleusercontent.com/a-/AOh14Ghx-VjJCiE2nzR1NEKGyM4KVrknA_hQgfHw5xWLSQ,Several features are limited if you don't have the premium version but it's still really useful. I use the widget on my homescreen very often.,4,0,15.0.6,2020-01-11 22:44:17,,,most_relevant,com.todoist +Sergiy V. Zhyla,https://lh3.googleusercontent.com/-BtR2voksne8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOWi9Jay4xpE2uyRV_4r4BFGxH-zg/photo.jpg,What gives you as much flexibility as you need: + projects to grope tasks + lables + powerful filters alow you to create you personal views But: - it is possible to syncronize ONLY one google calendar!!! (which is funny as for Editor's choice app) - it is not possible to grope labels to set common color or search pattern - it is not possible to label a project so that all tasks created in a project get this label. I hole guys will fix the issue with calender otherwise all props do not worth it.,4,2,15.0.4,2019-12-06 14:44:17,,,most_relevant,com.todoist +Defrauxche,https://lh3.googleusercontent.com/a-/AOh14GhZRAqW1AGUGR4TeI9JFZf4fYL1vpV-kas8w4VwLw,"It's really nice but I wish the notifications were better, like for some reason I don't get notified even though the task is due. It would also be good if we can add URLs beneath the name of the task, so that we can directly visit the link.",4,2,15.0.4,2019-12-12 21:12:49,,,most_relevant,com.todoist +William Johnson,https://lh3.googleusercontent.com/-RDBWYrsCK64/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMiFZQnoH7RbXHsXcVoSE-Dgvce8g/photo.jpg,I would like to be able to move multiple tasks as subtasks instead of one at a time. That is the only criticism I have the rest is awesome!,4,0,15.0.7,2020-01-16 16:35:24,"William, thank you for your feedback, we'll consider adding such option in the future :)",2020-01-20 12:43:24,most_relevant,com.todoist +Beverly Chemai,https://lh3.googleusercontent.com/a-/AOh14GiszXJT5CE7b-rSxkcbftczh-i3MyI3VGqdcsWR,Very helpful in getting me to do stuff but I wish reminders were free,4,1,15.1.0,2020-02-09 22:39:21,,,most_relevant,com.todoist +Denis semyn,https://lh3.googleusercontent.com/-TDWMa7mzPSk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOelkHIbV_Vo0pfyWzqb_9U5JLbVQ/photo.jpg,"Very useful application, thanks! Could you please add tags grouping? Because I have created multiple different tags and now it is really mess!",4,0,15.0.7,2020-01-17 11:10:23,"Denis, thank you for your suggestion, we'll consider adding such option in the future :)",2020-01-20 12:49:54,most_relevant,com.todoist +Ganna Panasyuk,https://lh3.googleusercontent.com/a-/AOh14GiOV7XD-S4WE-CnM9hxOq2W21eLfvz8_252NqnpvDU,Super app. One of features to add to basic version is type of calendar task distribution to visualise your week/month/year.,4,0,15.0.7,2020-01-23 22:39:41,,,most_relevant,com.todoist +Trent Ferrell,https://lh3.googleusercontent.com/a-/AOh14GjLVuovr6VrU6Se_7UHoIhIoIpmSpubM6Xe2Soowg,"So far, so good. I've only used the app for about a week. I'll write a more in-depth review soon.",4,0,15.1.0,2020-02-08 05:48:49,,,most_relevant,com.todoist +Mitchinabox,https://lh3.googleusercontent.com/a-/AOh14GhTzHToWuUEFALRT4mbvWLCAh05CbwYSsFc69gnYA,"Some pieces are a bit less than intuitive, some scheduling features are better on the desktop app, and a buy forever option would be really cool. Otherwise no complaints.",4,0,15.0.3,2019-11-10 00:41:20,,,most_relevant,com.todoist +Nils Selbach,https://lh3.googleusercontent.com/-gHlE_S_2FvA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMhbJ9JTWQQ_dTUkpxZI9Gqv3VZCQ/photo.jpg,"Very nice app with a lot of integrations which makes it very comfortable to use. Although I think some features are missing, e g. Grouping by project in a filtered view",4,0,15.0.5,2019-12-20 12:36:05,,,most_relevant,com.todoist +Yibo,https://lh3.googleusercontent.com/a-/AOh14GhfsgnSYKL-_v1kSmlyiEOAK2hXPNtSUrzw0_Io5aE,Ticktick has much better widget customization,4,6,15.3.2,2020-03-20 14:24:28,"Hi, thank you for the feedback! Would you be able to share your suggestions at support@todoist.com?",2020-03-23 16:57:25,most_relevant,com.todoist +Kevin Conner,https://lh3.googleusercontent.com/-p42_18J_bpk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP5n2iXoEDCQuHDvICj0TvR-ZP0HQ/photo.jpg,Just started using it....the interface is easy to learn and the amount of detail is just robust enough to be appropriate for what I do.,4,0,15.0.2,2019-11-04 18:24:59,,,most_relevant,com.todoist +Conor McCoy,https://lh3.googleusercontent.com/-8FGnKiulLK4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP8aS6Dvb-o8McVvmj6xZDH58jLdA/photo.jpg,Solid free app. Being locked out of extra functionality with a paywall is a little irksome but nothing I can't got over. It does what I need it to.,4,1,15.0.4,2019-12-12 18:12:16,,,most_relevant,com.todoist +Matt Tran,https://lh3.googleusercontent.com/a-/AOh14Gg2xeJW37jLstF1ESBk3TC2_Le0D1iX77XSLOOI,"I would really love to see a pomodoro timer, habit tracker, and a kanban board. The subtasks management could be better as it is in TickTick. I really love how Todoist have 2-way Google calendar sync.",4,2,15.0.6,2020-01-02 08:43:59,,,most_relevant,com.todoist +Amber Foxwell,https://lh3.googleusercontent.com/a-/AOh14GjGkUiXKbiETiTpLCKN2Ti3bS_YT_800DEnR_UmQQ,"It's a really great all, except that you can't make it buzz when you need to do something unless you pay.",4,0,15.0.7,2020-01-15 20:24:59,,,most_relevant,com.todoist +Ayanlola Bayo,https://lh3.googleusercontent.com/a-/AOh14GhkkJ_SHlz1gB2vBVwxqYGPG7RS9VkH1ZshTrQTXA,"This app is awesome! Trust me, it will keep you on track!",4,0,15.1.0,2020-01-31 06:45:12,,,most_relevant,com.todoist +Christophe Gabriëls,https://lh3.googleusercontent.com/a-/AOh14GhgaXYL7u2AQlZadd08JSyN8Zc_A-4cWaDW-sNzHg,The first to-do list app that makes me wanna do stuff instead of making longer and longer lists,4,0,15.0.7,2020-01-10 17:29:54,,,most_relevant,com.todoist +KatFish co,https://lh3.googleusercontent.com/a-/AOh14GhzWru1rJnh22eL3kEVi7zYIkLrAXkxxum3KMfdIQ,It is goed better than I expected their windows app is bad but we all have a browser so that is not sometging bad.,4,0,15.0.7,2020-01-14 18:15:39,,,most_relevant,com.todoist +Julius Solbes-Moran,https://lh3.googleusercontent.com/a-/AOh14Gi2CjLINxLizYtL0TGL9vr-VzdnNStdp6swrF4H5A,It's very versatile; the project system makes it easy to group tasks together. The one problem is that it doesn't have a calendar view.,4,0,15.0.3,2019-11-27 07:00:56,,,most_relevant,com.todoist +Susan Petrie,https://lh3.googleusercontent.com/-7Q2cI4hvC6A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNB52ryglT64-ErmtqWEEvNpnqZHw/photo.jpg,"Only began using it but seems intuitive to use. Love that I have various lists, link to projects, share lists, assign tasks and gave due dates",4,0,15.0.3,2019-11-25 11:56:58,,,most_relevant,com.todoist +Eric Dann,https://lh3.googleusercontent.com/a-/AOh14Ggzww_R6LH5m8FkR5JkguSx07uXxPddeRXlMtuT,I had a bad time with time Management at work and at home. Now with my samsung and the routines I can get up this is the first app that wakes up in the morning. Giving me an opportunity to set up the day how I want and check them off as they're done.,4,0,15.0.3,2019-11-25 11:31:55,,,most_relevant,com.todoist +Felix G.,https://lh3.googleusercontent.com/-bBU06gE7K58/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPp2vmS2s0hbFohRc6LZ7mBdVwp_A/photo.jpg,"The feature of able to detect time, label, & projects on what i typed when editing tasks within inbox is now being removed (auto-detection still available on adding new tasks though) please consider to put it back",4,1,15.0.5,2019-12-15 13:39:58,"Hi Felix, we plan to reintroduce this feature when editing tasks very soon, the auto-detection will work just like it does for new tasks :) Stay tuned!",2019-12-18 14:57:37,most_relevant,com.todoist +Gwendolyn Pothier Ward,https://lh3.googleusercontent.com/-LCXPUqab74Y/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNFEJDevlDTf81cLaSIXzp3AYI0-g/photo.jpg,Easy to Navigate with simple task input and completion of task. Sense of accomplishment. I like it so far.,4,0,15.0.2,2019-11-04 20:45:36,,,most_relevant,com.todoist +Sudipta Halder,https://lh3.googleusercontent.com/a-/AOh14Gig1kudPfAAjXQL26Icu5ojdoZ9WNICSDyhpzXTjA,Some premium features should be free ! Otherwise good tool to manage one's projects.,4,0,15.0.7,2020-01-18 06:27:36,,,most_relevant,com.todoist +Patricia Villegas,https://lh3.googleusercontent.com/a-/AOh14Gh9TlakzxLzE7p65KSVSIP9O3pWbJ0qgVTkilL5Vw,Love using this but I just wish I could customize the widget more like the opacity and such to make it fit my phone's theme more (I have the premium version),4,1,15.0.6,2019-12-29 08:22:36,We’re working on an updated widget and it should be available in our Beta channel soon. We’d love to have feedback on it once it’s available there!,2020-01-07 15:09:07,most_relevant,com.todoist +Matteo Ramin,https://lh3.googleusercontent.com/a-/AOh14GhhJ7EzzleTWAQ0Wf8UOPEt7tQFy2tzA498GG_eEg,"I think it's a bit silly that reminders & labels are premium features, but other than that: great app!",4,0,15.0.1,2019-10-28 23:00:24,,,most_relevant,com.todoist +Chris Cameron,https://lh3.googleusercontent.com/a-/AOh14GjepeK7Y6qJ1hyB7jLwiZaPsK13xPPqUnHLHDOLTw,Gets the job done very well! Helps keep track of things necessary and streamlining is awesome!,4,0,15.0.6,2020-01-02 21:42:55,,,most_relevant,com.todoist +Naama Eyal,https://lh3.googleusercontent.com/-5R7z1ABsboA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJORLVOE3Qq1HchqaS49f6t6CLpyCw/photo.jpg,Great app! Too bad a lot of helpful features are for premium only. I'd like to have a calendar layout of the week.,4,1,15.0.4,2019-12-05 06:02:12,,,most_relevant,com.todoist +Ryuuzaki Echizen,https://lh3.googleusercontent.com/a-/AOh14Gie_AethKDBHNwZpGOldcARta--5SVFiaZ8uHzwag,I've been using this app for a couple of months now and it's pretty good at helping to develop and track new habits.,4,1,15.0.4,2019-12-09 21:45:50,,,most_relevant,com.todoist +Darling,https://lh3.googleusercontent.com/a-/AOh14Ghqe9rZyJD2i32v9votfsHwP_LR9W487IPy-gMg-g,Really helped me to level up my organizing and productivity! I wouldn't need all the premium features really tho.,4,0,15.0.3,2019-11-20 19:16:14,,,most_relevant,com.todoist +neezam ali,https://lh3.googleusercontent.com/a-/AOh14GjNknIhgWtyHpbsXiH_oDfLCk9QMhX4SsoLCr9DVQ,I'm using the premium version a few days now. I'm not getting any notifications for my reminders. I checked the menu and everything is fine. Is there something you can do to help?,4,0,15.0.3,2019-11-22 12:58:43,Please make sure the app is running in the background and that your device isn't using any battery saving mode or low power mode.,2019-11-25 12:53:15,most_relevant,com.todoist +Reghardt Britz,https://lh3.googleusercontent.com/a-/AOh14GhIa_XgD2fpwI-RZ_EU5sPPPmSJocg4RWMZ9P4k,"Easy, useful app that connects all my platforms. Makes connecting in the business a breeze",4,1,15.0.2,2019-11-18 18:29:56,,,most_relevant,com.todoist +marzieh yeganeh,https://lh3.googleusercontent.com/-aWh7os3_RsU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJML7FClmR5cZL33mvHYSWnGi4HJaw/photo.jpg,"It's a cool app, but essential features are premium.",4,0,15.0.7,2020-01-23 19:52:35,,,most_relevant,com.todoist +Dean Tyacke,https://lh3.googleusercontent.com/-VkDp_mrAnvY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNP1JA4DEnI-q7biowo1BqKc27MoQ/photo.jpg,The full version allows you to do this. On the free version once you have completed a task you cannot see what it was.,4,0,15.0.3,2019-11-10 13:30:09,,,most_relevant,com.todoist +Tim Stubbs,https://lh3.googleusercontent.com/a-/AOh14GhArliqF510O-LgBtNA9efO2wqDc2g8Xu772IIkDA,Very good.,4,0,15.4.0,2020-04-06 10:01:11,,,newest,com.todoist +Serena,https://lh3.googleusercontent.com/a-/AOh14Gg9MHKvO-jkWjvNHzGf40_2mgsOUyIfcG6dhxdxGw,"Great app and it really helps me stay on top of things, though I do wish I could be able to put events in too for example :friends birthday from maybe 10 am to 2 pm and things like that",4,0,15.4.0,2020-04-06 06:14:38,,,newest,com.todoist +Alex Tanti,https://lh3.googleusercontent.com/a-/AOh14GiDjqL6oMR05xMHvLcublpMR1zld50BtSqSAgWR7uU,I like but there are some basic features that aren't free.,4,0,15.4.0,2020-04-04 17:27:25,,,newest,com.todoist +Laís Tomaselli,https://lh3.googleusercontent.com/a-/AOh14Gj1EEQg_hy7ucnZUve0E9WTfFEGOkUIjK2QSE2Rqy0,"It's a good app. It's pretty, minimalist and works really well. It just really bothers me that the ""undo"" (button that appears when you make a change) gets in the way of adding a new task and gets accidentally clicked, so I have to wait for it to go away. I would suggest for the developers to please take a look and see if you can adjust the placement of the buttons in this case. Thanks!",4,10,15.4.0,2020-04-04 14:43:48,,,newest,com.todoist +Fernando Almeida,https://lh3.googleusercontent.com/-yygnOvBxyOk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPfHZiI-3bH9umLVpiiughZo8oqgA/photo.jpg,"Muito bom, só poderia liberar mais funcionalidades que só tem na versão premium",4,0,15.4.0,2020-04-04 13:47:06,,,newest,com.todoist +Shraddhesh Pratap Singh,https://lh3.googleusercontent.com/a-/AOh14GhbjC6f77akWuRGbc7hyFsFkLqFvz7IiDIUqia1vA,Not used the premium yet,4,0,15.4.0,2020-04-03 23:07:57,,,newest,com.todoist +Thomas K,https://lh3.googleusercontent.com/a-/AOh14GgGr6oFdZMiU3c-P_EpQJhZiW45jWMewablQqJyTw,"By far and away the best of all the dozens of task manager apps I've tried using! So intuitive. Can't wait for the ""upcoming"" feature that's on the way. But gotta thumbs-down the new widget. No way to open the app straight from the widget so I removed the widget from my home screen all together.",4,0,15.4.0,2020-04-03 17:17:35,,,newest,com.todoist +Sarah Attali,https://lh3.googleusercontent.com/-wd9IcEtdTJA/AAAAAAAAAAI/AAAAAAAAA2Y/AAKWJJNjnavJZSTU2WzSxj6PPFEjSgRy4w/photo.jpg,Good app!,4,0,15.4.0,2020-04-03 16:40:36,,,newest,com.todoist +David Dirgo,https://lh3.googleusercontent.com/a-/AOh14GiGiPqNNnRaw-V2VTiPhOIWQTfYrlbslymv9U4JDA,"The new widget is an improvement, but the fact that I can no longer open the app from the widget is IMMENSELY frustrating. It means I have to waste home screen space in the app icon, and isn't that what a widget is supposed to avoid?",4,0,15.4.0,2020-03-31 12:47:12,,,newest,com.todoist +Suaibu MJ17,https://lh3.googleusercontent.com/a-/AOh14GivSck0o2qD_fLBPXjpzoYH8GqSwoaL0m0wqfDwpw,"Todoist is really useful if you have a variety of tasks that you need to carry out, but don't want to write it down on pen and paper.",4,0,15.4.0,2020-03-31 12:28:01,,,newest,com.todoist +Samuel Robbins,https://lh3.googleusercontent.com/a-/AOh14GjqqN1oNWmQQjWrxc1PWl9jBC_Y4SI7xE_E8wao8w,It's best features are locked behind a paywall,4,0,,2020-03-31 01:02:56,,,newest,com.todoist +Daniel Sudzilouski,https://lh3.googleusercontent.com/-YwZaik8F-9A/AAAAAAAAAAI/AAAAAAAAFe8/AAKWJJNDUf2YeCvXnTQJAubdoMcp5YSZ0A/photo.jpg,Figured out how to schedule reminders but it could be easier,4,0,15.4.0,2020-03-30 19:58:02,,,newest,com.todoist +Raphael De Guzman,https://lh3.googleusercontent.com/a-/AOh14GjVuYSUm_SwkTmzd8EBVvCbRhS1znnycKLKm3zY,"Hi can I have an OPTION TO CHOOSE BETWEEN THE NEW AND OLD DESIGNS OF THE WIDGET? The previous version was able to have larger boxes to fit long description tasks, while the new one just puts three dots and shortens the task descriptions to fit in one fixed width, which disables full reading of the task(bad). Also, subtasks cannot be seen WITHOUT CLICKING the main task, which kinda defeats the purpose(again) of having a todoist widget where i should be seeing the overview of everything. Thanks",4,2,15.4.0,2020-03-30 11:39:05,,,newest,com.todoist +Алина Матвеева,https://lh3.googleusercontent.com/a-/AOh14GhE6tEXPRD5M0COwKmK9ghbCHGHZDxYQ7GaDdH8,"Please, make an option to use the old style widget. Unfortunartely letters became too small for 4x6 home screen grid.",4,0,15.4.0,2020-03-29 08:06:25,Thank you for the feedback! This has been noted.,2020-03-30 19:12:41,newest,com.todoist +Phil Simpson,https://lh3.googleusercontent.com/a-/AOh14GjqTOm4iMfhXd-8fbJ9uTi4ry77xjAxhJVCs6SkDic,Enjoy Todoist Premium but an update to the widget has made the fonts smaller. As this is more difficult to see I don't think it's an improvement.,4,2,15.4.0,2020-03-28 10:54:47,"Thank you for the feedback, Phil! We will look into this.",2020-03-30 19:31:21,newest,com.todoist +Duha,https://lh3.googleusercontent.com/a-/AOh14Ghoo5Zhf4ZGGSJpjmd8kt4Kq3fHNBZxAGA4Xhe8Aw,By far this is the best to do list app I have used . But I have 2 issues with new widget. First :I can't press the icon and go to the app like I used to. The icon is gone now . And second: the font is too small .really hard to read my list .,4,4,15.4.0,2020-03-28 09:42:15,"Hello, thank you for the suggestions! We will look into this with the team :)",2020-03-30 19:32:55,newest,com.todoist +Jennifer McGaffey,https://lh3.googleusercontent.com/a-/AOh14GiVnoQODHs_IulDDZSpuYx0LyQBLrg62LKdOGHMrg,"The app is excellent; simple, streamlined, functional to-do list. However, the newly redesigned widget gives me a heck of a lot _less_ control. How do I select and reschedule a group of tasks? How do I open the app from the widget (so I don't need both the widget and an icon)? If I wanted to do complex editing, I could easily open the app, and the widget could do things the app couldn't. Give it back!",4,10,15.4.0,2020-03-28 07:03:17,"Hi Jennifer, thank you for the feedback! We are looking into those features now :)",2020-03-30 19:33:56,newest,com.todoist +kyle landry,https://lh3.googleusercontent.com/-jJYAinMZzZ8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOPGor03TQXOLqLza1mFqBEyqBe4g/photo.jpg,Works well.,4,0,15.4.0,2020-03-28 03:54:43,,,newest,com.todoist +Anna F.,https://lh3.googleusercontent.com/a-/AOh14Gg9NX7Fzef6V7G5Aaoq_D1a6_gGLoMrENdSerrqv4s,"I LOVE the new widget! It's finally useful! Please let us change the time when the day changes... For example, I go to bed at around 3AM. I consider any time before that to still be the technically previous day. That completely messes up tasks that repeat after completion...",4,1,15.4.0,2020-03-27 10:35:43,"Thank you for the suggestion, Anna!",2020-03-30 19:44:29,newest,com.todoist +Fernando Torres,https://lh3.googleusercontent.com/a-/AOh14Ggi2r4PZDlKsJNAkyESgQ7EkjTfGxg-IGyXENNseg,It's a great app. It's sad it doesn't run on Samsung wearables,4,0,15.3.3,2020-03-27 03:44:45,,,newest,com.todoist +Lorenzo Rey,https://lh3.googleusercontent.com/a-/AOh14GiEnkZ8bRegEPBlzuRT_--xq-feoOZSVbDL8TbD-Fw,Hey guys the new update messed up the widget layout for me now everything is smaller and more difficult to read!,4,1,15.4.0,2020-03-27 01:18:52,"Hi Lorenzo, we will look into your feedback with the team!",2020-03-30 19:46:12,newest,com.todoist +Joseph Sarpong,https://lh3.googleusercontent.com/a-/AOh14Gj2TJmFxtvHyXtGSgIfKDH3kvQkYlRwOeutgbHzEQ,"I have barely began using this app (less than 15 minutes) and I am already in love! The Terms you have to agree to alone are just so assuring and satisfying. Kudos developers, kudos!",4,1,15.3.3,2020-03-25 20:57:05,,,newest,com.todoist +Rildwan Bello,https://lh3.googleusercontent.com/a-/AOh14Ggsi-aXdPNgylhLKGJn908C4Tsn0prL6cJLd199nw,Easy to use. I will however like to have a time boxing feature for my daily activities.,4,0,15.3.3,2020-03-25 09:09:06,,,newest,com.todoist +วิศิษฏ์ ธรรมเมธา,https://lh3.googleusercontent.com/-c7YIPQBREw4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNyE8Ox763rEYocVBjjYk_ZrxF5xA/photo.jpg,Well,4,0,,2020-03-25 04:48:13,,,newest,com.todoist +Oss Silva,https://lh3.googleusercontent.com/a-/AOh14GiZ8WXFbIR6fdKy39rqL3c51QvGQnxLPQE6FFXWoQ,It Is a very handy app but the fact that premium is required to enable reminders kills the productivity boost I wanted to achieve,4,0,,2020-03-23 00:42:28,,,newest,com.todoist +Josi,https://lh3.googleusercontent.com/-Q-Jj0r4qqrs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM4vqXlDtUj152B9B1C1YWkpb6gpQ/photo.jpg,"It's a good assistant for daily life. But I don't like, that in there's a premium upgrade for money.",4,0,15.3.2,2020-03-21 14:45:56,,,newest,com.todoist +Chan Pong Chiu,https://lh3.googleusercontent.com/-vsMzLO4ziZQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNkCtGeaDkWjHU-yIuY-FY02Cjzgg/photo.jpg,It is a fantastic apps. But if they can allow the push reminder in the free version it will make it perfect.,4,0,15.3.2,2020-03-21 10:59:29,,,newest,com.todoist +Dan Arritt,https://lh3.googleusercontent.com/a-/AOh14GiOKK7TyR8HNtPMDqxGMTY4x4uCcgW_ih4tnWszpQ,Straightforward solution for business and personal use in my cell and laptop. Sometimes I get a bit lost on how to get from granular details back to an overview of projects.,4,0,15.3.2,2020-03-21 09:03:27,"Hi Dan, would you be able to send us your question at support@todoist.com?",2020-03-23 16:48:01,newest,com.todoist +johari harian,https://lh3.googleusercontent.com/a-/AOh14Gjx-DCkybDrA16vEhfqHIve4V50JVEW6IIvlF9k,Good one,4,0,,2020-03-20 21:31:32,,,newest,com.todoist +Yibo,https://lh3.googleusercontent.com/a-/AOh14GhfsgnSYKL-_v1kSmlyiEOAK2hXPNtSUrzw0_Io5aE,Ticktick has much better widget customization,4,6,15.3.2,2020-03-20 14:24:28,"Hi, thank you for the feedback! Would you be able to share your suggestions at support@todoist.com?",2020-03-23 16:57:25,newest,com.todoist +Robert Watson,https://lh3.googleusercontent.com/a-/AOh14Gi-YfanlBenQbmge4bMN6GcxX3aPhuJ70YkMIEj,Works well,4,0,15.3.2,2020-03-20 11:14:57,,,newest,com.todoist +Charlie Victoria Taylor,https://lh3.googleusercontent.com/a-/AOh14GjbgEEZvZYuVYiau7hC-75KsEG6s4lhei1aJONqcg,"Good app, just wish you were able to back date a completed task so I can use it for tracking habits as well, but it's a to do list app and works well.",4,0,15.3.2,2020-03-20 01:36:47,"Thank you for the feedback, Charlie!",2020-03-23 16:59:26,newest,com.todoist +Siya N,https://lh3.googleusercontent.com/a-/AOh14GhJtEM_Vemt0BPwNrJCxdZKmtsO_IY2I6bViBtE,"Very nice working space, but the display of things can be a bit nicer.",4,0,15.3.2,2020-03-19 04:07:15,,,newest,com.todoist +Rafael Vega,https://lh3.googleusercontent.com/a-/AOh14GjDyy2_9tSy1w1RE-OYXy7-STKxTcztELC6NAWUsg,"Despite the unresponsive widget, overall a pretty decent app.",4,0,15.3.2,2020-03-17 18:17:47,,,newest,com.todoist +Toni F,https://lh3.googleusercontent.com/a-/AOh14GjtpQsY5a-Cbro7R2yYIsYk0zF6P62RqMg3Ar5VaUY,We use it for running our home & project improvements. It is easy to use.. not as user attractive as some but ok.,4,0,15.3.2,2020-03-17 03:47:28,,,newest,com.todoist +Kari Johnson,https://lh3.googleusercontent.com/-tj4fmqLKfkw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMqRDjPlLgnOkZhEaOephigizwJBw/photo.jpg,"Great app! Easily share lists with others. Easy to add or check off items. One enhancement request would be to make another default view option the list of all projects, rather than having to choose one project to default view.",4,1,15.3.2,2020-03-15 23:24:50,,,newest,com.todoist +Courtney Livesey,https://lh3.googleusercontent.com/a-/AOh14GgcCXG52vd69PMHpyQtm8mg9YyoMPOXzXqFjMv8,Super convenient,4,0,15.3.2,2020-03-15 03:03:09,,,newest,com.todoist +YaHagh 114,https://lh3.googleusercontent.com/--YmD8Z-zaw8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMHbs21VVjYi7Nf8q3MqQp6YU9UAA/photo.jpg,"Thanks , great app Please add Persian language",4,0,15.3.2,2020-03-14 20:28:18,,,newest,com.todoist +Dlo Sang,https://lh3.googleusercontent.com/a-/AOh14GgDHPMwjssrXagW16Bx6lntt55972VKT21SO7Ac,I love it,4,0,15.2.0,2020-03-13 12:51:36,,,newest,com.todoist +Nick Mullikin,https://lh3.googleusercontent.com/a-/AOh14GhIBXIc1dQs4ZFFSdsVTRKONG0wq9Tderr1jYkwfw,"Works well, except it keeps asking to change the timezone when I switch to firefox",4,0,15.2.0,2020-03-10 22:39:43,"Nick, please make sure that all devices are set to the same time zone and if this won't help, contact support@todoist.com about this issue.",2020-03-17 14:58:40,newest,com.todoist +yassine maghrebi,https://lh3.googleusercontent.com/a-/AOh14Gh9uOiUr0i5dIxRrUr0t-l7YMjMS4npw3F2yw2B-w,شكرا,4,0,15.2.0,2020-03-10 11:56:31,,,newest,com.todoist +Ayush Gupta,https://lh3.googleusercontent.com/a-/AOh14GjioVp1YLpeZYyOsy1aaLAzWZTq_c88MB47GFvAaQ,"It's an overall great app but the problem is that it notifies all of the notifications once be it at 8AM or 10PM. If there was an option where tasks are pinned on notification untill you check them from app, I'd give it a 5 star",4,11,15.3.2,2020-03-10 03:56:28,"Thank you for your feedback, we'll look into changing this in the future :)",2020-03-17 14:59:35,newest,com.todoist +Mindaugas Bernotas,https://lh3.googleusercontent.com/a-/AOh14GhUrxvKQcd0jP0A10XRRUlemigSiQk3x1vSCUSbRQ,Seems almost perfect. I'm missing a monthly view feature of the tasks/assignments/etc.,4,0,15.2.0,2020-03-09 23:31:19,"Thank you for your feedback. You can achieve this with filters - set them up to show you all tasks for a month or year or all tasks assigned to a specific person etc. For more information, please check out this help article: https://get.todoist.help/hc/en-us/articles/205248842",2020-03-17 15:01:04,newest,com.todoist +Andy Zhang,https://lh3.googleusercontent.com/a-/AOh14GgHcov_F_BTxu_Cj9xpdl8CvKW3OrkT-B2PjyL8,Great app. I love the subtasks option.,4,0,15.0.7,2020-03-09 20:58:15,,,newest,com.todoist +James Bonner,https://lh3.googleusercontent.com/a-/AOh14GiJpsAJPPY8K7nFp61KYja6gIehwXclKqBfiPPQ0g,Solid. Perhaps overpriced.,4,0,15.2.0,2020-03-09 05:35:56,,,newest,com.todoist +A. R,https://lh3.googleusercontent.com/a-/AOh14Gi56Uzr1qewdvcwtBU-r_L0YMmCexQOF3wE3Blhog,Desktop version is better,4,0,15.2.0,2020-03-08 08:42:02,,,newest,com.todoist +Adie Alphonse,https://lh3.googleusercontent.com/a-/AOh14GhTM28mCGeLrdpXaUL0GDJaXt6NqMvO_LBVd0lo,Good app.,4,0,15.2.0,2020-03-06 22:42:03,,,newest,com.todoist +Michelle S.,https://lh3.googleusercontent.com/a-/AOh14GgXlhkk8ctLY-ivAhPVSJZ1jhsV0uN8kYaWaXhzaw,"Mostly a good app, helps me keep on top of things. Morning notifications are a bloody lifesaver. My only criticisms are that the free version is rather lacking in basic features, at least for people like me coming from other apps. Also the top bar and the system status bar when in the app are different colors, slightly, and that's always bugged me.",4,13,15.2.0,2020-03-06 13:28:08,,,newest,com.todoist +Paul Whitmer,https://lh3.googleusercontent.com/-u2yjG1fiMUA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPornvhjtbOIpYiAcYUPZ8VnyYR_g/photo.jpg,"I love the Dynamic Add Button, now that it's finally here in the Android version!",4,0,15.2.0,2020-03-06 13:06:12,,,newest,com.todoist +Leigh King,https://lh3.googleusercontent.com/a-/AOh14Gi1u6NI3ifkn2ME8j7bF97op3TVuhsBUCX--FWMfA,"Im using the free app & enjoying it alot! Super easy to capture ideas and reminders when they pop into your head, before you forget!",4,0,15.2.0,2020-03-06 06:56:42,,,newest,com.todoist +xeigh,https://lh3.googleusercontent.com/a-/AOh14GgwcqDFYPsXk2-SwWXTRr_kxAnbzld81r4nftXb,"I love this app. I tried many to do list apps but this is the one that meets my satisfaction, I guess? The basic features are good, just right. But I'll give it 4 stars since I'm still finding something I myself can't say and it's not here. Maybe it's in the premium version but I'm broke as hell and I can't afford to pay for it because I have other expenses. I do hope that some other features would someday be free, it'll be really helpful.",4,9,15.2.0,2020-03-04 14:34:56,"Jersey, thank you for your feedback. Please let us know which feature you're missing and we'll try to implement it in the future :)",2020-03-09 14:36:58,newest,com.todoist +Martin Bede,https://lh3.googleusercontent.com/a-/AOh14Gi0BNatRR2LrRyXHhR5WHPoh__si78QJ1rIjQ9Pu_U,The best app for to-do lists. It does have a couple of minor issues: * The widget can become unusable once in a while (stuck forever on the loading screen). * It can also take a couple of seconds for an item to be removed after you check it off on the widget.,4,1,15.2.0,2020-03-04 09:35:00,"Martin, thank you for your feedback, we will soon release a new, improved and more reliable widget :)",2020-03-09 14:39:06,newest,com.todoist +Melissa Imler,https://lh3.googleusercontent.com/a-/AOh14Ggjh4pXw-5b9TAmaZe4PFNLqhY3fndo70g8CpAb,I run multiple businesses and so far this has helped me organize my days tremendously. A lot of initial decisions had to be made about where I want things and that took a while but now I'm really glad I took the time to do it because it's all coming together and actually relieving some stress. Hopefully I can come back and add the 5th star after I've had more time using it!,4,0,,2020-03-04 00:48:36,,,newest,com.todoist +Ben Buie,https://lh3.googleusercontent.com/a-/AOh14GgWvnPCWFpm35cB64R4MaRWamTISsYj91hqV7kzkQ,"Love the app, but there is a bug in the current version of the app where ""next week"" actually schedules things for two weeks out. Actually scheduling in general in the app seems a little wonky. These are new issues as of a few weeks ago. Otherwise it would be 5 stars.",4,0,15.2.0,2020-03-03 16:21:42,"Ben, thank you for your feedback, please contact support@todoist.com about this issue and we'll look into it.",2020-03-09 14:39:33,newest,com.todoist +cchamp 4,https://lh3.googleusercontent.com/a-/AOh14Gjr-pJi_G9J_4GP436gvSf7PCnNv_KmNfIOv04_SA,"This is a great app, and I love it, bit I have two small issues with it. First, I don't like how insistent it is with notifying you to complete tasks. Second, I wish the interface had a better tutorial so that it would be easier to have the due dates and such easy to prepare when you enter the task in. Since fixing one would fix both, this is still a great app",4,3,15.2.0,2020-03-02 21:31:31,"Thank you for your feedback :) Reg. the issue with notifications to complete tasks, please contact support@todoist.com with more details about it (are you referring to task reminders, push notifications etc.) and we'll look into it.",2020-03-09 14:42:39,newest,com.todoist +Jason Wilcox,https://lh3.googleusercontent.com/a-/AOh14GhoMMnv_u6ZXlhsSh0PJgFnynz5nLUk-sBmrJIU,Good place for storing tasks,4,0,15.2.0,2020-02-28 23:52:31,,,newest,com.todoist +T H,https://lh3.googleusercontent.com/a-/AOh14GiL7YptClMOdynAWPOTZd4H_UrgUbOCmWaH_HR5VQ,Easy to work with,4,0,15.2.0,2020-02-27 18:46:59,,,newest,com.todoist +Tiffany Maina,https://lh3.googleusercontent.com/-AYsC7kj5ID4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNbAShmRyVukX1ngtwezyY5UOI17w/photo.jpg,Its ok,4,0,,2020-02-27 06:18:22,,,newest,com.todoist +Walker,https://lh3.googleusercontent.com/a-/AOh14GgaiNRzYKNIeFtkpXPf3ceGrr83e6WIDy_W3Hb-Hg,I found todoist through Lavendaire of YouTube she is awesome. I am grateful that to-do list is really getting me back on track.,4,0,15.2.0,2020-02-26 22:45:45,,,newest,com.todoist +Emmeric Du Preez,https://lh3.googleusercontent.com/a-/AOh14GhQKiKY3ZaPMU-ZJD0dKvcq9pI5toapR7BpVWJw,Im enjoying it so far,4,0,15.2.0,2020-02-24 15:42:42,,,newest,com.todoist +Sarah Jane Woodruff,https://lh3.googleusercontent.com/a-/AOh14GiQ86MLlokP0nEsDLsiXKuywH_qRAr91oI2PYL2AQ,"You responded to but STILL DON'T understand my comment about repeating event scheduling. I KNOW that you can schedule repeating events, & I KNOW how to do that, but each repeating event is scheduled at intervals reliant on the original event date. What if I sometimes would like the event to repeat from the actual completion date? For example, I forget to renew my library books for a week. When I renew them finally l have 3 weeks before I need to review them again but your system says 2.",4,3,15.2.0,2020-02-24 13:06:29,"Hi Sarah, you can try using ""every! 3 weeks"" in this case: it will schedule the next occurrence based on the last completion date instead of the original date.",2020-03-02 15:22:25,newest,com.todoist +Ian Robertshaw,https://lh3.googleusercontent.com/--eFIHfvzvGg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMn-FNCQzuHUeYr_-ETgOm0IH3xSA/photo.jpg,Good app easy to use. I like the fact that it emails my daily to do list.,4,0,15.2.0,2020-02-23 19:14:18,,,newest,com.todoist +Saurabh Bashera,https://lh3.googleusercontent.com/a-/AOh14Ghsa9DvWWrxc0bePMAo66OI1gaAs8y4q4Ub5WtgWQ,Its good but can work on notifocation panel,4,0,15.2.0,2020-02-23 11:50:44,,,newest,com.todoist +Zach Salinas,https://lh3.googleusercontent.com/-bzidP1MqS8s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM8ABz-JAOdW74FMxT2dNDmQKAkSQ/photo.jpg,"Great app for the most part. Functionality is amazing. Sync is great. But, I really hate that this app puts itself on top of whatever I'm doing every 5 minutes exactly. Been through all the settings and turned all syncing off but no. Incredibly obnoxious on my tablet. Haven't had the same issue on my Android phone",4,6,15.2.0,2020-02-22 20:36:18,,,newest,com.todoist +Mackenzie Farquhar,https://lh3.googleusercontent.com/a-/AOh14Ggi7a393XYYxgu72TFT1D5iQdeaI0aGhKg2Gl62,The free option has all the features I need. An alarm would be nice but since I don't have the premium I'll do without for now.,4,1,15.2.0,2020-02-22 15:54:49,,,newest,com.todoist +Jatin Shriyan,https://lh3.googleusercontent.com/a-/AOh14Gg0V3AWtx66I9gEo5CoCkOSz6Pym2C7_GivlA4koA,Love it.,4,0,15.2.0,2020-02-22 07:58:57,,,newest,com.todoist +Joyce Stimmell,https://lh3.googleusercontent.com/-eDaTwQH8qZQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM1E-9UTqZgtwm8BH8O-BYZOYvMKg/photo.jpg,"Learning, hopeful.",4,0,15.2.0,2020-02-22 03:14:17,,,newest,com.todoist +Phil Mulley,https://lh3.googleusercontent.com/a-/AOh14Gh4DgOHH7qO1vdICst7p2s0aeBMs8MQ62tVjFMTTQ,Works with home assistant,4,0,15.2.0,2020-02-20 15:01:38,,,newest,com.todoist +Monse J.,https://lh3.googleusercontent.com/a-/AOh14Gh2ugmTFKLOFQkwv6c_1VeypaTc4-ciFDuYr-NDmA,Easy to use and does it job to keep me on track.,4,0,15.2.0,2020-02-20 05:02:44,,,newest,com.todoist +Karthick Subramanian,https://lh3.googleusercontent.com/a-/AOh14GiHkYfvk-tiGppTUnqDfmqUS2oCGhbBehTkw97r,Good app for management,4,0,15.0.7,2020-02-18 14:01:25,,,newest,com.todoist +hiraganaguy,https://lh3.googleusercontent.com/-G9pFWYpUmAo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNYg8VqB-MegMLqXCvjw1y7guYLYg/photo.jpg,Easy to use. Will continue further and decide if I will get the Premium.,4,0,15.1.0,2020-02-18 10:51:11,,,newest,com.todoist +Doris Latimore Johnson,https://lh3.googleusercontent.com/a-/AOh14GhF_8-ouAtjIBVBNy9BAnKyYySQnnr4SQI6ZHv7Ow,"Playstore info says in-app purchases. I'm on premium longtime. App widgets for Gmail & calendar. Filters, labels, shorthand for dates, recurring etc., so flexible: *discipline* required to set your own process! Helpful examples and tutorials on their website. I do outlines for book, project, trips, recipes. attach files. I prefer web app on my Chromebook, then this app on mobile. Beware: App is addictive. Wanted: print as outline, tasks, dated comments",4,9,15.2.0,2020-02-17 13:41:55,,,newest,com.todoist +Denis Starovoitau,https://lh3.googleusercontent.com/a-/AOh14GhP01HxiWWWbCd9PEs2HrvsJcqZYxR0pQkcATk9,"A bit inconvenient interface when adding and asigning date to the task. Other than that pretty cool intuitive UI along with minimalistic style. My first choice of todo app, even free version is good enough to keep your plans out of your head but in this app.",4,0,15.2.0,2020-02-17 10:40:41,,,newest,com.todoist +Saurabh Porwal,https://lh3.googleusercontent.com/a-/AOh14GjzJG3D90a8g-6TKu9GxkWJTL8Tq3Edk8JWg25XDw,Good,4,0,15.2.0,2020-02-16 06:19:53,,,newest,com.todoist +Edward Mesa,https://lh3.googleusercontent.com/-Zokf8CFxg64/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN5twRRfdc8uXNu9Vc_rCypBn7aKw/photo.jpg,This will meet many people's needs. Best multi-platform apps. Best location reminders. Easy to use. I would like start dates and others have requested them for years but Todoist refuses to add them. Down a star for that. The offer a work-around but it's not convenient.,4,1,15.2.0,2020-02-15 16:34:55,,,newest,com.todoist +johan voigt,https://lh3.googleusercontent.com/-heVpneo8nwM/AAAAAAAAAAI/AAAAAAAAAsM/AAKWJJNMBxyOF2r6NLpIQmkzRSuYjDddMw/photo.jpg,Awesome.,4,0,15.1.0,2020-02-15 13:46:51,,,newest,com.todoist +Circus Freak,https://lh3.googleusercontent.com/a-/AOh14Gic73S9xu5JX-sYey-DMu4arLr5tdcMLB69Intxfw,"Great app, good at keeping you accountable and productive. Would be nice to be able to re-order your to-dos though and set deadlines for when they have to be done",4,0,15.1.0,2020-02-14 19:31:43,,,newest,com.todoist +Karthik Kannan,https://lh3.googleusercontent.com/a-/AOh14GgPAW5IolrVlwIUlQLYgCBSvqDt_UqkrT_LdeR9Mw,It's the perfect kind of list I've tried. Everything is great. It could be better if we had a calendar view as well.,4,0,15.1.0,2020-02-14 07:17:20,,,newest,com.todoist +Keng Oei Quek,https://lh3.googleusercontent.com/-_uwDtUXqlas/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPAo_gfMrlSe_obOWH1svNZPX_NjA/photo.jpg,"Good, no frill, direct for what you need in a to do list",4,0,15.1.0,2020-02-14 02:46:43,,,newest,com.todoist +Chema Eluwa,https://lh3.googleusercontent.com/-0_a4P0lNLTA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNEOh5tlBVB1vpAGimhQOEhE37aDA/photo.jpg,Just started but I am interested.,4,0,15.1.0,2020-02-13 17:41:07,,,newest,com.todoist +Travis Green,https://lh3.googleusercontent.com/a-/AOh14Ggi_8uutxt39lsQNKltYAXC5QyLOJUkaYY-GKVuIl8,"I've been using Todoist Premium for just over one year now. I think I've tried nearly every todo app out there. There has been some quirky behavior introduced over the last few months, especially around rescheduled occurrences of recurring tasks, and it's been a bit frustrating there. But overall, it's the best app for me and the team behind it seem like great people based on my interactions. Give it a shot!",4,11,15.1.0,2020-02-13 03:05:23,,,newest,com.todoist +Ali Reda,https://lh3.googleusercontent.com/-Oa8CRBpo9Gc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPqPWP1wslar0_z1bC778zYOkbclw/photo.jpg,تطبيق رائع جدا ومحفز للعمل. كل الشكر والتقدير والاحترام لهيئة تصميم البرنامج,4,0,15.1.0,2020-02-10 21:17:24,,,newest,com.todoist +Beverly Chemai,https://lh3.googleusercontent.com/a-/AOh14GiszXJT5CE7b-rSxkcbftczh-i3MyI3VGqdcsWR,Very helpful in getting me to do stuff but I wish reminders were free,4,1,15.1.0,2020-02-09 22:39:21,,,newest,com.todoist +Stretch Bands,https://lh3.googleusercontent.com/a-/AOh14GhQ352JXlQkjIP3per8UyWoXBTV8C6YCr3r0zGS,"Great app to keep tight training schedules and regimes. Premium isnt necessary, only downfall would be reminders notifications more than once",4,1,15.1.0,2020-02-09 09:07:38,,,newest,com.todoist +Satwik Das,https://lh3.googleusercontent.com/a-/AOh14GgDd_-Ba14nTB5_a30_egbYnvYHQUETyeEQ5vkI,Paid experience is better than free. But it will do since there are no ads. UI and design can be made note clutter free.,4,1,15.1.0,2020-02-09 07:28:34,,,newest,com.todoist +Trent Ferrell,https://lh3.googleusercontent.com/a-/AOh14GjLVuovr6VrU6Se_7UHoIhIoIpmSpubM6Xe2Soowg,"So far, so good. I've only used the app for about a week. I'll write a more in-depth review soon.",4,0,15.1.0,2020-02-08 05:48:49,,,newest,com.todoist +Thao Dinh,https://lh3.googleusercontent.com/a-/AOh14GhzdIzX3oydb940H5pIByhstLeeTDqy1-lXIodr,Cool. Keeping track of my stuffs is very good.,4,0,15.1.0,2020-02-07 10:03:45,,,newest,com.todoist +Robert Hope,https://lh3.googleusercontent.com/a-/AOh14Ggzovv0knb81089162EYUxx46i-2150T0j5DNt0,Just started but it seems easy to pick up,4,0,15.1.0,2020-02-05 22:04:39,,,newest,com.todoist +Kalina Filby,https://lh3.googleusercontent.com/a-/AOh14Ggfg-wsFdbB_zXELCOUfOxrXzLW8R7myfm7L5HqOQ,Great app only annoying that the mobile and desktop app don't always sync up,4,0,15.1.0,2020-02-05 09:25:19,"Kalina, please try to reinstall the app and make sure it's always open in the background. If this won't help, contact support@todoist.com and we'll look into this.",2020-02-11 11:20:09,newest,com.todoist +Greg Simms,https://lh3.googleusercontent.com/a-/AOh14Gg2h2vNJef8bcK8xO8K_JTjVADMCQkt7807RBGFew,Simple to use clean interface,4,1,15.1.0,2020-02-05 09:20:13,,,newest,com.todoist +Nobi Ki,https://lh3.googleusercontent.com/-zfIlF5N8TL0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNCatNrfGARym8pN1ZRA4G0X32b8w/photo.jpg,"I still feel like it's more complicated than necessary, but it is good for special projects",4,0,15.1.0,2020-02-05 03:37:49,,,newest,com.todoist +Debbie Klont,https://lh3.googleusercontent.com/-7W3URnCLKZI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO7fDBOvBVu7Dfq2WtwH2TBcIsUZg/photo.jpg,"Very useful app, gives reminders, easy to set up.",4,0,15.1.0,2020-02-03 16:36:01,,,newest,com.todoist +angelica barner,https://lh3.googleusercontent.com/-G49ARsoaiKg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMxmtDeUSvegU9XcXSuHJKS4UvtMw/photo.jpg,Only thing missing from this tool is an in-app calendar.,4,0,15.1.0,2020-02-02 19:39:26,,,newest,com.todoist +Dennis Bente,https://lh3.googleusercontent.com/a-/AOh14GgUK6Vm_e0O1JMMUWVoJ8Ok7Tb5V8bH2r9Vj-U8,Easy to use,4,0,15.1.0,2020-02-02 15:39:40,,,newest,com.todoist +Adil Shareef,https://lh3.googleusercontent.com/a-/AOh14GjsKVYDzlj-epWJNks1R-bmhYe3Bf17JPeaeC2-NA,This app has helped me be productive with the amount of features it has. The only negative I would say is that I would have liked to see the reminders feature included for free,4,1,15.1.0,2020-02-02 10:52:10,,,newest,com.todoist +Jonathan White,https://lh3.googleusercontent.com/a-/AOh14GgIlquz6lhQZjXzqdqIncF_hpI1KK3L3WwVS71_qQ,So far so good,4,0,15.1.0,2020-01-31 13:41:09,,,newest,com.todoist +Ayanlola Bayo,https://lh3.googleusercontent.com/a-/AOh14GhkkJ_SHlz1gB2vBVwxqYGPG7RS9VkH1ZshTrQTXA,"This app is awesome! Trust me, it will keep you on track!",4,0,15.1.0,2020-01-31 06:45:12,,,newest,com.todoist +Amirah,https://lh3.googleusercontent.com/a-/AOh14GjWAUZ6QlOVFUuo3zUJc1mgEwM3Yq9VEfgWGYGY,Can I have your email please,4,0,15.1.0,2020-01-30 22:24:54,,,newest,com.todoist +Roshel M,https://lh3.googleusercontent.com/a-/AOh14GiqY6oqScXAfien50770fOhYb8-yGuaWUERnyuyRw,All of the free features are really good and I am way more organized,4,0,15.1.0,2020-01-30 10:01:02,,,newest,com.todoist +Анатолий Горобец,https://lh3.googleusercontent.com/a-/AOh14GjBMJ_mssYT0GlXrxcy_cfy7p7N9VP8grkmCE055w,"Крутое приложение! Вероятно, перейду на премиум подписку. Тем не менее есть один нюанс, что мне не понравился и пока не смог найти решение. Когда в проекте создаёшь задачу и для нее указываешь под задачи, то они отображаются с отступом. Если все эти под задачи назначить на выполнение на определенную дату, то во вкладке Today, все задачи будут отображаться одним сплошным списком, без какого либо визуального разделения на задачи и под задачи.",4,0,15.1.0,2020-01-29 22:22:54,"Добрый день, спасибо за обратную связь! В фильтрах подзадачи (отвечающие запросу фильтра) отображаются сами по себе как самостоятельные задачи. Вы можете нажать на подзадачу, чтобы открыть детали, и там Вы увидите какая родительская задача у этой подзадачи :)",2020-02-03 22:59:22,newest,com.todoist +Eli Rothman,https://lh3.googleusercontent.com/a-/AOh14GgikQ-vlIAecta_RcJV7j6olIRVYQEwON28ztvDSQ,"Updating for 2020-still the most important app I use. It's been life-changing. ---- Todoist is the most important app I use. It's a tremendous way to keep track of professional and personal projects and tasks, make lists (weekly menu, shopping lists), collaborate at work, and keep track of my kids' responsibilities. Doist is an ethical, bootstrapped company with a customer-centric vision and a regular release schedule. If I could marry Todoist, you know I would.",5,55,15.3.2,2020-03-11 17:44:14,,,most_relevant,com.todoist +Steve L,https://lh3.googleusercontent.com/-OeehPlMBCNg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNJ8Bu4Lc8Rla11I7ZXhX4-qJyL2g/photo.jpg,"Awesome! Was using Wunderlist, but they are going away. I tried a few others. They are all so similar now. But this one seems like it will be here for the long haul judging by the number of downloads. Also, it is as simple as Wunderlist. I did have to pay $29 and Waunderlist was free for the most important functions, so that was different. But after using the app for a week I'm sold. Not a better app out there for my purposes. KISS- keep it simple stupid. And this app does that.",5,22,15.3.2,2020-03-20 04:19:23,,,most_relevant,com.todoist +Matin Khosravi,https://lh3.googleusercontent.com/a-/AOh14Ggk_TJT90wueOEOwi_hz4JU5qWiJRLJ_bK07pxCiw,"Todoist has always been one of the most useful apps for me. I have migrated to offline world recently and have decided to plan my works in my journal (instead of Todoist and GCal). However, still I needed a listing app. After a bunch of search between the apps, Todoist is still the best app I can use for making lists 😇 (by the way, I should ignore some of its features like daily goals and replace the term of ""project"" with ""list"" in my mind! But it is a perfect choice for me 😊)",5,5,15.3.2,2020-03-18 12:35:19,,,most_relevant,com.todoist +Carlos Villapudua,https://lh3.googleusercontent.com/a-/AOh14Gi0x2g85Hd3DexnUOtRkg8gvCx47NJKRjRgxjZhRA,"So far the app has functioned excellently. I have not run into any issues. It's very simple and straight forward. However, I do recommend you read the user start guide as you'll find out about not so intuitive functions which make everything not only more seamless but even simpler than before. I would seriously recommend to anyone looking for a Todo app, I've been using the free version and no complaints and no ads. Definitely give it a try and you won't regret it.",5,13,15.3.3,2020-03-22 22:41:24,,,most_relevant,com.todoist +Benjamin Price,https://lh3.googleusercontent.com/a-/AOh14Gi7s7DBRylODZrfyTRhS1XtSgvmURjtCbsHM3LVIA,"it has all the practical features that I need in order to just keep my tasks and projects organized. it is useful and user-friendly. I might go for the premium features if I see the need for them. But even without premium, it is still a very helpful application.",5,1,15.3.2,2020-03-19 15:55:18,,,most_relevant,com.todoist +Kathleen Case,https://lh3.googleusercontent.com/a-/AOh14GiRdeR1pgOYDBO5Ltcsf7GUyaUrsebROszXcC4wJg,"Moved here from Wunderlist, after trying other apps. This is so clean and easy to use and does everything I needed and more. My fiance and I can now both keep track of the grocery list! (So glad it has the ability to share with others)",5,1,15.4.0,2020-03-29 03:42:12,,,most_relevant,com.todoist +Krystyna Lopez,https://lh3.googleusercontent.com/a-/AOh14GgrO2v1TlSUcZNchi-UEQuHClEdTMu2g0yHbDWYE7I,"This app is perfect for my personal task management. You can make it as simple or complex as you want. I like how easy it is to quick add tasks, schedule, and how I can integrate with Gcal. Every idea I have to do anything goes in here. I need reminders for everything; I even use Todoist to remind me to change the sheets :)",5,3,15.3.2,2020-03-20 03:18:11,,,most_relevant,com.todoist +Ahmed Shahrear,https://lh3.googleusercontent.com/a-/AOh14Gj3dW4brnS6M6FYWlzFV8uZH2xHMT2iYuXJ3jIG5g,"This app is really helpful. Earlier,I thought that to do list apps were useless and were a total waste of time. But this app is a real time saver. The reason is that earlier I had to think what I have to do and need to do in my mind, but now I can write in my to do list and get stress free",5,7,15.3.2,2020-03-13 13:58:04,,,most_relevant,com.todoist +Teresa Bompczyk,https://lh3.googleusercontent.com/-q3LabKsP-I4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOjrnmEKMss8DIwGM2ykTcMnl_jBA/photo.jpg,"Quite simply, the best. Cannot get over how user-friendly Todoist is--the devs clearly designed with *intention*. Pre-made templates are a godsend, text markup/emoji integration made me smile, and powerful organizational features made me stay. Kudos 🙌",5,1,15.3.2,2020-03-21 01:20:50,,,most_relevant,com.todoist +Jakob Visic,https://lh3.googleusercontent.com/-pK1KH4r0UbI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN6sOMDqBU561DmzbmkBEGI_6-k7A/photo.jpg,"The GREATEST personal organization app I have used. Cool and simple user experience, works on all major platforms so you can access your lists from virtually anywhere. If you are looking for a way to get organized and productive, this what you are looking for.",5,9,15.3.2,2020-03-16 14:09:09,,,most_relevant,com.todoist +Chris Pollina,https://lh3.googleusercontent.com/a-/AOh14Gj55qkqOSVpkNwID-Zx8ZLJ0rnqx_407Y7Pj2mz,"After I found out Wunderlist was going away I look for an app that could do all the things that could do as it was pretty much perfect for me todoist is pretty much as good, not perfect but for free I can't complain!",5,0,15.4.0,2020-04-01 00:26:01,,,most_relevant,com.todoist +Maxime DROUHIN,https://lh3.googleusercontent.com/a-/AOh14GiMV1iwOvd8v6TQfc04p29tilhMM4d-ehOZYAOk4UM,"Very efficient app, a real time-saver ! And since the last update, a new widget extremely well-made and customizable : you don't even need to actually open the app !",5,0,15.4.0,2020-03-29 20:39:05,,,most_relevant,com.todoist +David Gray,https://lh3.googleusercontent.com/a-/AOh14GjYmjqZfdouUmOq--i5s5tiYMIYCsFcMWnFixulAvM,"Wow, this is so slick. Has to be the most polished app I have ever used. Not really surprised as the web, Windows and iOS are all superb as well. This is so worth the $4 a month.",5,0,15.3.2,2020-03-18 00:05:09,,,most_relevant,com.todoist +L Etzel-Mayer,https://lh3.googleusercontent.com/a-/AOh14GglGbL4qB2NkCUiF_7YhSpvYx-W_OYqoU909ngV,"Love it. Only tweak I'd love to see is when you have something to reschedule and you open the Smart Rescheduler feature, when you click on the item you can customize the suggested date.",5,2,15.3.2,2020-03-13 22:24:46,"That's already possible, you can manually set the due date for each task in the Smart Scheduler :)",2020-03-17 14:58:08,most_relevant,com.todoist +Nadav Raz,https://lh3.googleusercontent.com/--IeQTGeGp14/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMCSihB6vjHQHmZd1mzIGKDcKyB4g/photo.jpg,"Really great. It is clear & effective. I can create my own projects and follow them, It shows me tasks from yesterday that I forgot to do and so forth.",5,2,15.3.2,2020-03-12 07:16:13,,,most_relevant,com.todoist +Ehab Kardouh,https://lh3.googleusercontent.com/-POaXf3NVCow/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNqq8abGAckfG9KXTjDPZezo4ZYvA/photo.jpg,"This is a great app. I installed it two months ago, and I use it everyday. It keeps me awake to all my appointments, and helps me to organize everything. I recommend it to everyone.",5,0,15.3.2,2020-03-17 04:21:10,,,most_relevant,com.todoist +T.M. Gacutan,https://lh3.googleusercontent.com/a-/AOh14Gj8lrzyysqaVKb9XkTh2REMZWJ1mC8eQc2XzrAF,"Really good app w nice interface and easy to learn layout. Lets u divide tasks by ""projects"" which i find really useful! Also gives subtasks, which also helps a lot. Would recommend :)",5,0,15.3.2,2020-03-13 10:02:14,,,most_relevant,com.todoist +Gylfi Bergs,https://lh3.googleusercontent.com/a-/AOh14GjgCyjtHt0EmB13exE-7ztP3eCm0FSdmDwSKvBBFw,"I have been enjoying this app for a good while, over a year now. The recent update moved this app from ok, useful with some mild frustration, to amazing. Super pleased with this fix.",5,0,15.4.0,2020-04-03 18:32:31,,,most_relevant,com.todoist +Jason Heeris,https://lh3.googleusercontent.com/a-/AOh14GjCzZ-NYTYbKjdaPyAEF3JpzisSZ5MYb5SfVkvRBg,"Absolutely the best to do app out there. Great UI, great features. Use it for general stuff, shared shopping lists and household tasks, projects... everything. Well worth it for the paid version too. The only features I'd like to see are more than once a day scheduling (eg. morning, noon and night; can workaround with multiple tasks) and repeatable projects (think recipes; can workaround with templates but difficult).",5,1,15.2.0,2020-03-12 04:37:31,,,most_relevant,com.todoist +jay aquitania,https://lh3.googleusercontent.com/a-/AOh14GgRBCiKF0cA701Z0KedMJLdzKjXsb6GWaJLSOd7,free version has a lot of functionality but i do plan on paying after a few weeks of using it... just to see if i will use it consistently,5,0,15.4.0,2020-04-01 20:25:34,,,most_relevant,com.todoist +Samuel Grasse-Haroldsen,https://lh3.googleusercontent.com/a-/AOh14GjHeCIy7-5Txnmx-HKLFmp_sZV-zig5AIABdPA4fsw,Excellent app with useful features to get stuff done! Thankfully not bloated with ads or useless features. Highly recommend!,5,0,15.3.2,2020-03-20 01:35:22,,,most_relevant,com.todoist +Jay Hovah,https://lh3.googleusercontent.com/a-/AOh14GjMLT3tRSZ5qvPQV1Ea3_FUxCCJvIEQC1hS8NgJ8A,Seems great so far. If you add an option to make the widget clear or transparent I'll give you money for premium. *edit- they literally added this for me in less than a week,5,0,15.4.0,2020-04-01 22:31:59,"Hi Jay, have you checked our new widget? +https://get.todoist.help/hc/en-us/articles/360007080399",2020-03-30 19:50:03,most_relevant,com.todoist +John Hites,https://lh3.googleusercontent.com/a-/AOh14GiNHxKNgKZA3FSNMBXoOuUwNgbc3myjP22j3OZg,"Great app, easy to use, no bumps or lumps so far, no annoying 24/7 interruptions like a lot of apps produce !!!",5,0,15.3.2,2020-03-15 10:49:39,,,most_relevant,com.todoist +David Hack,https://lh3.googleusercontent.com/a-/AOh14GgXbs4L5HCryvpo179yd9Bk62b2Lb5MpUwYtccz,"Very good, has power user features as well like defining properties through text and stuff. Haven't tried the collaboration part yet!",5,0,15.3.2,2020-03-22 13:34:35,,,most_relevant,com.todoist +Abdullah Alsanad,https://lh3.googleusercontent.com/-sP6tTK74hsw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPttWusyPQ-RUR-sAqD-LQruMuWeg/photo.jpg,Excellent update. Thanks Todoist team. I would suggest customizing the font size on the widget as it seems small.,5,0,15.4.0,2020-03-29 11:59:20,"Abdullah, thank you for your feedback! This has been noted :)",2020-03-30 19:07:49,most_relevant,com.todoist +Prodige Tshibangu,https://lh3.googleusercontent.com/-dGVX5nih6Hw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPfIg517_RIFDKBBMgyIq2D0do9Ug/photo.jpg,"This is a great app, it has made my life so much easier. I have tried other apps but this one has to be the best one so far. If you are thinking about getting it you should.",5,0,15.4.0,2020-03-29 20:50:03,,,most_relevant,com.todoist +Roman Gurduz,https://lh3.googleusercontent.com/a-/AOh14GiPZUzn6d3Wtn3yDrdeZYHWQipzUDY-gpYRjbDS,"Best ""to do"" app I try, very intuitive interface. My day now is completely organized. Karma feature is very interesting and motivating. Thank you for this amazing app.",5,0,15.3.2,2020-03-22 20:28:40,,,most_relevant,com.todoist +Stefan Bäck,https://lh3.googleusercontent.com/a-/AOh14Ghgkat293-lh-BtQKXmvkzQtQlpd-HyXqxuOoaJySI,"Great to-do app that does everything you want, also syncs perfectly with planner for Elementary OS.",5,0,15.3.2,2020-03-22 08:43:56,,,most_relevant,com.todoist +Greg Bolton,https://lh3.googleusercontent.com/a-/AOh14GhvhNO0cQH1ZmW5laAc_ewmrwsaOAWySd948TkdGw,I've never been able to stick to using a To Do list until now. Great interface and features.,5,0,15.3.3,2020-03-27 21:02:20,,,most_relevant,com.todoist +Mila s,https://lh3.googleusercontent.com/a-/AOh14GizEXbKEoGEUBISnrYRWpOaI-ccT91jzycl7PlZWg,"Great, works with my Google home so I can just blurt out stuff that pops into my head without interrupting what I'm doing. I would like a bit more control over the details and settings in the app itself but that's just me",5,0,15.2.0,2020-03-10 18:45:05,,,most_relevant,com.todoist +Trevor Krahn,https://lh3.googleusercontent.com/a-/AOh14Gg7jYRRIFDQ93pPJ-lQ7XNTdnntfIe4u4LRnA6zOg,"Great To-Do list app that handles reminders well, it is perfect for my needs.",5,0,15.4.0,2020-04-01 15:17:32,,,most_relevant,com.todoist +Brunno Dias,https://lh3.googleusercontent.com/a-/AOh14GgvOD9ZgOgROrNFa2ZTv7C8QVTNxwdpCHt0mup2,"Two things could be improved. 1. There should be a option if I want to view the tasks organized into sub-projects in a project view. (Concerning the last update) 2. The sub-tasks could be better organized. Maybe nested inside the options, just like in Microsoft's task app.",5,7,15.2.0,2020-03-05 03:58:09,"Brunno, thank you for your feedback, we'll consider adding an option to change this behavior in the future.",2019-03-26 12:44:48,most_relevant,com.todoist +Ash W,https://lh3.googleusercontent.com/-uufSaOkqD9k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNC55krY6x0eaEWBt5r2Ofr-foXRw/photo.jpg,Has literally changed my life. I use it for everyday tasks and chores. My husband and I literally no longer argue about what needs to be done around the house. I also use it as a grocery list as well so my husband and I can add things to it and when we go to the grocery store we just swipe of that we got it. Absolutely life changing.,5,0,15.2.0,2020-03-04 03:29:52,,,most_relevant,com.todoist +Vishnu Charan,https://lh3.googleusercontent.com/a-/AOh14GhK22Mm16q2914WzRfMnYvnxIMO6Ua0a0ibrqBWeg,Best productivity app. Very intuitive to use and a must have for power users,5,0,15.4.0,2020-04-01 16:38:17,,,most_relevant,com.todoist +Riemer Kuik,https://lh3.googleusercontent.com/a-/AOh14GhejuHflLph5JzzWT6hNMJDtgN3u0NvUQGd0nLH,Solid to-do-list app with very nice features such as karma points and 7-days ahead. The best app in my opinion,5,0,15.3.2,2020-03-21 11:54:01,,,most_relevant,com.todoist +shiying lee,https://lh3.googleusercontent.com/-DZZq39NdIwk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNhY2c6Ulo3GJzb7054rqJu3_dltA/photo.jpg,"Great app! Todoist will send reminders that I have 0 due for the day. This makes me think twice if I really have nothing to complete for the day which that is not the case! So it makes me add task and by the end of the day, I got some things done!",5,3,15.1.0,2020-02-08 17:18:53,,,most_relevant,com.todoist +Cynthia Benedict,https://lh3.googleusercontent.com/a-/AOh14GhNMvtvVqiGT6AS5NmyWfKz2rYg_qJjdcrKWHOJl6w,"I'm only two weeks in and purchased premium and killing it (even more than usual) at work. I love this program! I mostly use it on my desktop but it's great for when I think of things after hours, am on the road with my boss or walking out he office door and someone throws something my way I need to remember.",5,10,15.0.8,2020-01-25 00:48:03,,,most_relevant,com.todoist +marcia iglesia,https://lh3.googleusercontent.com/-CiSnfO2tV-M/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPQgf3LjUka4KZCjfDewccMIBwqkw/photo.jpg,I made a resolution to set better habits to steward my time and researched some options. I found this through Tim Challies' recommendation from the book Do More Better & productivity worksheet. He also provided some helpful tips to setting up different tasks under projects and categorizing the roles/responsibilities you have in your life (which is ever changing). I really like that I can set certain tasks to repeat daily or weekly and see the next 7 days ahead to plan out my day/week.,5,0,15.1.0,2020-02-04 06:18:45,,,most_relevant,com.todoist +Angellica Phillips,https://lh3.googleusercontent.com/-RZvWHvj6mPk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOfTJA1q8rCjLAbSe3It4LUGzaXjg/photo.jpg,It's very helpful in keeping track of tasks and managing time.,5,0,15.3.2,2020-03-20 02:36:04,,,most_relevant,com.todoist +Jay Wick,https://lh3.googleusercontent.com/a-/AOh14GhPcPbvhTlr_8N4mXoen0caC9cdtcItMMDGqkknjOE,"Life changer. Love being able to make nested subtasks and being able to assign dates to them! Web app, and windows app work incredible well and feel native. Great Google Assistant integration, but wish it was default for reminders which is probably something Google needs to do to support it. Only complaint is wish task descriptions were free but pricing plans are quite reasonable.",5,14,15.2.0,2020-02-16 01:48:21,,,most_relevant,com.todoist +Wykedengel,https://lh3.googleusercontent.com/-BijkUhAC7V0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOzvKjXbyiGhoqS7IF2EjLKbdCAKw/photo.jpg,"Great all-around app. Free features are enough for most users, though thete are some nice premium perks for upgrading. Love being able to create items using natural voice. This app is tough to beat. I keep trying other apps and always return here.",5,2,15.1.0,2020-02-10 00:30:43,,,most_relevant,com.todoist +Jeremy Poindexter,https://lh3.googleusercontent.com/a-/AOh14GjelXRSars_t_EXgubM2b5_AV9M6FM_NuSbdVODjw,"Was initially sad that Wunderlist got shut down, but so happy to have discovered Todoist instead. I like it even better -- it is smart but also simple and not overwhelming. Wonderfully designed.",5,0,15.2.0,2020-03-09 06:48:17,,,most_relevant,com.todoist +Mathis Gauthey,https://lh3.googleusercontent.com/a-/AOh14GihVgXD5_tYL_7Wdoj4WJu2yFJzAHuLUJmdIZiv3Q,"Great design, autocomplete the date if you add words such as ""do something Wednesday"" and many other autocompletion features It's the best out there for sure, and I've tried them all",5,0,15.2.0,2020-03-10 12:50:22,,,most_relevant,com.todoist +Vojta Z,https://lh3.googleusercontent.com/-AkjB3MU8D_g/AAAAAAAAAAI/AAAAAAAAe_4/AAKWJJNMvcIjmQa1BXPzKp-kmkInjBD5Fw/photo.jpg,"Great app, I love how well thought UX it has. Thanks to the free month to try it I could really try if the app is good for me and now I am happy premium customer because it is by far the best app for todos. I am using it for my a bit enhanced GTD and my productivity has actually skyrocketed ever since I use Todoist 😊",5,1,15.2.0,2020-03-06 21:07:12,"Hi Vojta, you can try premium for 30 days for free and we also support monthly billing on the Play Store. 🙂 If you have any issues activating your 30 days Premium trial, please contact us at support@todoist with your Todoist account email 😊",2020-01-27 16:35:58,most_relevant,com.todoist +Nandini Sharda,https://lh3.googleusercontent.com/a-/AOh14Gj-fmSDPt22mzksT4N4gSSGZoxbkIReyp72rkWBFTU,Super app... Can keep tracks of different types of lists really well... Just one thing I wish they had the slide and add more things in a section even in the today tomorrow next week lists It would make the process faster Than choosing the date in the calender again n again.,5,0,15.1.0,2020-02-12 16:12:30,,,most_relevant,com.todoist +Sai krishnan Mohan,https://lh3.googleusercontent.com/-lr8rouQCZJQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMEUUA5coGG59lQsREHG63L1Wvr-w/photo.jpg,Good way to keep in touch with actions - works well with planners.,5,0,15.3.3,2020-03-26 06:05:05,,,most_relevant,com.todoist +Eric Macedo,https://lh3.googleusercontent.com/a-/AOh14GgExMUFOatqjjUW7t0zO7_5R4ZFo_ReJ8JdMP1TRA,The experience is being great! The app is really useful and beyond expectations,5,0,15.3.3,2020-03-27 00:45:57,,,most_relevant,com.todoist +Lisa Yunker,https://lh3.googleusercontent.com/-Swkc3tBzMKM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMhmh5kSmEgD57fXC3Fyu-cinzAZw/photo.jpg,Love this app! It has really helped improve my productivity!,5,0,15.4.0,2020-03-31 06:03:31,,,most_relevant,com.todoist +Grecu Andrei,https://lh3.googleusercontent.com/a-/AOh14Gi1hv_BCXr1K9CyGMWN7W7ZJkANLCMTzFMCKFsIVw,"Great app, using it all the time... Would be great to have a toggle for switching on and off the view of the completed tasks in ""today"" mode. This motivates even more, if you see how many things you accomplished today...",5,2,15.1.0,2020-01-29 14:59:02,,,most_relevant,com.todoist +Tony Bergeron,https://lh3.googleusercontent.com/a-/AOh14Gi0rVD4chKwTODFohCzkO1T6stq59OuD6oIAOBc8w,I have enjoyed using the app. I like that you can plan to do something and it's tossed into the void or tossed into a bucket for planning later I wish I could hide buttons related to premium features but once you get used to what is what you can avoid them,5,1,15.2.0,2020-02-22 01:50:28,,,most_relevant,com.todoist +Chris Ganaesh F Xavier,https://lh3.googleusercontent.com/-i7jhtQoObMg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPJRH7K1ZgkzENGjY50C-zD2PmQbA/photo.jpg,Literally everything that i ever need in a todolist app... the minimalistic design and AMAZING user interface is soo user-friendly and helpful to stay organised and plan my days accordingly. Honestly this has been nothing short of a life changer for me.,5,0,15.2.0,2020-02-26 15:00:20,,,most_relevant,com.todoist +Martha Davies,https://lh3.googleusercontent.com/-bXfp6Oauv1A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNLISKMMH67VA8pywYDNH2YgL3Kxg/photo.jpg,This app is sooooo helpful for me as a student to help me stay focused and productive. It gives little reminders to get you back on track and it's a must for any student or busy person,5,0,15.2.0,2020-03-08 12:45:12,,,most_relevant,com.todoist +Joe R.G.,https://lh3.googleusercontent.com/-OMr8HbD1dPI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNA2fnzh2nUCOF23xMjwjYatQNZ-g/photo.jpg,"Works perfectly. Incredibly fair subscription system that's worth the money, but not necessary for a good user experience.",5,0,15.2.0,2020-03-11 12:23:18,,,most_relevant,com.todoist +Scott Butler,https://lh3.googleusercontent.com/-x8auLaCczXQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOwznqA7fQZM5d11NfWZ1ceLDb7vQ/photo.jpg,Great free experience! I can organize my to-do lists into projects with subtasks. It's almost like a sprint board for my life.,5,0,15.2.0,2020-03-08 07:30:47,,,most_relevant,com.todoist +Ned Richards,https://lh3.googleusercontent.com/-6D6j2GKbC8w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM9YzUb3OZTKS5fzUtY83HGiwbDMA/photo.jpg,"Really easy to use task manager, ability to schedule posts and get alerts when you're over due, great layout in projects or per week, ability to add links, emails, and subtasks - made my work life a lot easier!",5,1,15.2.0,2020-02-18 13:41:50,,,most_relevant,com.todoist +Jack Hartzler,https://lh3.googleusercontent.com/a-/AOh14GhQRVKDVV51IZRFb9sEPyoO6DcLSnT5ca6Fz2ITyQ,"Turned around my productivity life, slowly but surely. It's all in how you use it: I recommend starting slow with a couple tasks a day that you already do and then slowly adding things you find you need to do. Clean interface and helpful karma system.",5,1,15.1.0,2020-02-02 03:45:23,,,most_relevant,com.todoist +Prasad Dalavi,https://lh3.googleusercontent.com/a-/AOh14GjLc0stBWW2BAcK6LgJgx4sdIDne_zyRlGiv8pS8w,"Cool and descent. Just wish to show completed things automatically. Each time i need to look at them Also while showing completed things, display it as recent first 1. To do 2. Completed recent 3. Past complete .. .. Like wise",5,2,15.1.0,2020-02-09 03:41:58,,,most_relevant,com.todoist +Charles P,https://lh3.googleusercontent.com/a-/AOh14GhK3zqReSf9Lg_jQyDSg2PprN0mzZcZMTKhV_z3,"Intuitive, flexible, and free from nagging ads",5,0,15.4.0,2020-04-03 14:41:35,,,most_relevant,com.todoist +Dines Larsen,https://lh3.googleusercontent.com/a-/AOh14GjqM1ThvHvJ5Vfbg0t3NbbwtfPy-iCOxn4rsTWw4g,"Very good app, it keeps reminding me every week to do my weekly review, and that's what I do, can't wait to actually start using it properly tho 😅",5,0,15.2.0,2020-03-07 15:18:21,,,most_relevant,com.todoist +Dipanjan Das,https://lh3.googleusercontent.com/a-/AOh14GiMG3tduLqZ7-3qKfUdnpRf42JQ5cwwFbfcaKcTUA,"Initially it didn't let me view the shopping list synced from Alexa on my Android Smart Watch. However, as the developer says, if it is added to the Favorites, Alexa shopping list gets synced.",5,0,15.1.0,2020-02-04 16:43:44,"It should work if the shopping list is added to the favorites. If it doesn't, please contact support@todoist.com and we'll look into it.",2020-02-04 12:08:08,most_relevant,com.todoist +Amanda Solis,https://lh3.googleusercontent.com/a-/AOh14GjGW_yc4s1cs0p7eJ80nCuih4eJ95mbmMlkrxDvtuU,Great app! I use it to keep track of work projects and my tasks for courses I take for my masters. The free version is perfect enough for what I use it for.,5,0,15.1.0,2020-02-06 01:30:50,,,most_relevant,com.todoist +pawan kalra,https://lh3.googleusercontent.com/-nnHPBErqhEY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMVQlH3hG64-lBRBCyRRQaY8xk9hA/photo.jpg,"Love the desktop version. Ability to quickly add task using shortcut is my fav, without having to go application window. I wish there was an ability to add comments in free version.",5,0,15.2.0,2020-02-27 01:30:21,,,most_relevant,com.todoist +Joseph Merboth,https://lh3.googleusercontent.com/a-/AOh14GgmXprjSKwSovMDqQ4Tj5gn44zj6qeCvMStMBfGgg,"Being able to set a task's date, time, or project name by just typing is game-changing.",5,0,15.2.0,2020-03-10 16:48:40,,,most_relevant,com.todoist +Cecilia Chan,https://lh3.googleusercontent.com/-2zTsEEM2t78/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNEdY20H8HpSDnhuJ_Cqy4YFGEzGg/photo.jpg,"Love it especially the natural language e.g write every tuesday, friday do ... Then it will automatically repeat ... Every tuesday, friday.",5,0,15.3.3,2020-03-28 10:16:26,,,most_relevant,com.todoist +Louise Romanin,https://lh3.googleusercontent.com/a-/AOh14Gi_jafGVAJXXWgwfSDg_A4EY1bm2Cl0V8q8kqd9,Love it. I'm actually getting things done! It takes a little bit of learning to work out how to make recurring tasks etc but once you do it's all there. (Free version),5,0,15.2.0,2020-03-06 05:45:35,,,most_relevant,com.todoist +Rod S,https://lh3.googleusercontent.com/a-/AOh14Gjy7nAf0WaUhpzAFWI2YCcqwehY15LJ_IHifGuoTM8,"Greatest App I have ever used. Well thought out, organized, the only App I can honestly say that I use every single day. Never forget a thing! Helps me sleep better at night.",5,0,15.1.0,2020-02-13 00:52:12,,,most_relevant,com.todoist +Dan Gottesman,https://lh3.googleusercontent.com/a-/AOh14Gh8bIy3R2S6n5lOujlawayC-wwgwOyWBigFeb81,Easy to use and full featured. Connects to Google Calendar and elsewhere. Project structure along with Categories and Keywords allow Flexible use. Filters allow you to Zero In on the Key Tasks and Actions to Be Aware of NOW and Here too.,5,0,15.2.0,2020-02-22 17:58:12,,,most_relevant,com.todoist +chokchai suttinarakorn,https://lh3.googleusercontent.com/a-/AOh14Ghc_aEcAylpku9m8Au92PSHUUgJXF7qn-nQph6fMGA,"Really helpful to track project with simple interface and easy to use. Anyway, it's not a variety of the feature but quite simple.",5,0,15.0.8,2020-01-24 03:19:05,,,most_relevant,com.todoist +Mr. Shneebly,https://lh3.googleusercontent.com/a-/AOh14GhwSNcPts4IwFv7LtXsbl8KnznM1QFr0u2uX4CnAQ,"Its the best 'to do list' app I've ever come across by first impressions, simple and easy to use, looking forward to using it this week to get rid of my admin!",5,1,15.1.0,2020-02-08 14:35:00,,,most_relevant,com.todoist +Susie Ruiter,https://lh3.googleusercontent.com/a-/AOh14GgzDISD_lTd4gpFX8Iqz-4FYQzE6vzKVoYyg6i5,It does a beautiful job at helping you use their app through their website and other tutorials. It makes you soooo much more likely to stick to using it than other apps.,5,1,15.1.0,2020-02-09 02:04:50,,,most_relevant,com.todoist +Firstname Lastname,https://lh3.googleusercontent.com/-TtYON0g-yYg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNwemcmwrrouBiaoHVbSbhvSwlqig/photo.jpg,Best App I've tried (for this purpose) and I stopped trying others until further notice. I'm considering paying for the fancy things since the app is so smooth and it's cheap enough.,5,0,15.2.0,2020-02-25 21:09:35,,,most_relevant,com.todoist +Christen Jensen,https://lh3.googleusercontent.com/--ZjF761FCS8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM3qE5Qhvf30QidSwVdn9NjwZ8_Cg/photo.jpg,"If you like checking boxes off, this is a great app. You can create lists, sublists, and even nest tasks inside of a list. It's a great organizational list app.",5,1,15.2.0,2020-02-25 18:30:31,,,most_relevant,com.todoist +Dare Kehinde,https://lh3.googleusercontent.com/-7Qk2aALq5ik/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP-X_2oJ_p0Zd6ecdkV6PqneielKA/photo.jpg,"Excellent app, continuous improvements make app be in the top 1% of Productivity category",5,0,15.4.0,2020-04-01 14:00:50,,,most_relevant,com.todoist +Larry Evana,https://lh3.googleusercontent.com/-10_EcKGr3e8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOratCAPPXXM6cKgXpq71C03olo3g/photo.jpg,Really helps me keep my projects in order. I always have 10-15 construction jobs going at one time. Being able to walk in a house and making my list by project with reminders and emails is awesome,5,0,15.1.0,2020-02-13 23:07:44,,,most_relevant,com.todoist +Jordan Creson,https://lh3.googleusercontent.com/a-/AOh14GgfZbqsnDRq4qm5OapYWo5jslvqFDfhYOgUz7ZZrHE,This is a very well designed app. I especially love the ability to share lists with my wife and make comments back on forth on specific tasks.,5,2,15.2.0,2020-02-23 00:14:43,,,most_relevant,com.todoist +Doomturtles,https://lh3.googleusercontent.com/a-/AOh14GgkppyB3LcnCcJ4qt__pbadXzvVsQb2TiDbYr3Hgg,"After searching through loads of Todo list apps finally found one that works for me, great interface, very customiseable, sad that some features are locked behind premium but works fine for free",5,0,15.1.0,2020-02-05 20:13:27,,,most_relevant,com.todoist +Jonathan Conley,https://lh3.googleusercontent.com/a-/AOh14Gj1YkYiMnastUVd8ikDc_znENCIZXQGhyNSJLnrVg,"Very customizable planner, easy to navigate, but not basic. I love it. Thanks to the creators, you guys really did a nice job.",5,0,15.1.0,2020-02-13 17:24:51,,,most_relevant,com.todoist +Aidan,https://lh3.googleusercontent.com/a-/AOh14GgVqFQKeCwrTo5gn-xXnLnbRIonU7UnjsJgyXNuxA,"Well thought out app for taking and tracking tasks. I love the way it can set up recurring tasks for various time periods. The comment taking works well, as does uploading attachments. Good device support and notifications. This one's a keeper 😀👍",5,0,15.2.0,2020-02-29 21:14:58,,,most_relevant,com.todoist +Alex Shapoval,https://lh3.googleusercontent.com/a-/AOh14GiO9U7fxyTXkpRJH1ZcfvFUAM7d4cftLv-e65xrDQ,I've started using Todoist again recently and fell in love with this app. It's one of the best list managers and the big advantage for me is that it is cross platform,5,0,15.1.0,2020-02-03 20:04:29,,,most_relevant,com.todoist +Marie Watton,https://lh3.googleusercontent.com/-_mJb3xstBw0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJML51QXWDSxqRKOUtjTcuqaxbsLPQ/photo.jpg,Absolutely amazing app for helping you to organise projects at home and at work and actually get stuff done. Get it you won't regret it.,5,0,15.2.0,2020-02-22 12:23:02,,,most_relevant,com.todoist +Tumelo Maile,https://lh3.googleusercontent.com/-p4no6JrD7no/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMzYcPUk8KMFPRMWLjgzgsNOSAh-A/photo.jpg,"It is very very easy use and after spending hours longing a to do list app , i can say this is the best app i have ever used. Download it and install it i promise you will not regret it",5,0,15.2.0,2020-03-06 11:35:30,,,most_relevant,com.todoist +Игорь Громов,https://lh3.googleusercontent.com/-mXGQoiXVAVQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMxG-OP6OQ0hhn1ot2LmkUXc7rzbw/photo.jpg,"Perfect task tracking app I absolutely love automatically set repeated tasks. For example, you write ""pay rent every 25th"" and the task sets repeat every 25th day of month",5,0,15.2.0,2020-02-19 20:52:46,,,most_relevant,com.todoist +Kerenza Buttle,https://lh3.googleusercontent.com/-lvgvoigKFdk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN0OfZCXGkaj4mSba_D8fuuY7aN4Q/photo.jpg,"Very useful. One can make tasks repeat, and rank them based on priority.",5,0,15.2.0,2020-03-09 20:49:31,,,most_relevant,com.todoist +TeaCoffeePenguins,https://lh3.googleusercontent.com/a-/AOh14GjuTJKDaqmwYOIUiO4RLB8DOoIAMnzHWgP_YPE7fgE,Keeps me on track with all of my many projects and the minute details of things I work on. =] I really have a lot of projects!,5,0,15.1.0,2020-01-27 19:25:34,,,most_relevant,com.todoist +Samuel Alves,https://lh3.googleusercontent.com/a-/AOh14Gj2sInHUQKwrgbujb3d5t9Z9wiTiSgVK-4q4LndDQ,"Really amazing! It helps people achieve your tasks... Better than using a ""piece of paper"". Inclusive you can fix commitments in future days.",5,0,15.1.0,2020-02-19 08:28:18,,,most_relevant,com.todoist +Kevin Blackburn,https://lh3.googleusercontent.com/a-/AOh14GjvvWM9cP9X6hH4Imky9xJsul6-d_lnXshGkaHmXAI,Excellent app. Tried everything and this is the best all around productivity app out there. Well worth the premium upgrade.,5,0,15.2.0,2020-02-29 21:56:27,,,most_relevant,com.todoist +Petar Frost,https://lh3.googleusercontent.com/a-/AOh14GjL6tJmJqMrk5RE45416UqcRB0Xq9cNwFtakdXCzCY,"After using Todoist for 3 months, I have considered it one of the most effective applications so far. I have planned pretty everything using this app and could not deny to say that it has made my life a lot easier!",5,0,15.1.0,2020-01-30 13:41:35,,,most_relevant,com.todoist +Ann Dell,https://lh3.googleusercontent.com/-LyRPlLSCFCU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPkqutmRzFzBk1y_b5ecu_Y3GFFDQ/photo.jpg,I like that you can repeat task in certain time period from completion date. This sets this app apart from most other to do apps.,5,0,15.1.0,2020-02-15 10:37:51,,,most_relevant,com.todoist +Dávid Veszelovszki,https://lh3.googleusercontent.com/a-/AOh14GiyE4vrAn6fCqT7bRna_8GbWnO6Y-jQhVOonN5zcg,"Despite its bad UX on the web (e.g. it's a pain to add tasks to projects, Trello-like shortcuts would help), I like this app a lot!",5,1,15.2.0,2020-02-17 22:56:27,,,most_relevant,com.todoist +Jasmine Brina,https://lh3.googleusercontent.com/-mnp1_BwxCz4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOptovcSET8qtv_VuEkrHdso3KjCg/photo.jpg,"absolutely amazing app, the best for to do lists.",5,0,15.3.2,2020-03-21 21:21:46,,,most_relevant,com.todoist +Victor Nastasa,https://lh3.googleusercontent.com/a-/AOh14Ghh4h_h4vqW21hAm1-H5IuZTcrUrkd2uf2ww0QV0Z0,It's just as good as Wunderlist and so much more,5,0,15.4.0,2020-04-01 08:56:54,,,most_relevant,com.todoist +Emanuela Agent,https://lh3.googleusercontent.com/-3t-xjrAb8SM/AAAAAAAAAAI/AAAAAAAAAvw/AAKWJJOZ7hoenfM3urojS2s-21aSXzrruQ/photo.jpg,The best organising app I have ever used. Very intuitive and very well designed. It has been a huge help.,5,1,15.1.0,2020-02-01 21:31:06,,,most_relevant,com.todoist +Luke Puttock,https://lh3.googleusercontent.com/-hxVaTXeIvwU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO6R7ZufY-bJ7mTvz8SIXObZNDxgw/photo.jpg,Easy to use and reminds me via notifications and email. Keeps my life on track.,5,0,15.2.0,2020-03-10 09:15:32,,,most_relevant,com.todoist +Kamia Van Cleve,https://lh3.googleusercontent.com/a-/AOh14GjKGSimZn1p5Efe5UFN1dXAahluC2VMYyai26Axgw,"Amazing, this is the app I've needed! Haven't even dived into all the features yet. 🙌🏻",5,0,15.3.3,2020-03-27 08:37:35,,,most_relevant,com.todoist +Warrick Fehi,https://lh3.googleusercontent.com/a-/AOh14GhzXpcTK9uRDzOzfPc4jIPQOh4G4sZk30fUrhub-A,It has a really useful ability to add sub-tasks to other sub-tasks. Great to use for ordering tasks.,5,0,15.2.0,2020-03-04 05:27:19,,,most_relevant,com.todoist +Emanuel Gabbay,https://lh3.googleusercontent.com/a-/AOh14GhrHXEc9OcTrowxwlLebUf2yvhbI71w6BGFCHo08Q,Great app for managing and completing tasks in a form of projects.,5,0,15.2.0,2020-03-09 21:36:49,,,most_relevant,com.todoist +Cool Rather,https://lh3.googleusercontent.com/-Q67rqcFNsec/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMVWubZZrtQ6Yf69I8XxEW9sgzgaw/photo.jpg,Satisfied. But to me too little functions for free version. I'm not able to judge whether I'm ready to pay for full version,5,1,15.1.0,2020-01-29 10:28:03,,,most_relevant,com.todoist +Nicholas Mooney,https://lh3.googleusercontent.com/a-/AOh14Gi6tTMQid4iVYVgBqZKrM66C0PiMCsVtG37j3yxZ_Y,"Great app. Synchs immediately. Intuitive. Love this app. I've tried a few to do apps, and this one is the best",5,1,15.1.0,2020-02-08 19:53:41,,,most_relevant,com.todoist +Guillaume Cortade,https://lh3.googleusercontent.com/a-/AOh14Gic9RmX1vvtyl6CsmKQe8ABEbPjnNE6D-zF7vm_PA,"Very useful, lots of options while staying simple to use. I use it all the time",5,0,15.0.8,2020-01-25 15:13:08,,,most_relevant,com.todoist +Dane Miodov,https://lh3.googleusercontent.com/a-/AOh14Gi61Vwg4hFkafVyMGSjGS3bXNQnIL0oosvLqMdakA,"Outstanding! Best ""To Do"" list app I've ever used, and I've tried a lot of them. Worth every penny.",5,0,15.1.0,2020-01-29 03:38:22,,,most_relevant,com.todoist +Aidan Kartha,https://lh3.googleusercontent.com/-y9JB8JGExMg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOg_XlNpjLCLTpMdsqdmIei2XherA/photo.jpg,Simple. Does exactly what I want,5,0,15.4.0,2020-04-06 20:27:27,,,newest,com.todoist +Gogoks 547,https://lh3.googleusercontent.com/a-/AOh14GhN3XMaJATCwvhgUET8doZD1pHnvCB6vKbTR7aixw,The app does wonders!,5,0,15.4.0,2020-04-06 13:17:09,,,newest,com.todoist +B Smith,https://lh3.googleusercontent.com/-EvaY1zE0b6k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMBj0VR2X3fhSx2EURX6HCobrRRQA/photo.jpg,Perfect app for keeping all my tasks in order.,5,0,15.4.0,2020-04-06 08:03:06,,,newest,com.todoist +Michelle Jaramillo,https://lh3.googleusercontent.com/a-/AOh14Gg7Mkvew551SVQDE8D-lhT1j_s3kQrcYM4f1M4_kK4,Its very helpful.,5,0,15.4.0,2020-04-06 06:16:57,,,newest,com.todoist +mohammad yousuf,https://lh3.googleusercontent.com/a-/AOh14Gg707epGZx_R9kr5E8wz7q6vmrZTq17syIkdlql1w,Very Great app to keep everything on list and do it with out fail,5,0,15.3.3,2020-04-06 05:21:45,,,newest,com.todoist +Catherine Nguyen,https://lh3.googleusercontent.com/a-/AOh14Gi7xG8UGr5nUvNoFTHE8pUXLrF_mjhvy7kw80xR,Great app and constantly improving. Appreciate the hard work by developers which made a difference 👍 However agree with other users that the ability to open the app from the widget was helpful and was taken away,5,0,15.4.0,2020-04-05 23:13:20,,,newest,com.todoist +Mickey Lehtman,https://lh3.googleusercontent.com/a-/AOh14GiIG1qyrW-KzIPXl7t6pgfNeVs781GX-Rps3qUxpOQ,So useful!,5,0,15.4.0,2020-04-05 23:11:39,,,newest,com.todoist +Jaroslav Šnobl,https://lh3.googleusercontent.com/-2prp2oH3kB8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJML3CIc06TPxDz2Gi8myuIJftvH8g/photo.jpg,It's cutting edge of all to-do-list apps! 💪,5,0,15.4.0,2020-04-05 20:40:02,,,newest,com.todoist +Tom Kneiphof,https://lh3.googleusercontent.com/a-/AOh14GjV2RcWyYFt_5KdVKpmD38bPkAyVdnK8bq7HuRfjA,Fits my needs almost exactly!,5,0,15.4.0,2020-04-05 19:52:54,,,newest,com.todoist +Toby Massingale,https://lh3.googleusercontent.com/a-/AOh14Giqz9exE1uiEt6CyoDPt2Je3U6chVFvMH8ea5CUeQ,"Exceptional, Tip Top Services, mateys...",5,0,15.4.0,2020-04-05 14:48:07,,,newest,com.todoist +Maurice Kees,https://lh3.googleusercontent.com/a-/AOh14GhHjbRPL84-5_QaKJKrUSK-YCDjiACUyU9fvI88RIw,"Great for organizing and planning your tasks. Also the app is very responsive, even on an older phone. No wait time, no frustration, just add tasks within seconds, right from your phone's home screen",5,0,15.4.0,2020-04-05 11:00:43,,,newest,com.todoist +l jérôme,https://lh3.googleusercontent.com/a-/AOh14GjIspu1I-IhGYwYkAPMKPGmNPGExummLd-3DvSRNg,Good app to organise school projects and plans,5,0,15.4.0,2020-04-05 05:49:20,,,newest,com.todoist +ProGamer Olvera,https://lh3.googleusercontent.com/a-/AOh14GgwalIi1_AX0GU5msY4tZ75puEFwtGkND0crOhy,Best Reminder app!,5,0,15.4.0,2020-04-04 23:46:45,,,newest,com.todoist +John Trustman,https://lh3.googleusercontent.com/a-/AOh14GgtnatrFT7mvMyoabDXuFS8FIj9U_gTAGcNn7vsdw,Best to do app,5,0,15.4.0,2020-04-04 23:11:49,,,newest,com.todoist +Franz Bomfim,https://lh3.googleusercontent.com/a-/AOh14GjMb-YRcJV1eizwbCWmKFgOK1vLRBDcuU7Q0GFF,So good free version!,5,0,15.4.0,2020-04-04 19:30:58,,,newest,com.todoist +John Russell,https://lh3.googleusercontent.com/-DQoA22LDCyg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPl7DVNspa31dpFaHm1wWnyRCflkw/photo.jpg,This is the best to do list. Also growing your karma level is fun.,5,0,15.4.0,2020-04-04 12:00:17,,,newest,com.todoist +Chekushin Alexey,https://lh3.googleusercontent.com/-lw1P2-vnk7k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOmNryhHoca_GE5Ce2p_9QBuML78A/photo.jpg,One of the most useful apps on my smartphone,5,0,15.4.0,2020-04-04 10:57:40,,,newest,com.todoist +Young Student,https://lh3.googleusercontent.com/-7H51LiPsj8E/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNiZ3JlQp58pkiJx3wDQz9QLJ-8yg/photo.jpg,super,5,0,15.3.3,2020-04-04 10:52:25,,,newest,com.todoist +Yusuf Sheriff A,https://lh3.googleusercontent.com/a-/AOh14Ghv5xHYmvyJ5esx-jLXYC1DG8n-xdFt8ChkDIiIIA,It's Good,5,0,15.4.0,2020-04-04 03:39:13,,,newest,com.todoist +Marzieh M,https://lh3.googleusercontent.com/-f47H2R9C6UM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPSO_6VR_nIJOd1XYOgWUSJ9uKrhA/photo.jpg,Great,5,0,15.3.3,2020-04-04 02:37:11,,,newest,com.todoist +Raphael Mestres,https://lh3.googleusercontent.com/-l2L_9p0m7e4/AAAAAAAAAAI/AAAAAAAAgAE/AAKWJJPBvnRQ2ZcAKj2U6MCAsQDIcZSZPg/photo.jpg,"Resolveu minha necessidade de organização e produtividade diária. Demorei um pouco, mas encontrei um app inteligente e fácil de mexer. Não tenho nenhuma queixa sobre a funcionalidade dele ou qualquer outra coisa.",5,0,15.4.0,2020-04-03 21:06:35,,,newest,com.todoist +Gylfi Bergs,https://lh3.googleusercontent.com/a-/AOh14GjgCyjtHt0EmB13exE-7ztP3eCm0FSdmDwSKvBBFw,"I have been enjoying this app for a good while, over a year now. The recent update moved this app from ok, useful with some mild frustration, to amazing. Super pleased with this fix.",5,0,15.4.0,2020-04-03 18:32:31,,,newest,com.todoist +Martin R.,https://lh3.googleusercontent.com/a-/AOh14Ghm6L85kLYt1ygHsSj3Qplw1XxoO2ywiM1EmVmKnA,works pretty well and it's intuitive.,5,0,15.4.0,2020-04-03 17:28:40,,,newest,com.todoist +Charles P,https://lh3.googleusercontent.com/a-/AOh14GhK3zqReSf9Lg_jQyDSg2PprN0mzZcZMTKhV_z3,"Intuitive, flexible, and free from nagging ads",5,0,15.4.0,2020-04-03 14:41:35,,,newest,com.todoist +ANKIT DUBEY,https://lh3.googleusercontent.com/a-/AOh14GjbelxKtJb4rsUr58QbBOxG33LqjuB-AYlIJfEF,Lovely app with good UI,5,0,15.4.0,2020-04-03 08:11:44,,,newest,com.todoist +Laurynas,https://lh3.googleusercontent.com/-tVNXEt8nvO0/AAAAAAAAAAI/AAAAAAAAA_4/AAKWJJM8XjBg4hUeaw0-T9ZndgGils88ww/photo.jpg,"Love the app, I've signed up to premium a year ago and I'm continuing my subscription. I'm using the getting things done (GTD) methodology with this app. A feature idea: allow users to choose when ""today"" ends or when ""tomorrow"" starts. E.g. my day doesn't really finish at midnight every day, I consider my day finished when I go to sleep, which sometimes can be at 3-4 am. So I would choose 6 am to be my ""tomorrow"" so those tasks don't mess up my to do list on nights when I work late.",5,11,15.4.0,2020-04-02 22:10:34,,,newest,com.todoist +Kyle Bodamer,https://lh3.googleusercontent.com/-IcDiaWFqUMs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN6g8oPwRM9FrWSvIuw2dHF41E-4w/photo.jpg,Intuitive and fun,5,0,15.4.0,2020-04-02 21:38:27,,,newest,com.todoist +Алексей Титов,https://lh3.googleusercontent.com/-ceUt41Qt5uo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO46tkg2VEdBgpMVYrtbiMK8l7Jog/photo.jpg,Nice app,5,0,15.4.0,2020-04-02 20:12:34,,,newest,com.todoist +Friedrich Albert Kyuri,https://lh3.googleusercontent.com/a-/AOh14Gg8q47ElllbOyq8ylH3cIZ1YTQWO8FBCPOj6cio,Great app all in all,5,0,15.4.0,2020-04-02 08:29:36,"Hi Friedrich, were you able to contact us at support@todoist.com?",2020-03-30 19:54:37,newest,com.todoist +Abderrahmane M,https://lh3.googleusercontent.com/a-/AOh14GjaQr6XgmJ5JPilYAYpc7XoIZUF_UBYnK6y9qJT,"I tried many apps , but honestly this app is very awesome 👌.",5,0,15.4.0,2020-04-02 03:59:37,,,newest,com.todoist +Bootiful Shorts,https://lh3.googleusercontent.com/a-/AOh14Gg1JBQrplOoKVl4LN7Ng_y0eNjrQuWuAPZ0XUSp,Honest great app to get you to do the things you wanna get done,5,0,15.4.0,2020-04-02 03:35:41,,,newest,com.todoist +Ruth Coelho,https://lh3.googleusercontent.com/a-/AOh14GgntwZltQKFDuL_qGl7DPzXqv2q6D9nGvR6DrOoaA,It really helps you get focused on your priorities and do your job,5,0,15.4.0,2020-04-02 00:37:48,,,newest,com.todoist +Jay Hovah,https://lh3.googleusercontent.com/a-/AOh14GjMLT3tRSZ5qvPQV1Ea3_FUxCCJvIEQC1hS8NgJ8A,Seems great so far. If you add an option to make the widget clear or transparent I'll give you money for premium. *edit- they literally added this for me in less than a week,5,0,15.4.0,2020-04-01 22:31:59,"Hi Jay, have you checked our new widget? +https://get.todoist.help/hc/en-us/articles/360007080399",2020-03-30 19:50:03,newest,com.todoist +jay aquitania,https://lh3.googleusercontent.com/a-/AOh14GgRBCiKF0cA701Z0KedMJLdzKjXsb6GWaJLSOd7,free version has a lot of functionality but i do plan on paying after a few weeks of using it... just to see if i will use it consistently,5,0,15.4.0,2020-04-01 20:25:34,,,newest,com.todoist +Vishnu Charan,https://lh3.googleusercontent.com/a-/AOh14GhK22Mm16q2914WzRfMnYvnxIMO6Ua0a0ibrqBWeg,Best productivity app. Very intuitive to use and a must have for power users,5,0,15.4.0,2020-04-01 16:38:17,,,newest,com.todoist +Huy Bach,https://lh3.googleusercontent.com/a-/AOh14GiliCy67ofQaWSf6_HrZmhFmVnwpqkqGPgKB5Cpqg,Good application and very useful.,5,0,15.4.0,2020-04-01 15:26:33,,,newest,com.todoist +Trevor Krahn,https://lh3.googleusercontent.com/a-/AOh14Gg7jYRRIFDQ93pPJ-lQ7XNTdnntfIe4u4LRnA6zOg,"Great To-Do list app that handles reminders well, it is perfect for my needs.",5,0,15.4.0,2020-04-01 15:17:32,,,newest,com.todoist +Dare Kehinde,https://lh3.googleusercontent.com/-7Qk2aALq5ik/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP-X_2oJ_p0Zd6ecdkV6PqneielKA/photo.jpg,"Excellent app, continuous improvements make app be in the top 1% of Productivity category",5,0,15.4.0,2020-04-01 14:00:50,,,newest,com.todoist +Frank Coughlan,https://lh3.googleusercontent.com/a-/AOh14GjbnfGn4fD2bFgue2eSdzVQPwsWkmb0oPOee5aoKQ,Still learning. Looking good so far. Nothing to complain about.,5,0,15.4.0,2020-04-01 11:46:45,,,newest,com.todoist +Victor Nastasa,https://lh3.googleusercontent.com/a-/AOh14Ghh4h_h4vqW21hAm1-H5IuZTcrUrkd2uf2ww0QV0Z0,It's just as good as Wunderlist and so much more,5,0,15.4.0,2020-04-01 08:56:54,,,newest,com.todoist +Jormer Márquez,https://lh3.googleusercontent.com/a-/AOh14GhNduV0TuqAjCA3X8G56BP1xv47Pzma2LusJawMy9k,"Tengo la versión gratuita de la aplicación by la verdad es bastante completa. Hasta ahora no he tenido la necesidad de suscribirme a premium. Muy linda interfaz y una vez aprendes la posibilidad de cosas que puedes hacer, es bastante intuitiva y con muchas opciones.",5,0,15.4.0,2020-04-01 03:35:17,,,newest,com.todoist +Chris Pollina,https://lh3.googleusercontent.com/a-/AOh14Gj55qkqOSVpkNwID-Zx8ZLJ0rnqx_407Y7Pj2mz,"After I found out Wunderlist was going away I look for an app that could do all the things that could do as it was pretty much perfect for me todoist is pretty much as good, not perfect but for free I can't complain!",5,0,15.4.0,2020-04-01 00:26:01,,,newest,com.todoist +Janne Uusitalo,https://lh3.googleusercontent.com/a-/AOh14GhicbkaCIDPVQ-UDIIWEXX8rZYiBO-W5U1tyFZbpA,"Better than Trello for personal, everyday GTD.",5,0,15.4.0,2020-03-31 20:51:52,,,newest,com.todoist +Chaitanya Yadav,https://lh3.googleusercontent.com/a-/AOh14Gg4bArylLSv1BQOhhUG4H6RY5EtxGWBowd0ukItkuc,Best app! ♥️,5,0,15.3.3,2020-03-31 18:21:21,,,newest,com.todoist +Stefan,https://lh3.googleusercontent.com/a-/AOh14Gg_-yYEm7HEdEI7KVaMo69T5nMKfgqoBnaeqVBa,One of the best to-do apps out there,5,0,15.4.0,2020-03-31 17:51:57,,,newest,com.todoist +Lisa Yunker,https://lh3.googleusercontent.com/-Swkc3tBzMKM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMhmh5kSmEgD57fXC3Fyu-cinzAZw/photo.jpg,Love this app! It has really helped improve my productivity!,5,0,15.4.0,2020-03-31 06:03:31,,,newest,com.todoist +Daniela López,https://lh3.googleusercontent.com/a-/AOh14GhNpwfvWNu90kAoaki6UZiYe2JJRED_yS9gDU6pWw,It's beautiful I love the premium version thanks 🤗💕,5,0,15.4.0,2020-03-30 13:08:09,,,newest,com.todoist +Jared Rushton,https://lh3.googleusercontent.com/a-/AOh14GjpguV1KqsdQr63nlBChdyAGvA5A04xzD4IKq31Lw,Intuitive and easy to pick up,5,0,15.0.2,2020-03-29 23:03:24,,,newest,com.todoist +Amanda Fernandez,https://lh3.googleusercontent.com/a-/AOh14Ghc3rNqVtYKZCS_K-s4T_86qeqNVXqQk595EisSoQ,Good,5,0,15.4.0,2020-03-29 22:42:16,,,newest,com.todoist +Prodige Tshibangu,https://lh3.googleusercontent.com/-dGVX5nih6Hw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPfIg517_RIFDKBBMgyIq2D0do9Ug/photo.jpg,"This is a great app, it has made my life so much easier. I have tried other apps but this one has to be the best one so far. If you are thinking about getting it you should.",5,0,15.4.0,2020-03-29 20:50:03,,,newest,com.todoist +Maxime DROUHIN,https://lh3.googleusercontent.com/a-/AOh14GiMV1iwOvd8v6TQfc04p29tilhMM4d-ehOZYAOk4UM,"Very efficient app, a real time-saver ! And since the last update, a new widget extremely well-made and customizable : you don't even need to actually open the app !",5,0,15.4.0,2020-03-29 20:39:05,,,newest,com.todoist +Gergö Hadlaczky,https://lh3.googleusercontent.com/a-/AOh14GiWDqQLgq-0az9YVSXziAM-sEA4skVX-6Hr_xElk-8,👍,5,0,15.4.0,2020-03-29 19:36:05,,,newest,com.todoist +Levanii Toroshelidze,https://lh3.googleusercontent.com/-Yr8Sx3AjW68/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPR4wIG_X5vAXZVezDwajbJyo9myg/photo.jpg,"It is so nice and useful app, thanks a lot developers",5,0,15.4.0,2020-03-29 15:17:28,,,newest,com.todoist +Abdullah Alsanad,https://lh3.googleusercontent.com/-sP6tTK74hsw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPttWusyPQ-RUR-sAqD-LQruMuWeg/photo.jpg,Excellent update. Thanks Todoist team. I would suggest customizing the font size on the widget as it seems small.,5,0,15.4.0,2020-03-29 11:59:20,"Abdullah, thank you for your feedback! This has been noted :)",2020-03-30 19:07:49,newest,com.todoist +Gavin Heggs,https://lh3.googleusercontent.com/a-/AOh14GiI5VLUjPVu6iIU9wWjRYjcQ5smCZD0Uqjrf1knfg,Still my go to for planning on my phone or desktop,5,0,15.3.3,2020-03-29 09:56:08,,,newest,com.todoist +Sophie Bird,https://lh3.googleusercontent.com/a-/AOh14Giz89AKZ2Pe0IF352CPibkX5Id9dfS6GQnJ88zX,"This saved me as I journeyed into my career of teaching. So much to do and so little time, this app kept me organised in my new chaotic life!",5,0,15.3.2,2020-03-29 04:59:23,,,newest,com.todoist +Kathleen Case,https://lh3.googleusercontent.com/a-/AOh14GiRdeR1pgOYDBO5Ltcsf7GUyaUrsebROszXcC4wJg,"Moved here from Wunderlist, after trying other apps. This is so clean and easy to use and does everything I needed and more. My fiance and I can now both keep track of the grocery list! (So glad it has the ability to share with others)",5,1,15.4.0,2020-03-29 03:42:12,,,newest,com.todoist +Bl1ndcat,https://lh3.googleusercontent.com/a-/AOh14Gi6OxbsXYyJ5FDsccF8i9RG99NY6Pqtu_5t-h0S,Perfect app. Best app ever I really love it,5,0,15.4.0,2020-03-29 02:10:55,,,newest,com.todoist +Vipin Patel,https://lh3.googleusercontent.com/a-/AOh14GgRriOMOeAcUVIL-H1joHSqS-eYlqAz1skJTdt4,Smooth and easy,5,0,,2020-03-28 18:17:29,,,newest,com.todoist +Shahryar Vasseghi,https://lh3.googleusercontent.com/-dj0EvYzkQ0g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNnwE4idVbf4juZZJEn5Q37CdB58w/photo.jpg,Great tool and wonderfully convenient app!,5,0,15.4.0,2020-03-28 15:36:16,,,newest,com.todoist +Cecilia Chan,https://lh3.googleusercontent.com/-2zTsEEM2t78/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNEdY20H8HpSDnhuJ_Cqy4YFGEzGg/photo.jpg,"Love it especially the natural language e.g write every tuesday, friday do ... Then it will automatically repeat ... Every tuesday, friday.",5,0,15.3.3,2020-03-28 10:16:26,,,newest,com.todoist +Noah Padilla,https://lh3.googleusercontent.com/a-/AOh14GhYj_xVnMMQiR9J0b9VbxLMitdF63xtYleY11KNNg,Easy to list things and good reminder!,5,0,15.4.0,2020-03-28 05:20:46,,,newest,com.todoist +Stan Kulikowski,https://lh3.googleusercontent.com/-rDvsv37NeDY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMXz0rSFwped6rROo4e8G2lEab-Kw/photo.jpg,Excellent app for managing your task list.,5,0,15.3.3,2020-03-28 00:38:23,,,newest,com.todoist +Greg Bolton,https://lh3.googleusercontent.com/a-/AOh14GhvhNO0cQH1ZmW5laAc_ewmrwsaOAWySd948TkdGw,I've never been able to stick to using a To Do list until now. Great interface and features.,5,0,15.3.3,2020-03-27 21:02:20,,,newest,com.todoist +Milos Prikic,https://lh3.googleusercontent.com/a-/AOh14GgfUJ9avvHnXTdiySVtxJhDs7aSjfgVjhkxdY56,Best todo app! Love it!,5,0,15.4.0,2020-03-27 15:45:08,,,newest,com.todoist +Rick fastmtgpayoff,https://lh3.googleusercontent.com/-_AbDOHRAyqk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOWlYB8zwV_F_L_M7epwaQyS2NEaA/photo.jpg,Great,5,0,15.3.3,2020-03-27 15:24:01,,,newest,com.todoist +Jovana Stanojoski,https://lh3.googleusercontent.com/a-/AOh14GiA_HHV0zRPTgapXjufeuhRYYMnGpXaOo3QHagS,"Very good app, but It would be nice if you add lasting tasks, for an example a task that starts at 14:00 and finishes at 15:00 I hope you understood me :P",5,0,,2020-03-27 15:16:30,"Thank you for the suggestion, Jovana!",2020-03-30 19:42:29,newest,com.todoist +Mark Succarotte,https://lh3.googleusercontent.com/a-/AOh14GiUZwiucBcgk8mYeo_ACyXOJ3nZos6clpRLDTFz8Q,Very easy to use!,5,0,15.4.0,2020-03-27 13:28:17,,,newest,com.todoist +Jonathan Garra,https://lh3.googleusercontent.com/-OoYr8L6DvJU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMefGEuk8zDQzk8ce-G_gTpiAw2Uw/photo.jpg,"This app (and Google add-on) is amazing, even the free version. However, the new widget is worse than the old one. One major reason I say that is because the old version allowed overdue tasks to be rescheduled with a single touch. In this new one, so far, you have to go back into the app.",5,0,,2020-03-27 13:21:03,,,newest,com.todoist +Kamia Van Cleve,https://lh3.googleusercontent.com/a-/AOh14GjKGSimZn1p5Efe5UFN1dXAahluC2VMYyai26Axgw,"Amazing, this is the app I've needed! Haven't even dived into all the features yet. 🙌🏻",5,0,15.3.3,2020-03-27 08:37:35,,,newest,com.todoist +JOHN njoroge,https://lh3.googleusercontent.com/a-/AOh14GhtaHJTYrvNpqgOYjDbfgSG17E4RVAn1YY4v0uIW4s,Excellent service!,5,0,15.4.0,2020-03-27 08:24:24,,,newest,com.todoist +Khaled Ameen,https://lh3.googleusercontent.com/a-/AOh14GhakqiPgyVPVwudjrIZyB02OhAUlufmzN7EHfeJhw,"Literally, I am blessed to know Todoist♥️",5,0,15.4.0,2020-03-27 07:55:43,,,newest,com.todoist +Eric Macedo,https://lh3.googleusercontent.com/a-/AOh14GgExMUFOatqjjUW7t0zO7_5R4ZFo_ReJ8JdMP1TRA,The experience is being great! The app is really useful and beyond expectations,5,0,15.3.3,2020-03-27 00:45:57,,,newest,com.todoist +Aryan Shah,https://lh3.googleusercontent.com/a-/AOh14GiOUErMDjC5lTiF2WlZR1kMEIKNx74RlJqvBK0G,Makes more work done in less time.,5,0,,2020-03-26 11:14:14,,,newest,com.todoist +negar kv,https://lh3.googleusercontent.com/-S5dLUDOD0Co/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPkyizYAYuuNVRQdp_C_ls9KLizLQ/photo.jpg,Its a best app for doing every thing,5,0,15.3.3,2020-03-26 08:52:56,,,newest,com.todoist +Sai krishnan Mohan,https://lh3.googleusercontent.com/-lr8rouQCZJQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMEUUA5coGG59lQsREHG63L1Wvr-w/photo.jpg,Good way to keep in touch with actions - works well with planners.,5,0,15.3.3,2020-03-26 06:05:05,,,newest,com.todoist +Alexandre Champagne,https://lh3.googleusercontent.com/-JenCY4PjGXA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMGyRqBFKNm6OZK_UDSJ8p-PuOmCg/photo.jpg,Awesome app!,5,0,15.3.3,2020-03-26 03:29:44,,,newest,com.todoist +Marlon Cook,https://lh3.googleusercontent.com/a-/AOh14GgUfci3NdTsI5jfI1aFMssqjcEuK3-H6bSCslo,Great for organizing!,5,0,15.3.3,2020-03-25 18:17:03,,,newest,com.todoist +nina gomarteli,https://lh3.googleusercontent.com/a-/AOh14GgqrLqtpANS9dtTIVaQKn7u_dc5VwR45dmM-vMYqkE,Love it!,5,0,15.3.3,2020-03-25 15:22:46,,,newest,com.todoist +Igor Ch,https://lh3.googleusercontent.com/a-/AOh14GgwOwhP_dYzQMLFoODZ-Dhi4Bf8SHgQNPaA2as4K9g,"Great, better than keep. I sorts out mess in your attic",5,0,15.3.3,2020-03-25 14:05:48,,,newest,com.todoist +Glenton Jelbert,https://lh3.googleusercontent.com/a-/AOh14GjQrYp0YFNunveFtJ12ter1oxqu2Nwx_bzZ9Zum-Q,Great replacement for Wunderlist.,5,0,15.3.3,2020-03-24 21:11:43,,,newest,com.todoist +Muhammad Nowfal,https://lh3.googleusercontent.com/a-/AOh14GiWNNy1Jmu6W77Z4IKAi2ymLSrnHj5rOl1yCqLAgw,"Awesome, increses productivity",5,0,15.3.2,2020-03-24 16:51:27,,,newest,com.todoist +E.A. Calunga,https://lh3.googleusercontent.com/a-/AOh14GiI46TB8dIGw4v7OOsdMMYB4G8Xy79QNwHRd6CHsCY,Awesome,5,0,15.3.2,2020-03-24 05:21:10,,,newest,com.todoist +Mountain Evan Chang,https://lh3.googleusercontent.com/a-/AOh14GhPaTM5bZwuTDWn2BAExReBvcYpzCCcTGccSLXhjg,Much better than wunderlist,5,0,15.3.3,2020-03-24 01:56:44,,,newest,com.todoist +Claudiu,https://lh3.googleusercontent.com/a-/AOh14GgHwhH9Dtd3v1Pb8gKYn0wkq9djAG31tySRCnlKPw,Very usefull app for divideing tasks,5,0,15.3.3,2020-03-23 23:33:26,,,newest,com.todoist +Ina,https://lh3.googleusercontent.com/a-/AOh14Ghwu4uXS49lPtyMqNtA9Ku_Y-ZTUpuAu5UcZi-Rz4s,Awesome app!!!,5,0,15.3.2,2020-03-23 13:16:02,,,newest,com.todoist +Dastin Darmawan,https://lh3.googleusercontent.com/a-/AOh14GjsyeHiSldrzKw2HCG0r7YS0RjxNFZIyI1XUugy2g,Makes me more productive,5,0,15.3.3,2020-03-23 06:17:23,,,newest,com.todoist +Simon Chang,https://lh3.googleusercontent.com/a-/AOh14GghpC-3_6S6nViS3v80KxUsoLjly4hUy23BPNfdug,Outstanding To-Do App.,5,0,15.3.3,2020-03-22 23:45:27,,,newest,com.todoist +Carlos Villapudua,https://lh3.googleusercontent.com/a-/AOh14Gi0x2g85Hd3DexnUOtRkg8gvCx47NJKRjRgxjZhRA,"So far the app has functioned excellently. I have not run into any issues. It's very simple and straight forward. However, I do recommend you read the user start guide as you'll find out about not so intuitive functions which make everything not only more seamless but even simpler than before. I would seriously recommend to anyone looking for a Todo app, I've been using the free version and no complaints and no ads. Definitely give it a try and you won't regret it.",5,13,15.3.3,2020-03-22 22:41:24,,,newest,com.todoist +Roman Gurduz,https://lh3.googleusercontent.com/a-/AOh14GiPZUzn6d3Wtn3yDrdeZYHWQipzUDY-gpYRjbDS,"Best ""to do"" app I try, very intuitive interface. My day now is completely organized. Karma feature is very interesting and motivating. Thank you for this amazing app.",5,0,15.3.2,2020-03-22 20:28:40,,,newest,com.todoist +David Hack,https://lh3.googleusercontent.com/a-/AOh14GgXbs4L5HCryvpo179yd9Bk62b2Lb5MpUwYtccz,"Very good, has power user features as well like defining properties through text and stuff. Haven't tried the collaboration part yet!",5,0,15.3.2,2020-03-22 13:34:35,,,newest,com.todoist +Stefan Bäck,https://lh3.googleusercontent.com/a-/AOh14Ghgkat293-lh-BtQKXmvkzQtQlpd-HyXqxuOoaJySI,"Great to-do app that does everything you want, also syncs perfectly with planner for Elementary OS.",5,0,15.3.2,2020-03-22 08:43:56,,,newest,com.todoist +Jasmine Brina,https://lh3.googleusercontent.com/-mnp1_BwxCz4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOptovcSET8qtv_VuEkrHdso3KjCg/photo.jpg,"absolutely amazing app, the best for to do lists.",5,0,15.3.2,2020-03-21 21:21:46,,,newest,com.todoist +Gareth Winterman,https://lh3.googleusercontent.com/a-/AOh14GgSV06Qcyo_2ztziOYCYSyb8h_M2Gvqqd6aCYah1w,Ace I love it,5,0,15.3.2,2020-03-21 20:30:07,,,newest,com.todoist +Riemer Kuik,https://lh3.googleusercontent.com/a-/AOh14GhejuHflLph5JzzWT6hNMJDtgN3u0NvUQGd0nLH,Solid to-do-list app with very nice features such as karma points and 7-days ahead. The best app in my opinion,5,0,15.3.2,2020-03-21 11:54:01,,,newest,com.todoist +Nnetse's Stunning Life,https://lh3.googleusercontent.com/a-/AOh14Gg68F_OtDXyhtlUGQeig1xgKG3HQDRS4QxKGab2UA,Love it,5,0,15.3.2,2020-03-21 08:17:21,,,newest,com.todoist +Teresa Bompczyk,https://lh3.googleusercontent.com/-q3LabKsP-I4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOjrnmEKMss8DIwGM2ykTcMnl_jBA/photo.jpg,"Quite simply, the best. Cannot get over how user-friendly Todoist is--the devs clearly designed with *intention*. Pre-made templates are a godsend, text markup/emoji integration made me smile, and powerful organizational features made me stay. Kudos 🙌",5,1,15.3.2,2020-03-21 01:20:50,,,newest,com.todoist +Henry Aldaz,https://lh3.googleusercontent.com/a-/AOh14GgNAhjM95Gc6k_c2VlgDj-Ifhy6WgzUXdGcctE8,I love this app,5,0,15.3.2,2020-03-20 14:34:01,,,newest,com.todoist +Steve L,https://lh3.googleusercontent.com/-OeehPlMBCNg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNJ8Bu4Lc8Rla11I7ZXhX4-qJyL2g/photo.jpg,"Awesome! Was using Wunderlist, but they are going away. I tried a few others. They are all so similar now. But this one seems like it will be here for the long haul judging by the number of downloads. Also, it is as simple as Wunderlist. I did have to pay $29 and Waunderlist was free for the most important functions, so that was different. But after using the app for a week I'm sold. Not a better app out there for my purposes. KISS- keep it simple stupid. And this app does that.",5,22,15.3.2,2020-03-20 04:19:23,,,newest,com.todoist +Krystyna Lopez,https://lh3.googleusercontent.com/a-/AOh14GgrO2v1TlSUcZNchi-UEQuHClEdTMu2g0yHbDWYE7I,"This app is perfect for my personal task management. You can make it as simple or complex as you want. I like how easy it is to quick add tasks, schedule, and how I can integrate with Gcal. Every idea I have to do anything goes in here. I need reminders for everything; I even use Todoist to remind me to change the sheets :)",5,3,15.3.2,2020-03-20 03:18:11,,,newest,com.todoist +Robin Spark,https://lh3.googleusercontent.com/a-/AOh14GiC9tpshZ_2G2GbPHpQWHafqr_DIL9m0pVWhNEwlg,The free version is crippled. 3 lists max. Seriously? Just use DTG GTD. To do app with free unlimited nested to-do lists with tags and reminders.,1,0,5.5.5.0,2020-03-15 06:05:02,"Hi, sorry for the trouble. Free version suppports 9 lists. Could you send us feedback in app then we can help you identify the issue.",2020-03-16 01:48:35,most_relevant,com.ticktick.task +Krushanu Das,https://lh3.googleusercontent.com/a-/AOh14GhLkUoNe9SefyZf3J_dSZX7Q1OQbzg_9ZdoVeq7mf8,"Even after several updates, the problem persists: Despite adding and sceduling tasks, the calender inside the app isnt showing any tasks at all. No tasks visible at all in the in-app calendar view. In the calendar widget however, i can see tasks arranged datewise. Honestly, yours is a really nice app with features, but what's the point to having them if they don't work in the first place.",1,3,5.5.1.0,2020-03-01 14:25:00,"Hi Krushanu, could you please be more specific about the case? Do you mean repeat cycle tasks are not displayed on the calendar view? Thank you.",2019-06-05 12:46:23,most_relevant,com.ticktick.task +Rizal Akbar,https://lh3.googleusercontent.com/a-/AOh14Gjh-2cFx_IdLE1yuU7UEeiOEdcgbYRsb4P53okyi54,"for years I use ticktick, I love it so much, I rated it 5 in Play store.. But the recent several changes to the app are make the app getting worse and keep getting worse than before. I incredibly sad and disappointed. for years I rely on ticktick as my todolist app, and now I have to find other alternative that can be as good as ticktick that I know before. that's not an easy thing to do",1,15,5.5.0.2,2020-01-22 15:40:15,"Hi, could you provide us with more details about the changes that make you disappointed? Sorry for the inconvenience.",2020-01-27 12:10:31,most_relevant,com.ticktick.task +Puneet Purbi,https://lh3.googleusercontent.com/a-/AOh14GjOghUD_b5EJLBQ4r-CtnOuxCWPnGLGX6SW1z2ILfk,"Want to know that is there any feature like wunderlist app, to get notification of comment on all shared members on their app as well as on email.",1,0,5.5.6.0,2020-03-28 18:05:01,,,most_relevant,com.ticktick.task +Ayush Rajput,https://lh3.googleusercontent.com/a-/AOh14GiGkOig4sd9VuBzTmK0BQhTExUypkWZyGUuzE4svJI,"while using the habbit feature, you can add multiple reminders for drinking water, but if you check done in any one of those reminders then it wont remind for the rest of the day. ruins the logic. Uninstalled Installed a year later and still the issue exists, the habit feature was a unique point which brought me to the app but I guess I'll have to use another one.",1,18,5.5.1.0,2020-02-22 22:17:26,"Hey there! Thanks for your feedback, have noted it down and the product team will re-evaluate it! We will keep polishing the habit feature.",2019-07-06 02:42:06,most_relevant,com.ticktick.task +Sheetal Singh Tomar,https://lh3.googleusercontent.com/a-/AOh14GjdSTZQu8Mhj2G3saWX__SFvzKzUm0mbboUl3UZYA,I am unable to upgrade my account to premium. I've tried multiple times but to no avail. :/,1,0,5.5.6.0,2020-04-01 17:09:22,,,most_relevant,com.ticktick.task +Rio V,https://lh3.googleusercontent.com/-ZWjtvCyC9ug/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMtBhu8_-NmjR78KxoN4kxh9KK4jg/photo.jpg,"Cannot share entire calendar and/or task database with other users. Only single daily task shares or individual list collaborations. Edit: very solid low 1 star, 0 if I could, since the developer couldn't even be bothered to read the entire of two sentences of review, acknowledging what features they did have.",1,0,5.5.0.2,2020-02-05 13:25:32,"Hi, sorry for the last reply. TickTick does not support direct calendar share. I'll transfer your suggestion to product team for evaluation.",2020-02-05 13:32:18,most_relevant,com.ticktick.task +Paul Teale,https://lh3.googleusercontent.com/-i85sBUf7eHs/AAAAAAAAAAI/AAAAAAAAXiM/AAKWJJM96F2y48NmdeXZp5yyygnWn0njvw/photo.jpg,"Another app that fails to draw events correctly on day view If I have an event from 3:00 to 3:15 and another from 3:15 to 3:30 there should be drawn with a space between them no matter how much I am zoomed in, they are not overlapping events so don't treat them like they are",1,3,5.5.1.0,2020-02-24 08:20:44,"Hi, sorry for the trouble. This is by design now. Duration that less then 30 minutes will display 30 minutes height. I'll transfer your feedback to product team for evaluation.",2020-02-24 11:17:25,most_relevant,com.ticktick.task +Ulises González,https://lh3.googleusercontent.com/-blxrEY0VKtY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP-iYFyOHjAnz8tRTZTaaUoPpnLrQ/photo.jpg,"You need to pay. It's uselles without paying. Seriously, just 9 list for free?. If you need more list just add them in wunderlist and then import them to this app. Or better, stick with todo from Microsoft, it's free.",1,2,5.5.0.2,2020-01-21 21:30:50,,,most_relevant,com.ticktick.task +August,https://lh3.googleusercontent.com/a-/AOh14Ghp20a9enjnNpWyhrlO8vObZ7rZkJeqpUDxysyv,"Downloaded ticktick. Thought it seemed cool, so signed in with google account and tried to sign up for monthly subscription. Kept getting error messages and it wouldn't let me start the process or even add a card. Waste of time.",1,3,5.5.1.0,2020-02-19 03:35:01,"Hi, sorry for the trouble. Could you provide us the error message screenshot to support@ticktick.com? We'll look into that asap.",2020-02-19 07:09:29,most_relevant,com.ticktick.task +VIPUL MEDICO,https://lh3.googleusercontent.com/-s0beHfj3iPs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM-3aJS24VDTySjPJryK13XAEtsTw/photo.jpg,VERY GOOD APP BUT IN WIDGET THERE IS A NO OPTION IN LIST WISE SELECT TODAY TOMORROW OR ALL PLEASE UPDATE FOR THIS OPTION THEN IT WILL BE FAR BETTER PLEASE UPDATE EXAMPLE IF THERE'S A CALL LIST IN WIDGET IT SHOWS IN CALL WIDGET LIST ALL CALL TODAY TOMORROW OTHER ALL DAY BUT IT SHOULD OPTION TO SELECT TODAY TOMORROW ETC.,1,0,5.5.0.2,2020-02-11 18:30:10,"Hi, sorry TickTick does not support that option. I'll transfer your suggestion to product team for evaluation.",2020-02-12 08:12:51,most_relevant,com.ticktick.task +Eck0h Cobra,https://lh3.googleusercontent.com/-wmXP6ECVlf0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPmloz2LVriBQrUSYr0P1dJaB8MgA/photo.jpg,"Very good app that is perfect for how I think, but it kept asking me to rate the app for months now and I've always pushed Later, I'm sick of it asking me to rate the app",1,1,5.5.5.0,2020-03-13 00:09:46,"Hi, sorry for the trouble. We'll transfer this issue to product team for evaluation. For now, you could rate the App and then rate pop up will not show for 6 months.",2020-03-13 02:18:41,most_relevant,com.ticktick.task +Роман Бухаров,https://lh3.googleusercontent.com/a-/AOh14Ggh9yI4fblr5wkUxXsObHB93s_N-rvPxTcchq5Y4Q,"""Sorry you have reached the use limit on subtasks. Upgrade now and add up to 199 subtasks per task"". Are you serious guys? Pro version for more subtasks? Why 199, why not unlimited?",1,0,5.5.0.2,2020-02-17 07:02:24,,,most_relevant,com.ticktick.task +Abdelrahman Elbosraty,https://lh3.googleusercontent.com/a-/AOh14GhYf1UrkksXxSf4yH6nQC6h1UqXiopNV_2YnDTS,"Help! The widgets are not working. It always shows this message"" failed to display your tasks, please restart app or add a new widget instead""",1,0,5.5.5.0,2020-03-08 04:37:11,"Hi, sorry for the trouble. Could you send us a feedback with log ? Dev team will look into the issue asap.",2020-03-08 09:25:30,most_relevant,com.ticktick.task +Jeyps Pelingo,https://lh3.googleusercontent.com/a-/AOh14GjleHPDXHMZy91CkQl6FelulO4L5hyVlWfOqwc32JM,I keep adding tasks. Its nit showing on widget. Very complicated to use.,1,0,5.5.0.2,2020-01-29 02:19:53,,,most_relevant,com.ticktick.task +Aleksandar Colak,https://lh3.googleusercontent.com/-gVqKoTmMQ5s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMUvNQ_UE7rTGfx8kGSISeu8WXlqQ/photo.jpg,You block new entry on my existing list and force me to upgrade to premium if I won't to continue.,1,0,5.5.0.2,2020-02-04 06:04:13,"Hi, sorry for the trouble. Could you check if your lists count is more then 9 ? If so, you could delete unused list then you can add new entries.",2020-02-04 12:11:21,most_relevant,com.ticktick.task +Voice Sessions,https://lh3.googleusercontent.com/a-/AOh14GjL41fCYTbksiBy2H19ulYTtak1HhPiQYA9F4bOvg,"JUST PURCHASED MONTHLY SUBSCRIPTION. UNTIL NOW, MY APP IS NOT WORKING AS A FULL VERSION.",1,0,5.5.1.0,2020-02-18 13:12:07,"Hi, could you try click restore in account page and check if that works? Please contact us at support@ticktick.com if the issue persists.",2020-02-19 07:10:49,most_relevant,com.ticktick.task +Daniel,https://lh3.googleusercontent.com/a-/AOh14Gg175iBHlC49hGxDEY3nDwUT5LNLCVcY34YouGH-qA,"You get one star because I don't like being constantly harassed with popups asking me to rate it in an app I am paying for! Stop forcing automatic correction, this is changing what I am typing and changes my formating - make this an option to turn off!",1,8,5.5.1.0,2020-02-19 07:45:16,"Hi, Daniel. Sorry for the trouble. I'll transfer this feedback to product team for evaluation.",2020-02-14 11:23:41,most_relevant,com.ticktick.task +N J,https://lh3.googleusercontent.com/-Lo6qav7hE6o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPI_zH-lMdacSnkdMmGpuqEHhqY4A/photo.jpg,It keeps showing java.lang.RuntimeException: Unable to start receiver com.ticktick.task.activity.widget.AppWidgetScrollable: java.lang.NullPointerException: Attempt to invoke virtual method 'boolean java.lang.Boolean.booleanValue()' on a null object reference at android.app.ActivityThread.handleReceiver(ActivityThread.java:3421) at android.app.ActivityThread.access$1300(ActivityThread.java:200) at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1684) at android.os.Handler.dis,1,0,5.4.1,2020-01-21 01:38:34,"Hi, please upgrade to the latest version. We've already fixed that issue. Sorry for the inconvenience.",2020-01-21 02:49:38,most_relevant,com.ticktick.task +Sammy D,https://lh3.googleusercontent.com/-DLoTpYJ0wzY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOKb3ISrjg4pHdW1Nh0nmlw2YDosw/photo.jpg,"Only 9 lists allowed for the free edition. Incredibly expensive by app standards for the pro ($37 per year). I don't mind supporting a good product, but that is ridiculous for a shopping and task list app",1,1,5.4.0,2020-01-19 01:23:51,"Hi, sorry for the inconvenience. But we do not have plan to adjust Premium price. You could close your inactive lists to create new list if meet lists limit.",2020-01-19 01:54:01,most_relevant,com.ticktick.task +TJ Walker,https://lh3.googleusercontent.com/a-/AOh14Gi80RGvzM_KmgOBiBhkEngh41p_uVYsTbxl32d_zOY,"Despite working fine with the web version of the app, this Android version of Ticktick throws a validation error on my email address when I try to sign in because (according to Carol, a ""dev"" of the Ticktick team with whom I spoke about this on their help forum) my email address features hyphens. Tf?! Since when are hyphens in address so uncommon that they're not worth supporting. Terrible, imo, UX (both in app and for customer service).",1,12,5.3.0,2019-11-04 03:55:43,So sorry for not supporting hyphens on our mobile device yet. We will pass your feedback to the product team for future enhancements!,2019-11-05 01:00:32,most_relevant,com.ticktick.task +Amy Lynch,https://lh3.googleusercontent.com/-Cyf9CAVKtYQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMJPtHyY46Uzxz9QToMmT5MpeKT2Q/photo.jpg,"I never give reviews. I believe in if you don't have anything nice to say, don't say it. My issue is not with the app itself, its the fact that I have been charge every single month for over a year! I have reached out to the developer many times and nothing. There is NO subscription for me to cancel...I am really over it with this!!!",1,2,5.3.0,2019-10-22 00:08:34,"Hey Amy! Sorry for the trouble! If you upgraded via Play Store on Android device, you can manage your subscription in Play Store by 1. Tap ""Account"" in the sidebar. 2. Tap ""Subscriptions"" then find TickTick. Besides, could you please double-check if the payment is set to auto-pay?",2019-10-22 01:06:49,most_relevant,com.ticktick.task +Jeremy Fairbrass,https://lh3.googleusercontent.com/a-/AOh14GhVC59iIO1MsdnBMcy92Dc3V3Uw2VN5dZGHoV04,"I agree with other reviewers here: the new notification redesign from v5.3.0 on Android 10 is a bad idea and results in a confusing and unhelpful user experience. The new notifications violate Google's Material Design standards, which Google have provided to app developers for a good reason: to provide a consistent user experience across all apps. The new notifications look strange and behave badly compared to standard Android notifications. Please kindly revert back to the official Android notification standards that you used prior to v5.3.0! I've also sent you an email providing more details about this.",1,21,5.3.0,2019-10-22 14:44:14,Hey there! Received! All of your suggestion and feedback has been passed to the product & design team. We will make some tweaking in the future versions.,2019-10-24 02:21:24,most_relevant,com.ticktick.task +Mike Tice,https://lh3.googleusercontent.com/a-/AOh14GiXnonkTkzJWXqglDG8_Fo4b6CTJXKyO2Wj2zppQg,"The new notifications are atrocious. The don't follow light or dark theme in Android 10, they don't work well with Wear OS, and they turn on my screen when I don't want them to. I'm now getting reminder pop-ups when i don't want any and the option to turn them off is gone. 10/24/2019 - I downgraded to v5.2.3 and got the Reminder Pop-ups option in Settings > Notifications back. When I update to 5.3.0 the Reminder Pop-ups option is replaced with Notifications and Notification Font options.",1,16,5.3.0,2019-10-24 18:32:42,Hey there! Could you please go to Settings - Sounds & Notifications - Reminder Pop-ups - check your set-up?,2019-10-24 02:28:40,most_relevant,com.ticktick.task +Paul G,https://lh3.googleusercontent.com/a-/AOh14GhS-xUU-LXdJIisRBOgWOsdedxmsVZK7whygzPdjg,Be aware: if you purchase the paid version and then try to cancel within the 14 days trial. You won't be able to. They only reply once a day if you contact them and every time you contact them you have to explain that you want to cancel the service making the days passed by and after a while they just stop replying back. Using these shady tactics to make the 14 days goes by so you can't cancel after that. This company is a joke!,1,5,5.3.0,2019-10-30 13:49:40,"Hey Paul! Sorry for the delayed response! Could you please send us your email address again, we will nudge the billing team to get back to you asap. Rest assured that we will deal with the refund if it is eligible.",2019-10-31 01:29:19,most_relevant,com.ticktick.task +JS,https://lh3.googleusercontent.com/a-/AOh14Ghu_LxmlbMe-BQPlODkXW2JHAtK7zHjWcKaeGfGOw,"Cancer notifications. I denied the app permissions it asked for one time when trying to change the notification sound. Now it is impossible to change or mute the sound, no matter what setting I change inside or outside the app, and whether or not I give the app the permissions it wanted. 4 stars when this is fixed.",1,2,5.4.0,2019-12-08 02:04:29,Thanks for your feedback. We’d like to know the details of the problem you mentioned. Please send the details or screenshot to support@ticktick.com. We'll pass it along to our development team and see if there is any way we can fix it.,2019-12-09 01:47:53,most_relevant,com.ticktick.task +Raghav sharma,https://lh3.googleusercontent.com/a-/AOh14GhFfdn_Ku6vtyJa0m16JTaNvOI-wFjM7OfhlZNYVg,Has so many bugs it's keep crashing,1,0,5.5.1.0,2020-03-05 18:13:23,"Hi, sorry for the trouble. Could you send a feedback with to us in TickTick? We will reach out to you with assistantance.",2020-03-06 01:12:59,most_relevant,com.ticktick.task +Erik Lindberg,https://lh3.googleusercontent.com/a-/AOh14Gh52ripqfB66i59gtYf7I63vE5Jryr6_mCyuGo1,"Max of 9 lists, then you pay 3 bucks a month.",1,0,5.5.6.0,2020-03-27 04:33:56,,,most_relevant,com.ticktick.task +Ewen Sinclair,https://lh3.googleusercontent.com/a-/AOh14Gj-_F7VPKJ1v5UGrNJKwVt66N0sBu9CNwsvqjon,"Only reviewing so the app stops asking me to do so. Even when I do review the app still asks me, 3 stars to 1.",1,0,5.5.0.2,2020-02-01 04:58:58,"Hi, sorry for the trouble. I'll transfer this feedback to dev team to fix.",2020-02-01 06:44:32,most_relevant,com.ticktick.task +Mr Lee,https://lh3.googleusercontent.com/a-/AOh14GhGMwe193zukIbjLIxbbD1vBTuQdionaMZn6oOgEmw,"I cant no longer recommend this , cant sign up on any platform and they servers are located in Asia .I wouldnt put any sensitive information on it. They have nothing but server issues . Its very fischy",1,0,5.4.1,2020-01-02 19:42:02,"Hi Mr Lee, + +Sincerely apologize for the inconvenience! We have resolved the issue and there should be no problem logging into TickTick now. Could you please try again? If you encounter any further problems, please feel free to let us know anytime. We're always ready to help out.",2020-01-02 22:16:25,most_relevant,com.ticktick.task +Beary Good Beans,https://lh3.googleusercontent.com/a-/AOh14GhvRtFMu1xkZAk2Y7rPsx9KdydmHqDjvobEpd_zSA,"Horrible now. Was good to start, but now that my subscription expires December 1, cannot even accomplish a simple thing like removing tags from Task names. VERY DISAPPOINTED.",1,2,5.3.1,2019-11-20 20:11:04,"Dear User, +Could you please contact us via support@ticktick.com? We'd love to hear more about this issue in order to assist you.",2019-11-24 08:17:13,most_relevant,com.ticktick.task +Alejandro Gutierrez,https://lh3.googleusercontent.com/a-/AOh14Ghh0JpP_G2DUZg_H1ZvsiPpFjk3eV9r_PlXu7bJcQ,Very annoyed by the new time setting. It's like going back to Android 2.1,1,1,5.4.1,2020-01-09 02:00:39,"Hi, we'll bring back the radical time picker in next update. Sorry for the inconvenience.",2020-01-16 03:44:43,most_relevant,com.ticktick.task +Srivats Poddar,https://lh3.googleusercontent.com/a-/AOh14Gglxi9kDJtahC7H6dSG0mw4uZlRtzRV51UDZlqotls,"No reply to my TickTick Premium cancellation mail, since 2 days. --------------- New update, another day has passed and no reply to mail has been received yet.",1,2,5.3.1,2019-11-12 20:10:15,Hey! Sorry about that! We will nudge the team to respond you asap.,2019-11-12 01:13:29,most_relevant,com.ticktick.task +Renee Faviola Publico,https://lh3.googleusercontent.com/a-/AOh14Gisxk6yALkgf6ifMsM6qXikSRCh3pfqgSNSH0wq,"why do i need to pay for basic features such as showing your tasks in month view? it's a calendar app, those are stuff you need to see... can't believe you need to pay premium for a calendar todo app to show your freaking todos in the calendar",1,2,5.4.1,2020-01-07 13:45:19,"Hey Renee, + +If you don't want to pay for calendar, you also can use calendar view of List for free.",2020-01-08 08:40:50,most_relevant,com.ticktick.task +Tom N.,https://lh3.googleusercontent.com/-fzD15Q5U2mU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNrrKLg-mV3V9yCwz80EFa7YFXJJg/photo.jpg,"Was good, but has recently been persistently bugging me for add'l permissions including to my Google account. Uninstalled it.",1,0,5.3.1,2019-11-24 16:23:20,,,most_relevant,com.ticktick.task +MPooZD Dhoomy,https://lh3.googleusercontent.com/-EP0XfKl5pwg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMWED1Ct-uGF0E5aqx2qJ2hoMeoig/photo.jpg,New update has performance bug very slow in scrolling down and typing Update: after last update now i cannot type or write anything in task description after markdown features 👎,1,0,5.4.1,2020-01-03 17:06:41,Thank you for downloading our app. We'd love to help you with this issue. Please write to us at support@ticktick.com so that we can help you better.,2019-12-09 01:46:51,most_relevant,com.ticktick.task +Imran Mussani,https://lh3.googleusercontent.com/a-/AOh14GjXGdL3GYz4cHXGlN7nHouXvs1aXOp7IZjmUmQeMg,Doesn't allow you to unsubscribe from premium and the developers don't even respond whether on email or twitter.,1,1,5.4.0,2019-12-25 08:16:56,"Hey Imran, + +Sorry for not getting back to you promptly! Could you please contact us again? We will give priority to responding to you asap.",2019-12-26 01:23:33,most_relevant,com.ticktick.task +Jasmohan Singh,https://lh3.googleusercontent.com/-mdo6i7nDNz0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMm7Dz6g7kqlnhp5WjErs94PJIiVg/photo.jpg,Worst app I qm trying to create acount with gmail but it say no internet connection Even my internet work fine every thing working nicely even you tube without lagging,1,0,5.4.1,2019-12-27 19:46:07,"Please try to login again to see if it works well. If the same problem still exists, please let us know at support@ticktick.com. Thank you.",2019-12-30 02:09:48,most_relevant,com.ticktick.task +Max Zdobnikov,https://lh3.googleusercontent.com/a-/AOh14GhBIyuzUDs8vwxCCkJ_daGF14enYRslLqqYBylW,Markdown causes laggy typing in description and it seems I can't disable it.,1,1,5.4.0,2019-12-06 14:32:54,"Dear User, +Could you please contact us via support@ticktick.com? We'd love to hear more about this issue in order to assist you.",2019-12-09 01:44:27,most_relevant,com.ticktick.task +Kyle Millemon,https://lh3.googleusercontent.com/a-/AOh14GiWcinn9q5Ag_jsmQGgKez46pWN1mx9RNI4gDvNEA,Widget has stopped working and the developer is unresponsive.,1,0,5.4.1,2020-01-04 17:53:05,,,most_relevant,com.ticktick.task +Logesh R,https://lh3.googleusercontent.com/a-/AOh14GjiKvaZBZ0z1MRmzuqtjUXN_obDu8PGNZvIPbFo,"Plz change the orange color in ""Dark"" theme to blue...",1,0,5.5.1.0,2020-02-22 15:52:19,"Hi, I'll transfer this suggestion to product team for evaluation.",2020-02-24 11:22:04,most_relevant,com.ticktick.task +Ms Susanne Staton,https://lh3.googleusercontent.com/a-/AOh14GjvIA104K6jygFYSMtqgqC1DIclAM6bnphIgoBs,"Kept crashing, rss feed if my calendar duplication of entries was HUGE and overall it just added to the noise rather than helping.. I'm out.. UPDATE: No I can't send a feedback (with log) as I've already unsubscribed and uninstalled the app.. and that's surely something you can add into functionality if you're really interested in gathering the data",1,0,,2020-03-31 12:26:39,"Hi, could you send a feedback (with log) to us in TickTick? Sorry for the inconvenience.",2020-03-31 12:01:29,most_relevant,com.ticktick.task +Adam Stahl,https://lh3.googleusercontent.com/a-/AOh14GhXYWuTdDdp_UnQ_KSXN_qmUEpIkfm9qoMeFtZQcw,Update 2/19/2020: I cant recommend this app to anyone. The smart date parsing only works reliably if you enter it using military time. Also the fact that you have to enable alarm mode to have reminders fire on time is ridiculous. I have many apps that push notifications on time and don't require that. So the developers don't know how to do reminders correctly. Horrible app.,1,0,5.0.1,2020-02-19 06:22:11,"Hi Adam, sorry for the inconvenience. We will look into the issue asap. Thank you.",2019-05-12 07:31:39,most_relevant,com.ticktick.task +ian ball,https://lh3.googleusercontent.com/-rFixxq8F_ao/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN8sHU1-E_zGDra_VAJC6SmU1dxjQ/photo.jpg,I have used this app for years but there is now a major issue. If you drag a task to tomorrow or place it under a task with a later date the task date no longer changes date. Is there any way to revert to an earlier revision? Hi I have sent screenshots but the issue is the same.,1,0,,2020-01-27 14:18:26,"Hi, we've tried to reproduce this issue but with no luck. Could you provide us with screenshots and send to support@ticktick.com? We'll look into this issue ASAP.",2020-01-27 12:11:33,most_relevant,com.ticktick.task +Football Nation,https://lh3.googleusercontent.com/a-/AOh14GharaQvNawE-j3JQe-dMWRTO9DGCnzioYQGNupr0QQ,Want upgraded version even to set the duration . Pathetic app.,1,1,5.3.1,2019-11-27 14:55:20,"Sorry that frustrating you, we will pass the feedback to the team for re-evaluations.",2019-11-28 02:00:39,most_relevant,com.ticktick.task +Adham Nasr,https://lh3.googleusercontent.com/-CYoDW7EB-Ek/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOs5lQaCb9k-1kegPQReLsg6i7SLA/photo.jpg,Very expensive premium...,1,0,5.4.1,2020-01-15 19:02:46,"Hi, sorry , we do not have plan to adjust premium price. I'll transfer this suggestion to product team for evaluation.",2020-01-16 03:38:55,most_relevant,com.ticktick.task +Valentina Saturday,https://lh3.googleusercontent.com/a-/AOh14Gi4Hyv1v02eb7JnJTdC70Bb7MrhlZ7XnEw2A8O6,"It's impossible to use this app. At first, when I choosed pink theme during onboarding, the app ignored my choice. Then I filled it with all my tasks for two days, but when I closed it and opened again, the app asked me to sign up with Google. All my tasks were gone when I did it! I`m deeply disappointed...",1,0,,2019-12-20 03:41:55,"Hey there! + +Could you please try to log in with the same way/same address you did before? +You may write to us via support@ticktick.com, we will figure out it for you asap.",2019-12-20 01:22:32,most_relevant,com.ticktick.task +Corinne Chung,https://lh3.googleusercontent.com/a-/AOh14GjwcZuSpr_kFk0714M3g4nKK1Kgm9Z4Z-zZYW7yP88,"Deleted my account because I found something more aligned to my needs, but I still got charged for another year. Developer ignored my email and then denied a refund via PayPal so I've now paid $28 for something I can't and no longer want to use. Had no issues with the app itself but very disappointed with the customer service.",1,0,4.8.5,2019-12-17 01:09:54,"Hey Corinne! We sincerely apologize for not responding to your email promptly. We'd be happy to take a look into this for you, please contact us at support@ticktick.com. We will give a priority to deal with you if the refund is eligible(within 14days from the very first request email.",2019-12-17 01:27:38,most_relevant,com.ticktick.task +ManfromtheRedRiver,https://lh3.googleusercontent.com/a-/AOh14GgviiYFcHe2gwZRZproAGNdAFtObGq0aa0n10jNUQ,"Requires creating an online account to view the calendar. Therefore, there is no reason to use this over Google Calendar.",1,0,,2020-03-24 14:47:40,"Hi, you could use TickTick in local mode without creating an online account.",2020-03-31 11:59:24,most_relevant,com.ticktick.task +Szymon Shields,https://lh3.googleusercontent.com/a-/AOh14Gi_vg4sfuNGuLkXeOdjlaocbQV9j8MzXoCtpOlIyg,SERIOUSLY??? Just realised you made Duration a Premium Feature. Why? Did people just start using it more all of a sudden???,1,0,5.4.1,2020-01-03 22:55:10,"Hey Szymon, + +Duration is designed to be Premium feature in the first place. If you want to it be free, we will pass your feedback to product team for evaluating.",2020-01-08 08:49:56,most_relevant,com.ticktick.task +Mohamed Farouk,https://lh3.googleusercontent.com/-vk-MJQ5HJDY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOYQVVaXXisG80OdFWi0iqEdObMQw/photo.jpg,I don't understand why the App has all the languages except the Arabic language?,1,0,5.3.1,2019-11-20 18:29:30,"Sorry about that, we will note it down as a feedback request and the team will consider to add it in the future asap.",2019-11-24 08:13:42,most_relevant,com.ticktick.task +Andrew Cook,https://lh3.googleusercontent.com/a-/AOh14GjhhhjOVGDfgLsavR63Fqbyyw0-3vBttddAQePE,"Hides too much behind the subscription. The day views are an example of this. You'll need to pay each month for the ability to see your data displayed in month, week, 3 day, etc. The app feels broken with all of buttons you can press that nag you to pay monthly for features that should only be paid for once. The features that aren't locked behind the subscription can be found in other to do apps. I tried this app and ended up choosing a different one.",1,4,4.7.5,2018-12-13 09:32:21,,,most_relevant,com.ticktick.task +Rodric Weiland,https://lh3.googleusercontent.com/a-/AOh14GjViS1fCrTvz4JtvsABntIFfXCIaeKOomrgQuub,"An awesome app. Best in field. But expensive at $30+ subscription for EVERY single year that you want to use the premium feature and yet ZERO way to contact developers for support other than a fairly useless ""Help guide"" that has every question under the sun except the one that you need answered. I would expect much more from an app that cost $30+ each and every year!! Very poor, and a pity because its fundamentally a great app.",1,0,4.8.6,2019-03-10 12:15:30,"Hi, when you need help, you can contact us via forum(https://help.ticktick.com/forum), email(support@ticktick.com), or Twitter. Thank you.",2019-03-11 10:45:01,most_relevant,com.ticktick.task +saifeddine bagdadi,https://lh3.googleusercontent.com/a-/AOh14GgSPgiQArjUebeFHKOShvg6vDx1YlYYlbb33P-_XA,"When I set a task for repeat for a specific day of the week, the app still doesn't repeat the task. I have to set everything manually",1,1,5.2.3,2019-10-14 17:37:22,Hey there! Could you please elaborate on the issue? What is your set up of the repetitive task? You can contact us via support@ticktick.com and we will look into it for you.,2019-10-15 01:31:04,most_relevant,com.ticktick.task +Mark Hoener,https://lh3.googleusercontent.com/a-/AOh14GhfcpasHlhPlu5rpy1jun20dF5cHGaOq3vgXT5hTFM,"No way to integrate with google assistant on a pixel. It's great app by itself, but unless developers figure out a way to make this happen, this gets one star. At the moment todoist has a work around, but ultimately, im just looking for something that allows me to get thoughts into a task list without needing to search for my phone and get into the app. Sorry devs.",1,2,5.2.0,2019-08-04 15:06:08,Sorry to hear you are unsatisfied with the lack of functionality. I hope you can enjoy our app again in the future.,2019-08-05 01:50:19,most_relevant,com.ticktick.task +Sebastian Specht,https://lh3.googleusercontent.com/a-/AOh14GiXyUcITgDVHjOxWUPrj1of5Po_VWgs5NXxxm7bKaA,I created a task for picking up groceries and set it to a specific day. Why in the world would the default setting in this app be to override my *do not disturb* setting and ring+vibrate at 5 o'clock in the morning on that day. Even though I like the apps functionality I would never recommend it to anyone with these default settings.,1,1,4.6.5,2018-10-03 13:32:36,Thank you for the inconvenience. Product team will follow up on this soon.,2018-10-08 06:39:06,most_relevant,com.ticktick.task +Cris Chapilliquen,https://lh3.googleusercontent.com/a-/AOh14GgWZ7kVhoD6niZZu7KRGgxnQEXep4pKJlAVoj0mX5c,the app is a great app but customer service is terrible!!! I paid for premium service but my app still runs as the basic plan and I've emailed them multiple times and they finally fixed it but once again this month after i was charged again for subscription the app went back to basic plan vs premium. I've emailed them twice and still no response!!!,1,16,5.1.1,2019-06-26 11:33:38,,,most_relevant,com.ticktick.task +Michelle Williams,https://lh3.googleusercontent.com/a-/AOh14GiaXCLKkGMBG6t7USKfo6hUw_9trPxy0m9SZg3g9AY,Does not sync with Google Task List unless you pay 2.99/month or their annual rate. Quite disappointed since their beautiful platform does not meet minimum sync options of Google task lists. I only found out that u had to purchase a task sync option AFTER I connected to my Gmail account. Not cool at all b/c it felt like a misleading bait and switch and now solicitor that I have to block because I synced my email to attempt what it said that it was able to do. Sorry Tick Tick but 🚫⛔👎💃💨,1,1,,2019-09-17 17:51:41,"Hey Michelle! TickTick doesn't sync with Google Tasks, it syncs within our cloud. If you need to sync your tasks with Google Tasks, you can try our another app: GTasks.",2019-09-18 00:58:18,most_relevant,com.ticktick.task +31 Witches,https://lh3.googleusercontent.com/a-/AOh14Gh5G0M_40OP0n7_qixaUzHEvAuI4lk1MLBgHRtPB8M,"Are you kidding me. I down load a ""Planner/Callander app. I go set it all up and link it and try to see the month so I know it's all right my It says I have to upgrade and pay for a month calender View. Ok... Annoying but I try 1 week. Same thing. Gotta pay. Calandar app with only 2 views for oveall use. Please don't say it's a free app or at least explain, can see all these cool features, I'll even let you go through and set up but you have to pay for all the feature",1,8,5.1.0,2019-05-29 07:10:58,,,most_relevant,com.ticktick.task +Michaela,https://lh3.googleusercontent.com/-KFZLarS4cbM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM6g7g7J-B1gh6vE2-dWKiOonLo_g/photo.jpg,"Came back to see if I can use the app since I do like it, it's a great idea. I'm my case: I need to be able to add calendar events, reminders in one app 100% essential and afaik this isn't supported? I have a shared gcal, a personal and another work one and all of them needs to not only show up for me to organize life itself. They also need to be managed in the app I use for reminders etc for this to do what it needs for me. Not just reminders, calendar events needs add, edit. Back to any.do",1,10,5.2.3,2019-10-03 09:34:17,Hey Michaela! Could you please get it updated to the newest version? Now we support adding and editing Google Calendar events.,2019-10-04 00:17:24,most_relevant,com.ticktick.task +Beau Badeaux,https://lh3.googleusercontent.com/a-/AOh14GiadSobWS6i3OJWfyRrpDJnUKmnmBo58RD4saTlzA,"""Hey, want most of the features of our app? Then you'd better pay us $30 a year!"" -this app Response: *laughingly uninstalls and writes this review so I never mistakenly download this again* Just greedy! ""But our on-going server costs!"" I don't need cross-platform sync, and that's not an excuse to hold basic features like notifications and start-of-day planning hostage. Consider a 1-time unlock for all non-server featues and we can talk.",1,3,4.8.5,2019-01-20 19:22:39,,,most_relevant,com.ticktick.task +Elan Wilkinson,https://lh3.googleusercontent.com/a-/AOh14GhE6T1GWiv_00xMCBzPBeNw88tLwHC69Dt3ec95Odk,"Absolutely terrible. I have a 30 something list of daily tasks to keep track of that are set to repeat. It was very tedious & time consuming to set up with in the first place, but after several days at random points some items would not renew. Not all at once and no discernible pattern as to the tasks it stopped renewing. They show that they are still supposed to repeat daily and they were last checked off several days ago, and will not show up on the list for today. 0/5 stars",1,51,5.0.0,2019-04-07 02:23:45,"Hi Elan, Sorry for the confusion. In the calendar view, please tap the option menu in the upper-right corner, then tap ""Show All Repeat Cycles"" to toggle between showing and hiding the repeat cycles. In the task list page, the future cycles won't display until complete the repeat task. Thank you.",2019-04-09 02:47:42,most_relevant,com.ticktick.task +Prabjit Khera,https://lh3.googleusercontent.com/-r8tabcpW0Is/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNIuVk6zHrYVBKmVVG6jmEJ7ecymw/photo.jpg,"was loving this app originally, did everything i wanted. Calendar, reminders, lists, habits. Easy to use..... until latest Android upgrade, no longer receiving any reminders. Disappointed, tried everything and the app just doesn't work. Will unfortunately be cancelling my subscription.",1,3,5.2.0,2019-08-02 20:58:28,Sorry for the trouble. The devs have been aware of it and will look into it asap.,2019-08-05 01:53:22,most_relevant,com.ticktick.task +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"wint really allow you to use it or even save tasks, (which disappear). you just get bombarded with limitations and STOP SlGNS if you try to use features while having ""upgrade to ""premium"" ads"" shoved down your throat. I don't even know if this app works or not...that's how "" limited "" it is.",1,1,,2019-01-06 03:57:21,,,most_relevant,com.ticktick.task +selgooGfOenoN ssenisuB,https://lh3.googleusercontent.com/-yvp2RoYIptI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMMPm1OYDkoiHyUTAauNqN4WfmBRw/photo.jpg,"The recent UI changes are not intuitive. And the snooze options still suck. Why can't we have a simple 3-digit numerical entry field, plus a period selector with minutes, hours, days, months, etc.? The Life Reminders (LR) app has much better snooze options, and time/date entry options.",1,1,5.2.0,2019-09-12 13:23:22,"Hi, sorry for the inconvenience. Product team will follow up on this.",2019-01-24 04:01:19,most_relevant,com.ticktick.task +Sena Ingrid,https://lh3.googleusercontent.com/a-/AOh14GiN_WPtEUFzu7qgbhJ3Yt8TAw1VLhA4UnU5HVY5,"[Happening for the second time in a row...] It's an amazing app, but when I need the most my premium account was deactivated even with the automatic renew. I paid for that and it's not working...so upset!!!!",1,1,5.1.1,2019-06-29 21:35:02,"Sorry for the inconvenience. Did you try restoring the premium in the TickTick app? If you still encounter any problem, please email to support@ticktick.com directly and send some screenshots so that we can further assist you. Thank you.",2019-03-04 15:49:27,most_relevant,com.ticktick.task +Aman Buradkar,https://lh3.googleusercontent.com/a-/AOh14GhGHnrF_iovJhyQd5MA3od8eNHwX3QFSHVtptgI,No pomo time more than 1hr. No whitelist available. No feature for tracking task progress. Also add the feature to quit bad habits.,1,0,,2019-11-06 04:15:01,Hey Aman! We have pass your feedback as feature requests to the team for future improvements!,2019-11-05 01:04:40,most_relevant,com.ticktick.task +Jeff Gouldie,https://lh3.googleusercontent.com/a-/AOh14GhSrSIfrl8CvSBAxTD1Grz7b_aCUPUewtZtXX-_Qg,"Great app but with a poor 12hr sync to Google Calendar (with no response from the developer in over a year, after an immediate response). If they cant see this is a problem, that is a problem.",1,0,,2019-03-27 04:52:09,"Hi Jeff, sorry for the inconvenience. There is indeed such a problem at present. You need to ask Google official for more help. https://help.cheqroom.com/frequently-asked-questions/why-is-my-google-calendar-sync-slow-or-not-updating-at-all. Thank you.",2019-03-28 05:55:01,most_relevant,com.ticktick.task +Potato Kitty,https://lh3.googleusercontent.com/a-/AOh14GgnBA6OfgMy8BoZMPdy7_qPuIIWOFEqrlDiGs2zOQ,"it was pretty hard to set up a task. I wanted to set a task that would happen tommorow, but I couldnt do it because it was 1 in the morning?? it also was very challenging to set up tasks in general. I couldn't for instance make a task that repeated and set the time of the task. it was also very hard to customize. I usually learn how to use apps very easily. it's like they went out of their way to make it as hard as possible. don't waster your time with this.",1,0,,2019-01-10 02:52:14,"Hi, this may help. https://guide.ticktick.com/ticktick-android-app/task/how-to-set-recurring-tasks.html. When you add task in 1am, there will be a prompt info to remind you it is already 1am, while, you still can add the task successfully.",2019-01-15 13:46:30,most_relevant,com.ticktick.task +K.J. Burnett,https://lh3.googleusercontent.com/a-/AOh14GjGW9tUxVU9M0Id1Im0W2o6KqEwUL8Gt2V7KYoKtZ4,I used to LOVE this app and have used it for a while but now nothing is synving between my devices...Samsung Galaxy S8 and Mac... Nothing at all! No matter how many times i reset and reinstall. I've tried for an hour.,1,0,5.2.0,2019-08-23 20:40:20,"Hey! If your tasks won't sync between devices, please reproduce the issue and send a log to us through Settings>Help Center> Send Feedback. To locate the issue, you need to add detailed issue description: What did you do(create tasks, mark done, or another editing) on which device(Android, iOS, or web) and can't sync to which platform ).",2019-08-27 09:59:58,most_relevant,com.ticktick.task +Douglas Rose,https://lh3.googleusercontent.com/a-/AOh14GgcgY3CNFdHarTP_RyGLjr46Vb2HsXQwb7iU-jETg,"Still cannot share a single task with someone on TickTick. You can only share a whole list. This is ridiculous, especially since the developers have promised it since 2013... I need this feature",1,1,5.2.2,2019-09-26 17:35:21,Noted! The product team will do further evaluations.,2019-09-27 00:55:16,most_relevant,com.ticktick.task +Farhanaj Achol,https://lh3.googleusercontent.com/a-/AOh14GgHuqQRRrA5sa5yBhW_0p83wCpwQsl3E7DaRlVKEw,"Even though it had repeated reminder option, it does not repeat daily appropriately, sometimes reminding daily command will vanish. I turned off ""draw over other apps"", still keeps drawing over other apps.",1,1,4.6.5,2018-10-12 02:10:45,"Hi, do you mean that the repeat rules have disappeared itself? Or do repeat tasks sometimes not remind you in the next few days? We will look into the issue soon. Do you still can enable ""Quick Ball"" function after turn off ""draw over other apps"" permission?",2018-10-12 05:57:11,most_relevant,com.ticktick.task +Cleve Dela Cruz,https://lh3.googleusercontent.com/-zC_cJEaQ-cw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOJsWc_DUcwKOKL-f472v2OFiEMfw/photo.jpg,I'd rather have continous ads than a payed time subscription. Honestly the subscription seems pretty shady for somethng you can easily do yourself... $3.69 for a month subscription and $36 bucks for a yearly subscription? Seriously? Why not just pay a premium one-time payment costing $10? Pathetic.,1,143,5.0.2,2019-05-23 05:37:20,,,most_relevant,com.ticktick.task +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"a reminder app that does not remind. Set several reminders and none alerted when the time is due. previous versions worked great until lately (new version 5.0?) I've tried locking the apps, turn off battery optimization etc...nothing worked.",1,4,5.0.0,2019-04-06 14:16:29,"Sorry for the troubles. Please lock the TickTick and prevent them from closing. In the recent apps, there is a 3 dot menu in the top right corner. Tap it and you will see the option for locking apps. And, please set up all the settings refer to the steps under “Settings - Sounds & Notifications - Reminder Not Working”, and try again. Thank you.",2019-04-07 15:51:58,most_relevant,com.ticktick.task +JWC,https://lh3.googleusercontent.com/-JGpJ0S6M8Ck/AAAAAAAAAAI/AAAAAAAAAlk/AAKWJJPSjsTqu0dson8d7KgOBqRBxb1Naw/photo.jpg,"Terribly unethical company! They bought the old task management system I was using, Gtask, which I'd bought I lifetime subscription for, then they took away the automatic sync feature making it useless and told me to download the premium tick tick version of the app never telling me that in doing so it would automatically opt me into a premium $3 a month subscription just to get the features I'd already bought. How google allows this type of predatory behavior is beyond me.",1,62,5.0.1,2019-05-13 14:12:42,"Hi there, Gtasks has always been our product. Could you please send logs to us via GTasks's Settings > Feedback > Email to us (log will be collected automatically). We will look into the issue soon. And, you can apply for a refund within 14 days after the purchase by providing your TickTick account and transaction ID to support@ticktick.com.",2019-05-17 07:08:53,most_relevant,com.ticktick.task +Brandon Farley,https://lh3.googleusercontent.com/a-/AOh14GhxTYfpBUOTQodmjvA5JnwQF2sxA9fvEleenp2dRhU,"PLEASE remove the Facebook tracking code for Facebook Places and Facebook Analytics. This is a serious privacy flaw exposing users locations, app usage, and other personal information to a notorious international privacy abuser.",1,2,5.2.3,2019-10-11 15:10:42,"Hey Brandon! The Facebook login feature is supported in TickTick, which will get the Facebook SDK integrated and shown as the Facebook connection. To keep our users' data safe and secure is key important to our company. Rest assured that we will definitely not access your data without your prior permission.",2019-10-12 02:11:01,most_relevant,com.ticktick.task +Nicolas Balcazar,https://lh3.googleusercontent.com/a-/AOh14GjfwFt6H72m4IlwmD6jHMXwg6hRCugUW1Wq63KopMI,Another update but the stats section is still totally useless and buggy. Week starts with Sunday even i changed to monday. On a sunday the stats resets and stays empty for the whole day. To update the progress % i have to exit and enter the app several times.,1,30,5.2.1,2019-08-27 22:41:57,"Hi Nicolas, this is one of the improvement in the version5.0. Sorry, it can't be change back at present. The product team will follow up on it.",2019-03-28 05:46:25,most_relevant,com.ticktick.task +Lauren Razavi,https://lh3.googleusercontent.com/a-/AOh14GiYKx-ZxrKS74ni2YLIkkTDZZu1g2dhXSoT1lr2ITo,"Lists don't sync between phones and laptops as advertised, and their customer service is absolutely awful. I have been emailing with them all week and they are still refusing to cancel my subscription before it renews and ignoring my legal requests for all data they hold on me to be deleted.",1,32,5.2.0,2019-08-10 12:52:00,"Hey Lauren, we will look into the list syncing issue asap. We are so sorry for the inconvenience about the account canceling, for the limit of Apple, the developer cannot cancel or modify the subscription.",2019-08-11 00:20:47,most_relevant,com.ticktick.task +Thomas Mabika,https://lh3.googleusercontent.com/a-/AOh14GiyYoeaFmPj6VffiJjBW4jqdMlVLDeW6vS_Je2p,"Every tiny feature of this app requires an 'upgrade'. If you're planning to use a free version of this app, don't bother. The developers are hands down, the most money-hungry developers I've ever seen.",1,2,4.7.5,2018-12-17 05:57:15,,,most_relevant,com.ticktick.task +Monir Jahangiri,https://lh3.googleusercontent.com/-Gy0lkPEW2Rw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOvYlH8lE9wNoQAysr9JZmsWmKREw/photo.jpg,"each time I check a task in its widget, it crashes and doesn't show any thing without any response to the other buttons. I was happy to find this app but can't use it because of the infinity crashes. :(",1,20,4.8.6,2019-03-07 22:07:42,"Sorry for the inconvenience. We need more detailed info to help you resolve the issue. In the app, please go to Settings - Feedback & Suggestion - Send Feedback, then send to us (the email will auto collect the error log from you). We will look into the problem asap. Thank you.",2019-03-08 10:21:17,most_relevant,com.ticktick.task +R. C. Stanley,https://lh3.googleusercontent.com/a-/AOh14GimkJJd3Q08PYcEbozpk1kd0D2TPgFnqs4A4Di-5A,This trash barely works; All functionality is hidden behind obscure icons All your time is spent guessing where any one function might be. You can't control how to manage repeating events and things magically disappear when you least expect that.,1,4,5.0.0,2019-04-10 02:13:27,"Hi there, sorry for the confusion. You may could read through the full user guide https://support.ticktick.com/hc/en-us/categories/360000948871-User-Guide. And in calendar view, tap the option menu in the upper right hand corner and choose ""Show All Repeat Cycles"", you could see all the repeat tasks. Thank you.",2019-04-14 12:59:29,most_relevant,com.ticktick.task +God in Reverse,https://lh3.googleusercontent.com/a-/AOh14GhrnImzwFNw4tvJxmofn9aOF2I4YrSgIKBXHhNR,"really no callender view without premium? Like really bro other apps do that for free so I think I'll just use one of those apps instead, I'd get it if it was a one time purchase like a DLC in a video game but a 2,99€ monthly subscription? that's just ludicrous",1,21,4.8.6,2019-03-02 15:52:56,,,most_relevant,com.ticktick.task +Dirk T,https://lh3.googleusercontent.com/a-/AOh14GisTqTaIMvPU9L5cEfjxJHx1AX8fY7GZDAUfp0XLA,"why cant i set monthly habits :( Also habits should repeat x days/weeks/months after completion. You should not define which weekdays for example, you should just say x days after last completion. That is how people use habits in real life!",1,1,5.1.1,2019-07-09 14:17:28,Hey there! So sorry we do not support monthly habits currently. But we will keep adding new features to Habit function. Stay tuned:),2019-07-10 02:41:39,most_relevant,com.ticktick.task +Scott Paris,https://lh3.googleusercontent.com/-_6rGoiydbf8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP4LdREQVspKpEpPOtg_ncN-gFJ4Q/photo.jpg,It won't sync tasks with google so what is the purpose? And customer support is helpless! No one knows how to communicate about the problem and they make the issue worse instead of fixing it. Wish I could give it 0 STARS.,1,8,5.2.0,2019-08-15 19:26:03,"Sorry for the confusion. The Google Calendar sync is a premium feature, could you please check if your Google Calendar syncs with your Local Calendar?",2019-08-16 03:22:56,most_relevant,com.ticktick.task +Milan Panchal,https://lh3.googleusercontent.com/a-/AOh14GgbZLUmHJebD-2QG0KQhf8z2kVaMjUJxTQc1je0bg,"Why tick tick for windows is available for 15 days...we can use free version of tick tick on Android, but on windows there is time period. You should allow to use free version of tick tick on windows also without 15 days trial. Really bad experience with Tick tick..😏",1,0,,2019-09-22 07:38:22,,,most_relevant,com.ticktick.task +Kevin Simson,https://lh3.googleusercontent.com/-ycmvvP3eaK8/AAAAAAAAAAI/AAAAAAAAIt4/AAKWJJM9C-XsyRJdcSxfvCtPTvESNDFpVw/photo.jpg,"I like the app overall, but can't stand the monthly subscription. There should be one time payment to access useful features.",1,1,5.0.1,2019-05-15 13:01:11,,,most_relevant,com.ticktick.task +Worth Less,https://lh3.googleusercontent.com/-oossjHfWnHA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN0n6PCEti9eDW2SVhS4UQV5NbViw/photo.jpg,Add the feature to quit bad habits and to track progress of tasks.,1,0,,2019-11-06 04:13:54,Noted! Thanks for your feedback!,2019-11-07 01:24:04,most_relevant,com.ticktick.task +Prasus Magar,https://lh3.googleusercontent.com/-TxT8P9B-J2k/AAAAAAAAAAI/AAAAAAAAAWQ/AAKWJJOa7trITDb5BSahFChH8e_D7ozZ7Q/photo.jpg,My Desktop task and Mobile app task doesn't sync even tho I am using same account (google) and I am on the premium. Please fix this issue as I may have to return to todoist if this issue persist longer,1,1,5.2.0,2019-08-22 11:27:01,"Hey Prasus! If your tasks won't sync between devices, please reproduce the issue and send a log to us through Settings>Help Center> Send Feedback. To make sure we know the issue, you need to add detailed issue description: What did you do(create tasks, mark a task as done) on which device and can't sync to which platform ).",2019-08-23 10:27:19,most_relevant,com.ticktick.task +Rocky Ji,https://lh3.googleusercontent.com/-hq0hhXMDfnE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMvKlEnrv4D88o2bdENkPWQsU_6HQ/photo.jpg,"The good: simplistic UI, one may or may not like this. The bad: Google+ authentication is buggy, had to it thrice. The ugly: doesn't allow one to export/import data.",1,0,5.0.1,2019-05-06 12:58:57,"Hi Rocky, really sorry for the inconvenience. Could you please email to support@ticktick.com directly and send some screenshots to better explain your issue so that we can further assist you? Thank you.",2019-05-07 14:37:55,most_relevant,com.ticktick.task +Maxim Vanyushkin,https://lh3.googleusercontent.com/a-/AOh14GiljC1UldH2YJ8fWxyfr-iLbZL8k7LRp9Vsbzjl,"The app has a very bad support service. pretty good application, however if you encounter a problem then the support will fix it very long.",1,0,4.8.0,2019-01-14 19:04:08,"Hi, sorry for the inconvenience. What problems have you encountered during the use? We will look into the issue soon.",2019-01-15 12:27:01,most_relevant,com.ticktick.task +Rubab E Arfa,https://lh3.googleusercontent.com/-tY7OCnENUB8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP1s1WqkPX3Amn0gPA_FCIv9JHRDw/photo.jpg,I had set an alarm of certain task which is suppose to repeat all the week days but it had notified me only once or twice and it had not been repeated. all the settings were perfect it was active even but does not does it work for you all it is not recommended,1,3,5.0.1,2019-04-28 02:07:20,"Hi Rubab, under calendar view, please tap the option menu in the upper-right corner, then tap ""Show All Repeat Cycles"" to toggle between showing and hiding the repeat cycles. Please contact us again if you have any other questions. Thank you.",2019-04-28 02:14:19,most_relevant,com.ticktick.task +Zahra Shaker,https://lh3.googleusercontent.com/-CUIC2H3_GNw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOc0T2_JrXimgNIZle_wGUDtGbBRA/photo.jpg,I personally like this structure but unfortunately it's on accessible and it doesn't work with TalkBack well so blind people can't use this app it doesn't read different sections and different buttons please improve your accessibility,1,0,,2019-08-07 03:54:27,Thank you for your feedback. We are sorry to hear that it doesn't fit your needs. Will evaluate your request in the future.,2019-08-10 04:29:43,most_relevant,com.ticktick.task +Darshan Madke,https://lh3.googleusercontent.com/a-/AOh14GiUcp6c5UXHyKAkaE70ndcmhkgyGKD6JGtevhSg1ks,No notification or stick to notification n alert n all features not working after a day!...in my previous review you replied to try that feature i already did that ...my android version is 9 asus zenfone max pro m1 plz fix this error,1,1,5.2.1,2019-09-10 07:02:54,Hey! Does this issue just happen recently? All the time OR just intermittently? Could you please check if the settings are all enabled?,2019-09-10 15:31:05,most_relevant,com.ticktick.task +Lesli Handwork,https://lh3.googleusercontent.com/-_WSZIm4rOjQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMJy7KGodGhBfqzJA8ieXWeP1Acrw/photo.jpg,using the free app...but disappointed that i can only integrate one week of my calendar. i use another free app tha allows me to integrate my full calendar and allows me to color code the entire app.,1,1,,2019-04-05 15:26:59,"Hi Lesli, TickTick supports 5 calendar views. Does it meet your needs? Thank you. https://support.ticktick.com/hc/en-us/articles/360016492351-Five-Calendar-Views",2019-04-07 15:40:03,most_relevant,com.ticktick.task +Nichole Campbell,https://lh3.googleusercontent.com/a-/AOh14GjDY65FeCyylQAEaLPIHm0vf1tDtEKWYVAHyENmajI,The app is ok cancellation is very awkward. If you make it difficult to cancel a premium account it puts me off your company and your product.,1,2,5.2.1,2019-09-10 04:31:01,Thanks for the feedback! Will consider refining the cancellation process with the development team asap.,2019-09-10 05:45:15,most_relevant,com.ticktick.task +Jackey Niraula,https://lh3.googleusercontent.com/a-/AOh14Gjq0zSAeaD2z4Yh0baCWALhprBBqH0cYN5syFw9Bw,"Cant add widget to home screen. Configured the app, added task list and tried to drag the widget to home, shows up nagging popup to select theme etc. Does nothing even after configuring the app. Won't recommend it.",1,3,5.1.1,2019-07-22 06:11:01,"We regret the inconvenience; this issue seems odd, we currently do have had other user reporting it, but we will look into it asap.",2019-07-24 03:28:55,most_relevant,com.ticktick.task +Sociologist Tina,https://lh3.googleusercontent.com/a-/AOh14GiyUaFNZ_jCtlWOiPVF9iCg7Y4NSjqQ3zmUZiaD,"They claimed they would give me my money back, but didn't so I had to go through my bank. I'm talking about $2.99. it's not a free app to get full functionality, so you end up paying extra. It's not useful for my purposes at all. I was hoping it would sync with Google contacts. The alarm is way too loud, and I don't understand how to use it. They deliberately give you the runaround, acting as if they're going to pay you back but they don't.",1,11,5.1.0,2019-06-16 16:34:56,,,most_relevant,com.ticktick.task +่ Natan,https://lh3.googleusercontent.com/-l42UAfdCFHY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNHDG2EJhPNCZT5iA3nW7aaldkzhg/photo.jpg,"scam(?) i and my friends subcribed this apps to try collaboration. but in FAQ there it is but actually we didnt find anything with ""collaboration"" thing. why is it? please fix this serious problem",1,0,4.8.6,2019-03-20 21:00:47,"Sorry for the inconvenience. Please refer to this. https://support.ticktick.com/hc/en-us/articles/360016272952-Share-lists-with-others. Thank you,",2019-03-21 06:16:43,most_relevant,com.ticktick.task +qwerty uiopa,https://lh3.googleusercontent.com/-Dm7JkJuBzfY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNtzNHPE23KgsagzTuEtve-I29C5A/photo.jpg,Um you need to pay for the duration of the task? No thanks i will just find a new app,1,0,,2019-11-23 15:54:08,We will pass your feedback to the team for further evaluations.,2019-11-25 01:14:30,most_relevant,com.ticktick.task +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"App freezes every time I add a task, when I close and reopen the app the new task is there like nothing went wrong...",1,0,4.8.6,2019-02-09 11:55:14,"Hi, we need more detailed info to help you resolve the issue. In the app, please go to Settings - Feedback & Suggestion - Send Feedback, then send to us (the email will auto collect the error log from you). We will look into the problem asap. Thank you.",2019-02-10 10:56:35,most_relevant,com.ticktick.task +Sheetal Singh Tomar,https://lh3.googleusercontent.com/a-/AOh14GjdSTZQu8Mhj2G3saWX__SFvzKzUm0mbboUl3UZYA,I am unable to upgrade my account to premium. I've tried multiple times but to no avail. :/,1,0,5.5.6.0,2020-04-01 17:09:22,,,newest,com.ticktick.task +Ms Susanne Staton,https://lh3.googleusercontent.com/a-/AOh14GjvIA104K6jygFYSMtqgqC1DIclAM6bnphIgoBs,"Kept crashing, rss feed if my calendar duplication of entries was HUGE and overall it just added to the noise rather than helping.. I'm out.. UPDATE: No I can't send a feedback (with log) as I've already unsubscribed and uninstalled the app.. and that's surely something you can add into functionality if you're really interested in gathering the data",1,0,,2020-03-31 12:26:39,"Hi, could you send a feedback (with log) to us in TickTick? Sorry for the inconvenience.",2020-03-31 12:01:29,newest,com.ticktick.task +Christian Bautista,https://lh3.googleusercontent.com/a-/AOh14GgWEqYdg1I8UuBDUCiRBfeRz_82C3oDkN3kR0bY,Pesters me to rate the app. Here you go.,1,0,5.5.6.0,2020-03-31 01:06:17,"Hi, sorry for the bad experience.",2020-03-31 11:56:30,newest,com.ticktick.task +Puneet Purbi,https://lh3.googleusercontent.com/a-/AOh14GjOghUD_b5EJLBQ4r-CtnOuxCWPnGLGX6SW1z2ILfk,"Want to know that is there any feature like wunderlist app, to get notification of comment on all shared members on their app as well as on email.",1,0,5.5.6.0,2020-03-28 18:05:01,,,newest,com.ticktick.task +Erik Lindberg,https://lh3.googleusercontent.com/a-/AOh14Gh52ripqfB66i59gtYf7I63vE5Jryr6_mCyuGo1,"Max of 9 lists, then you pay 3 bucks a month.",1,0,5.5.6.0,2020-03-27 04:33:56,,,newest,com.ticktick.task +Dustin Pate,https://lh3.googleusercontent.com/a-/AOh14GjLwEAlHALuhbv2bVRjUZrQLQS9aSgimx9JohLIrg,"Pesters me to rate it, immediately one star.",1,0,5.5.6.0,2020-03-26 08:40:20,,,newest,com.ticktick.task +ManfromtheRedRiver,https://lh3.googleusercontent.com/a-/AOh14GgviiYFcHe2gwZRZproAGNdAFtObGq0aa0n10jNUQ,"Requires creating an online account to view the calendar. Therefore, there is no reason to use this over Google Calendar.",1,0,,2020-03-24 14:47:40,"Hi, you could use TickTick in local mode without creating an online account.",2020-03-31 11:59:24,newest,com.ticktick.task +Robin Spark,https://lh3.googleusercontent.com/a-/AOh14GiC9tpshZ_2G2GbPHpQWHafqr_DIL9m0pVWhNEwlg,The free version is crippled. 3 lists max. Seriously? Just use DTG GTD. To do app with free unlimited nested to-do lists with tags and reminders.,1,0,5.5.5.0,2020-03-15 06:05:02,"Hi, sorry for the trouble. Free version suppports 9 lists. Could you send us feedback in app then we can help you identify the issue.",2020-03-16 01:48:35,newest,com.ticktick.task +Eck0h Cobra,https://lh3.googleusercontent.com/-wmXP6ECVlf0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPmloz2LVriBQrUSYr0P1dJaB8MgA/photo.jpg,"Very good app that is perfect for how I think, but it kept asking me to rate the app for months now and I've always pushed Later, I'm sick of it asking me to rate the app",1,1,5.5.5.0,2020-03-13 00:09:46,"Hi, sorry for the trouble. We'll transfer this issue to product team for evaluation. For now, you could rate the App and then rate pop up will not show for 6 months.",2020-03-13 02:18:41,newest,com.ticktick.task +David Ešner,https://lh3.googleusercontent.com/a-/AOh14GgfAZXAn1X_OLFgUKoyfhrr-F9ySfFKIjloeqHMOA,"Often freezing and crashing when I wanna add photos to task, help or give my my money back !!! No support response Tasks in calendar, easy prioritization, only usefull app in shop",1,0,5.5.1.0,2020-03-08 09:32:18,,,newest,com.ticktick.task +Abdelrahman Elbosraty,https://lh3.googleusercontent.com/a-/AOh14GhYf1UrkksXxSf4yH6nQC6h1UqXiopNV_2YnDTS,"Help! The widgets are not working. It always shows this message"" failed to display your tasks, please restart app or add a new widget instead""",1,0,5.5.5.0,2020-03-08 04:37:11,"Hi, sorry for the trouble. Could you send us a feedback with log ? Dev team will look into the issue asap.",2020-03-08 09:25:30,newest,com.ticktick.task +Raghav sharma,https://lh3.googleusercontent.com/a-/AOh14GhFfdn_Ku6vtyJa0m16JTaNvOI-wFjM7OfhlZNYVg,Has so many bugs it's keep crashing,1,0,5.5.1.0,2020-03-05 18:13:23,"Hi, sorry for the trouble. Could you send a feedback with to us in TickTick? We will reach out to you with assistantance.",2020-03-06 01:12:59,newest,com.ticktick.task +Krushanu Das,https://lh3.googleusercontent.com/a-/AOh14GhLkUoNe9SefyZf3J_dSZX7Q1OQbzg_9ZdoVeq7mf8,"Even after several updates, the problem persists: Despite adding and sceduling tasks, the calender inside the app isnt showing any tasks at all. No tasks visible at all in the in-app calendar view. In the calendar widget however, i can see tasks arranged datewise. Honestly, yours is a really nice app with features, but what's the point to having them if they don't work in the first place.",1,3,5.5.1.0,2020-03-01 14:25:00,"Hi Krushanu, could you please be more specific about the case? Do you mean repeat cycle tasks are not displayed on the calendar view? Thank you.",2019-06-05 12:46:23,newest,com.ticktick.task +Yalda Ataee,https://lh3.googleusercontent.com/a-/AOh14GioUaqz-QwcXx4AgzY4C5f1fE7cGBCZYZvWISdWSg,"Nothing is free, very bad",1,0,,2020-02-29 10:38:11,"Hi, sorry for the bad experience.",2020-03-02 01:32:56,newest,com.ticktick.task +Paul Teale,https://lh3.googleusercontent.com/-i85sBUf7eHs/AAAAAAAAAAI/AAAAAAAAXiM/AAKWJJM96F2y48NmdeXZp5yyygnWn0njvw/photo.jpg,"Another app that fails to draw events correctly on day view If I have an event from 3:00 to 3:15 and another from 3:15 to 3:30 there should be drawn with a space between them no matter how much I am zoomed in, they are not overlapping events so don't treat them like they are",1,3,5.5.1.0,2020-02-24 08:20:44,"Hi, sorry for the trouble. This is by design now. Duration that less then 30 minutes will display 30 minutes height. I'll transfer your feedback to product team for evaluation.",2020-02-24 11:17:25,newest,com.ticktick.task +Ayush Rajput,https://lh3.googleusercontent.com/a-/AOh14GiGkOig4sd9VuBzTmK0BQhTExUypkWZyGUuzE4svJI,"while using the habbit feature, you can add multiple reminders for drinking water, but if you check done in any one of those reminders then it wont remind for the rest of the day. ruins the logic. Uninstalled Installed a year later and still the issue exists, the habit feature was a unique point which brought me to the app but I guess I'll have to use another one.",1,18,5.5.1.0,2020-02-22 22:17:26,"Hey there! Thanks for your feedback, have noted it down and the product team will re-evaluate it! We will keep polishing the habit feature.",2019-07-06 02:42:06,newest,com.ticktick.task +Logesh R,https://lh3.googleusercontent.com/a-/AOh14GjiKvaZBZ0z1MRmzuqtjUXN_obDu8PGNZvIPbFo,"Plz change the orange color in ""Dark"" theme to blue...",1,0,5.5.1.0,2020-02-22 15:52:19,"Hi, I'll transfer this suggestion to product team for evaluation.",2020-02-24 11:22:04,newest,com.ticktick.task +Daniel,https://lh3.googleusercontent.com/a-/AOh14Gg175iBHlC49hGxDEY3nDwUT5LNLCVcY34YouGH-qA,"You get one star because I don't like being constantly harassed with popups asking me to rate it in an app I am paying for! Stop forcing automatic correction, this is changing what I am typing and changes my formating - make this an option to turn off!",1,8,5.5.1.0,2020-02-19 07:45:16,"Hi, Daniel. Sorry for the trouble. I'll transfer this feedback to product team for evaluation.",2020-02-14 11:23:41,newest,com.ticktick.task +Adam Stahl,https://lh3.googleusercontent.com/a-/AOh14GhXYWuTdDdp_UnQ_KSXN_qmUEpIkfm9qoMeFtZQcw,Update 2/19/2020: I cant recommend this app to anyone. The smart date parsing only works reliably if you enter it using military time. Also the fact that you have to enable alarm mode to have reminders fire on time is ridiculous. I have many apps that push notifications on time and don't require that. So the developers don't know how to do reminders correctly. Horrible app.,1,0,5.0.1,2020-02-19 06:22:11,"Hi Adam, sorry for the inconvenience. We will look into the issue asap. Thank you.",2019-05-12 07:31:39,newest,com.ticktick.task +August,https://lh3.googleusercontent.com/a-/AOh14Ghp20a9enjnNpWyhrlO8vObZ7rZkJeqpUDxysyv,"Downloaded ticktick. Thought it seemed cool, so signed in with google account and tried to sign up for monthly subscription. Kept getting error messages and it wouldn't let me start the process or even add a card. Waste of time.",1,3,5.5.1.0,2020-02-19 03:35:01,"Hi, sorry for the trouble. Could you provide us the error message screenshot to support@ticktick.com? We'll look into that asap.",2020-02-19 07:09:29,newest,com.ticktick.task +Voice Sessions,https://lh3.googleusercontent.com/a-/AOh14GjL41fCYTbksiBy2H19ulYTtak1HhPiQYA9F4bOvg,"JUST PURCHASED MONTHLY SUBSCRIPTION. UNTIL NOW, MY APP IS NOT WORKING AS A FULL VERSION.",1,0,5.5.1.0,2020-02-18 13:12:07,"Hi, could you try click restore in account page and check if that works? Please contact us at support@ticktick.com if the issue persists.",2020-02-19 07:10:49,newest,com.ticktick.task +ashok kumar,https://lh3.googleusercontent.com/-mh3Ck2PPf2M/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMy2noMD8z65tKmQKPM39D_lVFJkw/photo.jpg,One of the worst app...if someone believes in this app.. for sure they are going to miss that appointment..,1,0,,2020-02-18 03:16:50,"Hi, sorry for the trouble. You can go to Settings - Sounds & Notifications - Reminders Not Working and reset it - see if the issue can be resolved.",2020-02-19 07:12:00,newest,com.ticktick.task +Роман Бухаров,https://lh3.googleusercontent.com/a-/AOh14Ggh9yI4fblr5wkUxXsObHB93s_N-rvPxTcchq5Y4Q,"""Sorry you have reached the use limit on subtasks. Upgrade now and add up to 199 subtasks per task"". Are you serious guys? Pro version for more subtasks? Why 199, why not unlimited?",1,0,5.5.0.2,2020-02-17 07:02:24,,,newest,com.ticktick.task +VIPUL MEDICO,https://lh3.googleusercontent.com/-s0beHfj3iPs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM-3aJS24VDTySjPJryK13XAEtsTw/photo.jpg,VERY GOOD APP BUT IN WIDGET THERE IS A NO OPTION IN LIST WISE SELECT TODAY TOMORROW OR ALL PLEASE UPDATE FOR THIS OPTION THEN IT WILL BE FAR BETTER PLEASE UPDATE EXAMPLE IF THERE'S A CALL LIST IN WIDGET IT SHOWS IN CALL WIDGET LIST ALL CALL TODAY TOMORROW OTHER ALL DAY BUT IT SHOULD OPTION TO SELECT TODAY TOMORROW ETC.,1,0,5.5.0.2,2020-02-11 18:30:10,"Hi, sorry TickTick does not support that option. I'll transfer your suggestion to product team for evaluation.",2020-02-12 08:12:51,newest,com.ticktick.task +Mike McDonald,https://lh3.googleusercontent.com/-NzSdutvM_q4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMw6xZE7KLVfAI-KvppvDsv1CwKBw/photo.jpg,Free version only allows 9 lists. Lame,1,0,,2020-02-11 15:29:45,,,newest,com.ticktick.task +Begam Abida,https://lh3.googleusercontent.com/-A9bse0JJTBo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOsEfnR6KkxPBoD3VAeQz98JRG0Rw/photo.jpg,Cant even understand how to use it..didnt like at all,1,0,5.5.0.2,2020-02-06 17:55:56,Can you please share which features you find difficult to use? Please contact us at support@ticktick.com.,2020-02-07 10:09:17,newest,com.ticktick.task +Rio V,https://lh3.googleusercontent.com/-ZWjtvCyC9ug/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMtBhu8_-NmjR78KxoN4kxh9KK4jg/photo.jpg,"Cannot share entire calendar and/or task database with other users. Only single daily task shares or individual list collaborations. Edit: very solid low 1 star, 0 if I could, since the developer couldn't even be bothered to read the entire of two sentences of review, acknowledging what features they did have.",1,0,5.5.0.2,2020-02-05 13:25:32,"Hi, sorry for the last reply. TickTick does not support direct calendar share. I'll transfer your suggestion to product team for evaluation.",2020-02-05 13:32:18,newest,com.ticktick.task +Aleksandar Colak,https://lh3.googleusercontent.com/-gVqKoTmMQ5s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMUvNQ_UE7rTGfx8kGSISeu8WXlqQ/photo.jpg,You block new entry on my existing list and force me to upgrade to premium if I won't to continue.,1,0,5.5.0.2,2020-02-04 06:04:13,"Hi, sorry for the trouble. Could you check if your lists count is more then 9 ? If so, you could delete unused list then you can add new entries.",2020-02-04 12:11:21,newest,com.ticktick.task +Lee Dulcio,https://lh3.googleusercontent.com/a-/AOh14GjIZzqaqkKYCnqWxgY2lvMSmzjxsRCrmgg1PDB4-A,No subtasks,1,0,4.8.6,2020-02-04 00:39:52,"Hi, TickTick supports subtasks feature. Please ref: https://support.ticktick.com/hc/en-us/articles/360016273792-Create-a-subtask",2020-02-04 01:09:48,newest,com.ticktick.task +Ewen Sinclair,https://lh3.googleusercontent.com/a-/AOh14Gj-_F7VPKJ1v5UGrNJKwVt66N0sBu9CNwsvqjon,"Only reviewing so the app stops asking me to do so. Even when I do review the app still asks me, 3 stars to 1.",1,0,5.5.0.2,2020-02-01 04:58:58,"Hi, sorry for the trouble. I'll transfer this feedback to dev team to fix.",2020-02-01 06:44:32,newest,com.ticktick.task +Jeyps Pelingo,https://lh3.googleusercontent.com/a-/AOh14GjleHPDXHMZy91CkQl6FelulO4L5hyVlWfOqwc32JM,I keep adding tasks. Its nit showing on widget. Very complicated to use.,1,0,5.5.0.2,2020-01-29 02:19:53,,,newest,com.ticktick.task +Sarvesh Kamble,https://lh3.googleusercontent.com/-jqCg1BifgNw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNFelwFBlepsas347eM8mvgXEqr8Q/photo.jpg,Not Good App All u Need buy and clock facility not given,1,0,,2020-01-28 18:58:13,,,newest,com.ticktick.task +ian ball,https://lh3.googleusercontent.com/-rFixxq8F_ao/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN8sHU1-E_zGDra_VAJC6SmU1dxjQ/photo.jpg,I have used this app for years but there is now a major issue. If you drag a task to tomorrow or place it under a task with a later date the task date no longer changes date. Is there any way to revert to an earlier revision? Hi I have sent screenshots but the issue is the same.,1,0,,2020-01-27 14:18:26,"Hi, we've tried to reproduce this issue but with no luck. Could you provide us with screenshots and send to support@ticktick.com? We'll look into this issue ASAP.",2020-01-27 12:11:33,newest,com.ticktick.task +Rizal Akbar,https://lh3.googleusercontent.com/a-/AOh14Gjh-2cFx_IdLE1yuU7UEeiOEdcgbYRsb4P53okyi54,"for years I use ticktick, I love it so much, I rated it 5 in Play store.. But the recent several changes to the app are make the app getting worse and keep getting worse than before. I incredibly sad and disappointed. for years I rely on ticktick as my todolist app, and now I have to find other alternative that can be as good as ticktick that I know before. that's not an easy thing to do",1,15,5.5.0.2,2020-01-22 15:40:15,"Hi, could you provide us with more details about the changes that make you disappointed? Sorry for the inconvenience.",2020-01-27 12:10:31,newest,com.ticktick.task +Ulises González,https://lh3.googleusercontent.com/-blxrEY0VKtY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP-iYFyOHjAnz8tRTZTaaUoPpnLrQ/photo.jpg,"You need to pay. It's uselles without paying. Seriously, just 9 list for free?. If you need more list just add them in wunderlist and then import them to this app. Or better, stick with todo from Microsoft, it's free.",1,2,5.5.0.2,2020-01-21 21:30:50,,,newest,com.ticktick.task +N J,https://lh3.googleusercontent.com/-Lo6qav7hE6o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPI_zH-lMdacSnkdMmGpuqEHhqY4A/photo.jpg,It keeps showing java.lang.RuntimeException: Unable to start receiver com.ticktick.task.activity.widget.AppWidgetScrollable: java.lang.NullPointerException: Attempt to invoke virtual method 'boolean java.lang.Boolean.booleanValue()' on a null object reference at android.app.ActivityThread.handleReceiver(ActivityThread.java:3421) at android.app.ActivityThread.access$1300(ActivityThread.java:200) at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1684) at android.os.Handler.dis,1,0,5.4.1,2020-01-21 01:38:34,"Hi, please upgrade to the latest version. We've already fixed that issue. Sorry for the inconvenience.",2020-01-21 02:49:38,newest,com.ticktick.task +Sammy D,https://lh3.googleusercontent.com/-DLoTpYJ0wzY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOKb3ISrjg4pHdW1Nh0nmlw2YDosw/photo.jpg,"Only 9 lists allowed for the free edition. Incredibly expensive by app standards for the pro ($37 per year). I don't mind supporting a good product, but that is ridiculous for a shopping and task list app",1,1,5.4.0,2020-01-19 01:23:51,"Hi, sorry for the inconvenience. But we do not have plan to adjust Premium price. You could close your inactive lists to create new list if meet lists limit.",2020-01-19 01:54:01,newest,com.ticktick.task +Adham Nasr,https://lh3.googleusercontent.com/-CYoDW7EB-Ek/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOs5lQaCb9k-1kegPQReLsg6i7SLA/photo.jpg,Very expensive premium...,1,0,5.4.1,2020-01-15 19:02:46,"Hi, sorry , we do not have plan to adjust premium price. I'll transfer this suggestion to product team for evaluation.",2020-01-16 03:38:55,newest,com.ticktick.task +Jeff C,https://lh3.googleusercontent.com/a-/AOh14Gj2xNAxvXtiYe6AoaQ69my_u9G1WfA0o-vseNEm_Q,Apps that cost should be required to disclose how much these cost up front so people can decide if they even want to download it. We shouldn't have to hunt for the cost.,1,0,,2020-01-12 15:52:11,"Hi, we do not have plan to adjust Premium price. I'll transfer your suggestion to product team for evaluation.",2020-01-16 03:42:48,newest,com.ticktick.task +Khanh Nguyen Le Quoc,https://lh3.googleusercontent.com/-WJTQpGsSaco/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPwTfxJ-0KxlZN8mM5TIKiAuqMbvw/photo.jpg,Can't assign to multiple people. Verry bad !!!,1,0,5.4.1,2020-01-10 15:26:48,"Hey there, +Sorry for the trouble. I will pass your feedback to the production team for evaluation. But we don't have that plan at this moment.",2020-01-12 10:41:39,newest,com.ticktick.task +Tuck ORiley,https://lh3.googleusercontent.com/a-/AOh14GgCuAt6yNNpbwTfGlFJ1C2usVp1x5A8Aj_iPlen,I have been a big fan of Todoist for years. I tried this last week and the themes are awful .,1,0,,2020-01-09 22:58:40,"Hi, sorry for the inconvenience. We'll transfer the theme feedback to product team for future evaluation.",2020-01-16 03:26:11,newest,com.ticktick.task +Alejandro Gutierrez,https://lh3.googleusercontent.com/a-/AOh14Ghh0JpP_G2DUZg_H1ZvsiPpFjk3eV9r_PlXu7bJcQ,Very annoyed by the new time setting. It's like going back to Android 2.1,1,1,5.4.1,2020-01-09 02:00:39,"Hi, we'll bring back the radical time picker in next update. Sorry for the inconvenience.",2020-01-16 03:44:43,newest,com.ticktick.task +Noluthando Jokazi,https://lh3.googleusercontent.com/a-/AOh14GiQVXl9KVju8F0ZKiUWV5OoUwRO1tSvH70YwArLMQ,The reminders do not work.,1,0,5.4.1,2020-01-08 09:08:25,,,newest,com.ticktick.task +Renee Faviola Publico,https://lh3.googleusercontent.com/a-/AOh14Gisxk6yALkgf6ifMsM6qXikSRCh3pfqgSNSH0wq,"why do i need to pay for basic features such as showing your tasks in month view? it's a calendar app, those are stuff you need to see... can't believe you need to pay premium for a calendar todo app to show your freaking todos in the calendar",1,2,5.4.1,2020-01-07 13:45:19,"Hey Renee, + +If you don't want to pay for calendar, you also can use calendar view of List for free.",2020-01-08 08:40:50,newest,com.ticktick.task +Kyle Millemon,https://lh3.googleusercontent.com/a-/AOh14GiWcinn9q5Ag_jsmQGgKez46pWN1mx9RNI4gDvNEA,Widget has stopped working and the developer is unresponsive.,1,0,5.4.1,2020-01-04 17:53:05,,,newest,com.ticktick.task +Szymon Shields,https://lh3.googleusercontent.com/a-/AOh14Gi_vg4sfuNGuLkXeOdjlaocbQV9j8MzXoCtpOlIyg,SERIOUSLY??? Just realised you made Duration a Premium Feature. Why? Did people just start using it more all of a sudden???,1,0,5.4.1,2020-01-03 22:55:10,"Hey Szymon, + +Duration is designed to be Premium feature in the first place. If you want to it be free, we will pass your feedback to product team for evaluating.",2020-01-08 08:49:56,newest,com.ticktick.task +MPooZD Dhoomy,https://lh3.googleusercontent.com/-EP0XfKl5pwg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMWED1Ct-uGF0E5aqx2qJ2hoMeoig/photo.jpg,New update has performance bug very slow in scrolling down and typing Update: after last update now i cannot type or write anything in task description after markdown features 👎,1,0,5.4.1,2020-01-03 17:06:41,Thank you for downloading our app. We'd love to help you with this issue. Please write to us at support@ticktick.com so that we can help you better.,2019-12-09 01:46:51,newest,com.ticktick.task +Mr Lee,https://lh3.googleusercontent.com/a-/AOh14GhGMwe193zukIbjLIxbbD1vBTuQdionaMZn6oOgEmw,"I cant no longer recommend this , cant sign up on any platform and they servers are located in Asia .I wouldnt put any sensitive information on it. They have nothing but server issues . Its very fischy",1,0,5.4.1,2020-01-02 19:42:02,"Hi Mr Lee, + +Sincerely apologize for the inconvenience! We have resolved the issue and there should be no problem logging into TickTick now. Could you please try again? If you encounter any further problems, please feel free to let us know anytime. We're always ready to help out.",2020-01-02 22:16:25,newest,com.ticktick.task +Kim Baugher,https://lh3.googleusercontent.com/a-/AOh14GgT_I1GWa0oWPoBv9xhHZkt4P3e9pgGgtVm2DgnklU,Update: noticed this app sending data to Facebook when I set up my firewall. No bueno.,1,1,5.4.1,2019-12-30 20:04:07,"Thanks for your feedback. Can you tell me why you don't like the current ""Daily Alert""?",2016-01-30 06:03:28,newest,com.ticktick.task +Jasmohan Singh,https://lh3.googleusercontent.com/-mdo6i7nDNz0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMm7Dz6g7kqlnhp5WjErs94PJIiVg/photo.jpg,Worst app I qm trying to create acount with gmail but it say no internet connection Even my internet work fine every thing working nicely even you tube without lagging,1,0,5.4.1,2019-12-27 19:46:07,"Please try to login again to see if it works well. If the same problem still exists, please let us know at support@ticktick.com. Thank you.",2019-12-30 02:09:48,newest,com.ticktick.task +Imran Mussani,https://lh3.googleusercontent.com/a-/AOh14GjXGdL3GYz4cHXGlN7nHouXvs1aXOp7IZjmUmQeMg,Doesn't allow you to unsubscribe from premium and the developers don't even respond whether on email or twitter.,1,1,5.4.0,2019-12-25 08:16:56,"Hey Imran, + +Sorry for not getting back to you promptly! Could you please contact us again? We will give priority to responding to you asap.",2019-12-26 01:23:33,newest,com.ticktick.task +Jasurbek Shomurodov,https://lh3.googleusercontent.com/a-/AOh14Giqe8I6QBufdn475DlLWRKCua01OXZl9LFc0Vx7,Awesome,1,0,5.4.0,2019-12-21 18:32:47,,,newest,com.ticktick.task +Valentina Saturday,https://lh3.googleusercontent.com/a-/AOh14Gi4Hyv1v02eb7JnJTdC70Bb7MrhlZ7XnEw2A8O6,"It's impossible to use this app. At first, when I choosed pink theme during onboarding, the app ignored my choice. Then I filled it with all my tasks for two days, but when I closed it and opened again, the app asked me to sign up with Google. All my tasks were gone when I did it! I`m deeply disappointed...",1,0,,2019-12-20 03:41:55,"Hey there! + +Could you please try to log in with the same way/same address you did before? +You may write to us via support@ticktick.com, we will figure out it for you asap.",2019-12-20 01:22:32,newest,com.ticktick.task +Corinne Chung,https://lh3.googleusercontent.com/a-/AOh14GjwcZuSpr_kFk0714M3g4nKK1Kgm9Z4Z-zZYW7yP88,"Deleted my account because I found something more aligned to my needs, but I still got charged for another year. Developer ignored my email and then denied a refund via PayPal so I've now paid $28 for something I can't and no longer want to use. Had no issues with the app itself but very disappointed with the customer service.",1,0,4.8.5,2019-12-17 01:09:54,"Hey Corinne! We sincerely apologize for not responding to your email promptly. We'd be happy to take a look into this for you, please contact us at support@ticktick.com. We will give a priority to deal with you if the refund is eligible(within 14days from the very first request email.",2019-12-17 01:27:38,newest,com.ticktick.task +JS,https://lh3.googleusercontent.com/a-/AOh14Ghu_LxmlbMe-BQPlODkXW2JHAtK7zHjWcKaeGfGOw,"Cancer notifications. I denied the app permissions it asked for one time when trying to change the notification sound. Now it is impossible to change or mute the sound, no matter what setting I change inside or outside the app, and whether or not I give the app the permissions it wanted. 4 stars when this is fixed.",1,2,5.4.0,2019-12-08 02:04:29,Thanks for your feedback. We’d like to know the details of the problem you mentioned. Please send the details or screenshot to support@ticktick.com. We'll pass it along to our development team and see if there is any way we can fix it.,2019-12-09 01:47:53,newest,com.ticktick.task +Max Zdobnikov,https://lh3.googleusercontent.com/a-/AOh14GhBIyuzUDs8vwxCCkJ_daGF14enYRslLqqYBylW,Markdown causes laggy typing in description and it seems I can't disable it.,1,1,5.4.0,2019-12-06 14:32:54,"Dear User, +Could you please contact us via support@ticktick.com? We'd love to hear more about this issue in order to assist you.",2019-12-09 01:44:27,newest,com.ticktick.task +Football Nation,https://lh3.googleusercontent.com/a-/AOh14GharaQvNawE-j3JQe-dMWRTO9DGCnzioYQGNupr0QQ,Want upgraded version even to set the duration . Pathetic app.,1,1,5.3.1,2019-11-27 14:55:20,"Sorry that frustrating you, we will pass the feedback to the team for re-evaluations.",2019-11-28 02:00:39,newest,com.ticktick.task +Tom N.,https://lh3.googleusercontent.com/-fzD15Q5U2mU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNrrKLg-mV3V9yCwz80EFa7YFXJJg/photo.jpg,"Was good, but has recently been persistently bugging me for add'l permissions including to my Google account. Uninstalled it.",1,0,5.3.1,2019-11-24 16:23:20,,,newest,com.ticktick.task +qwerty uiopa,https://lh3.googleusercontent.com/-Dm7JkJuBzfY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNtzNHPE23KgsagzTuEtve-I29C5A/photo.jpg,Um you need to pay for the duration of the task? No thanks i will just find a new app,1,0,,2019-11-23 15:54:08,We will pass your feedback to the team for further evaluations.,2019-11-25 01:14:30,newest,com.ticktick.task +Beary Good Beans,https://lh3.googleusercontent.com/a-/AOh14GhvRtFMu1xkZAk2Y7rPsx9KdydmHqDjvobEpd_zSA,"Horrible now. Was good to start, but now that my subscription expires December 1, cannot even accomplish a simple thing like removing tags from Task names. VERY DISAPPOINTED.",1,2,5.3.1,2019-11-20 20:11:04,"Dear User, +Could you please contact us via support@ticktick.com? We'd love to hear more about this issue in order to assist you.",2019-11-24 08:17:13,newest,com.ticktick.task +Mohamed Farouk,https://lh3.googleusercontent.com/-vk-MJQ5HJDY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOYQVVaXXisG80OdFWi0iqEdObMQw/photo.jpg,I don't understand why the App has all the languages except the Arabic language?,1,0,5.3.1,2019-11-20 18:29:30,"Sorry about that, we will note it down as a feedback request and the team will consider to add it in the future asap.",2019-11-24 08:13:42,newest,com.ticktick.task +Srivats Poddar,https://lh3.googleusercontent.com/a-/AOh14Gglxi9kDJtahC7H6dSG0mw4uZlRtzRV51UDZlqotls,"No reply to my TickTick Premium cancellation mail, since 2 days. --------------- New update, another day has passed and no reply to mail has been received yet.",1,2,5.3.1,2019-11-12 20:10:15,Hey! Sorry about that! We will nudge the team to respond you asap.,2019-11-12 01:13:29,newest,com.ticktick.task +Anu Singh,https://lh3.googleusercontent.com/-dYUTjp9BA38/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM7JO7gbsXPfK006LOo4_d_oFnSOA/photo.jpg,Wastage of time,1,0,,2019-11-11 04:48:28,"Hey there! If you are facing any issues, please write to us at support@ticktick.com. We will definitely help you.",2019-11-12 01:12:00,newest,com.ticktick.task +Aman Buradkar,https://lh3.googleusercontent.com/a-/AOh14GhGHnrF_iovJhyQd5MA3od8eNHwX3QFSHVtptgI,No pomo time more than 1hr. No whitelist available. No feature for tracking task progress. Also add the feature to quit bad habits.,1,0,,2019-11-06 04:15:01,Hey Aman! We have pass your feedback as feature requests to the team for future improvements!,2019-11-05 01:04:40,newest,com.ticktick.task +Worth Less,https://lh3.googleusercontent.com/-oossjHfWnHA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN0n6PCEti9eDW2SVhS4UQV5NbViw/photo.jpg,Add the feature to quit bad habits and to track progress of tasks.,1,0,,2019-11-06 04:13:54,Noted! Thanks for your feedback!,2019-11-07 01:24:04,newest,com.ticktick.task +aryan chaudhary,https://lh3.googleusercontent.com/a-/AOh14Gh0BcsZ1LXw4wtnbL7PFPwzzBEfTUREGFT9VGNPNw,I WANT TO DELETE !! doesn't works developers . Not able to delete my account,1,0,5.3.0,2019-11-04 11:49:28,"Hey! You may follow the below instructions. + +-Sign in to TickTick on the web. +-Click the avatar in the upper-left corner of your TickTick homepage, then click ""Settings"". +-Click ""Profile"" in the left panel. +-Click the ""Delete account"" button. +-Note: Deleting your account will remove all your data from TickTick.",2019-11-05 01:07:39,newest,com.ticktick.task +TJ Walker,https://lh3.googleusercontent.com/a-/AOh14Gi80RGvzM_KmgOBiBhkEngh41p_uVYsTbxl32d_zOY,"Despite working fine with the web version of the app, this Android version of Ticktick throws a validation error on my email address when I try to sign in because (according to Carol, a ""dev"" of the Ticktick team with whom I spoke about this on their help forum) my email address features hyphens. Tf?! Since when are hyphens in address so uncommon that they're not worth supporting. Terrible, imo, UX (both in app and for customer service).",1,12,5.3.0,2019-11-04 03:55:43,So sorry for not supporting hyphens on our mobile device yet. We will pass your feedback to the product team for future enhancements!,2019-11-05 01:00:32,newest,com.ticktick.task +Jennifer A,https://lh3.googleusercontent.com/-qqzRUZRapVc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP3CPCeIdLlVjj58-0IK8LxtLohTg/photo.jpg,"Used this app ages ago, loved it, got it back again last week but now I hate this app because it no longer works with my Samsung Gear Fit2 Pro. Deleting....for good...not happy",1,0,4.8.0,2019-11-02 22:47:05,Hey! Could you please be more specific about issue? We will try to figure it out for you!,2019-11-02 01:30:21,newest,com.ticktick.task +Paul G,https://lh3.googleusercontent.com/a-/AOh14GhS-xUU-LXdJIisRBOgWOsdedxmsVZK7whygzPdjg,Be aware: if you purchase the paid version and then try to cancel within the 14 days trial. You won't be able to. They only reply once a day if you contact them and every time you contact them you have to explain that you want to cancel the service making the days passed by and after a while they just stop replying back. Using these shady tactics to make the 14 days goes by so you can't cancel after that. This company is a joke!,1,5,5.3.0,2019-10-30 13:49:40,"Hey Paul! Sorry for the delayed response! Could you please send us your email address again, we will nudge the billing team to get back to you asap. Rest assured that we will deal with the refund if it is eligible.",2019-10-31 01:29:19,newest,com.ticktick.task +Salvador Cardenal Mejia,https://lh3.googleusercontent.com/-llIo-PgnQ2E/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP_80c9sl0McLMMc8hgVYJHilwGkQ/photo.jpg,Notifications werent appearing constantly. Waste of time.,1,0,,2019-10-29 13:53:34,"What is your device and system? Version? You can go to Settings -Sounds & Notifications - Reminders Not Working and reset it - see if the issue can be resolved. +Besides, could we request some screenshots of the Sounds & Notifications settings on your app? Also the TickTick notification Settings in the system?",2019-10-30 01:29:56,newest,com.ticktick.task +Mike Tice,https://lh3.googleusercontent.com/a-/AOh14GiXnonkTkzJWXqglDG8_Fo4b6CTJXKyO2Wj2zppQg,"The new notifications are atrocious. The don't follow light or dark theme in Android 10, they don't work well with Wear OS, and they turn on my screen when I don't want them to. I'm now getting reminder pop-ups when i don't want any and the option to turn them off is gone. 10/24/2019 - I downgraded to v5.2.3 and got the Reminder Pop-ups option in Settings > Notifications back. When I update to 5.3.0 the Reminder Pop-ups option is replaced with Notifications and Notification Font options.",1,16,5.3.0,2019-10-24 18:32:42,Hey there! Could you please go to Settings - Sounds & Notifications - Reminder Pop-ups - check your set-up?,2019-10-24 02:28:40,newest,com.ticktick.task +Bill Munz,https://lh3.googleusercontent.com/a-/AOh14GgQhIBFoDPvtW9_fHBpMqlZDSmeG7mU4kjrv7hKXg,"Loved this app until my reminders no longer pop up on my screen. In other words, I'm not being reminded which is the whole point of the app. Really disappointing after enjoying it for a couple of years. Hope it gets fixed,but currently looking for a different app that works.",1,0,5.3.0,2019-10-24 00:16:55,Hey there! Could you please go to Settings > Sounds & Notifications > Reminder Pop-ups > check your set-up?,2019-10-24 02:25:33,newest,com.ticktick.task +Jeremy Fairbrass,https://lh3.googleusercontent.com/a-/AOh14GhVC59iIO1MsdnBMcy92Dc3V3Uw2VN5dZGHoV04,"I agree with other reviewers here: the new notification redesign from v5.3.0 on Android 10 is a bad idea and results in a confusing and unhelpful user experience. The new notifications violate Google's Material Design standards, which Google have provided to app developers for a good reason: to provide a consistent user experience across all apps. The new notifications look strange and behave badly compared to standard Android notifications. Please kindly revert back to the official Android notification standards that you used prior to v5.3.0! I've also sent you an email providing more details about this.",1,21,5.3.0,2019-10-22 14:44:14,Hey there! Received! All of your suggestion and feedback has been passed to the product & design team. We will make some tweaking in the future versions.,2019-10-24 02:21:24,newest,com.ticktick.task +Amy Lynch,https://lh3.googleusercontent.com/-Cyf9CAVKtYQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMJPtHyY46Uzxz9QToMmT5MpeKT2Q/photo.jpg,"I never give reviews. I believe in if you don't have anything nice to say, don't say it. My issue is not with the app itself, its the fact that I have been charge every single month for over a year! I have reached out to the developer many times and nothing. There is NO subscription for me to cancel...I am really over it with this!!!",1,2,5.3.0,2019-10-22 00:08:34,"Hey Amy! Sorry for the trouble! If you upgraded via Play Store on Android device, you can manage your subscription in Play Store by 1. Tap ""Account"" in the sidebar. 2. Tap ""Subscriptions"" then find TickTick. Besides, could you please double-check if the payment is set to auto-pay?",2019-10-22 01:06:49,newest,com.ticktick.task +Arjun Munjal,https://lh3.googleusercontent.com/a-/AOh14GjdpYkQsEUBlFL47jiSUEs6gddgYCfTIfJ5G0NP,App not downloading on my ONEPLUS7 PRO Tried to restart my phone even then...,1,0,,2019-10-21 18:16:56,"Hi, please contact us at support@ticktick.com and we will figure out why you are not able to download the app. Thanks.",2019-10-22 01:07:33,newest,com.ticktick.task +Ondrej Von Vanmarok,https://lh3.googleusercontent.com/a-/AOh14Gjh9TtAiBE2nNXNEmW1mEl0ENrgh55wigsNRm2b,"BE AWARE OF IRRECOVERABLE DELETIONS! Worked fine until I accidentally erased some IMPORTANT DATA I had been gathering for a few years. Guess what, there is no UNDO!!! No way to recover anything. Had I known that, I'd NEVER use this POS. TickTick, if you want to have cool and modern features like Google, AUTO SAVE in particular, you MUST back it up with a fricken VERSION CONTROL feature! Otherwise just go back 100 years to ""Are you sure you want to save/delete?"" confirmation dialogues.",1,5,5.2.3,2019-10-18 15:57:48,I really appreciate your suggestion. We will consider it and keep improving our app in the future version.,2019-10-20 13:58:52,newest,com.ticktick.task +Dave Johnson,https://lh3.googleusercontent.com/-cAp5jNbPgjQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNnL21sGZN7sL9K9-tj9q_uvUGvUw/photo.jpg,Couldn't import gtasks lists beyond initial install. Didn't receive any support. Doesn't show in google calandar,1,0,,2019-10-18 12:51:35,,,newest,com.ticktick.task +saifeddine bagdadi,https://lh3.googleusercontent.com/a-/AOh14GgSPgiQArjUebeFHKOShvg6vDx1YlYYlbb33P-_XA,"When I set a task for repeat for a specific day of the week, the app still doesn't repeat the task. I have to set everything manually",1,1,5.2.3,2019-10-14 17:37:22,Hey there! Could you please elaborate on the issue? What is your set up of the repetitive task? You can contact us via support@ticktick.com and we will look into it for you.,2019-10-15 01:31:04,newest,com.ticktick.task +Brandon Farley,https://lh3.googleusercontent.com/a-/AOh14GhxTYfpBUOTQodmjvA5JnwQF2sxA9fvEleenp2dRhU,"PLEASE remove the Facebook tracking code for Facebook Places and Facebook Analytics. This is a serious privacy flaw exposing users locations, app usage, and other personal information to a notorious international privacy abuser.",1,2,5.2.3,2019-10-11 15:10:42,"Hey Brandon! The Facebook login feature is supported in TickTick, which will get the Facebook SDK integrated and shown as the Facebook connection. To keep our users' data safe and secure is key important to our company. Rest assured that we will definitely not access your data without your prior permission.",2019-10-12 02:11:01,newest,com.ticktick.task +Carl Jefferson Jones - Horsley,https://lh3.googleusercontent.com/a-/AOh14GjwbquydvtsFCDXUuekwKDHIoQ7uKSib34hKguwQg,Garbage makes no sense,1,0,5.2.3,2019-10-10 09:27:58,"Hi, could you please tell us why do you dislike our app? If you have any suggestions, please send them to support@ticktick.com.",2019-10-11 01:30:17,newest,com.ticktick.task +Michaela,https://lh3.googleusercontent.com/-KFZLarS4cbM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM6g7g7J-B1gh6vE2-dWKiOonLo_g/photo.jpg,"Came back to see if I can use the app since I do like it, it's a great idea. I'm my case: I need to be able to add calendar events, reminders in one app 100% essential and afaik this isn't supported? I have a shared gcal, a personal and another work one and all of them needs to not only show up for me to organize life itself. They also need to be managed in the app I use for reminders etc for this to do what it needs for me. Not just reminders, calendar events needs add, edit. Back to any.do",1,10,5.2.3,2019-10-03 09:34:17,Hey Michaela! Could you please get it updated to the newest version? Now we support adding and editing Google Calendar events.,2019-10-04 00:17:24,newest,com.ticktick.task +Sourabh Jain,https://lh3.googleusercontent.com/-jfvgMAecs28/AAAAAAAAAAI/AAAAAAAACSQ/AAKWJJPA09egUccGOSQ6u5HyLzKGLEUieQ/photo.jpg,After latest update notifications not going away after pressing +1cup.,1,0,5.2.3,2019-10-01 11:20:22,"Hey Sourabh, what is your device and system version? Does the issue always exist? Could you please try reinstalling the app and see if it works?",2019-10-02 04:56:10,newest,com.ticktick.task +Sarah Perry,https://lh3.googleusercontent.com/a-/AOh14GjDOTSAiUyh3cQ-xMblRY7ms8fYP6kuVphZo0b9iw,Can not cancel my membership,1,1,5.2.2,2019-09-27 19:40:45,"Hey Sarah! You can follow the steps here to cancel the membership! 1. Open the Play Store app. 2. Tap ""Account"" in the sidebar. 3. Tap ""Subscriptions"" then find TickTick to cancel.",2019-09-29 00:04:44,newest,com.ticktick.task +Douglas Rose,https://lh3.googleusercontent.com/a-/AOh14GgcgY3CNFdHarTP_RyGLjr46Vb2HsXQwb7iU-jETg,"Still cannot share a single task with someone on TickTick. You can only share a whole list. This is ridiculous, especially since the developers have promised it since 2013... I need this feature",1,1,5.2.2,2019-09-26 17:35:21,Noted! The product team will do further evaluations.,2019-09-27 00:55:16,newest,com.ticktick.task +Shadow Owl,https://lh3.googleusercontent.com/a-/AOh14GjU8j-XuoszCUDNsfyMPDpU7EojIw6aQPBRjvnPrQ,Can't even add my list straight to the calendar. Wants me to rewrite everything which is annoying asf. Stupid app,1,1,5.2.2,2019-09-22 20:36:15,"Hey Bun! Sorry we currently do not support adding list straight in the calendar view, could you please be more specific about ""rewrite everything""?",2019-09-23 00:39:14,newest,com.ticktick.task +عبدالرحمن شاتو,https://lh3.googleusercontent.com/a-/AOh14Ghg-3_M29MiyFXEmOsNxVp01oEXebCqbhUozl3pZQ,Notifications are not working after upgrading to Android 10...,1,0,5.2.2,2019-09-22 08:32:13,Hey! Could you please double check if the system and app notifications are all set up well?,2019-09-23 00:37:40,newest,com.ticktick.task +Milan Panchal,https://lh3.googleusercontent.com/a-/AOh14GgbZLUmHJebD-2QG0KQhf8z2kVaMjUJxTQc1je0bg,"Why tick tick for windows is available for 15 days...we can use free version of tick tick on Android, but on windows there is time period. You should allow to use free version of tick tick on windows also without 15 days trial. Really bad experience with Tick tick..😏",1,0,,2019-09-22 07:38:22,,,newest,com.ticktick.task +Jahzeel Valentino,https://lh3.googleusercontent.com/a-/AOh14GhcSTzJ9DryBnp_ks3Vj3M1-RsN2re3EdEHCfme,Non sense,1,0,,2019-09-22 04:21:05,,,newest,com.ticktick.task +Michelle Williams,https://lh3.googleusercontent.com/a-/AOh14GiaXCLKkGMBG6t7USKfo6hUw_9trPxy0m9SZg3g9AY,Does not sync with Google Task List unless you pay 2.99/month or their annual rate. Quite disappointed since their beautiful platform does not meet minimum sync options of Google task lists. I only found out that u had to purchase a task sync option AFTER I connected to my Gmail account. Not cool at all b/c it felt like a misleading bait and switch and now solicitor that I have to block because I synced my email to attempt what it said that it was able to do. Sorry Tick Tick but 🚫⛔👎💃💨,1,1,,2019-09-17 17:51:41,"Hey Michelle! TickTick doesn't sync with Google Tasks, it syncs within our cloud. If you need to sync your tasks with Google Tasks, you can try our another app: GTasks.",2019-09-18 00:58:18,newest,com.ticktick.task +selgooGfOenoN ssenisuB,https://lh3.googleusercontent.com/-yvp2RoYIptI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMMPm1OYDkoiHyUTAauNqN4WfmBRw/photo.jpg,"The recent UI changes are not intuitive. And the snooze options still suck. Why can't we have a simple 3-digit numerical entry field, plus a period selector with minutes, hours, days, months, etc.? The Life Reminders (LR) app has much better snooze options, and time/date entry options.",1,1,5.2.0,2019-09-12 13:23:22,"Hi, sorry for the inconvenience. Product team will follow up on this.",2019-01-24 04:01:19,newest,com.ticktick.task +Mayukh Sen,https://lh3.googleusercontent.com/-1rGxyvwu7pI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPRPDZSc4V-f4sJoGqT0fUg0TIDqw/photo.jpg,Very bad app and not useful...,1,0,,2019-09-11 06:44:52,Hey there! Could you please be more specific about the issue? We will try our best to solve the issue for you.,2019-09-15 00:37:10,newest,com.ticktick.task +Darshan Madke,https://lh3.googleusercontent.com/a-/AOh14GiUcp6c5UXHyKAkaE70ndcmhkgyGKD6JGtevhSg1ks,No notification or stick to notification n alert n all features not working after a day!...in my previous review you replied to try that feature i already did that ...my android version is 9 asus zenfone max pro m1 plz fix this error,1,1,5.2.1,2019-09-10 07:02:54,Hey! Does this issue just happen recently? All the time OR just intermittently? Could you please check if the settings are all enabled?,2019-09-10 15:31:05,newest,com.ticktick.task +Raj Singh,https://lh3.googleusercontent.com/-aoHZxWEWi38/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPdUN9BzijEJD_4ZXvCNRo8PDnsSQ/photo.jpg,Bekar,1,0,,2019-09-10 06:35:58,,,newest,com.ticktick.task +Nichole Campbell,https://lh3.googleusercontent.com/a-/AOh14GjDY65FeCyylQAEaLPIHm0vf1tDtEKWYVAHyENmajI,The app is ok cancellation is very awkward. If you make it difficult to cancel a premium account it puts me off your company and your product.,1,2,5.2.1,2019-09-10 04:31:01,Thanks for the feedback! Will consider refining the cancellation process with the development team asap.,2019-09-10 05:45:15,newest,com.ticktick.task +Nicolas Balcazar,https://lh3.googleusercontent.com/a-/AOh14GjfwFt6H72m4IlwmD6jHMXwg6hRCugUW1Wq63KopMI,Another update but the stats section is still totally useless and buggy. Week starts with Sunday even i changed to monday. On a sunday the stats resets and stays empty for the whole day. To update the progress % i have to exit and enter the app several times.,1,30,5.2.1,2019-08-27 22:41:57,"Hi Nicolas, this is one of the improvement in the version5.0. Sorry, it can't be change back at present. The product team will follow up on it.",2019-03-28 05:46:25,newest,com.ticktick.task +B T,https://lh3.googleusercontent.com/a-/AOh14Gj2szQ5C4WMl6Dvz1E5yI0FuEQtDdqBtgb64HRosA,I deleted the app but it is still charging my PayPal account. No one is responding to my messages at customer service. Please stop charging my account.,1,0,,2019-08-26 19:55:42,Hey! Could you please enter PayPal and make sure the auto-pay is disabled? We will contact the billing team to check the emails asap.,2019-08-27 09:57:23,newest,com.ticktick.task +Kim McCallister,https://lh3.googleusercontent.com/-WQDFXNJDoco/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOyJgToD6aqiTV2LtFZyeBHDj8Cuw/photo.jpg,Waste of time.,1,0,5.2.1,2019-08-26 18:25:12,,,newest,com.ticktick.task +Pramit Bisoi,https://lh3.googleusercontent.com/a-/AOh14GjBiLFxIzO5ZUQbnJvbBjfXV-2s77SiDrobtg6Q3Q,"Rubbish app, doesn't sound on time😠",1,0,,2019-08-25 22:08:11,"Hey Pramit! Could you please go to Settings > Sounds & Notifications > Reminders Not Working and take a check? Besides, could you please check your system Notifications?",2019-08-27 09:54:06,newest,com.ticktick.task +K.J. Burnett,https://lh3.googleusercontent.com/a-/AOh14GjGW9tUxVU9M0Id1Im0W2o6KqEwUL8Gt2V7KYoKtZ4,I used to LOVE this app and have used it for a while but now nothing is synving between my devices...Samsung Galaxy S8 and Mac... Nothing at all! No matter how many times i reset and reinstall. I've tried for an hour.,1,0,5.2.0,2019-08-23 20:40:20,"Hey! If your tasks won't sync between devices, please reproduce the issue and send a log to us through Settings>Help Center> Send Feedback. To locate the issue, you need to add detailed issue description: What did you do(create tasks, mark done, or another editing) on which device(Android, iOS, or web) and can't sync to which platform ).",2019-08-27 09:59:58,newest,com.ticktick.task +Prasus Magar,https://lh3.googleusercontent.com/-TxT8P9B-J2k/AAAAAAAAAAI/AAAAAAAAAWQ/AAKWJJOa7trITDb5BSahFChH8e_D7ozZ7Q/photo.jpg,My Desktop task and Mobile app task doesn't sync even tho I am using same account (google) and I am on the premium. Please fix this issue as I may have to return to todoist if this issue persist longer,1,1,5.2.0,2019-08-22 11:27:01,"Hey Prasus! If your tasks won't sync between devices, please reproduce the issue and send a log to us through Settings>Help Center> Send Feedback. To make sure we know the issue, you need to add detailed issue description: What did you do(create tasks, mark a task as done) on which device and can't sync to which platform ).",2019-08-23 10:27:19,newest,com.ticktick.task +John Collington,https://lh3.googleusercontent.com/-VLS5Rxn7s7I/AAAAAAAAAAI/AAAAAAAACQE/AAKWJJPRGDmXd2JS3vUiAwi5HFgd2alqxg/photo.jpg,"As a user of GTasks (owned by TickTick), how do I FULLY synchronise my data with the cloud (preferably Google but will make do with the TickTick servers). I pay for this service but only 40% of my tasks are backed up on TickTick server/cloud. Any and all advice much appreciated. kind Regards John Collington",2,0,5.5.5.0,2020-03-22 01:02:20,,,most_relevant,com.ticktick.task +Bassim 3amer,https://lh3.googleusercontent.com/a-/AOh14Giu31O3iED5oNdJQQM1UM6ldqty304Ba-TuluRxaw,"The program is very good on my old phone(galaxy note 4), but notifications don't work on the new one(redmi note 8 pro). I hope you will fix them. Thanks",2,0,5.5.6.0,2020-04-03 22:26:36,,,most_relevant,com.ticktick.task +Roel,https://lh3.googleusercontent.com/a-/AOh14GhstV4lay8nIx_YMy7Cw81SKe0jgPAOf1hmRpaOxA,Having issues with syncing with Google calendar. I added a task on TickTick and it's been over 12 hours and it still has not sync up to my Google calendar. I've tried refreshing but nothing showed up. I've looked at the help forum and many people have the same issue for some time now. I just purchased the pro and it's not worth it if it doesn't sync.,2,31,5.5.0.2,2020-02-03 17:35:41,,,most_relevant,com.ticktick.task +Robert Diepenbrock,https://lh3.googleusercontent.com/-8gPs5-0Jt3E/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP2jvwdTGj4uY5xB7XW6KokapXDGw/photo.jpg,"Very hard to use. Cannot get a list of task to do, until do date",2,0,5.5.5.0,2020-03-16 22:36:44,Thanks for your feedback. I'll transfer this suggestion to product team for evaluation.,2020-03-20 01:54:19,most_relevant,com.ticktick.task +T Bowyer,https://lh3.googleusercontent.com/-dB-Fmca1_Wo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMWxXkoZqB4gZsHVZMMvCnBKeZpSQ/photo.jpg,"This has the beginnings of a great app, but lots more work still needs to be done.",2,0,5.5.5.0,2020-03-17 05:53:56,Can you please share which features you find difficult to use?,2020-03-20 01:53:27,most_relevant,com.ticktick.task +HappyPositiveCherrie,https://lh3.googleusercontent.com/a-/AOh14GgciFqOGsjarWgOQYvEMOqxkoQiXlOKZ2NLMwjnUQ,The app slider for the font from normal to large is not working. It is only giving two options: normal and large. The slider doesn't slide across and let you set your own font size.,2,0,5.5.1.0,2020-02-22 18:38:30,"Hi, sorry for the trouble. I'll transfer your feedback about font to product team for evaluation.",2020-02-24 11:21:21,most_relevant,com.ticktick.task +Joseph Jalandoni,https://lh3.googleusercontent.com/a-/AOh14GhDxPC1lN2PdJeE32rB1KHuKdTlVRFO4xe1ZJnF,"Tasks that I change dates does not move to the new date assigned. I'm dismayed because I am a premium member. Moreover, it doesn't have a 1 week or 7 day folder. Apart from the calendar, I also want to see a 7 day list or folder...",2,15,5.5.0.1,2020-01-20 18:26:52,"Hi, sorry for the inconvenience. We've tried to reproduct that issue on our end but failed. Could you provide us with screenshots via support@ticktick.com?",2020-01-21 02:27:30,most_relevant,com.ticktick.task +Hamed khanmirza,https://lh3.googleusercontent.com/a-/AOh14GhyL3rYNG6WbPFtdSXnMxkCYv6JRenwchNu2Ksi,"I found developers lie about free features. I just turned into day view, I asked to login and then I asked to upgrade! In description this option and several other options mentioned as free.",2,1,5.5.0.2,2020-01-25 06:55:04,,,most_relevant,com.ticktick.task +KenEmpowered,https://lh3.googleusercontent.com/a-/AOh14GiTJv_s8j8aZdVD5uxcJJLkOP1ytPy6EioY2qOukI4,Lacks option to automatically skip all missed recurrences on recurring tasks. Manual skipping of missed recurrences is not a powerful enough solution,2,0,5.5.1.0,2020-02-24 05:26:33,"Hi, you could swip in task list and select date -> skip the recurrence.",2020-02-24 11:19:47,most_relevant,com.ticktick.task +Melisa Burke,https://lh3.googleusercontent.com/-SFOYSG6GDm0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMaz2tymJuf-TQujA2DVmccOpxiMA/photo.jpg,Good but the paid version did not work as I wanted to use it more so I was disappointed,2,0,5.5.5.0,2020-03-11 21:38:19,"Hi, could you provide us more details about the issue that make you feel disappointed?",2020-03-16 01:49:52,most_relevant,com.ticktick.task +Chris Bryant,https://lh3.googleusercontent.com/-ntgXXMcph8g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM1D9oFtL_LZBXmioVNK6Inl8gHXw/photo.jpg,Works well but free version only gives you three total lists,2,0,5.5.1.0,2020-02-27 22:51:15,"Hi, free user can add 9 lists.",2020-03-02 01:33:51,most_relevant,com.ticktick.task +ahmed goutbi,https://lh3.googleusercontent.com/-HPBnoEKassc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNNWe88vTfGUCoirjCrUq-kzA4Buw/photo.jpg,Add a feature that let's me tick tasks off from the widget. Either than that I love the app,2,0,5.5.0.2,2020-01-30 15:32:49,"Hi, can you please try reinstalling the app. Please contact us at support@ticktick.com if the issue persists.",2019-12-13 09:29:07,most_relevant,com.ticktick.task +Heather Shively,https://lh3.googleusercontent.com/a-/AOh14Gg3Dc8nR4rbYb8uAiNGJKdgaecJFyvJMTC1rG6MoQ,Can't post to my google calendar or any other subscribed calendars. Disappointed because this app has promise.,2,0,5.5.0.2,2020-01-26 23:41:23,"Hi, you could subscribe Google Calendar in TickTick. Please ref: https://support.ticktick.com/hc/en-us/articles/360016490411",2020-01-28 13:23:15,most_relevant,com.ticktick.task +Zac Montuori,https://lh3.googleusercontent.com/a-/AOh14GiNmnQqbvl88lvm3ylqN91f9whuX95jfWw39cTto6M,"Has been one of the best reminder app available for a long time. This most recent update messed up notifications on Android 10. They don't follow the system dark mode at all, instead you have to manually change it in the app or deal with mismatched colors. It looks ridiculous seeing a white notification background amidst other black backgrounds in dark mode. It also looks like the black is not a true black like other apps. If this isn't fixed soon, I'll be looking for a new reminder app.",2,3,5.3.0,2019-10-23 19:02:26,Thank you for your kind feedback. We are aware of it and we will do some tweaking in the future versions asap.,2019-10-24 02:18:06,most_relevant,com.ticktick.task +Patryk K,https://lh3.googleusercontent.com/a-/AOh14GgeWXBr5txaYlZVDieEbarGk94JLoiztnskBf-tYZ4,"I really like this app, it's one of the best reminder apps there is. However the new custom notifications are horrible! It sticks out like a sore thumb. You have to manually set between white or black background, which means that they don't automatically switch with Android 10 dark mode. They're also not black, but grey which makes them look ugly next to other notifications. Title and time also don't line up with other notifications. Plus it says ""a min. ago"", which is only accurate if I look at my phone immediately. And it turns on the screen when the notification comes in, even if it's in my pocket. This is a great app, but the recent update is one of those 'if it ain't broken don't fix it' moments. I really hope you consider going back to standard Android notifications, or at least provide an option between custom or standard. I'll gladly update my review to 5 stars if that happens.",2,13,5.3.0,2019-10-21 01:44:02,"Your feedback has been passed to the product team, we will evaluate and make some improvements in the future.",2019-10-22 01:02:04,most_relevant,com.ticktick.task +Jin Wu,https://lh3.googleusercontent.com/-O_0ywCgHB0o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPnWi29dmLHSlbbFU_Woj9PLQW_rg/photo.jpg,"I downloaded and paid for this app several days ago. It has some good aspects. But now I literally HATE some other aspects of it! For example, if you set a specific time for a specific time (e.g. 1-3 pm), it DISAPEARS without giving you a chance to do anything with it. So, if you didn't finish that task, you are out of luck if you want to move it to somewhere else! How ridiculous it is! I'm really scared. I can't trust this tool. I have to switch to something else and cut my losses.",2,1,5.3.1,2019-12-03 05:28:28,"Dear User, +Could you please contact us via support@ticktick.com? We'd love to hear more about this issue in order to assist you.",2019-12-04 03:30:56,most_relevant,com.ticktick.task +Patrick Burns,https://lh3.googleusercontent.com/a-/AOh14Ghlrxqkx4-ICkWklZpTjNlNZL9QMT9Iw368rki5VLg,"The new notifications are useless to me. I always keep my phone on vibrate, and the old normal Android notification would vibrate my phone and notify me on my watch too. But now the new notification pops up silently and is very easy to miss. And I've tried changing the settings and nothing works. I really don't understand why not use Android's build-in notifications instead of this new thing or why is there no option to turn it off?",2,10,5.3.0,2019-10-20 20:31:20,Hey Patrick! Thanks for your feedback! The devs will look into it asap.,2019-10-22 00:55:28,most_relevant,com.ticktick.task +Nesse van der Meer,https://lh3.googleusercontent.com/-H4Qop321jc8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMOlqM3TTmEmSK1EgvmNSAYlkwINQ/photo.jpg,"Disappointing... I have been happily using this application for years now, but the last few updates appear to have caused more problems than they fixed. One example: when you create an event that's further away than a month, the app will AT ALL TIMES change the date and time to incorrect ones. It has done this EACH time for me over the last months, changing the dates and times for no reason; you can imagine this is a deal-breaker for a planning app...",2,46,5.3.1,2019-11-14 12:45:03,"Hey! The issue is preliminary estimated to do with the ending of DST. Could you please check if the newly added task are displayed correctly? +So sorry for interrupting the time setup! The previous task time may not be restored automatically. But we will add a fixed timezone option in future updates in case the issue happens again.",2019-11-15 01:37:16,most_relevant,com.ticktick.task +Deeti Shah,https://lh3.googleusercontent.com/a-/AOh14Gix5x8NBYEsY4Qc5l7P4Xb3fWDoOW6pJxAk6tACxg,"I love the feature where you can type the timing in the name of the task. This app has great features but one thing doesnt seem to work. ITS THE REMINDERS. I'm neverrrrr of my tasks. I never get the notifications. I tried everything that was wriiten in the ""reminders not working?"" But it still has not been fixed. Could u please look into it asap",2,5,5.4.0,2019-12-15 15:49:59,Hey there! We understand how annoying that must be. Could you please look up to this guide and see if it works for you? https://support.ticktick.com/hc/en-us/articles/360037548232-Didn-t-Get-A-Notification-,2019-12-16 02:19:18,most_relevant,com.ticktick.task +Paula Hodgins,https://lh3.googleusercontent.com/a-/AOh14GiKo5siBPpNlMvUjStLNLWvTjJZMB8a_m4isL8XaA0,"Had been very good. But now any reminder that is not completed by the end of the day gets marked as complete inatead of showing up as overdue. On repeating tasks, sometimes marking today's as done will also mark 1, 2, or even 3 days into the future as done, with no pattern behind the glitch. Has become very cumbersome to use and has resulted in many tasks getting missed.",2,4,5.4.0,2019-12-29 16:13:09,"Hey there, + +Could you please write to us via support@ticktick.com? We'd like to know more details for troubleshooting.",2019-12-30 02:06:41,most_relevant,com.ticktick.task +Paula Meldrum,https://lh3.googleusercontent.com/a-/AOh14GjAdpSNON1pZIrCd1eoI1d25iYWHEJWDc5rYVADcg,"I love ticktick and have returned after trying a few other task apps. The problem is that it's all a it buggy. Emails sent to be added as tasks dissappear if sent automatically through Gmail, and my online Web based tasks are different to those on the app. Maybe time to look again at other apps... 🤔 @ticktick who should I email? I'm also totally fed up as it no longer works with Google Assistant 😢.",2,2,5.3.0,2019-10-30 16:20:22,Hey Paula! Thanks for the feedback. Would you mind being more specific about the issues? The devs will look into it asap.,2019-10-02 23:56:10,most_relevant,com.ticktick.task +Paul Eliminyro,https://lh3.googleusercontent.com/-eyHFSPBKuiY/AAAAAAAAAAI/AAAAAAAAAe4/AAKWJJPx0bYVMky8lwllgvYr71jw9pcGCA/photo.jpg,"After update, I couldn't log in to my Google account, the button Allow wasn't working. After applying the workaround and setting an email in web-version, my app on the phone requested permissions to my contacts. I allowed it, the pop-up in the app did not disappear. After pressing 'ok' several times, it went away. However, now the app doesn't fetch the information from the cloud. I wanted to buy Pro, not anymore. You can't fix the bug with Google account for several months now. Embarrassing.",2,40,5.4.0,2019-12-13 07:58:28,"Hey Paul, + +Sorry about that! +We have been aware of the issue, the devs are still looking into it. +You may enter the web app -> Settings -> Profile -> bind emails with the account. Then log into the Android version with the bound email and password for temporary use.",2019-12-14 06:07:24,most_relevant,com.ticktick.task +Traci Stetler,https://lh3.googleusercontent.com/a-/AOh14GiLaj0mlIK86xhF1jNLbB6IV_Bd5cn4aj1taHyVPg,"I don't know why they changed it, but I hate the fact that you can't type in the time anymore. You have to scroll, like you're on Wheel of Fortune or something. That is the biggest pain in the behind ever invented!!! I don't mind it if there's a option, but this doesn't appear to give you a choice anymore. Please change it back.",2,6,5.4.1,2020-01-05 22:30:40,,,most_relevant,com.ticktick.task +Pink Panther,https://lh3.googleusercontent.com/a-/AOh14GixsfpQIaZJMwgwjy0aDhdNWqeNC-W3xlFLvGcdbg,"When u want to add check list this will help you out. Instead of writing some where, u can add them out here. But in the case u want to develop it as a habit, then u have to changes the setting and activate habits mode... Even in that u can create only 5 habits. If u want to create more than 5 habits, u will be asked to update to premium version Only 5 habits thats funny, if its atleast 10 then okay...",2,3,5.4.0,2020-01-02 01:56:54,,,most_relevant,com.ticktick.task +Didzis Ozoliņš,https://lh3.googleusercontent.com/-9vjqShKfG4g/AAAAAAAAAAI/AAAAAAAAV9U/AAKWJJO37SYFrwa4WfDFVcT463mUeKccOA/photo.jpg,C'mon. To have more than 10 lists I've to pay!? Nope... That's not gonna happen,2,0,5.5.0,2020-01-17 16:36:37,"Hi , free use can use 9 lists now. I'll pass your feedback to product team for evaluation. Sorry for the inconvenience.",2020-01-18 04:45:04,most_relevant,com.ticktick.task +Matt Varilek,https://lh3.googleusercontent.com/a-/AOh14GhF8c_wJ2HSag39FxSYJLsmXdXKOgR30v9iqx1-vlo,Best to do list app except the new notifications have gone haywire. They only pop up at bottom of screen and then disappear if I open any other app. Old standard Android notifications would remain in pull down notification drawer until I dealt with it - far superior. Please bring that back.,2,3,5.3.1,2019-10-30 02:18:26,Noted. The product team has been aware of your feedback! We will do further evaluation on the notification design asap.,2019-11-04 00:34:02,most_relevant,com.ticktick.task +rolo roam,https://lh3.googleusercontent.com/-QtQKN8GWShk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMVoP0o2kMKyHR6Uj7mmSo_qF6ZZA/photo.jpg,"You asked me to pay premium version but instant Google calendar sync still doesn't work, needs few hours for tasks to sync. This been an issue for years already and you ignore pleas from users. On the other hand the Gtasks app you have works really great.",2,0,5.3.1,2019-12-23 00:59:14,"Sorry about that! We have been aware of it, the team will work on to get Google calendar syncing snappier in the future updates.",2019-12-23 01:33:24,most_relevant,com.ticktick.task +Matthew Glendinning,https://lh3.googleusercontent.com/-dhUt-vuPJ0A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOoUs1PxaS05IEkiinUESSpNvXVoQ/photo.jpg,"Easy to use and understand. I have an issue with the reminder settings, if I set a time reminder, then it drains my battery. So I am not able to use this function. Otherwise I am happy.",2,1,5.3.1,2019-11-02 14:44:46,Thank you for your kind feedback. What is your device and system version? We will keep an eye on this issue.,2019-11-04 00:33:03,most_relevant,com.ticktick.task +rein,https://lh3.googleusercontent.com/a-/AOh14Giy92-a0fqBkCkVvbGLtfQg_IqqpmG6b9S1X5x2gA,Now when I get a reminder it wakes up the screen to display the notification. There's no way to change this. Edit: reminder pop-ups is already switch OFF.,2,1,5.3.1,2019-11-06 02:30:47,Hey! Could you please go to Settings > Sounds & Notifications > Reminder Pop-ups > No pop-ups?,2019-11-06 01:28:50,most_relevant,com.ticktick.task +Rick Attroll Towle,https://lh3.googleusercontent.com/a-/AOh14GhTbkOpQG6NCkVURPOqpGs0-5_TFQJ0IASF8l17,This is very good app but the monthly cost or yearly cost are not worth it for me. I found a free app that does tbe same things.,2,0,5.3.0,2019-10-22 22:57:54,,,most_relevant,com.ticktick.task +Choong Zin Jye,https://lh3.googleusercontent.com/a-/AOh14GhkXh5PpRlg2oLfi1A0TEI6m78rcbkWt5U2FPj11GQ,"Getting annoying, reminder keep jumping out although the task is set one month later. Start Looking for alternatives",2,0,5.4.0,2019-12-18 03:07:43,"Dear User, +Could you please contact us via support@ticktick.com? We'd love to hear more about this issue in order to assist you.",2019-12-18 02:51:27,most_relevant,com.ticktick.task +S.Senthil Kumarr,https://lh3.googleusercontent.com/-o6R7hCG8jvY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNZY2KZzBgEL4D5q-ax4HwdjayFuw/photo.jpg,Reminder is not working in Realme phone. I did all the settings in my phone and app settings but still not working.,2,1,5.4.0,2019-12-14 13:14:39,We understand how annoying that must be. Could you please look up to this guide and see if it works for you? https://support.ticktick.com/hc/en-us/articles/360037548232-Didn-t-Get-A-Notification-,2019-12-16 02:15:30,most_relevant,com.ticktick.task +Josh TW,https://lh3.googleusercontent.com/a-/AOh14GhehxaafxdztQ3G_QW5G7wD0PcxPU6vsoTUACnTUNk,"Keep getting a pop up ""Re-authorisation failed"" even though my Google account is already authorised on my account",2,0,5.3.0,2019-10-26 13:35:08,Hey Josh! What is your app version? Could you please write us to support@ticktick.com and include the exact steps you did before the issue? We will take a further look into it asap.,2019-10-27 00:14:17,most_relevant,com.ticktick.task +Matt Brooks,https://lh3.googleusercontent.com/a-/AOh14GgE0P6_XIItUzKEJZY-Tso0Pq6xnj0acXdFECJ3,"£3 a month to use most of the app... Na. Features are nice, but Disappointed I can't just buy the app.",2,1,5.3.1,2019-11-07 15:37:23,Sorry for frustrating you on the price. We will pass your feedback to the product team for further evaluations.,2019-11-08 01:18:52,most_relevant,com.ticktick.task +Thanvir Rahman,https://lh3.googleusercontent.com/a-/AOh14GhoSS9_HAPS8fpk36bYyD4L5fIxeTnpDSOxJaR1Mg,Please fix the widget. It keeps failing to display tasks and asks to restart all the time,2,1,5.3.1,2019-11-21 04:24:38,"Hi, can you please try reinstalling the app and see if the issue can be resolved?",2019-11-28 02:05:17,most_relevant,com.ticktick.task +Mike Dessenov,https://lh3.googleusercontent.com/a-/AOh14GgxIwVndXy42eZ-D9EHw_Psnaqupa_EzjbuFR4jLg,"From all possible options I've tried out, this has most awkward and unintuitive interface.",2,0,5.4.1,2020-01-04 14:54:47,,,most_relevant,com.ticktick.task +Anton Lopez,https://lh3.googleusercontent.com/a-/AOh14GgT3lpMnH7RuGNiZ0ErWXfA4YLnQLnkj89MUzKWsRw,I would've switched to TickTick but there is no option to change to a 12 hour setting from a 24 hour. 😔,2,0,5.3.0,2019-10-20 03:40:41,We appreciate your feedback! We will consider adding it in the future versions.,2019-10-20 13:54:11,most_relevant,com.ticktick.task +Alex Litvinov,https://lh3.googleusercontent.com/a-/AOh14GhM6B2zApgWvKU8xcdttHcPuLS-s26xNfioHdv0,"Perfect app, except for 12-hour sync with Google calendar",2,0,5.4.0,2019-12-18 09:43:23,,,most_relevant,com.ticktick.task +Michele Algente,https://lh3.googleusercontent.com/a-/AOh14GiTKeCAcZxtB8F22BiJlrW1PkfpRIp-v4eFL3Ti,Quick Add got fixed. Now the sync is broken.,2,0,5.4.1,2019-12-28 19:30:12,"Hey Michele! Could you please contact us via support@ticktick.com with your issues, a clip would be very helpful for us to look into the issue. Thx!",2019-11-17 04:46:07,most_relevant,com.ticktick.task +mohamed chebab,https://lh3.googleusercontent.com/-a78_gat7MZY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMvrj-WEv_JdhPtXc_z71HZj3dprw/photo.jpg,"-When editing or deleting a recurring task it should ask if you're doing it just for this task or all recurring tasks, instead of deleting and editing all tasks without asking. 2- when creating a recurring task I should be able to time it on different times for each reccuring day, instead of having to create the same reccuring task for each seperate day",2,0,,2020-01-11 23:36:43,"Hi, we've forwarded your feedback to our developers. Thank you for taking out the time to send us your suggestions!",2020-01-16 03:23:24,most_relevant,com.ticktick.task +harrell family,https://lh3.googleusercontent.com/a-/AOh14GjBKnFXI0QR9LkgQSgTCWiPeYh5MUl9TBXfHveHaQ,"I liked the app notifications when they worked, gotta pay 2.99 a month? Crazy....mbe a year? Not a month for a calendar app. Most widget features wont work unless u pay, never got to see if they even were worth 299 a month....i like the popup reminders, hopefully someome will make a free one.",2,0,,2020-01-16 01:14:15,"Hi, sorry , we do not have plan to adjust premium price. I'll transfer this suggestion to product team for evaluation.",2020-01-16 03:38:48,most_relevant,com.ticktick.task +George McIntyre,https://lh3.googleusercontent.com/-TDaru3TiyEY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO-T1d0uyHyYCSnScnfBCxrqN4MeA/photo.jpg,"Loved TickTick - great interface and the widget was perfect. Unfortunately I had to move on to Todoist. TickTick doesn't have Alexa capabilities and that's a deal breaker. For a while, IFTTT and Gmail provided a good workaround, but recent changes to Gmail rendered that functionality inoperable. TickTick, get on board with Alexa and I'll come back.",2,0,,2019-12-14 22:28:14,"Hi, the team has been working on developing the integration with Alexa now, it will go live soon.",2019-12-16 02:18:34,most_relevant,com.ticktick.task +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"App works pretty well, but if they want me to list out all events and plans in my life, their Privacy Policy needs to get stronger and be better defined. ""We collect your data; here's a vague description of what. We keep it as long as we've decided we need to; and we won't tell you how long that is. We also completely change this policy in a way that we're break the Policy you may have originally agreed to, but it's your responsibility as the user to make sure we don't break our end of the deal. Don't like this? Delete the app"" .. basically the Privacy Policy. Not exactly trust encouraging. Fix this in a privacy friendly way and I'll change my review",2,3,4.7.5,2018-11-19 08:05:43,,,most_relevant,com.ticktick.task +Eliah J. S.,https://lh3.googleusercontent.com/a-/AOh14Gi1GzCCICnMQV6p3VUrRsALbG_U0idPceUAOdA6,"Honestly the premium version is just not worth it, what's the point of having advanced calendar views and event setup and calendar import if, in every case, you can't see future recurring events? (The next event in the list of recurring appears only if you have ticked off the previous instance) In order to use a calendar efficiently for planning you ought to see what events are next, this hindrance has been made present by the users as far as 2015 (as I'm seeing online) and nothing has been done, that not only shows poor hindsight (what's a calendar without planning) but also a strikingly deaf customer service. The app is probably just as good as its free version, the pomodoro timer is ok, but the extra features are just not worth the expense for the premium version.",2,2,4.7.0,2018-11-03 23:34:59,Sorry for the inconvenience. Improvement on recurring calendar events is coming soon.,2018-11-04 15:37:41,most_relevant,com.ticktick.task +Marc Tokar,https://lh3.googleusercontent.com/a-/AOh14GgxeT4dY1AZ4OlZP_eh0SU8q6lrICzEHzeEOXu7,"This WAS a great list app. Then something happened and I stopped getting notifications. I checked the app and it said I needed to allow permissions due to Android 6.0. I've been on Android 7.0+ since I started using the app, but regardless, I checked and permissions were set and allowed the app to provide notifications. Still didnt work. I've tried resetting the phone, resetting permissions... nothing works. Now I'll try uninstalling it and using something else.",2,2,4.6.5,2018-09-15 04:39:07,"Sorry for the inconvenience. Please contact us at support@ticktick.com, developers will look into the issue asap. Thanks.",2018-09-17 09:41:45,most_relevant,com.ticktick.task +Utku Bilen Demir,https://lh3.googleusercontent.com/a-/AOh14GhloVk9IazvX-w4BSwmR8O-J_AkTjCfD5ji5cH4,"The app is good but the differences between the premium and free version aren't mentioned at the beginning. It is also not possible to start using the app without the ""free trial period"" as far as I have seen. After the forced free trial period I now realize that the sync function which enables you to use pc and and. app simultaneously is indeed a premium function. This seems awful lot like the way Evernote took, I want to buy my apps because I appreciate the work, not because I'm forced into.",2,4,5.0.1,2019-04-28 10:22:29,,,most_relevant,com.ticktick.task +Maureen Maloney,https://lh3.googleusercontent.com/a-/AOh14GjLos-1ylmmP0Zi9EqCat0LI_xqDsn1g9A6CVtUrA,"Another crappy todo list app I have to delete. I dont understand, all I want is a simple to do list!!! I keep trying to add an item, and it automatically goes into my ""inbox""- whatever that means. I went to the ""help center"" to find a solution, but a long list of topics that isnt searchable is completely useless!!!",2,1,4.6.5,2018-09-25 03:01:34,You could find something useful info here. https://guide.ticktick.com/,2018-09-25 11:40:02,most_relevant,com.ticktick.task +Bryson Dohrman,https://lh3.googleusercontent.com/a-/AOh14Ggpka4dSQncrMRnSwCMD6DekNdu5kMqq30PWQ4nQ_w,I think this app is the best option for a to do list except that the sync is terrible. I just paid for premium and the app will not sync. During the trial the sync between android app and PC app was also very bad. If they could get the connection/sync issues fixed it would be a great app. If I can't access the premium features I paid for in the next few hours I'm going to be requesting a refund...,2,30,5.2.0,2019-08-24 00:27:32,"Hey Bryson! Could you please go to the premium page in TickTick, scroll down to the bottom and tap the ""restore"" button, check if it is activated?",2019-08-27 10:05:27,most_relevant,com.ticktick.task +Laura Brauer,https://lh3.googleusercontent.com/a-/AOh14Gg5nXocjrMtt4vp3m_CVp1nMnIe43tkKan_s7f4uQ,"I just installed this app on my droid today. When setting up my account I signed in using my Gmail account. However, I am unable to do that on my laptop. I get an error message when I input the Gmail address and password. I was looking for a replacement for Google's Inbox. I would like something that is accessible on both my phone and my laptop. I guess I need to keep looking.",2,3,4.8.6,2019-01-31 23:13:45,"Hi, what error message do you get? If the password is incorrect or forgotten, you can reset the password. Thank you.",2019-02-01 08:16:29,most_relevant,com.ticktick.task +Dan Schneider,https://lh3.googleusercontent.com/a-/AOh14GgjfdfEYhEMH4V2DBdMpmM0Md-ySnYT6rrxahX9,"The interface is ok. But TickTick does *not* sync with Google Tasks. (You can import Google Tasks, but no tasks added in TickTick app will appear on Google calendar.) If a task list doesn't integrate with Google Tasks, if I am limited to using the standalone app and *cannot* see tasks on other devices / computers, then the task mgmt. app isn't really good for anything.",2,0,,2019-09-03 05:40:06,"Sorry, TickTick doesn't sync with Google Tasks, it syncs within our cloud. If you need to sync your tasks with Google Tasks, you can try another app: GTasks.",2019-09-15 00:44:25,most_relevant,com.ticktick.task +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"When you use the pomo timer, it automatically starts counting down when you hit what task you want yo be working on. There is no longer an icon where you can choose your white noise before starting the pomo and no way to pause the pomo once it starts so you can select your white noise. I would like to be able to select the task I'm working on, select what white noise I want, and then start the pomo; not everything automatically start.",2,2,5.0.0,2019-03-22 13:16:16,Sorry for the inconvenience. Product team will follow up on your advise. Thank you.,2019-03-24 11:12:50,most_relevant,com.ticktick.task +Belkis Echarte,https://lh3.googleusercontent.com/a-/AOh14GjfUt2hDKk6eCIjiE8zGsaMCWKpH00RJKL1Y7qwwQ,"Not too good for Android! I have the App in my two different type of phones and subscribed for the premium one month in my Android and found out that that version doesn't have all the features described as for example impossible to find or use the sub task feature, create or editing folders, etc. etc. Very disappointed about that, because the App concept seems to me very good. :(",2,34,4.8.6,2019-02-08 07:22:32,"Sorry for the inconvenience. Please tap the ""three horizontal lines"" image above the keyboard to switch to the checklist mode. Thank you.",2019-02-10 11:16:30,most_relevant,com.ticktick.task +Leah Schneier,https://lh3.googleusercontent.com/-AqkJZQae_Lc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN2etV6JWPmKTUSlhhH9zTRcC_d3w/photo.jpg,"In general I really like this app but every time it does an update or my phone restarts, I have to go to redo the battery optimization settings because otherwise I don't receive notifications. This is just ridiculous that it doesn't save my settings! 3 months later and still have the same problem...",2,63,5.2.2,2019-09-10 20:04:49,Hey there! Sorry for the issue. Have noted it down and the devs will look into it asap.,2019-06-27 03:22:23,most_relevant,com.ticktick.task +Bryan Ducusin,https://lh3.googleusercontent.com/a-/AOh14Gg3crqTiO_2aKDRHYgxSgJ3oiv_cChzvuW4S27M7A,"could not get any realtime notification at all. enabled all notifications, android6.0 or higher option, disabled battery optimization and other security settings. The only time i get the notification is when i manually open the app itself, but then it has already been past the time set.",2,0,,2019-02-20 23:35:20,"Please lock TickTick in the system background. (Click the system ""Square"" virtual key when running TickTick, then click the ""Lock"" icon on ""TickTick"". Or you need to swipe down TickTick to lock on some devices).If problem still exists, please email to support@ticktick.com, developers will assist you to resolve the problem. Thank you.",2019-02-21 10:32:00,most_relevant,com.ticktick.task +Brianna Borden,https://lh3.googleusercontent.com/a-/AOh14Gj8KdUBQGbpMrQ3DUTP8D5eQUaEnW-JV1VeJSZRFQ,"Glitches galore! Currently am unable to see certain options at all, as they are blacked out. Tried deleting & re-installing, resetting phone, & changing the theme to different colors. It's a shame because this is my favorite to-do app & was just thinking about biting the bullet & upgrading. :( If fixed, will definitely reconsider.",2,7,4.7.5,2018-12-10 01:58:52,"Hi, +Did you change the font size or theme on the phone system settings?",2018-12-12 01:54:02,most_relevant,com.ticktick.task +Paresh a Varia,https://lh3.googleusercontent.com/a-/AOh14GjFLRVOXBaEAGVV0kkgDd52xh-J5OFfv7KrJqU4IA,not backup in device offline ??,2,0,5.3.1,2019-12-05 18:48:02,,,most_relevant,com.ticktick.task +Ali Ronan,https://lh3.googleusercontent.com/a-/AOh14GjAeeJZSlP2ATC0WNH8imTnpGFEP4tHiKgHNOq-wcI,Serviceable but not awesome by any means. I've spent enough time trying to set up tasks in here that I feel like I can't bail even though I don't love it. It's really tricky to figure out how to make tasks show up like I want and have only been able to really get things set up right by using the website in addition to the app. Nothing is intuitive or easy to figure out in this app.,2,1,5.0.1,2019-05-02 02:42:53,"Hi Ail, sorry for the inconvenience. Here is the user guide. https://support.ticktick.com/hc/en-us/sections/360002241552-Android. Product team will follow up your confusion. If you have any other questions, please let us know. Thank you.",2019-05-04 10:34:32,most_relevant,com.ticktick.task +Vin R,https://lh3.googleusercontent.com/a-/AOh14Gg7wicTgosOauj7XuiAJ6tCSq-n_dysUmYr0jzdDg,Not good. No option to edit tasks (or correct spellings) once entered. Setting time and date not intuitive. Too many steps to make a single entry. Many other drawbacks. Not recommended.,2,1,4.6.5,2018-10-03 18:20:05,"Hi, which keyboard do you use? Where do you enter the content? +And hope that these will help. Https://guide.ticktick.com/ticktick-android-app/task/how-to-swipe-tasks-for-quick-actions html https://guide.ticktick.com/smart-date-parsing/smart -date-parsing.html",2018-10-08 06:52:49,most_relevant,com.ticktick.task +sharad regoti,https://lh3.googleusercontent.com/a-/AOh14GjWfTmGh90nsHu-mtbk3U7qjWehRMJ5MH5BikWL,When i share my task on whatsapp Even though i selected share title and content It only shares title Version : 5.2.2 & If i share my task in the form of image the task with long name The end of the name gets replaced with ... Instead of showing the remaining heading on new line,2,1,5.2.2,2019-09-24 14:44:00,Hey! What's your app version? Does this issue happen for all the task sharing?,2019-09-24 01:02:14,most_relevant,com.ticktick.task +Jj A,https://lh3.googleusercontent.com/-YcuPwQ53rMs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMGi7QVyVjm4jrEu-g9NY0EJEk5Aw/photo.jpg,"Useful. But constantly calls out to access crashlytics, Facebook, etc. Too much spyware. I'm searching to replace it. App also locks you in so you cannot export to another app.",2,0,5.2.0,2019-08-06 22:35:58,Thanks for the feedback. Please do not worry! We definitely won't privately access to users' data and please feel assured all your data is encrypted safely.,2019-08-10 04:36:36,most_relevant,com.ticktick.task +Justin P,https://lh3.googleusercontent.com/a-/AOh14GjTF9hmDFeS7fCku9W9fwSOlCPhnliO1aSiOPtm,App seems ok. But they want you to pay a monthly fee just to use a basic calendar. It let's you view the current week. Anything else and you have to pay. So many free ones out there to choose from. Uninstalling.,2,1,5.1.0,2019-06-05 14:25:57,,,most_relevant,com.ticktick.task +Cal Alaera,https://lh3.googleusercontent.com/a-/AOh14Ghj8XO7sFPnGRQgWtqbUaZZ5ujKmJS5k-WJ2uFiMA,"The basic app is fine. Not great, but fine. However the premium is far too pricey. £27 a year for the ability to set a duration on tasks? That's crazy.",2,0,,2019-02-05 19:08:20,,,most_relevant,com.ticktick.task +Ryan Furrer,https://lh3.googleusercontent.com/a-/AOh14Gg7qaJ0GegC9Kts_XINSomq6kj8uQEbJKr3iww7qco,I love this app but recently it has been freezing every time i add a new task. It's updated and i even reinstalled it yet it is still happening.,2,0,5.0.1,2019-04-23 23:14:04,"Hi Ryan, sorry for the troubles. Could you please go to Settings, Send Feedback and email us (the email will auto collect the error log from you), developers will assist you to resolve the problem. Thank you.",2019-04-27 14:58:56,most_relevant,com.ticktick.task +Adam Cain,https://lh3.googleusercontent.com/a-/AOh14GhB1jcd76MMJ9vnL1QUAJSOp_rlG-175TTQ8e6jvw,"great app for your phone but if you need smartwatch functionality, look to Any.Do rather than this app. In dialogues with the devs, theyve stated they have no intentions of integrating even simple WearOS apps (like add task from watch). Uninstalled",2,0,,2019-08-04 16:40:18,We will consider adding integration with other apps. Thanks for your feedback!,2019-08-05 01:56:32,most_relevant,com.ticktick.task +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,The features that were used to convince me to install all require premium access. Will not buy something with so little real use testing.,2,0,,2018-10-11 02:18:19,,,most_relevant,com.ticktick.task +Simplatory,https://lh3.googleusercontent.com/a-/AOh14GgHmZR37vJL1LUm2kGQUS795Oj7t13jicHqACJ9BLc,The check boxes could be bigger and other such things could be made clearer.. Also an option to see all the items in individual folder from the 4*3 weekly widget.,2,0,5.2.0,2019-08-25 12:52:46,Really appreciate your suggestion. We will consider it and improve our app in the future version.,2019-08-27 10:09:18,most_relevant,com.ticktick.task +Dionna Richardson,https://lh3.googleusercontent.com/a-/AOh14Gg18vnfEjOPFqeJn17rhiggPnD6_53_IO6iUu6Vjw,"It was good for a few days, but now it's not loading on my browser at all (Gateway timeout), and changes I made on my iPad are not syncing to my phone. not useful if nothing works.",2,6,5.1.0,2019-06-20 22:57:20,"Hey Dionna! Sorry for the trouble. The issue was caused by the slow connection with our database which has been fixed now. Would you plz try it again? +We are so sorry for the inconvenience.",2019-06-27 03:17:57,most_relevant,com.ticktick.task +Joshua Taylor,https://lh3.googleusercontent.com/a-/AOh14GicblrIxktOLlgpbYn5drafkq0ALzK6mpCefRQl,The app is a little confusing in the way it works and it is a little ridiculous to pay $3 a month just to see a calendar.,2,0,5.1.0,2019-06-05 16:53:16,,,most_relevant,com.ticktick.task +Nona Shah,https://lh3.googleusercontent.com/-GiXIR1S6THg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNYPKthy391-riqf4MRmVNYnbgENQ/photo.jpg,Task management is terrible. it will kill the apps running to draw over the screen. frequently my camera shuts off because tick tick notification.,2,0,,2019-01-25 02:33:39,Sorry for the inconvenience. You could set “Reminder Pop-ups” as “Show pop-ups(except full screen)” under Settings - Sounds &Notification in the TickTick app. Please try. ^_^. Thank you.,2019-02-26 05:48:59,most_relevant,com.ticktick.task +Paolo Alcantara,https://lh3.googleusercontent.com/a-/AOh14GhVIcEyHBx2GbJWw2DEfz0LiM7rp0zxFgvX3yr9BA,"There's a bug with the planning view, you can't see the title of the event. Other than that the app runs okay.",2,0,3.6.0.1,2019-07-20 11:43:31,Thank you for your kind feedback. Could you please be more specific about the issue and send us some screenshots via support@ticktick.com?,2019-07-30 01:47:29,most_relevant,com.ticktick.task +Oliver,https://lh3.googleusercontent.com/a-/AOh14GhERwT8G7m_Jk5LDX6bCa2HWxzeXU1lSi2Zsoi2kjQ,fix the lag on moving events on the day display and I'll subscribe again. ux is clunky get a second opinion,2,1,5.1.0,2019-06-11 19:25:28,"Hi Oliver, sorry for the trouble, we need more detailed info to help you resolve the issue. In the app, please go to Settings - Feedback & Suggestion - Send Feedback, then send to us (the email will auto collect the error log from you). We will look into the problem asap. Thank you.",2019-06-12 09:06:55,most_relevant,com.ticktick.task +Ben Shea,https://lh3.googleusercontent.com/a-/AOh14GiaWG_3RkiZIKwUgKMwbO4-4V_USbLznZ8MK9YsoA,"Non-functional with Google account. Was great, but can't use right now.",2,0,5.0.1,2019-04-30 17:15:39,"Hi Ben, could you please provide more detailed info on the issue you met? Developers will assist you to resolve the problem. Thank you.",2019-05-04 10:42:38,most_relevant,com.ticktick.task +Neil Riddoch,https://lh3.googleusercontent.com/-UFSE7u6xJsw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNgBJmfEwf2i3t9W74x7SBgnqMS8A/photo.jpg,Great app but isnt optimized for google Pixel 3xl. i cant re-size the widget to match the size of the screen.,2,0,,2019-07-09 22:00:10,We will forward your feedback to the team and will consider making some improvements.,2019-07-30 01:46:00,most_relevant,com.ticktick.task +harshitha R,https://lh3.googleusercontent.com/-oFVItT6EMSo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNOCWPEdcQwkCt8qtW29-uldFINXA/photo.jpg,"the application is very nive but cant take the complete use of it because of the premium option , and the amount also is high",2,0,5.0.1,2019-05-12 02:41:04,,,most_relevant,com.ticktick.task +Molly Clabots,https://lh3.googleusercontent.com/a-/AOh14GhY_spHLkgL27FWEcIE888YhlD_R5PIT857kE_Weg,"i love this app but it reads my texts. i left one in draft and it suggested it as a Todo item. i couldn't find any way to get it to keep is ""eyes"" to itself. not about it.",2,0,5.0.2,2019-05-26 05:42:52,"Hi Molly, please make sure if you enable ""Clipboard"" switch under ""Settings -- Task Quick Add -- Clipboard"" in the app or not? Thank you.",2019-05-26 12:36:42,most_relevant,com.ticktick.task +John Moon,https://lh3.googleusercontent.com/a-/AOh14Ggo6PPO62t4i6kV0D4E4dMBsTtZPjyOVLMXOb6RXLc,Loved this app until it stopped syncing... My android app and web app have been out of sync for over 2 weeks,2,0,5.2.2,2019-09-09 19:02:51,Hey John! Could you please be more specific about the issue? You can contact us via support@ticktick.com.,2019-09-15 00:42:15,most_relevant,com.ticktick.task +Harshivam singh,https://lh3.googleusercontent.com/a-/AOh14Ggwv-eVvhl3iE2_h2NfvRLvXVKdl-hnLbyuI2bB,I'm facing a problem that is reminders are not working properly (device Lenovo k3 note Android 6.0,2,0,,2019-04-01 08:48:22,"Hi Harsh, please set up all the settings refer to the steps under “Settings - Sounds & Notifications - Reminder Not Working”, and try again. If problem still exists, please go to Settings, Send Feedback and email us (the email will auto collect the error log from you), developers will assist you to resolve the problem. Thank you.",2019-04-01 10:57:39,most_relevant,com.ticktick.task +Ryland Hall,https://lh3.googleusercontent.com/a-/AOh14GhI1_i4EJwFeSh2R3Hnmp0BjsEC-3IrD9HCMlC1HQ,"I just spent 30 minutes putting tasks into the app, then went to sync the app with my google account and they all got erased.",2,0,4.8.5,2019-01-27 00:40:11,Sorry for the troubles. Do you mean all the tasks disappear? Or all the google calendar events disappear?,2019-01-27 15:16:50,most_relevant,com.ticktick.task +Suraj K,https://lh3.googleusercontent.com/a-/AOh14GhxM9yfG-VESdkrCF6lCD4D9JLGKKJD2yP4d78opg,All the main options are charged. Then why list the app for free. Might as well list it as charged app,2,0,,2019-08-23 03:23:32,Sorry to frustrate you by our current pricing of the app. The team will have an evaluation together and see if it could be adjusted in the future.,2019-09-15 00:41:06,most_relevant,com.ticktick.task +Al Phabet,https://lh3.googleusercontent.com/-tl8hvX9BT58/AAAAAAAAAAI/AAAAAAAAAQs/AAKWJJMWJ5lSHat6BpwWfzepEwYh1-W5QQ/photo.jpg,Night mode doesnt show up under theme,2,0,5.4.1,2019-12-30 15:30:00,,,most_relevant,com.ticktick.task +Brandon Akey,https://lh3.googleusercontent.com/a-/AOh14Gi2OMp7nGHTIUS76ZnfTKY5b5spSGLR8LPJrIxtQCs,"Says free, its not free. Its a demo for a paid app. Be warned.",2,0,,2018-12-31 19:03:53,,,most_relevant,com.ticktick.task +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,anything with a dash creates an alert which is troublesome to remove. eg. practice weeks 1-3 turns into a due date of January 3rd,2,0,4.8.5,2019-01-23 03:37:10,"This is smart recognition function. You can disable it under ""Settings -- Task Quick Add -- Smart Recognition"" in the app. Thank you.",2019-01-25 01:38:31,most_relevant,com.ticktick.task +YDINO,https://lh3.googleusercontent.com/a-/AOh14GhdOPB4tSffexcqfKblsG0C3L00Ga-3MHcW7iZSntE,i wish there was a one time payment option and a dark mode i can't add another subscription to the msny i already have,2,0,,2019-06-04 15:29:49,,,most_relevant,com.ticktick.task +Lydia Ng,https://lh3.googleusercontent.com/-_8C0dJKwr9M/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOPfuhAnkWCExd9bFf0VgRG_FlHsg/photo.jpg,The features are good but unfair to pay on yearly basis,2,0,,2019-02-14 17:19:57,,,most_relevant,com.ticktick.task +Entertainment source,https://lh3.googleusercontent.com/a-/AOh14GgzMhxe8l9c7N2LI8QXYGPFrQYIaaqJV_kGe2H58A,"such a scam.....!!! first it asks you to sign up for making duration related reminder ,once you sign up it says that you got pay money for that features 😑🤦‍♂️... deleted this app at the next moment of seeing those scam stuffs",2,0,,2019-09-03 11:20:12,,,most_relevant,com.ticktick.task +Manash Pratim,https://lh3.googleusercontent.com/-4ezjk9S7F4g/AAAAAAAAAAI/AAAAAAAAwfc/AAKWJJOqieBE1Iz6U34ukhdlSFTvepgvKA/photo.jpg,Premium version only,2,0,5.5.6.0,2020-04-02 18:44:03,,,most_relevant,com.ticktick.task +David Klatt,https://lh3.googleusercontent.com/-GCtZdX7HLbY/AAAAAAAAAAI/AAAAAAAAF4U/AAKWJJPmTHlzv4INhDAomhTS8bC032EfZg/photo.jpg,Missing everything good about gtasks and adds everything you hate about every other task list app.,2,1,,2020-02-11 03:24:04,"Hi, sorry for the trouble. Could you provide us with more details about the ""good things"" in GTasks?",2020-02-12 08:14:24,most_relevant,com.ticktick.task +Michael Emory Cerquoni,https://lh3.googleusercontent.com/a-/AOh14GgOWj6uRYvD6m5SihGfC-A0eo0bfjAquHE74FhZ848,"windows 10 version made my computer freak out, uninstalling for now",2,0,,2019-03-25 10:14:54,Really sorry for the inconvenience. Could you please email to support@ticktick.com directly and send some screenshots to better explain your issue so that we can further assist you? Thank you.,2019-03-27 01:45:42,most_relevant,com.ticktick.task +Zamir Chandler,https://lh3.googleusercontent.com/-2BCNFPtXz_M/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNpc0xzpIBzmjLUmVM1TTmSsAlIXQ/photo.jpg,I purchased the app. All I need now is to add color to the calendar entries. mmh I'll think of some stuff later.,2,1,,2019-07-05 03:00:37,,,most_relevant,com.ticktick.task +GS W,https://lh3.googleusercontent.com/a-/AOh14Gh_scDV9v6NFOtO8tC-OgI9fACDF5uP7wDbau6D,Easy to use. BUT DO NOT always follow MD2!!! It's DAMAGING our brains!,2,1,5.0.0,2019-04-04 00:56:27,"Hi GS, Sorry to hear that. Do you mean martial Design? May we ask if there's any particular reason that you dislike the current UI design? Please let us know, so we could share with the team and see how to improve in the future. Thank you.",2019-04-04 10:35:49,most_relevant,com.ticktick.task +Kristen Andrews,https://lh3.googleusercontent.com/-LVCdzi_BfRc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOe-JY8wg-EzvbRW1cpr7G5vD6QVg/photo.jpg,Didnt like that to really use it as a planner I had to upgrade,2,0,,2020-02-04 19:12:42,,,most_relevant,com.ticktick.task +M Murphy,https://lh3.googleusercontent.com/a-/AOh14GhSf-qXMU7UPczCujRCP9FyuwQBIYF9ZJG8xhTpnM4,Requires access to contacts to work,2,0,4.8.6,2019-03-10 16:44:35,"Hi, you can choose not to grant TickTick contact permissions and continue to share the list. Thank you.",2019-03-11 10:38:52,most_relevant,com.ticktick.task +Phil Roggenbuck,https://lh3.googleusercontent.com/a-/AOh14GgzXT6AGeAWUtzeSr3Mw40xPGONiqNn1ANDiD-Jl50,"Good idea, but I don't like that it wants internet access.",2,0,4.8.6,2019-02-13 07:18:03,"Hi, if you don't need to save your data to the cloud, you can use local mode without any registration.Thank you.",2019-02-14 01:55:42,most_relevant,com.ticktick.task +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,User Interface not friendly,2,0,4.6.5,2018-10-06 04:19:16,"Hi, Please provide us more detailed info. Product team will follow up on this.",2018-10-08 03:29:59,most_relevant,com.ticktick.task +Venkat Ramanan,https://lh3.googleusercontent.com/a-/AOh14Gib4rF_yk8nhAlv_sZHqM7dBGU327T37NhFCVYpfw,Reminders doesn't work.,2,0,5.5.1.0,2020-02-22 15:58:38,"Hi, could you check settings - reminder - reminder not working?",2020-02-24 11:22:27,most_relevant,com.ticktick.task +Muscle Monster,https://lh3.googleusercontent.com/a-/AOh14Ggm-wU_xdxFLgKdDNX6z3CWMA794Fxo_6ty_yC_fg,it's just a simple to do list ... why did you locked some tools ..,2,0,5.0.0,2019-04-03 19:48:01,,,most_relevant,com.ticktick.task +Noah Boguslavsky,https://lh3.googleusercontent.com/a-/AOh14GgAyEXjoReTOSvBSEwcaeFQrgQl5v4e7pS1hjaW,"Gawd, what's up with the ugly orange and why can't I change it to something more palatable???!!!",2,8,5.0.0,2019-03-29 15:42:20,"Hi Noah, Product team will keep on following this.Thanks for your understanding.",2019-04-01 11:24:51,most_relevant,com.ticktick.task +Nur Izzati Khairuddin,https://lh3.googleusercontent.com/a-/AOh14Gj8LemVjVIEmHsY_H9SU6df9gNZgWR2OZCLzKrlBA,Don't get any notification at all,2,0,5.1.1,2019-07-01 16:25:06,"Hey there! Could you plz go to ""Settings"" > ""Sounds & Notifications"" > Reminders Not Working and check if some notification settings are disabled?",2019-07-10 02:46:42,most_relevant,com.ticktick.task +Mark D,https://lh3.googleusercontent.com/-JaAmyf2KhOM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM1sozA2F68cHaHqP5DnZx4xS42Ng/photo.jpg,Eh....not great for a pay app,2,0,5.4.0,2019-12-21 14:26:39,,,most_relevant,com.ticktick.task +thomas le,https://lh3.googleusercontent.com/-1paGcjD7ibo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMqqzC4B47ym1igPIO12C372J0_FA/photo.jpg,premium is very expensive,2,0,4.8.6,2019-02-15 05:16:40,,,most_relevant,com.ticktick.task +Pris Viado,https://lh3.googleusercontent.com/a-/AOh14Gjr_9rUWlt60hRYbKrxMmMp4VlU_B-kDqZ8jakr,It was ok before. Now it changes the stuff that I enter. Please fix.,2,0,5.5.6.0,2020-04-06 00:14:51,,,newest,com.ticktick.task +Bassim 3amer,https://lh3.googleusercontent.com/a-/AOh14Giu31O3iED5oNdJQQM1UM6ldqty304Ba-TuluRxaw,"The program is very good on my old phone(galaxy note 4), but notifications don't work on the new one(redmi note 8 pro). I hope you will fix them. Thanks",2,0,5.5.6.0,2020-04-03 22:26:36,,,newest,com.ticktick.task +Manash Pratim,https://lh3.googleusercontent.com/-4ezjk9S7F4g/AAAAAAAAAAI/AAAAAAAAwfc/AAKWJJOqieBE1Iz6U34ukhdlSFTvepgvKA/photo.jpg,Premium version only,2,0,5.5.6.0,2020-04-02 18:44:03,,,newest,com.ticktick.task +Avinash Kumar,https://lh3.googleusercontent.com/a-/AOh14Ghwr0fxURO1f7QfK0lXrPL16HxC0ac21jZLax05Eg,Good,2,0,,2020-03-26 18:46:33,,,newest,com.ticktick.task +Mohamadreza Sharifkhatibi,https://lh3.googleusercontent.com/-nkdKC-MxQT4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPPtqDYvHRzZJWruakKAo2ueYiSFg/photo.jpg,برنامه ی خیلی خوبیه. از همشون بهتره.ولی جا داره ک بهترم بشه,2,0,5.5.1.0,2020-03-24 09:35:54,,,newest,com.ticktick.task +John Collington,https://lh3.googleusercontent.com/-VLS5Rxn7s7I/AAAAAAAAAAI/AAAAAAAACQE/AAKWJJPRGDmXd2JS3vUiAwi5HFgd2alqxg/photo.jpg,"As a user of GTasks (owned by TickTick), how do I FULLY synchronise my data with the cloud (preferably Google but will make do with the TickTick servers). I pay for this service but only 40% of my tasks are backed up on TickTick server/cloud. Any and all advice much appreciated. kind Regards John Collington",2,0,5.5.5.0,2020-03-22 01:02:20,,,newest,com.ticktick.task +T Bowyer,https://lh3.googleusercontent.com/-dB-Fmca1_Wo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMWxXkoZqB4gZsHVZMMvCnBKeZpSQ/photo.jpg,"This has the beginnings of a great app, but lots more work still needs to be done.",2,0,5.5.5.0,2020-03-17 05:53:56,Can you please share which features you find difficult to use?,2020-03-20 01:53:27,newest,com.ticktick.task +Robert Diepenbrock,https://lh3.googleusercontent.com/-8gPs5-0Jt3E/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP2jvwdTGj4uY5xB7XW6KokapXDGw/photo.jpg,"Very hard to use. Cannot get a list of task to do, until do date",2,0,5.5.5.0,2020-03-16 22:36:44,Thanks for your feedback. I'll transfer this suggestion to product team for evaluation.,2020-03-20 01:54:19,newest,com.ticktick.task +Melisa Burke,https://lh3.googleusercontent.com/-SFOYSG6GDm0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMaz2tymJuf-TQujA2DVmccOpxiMA/photo.jpg,Good but the paid version did not work as I wanted to use it more so I was disappointed,2,0,5.5.5.0,2020-03-11 21:38:19,"Hi, could you provide us more details about the issue that make you feel disappointed?",2020-03-16 01:49:52,newest,com.ticktick.task +Chris Kennedy,https://lh3.googleusercontent.com/a-/AOh14Ghq47tzLxXlZzt2ZVL2USrXwGPJsVG3s3FcuM7dEhU,"Selecting text (to copy, cut, or delete) also selects many previous lines of text. This is the only app that does this. It makes selecting text harder than it is everywhere else. /// Buy it? If you use it a lot, you either have to decrease your number of lists or pay for it. /// They do have phenomenal customer service and continued development of the app.",2,19,5.5.1.0,2020-02-28 18:47:05,"Hi, you could turn on ""Do Not Disturb"" under Settings - General - Import - Subscribe Calendar in the app.",2018-11-21 02:42:13,newest,com.ticktick.task +Chris Bryant,https://lh3.googleusercontent.com/-ntgXXMcph8g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM1D9oFtL_LZBXmioVNK6Inl8gHXw/photo.jpg,Works well but free version only gives you three total lists,2,0,5.5.1.0,2020-02-27 22:51:15,"Hi, free user can add 9 lists.",2020-03-02 01:33:51,newest,com.ticktick.task +KenEmpowered,https://lh3.googleusercontent.com/a-/AOh14GiTJv_s8j8aZdVD5uxcJJLkOP1ytPy6EioY2qOukI4,Lacks option to automatically skip all missed recurrences on recurring tasks. Manual skipping of missed recurrences is not a powerful enough solution,2,0,5.5.1.0,2020-02-24 05:26:33,"Hi, you could swip in task list and select date -> skip the recurrence.",2020-02-24 11:19:47,newest,com.ticktick.task +HappyPositiveCherrie,https://lh3.googleusercontent.com/a-/AOh14GgciFqOGsjarWgOQYvEMOqxkoQiXlOKZ2NLMwjnUQ,The app slider for the font from normal to large is not working. It is only giving two options: normal and large. The slider doesn't slide across and let you set your own font size.,2,0,5.5.1.0,2020-02-22 18:38:30,"Hi, sorry for the trouble. I'll transfer your feedback about font to product team for evaluation.",2020-02-24 11:21:21,newest,com.ticktick.task +Venkat Ramanan,https://lh3.googleusercontent.com/a-/AOh14Gib4rF_yk8nhAlv_sZHqM7dBGU327T37NhFCVYpfw,Reminders doesn't work.,2,0,5.5.1.0,2020-02-22 15:58:38,"Hi, could you check settings - reminder - reminder not working?",2020-02-24 11:22:27,newest,com.ticktick.task +David Klatt,https://lh3.googleusercontent.com/-GCtZdX7HLbY/AAAAAAAAAAI/AAAAAAAAF4U/AAKWJJPmTHlzv4INhDAomhTS8bC032EfZg/photo.jpg,Missing everything good about gtasks and adds everything you hate about every other task list app.,2,1,,2020-02-11 03:24:04,"Hi, sorry for the trouble. Could you provide us with more details about the ""good things"" in GTasks?",2020-02-12 08:14:24,newest,com.ticktick.task +Kristen Andrews,https://lh3.googleusercontent.com/-LVCdzi_BfRc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOe-JY8wg-EzvbRW1cpr7G5vD6QVg/photo.jpg,Didnt like that to really use it as a planner I had to upgrade,2,0,,2020-02-04 19:12:42,,,newest,com.ticktick.task +Roel,https://lh3.googleusercontent.com/a-/AOh14GhstV4lay8nIx_YMy7Cw81SKe0jgPAOf1hmRpaOxA,Having issues with syncing with Google calendar. I added a task on TickTick and it's been over 12 hours and it still has not sync up to my Google calendar. I've tried refreshing but nothing showed up. I've looked at the help forum and many people have the same issue for some time now. I just purchased the pro and it's not worth it if it doesn't sync.,2,31,5.5.0.2,2020-02-03 17:35:41,,,newest,com.ticktick.task +ahmed goutbi,https://lh3.googleusercontent.com/-HPBnoEKassc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNNWe88vTfGUCoirjCrUq-kzA4Buw/photo.jpg,Add a feature that let's me tick tasks off from the widget. Either than that I love the app,2,0,5.5.0.2,2020-01-30 15:32:49,"Hi, can you please try reinstalling the app. Please contact us at support@ticktick.com if the issue persists.",2019-12-13 09:29:07,newest,com.ticktick.task +Ram Dongarkar,https://lh3.googleusercontent.com/a-/AOh14Gg1uWoURSF0UXVCp1mHFUvVdiAOU5ZZSKL0zLLS-g,"Good, bt nt what I was looking for.",2,0,,2020-01-27 13:22:53,"Hi, could you provide us with more details about feautres you're looking for?",2020-01-28 13:19:42,newest,com.ticktick.task +Heather Shively,https://lh3.googleusercontent.com/a-/AOh14Gg3Dc8nR4rbYb8uAiNGJKdgaecJFyvJMTC1rG6MoQ,Can't post to my google calendar or any other subscribed calendars. Disappointed because this app has promise.,2,0,5.5.0.2,2020-01-26 23:41:23,"Hi, you could subscribe Google Calendar in TickTick. Please ref: https://support.ticktick.com/hc/en-us/articles/360016490411",2020-01-28 13:23:15,newest,com.ticktick.task +Hamed khanmirza,https://lh3.googleusercontent.com/a-/AOh14GhyL3rYNG6WbPFtdSXnMxkCYv6JRenwchNu2Ksi,"I found developers lie about free features. I just turned into day view, I asked to login and then I asked to upgrade! In description this option and several other options mentioned as free.",2,1,5.5.0.2,2020-01-25 06:55:04,,,newest,com.ticktick.task +Joseph Jalandoni,https://lh3.googleusercontent.com/a-/AOh14GhDxPC1lN2PdJeE32rB1KHuKdTlVRFO4xe1ZJnF,"Tasks that I change dates does not move to the new date assigned. I'm dismayed because I am a premium member. Moreover, it doesn't have a 1 week or 7 day folder. Apart from the calendar, I also want to see a 7 day list or folder...",2,15,5.5.0.1,2020-01-20 18:26:52,"Hi, sorry for the inconvenience. We've tried to reproduct that issue on our end but failed. Could you provide us with screenshots via support@ticktick.com?",2020-01-21 02:27:30,newest,com.ticktick.task +Didzis Ozoliņš,https://lh3.googleusercontent.com/-9vjqShKfG4g/AAAAAAAAAAI/AAAAAAAAV9U/AAKWJJO37SYFrwa4WfDFVcT463mUeKccOA/photo.jpg,C'mon. To have more than 10 lists I've to pay!? Nope... That's not gonna happen,2,0,5.5.0,2020-01-17 16:36:37,"Hi , free use can use 9 lists now. I'll pass your feedback to product team for evaluation. Sorry for the inconvenience.",2020-01-18 04:45:04,newest,com.ticktick.task +harrell family,https://lh3.googleusercontent.com/a-/AOh14GjBKnFXI0QR9LkgQSgTCWiPeYh5MUl9TBXfHveHaQ,"I liked the app notifications when they worked, gotta pay 2.99 a month? Crazy....mbe a year? Not a month for a calendar app. Most widget features wont work unless u pay, never got to see if they even were worth 299 a month....i like the popup reminders, hopefully someome will make a free one.",2,0,,2020-01-16 01:14:15,"Hi, sorry , we do not have plan to adjust premium price. I'll transfer this suggestion to product team for evaluation.",2020-01-16 03:38:48,newest,com.ticktick.task +Danushka Wasuu,https://lh3.googleusercontent.com/a-/AOh14GgIO3WK4bKQiXRAbkTAzTM6R-fe0citQj2GxZAODxo,widget is not working completely. It does not sync with the app. Plz solve this problem,2,3,5.4.1,2020-01-13 03:20:05,"Hi there, please upgrade to the latest version. We've already fixed that issue. Sorry for the inconvenience.",2020-01-21 02:46:45,newest,com.ticktick.task +mohamed chebab,https://lh3.googleusercontent.com/-a78_gat7MZY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMvrj-WEv_JdhPtXc_z71HZj3dprw/photo.jpg,"-When editing or deleting a recurring task it should ask if you're doing it just for this task or all recurring tasks, instead of deleting and editing all tasks without asking. 2- when creating a recurring task I should be able to time it on different times for each reccuring day, instead of having to create the same reccuring task for each seperate day",2,0,,2020-01-11 23:36:43,"Hi, we've forwarded your feedback to our developers. Thank you for taking out the time to send us your suggestions!",2020-01-16 03:23:24,newest,com.ticktick.task +Traci Stetler,https://lh3.googleusercontent.com/a-/AOh14GiLaj0mlIK86xhF1jNLbB6IV_Bd5cn4aj1taHyVPg,"I don't know why they changed it, but I hate the fact that you can't type in the time anymore. You have to scroll, like you're on Wheel of Fortune or something. That is the biggest pain in the behind ever invented!!! I don't mind it if there's a option, but this doesn't appear to give you a choice anymore. Please change it back.",2,6,5.4.1,2020-01-05 22:30:40,,,newest,com.ticktick.task +Mike Dessenov,https://lh3.googleusercontent.com/a-/AOh14GgxIwVndXy42eZ-D9EHw_Psnaqupa_EzjbuFR4jLg,"From all possible options I've tried out, this has most awkward and unintuitive interface.",2,0,5.4.1,2020-01-04 14:54:47,,,newest,com.ticktick.task +Pink Panther,https://lh3.googleusercontent.com/a-/AOh14GixsfpQIaZJMwgwjy0aDhdNWqeNC-W3xlFLvGcdbg,"When u want to add check list this will help you out. Instead of writing some where, u can add them out here. But in the case u want to develop it as a habit, then u have to changes the setting and activate habits mode... Even in that u can create only 5 habits. If u want to create more than 5 habits, u will be asked to update to premium version Only 5 habits thats funny, if its atleast 10 then okay...",2,3,5.4.0,2020-01-02 01:56:54,,,newest,com.ticktick.task +Al Phabet,https://lh3.googleusercontent.com/-tl8hvX9BT58/AAAAAAAAAAI/AAAAAAAAAQs/AAKWJJMWJ5lSHat6BpwWfzepEwYh1-W5QQ/photo.jpg,Night mode doesnt show up under theme,2,0,5.4.1,2019-12-30 15:30:00,,,newest,com.ticktick.task +Paula Hodgins,https://lh3.googleusercontent.com/a-/AOh14GiKo5siBPpNlMvUjStLNLWvTjJZMB8a_m4isL8XaA0,"Had been very good. But now any reminder that is not completed by the end of the day gets marked as complete inatead of showing up as overdue. On repeating tasks, sometimes marking today's as done will also mark 1, 2, or even 3 days into the future as done, with no pattern behind the glitch. Has become very cumbersome to use and has resulted in many tasks getting missed.",2,4,5.4.0,2019-12-29 16:13:09,"Hey there, + +Could you please write to us via support@ticktick.com? We'd like to know more details for troubleshooting.",2019-12-30 02:06:41,newest,com.ticktick.task +Michele Algente,https://lh3.googleusercontent.com/a-/AOh14GiTKeCAcZxtB8F22BiJlrW1PkfpRIp-v4eFL3Ti,Quick Add got fixed. Now the sync is broken.,2,0,5.4.1,2019-12-28 19:30:12,"Hey Michele! Could you please contact us via support@ticktick.com with your issues, a clip would be very helpful for us to look into the issue. Thx!",2019-11-17 04:46:07,newest,com.ticktick.task +rolo roam,https://lh3.googleusercontent.com/-QtQKN8GWShk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMVoP0o2kMKyHR6Uj7mmSo_qF6ZZA/photo.jpg,"You asked me to pay premium version but instant Google calendar sync still doesn't work, needs few hours for tasks to sync. This been an issue for years already and you ignore pleas from users. On the other hand the Gtasks app you have works really great.",2,0,5.3.1,2019-12-23 00:59:14,"Sorry about that! We have been aware of it, the team will work on to get Google calendar syncing snappier in the future updates.",2019-12-23 01:33:24,newest,com.ticktick.task +Mark D,https://lh3.googleusercontent.com/-JaAmyf2KhOM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM1sozA2F68cHaHqP5DnZx4xS42Ng/photo.jpg,Eh....not great for a pay app,2,0,5.4.0,2019-12-21 14:26:39,,,newest,com.ticktick.task +Alex Litvinov,https://lh3.googleusercontent.com/a-/AOh14GhM6B2zApgWvKU8xcdttHcPuLS-s26xNfioHdv0,"Perfect app, except for 12-hour sync with Google calendar",2,0,5.4.0,2019-12-18 09:43:23,,,newest,com.ticktick.task +Choong Zin Jye,https://lh3.googleusercontent.com/a-/AOh14GhkXh5PpRlg2oLfi1A0TEI6m78rcbkWt5U2FPj11GQ,"Getting annoying, reminder keep jumping out although the task is set one month later. Start Looking for alternatives",2,0,5.4.0,2019-12-18 03:07:43,"Dear User, +Could you please contact us via support@ticktick.com? We'd love to hear more about this issue in order to assist you.",2019-12-18 02:51:27,newest,com.ticktick.task +Deeti Shah,https://lh3.googleusercontent.com/a-/AOh14Gix5x8NBYEsY4Qc5l7P4Xb3fWDoOW6pJxAk6tACxg,"I love the feature where you can type the timing in the name of the task. This app has great features but one thing doesnt seem to work. ITS THE REMINDERS. I'm neverrrrr of my tasks. I never get the notifications. I tried everything that was wriiten in the ""reminders not working?"" But it still has not been fixed. Could u please look into it asap",2,5,5.4.0,2019-12-15 15:49:59,Hey there! We understand how annoying that must be. Could you please look up to this guide and see if it works for you? https://support.ticktick.com/hc/en-us/articles/360037548232-Didn-t-Get-A-Notification-,2019-12-16 02:19:18,newest,com.ticktick.task +George McIntyre,https://lh3.googleusercontent.com/-TDaru3TiyEY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO-T1d0uyHyYCSnScnfBCxrqN4MeA/photo.jpg,"Loved TickTick - great interface and the widget was perfect. Unfortunately I had to move on to Todoist. TickTick doesn't have Alexa capabilities and that's a deal breaker. For a while, IFTTT and Gmail provided a good workaround, but recent changes to Gmail rendered that functionality inoperable. TickTick, get on board with Alexa and I'll come back.",2,0,,2019-12-14 22:28:14,"Hi, the team has been working on developing the integration with Alexa now, it will go live soon.",2019-12-16 02:18:34,newest,com.ticktick.task +S.Senthil Kumarr,https://lh3.googleusercontent.com/-o6R7hCG8jvY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNZY2KZzBgEL4D5q-ax4HwdjayFuw/photo.jpg,Reminder is not working in Realme phone. I did all the settings in my phone and app settings but still not working.,2,1,5.4.0,2019-12-14 13:14:39,We understand how annoying that must be. Could you please look up to this guide and see if it works for you? https://support.ticktick.com/hc/en-us/articles/360037548232-Didn-t-Get-A-Notification-,2019-12-16 02:15:30,newest,com.ticktick.task +Paul Eliminyro,https://lh3.googleusercontent.com/-eyHFSPBKuiY/AAAAAAAAAAI/AAAAAAAAAe4/AAKWJJPx0bYVMky8lwllgvYr71jw9pcGCA/photo.jpg,"After update, I couldn't log in to my Google account, the button Allow wasn't working. After applying the workaround and setting an email in web-version, my app on the phone requested permissions to my contacts. I allowed it, the pop-up in the app did not disappear. After pressing 'ok' several times, it went away. However, now the app doesn't fetch the information from the cloud. I wanted to buy Pro, not anymore. You can't fix the bug with Google account for several months now. Embarrassing.",2,40,5.4.0,2019-12-13 07:58:28,"Hey Paul, + +Sorry about that! +We have been aware of the issue, the devs are still looking into it. +You may enter the web app -> Settings -> Profile -> bind emails with the account. Then log into the Android version with the bound email and password for temporary use.",2019-12-14 06:07:24,newest,com.ticktick.task +Paresh a Varia,https://lh3.googleusercontent.com/a-/AOh14GjFLRVOXBaEAGVV0kkgDd52xh-J5OFfv7KrJqU4IA,not backup in device offline ??,2,0,5.3.1,2019-12-05 18:48:02,,,newest,com.ticktick.task +Jin Wu,https://lh3.googleusercontent.com/-O_0ywCgHB0o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPnWi29dmLHSlbbFU_Woj9PLQW_rg/photo.jpg,"I downloaded and paid for this app several days ago. It has some good aspects. But now I literally HATE some other aspects of it! For example, if you set a specific time for a specific time (e.g. 1-3 pm), it DISAPEARS without giving you a chance to do anything with it. So, if you didn't finish that task, you are out of luck if you want to move it to somewhere else! How ridiculous it is! I'm really scared. I can't trust this tool. I have to switch to something else and cut my losses.",2,1,5.3.1,2019-12-03 05:28:28,"Dear User, +Could you please contact us via support@ticktick.com? We'd love to hear more about this issue in order to assist you.",2019-12-04 03:30:56,newest,com.ticktick.task +Thanvir Rahman,https://lh3.googleusercontent.com/a-/AOh14GhoSS9_HAPS8fpk36bYyD4L5fIxeTnpDSOxJaR1Mg,Please fix the widget. It keeps failing to display tasks and asks to restart all the time,2,1,5.3.1,2019-11-21 04:24:38,"Hi, can you please try reinstalling the app and see if the issue can be resolved?",2019-11-28 02:05:17,newest,com.ticktick.task +Nesse van der Meer,https://lh3.googleusercontent.com/-H4Qop321jc8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMOlqM3TTmEmSK1EgvmNSAYlkwINQ/photo.jpg,"Disappointing... I have been happily using this application for years now, but the last few updates appear to have caused more problems than they fixed. One example: when you create an event that's further away than a month, the app will AT ALL TIMES change the date and time to incorrect ones. It has done this EACH time for me over the last months, changing the dates and times for no reason; you can imagine this is a deal-breaker for a planning app...",2,46,5.3.1,2019-11-14 12:45:03,"Hey! The issue is preliminary estimated to do with the ending of DST. Could you please check if the newly added task are displayed correctly? +So sorry for interrupting the time setup! The previous task time may not be restored automatically. But we will add a fixed timezone option in future updates in case the issue happens again.",2019-11-15 01:37:16,newest,com.ticktick.task +Matt Brooks,https://lh3.googleusercontent.com/a-/AOh14GgE0P6_XIItUzKEJZY-Tso0Pq6xnj0acXdFECJ3,"£3 a month to use most of the app... Na. Features are nice, but Disappointed I can't just buy the app.",2,1,5.3.1,2019-11-07 15:37:23,Sorry for frustrating you on the price. We will pass your feedback to the product team for further evaluations.,2019-11-08 01:18:52,newest,com.ticktick.task +rein,https://lh3.googleusercontent.com/a-/AOh14Giy92-a0fqBkCkVvbGLtfQg_IqqpmG6b9S1X5x2gA,Now when I get a reminder it wakes up the screen to display the notification. There's no way to change this. Edit: reminder pop-ups is already switch OFF.,2,1,5.3.1,2019-11-06 02:30:47,Hey! Could you please go to Settings > Sounds & Notifications > Reminder Pop-ups > No pop-ups?,2019-11-06 01:28:50,newest,com.ticktick.task +Matthew Glendinning,https://lh3.googleusercontent.com/-dhUt-vuPJ0A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOoUs1PxaS05IEkiinUESSpNvXVoQ/photo.jpg,"Easy to use and understand. I have an issue with the reminder settings, if I set a time reminder, then it drains my battery. So I am not able to use this function. Otherwise I am happy.",2,1,5.3.1,2019-11-02 14:44:46,Thank you for your kind feedback. What is your device and system version? We will keep an eye on this issue.,2019-11-04 00:33:03,newest,com.ticktick.task +Shivam Lavti,https://lh3.googleusercontent.com/a-/AOh14Ghx8E9HWwgBL2Ub3jHviUA1vSY23AW8Vn3aI-M_Jg,The free version is garbage compared to any.do. every other click pops up premium warning and it's annoying as hell,2,0,,2019-10-31 03:00:49,Thanks for your feedback! We will pass it to the product team for further improvements.,2019-11-01 01:39:37,newest,com.ticktick.task +Paula Meldrum,https://lh3.googleusercontent.com/a-/AOh14GjAdpSNON1pZIrCd1eoI1d25iYWHEJWDc5rYVADcg,"I love ticktick and have returned after trying a few other task apps. The problem is that it's all a it buggy. Emails sent to be added as tasks dissappear if sent automatically through Gmail, and my online Web based tasks are different to those on the app. Maybe time to look again at other apps... 🤔 @ticktick who should I email? I'm also totally fed up as it no longer works with Google Assistant 😢.",2,2,5.3.0,2019-10-30 16:20:22,Hey Paula! Thanks for the feedback. Would you mind being more specific about the issues? The devs will look into it asap.,2019-10-02 23:56:10,newest,com.ticktick.task +Matt Varilek,https://lh3.googleusercontent.com/a-/AOh14GhF8c_wJ2HSag39FxSYJLsmXdXKOgR30v9iqx1-vlo,Best to do list app except the new notifications have gone haywire. They only pop up at bottom of screen and then disappear if I open any other app. Old standard Android notifications would remain in pull down notification drawer until I dealt with it - far superior. Please bring that back.,2,3,5.3.1,2019-10-30 02:18:26,Noted. The product team has been aware of your feedback! We will do further evaluation on the notification design asap.,2019-11-04 00:34:02,newest,com.ticktick.task +Josh TW,https://lh3.googleusercontent.com/a-/AOh14GhehxaafxdztQ3G_QW5G7wD0PcxPU6vsoTUACnTUNk,"Keep getting a pop up ""Re-authorisation failed"" even though my Google account is already authorised on my account",2,0,5.3.0,2019-10-26 13:35:08,Hey Josh! What is your app version? Could you please write us to support@ticktick.com and include the exact steps you did before the issue? We will take a further look into it asap.,2019-10-27 00:14:17,newest,com.ticktick.task +Zac Montuori,https://lh3.googleusercontent.com/a-/AOh14GiNmnQqbvl88lvm3ylqN91f9whuX95jfWw39cTto6M,"Has been one of the best reminder app available for a long time. This most recent update messed up notifications on Android 10. They don't follow the system dark mode at all, instead you have to manually change it in the app or deal with mismatched colors. It looks ridiculous seeing a white notification background amidst other black backgrounds in dark mode. It also looks like the black is not a true black like other apps. If this isn't fixed soon, I'll be looking for a new reminder app.",2,3,5.3.0,2019-10-23 19:02:26,Thank you for your kind feedback. We are aware of it and we will do some tweaking in the future versions asap.,2019-10-24 02:18:06,newest,com.ticktick.task +Rick Attroll Towle,https://lh3.googleusercontent.com/a-/AOh14GhTbkOpQG6NCkVURPOqpGs0-5_TFQJ0IASF8l17,This is very good app but the monthly cost or yearly cost are not worth it for me. I found a free app that does tbe same things.,2,0,5.3.0,2019-10-22 22:57:54,,,newest,com.ticktick.task +Patryk K,https://lh3.googleusercontent.com/a-/AOh14GgeWXBr5txaYlZVDieEbarGk94JLoiztnskBf-tYZ4,"I really like this app, it's one of the best reminder apps there is. However the new custom notifications are horrible! It sticks out like a sore thumb. You have to manually set between white or black background, which means that they don't automatically switch with Android 10 dark mode. They're also not black, but grey which makes them look ugly next to other notifications. Title and time also don't line up with other notifications. Plus it says ""a min. ago"", which is only accurate if I look at my phone immediately. And it turns on the screen when the notification comes in, even if it's in my pocket. This is a great app, but the recent update is one of those 'if it ain't broken don't fix it' moments. I really hope you consider going back to standard Android notifications, or at least provide an option between custom or standard. I'll gladly update my review to 5 stars if that happens.",2,13,5.3.0,2019-10-21 01:44:02,"Your feedback has been passed to the product team, we will evaluate and make some improvements in the future.",2019-10-22 01:02:04,newest,com.ticktick.task +Patrick Burns,https://lh3.googleusercontent.com/a-/AOh14Ghlrxqkx4-ICkWklZpTjNlNZL9QMT9Iw368rki5VLg,"The new notifications are useless to me. I always keep my phone on vibrate, and the old normal Android notification would vibrate my phone and notify me on my watch too. But now the new notification pops up silently and is very easy to miss. And I've tried changing the settings and nothing works. I really don't understand why not use Android's build-in notifications instead of this new thing or why is there no option to turn it off?",2,10,5.3.0,2019-10-20 20:31:20,Hey Patrick! Thanks for your feedback! The devs will look into it asap.,2019-10-22 00:55:28,newest,com.ticktick.task +Anton Lopez,https://lh3.googleusercontent.com/a-/AOh14GgT3lpMnH7RuGNiZ0ErWXfA4YLnQLnkj89MUzKWsRw,I would've switched to TickTick but there is no option to change to a 12 hour setting from a 24 hour. 😔,2,0,5.3.0,2019-10-20 03:40:41,We appreciate your feedback! We will consider adding it in the future versions.,2019-10-20 13:54:11,newest,com.ticktick.task +Wolfgang N,https://lh3.googleusercontent.com/a-/AOh14Gjglot0e-0UMsPOmIdEGRQa5T0fguFKIjx_Pz0Ckm4,A very good to do manager. I would take a premium version if on the Windows version it would possible to set/change/manage location reminders. For this feature I already wait some years. I'm really surprised that the programmers are not able to add this feature also at the windows app. It's annoying so anoying that you have to edid every task in Android again to add a location reminder..... But it seems to be to difficult for the programmers...??? So when this is to difficult what can we expect? Will the maintanance of the Windows app stay on a reliable basis??? Waiting already since years for a change. Didn't know why the ask me to change settings on Android to change place reminders on my Windows TickTick... May be I should give up 18.10.2019,2,1,5.3.0,2019-10-18 15:15:53,"Hi Wolfgang, Sorry for the inconvenience. Could you contact us at support@ticktick.com? You need to configure some settings on android device firstly.",2018-05-30 13:25:16,newest,com.ticktick.task +sharad regoti,https://lh3.googleusercontent.com/a-/AOh14GjWfTmGh90nsHu-mtbk3U7qjWehRMJ5MH5BikWL,When i share my task on whatsapp Even though i selected share title and content It only shares title Version : 5.2.2 & If i share my task in the form of image the task with long name The end of the name gets replaced with ... Instead of showing the remaining heading on new line,2,1,5.2.2,2019-09-24 14:44:00,Hey! What's your app version? Does this issue happen for all the task sharing?,2019-09-24 01:02:14,newest,com.ticktick.task +Leah Schneier,https://lh3.googleusercontent.com/-AqkJZQae_Lc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN2etV6JWPmKTUSlhhH9zTRcC_d3w/photo.jpg,"In general I really like this app but every time it does an update or my phone restarts, I have to go to redo the battery optimization settings because otherwise I don't receive notifications. This is just ridiculous that it doesn't save my settings! 3 months later and still have the same problem...",2,63,5.2.2,2019-09-10 20:04:49,Hey there! Sorry for the issue. Have noted it down and the devs will look into it asap.,2019-06-27 03:22:23,newest,com.ticktick.task +John Moon,https://lh3.googleusercontent.com/a-/AOh14Ggo6PPO62t4i6kV0D4E4dMBsTtZPjyOVLMXOb6RXLc,Loved this app until it stopped syncing... My android app and web app have been out of sync for over 2 weeks,2,0,5.2.2,2019-09-09 19:02:51,Hey John! Could you please be more specific about the issue? You can contact us via support@ticktick.com.,2019-09-15 00:42:15,newest,com.ticktick.task +Entertainment source,https://lh3.googleusercontent.com/a-/AOh14GgzMhxe8l9c7N2LI8QXYGPFrQYIaaqJV_kGe2H58A,"such a scam.....!!! first it asks you to sign up for making duration related reminder ,once you sign up it says that you got pay money for that features 😑🤦‍♂️... deleted this app at the next moment of seeing those scam stuffs",2,0,,2019-09-03 11:20:12,,,newest,com.ticktick.task +Dan Schneider,https://lh3.googleusercontent.com/a-/AOh14GgjfdfEYhEMH4V2DBdMpmM0Md-ySnYT6rrxahX9,"The interface is ok. But TickTick does *not* sync with Google Tasks. (You can import Google Tasks, but no tasks added in TickTick app will appear on Google calendar.) If a task list doesn't integrate with Google Tasks, if I am limited to using the standalone app and *cannot* see tasks on other devices / computers, then the task mgmt. app isn't really good for anything.",2,0,,2019-09-03 05:40:06,"Sorry, TickTick doesn't sync with Google Tasks, it syncs within our cloud. If you need to sync your tasks with Google Tasks, you can try another app: GTasks.",2019-09-15 00:44:25,newest,com.ticktick.task +Simplatory,https://lh3.googleusercontent.com/a-/AOh14GgHmZR37vJL1LUm2kGQUS795Oj7t13jicHqACJ9BLc,The check boxes could be bigger and other such things could be made clearer.. Also an option to see all the items in individual folder from the 4*3 weekly widget.,2,0,5.2.0,2019-08-25 12:52:46,Really appreciate your suggestion. We will consider it and improve our app in the future version.,2019-08-27 10:09:18,newest,com.ticktick.task +Bryson Dohrman,https://lh3.googleusercontent.com/a-/AOh14Ggpka4dSQncrMRnSwCMD6DekNdu5kMqq30PWQ4nQ_w,I think this app is the best option for a to do list except that the sync is terrible. I just paid for premium and the app will not sync. During the trial the sync between android app and PC app was also very bad. If they could get the connection/sync issues fixed it would be a great app. If I can't access the premium features I paid for in the next few hours I'm going to be requesting a refund...,2,30,5.2.0,2019-08-24 00:27:32,"Hey Bryson! Could you please go to the premium page in TickTick, scroll down to the bottom and tap the ""restore"" button, check if it is activated?",2019-08-27 10:05:27,newest,com.ticktick.task +Suraj K,https://lh3.googleusercontent.com/a-/AOh14GhxM9yfG-VESdkrCF6lCD4D9JLGKKJD2yP4d78opg,All the main options are charged. Then why list the app for free. Might as well list it as charged app,2,0,,2019-08-23 03:23:32,Sorry to frustrate you by our current pricing of the app. The team will have an evaluation together and see if it could be adjusted in the future.,2019-09-15 00:41:06,newest,com.ticktick.task +Jj A,https://lh3.googleusercontent.com/-YcuPwQ53rMs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMGi7QVyVjm4jrEu-g9NY0EJEk5Aw/photo.jpg,"Useful. But constantly calls out to access crashlytics, Facebook, etc. Too much spyware. I'm searching to replace it. App also locks you in so you cannot export to another app.",2,0,5.2.0,2019-08-06 22:35:58,Thanks for the feedback. Please do not worry! We definitely won't privately access to users' data and please feel assured all your data is encrypted safely.,2019-08-10 04:36:36,newest,com.ticktick.task +Patrick Sullivan,https://lh3.googleusercontent.com/a-/AOh14Ggii0cLEYZaWfCktLgFVh58mrtp1AaZFP9as3uGow,TUTORIAL ?,2,0,5.2.0,2019-08-05 03:23:46,Hey! You can look into tutorials here. https://support.ticktick.com/hc/en-us/categories/360000948871-User-Guide,2019-08-10 04:38:00,newest,com.ticktick.task +Adam Cain,https://lh3.googleusercontent.com/a-/AOh14GhB1jcd76MMJ9vnL1QUAJSOp_rlG-175TTQ8e6jvw,"great app for your phone but if you need smartwatch functionality, look to Any.Do rather than this app. In dialogues with the devs, theyve stated they have no intentions of integrating even simple WearOS apps (like add task from watch). Uninstalled",2,0,,2019-08-04 16:40:18,We will consider adding integration with other apps. Thanks for your feedback!,2019-08-05 01:56:32,newest,com.ticktick.task +Paolo Alcantara,https://lh3.googleusercontent.com/a-/AOh14GhVIcEyHBx2GbJWw2DEfz0LiM7rp0zxFgvX3yr9BA,"There's a bug with the planning view, you can't see the title of the event. Other than that the app runs okay.",2,0,3.6.0.1,2019-07-20 11:43:31,Thank you for your kind feedback. Could you please be more specific about the issue and send us some screenshots via support@ticktick.com?,2019-07-30 01:47:29,newest,com.ticktick.task +Neil Riddoch,https://lh3.googleusercontent.com/-UFSE7u6xJsw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNgBJmfEwf2i3t9W74x7SBgnqMS8A/photo.jpg,Great app but isnt optimized for google Pixel 3xl. i cant re-size the widget to match the size of the screen.,2,0,,2019-07-09 22:00:10,We will forward your feedback to the team and will consider making some improvements.,2019-07-30 01:46:00,newest,com.ticktick.task +Renato Cuba Rodriguez,https://lh3.googleusercontent.com/a-/AOh14GgJ7tNyFOJ-FWaJ8y8scMxjJC2GzKPwR_Mnr-y7,Nada es gratis,2,0,5.1.1,2019-07-08 02:11:45,Sorry to frustrate you by the pricing. Will pass your feedback to the product team and do some evaluation.,2019-07-10 03:04:34,newest,com.ticktick.task +Irwan Santoso,https://lh3.googleusercontent.com/a-/AOh14Gi6LOIjpR5PczdvpNGHcZXtqNlHTxUjNUTdC6cddg,No android wear app,2,1,5.1.1,2019-07-07 08:32:48,,,newest,com.ticktick.task +Zamir Chandler,https://lh3.googleusercontent.com/-2BCNFPtXz_M/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNpc0xzpIBzmjLUmVM1TTmSsAlIXQ/photo.jpg,I purchased the app. All I need now is to add color to the calendar entries. mmh I'll think of some stuff later.,2,1,,2019-07-05 03:00:37,,,newest,com.ticktick.task +Nur Izzati Khairuddin,https://lh3.googleusercontent.com/a-/AOh14Gj8LemVjVIEmHsY_H9SU6df9gNZgWR2OZCLzKrlBA,Don't get any notification at all,2,0,5.1.1,2019-07-01 16:25:06,"Hey there! Could you plz go to ""Settings"" > ""Sounds & Notifications"" > Reminders Not Working and check if some notification settings are disabled?",2019-07-10 02:46:42,newest,com.ticktick.task +Ken Trionfo,https://lh3.googleusercontent.com/a-/AOh14GhjnHfwo3W5OlYO5YJU1R4QVzPUMkfsaXiOqhbIcA,"Has some cool features but now that I've used for a while, can see has some real limitations and poor performance sometimes unfortunately.",2,0,5.1.0,2019-06-22 16:04:01,Hey Ken! Thanks for the support anyway! Will keep polishing current features in the following versions.,2019-06-27 03:18:56,newest,com.ticktick.task +Dionna Richardson,https://lh3.googleusercontent.com/a-/AOh14Gg18vnfEjOPFqeJn17rhiggPnD6_53_IO6iUu6Vjw,"It was good for a few days, but now it's not loading on my browser at all (Gateway timeout), and changes I made on my iPad are not syncing to my phone. not useful if nothing works.",2,6,5.1.0,2019-06-20 22:57:20,"Hey Dionna! Sorry for the trouble. The issue was caused by the slow connection with our database which has been fixed now. Would you plz try it again? +We are so sorry for the inconvenience.",2019-06-27 03:17:57,newest,com.ticktick.task +Oliver,https://lh3.googleusercontent.com/a-/AOh14GhERwT8G7m_Jk5LDX6bCa2HWxzeXU1lSi2Zsoi2kjQ,fix the lag on moving events on the day display and I'll subscribe again. ux is clunky get a second opinion,2,1,5.1.0,2019-06-11 19:25:28,"Hi Oliver, sorry for the trouble, we need more detailed info to help you resolve the issue. In the app, please go to Settings - Feedback & Suggestion - Send Feedback, then send to us (the email will auto collect the error log from you). We will look into the problem asap. Thank you.",2019-06-12 09:06:55,newest,com.ticktick.task +Joshua Taylor,https://lh3.googleusercontent.com/a-/AOh14GicblrIxktOLlgpbYn5drafkq0ALzK6mpCefRQl,The app is a little confusing in the way it works and it is a little ridiculous to pay $3 a month just to see a calendar.,2,0,5.1.0,2019-06-05 16:53:16,,,newest,com.ticktick.task +Justin P,https://lh3.googleusercontent.com/a-/AOh14GjTF9hmDFeS7fCku9W9fwSOlCPhnliO1aSiOPtm,App seems ok. But they want you to pay a monthly fee just to use a basic calendar. It let's you view the current week. Anything else and you have to pay. So many free ones out there to choose from. Uninstalling.,2,1,5.1.0,2019-06-05 14:25:57,,,newest,com.ticktick.task +YDINO,https://lh3.googleusercontent.com/a-/AOh14GhdOPB4tSffexcqfKblsG0C3L00Ga-3MHcW7iZSntE,i wish there was a one time payment option and a dark mode i can't add another subscription to the msny i already have,2,0,,2019-06-04 15:29:49,,,newest,com.ticktick.task +Molly Clabots,https://lh3.googleusercontent.com/a-/AOh14GhY_spHLkgL27FWEcIE888YhlD_R5PIT857kE_Weg,"i love this app but it reads my texts. i left one in draft and it suggested it as a Todo item. i couldn't find any way to get it to keep is ""eyes"" to itself. not about it.",2,0,5.0.2,2019-05-26 05:42:52,"Hi Molly, please make sure if you enable ""Clipboard"" switch under ""Settings -- Task Quick Add -- Clipboard"" in the app or not? Thank you.",2019-05-26 12:36:42,newest,com.ticktick.task +Moko Chang,https://lh3.googleusercontent.com/a-/AOh14Gjf5TlEOYk1u09_zMtSEUwRuR77jXlNdaGt2neKRA,The notification on my Tickwatch C2 has no vibration 📳 please fix,2,0,5.0.2,2019-05-26 01:04:49,"Hi Moko, does other app work well? Thank you.",2019-05-26 12:41:31,newest,com.ticktick.task +Vijay Vitekar,https://lh3.googleusercontent.com/a-/AOh14GjT2o1m6QyYn0VEygJCtyOS2Lv_euiLmaM8Fy0ecw,"Now not working after pie /EMUI 9.0.0, please update or give instructions, still not working, no option found in settings, please help as guided",2,1,5.0.1,2019-05-12 08:12:03,"Hi Vijay, please set up all the settings refer to the steps under “Settings - Sounds & Notifications - Reminder Not Working”, and try again. If problem still exists, please go to Settings, Send Feedback and email us (the email will auto collect the error log from you), developers will assist you to resolve the problem. Thank you.",2019-05-12 07:06:32,newest,com.ticktick.task +harshitha R,https://lh3.googleusercontent.com/-oFVItT6EMSo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNOCWPEdcQwkCt8qtW29-uldFINXA/photo.jpg,"the application is very nive but cant take the complete use of it because of the premium option , and the amount also is high",2,0,5.0.1,2019-05-12 02:41:04,,,newest,com.ticktick.task +Ali Ronan,https://lh3.googleusercontent.com/a-/AOh14GjAeeJZSlP2ATC0WNH8imTnpGFEP4tHiKgHNOq-wcI,Serviceable but not awesome by any means. I've spent enough time trying to set up tasks in here that I feel like I can't bail even though I don't love it. It's really tricky to figure out how to make tasks show up like I want and have only been able to really get things set up right by using the website in addition to the app. Nothing is intuitive or easy to figure out in this app.,2,1,5.0.1,2019-05-02 02:42:53,"Hi Ail, sorry for the inconvenience. Here is the user guide. https://support.ticktick.com/hc/en-us/sections/360002241552-Android. Product team will follow up your confusion. If you have any other questions, please let us know. Thank you.",2019-05-04 10:34:32,newest,com.ticktick.task +Zeljko Radjenovic,https://lh3.googleusercontent.com/-u6XJy1m6h3U/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPKpdbJsZ8UZ2H9Cy6VuevW8C375g/photo.jpg,"Works well. Does more than I need. A little awkward setting up reminders. 4/24/19 UPDATE: New app update forces me to read how long ago was the task due and then it shows what it is. Very very annoying. Will be looking for a new app if they don't fix this. 4/30/19 RESPONSE: Pop up notifications show how long was the task due, then what it is. And I mostly read pop up or slide down from the top. Disabling Countdown doesn't solve the problem.",2,0,5.0.1,2019-04-30 19:55:56,"Hi Zeljko, sorry for the inconvenience. Product team will follow up on it. Thank you.",2019-05-04 10:40:47,newest,com.ticktick.task +Ben Shea,https://lh3.googleusercontent.com/a-/AOh14GiaWG_3RkiZIKwUgKMwbO4-4V_USbLznZ8MK9YsoA,"Non-functional with Google account. Was great, but can't use right now.",2,0,5.0.1,2019-04-30 17:15:39,"Hi Ben, could you please provide more detailed info on the issue you met? Developers will assist you to resolve the problem. Thank you.",2019-05-04 10:42:38,newest,com.ticktick.task +hey I hate hemlock,https://lh3.googleusercontent.com/a-/AOh14Gi-vgp1hmzYHc13IkPbigm23UmpnT1eRPVGdUFH0w,TickTick please give us students a discount like Todoist!! You lost a user!,2,0,5.0.1,2019-04-29 17:25:22,"Hi Dayuum, product team are working on this. Thank you for your understanding.",2019-05-04 11:39:10,newest,com.ticktick.task +Utku Bilen Demir,https://lh3.googleusercontent.com/a-/AOh14GhloVk9IazvX-w4BSwmR8O-J_AkTjCfD5ji5cH4,"The app is good but the differences between the premium and free version aren't mentioned at the beginning. It is also not possible to start using the app without the ""free trial period"" as far as I have seen. After the forced free trial period I now realize that the sync function which enables you to use pc and and. app simultaneously is indeed a premium function. This seems awful lot like the way Evernote took, I want to buy my apps because I appreciate the work, not because I'm forced into.",2,4,5.0.1,2019-04-28 10:22:29,,,newest,com.ticktick.task +Ryan Furrer,https://lh3.googleusercontent.com/a-/AOh14Gg7qaJ0GegC9Kts_XINSomq6kj8uQEbJKr3iww7qco,I love this app but recently it has been freezing every time i add a new task. It's updated and i even reinstalled it yet it is still happening.,2,0,5.0.1,2019-04-23 23:14:04,"Hi Ryan, sorry for the troubles. Could you please go to Settings, Send Feedback and email us (the email will auto collect the error log from you), developers will assist you to resolve the problem. Thank you.",2019-04-27 14:58:56,newest,com.ticktick.task +GS W,https://lh3.googleusercontent.com/a-/AOh14Gh_scDV9v6NFOtO8tC-OgI9fACDF5uP7wDbau6D,Easy to use. BUT DO NOT always follow MD2!!! It's DAMAGING our brains!,2,1,5.0.0,2019-04-04 00:56:27,"Hi GS, Sorry to hear that. Do you mean martial Design? May we ask if there's any particular reason that you dislike the current UI design? Please let us know, so we could share with the team and see how to improve in the future. Thank you.",2019-04-04 10:35:49,newest,com.ticktick.task +Muscle Monster,https://lh3.googleusercontent.com/a-/AOh14Ggm-wU_xdxFLgKdDNX6z3CWMA794Fxo_6ty_yC_fg,it's just a simple to do list ... why did you locked some tools ..,2,0,5.0.0,2019-04-03 19:48:01,,,newest,com.ticktick.task +Harshivam singh,https://lh3.googleusercontent.com/a-/AOh14Ggwv-eVvhl3iE2_h2NfvRLvXVKdl-hnLbyuI2bB,I'm facing a problem that is reminders are not working properly (device Lenovo k3 note Android 6.0,2,0,,2019-04-01 08:48:22,"Hi Harsh, please set up all the settings refer to the steps under “Settings - Sounds & Notifications - Reminder Not Working”, and try again. If problem still exists, please go to Settings, Send Feedback and email us (the email will auto collect the error log from you), developers will assist you to resolve the problem. Thank you.",2019-04-01 10:57:39,newest,com.ticktick.task +Noah Boguslavsky,https://lh3.googleusercontent.com/a-/AOh14GgAyEXjoReTOSvBSEwcaeFQrgQl5v4e7pS1hjaW,"Gawd, what's up with the ugly orange and why can't I change it to something more palatable???!!!",2,8,5.0.0,2019-03-29 15:42:20,"Hi Noah, Product team will keep on following this.Thanks for your understanding.",2019-04-01 11:24:51,newest,com.ticktick.task +Michael Emory Cerquoni,https://lh3.googleusercontent.com/a-/AOh14GgOWj6uRYvD6m5SihGfC-A0eo0bfjAquHE74FhZ848,"windows 10 version made my computer freak out, uninstalling for now",2,0,,2019-03-25 10:14:54,Really sorry for the inconvenience. Could you please email to support@ticktick.com directly and send some screenshots to better explain your issue so that we can further assist you? Thank you.,2019-03-27 01:45:42,newest,com.ticktick.task +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"When you use the pomo timer, it automatically starts counting down when you hit what task you want yo be working on. There is no longer an icon where you can choose your white noise before starting the pomo and no way to pause the pomo once it starts so you can select your white noise. I would like to be able to select the task I'm working on, select what white noise I want, and then start the pomo; not everything automatically start.",2,2,5.0.0,2019-03-22 13:16:16,Sorry for the inconvenience. Product team will follow up on your advise. Thank you.,2019-03-24 11:12:50,newest,com.ticktick.task +Cloud Busta,https://lh3.googleusercontent.com/a-/AOh14GiiL-y2I5_mxa6BBJHKTpW0kv6Wm-IgvMZjqiq66A,Came back to this after not using it for a while Tonnes of updates has made it rubbish,2,1,4.8.6,2019-03-18 11:12:51,Sorry for the troubles. Please tell us which features make you feel uncomfortable. Product team will follow up on it. Thank you.,2019-03-18 12:41:22,newest,com.ticktick.task +Sheikh Ridwan,https://lh3.googleusercontent.com/a-/AOh14Gji9u_85asRS2HL1uNlubEoajmCvjXdQJl-sfXHoA,mota moti...,2,0,,2019-03-12 22:05:48,"Sorry for the inconvenience. If you have any suggestions or confusion about TickTick, please let us know and the product team will follow up. Thank you.",2019-03-13 02:16:46,newest,com.ticktick.task +M Murphy,https://lh3.googleusercontent.com/a-/AOh14GhSf-qXMU7UPczCujRCP9FyuwQBIYF9ZJG8xhTpnM4,Requires access to contacts to work,2,0,4.8.6,2019-03-10 16:44:35,"Hi, you can choose not to grant TickTick contact permissions and continue to share the list. Thank you.",2019-03-11 10:38:52,newest,com.ticktick.task +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Do I have to add tasks daily? or can I copy whole list for daily?,2,0,4.8.6,2019-03-01 14:57:10,"Hi, after selecting ""Show Future Cycles"" in the calendar view(under settings in the top right corner of the calendar view), you could see all the future cycle tasks. ^_^. Thank you.",2019-03-04 15:54:04,newest,com.ticktick.task +Kristi Dix,https://lh3.googleusercontent.com/a-/AOh14GhQYsr_28riOTfTD0YhuuRwFiZCHkQsYk4oiaE1,"I needed a replacement for Wunderlist, which we relied on for task lists for our business & employees. With TickTick, I had to manually type in each task for each list because the Import feature only put them in my Inbox. There's no Home Screen - hitting the return arrow exits the app (not a biggie, just an adjustment). The real downer is having to pay to share the lists with more than one person. Collaboration was an important feature we needed. Using Microsoft's To Do for now.",3,4,5.5.5.0,2020-03-24 13:16:46,,,most_relevant,com.ticktick.task +Sophie Mowat,https://lh3.googleusercontent.com/-WA5VQC9mSJo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO85UMEWwZtWQtAFDz-92u9aXFD-Q/photo.jpg,"Has the potential to be an excellent all in one calendar and to-do list, however I cancelled my subscription two weeks in as: 1. Subtasks automatically repeat when repeating main task is completed, regardless of time and due date settings. This should be optional. 2. Subtask reminders should be optional 3. Calendar functions are very limited, e.g. ability to set up an event rather than a task would be a valuable addition",3,0,5.5.6.0,2020-04-03 12:44:03,,,most_relevant,com.ticktick.task +Nari Choi,https://lh3.googleusercontent.com/a-/AOh14GgLLGnOb4P5gU9qNc7zJkAJoBaFCw0F9t-f2pX0ApI,"does not work on galaxy watch...It would be so perfect if it would. The app is the best though, but how can an app built for planning and reminding not work with something as basic as a smartwatch. Makes no sense.",3,3,5.5.5.0,2020-03-12 14:56:51,,,most_relevant,com.ticktick.task +Philip Wright,https://lh3.googleusercontent.com/a-/AOh14GivZwNIYM05AG_CgvznCHq75DAF_BxuWOWIahj6qg,"Best Wunderlist replacement I can find. Expensive. Widget doesn't scroll, which makes me really sad I can't keep Wunderlist.",3,1,5.5.5.0,2020-03-13 06:37:57,,,most_relevant,com.ticktick.task +Yvette Diggs,https://lh3.googleusercontent.com/a-/AOh14Gg8HORckdnB_fPfq4I50PDtIGgY-SO7rgtXoNU3cSw,I have the premium version. I had been using Wunderlist. The most amazing Todo app ever and very intuitive. Tick Tick has worked well as Wunderlist is no longer supported. However some key things I truly miss. Push notifications when someone texts within the app. Notification that someone else has updated or completed a task or list. Copy and paste everything I need into a section as a single item in the list instead of everything becoming its own item in a list.,3,4,5.5.1.0,2020-02-25 05:12:56,,,most_relevant,com.ticktick.task +Jonathan,https://lh3.googleusercontent.com/-s3HL0ZQrOBE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMDvmormnMS-PASH1ZExk7TOwaBWA/photo.jpg,"Hi. Long time TickTick user. Unfortunately the app still has big issues with subscribed LOCAL calendars. Recurring events from the local calendar are doubled in the list view and have been for a long time now. The last time it worked properly was in 5.2.1. I notified you guys a long time ago, but it hasn't been fixed. I finally tried Any.Do and it works properly with my LOCAL calendar so it seems that I will be giving them my subscription money this year.",3,1,5.5.0.2,2020-02-03 20:09:23,"Hi, sorry for the trouble. Could you provide us with screenshots about this issue to support@ticktick.com? Devs will look into this issue asap.",2020-02-04 01:11:49,most_relevant,com.ticktick.task +Andy Bolstridge,https://lh3.googleusercontent.com/a-/AOh14GiuVv4BbL4bVT_pdqS4Qz7M65Znedk28HE-lxIh,"Generally good but has issues, adding a subtask is just weird - why they can't do what wunderlist does with a place to add or a button, and it's all a bit sluggish with some redraw problems. But it has some great ideas to it, so maybe it'll be good in time.",3,0,5.5.0.2,2020-02-04 02:07:03,"Hi, thanks for your suggestion. I'll transfer your feedback about subtasks to product team for evaluation.",2020-02-04 05:55:43,most_relevant,com.ticktick.task +Maisarah Mohd Razi,https://lh3.googleusercontent.com/a-/AOh14GiPL-q6DO1mNDxwFKTinNIZBIS4vyyXC3P-SsaqlA,"Hi, im using the paid one on my phone and ipad. However i find that they do not sync well on both. Like i already marked 3cups of water on my phone, then whem i open on ipad it's not marked. But then both updated according to the ipad. How do i make this better? Also, can there be a way to skip a habit? Sometimes i missed it and i dont want them to keep appearing on the list.",3,1,5.5.5.0,2020-03-06 11:35:37,,,most_relevant,com.ticktick.task +Ivy G,https://lh3.googleusercontent.com/a-/AOh14GhUdqe71IZ9n2WVZlmEhr2xOp_ZE4THxF76Zka8PLU,"If time tracking was added and the parser/interface of the ""what would you like to do?"" field was fixed (this alone is making me want to switch back to Amazing Marvin), I would rate 5 stars.",3,0,5.5.1.0,2020-03-12 15:02:53,,,most_relevant,com.ticktick.task +John Thompson,https://lh3.googleusercontent.com/a-/AOh14GhdJcKVAq10NN0ZzKBUdzMHCHxe1N5N09Hdfo8M,Unnecessarily complex. A simple one dimensional version would be fine,3,0,5.5.5.0,2020-03-21 10:04:40,,,most_relevant,com.ticktick.task +Srishty Chouhan,https://lh3.googleusercontent.com/-LvYYC3A_JKg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNEoQVgk8lnKefw2eB-d3fQPdNdNA/photo.jpg,Good app but in free version they should add more features just like reminder with time duration. I like it's feature of description in which we can add sub task and tick then.,3,0,5.5.0.2,2020-02-08 08:22:13,"Hi, thanks for your feedback. I'll transfer you suggestion about duration reminder to product team for evaluation.",2020-02-12 08:16:47,most_relevant,com.ticktick.task +Asude K.,https://lh3.googleusercontent.com/a-/AOh14GhJY6LNtZcLde4uxaWPeNsvjk0ud_DM4uI9DRboLw,I would buy if there was one-time only purchase. I can't pay monthly. And it's still enough to use without premium but I want premium and one time purchase :/,3,27,5.5.0.2,2020-01-23 21:19:41,,,most_relevant,com.ticktick.task +Stefan B,https://lh3.googleusercontent.com/-SoMhAvhQCEw/AAAAAAAAAAI/AAAAAAAAAk8/AAKWJJNnhIjfY1vjGIJYflnO1b3-ORj0wg/photo.jpg,"All awesome except widgets. They randomly (and annoyingly often) stop working, phone either needs to be restarted or widgets re-added (or both)..",3,0,5.5.0.2,2020-01-22 23:50:05,,,most_relevant,com.ticktick.task +Mister Marcus,https://lh3.googleusercontent.com/a-/AOh14GhuvS9Rg3AEO26Vmeuo6viQlVrVmB2SVSeO3GEk,"So far, it's okay as task apps go. I'm a Wunderlist refugee because Microsoft bought them out (and they destroy everything). Perhaps Tick Tick will grow on me. We'll see.",3,0,5.5.1.0,2020-02-20 01:26:52,,,most_relevant,com.ticktick.task +Tian Bay,https://lh3.googleusercontent.com/-2znER_QeXGc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNjv7PdcB2rha7YVxxkcyFa3hPDLQ/photo.jpg,"Useless. Edit: thanks for replying, I wish the tasks could be repeated every day like in a morning routine that is done everyday to give the user a sense of having a productive morning or something :/",3,0,5.5.5.0,2020-03-18 04:07:39,Hey there! Could you please elaborate on what kind of features would you like to see? We will pass them to the product team for review.,2019-09-17 00:33:23,most_relevant,com.ticktick.task +rahul rajan,https://lh3.googleusercontent.com/-yWvEVK_cGyE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNVOoKsZ8I-Zja4Zv16Vqf8CwEsGA/photo.jpg,Good but the widget glitches out atleast once a month and doesn't display the task list. If that's resolved I could surely give it 5 stars,3,0,5.5.0.2,2020-02-12 00:38:56,We are aware of the bug and are working towards fixing it. Sorry for the trouble.,2020-02-12 11:38:09,most_relevant,com.ticktick.task +Jolina Gregorio,https://lh3.googleusercontent.com/a-/AOh14GiAN7Df_mUj-O0Y_aPbr61uX0t_KpBnYQ0ZtbykUg,Ticktick is one of my favourite productivity app but suddenly the habit tracker doesn't work or respond properly.,3,0,5.5.0.2,2020-02-02 02:06:20,"Hi, could you provide us more details about ""doesn't respond properly""? You could contact us via support@ticktick.com. Sorry for the trouble.",2020-02-02 11:48:13,most_relevant,com.ticktick.task +Ib'nallah Kazi,https://lh3.googleusercontent.com/a-/AOh14GhiL_k-uBMOE-NIz2KGJM8pQ6MPFJxsz6R9CzLZxA,Just upgraded to premium version. App and Google play list subscription at $27.99. I got charged $29.84. ???,3,0,5.5.5.0,2020-03-13 20:11:35,,,most_relevant,com.ticktick.task +Robert Gifford,https://lh3.googleusercontent.com/-Y7OBq_ajIzk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOICpWg22XLmKC09GbgH5yC38_OCw/photo.jpg,You have to subscribe for the pro version. I'd rather just have one flat fee,3,1,5.5.0.2,2020-01-30 21:18:19,,,most_relevant,com.ticktick.task +Dmitry Mv,https://lh3.googleusercontent.com/a-/AOh14GipkjE87tReEPMJRxDYFBqVoygrYAqq1boeQQ7R,"PRO: The functionality and UI are one of the best of these kinds of apps. Everything has a simple look to it, but you can always go deep, add a reminder here, a folder there and do exactly what you want it to do. CON: The feature I want the most (more than 5 repeatable tasks, ""habits"") is locked behind a subscription paywall, and there is no reason for a subscription model. I'd gladly drop a reasonable one time payment for it, but not the asking price month after month, I'm not rich and nether is my country. All in all great if you can afford it, frustratingly limited if you can't.",3,8,5.4.0,2020-01-09 07:57:01,,,most_relevant,com.ticktick.task +Hope Pierce,https://lh3.googleusercontent.com/a-/AOh14GhylfwE8KURFOI1aXFBIdoTASS_GI1ozy21yQ6EQw,"I can't use the desktop app for windows. It won't let me sign in with my google account. Please fix this. Furthermore, some more themes for both the phone app and desktop app; Also, a feature where the user can attach progressive pictures that correlate to their habit, would be nice,as well for premium users. If I can have 99 attachment a day on premium, why not this suggestion?",3,1,5.4.1,2020-01-07 05:46:09,,,most_relevant,com.ticktick.task +vanshika singhal,https://lh3.googleusercontent.com/-3sjPfND639s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMyi9mjNwAy7qNKZ6sooyBsiBdUMQ/photo.jpg,Can add a reminder option withthe specified time,3,0,5.5.5.0,2020-03-23 21:05:40,"Hi, TickTick supports this feature. Please ref: https://support.ticktick.com/hc/en-us/articles/360016492611",2020-03-24 01:27:54,most_relevant,com.ticktick.task +kyle t,https://lh3.googleusercontent.com/a-/AOh14Gg-0fTxHPrzU5vW0a_fR3KiqsD1f-w-WypnREai56Q,"Despite lacking a few features I'd love (Google Calendar integration, please!) this is the best to-do app I've used. It's efficient, without complexities that muddy its usefulness. The highlight for me is a *compact* task list widget, which allows me to quickly view a large number of tasks on my home screen without scrolling. Unfortunately a recent update has made its notifications insufferable - and I can't turn them off! Sadly I may have to uninstall and cancel if this isn't fixed soon.",3,1,5.3.1,2019-11-07 16:14:17,"Hey! Thanks for your support! So sorry for the bad experience, the product team has been looking into the notification design now, we will try our best to adjust it in the future updates.",2019-11-08 01:17:35,most_relevant,com.ticktick.task +Beatrice Barnes,https://lh3.googleusercontent.com/-F0e1sh534WE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOKKybQ4LR8H7yn4Ye6OZsccXvx7A/photo.jpg,"I loved this app when I first got it. Though I still find it useful, the app vs desktop functionality leaves something to be desired. Still, I would have given a higher rating if the app didn't have a habit of moving tasks to a random calendar date instead of the one I selected. I'm not sure I'll purchase a second year subscription.",3,0,5.3.1,2019-11-20 20:30:04,Thanks for your feedback. We’d like to know the details of the problem you mentioned. Please send the details or screenshot to support@ticktick.com. We'll pass it along to our development team and fix it asap.,2019-11-24 08:00:49,most_relevant,com.ticktick.task +Andrei Severin,https://lh3.googleusercontent.com/a-/AOh14GhGk3lW2Imwar6RT6LmqwtOoiHN1V6Qu3ytJtRa,"(I am a premium user) This is a great To-do app : tasks, habits, tags, subtasks, timer, however it lacks things that I use on a daily basis, for example: integration with Google calendar or its own calendar (to add events not tasks Edo Agenda did a great job), I wish tags could have different color so that I can distinguish them just by looking at the color, I wish it had other features like project column where you can manage a whole project (ex: trello), Integration with Google Assistant, etc.",3,2,5.3.0,2019-10-22 19:31:50,"Thanks for your feedback! We deeply respect your advice, and we will bring your feedback up with our team, in order to provide better products.",2019-10-23 01:00:03,most_relevant,com.ticktick.task +River MacLeod,https://lh3.googleusercontent.com/a-/AOh14GgirutQdxXz4arr1xTN4D-eMxnmfOvwGxu4BL-weQ,"I am Apple transfer, and I am yet to find am app for android with the same functionality as the built in iOS app. This one is ok, but does not do what I need it to. Literally all I want an app to be able to do is have reminders pop up when scheduled, then stay on the screen until they are completed. This app will make the reminder pop up when scheduled, but if I don't complete it by the end of the day, it will not stay on my screen. Seems like I have to try and find a different app.",3,0,5.4.0,2019-12-07 18:12:28,,,most_relevant,com.ticktick.task +Mike,https://lh3.googleusercontent.com/a-/AOh14GjKd_bDmEQMjGdPTN3ctHl9g2DmAVsdOMTAYxex6A,"Used to like this app a lot, but recently the time input got changed from a normal clock to a spinner where you have to manually scroll through the numbers to find the time you want. Makes setting reminders very tedious.",3,45,5.4.1,2020-01-09 21:49:09,"Hi, we'll bring back the radical time picker in next update. Sorry for the inconvenience.",2020-01-16 03:26:17,most_relevant,com.ticktick.task +Alex Orlov,https://lh3.googleusercontent.com/a-/AOh14GhSl8DK9H8itHwfH718TiOI4-__ynC6rlCI3AzaEN8,"I like this app but it's so buggy, it has a lot of ""throttling"" while using calendar sync, please fix this. A: I tried to log out and reconnect, this doesn't work. Calendar part is still buggy. The calendar only works well when I turn sync or calendar permission off, but I can't see calendar events in this case.",3,12,5.3.1,2019-10-30 19:54:14,"Hey, Alex! Could you please log out and back into the app – this will reconnect your account to our server +and allow for smooth syncing.",2019-09-10 05:50:51,most_relevant,com.ticktick.task +Sydney Harding,https://lh3.googleusercontent.com/-m2oi27vPXgw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOriEcLTszokIjcMFfI0VMqK-eLSA/photo.jpg,"You should put in the description that the widgets, monthly, weekly, and even daily calanders are for premium users, that's the main reason why I downloaded. If you don't have the money for a subscription its just a checklist, which can be done on most defualt phone calander apps.",3,5,5.3.0,2019-10-25 06:38:51,Thank you for providing your feedback!,2019-10-27 00:10:24,most_relevant,com.ticktick.task +Nic Wray,https://lh3.googleusercontent.com/-zVHfJ87QlbU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNoj3Z8GlaCqb0_l9vU4jNfVgC97A/photo.jpg,It's a very efficient and useful app but I'm disappointed in the stats function. It started out lagging a day behind - fair enough - but now it's at least 5. I like having stats to motivate me and this feature is now useless.,3,0,5.3.0,2019-10-27 08:56:23,Thanks for the feedback. We will pass it to the team for evaluations.,2019-10-28 00:50:16,most_relevant,com.ticktick.task +Santhosh Kumar,https://lh3.googleusercontent.com/a-/AOh14GiSqHr6okUZL-o4Br52JVV5tt7fx_4ishrmNmTYEg,"Hi Wonderful TickTick Developers, I'm not able to buy the premium product. Errros are unavailable for this purchase & OR-CAC-01 I've cleared data on Goodle Play Services, TickTick, etc., UPI Payment, Credit Card, Debit Card, Vodafone Billing, NetBanking, none works. Can you please help?",3,0,5.4.0,2019-12-14 05:18:08,"Hi, please contact us at support@ticktick.com and share the exact steps you took in the app. Screenshots would be very appreciated. We will reach out to you with assistance.",2019-12-14 06:04:57,most_relevant,com.ticktick.task +Mark Williams,https://lh3.googleusercontent.com/a-/AOh14GjGluIA01f0ZFUNKGOtjsX5ZuWwFNVkkgmWdy6HlA,"The new notifications in 5.3 suck. They visually look wrong, don't perform well and are a huge step backwards. Would love to see a reversion to the system notifications rather than custom.",3,1,5.3.0,2019-10-26 17:20:53,Hey! We have been aware of it. Have kept your suggestion in mind and will reevaluate the notification function for future improvements.,2019-10-27 00:13:03,most_relevant,com.ticktick.task +Dražen Klisurić,https://lh3.googleusercontent.com/a-/AOh14GgSIaD51k5xPiDh98nSKKPE2XiVjKpScgo77mOBdHw,It's nice app but notifications don't popup on my Wear OS watch. I can see them in notification shade but watch doesn't vibrate and there is no notification pop up on screen.,3,1,5.3.1,2019-11-13 08:55:07,"Hey! Sorry about that. We have not configured TickTick with wearOS devices yet, which may cause the notification issue you mentioned above. The team has been planning to support it in the future.",2019-11-14 01:37:58,most_relevant,com.ticktick.task +Shawn Drape,https://lh3.googleusercontent.com/a-/AOh14Gjzc7vHbibmlqtLjbrL8ktybdjrO62pW29ThZ6kH5s,"The app has been great on desktop and decent on the phone. Performance of the Android app is noticeably worse than iOS though, especially on start up.",3,0,5.3.0,2019-11-15 01:21:39,"Hey Shawn! Could you please send us the details of the problem you mentioned to support@ticktick.com, we will try to fix it asap.",2019-11-15 01:35:58,most_relevant,com.ticktick.task +Ben,https://lh3.googleusercontent.com/a-/AOh14Gj9OdfJa_VEhTd8RAW9Y3WmU13sXpuCfh2oRDod,"Slightly glitchy and missing some features you'd expect. Syncing between desktop, web and mobile is nice. Missing parity between all though.",3,0,5.4.0,2019-12-30 17:18:12,,,most_relevant,com.ticktick.task +Python Flask,https://lh3.googleusercontent.com/a-/AOh14GgEkFHHnafa-gTtjfsryghlwbY4RvvQyBK1gBOoYw,It's good but it's size is large,3,0,5.5.5.0,2020-03-20 17:34:37,,,most_relevant,com.ticktick.task +Konrad Wójcik,https://lh3.googleusercontent.com/a-/AOh14GhMycc0u4cUOIesgKqHdWi2eymaEyuZhgBC2PZlPg,It work absolutely fine but why every hour try to connect with Facebook servers? Adguard noticed it,3,0,5.3.1,2019-12-27 12:27:24,,,most_relevant,com.ticktick.task +Kirk Brown,https://lh3.googleusercontent.com/a-/AOh14Gimws0RIFT9xkWOfb75MHCAOs9RqQ0ayTNeZnDDDQ,Back button doesnt work,3,0,5.5.0.2,2020-02-02 20:19:06,"Hi, sorry for the trouble. Could you tell us in which scenario back button does not work?",2020-02-03 02:20:21,most_relevant,com.ticktick.task +Yugesh Raguram,https://lh3.googleusercontent.com/-92Jh5Hm2cCo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMvT3QFiUsuua2kcUbJRmKFI7niUQ/photo.jpg,Need Google voice integration service to add task,3,0,5.4.1,2020-01-05 16:51:27,,,most_relevant,com.ticktick.task +Stan Gruel,https://lh3.googleusercontent.com/a-/AOh14Gi48OcKGRE-aCZ8u9XzFTAvGpQEAp_o1Qfd4gWEIg,"The best looking todo app I could find, very complete. Would be the one I use but... Unfortunately sync with Google calendar takes hours, up to a day. The issue seems to be a couple of years old (you can check it in the customer section on their website), and nothing was done to address it, while the competition syncs in seconds. If you don't need Google sync, then it's great. I'm now using another app. Sad.",3,0,,2020-01-19 09:24:54,,,most_relevant,com.ticktick.task +Δημήτρης Πρίμπας,https://lh3.googleusercontent.com/-LuirvtbK3Xk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMvdQra-LI6VlpcVawyg6I1prX6xw/photo.jpg,Very helpful with lots of features. I would like to see the countdown mode work on the widget too though. Also it would be delightful if we could add tasks (like the notification) with a button shortcut such as pressing the home button for some time and the prompt would pop up! But still nothing I would pay annually though..,3,10,5.0.2,2020-03-17 12:40:56,"Dear User, really appreciate your suggestion. We will consider it and improve our app in future.",2020-03-20 01:57:13,most_relevant,com.ticktick.task +Karan Lohan,https://lh3.googleusercontent.com/a-/AOh14Gi6gbKGS74MO7VyEFDB3SbdeY_Mt-v-SsvdFiTEhE8,"It's a good app, no question about it but it's not perfect. I used it for months after abandoning todoist but I'm leaving Ticktick now. It's feature packed but not as polished as other products. The UI is not great and the app has very different design language as well as features depending on which device you open it on. This lack of consistency as well as poor natural language support doesn't make it the perfect ToDo app.",3,0,,2020-02-14 16:03:29,"Hi, sorry for hear that. Could you provide us with more details about the design that you feel not good?",2020-02-16 03:53:14,most_relevant,com.ticktick.task +Nikki Dreeves,https://lh3.googleusercontent.com/a-/AOh14Gh7xJOTc03Pes-ZMleaCqL7Dq3w2CkNqCRfiYWMiw,"So, I really like this app! Probably one of the best planner apps out there, but I ended up uninstalling it because it kept asking to pair with my Google account, and the pop-up was rather aggressive. The cancel button didn't work and it would pop up after every single action. Even after going to the settings to try to sync it with my account, I didn't see a way to sync it! I do really love this app, it's great! But that pop up just ruined it",3,0,,2019-12-04 15:12:37,"Hi, we would like to fix this. As we don't have your email address, can you please write to us at support@ticktick.com so that we can help you better. We look forward to your email.",2019-12-05 02:31:08,most_relevant,com.ticktick.task +Ishika Kanoi,https://lh3.googleusercontent.com/a-/AOh14GjiGLwgs67xRWopeQUFKRman8zRUZ9qIR-usSCLjeg,It has a nice pop up widget for your to do list. The problem with this app is when I want it to alert me always at 9 about it or remind me of my tasks it doesn't. Its just there. I'm still using it but i feel google assistant does a better job of reminding me. So I might delete it later. Not so satisfying.,3,1,5.2.3,2019-10-16 16:39:52,Hey Ishika! Could you please go to Settings > Sounds & Notifications > Reminders Not Working and check your setup?,2019-10-17 01:06:50,most_relevant,com.ticktick.task +Lacy Vannatta,https://lh3.googleusercontent.com/a-/AOh14Gjp0adaGwP_aA2SMz11MR3mTq5mHArnFlYBpcYPSw,"This is a good app, however it has a few bugs that need attention that could easily make the app 5 stars.",3,0,,2020-03-15 03:53:08,,,most_relevant,com.ticktick.task +Amazing April,https://lh3.googleusercontent.com/a-/AOh14Gg5m77DY-GEfDT39iTg5GJLhWAKopnCATnSAk81cA,"I am hating the experience now, this app was so great untill it started missing on my tasks reminders and its crazy i couldn't get a very important task done that i put a reminder to here, and i have allowed tick tick all the functions it needs but this reminder thing, its pissing me off, please get it fixed.",3,1,5.2.2,2019-10-25 04:55:50,Could you please tell us your app version and screenshot us the sound and notifications settings in the app? We'd love to help you with this issue. Please write to us at support@ticktick.com so that we can help you better.,2019-10-27 00:09:45,most_relevant,com.ticktick.task +Planet Fierce,https://lh3.googleusercontent.com/a-/AOh14GjGeQTxyIMh3O3qhLsf5PzHOIcWK5UqkFK9TYLUcg,"overall it's a good task management, I like its Pomo timer and habit tracker. Cons: 1 attachment / day (free version). That's too little, please be kind and add more. Because of that I have to use Google Keeps.",3,1,5.2.3,2019-10-09 15:36:20,Really appreciate your suggestion. We will consider it in the future version.,2019-10-10 01:10:34,most_relevant,com.ticktick.task +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Pretty good. Took a while to figure out how to set up a task. Too many steps/screens to set reminder time, recurrence etc. I feel those should all be on a single screen. After saving, I can't edit. All I get is a prompt screen to sign in or sign up. Great feature for some, but I don't need it. It would be nice if that feature was said to be mandatory in the play store listing. I wouldn't have wasted my time. 3 stars for the ""forced"" share and the many-stepped interface. Seems to be feature-rich.",3,0,4.8.6,2019-03-07 18:15:24,Sorry for the troubles. Product team will follow up on this. Thank you.,2019-03-11 10:55:10,most_relevant,com.ticktick.task +Mark Rollins III,https://lh3.googleusercontent.com/a-/AOh14Gi6AEHS25KPBX31dIrwAmcziUKvgoaLRe__jSM4rlA,"This task app is the only decent option I've found for combining tasks and calendar events into one scrollable widget. Tasks can be set to repeat from the date completed, which is essential for things like haircuts and cleaning schedules. Unfortunately, neither the app nor the widget (which is especially important) has many customization options. One option I would like, in particular, is the ability to hide the widget's title bar. Obviously color and display options would be nice, too.",3,0,4.7.0,2018-10-27 13:23:40,,,most_relevant,com.ticktick.task +Soha Samir,https://lh3.googleusercontent.com/a-/AOh14GjQE7zPSVrQ6y9kgukw7iOY1AgtxzoeaSPp1Ocw,"The app is great but there is a one mistake, there is no way to sing tasks as an unfinished tasks, not deleted or compete it, and the next task in repeated tasks never appear until I complete the overdue tasks",3,1,4.2.1,2019-10-25 13:40:28,Thanks for the feedback! We will pass it to the product team for further evaluations.,2019-10-27 00:11:02,most_relevant,com.ticktick.task +Robert Miller,https://lh3.googleusercontent.com/-4Pqd_IY-8sE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMiNJw79TAv6uCfB-z_g6WA7nMv8Q/photo.jpg,"scary. it's a great program (haven't put enough into it to see if it has the gtasks sync issues) but I don't see a backup option. I've put information into apps then, years later, they change formats and all data is lost. This can never happen. I need to know that I can always access a given version of the program and local data will always work. todo and Microsoft onenote burned me. (Microsoft is extorting, buy office 365 and we'll allow you access to your prior data.)",3,7,5.1.0,2019-06-19 15:17:48,,,most_relevant,com.ticktick.task +Dale Tubb,https://lh3.googleusercontent.com/a-/AOh14GjFmSFyVaErpw4aEjPLr-L_WtLqC9M0qKVgEOj087o,"I love everything about this app, except for how it handles snoozing repeat tasks. It's easy to use and has a lot of configuration, something a lot of other apps save for the premium version. Unfortunately, I find it unusable due to how snoozing repeat tasks then alters the date/time for all future occurrences, making it difficult to manage these tasks when I just want to snooze it this one time. If this was changed I would give 5 stars and upgrade to premium as the app is otherwise perfect.",3,4,5.0.1,2019-04-20 09:46:03,"Hi Dale, thank you for the feedback. The product team will follow up on your advise. Thank you.",2019-04-21 14:16:56,most_relevant,com.ticktick.task +Zahid Sardar,https://lh3.googleusercontent.com/a-/AOh14Gg5gbhQ3DBMjodQ7nHWeLQMBqkOcOj2zRIlMVAcC9Q,"Nice and simple task app, however it is missing a couple of key features that are preventing me from switching over fun my current task app. These are: 1. No ability to set multiple reminders. 2. Cannot hide tasks until a later date. For annual tasks, I do not wish to see them constantly in my to do list, I'd like them hidden until a certain date, usually 1 month before due date. Furthermore, due to the longevity of the task, I like to be reminded early and then again closer to the time.",3,0,,2019-07-10 15:56:42,,,most_relevant,com.ticktick.task +Brayden Houston,https://lh3.googleusercontent.com/a-/AOh14GhcbSAeL8wn8UwHFgWRAEH_J7mIFznGTUCAIGjQIag,"This app is awesome! Clean UI and great dark mode! EDIT: 6 months in and still happy mostly. It would be nice to the the development team take a little more notice of the community. No IFTTT, Google Assistant, or WearOs support. Wouldnt be so bad if there was an API but that doesnt exist either. The developers have ignored these requests month after month for years. Very frustrating!",3,2,5.0.0,2019-04-16 05:20:55,"Hi Brayden, We're working on it this year. Thanks for your understanding.",2019-04-17 10:48:19,most_relevant,com.ticktick.task +Kismet Loftin-Bell,https://lh3.googleusercontent.com/a-/AOh14GixAA4M_RgSnyJRAV3Oe4U3XDueMMUE3iG3HlEgKQ,"This app would be fantastic if the calendar integration also picked up repeating events in my google calendar, but it doesn't. I need to see all that's on my calendar in order to properly plan. After the second repeated event, it shows a blank calendar day, which is inaccurate. This alone makes it just another to do list app without productivity functionality.",3,0,,2018-10-07 17:04:24,"Hi, We plan to make some improvement on this later.",2018-10-08 03:16:44,most_relevant,com.ticktick.task +Lincoln Stewart,https://lh3.googleusercontent.com/a-/AOh14Gg8D3_-GrcNBDBbAonDacm4ePzgACW4aoJSCdaMBQI,"This is pretty great but has what I think is a major bug. In the settings you can choose a default for reminders. So, I choose ""an hour before"". That means, to me, that if I say something is at 2pm, it will remind me at 1pm. However, instead, TickTick sets the task for 3pm and the reminder for 2pm. This is, obviously, wrong. Fix that and its 5 stars but as it stands, I now have to set each reminder individually, which is a pain.",3,10,5.1.1,2019-07-08 17:23:18,,,most_relevant,com.ticktick.task +Mike Babic,https://lh3.googleusercontent.com/a-/AOh14Gh_TbPvo0I5hNe8HajjbRBRdqokUmV_ppv29C6C,"Confusion regarding 'sharing' your schedule with other team members or subscibers. Seriously, would it kill them to put an 'added', 'enter', or some kind of 'task completed' button... it would save a lot of confusion. Sending an invite to fellow workers results in a vague link that seems disconnected with the original intention. No 'Connect with Users' or anything other than a link. For something that's supposed to be time management related, I've wasted hours trying to figure this out.",3,0,4.8.6,2019-02-04 06:56:02,"Hi, we felt a little confusion on the problem you met, please provide us more detailed info, we will help you.If you want to share list with other person, please refer to this. https://guide.ticktick.com/ticktick-android-app/list/how-to-share-lists-with-other-ticktick-users.html. Thank you.",2019-02-05 14:45:39,most_relevant,com.ticktick.task +Mikaela Hedberg,https://lh3.googleusercontent.com/a-/AOh14GhHBpZKsYlUszxPk87Tsp-6V-RN3fyzvghWBO-Fgw,"Pretty decent to-do app, with probably the least annoyances of the very many I've tried over the years. I'm yet to find my perfect match though. The app sometimes require unnecessarily many taps to get something done. It's easy enough to understand, it's just not the smoothest user experience.",3,2,4.8.0,2018-12-25 11:19:54,Thank you for the reply. Do you mean app is complicated and isn't easy to use? You can refer to the android app section under user guide for more help. https://guide.ticktick.com. Product team will follow up on your feedback.,2018-12-25 03:24:30,most_relevant,com.ticktick.task +Mukul Singh,https://lh3.googleusercontent.com/a-/AOh14Gj7JwoKAuoduc0CF2VqwH8echK43iHY9-fPDVEaZQ,"A to do list is a really clever way to look into progress you have made in a day so, it is not just about completing the task it is about looking into the progress you have made by glancing at completed tasks. You don't get default features to see the competed tasks to enable that you have to go into settings and enable that and if you are not interested in compiled tasks anymore you can't just delete those tasks for that you have to select each task individually and then delete it.",3,0,4.8.6,2019-02-27 09:58:54,"Hi, batch edit task may helps. Refer to this. https://support.ticktick.com/hc/en-us/articles/360016273612-Batch-edit-tasks-in-a-list. Thank you.",2019-02-28 06:03:25,most_relevant,com.ticktick.task +Ross M,https://lh3.googleusercontent.com/-_6kjaj51e0Y/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNQ5UQ5byKCBZje_MqfA6OBN-ir5A/photo.jpg,"My review might be a little skewed because I'm looking for something specific. I want an app to create an hourly task today, that doesn't require me to enter in a reminder for every hour in the day. I don't really need a task manager because I have 3 built into other apps, and I don't need a place to keep notes to be reminded about because I also have several apps that do that. Really I just want a flexible natural language reminder app.",3,0,,2019-03-24 12:12:07,"Hi Ross, setting reminders for subtasks may be helpful. https://support.ticktick.com/hc/en-us/articles/360016273572-Add-reminders-to-subtasks-Premium-. Thank you.",2019-03-24 10:03:15,most_relevant,com.ticktick.task +Roman Leleko,https://lh3.googleusercontent.com/a-/AOh14GhjBbpMjLZjndDiFDOeS1yCwtuW2l8C9zGZbCfmi4o,I loved TT and paid for Premium but sooner or later their reminder will let you down :( You can't count on it unfortunately. And it's not because of Android but due to a flaw in the app. If a reminder pops up and you accidentally tap somewhere else in the screen or if you're busy now then the reminder disappears and never reminds you again until you manually find this task again in the list and set a new date for the reminder.,3,4,5.2.0,2019-08-16 04:45:20,,,most_relevant,com.ticktick.task +Siddhant,https://lh3.googleusercontent.com/a-/AOh14Gh9vNNQDa1f1A_yDMeDfNVS_PAoGGvQsZxFwXTjPQ,"I love its functionality and the idea behind this but one thing is really missing in my opinion is the import of tasks, meetings etc from the mails.",3,0,5.2.3,2019-10-11 16:57:55,"Hey Siddhant! Have you tried ""Add to TickTick"" chrome extension? https://support.ticktick.com/hc/en-us/articles/360016272312",2019-10-12 01:42:34,most_relevant,com.ticktick.task +TickingFeather,https://lh3.googleusercontent.com/a-/AOh14GhTv79zk4VPPe35ZkR9SPrzuWN-Hti1OKQD0ZcGFQ,"Pretty good app to take notes and lists, +1 for the smart Snooze feature. However it's disappointing that there's no reliable way of backing up all your data, even with Premium. The only option is to log in using a browser and manually export a backup, but an automated scheduled export within the app would be way better.",3,3,5.1.1,2019-07-01 22:26:30,,,most_relevant,com.ticktick.task +mamy tshipetathanga,https://lh3.googleusercontent.com/-QYJfjIIGDN4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMI087ofPMDlzty4Vnh5zVQ2DvgHg/photo.jpg,"Good app, easy to use but the reminders don't work, no matter what the app says i should do. Please do fix that.",3,0,5.2.3,2019-10-14 16:31:22,Hey mamy! What is your device and system version? Could you please go to Settings > Sounds & Notifications > Reminders Not Working?,2019-10-15 01:28:16,most_relevant,com.ticktick.task +loteneh,https://lh3.googleusercontent.com/a-/AOh14GgX4fQfSDO2yFT0YnC8rrFCeViUDF-WkEezVqLfxQ,"This app used to be helpful, now it doesn't give me notifications unless I open the app. When I do open the app, I am slammed with overlapping ""reminders"". I have tried everything in the settings, but nothing has helped. I like all the other aspects of this app, so it's a shame that the one thing I need it for doesn't work any more.",3,15,5.0.2,2019-05-22 13:00:15,"Hi loteneh, please set up all the settings refer to the steps under “Settings - Sounds & Notifications - Reminder Not Working”, and try again. If problem still exists, please go to Settings, Send Feedback and email us (the email will auto collect the error log from you), developers will assist you to resolve the problem. Thank you.",2019-05-23 02:39:25,most_relevant,com.ticktick.task +Kester Maniaul,https://lh3.googleusercontent.com/-D5Sp90G_D1k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMdioeCUzfBeDD25Hc7fLO5Hh1jFA/photo.jpg,"I like the app on how it organize your tasks. You can customize how you will be reminded and prioritized. Unfortunately, the alarm doesn't work. It either late or not working at all. I thought if I pay premium, it will fix. But it didn't. so 3/5.",3,1,4.8.6,2019-02-18 11:04:36,"Please set up all the settings refer to the steps under “Settings - Sounds & Notifications - Reminder Not Working”, and try again. If problem still exists, please go to Settings, Send Feedback and email us (the email will auto collect the error log from you), developers will assist you to resolve the problem. Thank you.",2019-02-19 01:46:03,most_relevant,com.ticktick.task +Emma Marion,https://lh3.googleusercontent.com/a-/AOh14GiRs1Mvg8xEGeyaJ0o92COylr3Q4OeR862tz3jhHA,"This is by far the best to do list app I've come by. It has rich features and a great interface, even in the free version. It knows the difference between a task, and a habit. My main issue here with the app, is premium pricing. Why exactly do I have to pay a monthly fee for features that can be used offline? Normally, a monthly subscription is to support features that need to be consistently paid for. From what I can see, there's only one. If a one time payment option is added, I'll buy it.",3,2,5.2.1,2019-08-27 11:59:55,,,most_relevant,com.ticktick.task +Kalyan Natarajan,https://lh3.googleusercontent.com/-tzOu-dfPAcw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMivBuLrBkSYj8iy759jOAvsDGZxA/photo.jpg,"Ticktick throws a lot of functions and features into the app, almost the whole kitchen sink. It has some very good and strong features, specially related to reminders, recurring reminders, some ability to recognise natural language dates etc. However it needs to improve MUCH more in search abilites. Except for tags and list names search terms do not show up as you type. Search for tasks with multiple word combinations in the task title does not work. Robust solid search is still sorely lacking",3,3,,2019-09-27 12:57:08,Hey Kalyan! We have been aware of this issue and the devs will get it fixed in the next version.,2019-09-12 01:16:09,most_relevant,com.ticktick.task +Philip Himmelstein,https://lh3.googleusercontent.com/-NvAr_80_szg/AAAAAAAAAAI/AAAAAAAAADs/AAKWJJO13wWjF3U4FoNfvefyr4RriUYXTA/photo.jpg,"I wanted to like it... I've always drooled at the idea of having a to do list app integrate with a calender. But alas, this version is clunky. You can't delete a single date of a recurring calender event, meaning you can't flexibly plan your day while beginning with a rough outline. I switched over to to-doist and Google calender instead.",3,0,,2019-09-11 00:05:02,,,most_relevant,com.ticktick.task +Digby Roberts,https://lh3.googleusercontent.com/a-/AOh14GgcKJJUfIJNcFkxFMr8Rzyc4_-OYe1hoTKZlZg3AA,This is one of the better todo list apps and integrates with events nicely. It is severely let down by poor synchronisation with Google tasks (too slow or forget it) which limits its usefulness where syncing with other applications is a concern. Others sync much more effectively.,3,1,4.7.0,2018-11-02 18:23:00,"Sorry, synchronisation with Google tasks is not in our plan list.",2018-11-05 12:35:25,most_relevant,com.ticktick.task +Christine Muller,https://lh3.googleusercontent.com/-mDFmTrRo6Pk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP-4WWOcaExcH1tOh_5iZUMcWiYuA/photo.jpg,"I love this app but who in the world thought this new scheduler was a good idea? It takes forever to set up a time now. Please, please, please bring back the clock (round) scheduler back.",3,1,,2020-01-05 16:42:02,,,most_relevant,com.ticktick.task +Mariana Esther Martinez-Sanchez,https://lh3.googleusercontent.com/a-/AOh14GjjnXwvPB6Uk4eA1zqJg-95mRdkxG_eHoNXfiBKIMo,"I really liked the app, but couldn't find a way to integrate it with my google tasks, which is a most for me. It is a very complete app, I would even consider a premium subscription if it was a one time thing and not a yearly/monthly system. I will check this again in a couple of months to see if it has improved.",3,0,5.0.1,2019-05-12 14:17:05,,,most_relevant,com.ticktick.task +Espaciode Luz 08,https://lh3.googleusercontent.com/a-/AOh14GjAS_v6ckn1pcYRnk7rbEEotrFiIg1fkflW1Ajm,"Is anything wrong with this App? I do have to reinstall the app every day... Actually it is excellent, but I am just about to give up with it. I thought that was my phone. But It happens only with this App. Could you guys please check what is going on? I do appreciate it, thank you. Thank you for tour reply. It jist disappear from my cel regularly and I have to reinstall it, again and again. I use to move the app from the cel to the SD card. I will try to follow your instructions. Thank you.",3,0,,2019-01-29 04:44:54,"Sorry for the inconvenience. Please tell us the exact problem you met before. App crashes? If so,, please go to Settings, Send Feedback and email us (the email will auto collect the error log from you), developers will assist you to resolve the problem. Thank you.",2019-01-28 01:41:35,most_relevant,com.ticktick.task +kevin cassell,https://lh3.googleusercontent.com/a-/AOh14GghNXo3SLRrpl7PsyPHBHHE2Qp-AIcmGPNr58K-KXo,"great app, better than Google's free one. but paying a subscription for such a simple app has rendered this useless. im happy to oay a one off fee, but im not willing to pay a subscription just access other features. hence why its not 5 stars. its just a to-do list.....thats all.",3,0,,2019-03-02 10:55:19,,,most_relevant,com.ticktick.task +Aderinsola Osikoya,https://lh3.googleusercontent.com/a-/AOh14GggfzKjS4UA_RPuT9icCsyg4_4LfJop0tmyM-w6Ag,"I love this app but there's only one problem: I can't sign up or sign in. I was able to sign up using Google Chrome but when I try to do so in the app itself, it doesn't work. Please can this be fixed? I would like to be able to sync across devices.",3,0,4.8.5,2019-02-15 11:41:31,"Hi, Could you please email to support@ticktick.com directly and send some screenshots to better explain your issue so that we can further assist you? Thank you.",2019-02-18 03:55:35,most_relevant,com.ticktick.task +manik basu,https://lh3.googleusercontent.com/a-/AOh14Ggt1ZtTzVyiSQuekIq1wAkXUkCE_PjQsNfZw5zpSg,"If only this app would allow integration with Google Calendar and Todoist. I really like the promodoro timer feature of this app and wanted to use it for my tasks in Todoist. Although this app allows subscription to local calendar, you cannot use promo timer with calendar tasks. Please allow integration with other apps.",3,1,4.6.5,2018-09-23 04:18:07,Thanks. Product team will follow up on your advise.,2018-09-23 08:30:12,most_relevant,com.ticktick.task +Brett Kelly,https://lh3.googleusercontent.com/a-/AOh14GiiIX48UDOWi648HajCIfusuiF1Jggmc7hOw17w,"I want to like it, but the main thing I wanted it for is location based reminders. When adding a location I hit star to save it, but they aren't saved, you have to manually enter the address every time. I don't understand why everyone gets location based notification so wrong.",3,1,,2019-08-25 14:55:43,,,most_relevant,com.ticktick.task +Raphael Padua,https://lh3.googleusercontent.com/a-/AOh14GhP9GI2o8t_tRqewApB9stlTzsGpmCrHb3r1hzXUIY,Something that bothered with the calendar widget is that tasks that span for multiple days are separated into blocks in contrast to a continuous line.,3,0,,2019-10-23 23:38:48,"Hey Raphael! Your feedback has been noted down, we will do further evaluations and see if it is possible to make some improvements.",2019-10-24 02:16:16,most_relevant,com.ticktick.task +Uroš Aleksić,https://lh3.googleusercontent.com/-XdkbTst81iU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPw0mL8z5u0rJ7Ko3I4mlkNoLGWVg/photo.jpg,"This app is sooo good for and perfect for students! 🎓 Add tasks at ⚡lightning speed and track your pomodoro sessions🍅, habits ♻️ and tasks 📥 without problems!",3,0,5.1.1,2019-12-08 14:24:51,Hello! Thank you for rating us. We will keep making the app better in the future!,2019-12-09 01:39:21,most_relevant,com.ticktick.task +Arpan Vinayak,https://lh3.googleusercontent.com/a-/AOh14GjCjbirPE4WCylsRdTtJXO-bT0OdXOGyMwYgknBPw,I am facing sync issues. Yesterday I added a todo from my laptop chrome website. Today I didn't get it's notification on my phone. It's when I opened the app when I see that it's being added. This should have been done in the background.,3,2,5.1.1,2019-07-04 07:53:17,,,most_relevant,com.ticktick.task +Lisa Kiehl,https://lh3.googleusercontent.com/-JtgvzDxhnfU/AAAAAAAAAAI/AAAAAAAAJ_8/AAKWJJOkNS5s98tAjtVwo4_X73A3DO-luA/photo.jpg,I've recently started using ticktick. so far so good. It would be nice if you could alphabetize the items checked off so that they are easier to find when you want to add them back to your list. I haven't found a list system that does that yet.,3,0,4.8.6,2019-03-20 23:07:59,Thank you for the support to TickTick. Product team will follow up on your advise.,2019-03-21 06:15:14,most_relevant,com.ticktick.task +O S,https://lh3.googleusercontent.com/-JX6L__aujJ0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO45dmYGVyw58dPXBd1JSgu5ZuodQ/photo.jpg,Too many fake menu items in the free version (all that items just ask you to buy the paid version).,3,1,5.2.2,2019-11-06 19:07:27,Thanks for the feedback! We will pass it to the product team for considering some tweaking in the future.,2019-11-07 01:23:15,most_relevant,com.ticktick.task +Emmanuel Sunday,https://lh3.googleusercontent.com/-B00EJSEN60g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM9WZaQTm3omUd3gN6oI9pj3Taf5A/photo.jpg,Nice app but can be improved upon in terms of navigating the app,3,0,5.2.3,2020-01-10 19:19:10,"Hi there, could you provide us with more details about ""navigating the app"" ?",2020-01-16 03:24:20,most_relevant,com.ticktick.task +Jonna Schripsema,https://lh3.googleusercontent.com/a-/AOh14GjziB2IOccuiN6qrrY6F-F-iptf6u95GbRdPKBZuQ,"I really liked the look of this app, and was very nearly a Todoist convert because of the planning features, but the lack of integration with google assistant and other things in my workflow was a deal-breaker. Will check it out again when integrations are better.",3,0,,2018-11-18 11:47:42,,,most_relevant,com.ticktick.task +Akash Purwar,https://lh3.googleusercontent.com/a-/AOh14Gjbt1ugVk1HibdUR0Mwh4GkhnvYAbeqAAtYjIMtiQ,Good as it is simple and effective. It could be more enhanced.,3,0,,2020-02-09 18:17:43,,,most_relevant,com.ticktick.task +Denis Nickoleff,https://lh3.googleusercontent.com/-O68SPCAUcLQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPDakknh298ribV9ZiK9aqM0e0prQ/photo.jpg,"a wealth of options and no guidance on how to use them. templates or examples would be useful. if you're willing to stick with it, you'll find it very useful. the leaning curve is steeper than it needs to be.",3,1,4.8.6,2019-03-09 15:51:41,"Hi, here is the user guide. https://support.ticktick.com/hc/en-us/categories/360000948871-User-Guide. ^_^. Thank you.",2019-03-11 10:46:40,most_relevant,com.ticktick.task +Uriel Caiado,https://lh3.googleusercontent.com/a-/AOh14Gi3KM7IaPhzPPp9j5xsOq2ozYD_ssrH6SNnf1WTtks,"Looks a lot like todoist. I said ""look"" because todoist is bug free when compared to this one. What a waste of time I had trying to set it up both by natural language and clicking...",3,0,,2019-11-14 23:18:03,Thanks for your feedback. We’d like to know the details of the problem you mentioned. Please send the details or screenshot to support@ticktick.com. We'll pass it along to our development team and see if there is any way we can improve it.,2019-11-15 01:34:52,most_relevant,com.ticktick.task +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,It's good designed to be productive but not reliable in practice especially the attachments. Many times they are not on the server and you don't know which ones are there and which ones have failed to upload.,3,0,,2018-11-07 10:57:23,"Sometimes images were uploaded failed due to bad network, please upload them again by click up arrow icon on the images.",2018-11-08 01:17:05,most_relevant,com.ticktick.task +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"ive been using it up almost 2 years now. its a good app - which I always recommend friends and cowowkers to use it Few suggestions: - update the sort ( for task lists) , so we can sort by other filters - for team tasks, probably add the chat feature",3,0,4.8.5,2019-01-14 17:36:08,,,most_relevant,com.ticktick.task +Dallas Helton,https://lh3.googleusercontent.com/-O3thI5Gv9CY/AAAAAAAAAAI/AAAAAAAAe3A/AAKWJJPATT6sHRj6cAxAv92WV1f8ReRMXw/photo.jpg,"I would gladly pay $5 for the premium features of this up, but they want a monthly subscription. I don't think that's a fair price at all, but it's a good app with the free features so... 3 stars.",3,0,5.0.0,2019-03-28 23:01:44,,,most_relevant,com.ticktick.task +James Harmon,https://lh3.googleusercontent.com/-_63EA-bj4Vc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN8AFCOne43UU7dXOs1c7DSHU9QZQ/photo.jpg,"On my S9+, it's started giving notifications some minutes after the event. It actually states it, e.g., ""4 minutes ago."" The time delay varies. I hear the notifications announce on time on my Huawei tablet.",3,0,5.0.1,2019-04-25 19:57:17,"Hi James, Sorry for the troubles. Please lock the TickTick and prevent them from closing. In the recent apps, there is a 3 dot menu in the top right corner. Tap it and you will see the option for locking apps. And set up all the settings refer to the steps under “Settings - Sounds & Notifications - Reminder Not Working”, and try again. Thank you.",2019-04-28 12:23:45,most_relevant,com.ticktick.task +Amirul Azizol,https://lh3.googleusercontent.com/a-/AOh14GjDeeYislQbQZ42MUZsiu0_y9-V-vN10yfgykOUEA,"Wish the google assistant integration could be improved. Every time I ask it to set a ticktick reminder, it just shows TikTok. Also, every time I restart my phone I need to boot up the app, otherwise the widget panel doesn't show up.",3,0,5.2.2,2019-09-25 13:34:48,Noted! Will bring this up with the development team for further improvements.,2019-09-26 00:54:57,most_relevant,com.ticktick.task +Derin K,https://lh3.googleusercontent.com/a-/AOh14GiLFRpLGJgShsxq8AYFGWthqYfCyaDaChucUZiUmA,Fix permissions for 5 stars. Great design and UI but you shouldn't need access to my contacts to login with my Google account. Google provides an API for it that all other apps use without contacts permissions.,3,0,4.8.5,2019-01-20 19:24:18,Sorry for the inconvenience. Developer will look into the issue asap.,2019-01-23 12:48:00,most_relevant,com.ticktick.task +Bilal Qasim,https://lh3.googleusercontent.com/a-/AOh14Ggp5_4RyGZ9MuoOLL5QgaG3VL_x5FjWIRWS_PkhPg,"Hi there, I am facing reminder notification issue in infinix 4 hot pro 7.0. Basically I love all features of app. But without reminder notification its worthless isn't it? Really don't wants to uninstall it so Waiting for update to solve the issue",3,1,4.7.0,2018-10-13 17:16:18,"Hi, please set all the mentioned steps under Settings - Reminder - Reminder Instruction in the app. And make sure TickTick is always running in the background.",2018-10-15 02:09:18,most_relevant,com.ticktick.task +Rafael Gonçalves,https://lh3.googleusercontent.com/a-/AOh14GjRWMALcyQ79VHDtMnBEZFym4NYxPCuQfC2h6lrRQ,"good app,but Im a premium user for more than one year and have been requesting features on the official support forum (like change dates of lots of overdue dates at once on windows app) and never even got a response.",3,4,5.1.1,2019-07-19 05:25:40,,,most_relevant,com.ticktick.task +Eli Greenfeld,https://lh3.googleusercontent.com/a-/AOh14Gj_RmQUTjSRoZCcD8SzHUxtPJgzry7W7A9N0b6lG_I,"This app is going in the right direction, just switched from Todoist. I think they have to concentrate on adding more (what should be) standard features before adding things like Hobbies etc. It's ok, but far from amazing in my opinion.",3,1,5.2.2,2019-09-18 10:31:48,Thanks for your support!,2019-09-19 00:47:15,most_relevant,com.ticktick.task +Livia A,https://lh3.googleusercontent.com/-6CUrfopESOk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMAA-nWLv09cWd7xkVv2PsvK7w8Nw/photo.jpg,"Disappointed - needs complete connection to your Google account to work, too many ads, and most features don't work in the free version. Time wasted.",3,1,4.5.0,2018-10-24 02:26:12,"Hi, there are no ads in the TickTick. This should be a misunderstanding.",2018-10-28 13:46:22,most_relevant,com.ticktick.task +Susan B,https://lh3.googleusercontent.com/a-/AOh14Gi7v3CPi4_dtY-6ui3k1tvVEs8w7OWyqkCPkwx_XQ,Not sure...bought the premium subscription for a year...not sure though. Help pages are pretty good so I will keep working with this. I like that it crosses my devices.,3,0,5.0.0,2019-04-14 16:31:55,,,most_relevant,com.ticktick.task +ALISON MAYRIDOY,https://lh3.googleusercontent.com/a-/AOh14GiSiCtdzC-pA0-uQGI5eze1_Pl9JVjq1_cPbMtkVA,"Lack of function in free version to extent i couldnt use at all. I am prepared to pay for planner i like, but it was impossible to tell. I didnt want to give 1 star though, as it did look nice.",3,8,5.2.2,2019-09-22 20:28:19,"Hey Alison! Could you please elaborate on ""Lack of function in the free version to extent""? Which feature are you referring to?",2019-09-23 00:36:11,most_relevant,com.ticktick.task +Kak Ha,https://lh3.googleusercontent.com/a-/AOh14Ghh3ploHRXaKxvBP4eAhxxcfxqVeDsDy6shWqgpAPo,"There is no option for repeated activities is a few hours. I will give 5 star and uninstall Todoist if I can set 'every hour / every 3 hour'. So far, this app is better than Todoist.",3,0,5.0.1,2019-05-01 00:46:14,,,most_relevant,com.ticktick.task +Pavan Haleangadi,https://lh3.googleusercontent.com/a-/AOh14Gh7m4en6o_H3LbTHTWwLGITs6xrCOd-jFBVKzVGW20,Love the experience. Will give 5 starts when there wont be any subscription for pro features. One time purchse is what will make this app perfect.,3,0,4.8.6,2019-02-18 09:34:56,,,most_relevant,com.ticktick.task +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,easy to use and calendar is useful. i think its just a cash grab to pay for full month calendar view. but other than that its great,3,0,4.8.6,2019-02-14 20:13:29,,,most_relevant,com.ticktick.task +david sim,https://lh3.googleusercontent.com/a-/AOh14GhuyWHoH2Vdlr0AtriRMPUFJzizngRsJ5SiOUro7U4,"The Apss so far is the best to do Apps I have use, however the Tag unable to sort alphabetically, we hav to everytime sort manually, not user friendly. I will rate 5 star if can settle this problem",3,0,5.0.1,2019-05-10 12:54:11,"Hi david, product team will follow up on your advice. Thank you.",2019-05-12 07:44:05,most_relevant,com.ticktick.task +AliReza Mohammadi,https://lh3.googleusercontent.com/-RaZpPzxi15A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM0eNZ6od_0hM60U5Jc-z8aGVIEcA/photo.jpg,"Hi, i change ""start day of week"" in the sitting but in the repeat option, when i check the ""skip weekend"", the program skip saturday and sunday!!! if first day of week is Saturday, then Thursday and Friday are weekend, please fix it for 5 stars! this is very important. thanks.",3,0,5.0.2,2019-05-23 05:57:02,,,most_relevant,com.ticktick.task +SAI SIDDARTH MANOJ MUMMIDI,https://lh3.googleusercontent.com/a-/AOh14GgZvya72teUUTjJfqLDEhFKsqk7a5S5QPmTxvmF,"good app ,but some feature are to be updated still like, it should actually calculate the petcentage of work done by us on each task and should be more attractive i think so",3,0,5.0.0,2019-04-18 15:36:11,,,most_relevant,com.ticktick.task +Shankaran Pillai,https://lh3.googleusercontent.com/a-/AOh14GhpAafyKfXTVeZScwEHewL4TQ0xO8THJc0yYDbczw,Please Keep A Tab for (Accidentally ) DELETED Tasks.If some 5-6 Tasks gets accidentally Deleted it gets very irritating to again set the tasks.So it'd be a great idea to keep a recycle Bin for the Deleted Tasks.Thanks!!,3,1,5.2.0,2019-08-22 20:36:05,,,most_relevant,com.ticktick.task +Black Pentagon,https://lh3.googleusercontent.com/a-/AOh14Gh50EG_G3Z2mxRlupruIlXxWt4K8qVb743V-g8t_g,It could have been a robust app but these bunch of loosers want you to pay every month is annoying.,3,0,,2020-03-01 18:14:43,,,most_relevant,com.ticktick.task +t g,https://lh3.googleusercontent.com/-qRKjG4mqdt0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOynuXcEr0UpTpkcOH9mmFIAk7SMw/photo.jpg,"Great app! It will be the best app, if developers add an ability to make schedule of pomodoro goals. 10 on Monday, but 5 on Tuesday for example.",3,0,,2018-09-30 23:03:00,,,most_relevant,com.ticktick.task +Nick Stern,https://lh3.googleusercontent.com/a-/AOh14GiK3BxMY2OJzjs7l3eX_AybtlnQ-mogUT895sAwlRk,"To finish scheduling a task, you must click a small arrow in the top left corner. Clearly, the development team never tested this becsuse it feels horrible.",3,0,,2019-04-06 04:46:20,"Hi Nick, It is currently designed like this. In the process of using, what problems have you encountered? Please tell us, and the product team will follow up well. Thank you.",2019-04-07 15:46:40,most_relevant,com.ticktick.task +Roma Makhnyk,https://lh3.googleusercontent.com/a-/AOh14Gi5d2FuDjziF7EvHPPpcvlhzCc6z4XuAoyedK7tIg,"The app is great, but I really don't like new dark styles with orange details color... Please add the ability to change details color back to blue (or some others).",3,2,5.0.0,2019-03-26 06:11:15,,,most_relevant,com.ticktick.task +Arjoval Genil,https://lh3.googleusercontent.com/a-/AOh14GgIRSSNrRlw6e-7WdB18kNKblv0JT4YDSWjmktq9g,"it's better to have biweekly schedule. Im using this app to manage my to do list, unfortunately, it doesnt have every other week schedule or biweekly schedule. to be honest i have lot of things to do during that schedule because my oayout is every other week so i really need to have that kind of schedule. olease add that up. thank you.",3,2,4.8.6,2019-02-08 01:09:14,,,most_relevant,com.ticktick.task +Bahareh Vv,https://lh3.googleusercontent.com/-GPg5WFR71y0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMiy9cnV0BH93bjwwjgvcZpFtnWrg/photo.jpg,"Nice app. but, why it doesnt sync with my google acount? I mean when I add a new task, it does not appear in my gmail task!",3,0,,2019-03-12 08:23:06,"Hi, TickTick does not support syncing to Google Tasks. TickTick has its own cloud that can be synchronized across multiple platforms. You can find more detailed info here. https://ticktick.com/home.",2019-03-13 02:50:37,most_relevant,com.ticktick.task +Vallabh Darole,https://lh3.googleusercontent.com/a-/AOh14GhgGTFLOhop4zjePjr8An4Eh8tK3sYUuTWmtUUThw,previous it working very fine but now there lots issue with the application. eg. if you had not complete yesterday task it wont allow you complete today tasks even reporting is not working,3,1,4.8.0,2019-01-08 09:07:30,"Hi, for the repeat task, today task will show after completing yesterday task. Thank you.",2019-01-08 10:50:27,most_relevant,com.ticktick.task +Sean Grant,https://lh3.googleusercontent.com/-bfJXfj50oNs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNaRZ4G86RyBLCLa8q1f2anNzwmAg/photo.jpg,Good app but you need to pay a subscription to use it fully. There isn't an option to pay for the app outright which is a shame,3,1,5.1.1,2019-07-23 08:59:13,Sorry to hear you are unsatisfied with the subscription. I hope you can enjoy our app again in the future.,2019-07-30 01:41:58,most_relevant,com.ticktick.task +Hanna Smith,https://lh3.googleusercontent.com/a-/AOh14GgSK_YlStWpN7cGHJWpSEU0l5fbsmuEi8jFij7kiow,"Unfortunately sometimes the reminders don't go off when they're supposed to. However, I like the easy design, so I can just write things quickly.",3,2,5.2.0,2019-07-25 16:31:41,Thank you for your kind feedback. We are aware of this problem and are currently working on solving it.,2019-07-30 01:43:51,most_relevant,com.ticktick.task +Lesley Portbury,https://lh3.googleusercontent.com/a-/AOh14Gg6hmeAJ2vA7Yullsgmq4JNk5nj-JjWHOkATNouVQ,"Still evaluating the app, lots of things I thought are not available on free app, must upgrade to premium to use. App good to use so far. That why rating low.",3,0,,2019-05-19 13:44:35,,,most_relevant,com.ticktick.task +Sunil Garg,https://lh3.googleusercontent.com/a-/AOh14GhIy1VEpiILx8WmYuRhAxOU9DL74q70a3H0hT5U,Everything is perfect. Its just that the completed tasks are too faded to be visible in the widget. Kindly fix this. I am deducting 2 stars for this problem,3,0,5.2.1,2019-08-27 20:14:22,,,most_relevant,com.ticktick.task +salman shaikh,https://lh3.googleusercontent.com/a-/AOh14GigiIX_IyN-6xom6N_f-g2m2ysk3G7jZx_Iu2lNag,"Respected Team, It is not working in oppo F5. Actually it is not reminding me despite off given all the permissions. Find out the solutions.",3,0,4.8.0,2019-01-08 20:05:22,"Please set up all the settings refer to the steps under “Settings - Sounds & Notifications - Reminder Not Working”. and try again, If problem still exists, please go to Settings, Send Feedback and email us (the email will auto collect the error log from you), developers will assist you to resolve the problem. Thank you.",2019-01-15 14:17:00,most_relevant,com.ticktick.task +Daniela Goulart,https://lh3.googleusercontent.com/a-/AOh14Gj5Hg-7sDTdRMmKlpfsm1HDNevVug3oRnQ5noZQKcc,"Since it can't sync with google tasks I will stick to GTasks app. Nothing beats the sliding task lists and syncing with gmail.sorry, i wish this synced, it would be the ideal and best of both worlds",3,0,4.7.5,2018-11-27 10:56:17,,,most_relevant,com.ticktick.task +Rejwan Rahman,https://lh3.googleusercontent.com/-Fg1xzhdlWHw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNgaZX_jzAvF1t1s_SqTGcga3OGBA/photo.jpg,Great app only problem is that whenever I set reminders for the task I set I don't really receive them would definitely rate 5 stars if this problem is fixed,3,0,5.2.3,2019-10-04 18:44:09,Thanks for the positive review! Could you please go to Settings > Sounds & Notifications > Reminders Not Working and see if it works?,2019-10-05 02:31:45,most_relevant,com.ticktick.task +Luiz Gustavo,https://lh3.googleusercontent.com/a-/AOh14Gi26wNnp0XhQQUYRPNbSDuhLzZdlYNmbBeTw4Uuww,"Great app. However, I was not able to sync with Google calendar and it was a deal-breaker for me. Uninstalling...",3,0,,2019-02-10 13:13:42,"Hi, you can subscribe to third-party calendars in TickTick. Please refer to this. Subscribe to third-party calendars in TickTick. Thank you.",2019-02-12 01:52:06,most_relevant,com.ticktick.task +Jed and Ann Brown,https://lh3.googleusercontent.com/a-/AOh14GjJas8gZb9zZJ8b2nVNFdekYlKzS_OfCcnFR9QtMuE,"Overall a well-designed app that I would otherwise use, except for the lack of Google Assistant integration, a la Todoist.",3,1,5.1.0,2019-10-07 00:04:12,"Unfortunately, to support Google Assistant is not in our current plan. But we will reevaluate the idea in the future if needed. Thx anyway!",2019-10-07 02:54:49,most_relevant,com.ticktick.task +Ashley Vermeulen,https://lh3.googleusercontent.com/a-/AOh14GhSI8PiHw7Js4qZBs2euz9zRIBrpaqIybezuSLQD1E,would be great to have notes implement into the app. that way it would be a bit more multifunctional.,3,0,5.0.0,2019-04-11 22:42:33,,,most_relevant,com.ticktick.task +Christopher Craven,https://lh3.googleusercontent.com/a-/AOh14GgFety-XU72skCgEVOrYZMhnWj8SGTr9md7Ut06pw,"App was great, but now I cant set my work end times, only starting due to it being restricted for premium only now after the new update. Bad timing guys. Uninstalling app.",3,3,5.1.1,2019-07-20 08:17:48,,,most_relevant,com.ticktick.task +mike L,https://lh3.googleusercontent.com/a-/AOh14GjCktGXCEl9vnJmJIgNfjzh10pje4loIlBG2wGNtjc,I like it. Paying month after month for premium features isn't for me though.,3,0,4.8.5,2019-01-15 17:06:01,,,most_relevant,com.ticktick.task +Ong Kai Yong,https://lh3.googleusercontent.com/-K5CwwJlh_q8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPaxtv9Sw9n9-zYb5tZQJEwKuz-fA/photo.jpg,overall alot of features. can make the app more organise using colors. cannot find way to export when switching phone.,3,0,5.2.0,2019-08-14 05:13:50,,,most_relevant,com.ticktick.task +Dionisis Falireas,https://lh3.googleusercontent.com/a-/AOh14GioeA__oAuLfWwq3gDU4ASDDWpkqdT-w2vE2pYJ1g,"A very beautiful app, let down by the lack of subtasks and list item's lack of notes.",3,0,4.6.5,2018-10-07 20:33:09,"Hi, please refer to this. https://guide.ticktick.com/ticktick-web-version/task/how-to-create-a-checklist.html",2018-10-08 03:12:45,most_relevant,com.ticktick.task +Sabre Toothed,https://lh3.googleusercontent.com/a-/AOh14GhDpDN6QRSkUO7FTF3MQGcNuHeL-5fCPzTp4kNvaQ,Monthly and weekly view should be free. Should also include the option to delete out dated tasks in the recurring tasks category .,3,0,4.7.0,2018-10-15 17:15:31,,,most_relevant,com.ticktick.task +Deborah Paegelow,https://lh3.googleusercontent.com/a-/AOh14Gj1xvdKs8K3tWsUquTmnQIYiFkfqMbOmqb2Kq45Pw,I am having a hard time with adding events on days different than today. This should be easier to use.,3,0,4.7.5,2018-12-08 00:47:28,,,most_relevant,com.ticktick.task +Mina Pendar,https://lh3.googleusercontent.com/a-/AOh14GhVtWWByiS4wDcMA-i7YjWcQF_nnRhPnk0rRfBmvA,"I have a big problem with this app, daily routine doesn't repeat unless i complete it. But somtimes i really could not complete it. then ist stop, why?!!!!",3,0,,2019-07-20 06:42:09,,,most_relevant,com.ticktick.task +Jacquelyn Bradley Nelson,https://lh3.googleusercontent.com/-IPsbN0wgEE4/AAAAAAAAAAI/AAAAAAAABw4/AAKWJJOlAN9fmthe07iHzH2HHs0ZgNvl8w/photo.jpg,"I really like this app. Still having problems, trying to figure out how can it work best for me.",3,0,4.7.0,2018-10-30 00:16:46,,,most_relevant,com.ticktick.task +Kingzyyy,https://lh3.googleusercontent.com/a-/AOh14GiUhdXzLJhVu_BALnLyQJTOa1Hs4j8XI_bnKQ3c8A,Great app. I wish I had more chance to add reminders without buying premium.,3,0,,2019-09-09 14:02:49,,,most_relevant,com.ticktick.task +Karen Smith,https://lh3.googleusercontent.com/-VvRSNkiq6a0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJORVoClriHQnOQz6S_ti-95C-nvcw/photo.jpg,"Still trying to figure it all out. Not tech savvy, so what looked very easy at 1st just doesn't seem to be for me. Still trying tho!",3,0,4.6.5,2018-10-12 14:47:26,,,most_relevant,com.ticktick.task +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,For some reason syncing is broken in the latest update.,3,1,4.7.0,2018-10-24 01:06:41,"Hi, we need more detailed info to help you resolve the issue. In the app, please go to Settings - Feedback & Suggestion - Send Feedback, then send to us (the email will auto collect the error log from you). We will look into the problem asap.",2018-10-24 01:15:10,most_relevant,com.ticktick.task +Samy Cooper,https://lh3.googleusercontent.com/a-/AOh14GiwvdzXI4bqDpbop6U-HqMtwS8hxlw3PQAkXJ43Bw,"Its honestly a great app, other than the fact that it keeps pushing for me to upgrade and i cant do certain things unless i upgrade.",3,0,5.2.1,2019-09-08 15:39:09,,,most_relevant,com.ticktick.task +Syl via,https://lh3.googleusercontent.com/a-/AOh14GgDWIGJcEW7GNOUMgvZ58SmH62FbsKKp4W7_CZLQg,Basic features for free. Pricy premium monthly subs for rarely used application.,3,1,4.7.5,2018-12-05 08:11:41,,,most_relevant,com.ticktick.task +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"There was no way to set tasks to repeat (every day, every Monday, etc.).",3,0,4.7.0,2018-11-02 12:37:23,"Hi, please refer to this. https://guide.ticktick.com/ticktick-android-app/task/how-to-set-recurring-tasks.html",2018-11-05 12:41:48,most_relevant,com.ticktick.task +Harris Kunakira,https://lh3.googleusercontent.com/a-/AOh14GgbtVq08Lz1VJDEyyy_vlTgcLB7dMrOAHJyrvkCYQ,the app and widɡet are very ɡood. Will change to 5 start when I can be able to add task using google assistant.,3,0,5.2.1,2019-09-05 13:18:29,,,most_relevant,com.ticktick.task +Ben Hannel,https://lh3.googleusercontent.com/a-/AOh14GgAuAIeYeN7HxT3d67s7War64j6pd1UKwvh9nIESJA,Sync with Google Tasks totally broken- tasks are months out of date.,3,2,5.0.0,2019-04-12 08:45:14,"Hi Ben, Sorry for the inconvenience. TickTick doesn't support syncing with Google Tasks. Or do you mean Google calendar events? Thank you.",2019-04-14 12:40:07,most_relevant,com.ticktick.task +John Hunter,https://lh3.googleusercontent.com/a-/AOh14GjDkwxceWvXkudGYZW7N6VjumqyXO23eYORcnuswQ,good but needs a true Black background option with white letters. dark grey isn't Black,3,0,4.8.0,2018-12-27 02:27:53,,,most_relevant,com.ticktick.task +S,https://lh3.googleusercontent.com/a-/AOh14GibdUDd6yzakSsRTrYirMHFAOUlcdq6bkWWQOIj4Q,I would really appreciate if dev focus on improving existing features like natural dates and time rather than adding new features.,3,1,4.8.0,2019-01-06 06:27:59,"Hi, we need more detailed info to help you resolve the issue. In the app, please go to Settings - Feedback & Suggestion - Send Feedback, then send to us (the email will auto collect the error log from you). We will look into the problem asap.",2018-10-15 08:54:24,most_relevant,com.ticktick.task +Himanshu Agarwal,https://lh3.googleusercontent.com/a-/AOh14Gik0h-S5ABHQXCUxCfahba7bo73m8S7_7fNQxuR,The app is good but reminders don't seem to be working.,3,0,4.8.6,2019-02-19 07:26:11,"Please set up all the settings refer to the steps under “Settings - Sounds & Notifications - Reminder Not Working”, and try again. If problem still exists, please go to Settings, Send Feedback and email us (the email will auto collect the error log from you), developers will assist you to resolve the problem. Thank you.",2019-02-20 01:43:01,most_relevant,com.ticktick.task +Sven Stones,https://lh3.googleusercontent.com/-rtYw-WpAw38/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNt3oxqEQPiahZ_iC9hTbnfNpDwFg/photo.jpg,Juat started using this and although it seems to do most of what i need i think it has some basic things missing.,3,0,4.8.6,2019-02-13 13:40:56,"Hi, what basic things do you think are missing? The product team will follow up. Thank you.",2019-02-14 01:51:07,most_relevant,com.ticktick.task +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Nice app but there is a with the tasks syncing with other calendar.,3,2,5.0.0,2019-03-30 10:21:31,"Hi there, Sorry for the trouble. Could you please be more specific about the case? We will look into the issue soon. Thank you.",2019-04-01 11:19:45,most_relevant,com.ticktick.task +Seb,https://lh3.googleusercontent.com/a-/AOh14GgXyfTShke5oDFnyAK9lUieOHPL6kgJ67D64yw0KpY,Good but flawed. The app does not support tasks from caldav such as icloud reminders 🙄,3,0,5.2.2,2019-09-29 19:14:45,Sorry! Currently you can only import the icloud reminder in the iOS device.,2019-09-30 01:04:23,most_relevant,com.ticktick.task +Mitch Obrien,https://lh3.googleusercontent.com/a-/AOh14GiZOMRH4aV36tZyd9aZ8kSN-eIbBvq8IaK-DN00jA,Does what it's meant to. Limited to the amount of list you can make unless you pay for premium,3,0,4.7.5,2018-12-16 14:16:20,,,most_relevant,com.ticktick.task +Virendra Shivkar,https://lh3.googleusercontent.com/-P6RKCy1TNF8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMrQJmSl0GK1Tm7b1drbHbgC7C_bQ/photo.jpg,It is good sometime app does not work properly. Intimation not shown on time.,3,0,5.2.1,2019-08-30 06:27:44,,,most_relevant,com.ticktick.task +Raj Bharath A.S,https://lh3.googleusercontent.com/a-/AOh14GjJZBFbQHHwY3zGG7PmtxAE6TkYJXBHNBWng6jeNg,1. Notifications comes over my locked screen 2. Notifications doesn't work properly on time Would be very helpful if you add Notes.,3,4,5.1.1,2019-06-24 06:42:49,,,most_relevant,com.ticktick.task +Arthur Zubarev,https://lh3.googleusercontent.com/a-/AOh14GjLjGPu2u1SkguYPzqZ9dQBv069aFHGX_fNmOnhng,Doesn't beat most others in it's free version and too costly in the paid,3,0,,2019-10-14 13:26:51,Sorry to frustrate you by our current pricing. The team will have an evaluation together and see if it could be adjusted in the future.,2019-10-15 01:27:03,most_relevant,com.ticktick.task +Andrew Briggs,https://lh3.googleusercontent.com/a-/AOh14GgnFL-X1ducOzU6YEcIOemfEgT6IGXILyC5dUEzxw,Ugh... too complicated just want plain priority list. Uninstalling.,3,1,5.2.2,2019-09-09 21:27:40,,,most_relevant,com.ticktick.task +Richard Rafaj,https://lh3.googleusercontent.com/a-/AOh14GhCCOidgvyNwNnFJXc9VZhiiz796eKSRsahCbXVbH0,Vibrates even in silent mode without vibrations (even on 485),3,2,4.8.5,2019-01-24 06:29:22,"Sorry for the inconvenience. Have you enabled “Do not disturb” mode on the phone? Could you please provide more settings info, if possible, please contact us at support@ticktick.com, attached settings screenshot. The developers will look into the issue. Thank you in advance.",2019-04-10 02:23:04,most_relevant,com.ticktick.task +Ru,https://lh3.googleusercontent.com/-BEXOBQ6QUdo/AAAAAAAAAAI/AAAAAAAAziQ/AAKWJJN-Xsldc5VuFVSSwnZ9dUigUdYVuw/photo.jpg,Smart input while editings tasks should be same as when creating tasks.,3,0,4.8.0,2018-12-23 18:53:00,,,most_relevant,com.ticktick.task +Muhammad Mustafa,https://lh3.googleusercontent.com/a-/AOh14GhiW9PJMr9-ZHkPh54L36OtME_ATRCaxUb84gAGDA,really good app really helpful. but guys if you can change the reminder Sound from notification to Alarm. plzz,3,0,,2019-07-23 19:52:22,Hello! Thanks for the feedback. Will pass it to the product team and we do some evaluation asap.,2019-07-30 01:43:04,most_relevant,com.ticktick.task +J L,https://lh3.googleusercontent.com/a-/AOh14GjecKlxRx7L9AZuq5YSrZkNLz46CKNX70j0Lopi1X0,Can we please have sub tasks Placed under our main task… ? The analytics are not so useful to be honest..,3,0,5.1.1,2019-07-03 23:48:13,,,most_relevant,com.ticktick.task +Bandisa Masilela,https://lh3.googleusercontent.com/a-/AOh14GhB186ynSsXCaP7shHDSmNG7uUmwyLOffCMRzwZBw,"I love the app but please, allow me to just buy the app and be on my way, what's up with the subscriptions?",3,0,5.2.0,2019-08-12 18:25:25,,,most_relevant,com.ticktick.task +Jim M,https://lh3.googleusercontent.com/-hUSCu6qhxH8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOi-MxFgQs9bIJrdfTQzK2MscHihw/photo.jpg,Was looking for something which syncs with Google Tasks.,3,0,5.2.1,2019-08-25 05:46:03,,,most_relevant,com.ticktick.task +Edwin Tang,https://lh3.googleusercontent.com/a-/AOh14GiM9fnAtugA34VsJR1Zl3HOEqwU9xPCE1jfP6_XqpY,would give 5 stars but locking the aync function through a subscription sucks,3,0,5.0.0,2019-03-28 04:03:05,,,most_relevant,com.ticktick.task +yogesh bahir,https://lh3.googleusercontent.com/a-/AOh14GgQy-XcYiHy0_bWC-sKBEyIvb-loqd-OT9UbfSpKw,"Nice app but ,I can not add any winget to my mobile screen,",3,0,5.2.2,2019-09-13 13:55:46,,,most_relevant,com.ticktick.task +Shubhankar Bag,https://lh3.googleusercontent.com/a-/AOh14Giu6ZMFAhi_Fj7opzSfJqM3kgl2ZKRSUqaNtJh5lg,Please make Weekly view free for every device,3,0,5.5.5.0,2020-03-24 02:51:28,,,most_relevant,com.ticktick.task +Kartikeya Mehta,https://lh3.googleusercontent.com/a-/AOh14GiLGSzDaQZg_NPZ9EAjsFYoma4hPKUMJvSisH3lYw,"Sometimes, the notification doesn't ring.",3,0,,2018-10-30 12:36:52,"Hi, please refer to the Settings - Reminder - Reminder Instruction in the app, set all needed step firstly.",2018-10-31 02:28:53,most_relevant,com.ticktick.task +Renika Widya Putri,https://lh3.googleusercontent.com/a-/AOh14Gj4M-xpGFpDTUbVvyTuj1S5BObPF-xRvWvVtw4qjg,why cant i logged in. -_-,3,0,5.3.0,2019-10-20 08:52:10,"Hi, please contact us at support@ticktick.com and we will figure out why you are not able to open the app. Thanks.",2019-10-20 13:52:56,most_relevant,com.ticktick.task +nithin kumar,https://lh3.googleusercontent.com/a-/AOh14GiojyGGZmJfMS61PaJxmUGw8xEBsSGitgBQCteyoSQ,"cant postpone a task: ""the reminder you set was invalid because its already overdue"" ??? thats the reason im postponing it...",3,9,5.2.0,2019-08-04 02:54:44,,,most_relevant,com.ticktick.task +Jordon Baade,https://lh3.googleusercontent.com/a-/AOh14GiCMqgisLgnyQgPlF9Q1KbWcYpi-mLi_Zg7w_MGy70,Missing key features cross platform,3,0,4.8.0,2019-01-04 17:33:59,,,most_relevant,com.ticktick.task +John Smith,https://lh3.googleusercontent.com/a-/AOh14GiSM7boLMe8InKqBcHxghcfDhQRJqKnO4RKiyCipg,"pls my dudes, minimize number of clicks to set/edit/delete task's reminder time. I feel like all I do is tap tap tap tap!",3,0,,2019-04-19 13:25:58,,,most_relevant,com.ticktick.task +Kailash Shrestha,https://lh3.googleusercontent.com/a-/AOh14GjDkpItUeJ8fCwS187oofg0gb0lftLNCCOlG8JQRg,it is simple to use.ok for day to day use..,3,0,4.8.6,2019-02-23 03:19:07,,,most_relevant,com.ticktick.task +Marlyn Moya,https://lh3.googleusercontent.com/-ne5MzYUhu10/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO9Mg1pA-qhuujoPVdTzB_Hmcqbrg/photo.jpg,Please add location-based reminders and missed call reminders,3,0,5.2.0,2019-08-19 07:40:51,,,most_relevant,com.ticktick.task +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,No internet connection all the time !,3,0,4.8.6,2019-03-19 12:04:56,Sorry for the troubles. What toast information do you see in the app? We need more detailed info to help you resolve the issue. Thank you.,2019-03-20 01:20:19,most_relevant,com.ticktick.task +Derek Webster,https://lh3.googleusercontent.com/a-/AOh14GgcUUNw8C-ngVehLSh2sXtJ46yRMk4BU220LgJpOg,Jus started using. So far I like it.,3,0,5.5.1.0,2020-03-20 12:35:59,,,most_relevant,com.ticktick.task +BradandJessi Hill,https://lh3.googleusercontent.com/a-/AOh14GixT8nTXUMxaudU9PjlAWyNmh-gSqNhJVQblwrP_A,Wish you could sync Google Calendar.,3,0,4.6.5,2018-09-28 19:47:58,"Hi, pls refer to this. +https://guide.ticktick.com/ticktick-android-app/calendar/how-to-subscribe-other-calendar-service-premium.html",2018-09-27 01:40:22,most_relevant,com.ticktick.task +Andy Y Chen,https://lh3.googleusercontent.com/a-/AOh14GhD5T9tdkkcUdeoaq7L9vRthCWEdV9huIP-pLX1Uw,"""Custom Swipe Options"" hidden in premium 😂",3,0,5.2.3,2019-10-05 23:45:55,"Sorry, this is currently how it is designed. But will pass your feedback to the product team and do an evaluation asap.",2019-10-06 02:25:14,most_relevant,com.ticktick.task +Juan Barragan,https://lh3.googleusercontent.com/a-/AOh14GjyUHzwkdIqfMEczfD0jyha_3134fqa9sKO0wdQ3IE,pomo timer is still glitchy.,3,0,4.8.6,2019-03-08 19:37:33,"Sorry for the inconvenience. If possible, please join in the Tick Tick Beta version in the Google Play, https://play.google.com/apps/testing/com.ticktick.task. We made some improvements on the pomo timer. Or you can wait for the next TickTick iteration on Google Play. Thank you.",2019-03-11 11:58:45,most_relevant,com.ticktick.task +Viktor Zhang,https://lh3.googleusercontent.com/a-/AOh14GjDC3xsGUg1fobtElM4kPOkYCor80PvL9zLQclD,Premium? For Calendar views? Seriously?,3,0,4.6.5,2018-10-14 10:46:42,,,most_relevant,com.ticktick.task +Alex Cheng,https://lh3.googleusercontent.com/-30zxYCKAZ1o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMkASotiR4bPTYhF4QbantDaWxLzQ/photo.jpg,The tasks may go missing...,3,0,,2019-02-02 01:53:36,"Hi, please set up all the settings refer to the steps under “Settings - Sounds & Notifications - Reminder Not Working”, and try again. If problem still exists, please go to Settings, Send Feedback and email us (the email will auto collect the error log from you), developers will assist you to resolve the problem. Thank you.",2019-02-03 06:55:28,most_relevant,com.ticktick.task +Clar Anderson,https://lh3.googleusercontent.com/a-/AOh14GiaDNOOCaNP3lNaeVr6v5GRysK3juGETGrLla3Vbg,Difficult to figure out how to indent or provide a sublist,3,0,5.2.2,2019-10-05 17:56:10,Hey Clar! Sorry sublist is currently not available in TickTick. More specific about what you are looking for?,2019-10-06 02:24:26,most_relevant,com.ticktick.task +Cuby Insane,https://lh3.googleusercontent.com/a-/AOh14Ghx4S6fvBwjk_kHq9uU-N6Ipjekhfc12J0lHemifA,UI Needs to be improved,3,0,,2019-06-08 15:34:14,,,most_relevant,com.ticktick.task +Faye S.,https://lh3.googleusercontent.com/a-/AOh14GglhNNY--dDseBy_DkVaHfb-1M9tYd9fMaM2-g62w,Please integrate Kanban from web to the mobile app.,3,0,5.2.0,2019-07-25 14:37:31,Will consider adding it if it is highly demanded.,2019-07-30 01:43:25,most_relevant,com.ticktick.task +Gary L,https://lh3.googleusercontent.com/a-/AOh14GiR4t2RUW8szrPAAhcsUGDJEeRUsG5NjFMSY2splA,"Okay I guess. Very happy with dev response to my previous review, TY.",3,0,4.7.5,2018-12-11 01:45:57,Sorry for the inconvenience. We have already resolved the problem. Please upgrade app in the Google Play.,2018-11-13 12:10:02,most_relevant,com.ticktick.task +Michael Nicoll-Griffith,https://lh3.googleusercontent.com/-MCRCVscu3cY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMIgG3T79_YrWW07puYxFJF5Ms5DQ/photo.jpg,Too many items,3,0,,2020-01-25 23:57:27,,,most_relevant,com.ticktick.task +Youssef Khaled,https://lh3.googleusercontent.com/-YhTVqWjmkjU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM_TvkqIrsXeiIpRWHerUaJTby2Ug/photo.jpg,Pomdoro is bad,3,0,5.5.6.0,2020-03-31 01:12:05,"Hi, could you tell us which aspects that you fell pomodoro is bad?",2020-03-31 12:03:54,most_relevant,com.ticktick.task +ayesha amerat,https://lh3.googleusercontent.com/a-/AOh14GiEMVAI2JQfwHf5-UaR2yhF2fDj2_Sz76Afh7FIRw,its simple but it works,3,0,5.2.0,2019-08-09 09:10:37,,,most_relevant,com.ticktick.task +min borin,https://lh3.googleusercontent.com/a-/AOh14Ggetqea6St9NOrLEfedvsaehvIv0JxYmy-Ngex_Nw,this tool so cool for todo list,3,0,5.1.0,2019-06-16 02:28:17,,,most_relevant,com.ticktick.task +Njabulo Ngema,https://lh3.googleusercontent.com/-Z_5DtBCpQ3s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOD8tgNSYF92OZHgit-PCBtBObO0A/photo.jpg,Work on notifications... Its the best though am happy,3,0,4.8.6,2019-10-30 22:46:04,"Thanks for your feedback, the product team has been working on it now, we will try our best to adjust it in the future updates.",2019-10-31 01:25:03,most_relevant,com.ticktick.task +yotam shwartzman,https://lh3.googleusercontent.com/-kcsd_mbrqxM/AAAAAAAAAAI/AAAAAAAAG0Y/AAKWJJPCSissRqBHDp_Kztw40yxWZ8MMAw/photo.jpg,Bad calendar sync,3,0,5.1.1,2019-06-23 09:55:08,,,most_relevant,com.ticktick.task +Yusuf Sansarkan,https://lh3.googleusercontent.com/a-/AOh14Gj776yfi9Del7wLD93mYjhY4nBJWqdazgVGlLUtQw,Good but expensive,3,0,,2019-12-25 16:19:50,Hello! Thank you for rating us. We will let the team hear your voice and re-evaluate our pricing.,2019-12-26 01:12:23,most_relevant,com.ticktick.task +C Reactive,https://lh3.googleusercontent.com/-zH6hM08UCqU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNyg6sSC8osbqcBaWWjoV-VBVXCFw/photo.jpg,Passive but good,3,0,5.1.0,2019-06-18 02:29:40,,,most_relevant,com.ticktick.task +Jayvantsinh Solanki,https://lh3.googleusercontent.com/a-/AOh14Gh16fR2mPW_xNXr5vOD5YZOxhBAQ7fpDyAhafTCCA,For me. Good app.,3,0,5.1.0,2019-06-06 13:55:00,,,most_relevant,com.ticktick.task +Andrews,https://lh3.googleusercontent.com/a-/AOh14Ggy8-ECzZgI9NH9nC2mRVU-4Ds7THXH3Ausgpij,I can't type?? Not because of my phone. There must be some mistakes,3,0,5.2.1,2019-08-27 15:28:38,,,most_relevant,com.ticktick.task +Aki Mui,https://lh3.googleusercontent.com/a-/AOh14GhSLZ4sQkLC9xbiJQATugrDDHXUfBu_LAEr3M8ghw,"why weekend just 2 days on sat sun, but my weekend is on friday only.",3,0,5.2.0,2019-08-05 23:03:37,,,most_relevant,com.ticktick.task +Sarah Scutt,https://lh3.googleusercontent.com/a-/AOh14Gg8qfUP1-3ud6533iKPgTSrbAoZF5FgOr6HB9FT,have to subscribe to link to Google calendars,3,0,,2019-07-12 15:01:30,,,most_relevant,com.ticktick.task +Arun Kushwaha,https://lh3.googleusercontent.com/a-/AOh14Gj_rbL9hrpamo1d_8CENpCOyuEul-CNkxwXB40RLA,New features update now please ...❤❤❤...!!!,3,0,4.8.6,2019-02-03 05:35:28,,,most_relevant,com.ticktick.task +rajan mazumder,https://lh3.googleusercontent.com/a-/AOh14GhXBHq9uEe2ZkAAaBLnBhgMFnSMQMkrIOyZVSNYZg,Huge like from the bottom of my heart.,3,0,4.6.5,2018-09-18 09:11:19,,,most_relevant,com.ticktick.task +Jean-Philippe Tardif,https://lh3.googleusercontent.com/a-/AOh14Ghk0yCaFh32FVVoSHNzmy2-zAAtpNi30hz4-AFKmx4,Doesn't work with wear os.,3,0,,2019-08-29 18:04:14,,,most_relevant,com.ticktick.task +Ovidiu Toader,https://lh3.googleusercontent.com/-JwkepvaNyD8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPQGE3KIg-_534vgya8HOs6bPyPjg/photo.jpg,no tracking time,3,0,,2019-10-30 21:48:17,"Sorry that we currently do not support this feature yet, but I will pass your feedback as a feature request to the product team for further evaluation asap.",2019-10-31 01:24:01,most_relevant,com.ticktick.task +Parameswar Mondal,https://lh3.googleusercontent.com/-f__hCj2ZTk0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNCJY2jbrbldymxgW8lh848nGmPGw/photo.jpg,"Hmmm, working good",3,0,5.0.0,2019-04-08 15:23:56,,,most_relevant,com.ticktick.task +Aminur Rashid Rony,https://lh3.googleusercontent.com/a-/AOh14GhqVefPChDJlzVPDTcoxKgaEkXtvmWeE3q7Cysw,waste of time...dont download,3,0,,2019-02-14 18:53:36,"Hey, please tell us what you have encountered before, or anything confused you? The product team will follow up on this. Thank you.",2019-02-18 05:45:54,most_relevant,com.ticktick.task +Seb P,https://lh3.googleusercontent.com/a-/AOh14GhS-v0hhNpPsxjYfLGwA0GQIWpicHJ90ezmx2MTKw,functional nothing special,3,0,,2019-03-13 22:29:43,,,most_relevant,com.ticktick.task +Andre,https://lh3.googleusercontent.com/a-/AOh14Gg1scEo2IC8cb54qLi_V6anCiTa2Me6p4SlPyPz9nQ,"Great app but missing integration with goggle assistant or automatuon apps like IFTTT, many apps do this now ticktick is falling behind",3,0,5.5.5.0,2020-03-06 15:29:57,"Hi, we're working on integration with Google Assistant and IFTTT.",2020-03-07 05:50:10,most_relevant,com.ticktick.task +pink isman,https://lh3.googleusercontent.com/a-/AOh14Gg-cnimdSvQSvgHI2S87sVhA0LXEmz6PN0X54FHsA,در زبان فارسی به علت راست چین بودن تقویم ماه از راست به چپ ولی ایام هفته از چپ به راست چیده شده و تطابق ندارند. لطفا اصلاح کنید.,3,0,5.5.1.0,2020-02-17 00:42:04,"Hi, sorry for the trouble. We could reproduce this issue on our side. Could you provide us with screenshot to support@ticktick.com?",2020-02-17 04:31:37,most_relevant,com.ticktick.task +Administrador Borges,https://lh3.googleusercontent.com/a-/AOh14Gi10XowiWrsaLZFRrk69r6Mh0uRYQ6zmbFzAgre,Experiência muito boa mas tem muito a ser feito.,3,0,5.5.1.0,2020-02-21 06:23:27,,,most_relevant,com.ticktick.task +Frank Popp Jr.,https://lh3.googleusercontent.com/a-/AOh14Gh30TJKJkr-WrTyqZ69YmkjOnCoO52gD4hMd9z6,Love this app. I used to give it 5 stars but its so sliggish on the s8 and half the time the widget wont load.,3,4,5.5.0.2,2020-01-30 07:38:41,"Hi, sorry for the inconvenience. Could you install the fixed version (download link: https://drive.google.com/file/d/1nPwjhIOGpzMOPOX-i1U0q5FDJNLamhRa/view?usp=sharing) and check if the widget issue get solved?",2020-01-30 08:09:03,most_relevant,com.ticktick.task +Sophie Mowat,https://lh3.googleusercontent.com/-WA5VQC9mSJo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO85UMEWwZtWQtAFDz-92u9aXFD-Q/photo.jpg,"Has the potential to be an excellent all in one calendar and to-do list, however I cancelled my subscription two weeks in as: 1. Subtasks automatically repeat when repeating main task is completed, regardless of time and due date settings. This should be optional. 2. Subtask reminders should be optional 3. Calendar functions are very limited, e.g. ability to set up an event rather than a task would be a valuable addition",3,0,5.5.6.0,2020-04-03 12:44:03,,,newest,com.ticktick.task +Youssef Khaled,https://lh3.googleusercontent.com/-YhTVqWjmkjU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM_TvkqIrsXeiIpRWHerUaJTby2Ug/photo.jpg,Pomdoro is bad,3,0,5.5.6.0,2020-03-31 01:12:05,"Hi, could you tell us which aspects that you fell pomodoro is bad?",2020-03-31 12:03:54,newest,com.ticktick.task +Kristi Dix,https://lh3.googleusercontent.com/a-/AOh14GhQYsr_28riOTfTD0YhuuRwFiZCHkQsYk4oiaE1,"I needed a replacement for Wunderlist, which we relied on for task lists for our business & employees. With TickTick, I had to manually type in each task for each list because the Import feature only put them in my Inbox. There's no Home Screen - hitting the return arrow exits the app (not a biggie, just an adjustment). The real downer is having to pay to share the lists with more than one person. Collaboration was an important feature we needed. Using Microsoft's To Do for now.",3,4,5.5.5.0,2020-03-24 13:16:46,,,newest,com.ticktick.task +Shubhankar Bag,https://lh3.googleusercontent.com/a-/AOh14Giu6ZMFAhi_Fj7opzSfJqM3kgl2ZKRSUqaNtJh5lg,Please make Weekly view free for every device,3,0,5.5.5.0,2020-03-24 02:51:28,,,newest,com.ticktick.task +vanshika singhal,https://lh3.googleusercontent.com/-3sjPfND639s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMyi9mjNwAy7qNKZ6sooyBsiBdUMQ/photo.jpg,Can add a reminder option withthe specified time,3,0,5.5.5.0,2020-03-23 21:05:40,"Hi, TickTick supports this feature. Please ref: https://support.ticktick.com/hc/en-us/articles/360016492611",2020-03-24 01:27:54,newest,com.ticktick.task +John Thompson,https://lh3.googleusercontent.com/a-/AOh14GhdJcKVAq10NN0ZzKBUdzMHCHxe1N5N09Hdfo8M,Unnecessarily complex. A simple one dimensional version would be fine,3,0,5.5.5.0,2020-03-21 10:04:40,,,newest,com.ticktick.task +Python Flask,https://lh3.googleusercontent.com/a-/AOh14GgEkFHHnafa-gTtjfsryghlwbY4RvvQyBK1gBOoYw,It's good but it's size is large,3,0,5.5.5.0,2020-03-20 17:34:37,,,newest,com.ticktick.task +Derek Webster,https://lh3.googleusercontent.com/a-/AOh14GgcUUNw8C-ngVehLSh2sXtJ46yRMk4BU220LgJpOg,Jus started using. So far I like it.,3,0,5.5.1.0,2020-03-20 12:35:59,,,newest,com.ticktick.task +Tian Bay,https://lh3.googleusercontent.com/-2znER_QeXGc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNjv7PdcB2rha7YVxxkcyFa3hPDLQ/photo.jpg,"Useless. Edit: thanks for replying, I wish the tasks could be repeated every day like in a morning routine that is done everyday to give the user a sense of having a productive morning or something :/",3,0,5.5.5.0,2020-03-18 04:07:39,Hey there! Could you please elaborate on what kind of features would you like to see? We will pass them to the product team for review.,2019-09-17 00:33:23,newest,com.ticktick.task +Δημήτρης Πρίμπας,https://lh3.googleusercontent.com/-LuirvtbK3Xk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMvdQra-LI6VlpcVawyg6I1prX6xw/photo.jpg,Very helpful with lots of features. I would like to see the countdown mode work on the widget too though. Also it would be delightful if we could add tasks (like the notification) with a button shortcut such as pressing the home button for some time and the prompt would pop up! But still nothing I would pay annually though..,3,10,5.0.2,2020-03-17 12:40:56,"Dear User, really appreciate your suggestion. We will consider it and improve our app in future.",2020-03-20 01:57:13,newest,com.ticktick.task +Lacy Vannatta,https://lh3.googleusercontent.com/a-/AOh14Gjp0adaGwP_aA2SMz11MR3mTq5mHArnFlYBpcYPSw,"This is a good app, however it has a few bugs that need attention that could easily make the app 5 stars.",3,0,,2020-03-15 03:53:08,,,newest,com.ticktick.task +Ib'nallah Kazi,https://lh3.googleusercontent.com/a-/AOh14GhiL_k-uBMOE-NIz2KGJM8pQ6MPFJxsz6R9CzLZxA,Just upgraded to premium version. App and Google play list subscription at $27.99. I got charged $29.84. ???,3,0,5.5.5.0,2020-03-13 20:11:35,,,newest,com.ticktick.task +Philip Wright,https://lh3.googleusercontent.com/a-/AOh14GivZwNIYM05AG_CgvznCHq75DAF_BxuWOWIahj6qg,"Best Wunderlist replacement I can find. Expensive. Widget doesn't scroll, which makes me really sad I can't keep Wunderlist.",3,1,5.5.5.0,2020-03-13 06:37:57,,,newest,com.ticktick.task +Ivy G,https://lh3.googleusercontent.com/a-/AOh14GhUdqe71IZ9n2WVZlmEhr2xOp_ZE4THxF76Zka8PLU,"If time tracking was added and the parser/interface of the ""what would you like to do?"" field was fixed (this alone is making me want to switch back to Amazing Marvin), I would rate 5 stars.",3,0,5.5.1.0,2020-03-12 15:02:53,,,newest,com.ticktick.task +Nari Choi,https://lh3.googleusercontent.com/a-/AOh14GgLLGnOb4P5gU9qNc7zJkAJoBaFCw0F9t-f2pX0ApI,"does not work on galaxy watch...It would be so perfect if it would. The app is the best though, but how can an app built for planning and reminding not work with something as basic as a smartwatch. Makes no sense.",3,3,5.5.5.0,2020-03-12 14:56:51,,,newest,com.ticktick.task +Ashraf Ansari,https://lh3.googleusercontent.com/-cdaT4mH5giM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOhV5Ow-0REGyW55HMhZ3tp6BJ6yQ/photo.jpg,Nice one,3,0,,2020-03-10 13:25:43,,,newest,com.ticktick.task +Andre,https://lh3.googleusercontent.com/a-/AOh14Gg1scEo2IC8cb54qLi_V6anCiTa2Me6p4SlPyPz9nQ,"Great app but missing integration with goggle assistant or automatuon apps like IFTTT, many apps do this now ticktick is falling behind",3,0,5.5.5.0,2020-03-06 15:29:57,"Hi, we're working on integration with Google Assistant and IFTTT.",2020-03-07 05:50:10,newest,com.ticktick.task +Maisarah Mohd Razi,https://lh3.googleusercontent.com/a-/AOh14GiPL-q6DO1mNDxwFKTinNIZBIS4vyyXC3P-SsaqlA,"Hi, im using the paid one on my phone and ipad. However i find that they do not sync well on both. Like i already marked 3cups of water on my phone, then whem i open on ipad it's not marked. But then both updated according to the ipad. How do i make this better? Also, can there be a way to skip a habit? Sometimes i missed it and i dont want them to keep appearing on the list.",3,1,5.5.5.0,2020-03-06 11:35:37,,,newest,com.ticktick.task +Black Pentagon,https://lh3.googleusercontent.com/a-/AOh14Gh50EG_G3Z2mxRlupruIlXxWt4K8qVb743V-g8t_g,It could have been a robust app but these bunch of loosers want you to pay every month is annoying.,3,0,,2020-03-01 18:14:43,,,newest,com.ticktick.task +Yvette Diggs,https://lh3.googleusercontent.com/a-/AOh14Gg8HORckdnB_fPfq4I50PDtIGgY-SO7rgtXoNU3cSw,I have the premium version. I had been using Wunderlist. The most amazing Todo app ever and very intuitive. Tick Tick has worked well as Wunderlist is no longer supported. However some key things I truly miss. Push notifications when someone texts within the app. Notification that someone else has updated or completed a task or list. Copy and paste everything I need into a section as a single item in the list instead of everything becoming its own item in a list.,3,4,5.5.1.0,2020-02-25 05:12:56,,,newest,com.ticktick.task +Administrador Borges,https://lh3.googleusercontent.com/a-/AOh14Gi10XowiWrsaLZFRrk69r6Mh0uRYQ6zmbFzAgre,Experiência muito boa mas tem muito a ser feito.,3,0,5.5.1.0,2020-02-21 06:23:27,,,newest,com.ticktick.task +Mister Marcus,https://lh3.googleusercontent.com/a-/AOh14GhuvS9Rg3AEO26Vmeuo6viQlVrVmB2SVSeO3GEk,"So far, it's okay as task apps go. I'm a Wunderlist refugee because Microsoft bought them out (and they destroy everything). Perhaps Tick Tick will grow on me. We'll see.",3,0,5.5.1.0,2020-02-20 01:26:52,,,newest,com.ticktick.task +pink isman,https://lh3.googleusercontent.com/a-/AOh14Gg-cnimdSvQSvgHI2S87sVhA0LXEmz6PN0X54FHsA,در زبان فارسی به علت راست چین بودن تقویم ماه از راست به چپ ولی ایام هفته از چپ به راست چیده شده و تطابق ندارند. لطفا اصلاح کنید.,3,0,5.5.1.0,2020-02-17 00:42:04,"Hi, sorry for the trouble. We could reproduce this issue on our side. Could you provide us with screenshot to support@ticktick.com?",2020-02-17 04:31:37,newest,com.ticktick.task +Karan Lohan,https://lh3.googleusercontent.com/a-/AOh14Gi6gbKGS74MO7VyEFDB3SbdeY_Mt-v-SsvdFiTEhE8,"It's a good app, no question about it but it's not perfect. I used it for months after abandoning todoist but I'm leaving Ticktick now. It's feature packed but not as polished as other products. The UI is not great and the app has very different design language as well as features depending on which device you open it on. This lack of consistency as well as poor natural language support doesn't make it the perfect ToDo app.",3,0,,2020-02-14 16:03:29,"Hi, sorry for hear that. Could you provide us with more details about the design that you feel not good?",2020-02-16 03:53:14,newest,com.ticktick.task +rahul rajan,https://lh3.googleusercontent.com/-yWvEVK_cGyE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNVOoKsZ8I-Zja4Zv16Vqf8CwEsGA/photo.jpg,Good but the widget glitches out atleast once a month and doesn't display the task list. If that's resolved I could surely give it 5 stars,3,0,5.5.0.2,2020-02-12 00:38:56,We are aware of the bug and are working towards fixing it. Sorry for the trouble.,2020-02-12 11:38:09,newest,com.ticktick.task +Akash Purwar,https://lh3.googleusercontent.com/a-/AOh14Gjbt1ugVk1HibdUR0Mwh4GkhnvYAbeqAAtYjIMtiQ,Good as it is simple and effective. It could be more enhanced.,3,0,,2020-02-09 18:17:43,,,newest,com.ticktick.task +Srishty Chouhan,https://lh3.googleusercontent.com/-LvYYC3A_JKg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNEoQVgk8lnKefw2eB-d3fQPdNdNA/photo.jpg,Good app but in free version they should add more features just like reminder with time duration. I like it's feature of description in which we can add sub task and tick then.,3,0,5.5.0.2,2020-02-08 08:22:13,"Hi, thanks for your feedback. I'll transfer you suggestion about duration reminder to product team for evaluation.",2020-02-12 08:16:47,newest,com.ticktick.task +Andy Bolstridge,https://lh3.googleusercontent.com/a-/AOh14GiuVv4BbL4bVT_pdqS4Qz7M65Znedk28HE-lxIh,"Generally good but has issues, adding a subtask is just weird - why they can't do what wunderlist does with a place to add or a button, and it's all a bit sluggish with some redraw problems. But it has some great ideas to it, so maybe it'll be good in time.",3,0,5.5.0.2,2020-02-04 02:07:03,"Hi, thanks for your suggestion. I'll transfer your feedback about subtasks to product team for evaluation.",2020-02-04 05:55:43,newest,com.ticktick.task +Jonathan,https://lh3.googleusercontent.com/-s3HL0ZQrOBE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMDvmormnMS-PASH1ZExk7TOwaBWA/photo.jpg,"Hi. Long time TickTick user. Unfortunately the app still has big issues with subscribed LOCAL calendars. Recurring events from the local calendar are doubled in the list view and have been for a long time now. The last time it worked properly was in 5.2.1. I notified you guys a long time ago, but it hasn't been fixed. I finally tried Any.Do and it works properly with my LOCAL calendar so it seems that I will be giving them my subscription money this year.",3,1,5.5.0.2,2020-02-03 20:09:23,"Hi, sorry for the trouble. Could you provide us with screenshots about this issue to support@ticktick.com? Devs will look into this issue asap.",2020-02-04 01:11:49,newest,com.ticktick.task +Kirk Brown,https://lh3.googleusercontent.com/a-/AOh14Gimws0RIFT9xkWOfb75MHCAOs9RqQ0ayTNeZnDDDQ,Back button doesnt work,3,0,5.5.0.2,2020-02-02 20:19:06,"Hi, sorry for the trouble. Could you tell us in which scenario back button does not work?",2020-02-03 02:20:21,newest,com.ticktick.task +Jolina Gregorio,https://lh3.googleusercontent.com/a-/AOh14GiAN7Df_mUj-O0Y_aPbr61uX0t_KpBnYQ0ZtbykUg,Ticktick is one of my favourite productivity app but suddenly the habit tracker doesn't work or respond properly.,3,0,5.5.0.2,2020-02-02 02:06:20,"Hi, could you provide us more details about ""doesn't respond properly""? You could contact us via support@ticktick.com. Sorry for the trouble.",2020-02-02 11:48:13,newest,com.ticktick.task +Robert Gifford,https://lh3.googleusercontent.com/-Y7OBq_ajIzk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOICpWg22XLmKC09GbgH5yC38_OCw/photo.jpg,You have to subscribe for the pro version. I'd rather just have one flat fee,3,1,5.5.0.2,2020-01-30 21:18:19,,,newest,com.ticktick.task +Frank Popp Jr.,https://lh3.googleusercontent.com/a-/AOh14Gh30TJKJkr-WrTyqZ69YmkjOnCoO52gD4hMd9z6,Love this app. I used to give it 5 stars but its so sliggish on the s8 and half the time the widget wont load.,3,4,5.5.0.2,2020-01-30 07:38:41,"Hi, sorry for the inconvenience. Could you install the fixed version (download link: https://drive.google.com/file/d/1nPwjhIOGpzMOPOX-i1U0q5FDJNLamhRa/view?usp=sharing) and check if the widget issue get solved?",2020-01-30 08:09:03,newest,com.ticktick.task +Michael Nicoll-Griffith,https://lh3.googleusercontent.com/-MCRCVscu3cY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMIgG3T79_YrWW07puYxFJF5Ms5DQ/photo.jpg,Too many items,3,0,,2020-01-25 23:57:27,,,newest,com.ticktick.task +Tim Bardet,https://lh3.googleusercontent.com/a-/AOh14GjYoyWwvQgHNztiSEimgduRu3cN0VIbnCMbZf59vg,"Very very good. Better than Todoist IMO. Docking two stars because is getting buggier. Couple weeks ago wouldn't sync, and now notifications are vibrating when phone is in vibrate mode. Considering a switch to Microsoft to do.",3,0,5.5.0.2,2020-01-25 20:18:55,,,newest,com.ticktick.task +Asude K.,https://lh3.googleusercontent.com/a-/AOh14GhJY6LNtZcLde4uxaWPeNsvjk0ud_DM4uI9DRboLw,I would buy if there was one-time only purchase. I can't pay monthly. And it's still enough to use without premium but I want premium and one time purchase :/,3,27,5.5.0.2,2020-01-23 21:19:41,,,newest,com.ticktick.task +Stefan B,https://lh3.googleusercontent.com/-SoMhAvhQCEw/AAAAAAAAAAI/AAAAAAAAAk8/AAKWJJNnhIjfY1vjGIJYflnO1b3-ORj0wg/photo.jpg,"All awesome except widgets. They randomly (and annoyingly often) stop working, phone either needs to be restarted or widgets re-added (or both)..",3,0,5.5.0.2,2020-01-22 23:50:05,,,newest,com.ticktick.task +Pasindu Wijewardhane,https://lh3.googleusercontent.com/a-/AOh14GhXIvi3n4r--NtypiYtKLlfM-js9DlCrkHndYsYug,👍,3,0,5.5.0.1,2020-01-21 13:39:03,,,newest,com.ticktick.task +Stan Gruel,https://lh3.googleusercontent.com/a-/AOh14Gi48OcKGRE-aCZ8u9XzFTAvGpQEAp_o1Qfd4gWEIg,"The best looking todo app I could find, very complete. Would be the one I use but... Unfortunately sync with Google calendar takes hours, up to a day. The issue seems to be a couple of years old (you can check it in the customer section on their website), and nothing was done to address it, while the competition syncs in seconds. If you don't need Google sync, then it's great. I'm now using another app. Sad.",3,0,,2020-01-19 09:24:54,,,newest,com.ticktick.task +Emmanuel Sunday,https://lh3.googleusercontent.com/-B00EJSEN60g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM9WZaQTm3omUd3gN6oI9pj3Taf5A/photo.jpg,Nice app but can be improved upon in terms of navigating the app,3,0,5.2.3,2020-01-10 19:19:10,"Hi there, could you provide us with more details about ""navigating the app"" ?",2020-01-16 03:24:20,newest,com.ticktick.task +Mike,https://lh3.googleusercontent.com/a-/AOh14GjKd_bDmEQMjGdPTN3ctHl9g2DmAVsdOMTAYxex6A,"Used to like this app a lot, but recently the time input got changed from a normal clock to a spinner where you have to manually scroll through the numbers to find the time you want. Makes setting reminders very tedious.",3,45,5.4.1,2020-01-09 21:49:09,"Hi, we'll bring back the radical time picker in next update. Sorry for the inconvenience.",2020-01-16 03:26:17,newest,com.ticktick.task +Dmitry Mv,https://lh3.googleusercontent.com/a-/AOh14GipkjE87tReEPMJRxDYFBqVoygrYAqq1boeQQ7R,"PRO: The functionality and UI are one of the best of these kinds of apps. Everything has a simple look to it, but you can always go deep, add a reminder here, a folder there and do exactly what you want it to do. CON: The feature I want the most (more than 5 repeatable tasks, ""habits"") is locked behind a subscription paywall, and there is no reason for a subscription model. I'd gladly drop a reasonable one time payment for it, but not the asking price month after month, I'm not rich and nether is my country. All in all great if you can afford it, frustratingly limited if you can't.",3,8,5.4.0,2020-01-09 07:57:01,,,newest,com.ticktick.task +E. Williams,https://lh3.googleusercontent.com/a-/AOh14GhD15FcKq1-V9ttOl6j3DlJOySa1WtUeRAzriJdZg,Love this app! Keeps me organized and productive. Only thing I'm bummed about is I can override the locking feature. Even sent an email about it.,3,1,5.4.1,2020-01-07 21:08:41,,,newest,com.ticktick.task +Hope Pierce,https://lh3.googleusercontent.com/a-/AOh14GhylfwE8KURFOI1aXFBIdoTASS_GI1ozy21yQ6EQw,"I can't use the desktop app for windows. It won't let me sign in with my google account. Please fix this. Furthermore, some more themes for both the phone app and desktop app; Also, a feature where the user can attach progressive pictures that correlate to their habit, would be nice,as well for premium users. If I can have 99 attachment a day on premium, why not this suggestion?",3,1,5.4.1,2020-01-07 05:46:09,,,newest,com.ticktick.task +Yugesh Raguram,https://lh3.googleusercontent.com/-92Jh5Hm2cCo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMvT3QFiUsuua2kcUbJRmKFI7niUQ/photo.jpg,Need Google voice integration service to add task,3,0,5.4.1,2020-01-05 16:51:27,,,newest,com.ticktick.task +Christine Muller,https://lh3.googleusercontent.com/-mDFmTrRo6Pk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP-4WWOcaExcH1tOh_5iZUMcWiYuA/photo.jpg,"I love this app but who in the world thought this new scheduler was a good idea? It takes forever to set up a time now. Please, please, please bring back the clock (round) scheduler back.",3,1,,2020-01-05 16:42:02,,,newest,com.ticktick.task +Ben,https://lh3.googleusercontent.com/a-/AOh14Gj9OdfJa_VEhTd8RAW9Y3WmU13sXpuCfh2oRDod,"Slightly glitchy and missing some features you'd expect. Syncing between desktop, web and mobile is nice. Missing parity between all though.",3,0,5.4.0,2019-12-30 17:18:12,,,newest,com.ticktick.task +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Is there anyway to remove the hyperlinks from your description fields?,3,0,5.4.0,2019-12-27 16:30:36,"Dear User, +Could you please contact us via support@ticktick.com with a screenshot? We'd love to hear more about what you are looking for.",2019-12-30 02:04:00,newest,com.ticktick.task +Konrad Wójcik,https://lh3.googleusercontent.com/a-/AOh14GhMycc0u4cUOIesgKqHdWi2eymaEyuZhgBC2PZlPg,It work absolutely fine but why every hour try to connect with Facebook servers? Adguard noticed it,3,0,5.3.1,2019-12-27 12:27:24,,,newest,com.ticktick.task +Yusuf Sansarkan,https://lh3.googleusercontent.com/a-/AOh14Gj776yfi9Del7wLD93mYjhY4nBJWqdazgVGlLUtQw,Good but expensive,3,0,,2019-12-25 16:19:50,Hello! Thank you for rating us. We will let the team hear your voice and re-evaluate our pricing.,2019-12-26 01:12:23,newest,com.ticktick.task +Santhosh Kumar,https://lh3.googleusercontent.com/a-/AOh14GiSqHr6okUZL-o4Br52JVV5tt7fx_4ishrmNmTYEg,"Hi Wonderful TickTick Developers, I'm not able to buy the premium product. Errros are unavailable for this purchase & OR-CAC-01 I've cleared data on Goodle Play Services, TickTick, etc., UPI Payment, Credit Card, Debit Card, Vodafone Billing, NetBanking, none works. Can you please help?",3,0,5.4.0,2019-12-14 05:18:08,"Hi, please contact us at support@ticktick.com and share the exact steps you took in the app. Screenshots would be very appreciated. We will reach out to you with assistance.",2019-12-14 06:04:57,newest,com.ticktick.task +Todosyev Valeriy,https://lh3.googleusercontent.com/a-/AOh14GiJtMz4UDLdnbGZ_KZWD_VIjuyIXEbAAwdwCRg,"Good in general, but too many little bugs here and there",3,0,5.4.0,2019-12-10 18:57:19,"Hello, +Could you please send us more information about your issue? You can contact us at support@ticktick.com. We'll be happy to look at this for you. +Thanks!",2019-12-11 13:40:12,newest,com.ticktick.task +Uroš Aleksić,https://lh3.googleusercontent.com/-XdkbTst81iU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPw0mL8z5u0rJ7Ko3I4mlkNoLGWVg/photo.jpg,"This app is sooo good for and perfect for students! 🎓 Add tasks at ⚡lightning speed and track your pomodoro sessions🍅, habits ♻️ and tasks 📥 without problems!",3,0,5.1.1,2019-12-08 14:24:51,Hello! Thank you for rating us. We will keep making the app better in the future!,2019-12-09 01:39:21,newest,com.ticktick.task +River MacLeod,https://lh3.googleusercontent.com/a-/AOh14GgirutQdxXz4arr1xTN4D-eMxnmfOvwGxu4BL-weQ,"I am Apple transfer, and I am yet to find am app for android with the same functionality as the built in iOS app. This one is ok, but does not do what I need it to. Literally all I want an app to be able to do is have reminders pop up when scheduled, then stay on the screen until they are completed. This app will make the reminder pop up when scheduled, but if I don't complete it by the end of the day, it will not stay on my screen. Seems like I have to try and find a different app.",3,0,5.4.0,2019-12-07 18:12:28,,,newest,com.ticktick.task +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"For real, who asked for markdown?!! Especially that check mark in markdown is so tiny and stupid. The highlight is also not nice. If we want to take notes, we use Evernote, not Ticktick.",3,1,5.4.0,2019-12-05 01:28:31,"Thanks for your feedback! We deeply respect your advice, and we will try to combine your feedback with our R&D, in order to provide better products.",2019-12-05 02:24:28,newest,com.ticktick.task +Nikki Dreeves,https://lh3.googleusercontent.com/a-/AOh14Gh7xJOTc03Pes-ZMleaCqL7Dq3w2CkNqCRfiYWMiw,"So, I really like this app! Probably one of the best planner apps out there, but I ended up uninstalling it because it kept asking to pair with my Google account, and the pop-up was rather aggressive. The cancel button didn't work and it would pop up after every single action. Even after going to the settings to try to sync it with my account, I didn't see a way to sync it! I do really love this app, it's great! But that pop up just ruined it",3,0,,2019-12-04 15:12:37,"Hi, we would like to fix this. As we don't have your email address, can you please write to us at support@ticktick.com so that we can help you better. We look forward to your email.",2019-12-05 02:31:08,newest,com.ticktick.task +Kevin Dobill,https://lh3.googleusercontent.com/a-/AOh14Gi1_E1dttRHC8Rqk0CKYARPWfQoD795GxkeEinADg,"Lately, doesn't sync between web app and Android reminders well. Still a nice app, but that is an inconvenience.",3,0,5.3.1,2019-11-26 15:40:03,"Dear User, +Could you please contact us via support@ticktick.com? We'd love to hear more about this issue in order to assist you.",2019-11-27 00:57:17,newest,com.ticktick.task +Beatrice Barnes,https://lh3.googleusercontent.com/-F0e1sh534WE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOKKybQ4LR8H7yn4Ye6OZsccXvx7A/photo.jpg,"I loved this app when I first got it. Though I still find it useful, the app vs desktop functionality leaves something to be desired. Still, I would have given a higher rating if the app didn't have a habit of moving tasks to a random calendar date instead of the one I selected. I'm not sure I'll purchase a second year subscription.",3,0,5.3.1,2019-11-20 20:30:04,Thanks for your feedback. We’d like to know the details of the problem you mentioned. Please send the details or screenshot to support@ticktick.com. We'll pass it along to our development team and fix it asap.,2019-11-24 08:00:49,newest,com.ticktick.task +Shawn Drape,https://lh3.googleusercontent.com/a-/AOh14Gjzc7vHbibmlqtLjbrL8ktybdjrO62pW29ThZ6kH5s,"The app has been great on desktop and decent on the phone. Performance of the Android app is noticeably worse than iOS though, especially on start up.",3,0,5.3.0,2019-11-15 01:21:39,"Hey Shawn! Could you please send us the details of the problem you mentioned to support@ticktick.com, we will try to fix it asap.",2019-11-15 01:35:58,newest,com.ticktick.task +Uriel Caiado,https://lh3.googleusercontent.com/a-/AOh14Gi3KM7IaPhzPPp9j5xsOq2ozYD_ssrH6SNnf1WTtks,"Looks a lot like todoist. I said ""look"" because todoist is bug free when compared to this one. What a waste of time I had trying to set it up both by natural language and clicking...",3,0,,2019-11-14 23:18:03,Thanks for your feedback. We’d like to know the details of the problem you mentioned. Please send the details or screenshot to support@ticktick.com. We'll pass it along to our development team and see if there is any way we can improve it.,2019-11-15 01:34:52,newest,com.ticktick.task +Dražen Klisurić,https://lh3.googleusercontent.com/a-/AOh14GgSIaD51k5xPiDh98nSKKPE2XiVjKpScgo77mOBdHw,It's nice app but notifications don't popup on my Wear OS watch. I can see them in notification shade but watch doesn't vibrate and there is no notification pop up on screen.,3,1,5.3.1,2019-11-13 08:55:07,"Hey! Sorry about that. We have not configured TickTick with wearOS devices yet, which may cause the notification issue you mentioned above. The team has been planning to support it in the future.",2019-11-14 01:37:58,newest,com.ticktick.task +Neil Browning,https://lh3.googleusercontent.com/a-/AOh14GgS35FKxxRZ7L1bCONaHD9qUD4Mg9cfHNY2-Ji0GKE,"Definitely there is something broken regarding notifications. I'm not getting alerts for all my tasks with reminders. Also, seems like notifications unlock my phone and turn my screen on - when previously they didn't. It's still the app that best suits my needs and definitely worth trying if you haven't before, but the recent issues are frustrating. But I'm sure the guys will fix them soon! thanks!",3,2,5.3.1,2019-11-08 15:00:16,Hey! We have been aware of this issue. The devs will get it fixed asap.,2019-11-09 01:33:23,newest,com.ticktick.task +kyle t,https://lh3.googleusercontent.com/a-/AOh14Gg-0fTxHPrzU5vW0a_fR3KiqsD1f-w-WypnREai56Q,"Despite lacking a few features I'd love (Google Calendar integration, please!) this is the best to-do app I've used. It's efficient, without complexities that muddy its usefulness. The highlight for me is a *compact* task list widget, which allows me to quickly view a large number of tasks on my home screen without scrolling. Unfortunately a recent update has made its notifications insufferable - and I can't turn them off! Sadly I may have to uninstall and cancel if this isn't fixed soon.",3,1,5.3.1,2019-11-07 16:14:17,"Hey! Thanks for your support! So sorry for the bad experience, the product team has been looking into the notification design now, we will try our best to adjust it in the future updates.",2019-11-08 01:17:35,newest,com.ticktick.task +O S,https://lh3.googleusercontent.com/-JX6L__aujJ0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO45dmYGVyw58dPXBd1JSgu5ZuodQ/photo.jpg,Too many fake menu items in the free version (all that items just ask you to buy the paid version).,3,1,5.2.2,2019-11-06 19:07:27,Thanks for the feedback! We will pass it to the product team for considering some tweaking in the future.,2019-11-07 01:23:15,newest,com.ticktick.task +Njabulo Ngema,https://lh3.googleusercontent.com/-Z_5DtBCpQ3s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOD8tgNSYF92OZHgit-PCBtBObO0A/photo.jpg,Work on notifications... Its the best though am happy,3,0,4.8.6,2019-10-30 22:46:04,"Thanks for your feedback, the product team has been working on it now, we will try our best to adjust it in the future updates.",2019-10-31 01:25:03,newest,com.ticktick.task +Ovidiu Toader,https://lh3.googleusercontent.com/-JwkepvaNyD8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPQGE3KIg-_534vgya8HOs6bPyPjg/photo.jpg,no tracking time,3,0,,2019-10-30 21:48:17,"Sorry that we currently do not support this feature yet, but I will pass your feedback as a feature request to the product team for further evaluation asap.",2019-10-31 01:24:01,newest,com.ticktick.task +Alex Orlov,https://lh3.googleusercontent.com/a-/AOh14GhSl8DK9H8itHwfH718TiOI4-__ynC6rlCI3AzaEN8,"I like this app but it's so buggy, it has a lot of ""throttling"" while using calendar sync, please fix this. A: I tried to log out and reconnect, this doesn't work. Calendar part is still buggy. The calendar only works well when I turn sync or calendar permission off, but I can't see calendar events in this case.",3,12,5.3.1,2019-10-30 19:54:14,"Hey, Alex! Could you please log out and back into the app – this will reconnect your account to our server +and allow for smooth syncing.",2019-09-10 05:50:51,newest,com.ticktick.task +Nic Wray,https://lh3.googleusercontent.com/-zVHfJ87QlbU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNoj3Z8GlaCqb0_l9vU4jNfVgC97A/photo.jpg,It's a very efficient and useful app but I'm disappointed in the stats function. It started out lagging a day behind - fair enough - but now it's at least 5. I like having stats to motivate me and this feature is now useless.,3,0,5.3.0,2019-10-27 08:56:23,Thanks for the feedback. We will pass it to the team for evaluations.,2019-10-28 00:50:16,newest,com.ticktick.task +Mark Williams,https://lh3.googleusercontent.com/a-/AOh14GjGluIA01f0ZFUNKGOtjsX5ZuWwFNVkkgmWdy6HlA,"The new notifications in 5.3 suck. They visually look wrong, don't perform well and are a huge step backwards. Would love to see a reversion to the system notifications rather than custom.",3,1,5.3.0,2019-10-26 17:20:53,Hey! We have been aware of it. Have kept your suggestion in mind and will reevaluate the notification function for future improvements.,2019-10-27 00:13:03,newest,com.ticktick.task +Dalia G,https://lh3.googleusercontent.com/a-/AOh14GgpTZZn0ED6WKBXBK8AzFWrD6Xj0oeyK1GTB6b0oQ,"Best task app out there. I always come back after testing newer ones. But the new notifications are terrible. They turn my screen on at random times, don't follow material design... I already have the quick add notification, why are they a separate section?",3,1,5.3.0,2019-10-25 23:10:01,,,newest,com.ticktick.task +Soha Samir,https://lh3.googleusercontent.com/a-/AOh14GjQE7zPSVrQ6y9kgukw7iOY1AgtxzoeaSPp1Ocw,"The app is great but there is a one mistake, there is no way to sing tasks as an unfinished tasks, not deleted or compete it, and the next task in repeated tasks never appear until I complete the overdue tasks",3,1,4.2.1,2019-10-25 13:40:28,Thanks for the feedback! We will pass it to the product team for further evaluations.,2019-10-27 00:11:02,newest,com.ticktick.task +Sydney Harding,https://lh3.googleusercontent.com/-m2oi27vPXgw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOriEcLTszokIjcMFfI0VMqK-eLSA/photo.jpg,"You should put in the description that the widgets, monthly, weekly, and even daily calanders are for premium users, that's the main reason why I downloaded. If you don't have the money for a subscription its just a checklist, which can be done on most defualt phone calander apps.",3,5,5.3.0,2019-10-25 06:38:51,Thank you for providing your feedback!,2019-10-27 00:10:24,newest,com.ticktick.task +Amazing April,https://lh3.googleusercontent.com/a-/AOh14Gg5m77DY-GEfDT39iTg5GJLhWAKopnCATnSAk81cA,"I am hating the experience now, this app was so great untill it started missing on my tasks reminders and its crazy i couldn't get a very important task done that i put a reminder to here, and i have allowed tick tick all the functions it needs but this reminder thing, its pissing me off, please get it fixed.",3,1,5.2.2,2019-10-25 04:55:50,Could you please tell us your app version and screenshot us the sound and notifications settings in the app? We'd love to help you with this issue. Please write to us at support@ticktick.com so that we can help you better.,2019-10-27 00:09:45,newest,com.ticktick.task +Raphael Padua,https://lh3.googleusercontent.com/a-/AOh14GhP9GI2o8t_tRqewApB9stlTzsGpmCrHb3r1hzXUIY,Something that bothered with the calendar widget is that tasks that span for multiple days are separated into blocks in contrast to a continuous line.,3,0,,2019-10-23 23:38:48,"Hey Raphael! Your feedback has been noted down, we will do further evaluations and see if it is possible to make some improvements.",2019-10-24 02:16:16,newest,com.ticktick.task +Andrei Severin,https://lh3.googleusercontent.com/a-/AOh14GhGk3lW2Imwar6RT6LmqwtOoiHN1V6Qu3ytJtRa,"(I am a premium user) This is a great To-do app : tasks, habits, tags, subtasks, timer, however it lacks things that I use on a daily basis, for example: integration with Google calendar or its own calendar (to add events not tasks Edo Agenda did a great job), I wish tags could have different color so that I can distinguish them just by looking at the color, I wish it had other features like project column where you can manage a whole project (ex: trello), Integration with Google Assistant, etc.",3,2,5.3.0,2019-10-22 19:31:50,"Thanks for your feedback! We deeply respect your advice, and we will bring your feedback up with our team, in order to provide better products.",2019-10-23 01:00:03,newest,com.ticktick.task +Renika Widya Putri,https://lh3.googleusercontent.com/a-/AOh14Gj4M-xpGFpDTUbVvyTuj1S5BObPF-xRvWvVtw4qjg,why cant i logged in. -_-,3,0,5.3.0,2019-10-20 08:52:10,"Hi, please contact us at support@ticktick.com and we will figure out why you are not able to open the app. Thanks.",2019-10-20 13:52:56,newest,com.ticktick.task +Anil Gusain,https://lh3.googleusercontent.com/a-/AOh14GjAlitmhTYmY4YL6AFcPu_WY5jv1s0-L2_-LG2s,Ok,3,0,5.3.0,2019-10-19 11:56:34,,,newest,com.ticktick.task +Ishika Kanoi,https://lh3.googleusercontent.com/a-/AOh14GjiGLwgs67xRWopeQUFKRman8zRUZ9qIR-usSCLjeg,It has a nice pop up widget for your to do list. The problem with this app is when I want it to alert me always at 9 about it or remind me of my tasks it doesn't. Its just there. I'm still using it but i feel google assistant does a better job of reminding me. So I might delete it later. Not so satisfying.,3,1,5.2.3,2019-10-16 16:39:52,Hey Ishika! Could you please go to Settings > Sounds & Notifications > Reminders Not Working and check your setup?,2019-10-17 01:06:50,newest,com.ticktick.task +mamy tshipetathanga,https://lh3.googleusercontent.com/-QYJfjIIGDN4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMI087ofPMDlzty4Vnh5zVQ2DvgHg/photo.jpg,"Good app, easy to use but the reminders don't work, no matter what the app says i should do. Please do fix that.",3,0,5.2.3,2019-10-14 16:31:22,Hey mamy! What is your device and system version? Could you please go to Settings > Sounds & Notifications > Reminders Not Working?,2019-10-15 01:28:16,newest,com.ticktick.task +Arthur Zubarev,https://lh3.googleusercontent.com/a-/AOh14GjLjGPu2u1SkguYPzqZ9dQBv069aFHGX_fNmOnhng,Doesn't beat most others in it's free version and too costly in the paid,3,0,,2019-10-14 13:26:51,Sorry to frustrate you by our current pricing. The team will have an evaluation together and see if it could be adjusted in the future.,2019-10-15 01:27:03,newest,com.ticktick.task +Siddhant,https://lh3.googleusercontent.com/a-/AOh14Gh9vNNQDa1f1A_yDMeDfNVS_PAoGGvQsZxFwXTjPQ,"I love its functionality and the idea behind this but one thing is really missing in my opinion is the import of tasks, meetings etc from the mails.",3,0,5.2.3,2019-10-11 16:57:55,"Hey Siddhant! Have you tried ""Add to TickTick"" chrome extension? https://support.ticktick.com/hc/en-us/articles/360016272312",2019-10-12 01:42:34,newest,com.ticktick.task +Planet Fierce,https://lh3.googleusercontent.com/a-/AOh14GjGeQTxyIMh3O3qhLsf5PzHOIcWK5UqkFK9TYLUcg,"overall it's a good task management, I like its Pomo timer and habit tracker. Cons: 1 attachment / day (free version). That's too little, please be kind and add more. Because of that I have to use Google Keeps.",3,1,5.2.3,2019-10-09 15:36:20,Really appreciate your suggestion. We will consider it in the future version.,2019-10-10 01:10:34,newest,com.ticktick.task +Jed and Ann Brown,https://lh3.googleusercontent.com/a-/AOh14GjJas8gZb9zZJ8b2nVNFdekYlKzS_OfCcnFR9QtMuE,"Overall a well-designed app that I would otherwise use, except for the lack of Google Assistant integration, a la Todoist.",3,1,5.1.0,2019-10-07 00:04:12,"Unfortunately, to support Google Assistant is not in our current plan. But we will reevaluate the idea in the future if needed. Thx anyway!",2019-10-07 02:54:49,newest,com.ticktick.task +Andy Y Chen,https://lh3.googleusercontent.com/a-/AOh14GhD5T9tdkkcUdeoaq7L9vRthCWEdV9huIP-pLX1Uw,"""Custom Swipe Options"" hidden in premium 😂",3,0,5.2.3,2019-10-05 23:45:55,"Sorry, this is currently how it is designed. But will pass your feedback to the product team and do an evaluation asap.",2019-10-06 02:25:14,newest,com.ticktick.task +Clar Anderson,https://lh3.googleusercontent.com/a-/AOh14GiaDNOOCaNP3lNaeVr6v5GRysK3juGETGrLla3Vbg,Difficult to figure out how to indent or provide a sublist,3,0,5.2.2,2019-10-05 17:56:10,Hey Clar! Sorry sublist is currently not available in TickTick. More specific about what you are looking for?,2019-10-06 02:24:26,newest,com.ticktick.task +C T Kantharaja,https://lh3.googleusercontent.com/a-/AOh14Gh38lABp0jPVFvHv0L1M6euNUJYdV41_6-O7ylH,Good app,3,0,5.2.2,2019-10-04 23:40:45,,,newest,com.ticktick.task +Rejwan Rahman,https://lh3.googleusercontent.com/-Fg1xzhdlWHw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNgaZX_jzAvF1t1s_SqTGcga3OGBA/photo.jpg,Great app only problem is that whenever I set reminders for the task I set I don't really receive them would definitely rate 5 stars if this problem is fixed,3,0,5.2.3,2019-10-04 18:44:09,Thanks for the positive review! Could you please go to Settings > Sounds & Notifications > Reminders Not Working and see if it works?,2019-10-05 02:31:45,newest,com.ticktick.task +Seb,https://lh3.googleusercontent.com/a-/AOh14GgXyfTShke5oDFnyAK9lUieOHPL6kgJ67D64yw0KpY,Good but flawed. The app does not support tasks from caldav such as icloud reminders 🙄,3,0,5.2.2,2019-09-29 19:14:45,Sorry! Currently you can only import the icloud reminder in the iOS device.,2019-09-30 01:04:23,newest,com.ticktick.task +Madhupkumar43 Yadav,https://lh3.googleusercontent.com/-0sh4rsVP0Cw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMwwyL99VYEKYE1INUxFk__mhDQtQ/photo.jpg,Good,3,0,,2019-09-28 08:12:45,Thank you!,2019-09-28 23:52:44,newest,com.ticktick.task +Kalyan Natarajan,https://lh3.googleusercontent.com/-tzOu-dfPAcw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMivBuLrBkSYj8iy759jOAvsDGZxA/photo.jpg,"Ticktick throws a lot of functions and features into the app, almost the whole kitchen sink. It has some very good and strong features, specially related to reminders, recurring reminders, some ability to recognise natural language dates etc. However it needs to improve MUCH more in search abilites. Except for tags and list names search terms do not show up as you type. Search for tasks with multiple word combinations in the task title does not work. Robust solid search is still sorely lacking",3,3,,2019-09-27 12:57:08,Hey Kalyan! We have been aware of this issue and the devs will get it fixed in the next version.,2019-09-12 01:16:09,newest,com.ticktick.task +Amirul Azizol,https://lh3.googleusercontent.com/a-/AOh14GjDeeYislQbQZ42MUZsiu0_y9-V-vN10yfgykOUEA,"Wish the google assistant integration could be improved. Every time I ask it to set a ticktick reminder, it just shows TikTok. Also, every time I restart my phone I need to boot up the app, otherwise the widget panel doesn't show up.",3,0,5.2.2,2019-09-25 13:34:48,Noted! Will bring this up with the development team for further improvements.,2019-09-26 00:54:57,newest,com.ticktick.task +ALISON MAYRIDOY,https://lh3.googleusercontent.com/a-/AOh14GiSiCtdzC-pA0-uQGI5eze1_Pl9JVjq1_cPbMtkVA,"Lack of function in free version to extent i couldnt use at all. I am prepared to pay for planner i like, but it was impossible to tell. I didnt want to give 1 star though, as it did look nice.",3,8,5.2.2,2019-09-22 20:28:19,"Hey Alison! Could you please elaborate on ""Lack of function in the free version to extent""? Which feature are you referring to?",2019-09-23 00:36:11,newest,com.ticktick.task +Eli Greenfeld,https://lh3.googleusercontent.com/a-/AOh14Gj_RmQUTjSRoZCcD8SzHUxtPJgzry7W7A9N0b6lG_I,"This app is going in the right direction, just switched from Todoist. I think they have to concentrate on adding more (what should be) standard features before adding things like Hobbies etc. It's ok, but far from amazing in my opinion.",3,1,5.2.2,2019-09-18 10:31:48,Thanks for your support!,2019-09-19 00:47:15,newest,com.ticktick.task +yogesh bahir,https://lh3.googleusercontent.com/a-/AOh14GgQy-XcYiHy0_bWC-sKBEyIvb-loqd-OT9UbfSpKw,"Nice app but ,I can not add any winget to my mobile screen,",3,0,5.2.2,2019-09-13 13:55:46,,,newest,com.ticktick.task +Philip Himmelstein,https://lh3.googleusercontent.com/-NvAr_80_szg/AAAAAAAAAAI/AAAAAAAAADs/AAKWJJO13wWjF3U4FoNfvefyr4RriUYXTA/photo.jpg,"I wanted to like it... I've always drooled at the idea of having a to do list app integrate with a calender. But alas, this version is clunky. You can't delete a single date of a recurring calender event, meaning you can't flexibly plan your day while beginning with a rough outline. I switched over to to-doist and Google calender instead.",3,0,,2019-09-11 00:05:02,,,newest,com.ticktick.task +Andrew Briggs,https://lh3.googleusercontent.com/a-/AOh14GgnFL-X1ducOzU6YEcIOemfEgT6IGXILyC5dUEzxw,Ugh... too complicated just want plain priority list. Uninstalling.,3,1,5.2.2,2019-09-09 21:27:40,,,newest,com.ticktick.task +Kingzyyy,https://lh3.googleusercontent.com/a-/AOh14GiUhdXzLJhVu_BALnLyQJTOa1Hs4j8XI_bnKQ3c8A,Great app. I wish I had more chance to add reminders without buying premium.,3,0,,2019-09-09 14:02:49,,,newest,com.ticktick.task +Samy Cooper,https://lh3.googleusercontent.com/a-/AOh14GiwvdzXI4bqDpbop6U-HqMtwS8hxlw3PQAkXJ43Bw,"Its honestly a great app, other than the fact that it keeps pushing for me to upgrade and i cant do certain things unless i upgrade.",3,0,5.2.1,2019-09-08 15:39:09,,,newest,com.ticktick.task +Harris Kunakira,https://lh3.googleusercontent.com/a-/AOh14GgbtVq08Lz1VJDEyyy_vlTgcLB7dMrOAHJyrvkCYQ,the app and widɡet are very ɡood. Will change to 5 start when I can be able to add task using google assistant.,3,0,5.2.1,2019-09-05 13:18:29,,,newest,com.ticktick.task +Jeff Armon,https://lh3.googleusercontent.com/a-/AOh14GhsYlshR2x55crUIObn92Jq_YEL1hob0_LUy9azYg,"No app funciona muito bem, mas infelizmente não está sincronizando corretamente com a versão web. Ainda é o melhor app que já usei na categoria.",3,0,5.2.1,2019-09-02 14:57:37,,,newest,com.ticktick.task +Virendra Shivkar,https://lh3.googleusercontent.com/-P6RKCy1TNF8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMrQJmSl0GK1Tm7b1drbHbgC7C_bQ/photo.jpg,It is good sometime app does not work properly. Intimation not shown on time.,3,0,5.2.1,2019-08-30 06:27:44,,,newest,com.ticktick.task +Jean-Philippe Tardif,https://lh3.googleusercontent.com/a-/AOh14Ghk0yCaFh32FVVoSHNzmy2-zAAtpNi30hz4-AFKmx4,Doesn't work with wear os.,3,0,,2019-08-29 18:04:14,,,newest,com.ticktick.task +Sunil Garg,https://lh3.googleusercontent.com/a-/AOh14GhIy1VEpiILx8WmYuRhAxOU9DL74q70a3H0hT5U,Everything is perfect. Its just that the completed tasks are too faded to be visible in the widget. Kindly fix this. I am deducting 2 stars for this problem,3,0,5.2.1,2019-08-27 20:14:22,,,newest,com.ticktick.task +Andrews,https://lh3.googleusercontent.com/a-/AOh14Ggy8-ECzZgI9NH9nC2mRVU-4Ds7THXH3Ausgpij,I can't type?? Not because of my phone. There must be some mistakes,3,0,5.2.1,2019-08-27 15:28:38,,,newest,com.ticktick.task +Emma Marion,https://lh3.googleusercontent.com/a-/AOh14GiRs1Mvg8xEGeyaJ0o92COylr3Q4OeR862tz3jhHA,"This is by far the best to do list app I've come by. It has rich features and a great interface, even in the free version. It knows the difference between a task, and a habit. My main issue here with the app, is premium pricing. Why exactly do I have to pay a monthly fee for features that can be used offline? Normally, a monthly subscription is to support features that need to be consistently paid for. From what I can see, there's only one. If a one time payment option is added, I'll buy it.",3,2,5.2.1,2019-08-27 11:59:55,,,newest,com.ticktick.task +Brett Kelly,https://lh3.googleusercontent.com/a-/AOh14GiiIX48UDOWi648HajCIfusuiF1Jggmc7hOw17w,"I want to like it, but the main thing I wanted it for is location based reminders. When adding a location I hit star to save it, but they aren't saved, you have to manually enter the address every time. I don't understand why everyone gets location based notification so wrong.",3,1,,2019-08-25 14:55:43,,,newest,com.ticktick.task +Jim M,https://lh3.googleusercontent.com/-hUSCu6qhxH8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOi-MxFgQs9bIJrdfTQzK2MscHihw/photo.jpg,Was looking for something which syncs with Google Tasks.,3,0,5.2.1,2019-08-25 05:46:03,,,newest,com.ticktick.task +T C,https://lh3.googleusercontent.com/a-/AOh14Ggm1kgOyZD0M-qAyelq3KwAdxfpsoOw9FKBULzr5w,It alright,3,0,5.2.0,2019-08-24 18:33:16,,,newest,com.ticktick.task +Shankaran Pillai,https://lh3.googleusercontent.com/a-/AOh14GhpAafyKfXTVeZScwEHewL4TQ0xO8THJc0yYDbczw,Please Keep A Tab for (Accidentally ) DELETED Tasks.If some 5-6 Tasks gets accidentally Deleted it gets very irritating to again set the tasks.So it'd be a great idea to keep a recycle Bin for the Deleted Tasks.Thanks!!,3,1,5.2.0,2019-08-22 20:36:05,,,newest,com.ticktick.task +Marlyn Moya,https://lh3.googleusercontent.com/-ne5MzYUhu10/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO9Mg1pA-qhuujoPVdTzB_Hmcqbrg/photo.jpg,Please add location-based reminders and missed call reminders,3,0,5.2.0,2019-08-19 07:40:51,,,newest,com.ticktick.task +Lourdes P,https://lh3.googleusercontent.com/a-/AOh14GiW7ofChFOH4khhfd2vZlRoMYsOXgQc-BUteRzLBQ,"Constantly crashes if type too fast...pointer disappears, page bounces to another section then back again, sometimes deleting text just entered! Went from a Galaxy Note to a Galaxy J7. Didn't have these issues with the Note...so, to be fair, not sure if its the app or my new device. Help!...Update: Now, app causes device to not work properly. Get this message: ""System UI not responding"". App causes device to freeze. Uninstalled app, device went back to normal.",3,0,5.1.1,2019-08-17 22:28:26,"Hi, sorry for the inconvenience. Please go to Settings, Send Feedback and email us (the email will auto collect the error log from you). We will look into the problem asap.",2018-09-13 11:26:45,newest,com.ticktick.task +Roman Leleko,https://lh3.googleusercontent.com/a-/AOh14GhjBbpMjLZjndDiFDOeS1yCwtuW2l8C9zGZbCfmi4o,I loved TT and paid for Premium but sooner or later their reminder will let you down :( You can't count on it unfortunately. And it's not because of Android but due to a flaw in the app. If a reminder pops up and you accidentally tap somewhere else in the screen or if you're busy now then the reminder disappears and never reminds you again until you manually find this task again in the list and set a new date for the reminder.,3,4,5.2.0,2019-08-16 04:45:20,,,newest,com.ticktick.task +Ong Kai Yong,https://lh3.googleusercontent.com/-K5CwwJlh_q8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPaxtv9Sw9n9-zYb5tZQJEwKuz-fA/photo.jpg,overall alot of features. can make the app more organise using colors. cannot find way to export when switching phone.,3,0,5.2.0,2019-08-14 05:13:50,,,newest,com.ticktick.task +Bandisa Masilela,https://lh3.googleusercontent.com/a-/AOh14GhB186ynSsXCaP7shHDSmNG7uUmwyLOffCMRzwZBw,"I love the app but please, allow me to just buy the app and be on my way, what's up with the subscriptions?",3,0,5.2.0,2019-08-12 18:25:25,,,newest,com.ticktick.task +ayesha amerat,https://lh3.googleusercontent.com/a-/AOh14GiEMVAI2JQfwHf5-UaR2yhF2fDj2_Sz76Afh7FIRw,its simple but it works,3,0,5.2.0,2019-08-09 09:10:37,,,newest,com.ticktick.task +SCRLMN 1,https://lh3.googleusercontent.com/a-/AOh14Gj5OrALSmcR6ZBZ-2qJfTwD96OXD6AUBtJxlgAv,Приложение хорошее но багов очень много и с каждым днём все больше и больше,3,0,5.1.1,2019-08-06 07:38:40,,,newest,com.ticktick.task +Aki Mui,https://lh3.googleusercontent.com/a-/AOh14GhSLZ4sQkLC9xbiJQATugrDDHXUfBu_LAEr3M8ghw,"why weekend just 2 days on sat sun, but my weekend is on friday only.",3,0,5.2.0,2019-08-05 23:03:37,,,newest,com.ticktick.task +nithin kumar,https://lh3.googleusercontent.com/a-/AOh14GiojyGGZmJfMS61PaJxmUGw8xEBsSGitgBQCteyoSQ,"cant postpone a task: ""the reminder you set was invalid because its already overdue"" ??? thats the reason im postponing it...",3,9,5.2.0,2019-08-04 02:54:44,,,newest,com.ticktick.task +Hanna Smith,https://lh3.googleusercontent.com/a-/AOh14GgSK_YlStWpN7cGHJWpSEU0l5fbsmuEi8jFij7kiow,"Unfortunately sometimes the reminders don't go off when they're supposed to. However, I like the easy design, so I can just write things quickly.",3,2,5.2.0,2019-07-25 16:31:41,Thank you for your kind feedback. We are aware of this problem and are currently working on solving it.,2019-07-30 01:43:51,newest,com.ticktick.task +Faye S.,https://lh3.googleusercontent.com/a-/AOh14GglhNNY--dDseBy_DkVaHfb-1M9tYd9fMaM2-g62w,Please integrate Kanban from web to the mobile app.,3,0,5.2.0,2019-07-25 14:37:31,Will consider adding it if it is highly demanded.,2019-07-30 01:43:25,newest,com.ticktick.task +Muhammad Mustafa,https://lh3.googleusercontent.com/a-/AOh14GhiW9PJMr9-ZHkPh54L36OtME_ATRCaxUb84gAGDA,really good app really helpful. but guys if you can change the reminder Sound from notification to Alarm. plzz,3,0,,2019-07-23 19:52:22,Hello! Thanks for the feedback. Will pass it to the product team and we do some evaluation asap.,2019-07-30 01:43:04,newest,com.ticktick.task +Sean Grant,https://lh3.googleusercontent.com/-bfJXfj50oNs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNaRZ4G86RyBLCLa8q1f2anNzwmAg/photo.jpg,Good app but you need to pay a subscription to use it fully. There isn't an option to pay for the app outright which is a shame,3,1,5.1.1,2019-07-23 08:59:13,Sorry to hear you are unsatisfied with the subscription. I hope you can enjoy our app again in the future.,2019-07-30 01:41:58,newest,com.ticktick.task +Christopher Craven,https://lh3.googleusercontent.com/a-/AOh14GgFety-XU72skCgEVOrYZMhnWj8SGTr9md7Ut06pw,"App was great, but now I cant set my work end times, only starting due to it being restricted for premium only now after the new update. Bad timing guys. Uninstalling app.",3,3,5.1.1,2019-07-20 08:17:48,,,newest,com.ticktick.task +Mina Pendar,https://lh3.googleusercontent.com/a-/AOh14GhVtWWByiS4wDcMA-i7YjWcQF_nnRhPnk0rRfBmvA,"I have a big problem with this app, daily routine doesn't repeat unless i complete it. But somtimes i really could not complete it. then ist stop, why?!!!!",3,0,,2019-07-20 06:42:09,,,newest,com.ticktick.task +Rafael Gonçalves,https://lh3.googleusercontent.com/a-/AOh14GjRWMALcyQ79VHDtMnBEZFym4NYxPCuQfC2h6lrRQ,"good app,but Im a premium user for more than one year and have been requesting features on the official support forum (like change dates of lots of overdue dates at once on windows app) and never even got a response.",3,4,5.1.1,2019-07-19 05:25:40,,,newest,com.ticktick.task +Sarah Scutt,https://lh3.googleusercontent.com/a-/AOh14Gg8qfUP1-3ud6533iKPgTSrbAoZF5FgOr6HB9FT,have to subscribe to link to Google calendars,3,0,,2019-07-12 15:01:30,,,newest,com.ticktick.task +Zahid Sardar,https://lh3.googleusercontent.com/a-/AOh14Gg5gbhQ3DBMjodQ7nHWeLQMBqkOcOj2zRIlMVAcC9Q,"Nice and simple task app, however it is missing a couple of key features that are preventing me from switching over fun my current task app. These are: 1. No ability to set multiple reminders. 2. Cannot hide tasks until a later date. For annual tasks, I do not wish to see them constantly in my to do list, I'd like them hidden until a certain date, usually 1 month before due date. Furthermore, due to the longevity of the task, I like to be reminded early and then again closer to the time.",3,0,,2019-07-10 15:56:42,,,newest,com.ticktick.task +Lincoln Stewart,https://lh3.googleusercontent.com/a-/AOh14Gg8D3_-GrcNBDBbAonDacm4ePzgACW4aoJSCdaMBQI,"This is pretty great but has what I think is a major bug. In the settings you can choose a default for reminders. So, I choose ""an hour before"". That means, to me, that if I say something is at 2pm, it will remind me at 1pm. However, instead, TickTick sets the task for 3pm and the reminder for 2pm. This is, obviously, wrong. Fix that and its 5 stars but as it stands, I now have to set each reminder individually, which is a pain.",3,10,5.1.1,2019-07-08 17:23:18,,,newest,com.ticktick.task +Arpan Vinayak,https://lh3.googleusercontent.com/a-/AOh14GjCjbirPE4WCylsRdTtJXO-bT0OdXOGyMwYgknBPw,I am facing sync issues. Yesterday I added a todo from my laptop chrome website. Today I didn't get it's notification on my phone. It's when I opened the app when I see that it's being added. This should have been done in the background.,3,2,5.1.1,2019-07-04 07:53:17,,,newest,com.ticktick.task +J L,https://lh3.googleusercontent.com/a-/AOh14GjecKlxRx7L9AZuq5YSrZkNLz46CKNX70j0Lopi1X0,Can we please have sub tasks Placed under our main task… ? The analytics are not so useful to be honest..,3,0,5.1.1,2019-07-03 23:48:13,,,newest,com.ticktick.task +TickingFeather,https://lh3.googleusercontent.com/a-/AOh14GhTv79zk4VPPe35ZkR9SPrzuWN-Hti1OKQD0ZcGFQ,"Pretty good app to take notes and lists, +1 for the smart Snooze feature. However it's disappointing that there's no reliable way of backing up all your data, even with Premium. The only option is to log in using a browser and manually export a backup, but an automated scheduled export within the app would be way better.",3,3,5.1.1,2019-07-01 22:26:30,,,newest,com.ticktick.task +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Too many features are premium only,3,0,5.1.1,2019-06-26 11:08:08,,,newest,com.ticktick.task +Raj Bharath A.S,https://lh3.googleusercontent.com/a-/AOh14GjJZBFbQHHwY3zGG7PmtxAE6TkYJXBHNBWng6jeNg,1. Notifications comes over my locked screen 2. Notifications doesn't work properly on time Would be very helpful if you add Notes.,3,4,5.1.1,2019-06-24 06:42:49,,,newest,com.ticktick.task +yotam shwartzman,https://lh3.googleusercontent.com/-kcsd_mbrqxM/AAAAAAAAAAI/AAAAAAAAG0Y/AAKWJJPCSissRqBHDp_Kztw40yxWZ8MMAw/photo.jpg,Bad calendar sync,3,0,5.1.1,2019-06-23 09:55:08,,,newest,com.ticktick.task +Robert Miller,https://lh3.googleusercontent.com/-4Pqd_IY-8sE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMiNJw79TAv6uCfB-z_g6WA7nMv8Q/photo.jpg,"scary. it's a great program (haven't put enough into it to see if it has the gtasks sync issues) but I don't see a backup option. I've put information into apps then, years later, they change formats and all data is lost. This can never happen. I need to know that I can always access a given version of the program and local data will always work. todo and Microsoft onenote burned me. (Microsoft is extorting, buy office 365 and we'll allow you access to your prior data.)",3,7,5.1.0,2019-06-19 15:17:48,,,newest,com.ticktick.task +C Reactive,https://lh3.googleusercontent.com/-zH6hM08UCqU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNyg6sSC8osbqcBaWWjoV-VBVXCFw/photo.jpg,Passive but good,3,0,5.1.0,2019-06-18 02:29:40,,,newest,com.ticktick.task +min borin,https://lh3.googleusercontent.com/a-/AOh14Ggetqea6St9NOrLEfedvsaehvIv0JxYmy-Ngex_Nw,this tool so cool for todo list,3,0,5.1.0,2019-06-16 02:28:17,,,newest,com.ticktick.task +Cuby Insane,https://lh3.googleusercontent.com/a-/AOh14Ghx4S6fvBwjk_kHq9uU-N6Ipjekhfc12J0lHemifA,UI Needs to be improved,3,0,,2019-06-08 15:34:14,,,newest,com.ticktick.task +Jayvantsinh Solanki,https://lh3.googleusercontent.com/a-/AOh14Gh16fR2mPW_xNXr5vOD5YZOxhBAQ7fpDyAhafTCCA,For me. Good app.,3,0,5.1.0,2019-06-06 13:55:00,,,newest,com.ticktick.task +AliReza Mohammadi,https://lh3.googleusercontent.com/-RaZpPzxi15A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM0eNZ6od_0hM60U5Jc-z8aGVIEcA/photo.jpg,"Hi, i change ""start day of week"" in the sitting but in the repeat option, when i check the ""skip weekend"", the program skip saturday and sunday!!! if first day of week is Saturday, then Thursday and Friday are weekend, please fix it for 5 stars! this is very important. thanks.",3,0,5.0.2,2019-05-23 05:57:02,,,newest,com.ticktick.task +loteneh,https://lh3.googleusercontent.com/a-/AOh14GgX4fQfSDO2yFT0YnC8rrFCeViUDF-WkEezVqLfxQ,"This app used to be helpful, now it doesn't give me notifications unless I open the app. When I do open the app, I am slammed with overlapping ""reminders"". I have tried everything in the settings, but nothing has helped. I like all the other aspects of this app, so it's a shame that the one thing I need it for doesn't work any more.",3,15,5.0.2,2019-05-22 13:00:15,"Hi loteneh, please set up all the settings refer to the steps under “Settings - Sounds & Notifications - Reminder Not Working”, and try again. If problem still exists, please go to Settings, Send Feedback and email us (the email will auto collect the error log from you), developers will assist you to resolve the problem. Thank you.",2019-05-23 02:39:25,newest,com.ticktick.task +Lesley Portbury,https://lh3.googleusercontent.com/a-/AOh14Gg6hmeAJ2vA7Yullsgmq4JNk5nj-JjWHOkATNouVQ,"Still evaluating the app, lots of things I thought are not available on free app, must upgrade to premium to use. App good to use so far. That why rating low.",3,0,,2019-05-19 13:44:35,,,newest,com.ticktick.task +Samir Afonso,https://lh3.googleusercontent.com/-byD-_o9CFjo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOUGZtsH_mKFHjp5LLf9QPniM1a1A/photo.jpg,"Tick tick is Brilliant app, I have been using it for almost 2 years and I even subscribe to the upgrade, unfortunately was disappointed that it automatically subscriberd me to auto renewal, without providing me the option to choose yearly renewal. I have since unsubscribed. I would like to upgrade but only if I am allowed to choose yearly upgrade not auto renewal.",3,0,5.0.2,2019-05-18 09:27:25,,,newest,com.ticktick.task +Afiq Pauzi,https://lh3.googleusercontent.com/a-/AOh14GhN2jaeknjxELKvhG8b40yytgVpDRo5zjtyKVLqGto,impressive,3,0,5.0.2,2019-05-18 03:15:39,,,newest,com.ticktick.task +Amir Rizvi,https://lh3.googleusercontent.com/a-/AOh14Gga_o7-6iL02HZd1cFxuODScLOfad7FE5JnL4bmug,good.,3,0,5.0.1,2019-05-16 12:32:01,,,newest,com.ticktick.task +Mariana Esther Martinez-Sanchez,https://lh3.googleusercontent.com/a-/AOh14GjjnXwvPB6Uk4eA1zqJg-95mRdkxG_eHoNXfiBKIMo,"I really liked the app, but couldn't find a way to integrate it with my google tasks, which is a most for me. It is a very complete app, I would even consider a premium subscription if it was a one time thing and not a yearly/monthly system. I will check this again in a couple of months to see if it has improved.",3,0,5.0.1,2019-05-12 14:17:05,,,newest,com.ticktick.task +david sim,https://lh3.googleusercontent.com/a-/AOh14GhuyWHoH2Vdlr0AtriRMPUFJzizngRsJ5SiOUro7U4,"The Apss so far is the best to do Apps I have use, however the Tag unable to sort alphabetically, we hav to everytime sort manually, not user friendly. I will rate 5 star if can settle this problem",3,0,5.0.1,2019-05-10 12:54:11,"Hi david, product team will follow up on your advice. Thank you.",2019-05-12 07:44:05,newest,com.ticktick.task +Kak Ha,https://lh3.googleusercontent.com/a-/AOh14Ghh3ploHRXaKxvBP4eAhxxcfxqVeDsDy6shWqgpAPo,"There is no option for repeated activities is a few hours. I will give 5 star and uninstall Todoist if I can set 'every hour / every 3 hour'. So far, this app is better than Todoist.",3,0,5.0.1,2019-05-01 00:46:14,,,newest,com.ticktick.task +James Harmon,https://lh3.googleusercontent.com/-_63EA-bj4Vc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN8AFCOne43UU7dXOs1c7DSHU9QZQ/photo.jpg,"On my S9+, it's started giving notifications some minutes after the event. It actually states it, e.g., ""4 minutes ago."" The time delay varies. I hear the notifications announce on time on my Huawei tablet.",3,0,5.0.1,2019-04-25 19:57:17,"Hi James, Sorry for the troubles. Please lock the TickTick and prevent them from closing. In the recent apps, there is a 3 dot menu in the top right corner. Tap it and you will see the option for locking apps. And set up all the settings refer to the steps under “Settings - Sounds & Notifications - Reminder Not Working”, and try again. Thank you.",2019-04-28 12:23:45,newest,com.ticktick.task +Dale Tubb,https://lh3.googleusercontent.com/a-/AOh14GjFmSFyVaErpw4aEjPLr-L_WtLqC9M0qKVgEOj087o,"I love everything about this app, except for how it handles snoozing repeat tasks. It's easy to use and has a lot of configuration, something a lot of other apps save for the premium version. Unfortunately, I find it unusable due to how snoozing repeat tasks then alters the date/time for all future occurrences, making it difficult to manage these tasks when I just want to snooze it this one time. If this was changed I would give 5 stars and upgrade to premium as the app is otherwise perfect.",3,4,5.0.1,2019-04-20 09:46:03,"Hi Dale, thank you for the feedback. The product team will follow up on your advise. Thank you.",2019-04-21 14:16:56,newest,com.ticktick.task +John Smith,https://lh3.googleusercontent.com/a-/AOh14GiSM7boLMe8InKqBcHxghcfDhQRJqKnO4RKiyCipg,"pls my dudes, minimize number of clicks to set/edit/delete task's reminder time. I feel like all I do is tap tap tap tap!",3,0,,2019-04-19 13:25:58,,,newest,com.ticktick.task +SAI SIDDARTH MANOJ MUMMIDI,https://lh3.googleusercontent.com/a-/AOh14GgZvya72teUUTjJfqLDEhFKsqk7a5S5QPmTxvmF,"good app ,but some feature are to be updated still like, it should actually calculate the petcentage of work done by us on each task and should be more attractive i think so",3,0,5.0.0,2019-04-18 15:36:11,,,newest,com.ticktick.task +Brayden Houston,https://lh3.googleusercontent.com/a-/AOh14GhcbSAeL8wn8UwHFgWRAEH_J7mIFznGTUCAIGjQIag,"This app is awesome! Clean UI and great dark mode! EDIT: 6 months in and still happy mostly. It would be nice to the the development team take a little more notice of the community. No IFTTT, Google Assistant, or WearOs support. Wouldnt be so bad if there was an API but that doesnt exist either. The developers have ignored these requests month after month for years. Very frustrating!",3,2,5.0.0,2019-04-16 05:20:55,"Hi Brayden, We're working on it this year. Thanks for your understanding.",2019-04-17 10:48:19,newest,com.ticktick.task +Susan B,https://lh3.googleusercontent.com/a-/AOh14Gi7v3CPi4_dtY-6ui3k1tvVEs8w7OWyqkCPkwx_XQ,Not sure...bought the premium subscription for a year...not sure though. Help pages are pretty good so I will keep working with this. I like that it crosses my devices.,3,0,5.0.0,2019-04-14 16:31:55,,,newest,com.ticktick.task +Ben Hannel,https://lh3.googleusercontent.com/a-/AOh14GgAuAIeYeN7HxT3d67s7War64j6pd1UKwvh9nIESJA,Sync with Google Tasks totally broken- tasks are months out of date.,3,2,5.0.0,2019-04-12 08:45:14,"Hi Ben, Sorry for the inconvenience. TickTick doesn't support syncing with Google Tasks. Or do you mean Google calendar events? Thank you.",2019-04-14 12:40:07,newest,com.ticktick.task +Ashley Vermeulen,https://lh3.googleusercontent.com/a-/AOh14GhSI8PiHw7Js4qZBs2euz9zRIBrpaqIybezuSLQD1E,would be great to have notes implement into the app. that way it would be a bit more multifunctional.,3,0,5.0.0,2019-04-11 22:42:33,,,newest,com.ticktick.task +Parameswar Mondal,https://lh3.googleusercontent.com/-f__hCj2ZTk0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNCJY2jbrbldymxgW8lh848nGmPGw/photo.jpg,"Hmmm, working good",3,0,5.0.0,2019-04-08 15:23:56,,,newest,com.ticktick.task +Senthil Sivalingam,https://lh3.googleusercontent.com/a-/AOh14Gh-anHrj4eEcmXazoIp20zRWSgqhuKrCyhlISr72fg,Very costly,3,0,5.0.0,2019-04-08 13:22:43,,,newest,com.ticktick.task +Nick Stern,https://lh3.googleusercontent.com/a-/AOh14GiK3BxMY2OJzjs7l3eX_AybtlnQ-mogUT895sAwlRk,"To finish scheduling a task, you must click a small arrow in the top left corner. Clearly, the development team never tested this becsuse it feels horrible.",3,0,,2019-04-06 04:46:20,"Hi Nick, It is currently designed like this. In the process of using, what problems have you encountered? Please tell us, and the product team will follow up well. Thank you.",2019-04-07 15:46:40,newest,com.ticktick.task +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Nice app but there is a with the tasks syncing with other calendar.,3,2,5.0.0,2019-03-30 10:21:31,"Hi there, Sorry for the trouble. Could you please be more specific about the case? We will look into the issue soon. Thank you.",2019-04-01 11:19:45,newest,com.ticktick.task +Dallas Helton,https://lh3.googleusercontent.com/-O3thI5Gv9CY/AAAAAAAAAAI/AAAAAAAAe3A/AAKWJJPATT6sHRj6cAxAv92WV1f8ReRMXw/photo.jpg,"I would gladly pay $5 for the premium features of this up, but they want a monthly subscription. I don't think that's a fair price at all, but it's a good app with the free features so... 3 stars.",3,0,5.0.0,2019-03-28 23:01:44,,,newest,com.ticktick.task +Edwin Tang,https://lh3.googleusercontent.com/a-/AOh14GiM9fnAtugA34VsJR1Zl3HOEqwU9xPCE1jfP6_XqpY,would give 5 stars but locking the aync function through a subscription sucks,3,0,5.0.0,2019-03-28 04:03:05,,,newest,com.ticktick.task +Roma Makhnyk,https://lh3.googleusercontent.com/a-/AOh14Gi5d2FuDjziF7EvHPPpcvlhzCc6z4XuAoyedK7tIg,"The app is great, but I really don't like new dark styles with orange details color... Please add the ability to change details color back to blue (or some others).",3,2,5.0.0,2019-03-26 06:11:15,,,newest,com.ticktick.task +Ross M,https://lh3.googleusercontent.com/-_6kjaj51e0Y/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNQ5UQ5byKCBZje_MqfA6OBN-ir5A/photo.jpg,"My review might be a little skewed because I'm looking for something specific. I want an app to create an hourly task today, that doesn't require me to enter in a reminder for every hour in the day. I don't really need a task manager because I have 3 built into other apps, and I don't need a place to keep notes to be reminded about because I also have several apps that do that. Really I just want a flexible natural language reminder app.",3,0,,2019-03-24 12:12:07,"Hi Ross, setting reminders for subtasks may be helpful. https://support.ticktick.com/hc/en-us/articles/360016273572-Add-reminders-to-subtasks-Premium-. Thank you.",2019-03-24 10:03:15,newest,com.ticktick.task +Lisa Kiehl,https://lh3.googleusercontent.com/-JtgvzDxhnfU/AAAAAAAAAAI/AAAAAAAAJ_8/AAKWJJOkNS5s98tAjtVwo4_X73A3DO-luA/photo.jpg,I've recently started using ticktick. so far so good. It would be nice if you could alphabetize the items checked off so that they are easier to find when you want to add them back to your list. I haven't found a list system that does that yet.,3,0,4.8.6,2019-03-20 23:07:59,Thank you for the support to TickTick. Product team will follow up on your advise.,2019-03-21 06:15:14,newest,com.ticktick.task +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,No internet connection all the time !,3,0,4.8.6,2019-03-19 12:04:56,Sorry for the troubles. What toast information do you see in the app? We need more detailed info to help you resolve the issue. Thank you.,2019-03-20 01:20:19,newest,com.ticktick.task +Seb P,https://lh3.googleusercontent.com/a-/AOh14GhS-v0hhNpPsxjYfLGwA0GQIWpicHJ90ezmx2MTKw,functional nothing special,3,0,,2019-03-13 22:29:43,,,newest,com.ticktick.task +Bahareh Vv,https://lh3.googleusercontent.com/-GPg5WFR71y0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMiy9cnV0BH93bjwwjgvcZpFtnWrg/photo.jpg,"Nice app. but, why it doesnt sync with my google acount? I mean when I add a new task, it does not appear in my gmail task!",3,0,,2019-03-12 08:23:06,"Hi, TickTick does not support syncing to Google Tasks. TickTick has its own cloud that can be synchronized across multiple platforms. You can find more detailed info here. https://ticktick.com/home.",2019-03-13 02:50:37,newest,com.ticktick.task +Denis Nickoleff,https://lh3.googleusercontent.com/-O68SPCAUcLQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPDakknh298ribV9ZiK9aqM0e0prQ/photo.jpg,"a wealth of options and no guidance on how to use them. templates or examples would be useful. if you're willing to stick with it, you'll find it very useful. the leaning curve is steeper than it needs to be.",3,1,4.8.6,2019-03-09 15:51:41,"Hi, here is the user guide. https://support.ticktick.com/hc/en-us/categories/360000948871-User-Guide. ^_^. Thank you.",2019-03-11 10:46:40,newest,com.ticktick.task +Phillip James,https://lh3.googleusercontent.com/a-/AOh14GjllL-b5QcKpwaBNSp0AY2Niie2R9-DO6e3v5JAtOk,Not free,3,0,4.8.6,2019-03-09 14:27:55,,,newest,com.ticktick.task +Juan Barragan,https://lh3.googleusercontent.com/a-/AOh14GjyUHzwkdIqfMEczfD0jyha_3134fqa9sKO0wdQ3IE,pomo timer is still glitchy.,3,0,4.8.6,2019-03-08 19:37:33,"Sorry for the inconvenience. If possible, please join in the Tick Tick Beta version in the Google Play, https://play.google.com/apps/testing/com.ticktick.task. We made some improvements on the pomo timer. Or you can wait for the next TickTick iteration on Google Play. Thank you.",2019-03-11 11:58:45,newest,com.ticktick.task +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Pretty good. Took a while to figure out how to set up a task. Too many steps/screens to set reminder time, recurrence etc. I feel those should all be on a single screen. After saving, I can't edit. All I get is a prompt screen to sign in or sign up. Great feature for some, but I don't need it. It would be nice if that feature was said to be mandatory in the play store listing. I wouldn't have wasted my time. 3 stars for the ""forced"" share and the many-stepped interface. Seems to be feature-rich.",3,0,4.8.6,2019-03-07 18:15:24,Sorry for the troubles. Product team will follow up on this. Thank you.,2019-03-11 10:55:10,newest,com.ticktick.task +J J,https://lh3.googleusercontent.com/-wR5d_ydGvII/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMpM4RmCcPrx4MiceilQPryqOf_hg/photo.jpg,no timing,3,0,4.8.6,2019-03-05 22:33:21,"Sorry for the inconvenience. Can't the tasks remind you on time? Please provide us more detailed info, so we can assist you to resolve the problem. Thank you.",2019-03-07 03:35:15,newest,com.ticktick.task +kevin cassell,https://lh3.googleusercontent.com/a-/AOh14GghNXo3SLRrpl7PsyPHBHHE2Qp-AIcmGPNr58K-KXo,"great app, better than Google's free one. but paying a subscription for such a simple app has rendered this useless. im happy to oay a one off fee, but im not willing to pay a subscription just access other features. hence why its not 5 stars. its just a to-do list.....thats all.",3,0,,2019-03-02 10:55:19,,,newest,com.ticktick.task +Vinci Zhou,https://lh3.googleusercontent.com/a-/AOh14GjudObz_cgj2GtdxHyTEe48MFiCdXzjOobW6hZmavo,can not invite my friend who's using 滴答清单 to join my list. and IDK how to give feedback in the app.,3,0,4.8.6,2019-03-01 00:59:45,"Hi, the server for ""TickTick"" and ""Tick List"" is different. You can ask your friends to sign up for a TickTick account and then share the list with your TickTick account. Thank you.",2019-03-04 15:57:54,newest,com.ticktick.task +Mukul Singh,https://lh3.googleusercontent.com/a-/AOh14Gj7JwoKAuoduc0CF2VqwH8echK43iHY9-fPDVEaZQ,"A to do list is a really clever way to look into progress you have made in a day so, it is not just about completing the task it is about looking into the progress you have made by glancing at completed tasks. You don't get default features to see the competed tasks to enable that you have to go into settings and enable that and if you are not interested in compiled tasks anymore you can't just delete those tasks for that you have to select each task individually and then delete it.",3,0,4.8.6,2019-02-27 09:58:54,"Hi, batch edit task may helps. Refer to this. https://support.ticktick.com/hc/en-us/articles/360016273612-Batch-edit-tasks-in-a-list. Thank you.",2019-02-28 06:03:25,newest,com.ticktick.task +Kailash Shrestha,https://lh3.googleusercontent.com/a-/AOh14GjDkpItUeJ8fCwS187oofg0gb0lftLNCCOlG8JQRg,it is simple to use.ok for day to day use..,3,0,4.8.6,2019-02-23 03:19:07,,,newest,com.ticktick.task +Himanshu Agarwal,https://lh3.googleusercontent.com/a-/AOh14Gik0h-S5ABHQXCUxCfahba7bo73m8S7_7fNQxuR,The app is good but reminders don't seem to be working.,3,0,4.8.6,2019-02-19 07:26:11,"Please set up all the settings refer to the steps under “Settings - Sounds & Notifications - Reminder Not Working”, and try again. If problem still exists, please go to Settings, Send Feedback and email us (the email will auto collect the error log from you), developers will assist you to resolve the problem. Thank you.",2019-02-20 01:43:01,newest,com.ticktick.task +Kester Maniaul,https://lh3.googleusercontent.com/-D5Sp90G_D1k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMdioeCUzfBeDD25Hc7fLO5Hh1jFA/photo.jpg,"I like the app on how it organize your tasks. You can customize how you will be reminded and prioritized. Unfortunately, the alarm doesn't work. It either late or not working at all. I thought if I pay premium, it will fix. But it didn't. so 3/5.",3,1,4.8.6,2019-02-18 11:04:36,"Please set up all the settings refer to the steps under “Settings - Sounds & Notifications - Reminder Not Working”, and try again. If problem still exists, please go to Settings, Send Feedback and email us (the email will auto collect the error log from you), developers will assist you to resolve the problem. Thank you.",2019-02-19 01:46:03,newest,com.ticktick.task +Pavan Haleangadi,https://lh3.googleusercontent.com/a-/AOh14Gh7m4en6o_H3LbTHTWwLGITs6xrCOd-jFBVKzVGW20,Love the experience. Will give 5 starts when there wont be any subscription for pro features. One time purchse is what will make this app perfect.,3,0,4.8.6,2019-02-18 09:34:56,,,newest,com.ticktick.task +Aderinsola Osikoya,https://lh3.googleusercontent.com/a-/AOh14GggfzKjS4UA_RPuT9icCsyg4_4LfJop0tmyM-w6Ag,"I love this app but there's only one problem: I can't sign up or sign in. I was able to sign up using Google Chrome but when I try to do so in the app itself, it doesn't work. Please can this be fixed? I would like to be able to sync across devices.",3,0,4.8.5,2019-02-15 11:41:31,"Hi, Could you please email to support@ticktick.com directly and send some screenshots to better explain your issue so that we can further assist you? Thank you.",2019-02-18 03:55:35,newest,com.ticktick.task +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,easy to use and calendar is useful. i think its just a cash grab to pay for full month calendar view. but other than that its great,3,0,4.8.6,2019-02-14 20:13:29,,,newest,com.ticktick.task +Aminur Rashid Rony,https://lh3.googleusercontent.com/a-/AOh14GhqVefPChDJlzVPDTcoxKgaEkXtvmWeE3q7Cysw,waste of time...dont download,3,0,,2019-02-14 18:53:36,"Hey, please tell us what you have encountered before, or anything confused you? The product team will follow up on this. Thank you.",2019-02-18 05:45:54,newest,com.ticktick.task +Sven Stones,https://lh3.googleusercontent.com/-rtYw-WpAw38/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNt3oxqEQPiahZ_iC9hTbnfNpDwFg/photo.jpg,Juat started using this and although it seems to do most of what i need i think it has some basic things missing.,3,0,4.8.6,2019-02-13 13:40:56,"Hi, what basic things do you think are missing? The product team will follow up. Thank you.",2019-02-14 01:51:07,newest,com.ticktick.task +Luiz Gustavo,https://lh3.googleusercontent.com/a-/AOh14Gi26wNnp0XhQQUYRPNbSDuhLzZdlYNmbBeTw4Uuww,"Great app. However, I was not able to sync with Google calendar and it was a deal-breaker for me. Uninstalling...",3,0,,2019-02-10 13:13:42,"Hi, you can subscribe to third-party calendars in TickTick. Please refer to this. Subscribe to third-party calendars in TickTick. Thank you.",2019-02-12 01:52:06,newest,com.ticktick.task +Arjoval Genil,https://lh3.googleusercontent.com/a-/AOh14GgIRSSNrRlw6e-7WdB18kNKblv0JT4YDSWjmktq9g,"it's better to have biweekly schedule. Im using this app to manage my to do list, unfortunately, it doesnt have every other week schedule or biweekly schedule. to be honest i have lot of things to do during that schedule because my oayout is every other week so i really need to have that kind of schedule. olease add that up. thank you.",3,2,4.8.6,2019-02-08 01:09:14,,,newest,com.ticktick.task +Mike Babic,https://lh3.googleusercontent.com/a-/AOh14Gh_TbPvo0I5hNe8HajjbRBRdqokUmV_ppv29C6C,"Confusion regarding 'sharing' your schedule with other team members or subscibers. Seriously, would it kill them to put an 'added', 'enter', or some kind of 'task completed' button... it would save a lot of confusion. Sending an invite to fellow workers results in a vague link that seems disconnected with the original intention. No 'Connect with Users' or anything other than a link. For something that's supposed to be time management related, I've wasted hours trying to figure this out.",3,0,4.8.6,2019-02-04 06:56:02,"Hi, we felt a little confusion on the problem you met, please provide us more detailed info, we will help you.If you want to share list with other person, please refer to this. https://guide.ticktick.com/ticktick-android-app/list/how-to-share-lists-with-other-ticktick-users.html. Thank you.",2019-02-05 14:45:39,newest,com.ticktick.task +Arun Kushwaha,https://lh3.googleusercontent.com/a-/AOh14Gj_rbL9hrpamo1d_8CENpCOyuEul-CNkxwXB40RLA,New features update now please ...❤❤❤...!!!,3,0,4.8.6,2019-02-03 05:35:28,,,newest,com.ticktick.task +Alex Cheng,https://lh3.googleusercontent.com/-30zxYCKAZ1o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMkASotiR4bPTYhF4QbantDaWxLzQ/photo.jpg,The tasks may go missing...,3,0,,2019-02-02 01:53:36,"Hi, please set up all the settings refer to the steps under “Settings - Sounds & Notifications - Reminder Not Working”, and try again. If problem still exists, please go to Settings, Send Feedback and email us (the email will auto collect the error log from you), developers will assist you to resolve the problem. Thank you.",2019-02-03 06:55:28,newest,com.ticktick.task +Espaciode Luz 08,https://lh3.googleusercontent.com/a-/AOh14GjAS_v6ckn1pcYRnk7rbEEotrFiIg1fkflW1Ajm,"Is anything wrong with this App? I do have to reinstall the app every day... Actually it is excellent, but I am just about to give up with it. I thought that was my phone. But It happens only with this App. Could you guys please check what is going on? I do appreciate it, thank you. Thank you for tour reply. It jist disappear from my cel regularly and I have to reinstall it, again and again. I use to move the app from the cel to the SD card. I will try to follow your instructions. Thank you.",3,0,,2019-01-29 04:44:54,"Sorry for the inconvenience. Please tell us the exact problem you met before. App crashes? If so,, please go to Settings, Send Feedback and email us (the email will auto collect the error log from you), developers will assist you to resolve the problem. Thank you.",2019-01-28 01:41:35,newest,com.ticktick.task +shilpan Patel,https://lh3.googleusercontent.com/a-/AOh14GjUk9Krm17xqywSEL1qoyqOLuW_mYygc4yDiv5ABZA,too costly,3,2,4.8.6,2019-01-27 12:44:40,,,newest,com.ticktick.task +Richard Rafaj,https://lh3.googleusercontent.com/a-/AOh14GhCCOidgvyNwNnFJXc9VZhiiz796eKSRsahCbXVbH0,Vibrates even in silent mode without vibrations (even on 485),3,2,4.8.5,2019-01-24 06:29:22,"Sorry for the inconvenience. Have you enabled “Do not disturb” mode on the phone? Could you please provide more settings info, if possible, please contact us at support@ticktick.com, attached settings screenshot. The developers will look into the issue. Thank you in advance.",2019-04-10 02:23:04,newest,com.ticktick.task +Derin K,https://lh3.googleusercontent.com/a-/AOh14GiLFRpLGJgShsxq8AYFGWthqYfCyaDaChucUZiUmA,Fix permissions for 5 stars. Great design and UI but you shouldn't need access to my contacts to login with my Google account. Google provides an API for it that all other apps use without contacts permissions.,3,0,4.8.5,2019-01-20 19:24:18,Sorry for the inconvenience. Developer will look into the issue asap.,2019-01-23 12:48:00,newest,com.ticktick.task +mike L,https://lh3.googleusercontent.com/a-/AOh14GjCktGXCEl9vnJmJIgNfjzh10pje4loIlBG2wGNtjc,I like it. Paying month after month for premium features isn't for me though.,3,0,4.8.5,2019-01-15 17:06:01,,,newest,com.ticktick.task +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"ive been using it up almost 2 years now. its a good app - which I always recommend friends and cowowkers to use it Few suggestions: - update the sort ( for task lists) , so we can sort by other filters - for team tasks, probably add the chat feature",3,0,4.8.5,2019-01-14 17:36:08,,,newest,com.ticktick.task +Yuvraj Rajguru,https://lh3.googleusercontent.com/-GrjiNe18PUU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOlBfVDzeA8U_uUjKmoblNvQteyMQ/photo.jpg,"No colour for text which may help to quick seperation of various tasks. At least there shoild be option of colour n font size for list name. Very big draw back is when we make a new task we can not add description. We have to save it and then by editing add description. Why the description is not incuded while adding new task ? recd your reply. if I need to disable quick add, what is the use of quick add function then ?",3,5,4.8.5,2019-01-14 07:29:59,"Hi, you can try this way. Add title via quick add input, then click navigation image in the upper right corner to go to the task detail page.",2019-01-15 12:42:42,newest,com.ticktick.task +salman shaikh,https://lh3.googleusercontent.com/a-/AOh14GigiIX_IyN-6xom6N_f-g2m2ysk3G7jZx_Iu2lNag,"Respected Team, It is not working in oppo F5. Actually it is not reminding me despite off given all the permissions. Find out the solutions.",3,0,4.8.0,2019-01-08 20:05:22,"Please set up all the settings refer to the steps under “Settings - Sounds & Notifications - Reminder Not Working”. and try again, If problem still exists, please go to Settings, Send Feedback and email us (the email will auto collect the error log from you), developers will assist you to resolve the problem. Thank you.",2019-01-15 14:17:00,newest,com.ticktick.task +Vallabh Darole,https://lh3.googleusercontent.com/a-/AOh14GhgGTFLOhop4zjePjr8An4Eh8tK3sYUuTWmtUUThw,previous it working very fine but now there lots issue with the application. eg. if you had not complete yesterday task it wont allow you complete today tasks even reporting is not working,3,1,4.8.0,2019-01-08 09:07:30,"Hi, for the repeat task, today task will show after completing yesterday task. Thank you.",2019-01-08 10:50:27,newest,com.ticktick.task +S,https://lh3.googleusercontent.com/a-/AOh14GibdUDd6yzakSsRTrYirMHFAOUlcdq6bkWWQOIj4Q,I would really appreciate if dev focus on improving existing features like natural dates and time rather than adding new features.,3,1,4.8.0,2019-01-06 06:27:59,"Hi, we need more detailed info to help you resolve the issue. In the app, please go to Settings - Feedback & Suggestion - Send Feedback, then send to us (the email will auto collect the error log from you). We will look into the problem asap.",2018-10-15 08:54:24,newest,com.ticktick.task +Jordon Baade,https://lh3.googleusercontent.com/a-/AOh14GiCMqgisLgnyQgPlF9Q1KbWcYpi-mLi_Zg7w_MGy70,Missing key features cross platform,3,0,4.8.0,2019-01-04 17:33:59,,,newest,com.ticktick.task +sherlock_arnold,https://lh3.googleusercontent.com/a-/AOh14Gi_tSCe6ZwRwkMlxWKDEutbmmXP5ZzMUxF-F4_d,"Ever since I downloaded this app, I've gotten less lazy, I've done more work, and I was able to keep track of my tasks needed. I would rate 5/5 stars, but I would like this app to have compatibility on windows or have some sort of chrome extension. If I am mistaken and there is a windows/chrome extension, please notify me. Thank you.",4,0,5.5.6.0,2020-04-02 06:59:19,,,most_relevant,com.ticktick.task +Michael Zeta,https://lh3.googleusercontent.com/a-/AOh14GiZxwmF3iYlKhpDNzzYUwG1dsf9p-fTe0B3Vl6JgH0,"Love TickTick, it's almost perfect! I'd love to see the following features added: • Subtasks within subtasks (like todoists) • Option to assign repeating tasks to repeat after completion rather than due date. (I have an automatic cat feeder that lasts five days then I need to be reminded, but if I postpone a day or two and then check it off it sets to repeat five days after the original due date instead of after I check off) • Option to configure inbox behavior (include tasks from other lists)",4,1,5.5.6.0,2020-03-31 20:34:14,,,most_relevant,com.ticktick.task +Ebullient Whee,https://lh3.googleusercontent.com/a-/AOh14GgLogUiM59T5ivQKEUSuZZmJyGjN42EeIXm6r-A,"Great app, but annoying that it limits the number of lists you can make. I can understand limiting *shared* lists on the free version, but not regular ones. Functionally it's great though. I would pay a one time fee to open the pro functions, but not ongoing fees.",4,0,5.5.5.0,2020-03-23 17:29:04,,,most_relevant,com.ticktick.task +Jonathan Maheshwar,https://lh3.googleusercontent.com/a-/AOh14GiIBI6tn5rmQSWk7x1tuCDUOY85mkQImM61fLhHYw,"My all around power app! This app has been so useful, that I use it not just for tasks but also my calendar. Used to sync with Google calendar, but left that to be all Ticktick now. This app is right on the money.",4,0,5.5.5.0,2020-03-17 03:31:58,,,most_relevant,com.ticktick.task +Akash Sharma,https://lh3.googleusercontent.com/-fJZ4cN5KYcE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO6iARNe4vdCg6w8R6cDwmWG4m5IA/photo.jpg,It is very good app to manage your to do list. One thing that can make it better is it should show all the incomplete or overdue taks with todays tasks as overdue instead of into inbox. This will make those task more accessible and will keep them under notice.,4,1,5.5.5.0,2020-03-19 07:27:16,,,most_relevant,com.ticktick.task +Azima,https://lh3.googleusercontent.com/a-/AOh14Gj53CJW0_aCbh-qj4MkXE7DFUhapAY15p8HGmWWhg,"I didn't understand how to add subtask in ""template"". I pressed ""save as template"", but it saved only the name of template. I couldn't find any information about template in ""help centre"". Please explain me how to add subtask in template.",4,0,5.5.6.0,2020-04-02 06:17:15,,,most_relevant,com.ticktick.task +Rebecca Howard,https://lh3.googleusercontent.com/-eHE9nAnoPsM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMIkUxAYpb4E9xA98Op0L4R-PpByw/photo.jpg,"The free version is very good so far. Most features are free. Ive only used a week, but if this app continues to be as useful, I'll consider premium soon.",4,0,5.5.6.0,2020-04-02 14:57:51,,,most_relevant,com.ticktick.task +Harini Mudliyar,https://lh3.googleusercontent.com/a-/AOh14GiT6Yipsx6c6bFb-_HML4ozQo6X048tpRYZxjMoHg,"Excellent app that not only has to do check lists but habit tracking also covered, what I loved most about the app is the 'your thought' that pops after completing the habits...genuinely thank you for such app creator..",4,0,5.5.6.0,2020-04-04 13:42:06,,,most_relevant,com.ticktick.task +Mark Hochstein,https://lh3.googleusercontent.com/a-/AOh14GjP6VMpvrC_xlMVi1RvZBe2j3ikiSVdjGNbKqfeHrE,"This is a great app. The ine thing that would make it better would be if it worked with Google Assistant, Google Home, & Amazon Echo so I could make reminders in TickTick by voice.",4,0,5.5.6.0,2020-03-28 13:25:48,,,most_relevant,com.ticktick.task +Noah F,https://lh3.googleusercontent.com/a-/AOh14GisOnml_FU2RFO8HFYtm55U-fyE5bCjTzo-y2GJhg,The app works great as a digital day planner. The only complaint that I have. I dont see a way to edit tasks after I enter them.,4,0,5.5.6.0,2020-03-25 18:11:10,,,most_relevant,com.ticktick.task +im allergic to soap,https://lh3.googleusercontent.com/a-/AOh14GgsHFCiDkzoJB_sy-75BACIXrQViAbXT_OsFoGoTg,It's better then the other apps I've tried. But there should a bottom where it says you couldn't do the task instead of just turning the task as an overdue.,4,0,5.5.5.0,2020-03-14 18:06:20,,,most_relevant,com.ticktick.task +James Wilson,https://lh3.googleusercontent.com/a-/AOh14Gje4rbTfmvtMHKKmD8M-5kIsV0msk3PWDtEQaW2daU,I have been utilizing TickTick:ToDo List for awhile now. Its a very solid application that helps ensure the important tasks in one's life are completed on time.,4,0,5.5.6.0,2020-03-29 14:03:57,,,most_relevant,com.ticktick.task +Mr Green,https://lh3.googleusercontent.com/a-/AOh14GgFI9EUguS7Zy2oUvLA9sMAy_l6Oox2HWlb8_gGbQ,"I was so pleased with the new Habit tracker as well as using a true Dark Mode. However, I don't agree with the Premium policy as I prefer to make a bigger one-time payment (such as when I bought Final Cut Pro X with Apple) instead of a small recurring subscription that makes me want to go back to Todoist. It's a damn shame as I liked TickTick so much I'm willing to pay for Premium. Unfortunately, the subscription policy is an easy deal breaker.",4,2,5.5.1.0,2020-03-10 03:18:24,,,most_relevant,com.ticktick.task +Wesley Jonathan Marcolino,https://lh3.googleusercontent.com/a-/AOh14Gi0KKyL6-tYwglwRB-L8yFB_6iC361mBZD1YgAOz3g,I love this app. Only thing that annoys me is how marking a task as complete in one device doesn't dismiss notifications on the others.,4,0,5.5.6.0,2020-03-28 19:44:46,,,most_relevant,com.ticktick.task +Hamed Esmaeeli,https://lh3.googleusercontent.com/a-/AOh14Ghuet_VyZCe9pIxUa8CxIlG_Sg454_tCC7UtvYP9go,Very useful and flexible for scheduling tasks. It can be better by employing ML to guess the best choice of time for any task.,4,0,5.5.5.0,2020-03-20 13:33:01,,,most_relevant,com.ticktick.task +Parth Mittal,https://lh3.googleusercontent.com/-etLd3rCPZ0A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPekG2sBgrGVdw-azvFAvEy3YiqPQ/photo.jpg,One of the best apps to boost your productivity. Replete with useful features even in the free version. Love their habit feature.,4,0,5.5.6.0,2020-03-25 10:07:13,,,most_relevant,com.ticktick.task +Liam,https://lh3.googleusercontent.com/a-/AOh14GiK5zEcCceKiXL6RUIJgcXS8YAd4Khe_l902NDrLQ,"Excellent Calender Supplement! - I've been using TickTick along side my long term Callander (Google Calender) as a planner for my daily tasks and University Timetable. And it's been nothing short of amazing, life changing might sound like a stretch but it's helped me a tonne when it comes to getting stuffz done. - Only thing I'd ask for is more options or a separate way of planning things like a university timetable to make it faster to add classes etc.",4,0,5.5.5.0,2020-03-11 15:49:43,,,most_relevant,com.ticktick.task +Damian Gutkowski,https://lh3.googleusercontent.com/a-/AOh14GizFrAT_MuzNlFgcC5VrX3cyX8GGQdcJ0tJxV_9wA,new item menu for actions is horrible! please bring the old one back. delete action has a bad offset and is rendered behind the navigation bar. it's so inconvenient,4,0,5.5.6.0,2020-03-29 16:23:00,,,most_relevant,com.ticktick.task +Arka Das,https://lh3.googleusercontent.com/a-/AOh14GgwlWWJDK-tc4DkohaQ1knbn2DvizzS13Yj6v6T7g,"The pomo section could be more useful if it has something like a timer. You set the time you need to focus then do the job rather than just pomo where there is a fixed amount of time 25 minutes at default. You know something like a focus timer, I guess it would not be bad, actually I think this might seem like copying a feature from other apps in your field but isn't it better if there's more functionality.",4,11,5.5.1.0,2020-02-21 12:12:22,,,most_relevant,com.ticktick.task +Pat A,https://lh3.googleusercontent.com/-xisAnHiH_6M/AAAAAAAAAAI/AAAAAAAAAnM/AAKWJJNLBv0BwgOO30AxHQDfAsAO7eZqQg/photo.jpg,Wunderlist being killed by Microsoft.... Seems like most people are coming to this app instead of moving to the recommended Microsoft To Do. Giving this a try.,4,0,5.5.5.0,2020-03-12 12:18:17,,,most_relevant,com.ticktick.task +Gabriel Valenzuela,https://lh3.googleusercontent.com/a-/AOh14GhpdEjAN8HjMEAAyWBDHHyJOc_1BVUAL6f39gryxg,"Almost there..! This app is the almost perfect solution for my job. I suggest for subtasks to have their own text formatting and check lists. Additionally, the summary page is cluttered: If I could turn off task descriptions within the summary, but still keep subtasks, I could better understand my weekly summaries. Lastly, I want to mark (sub)tasks as NOT COMPLETE if I know I didn't complete a task but I don't want it showing up as overdue. Summary formatting for this would remain the same.",4,4,5.5.0.2,2020-02-09 14:35:56,,,most_relevant,com.ticktick.task +Rob Hunter,https://lh3.googleusercontent.com/a-/AOh14Gj4iyTCfkOz1RSxvUtIhPXHVzPAMlfKJHYD6N-efA,"Not bad It's a basic to-do list which establishes days when a project is to be completed and a list of tasks that were uncompleted. Uncomplicated and useful. I would like to see the option that shows a job partially completed... some projects need to be held over and a more customisable repeat process ... every fortnight, or third Friday of the week.",4,0,5.5.5.0,2020-03-12 01:47:29,,,most_relevant,com.ticktick.task +Sneha Herle,https://lh3.googleusercontent.com/a-/AOh14GgD8cTikzFNe03OjkSHHNhF7SvieF0hAf54AL7EDK4,"I like the simple interface and it helps me set reminders for tasks, schedule them and analyse them.",4,0,5.5.6.0,2020-04-04 06:39:08,,,most_relevant,com.ticktick.task +Will K,https://lh3.googleusercontent.com/-iLkulKEhjoc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPl6CSor_XiBGU8tvb2tNPO8zGXgA/photo.jpg,"Nearly Perfect! This app has replaced at least three other apps I used to have on my phone. It's a great utility that forms part of my everyday life. Accompanied by an affordable pricing model and not the ""money hungry"" ideology that so many mobile app devs have these days, it's nearly perfect. I would love to be able to link a habit to a task and see a view of habit progress. Like chaining in other habit apps. Keep up the great work!",4,11,5.4.1,2020-01-13 20:35:34,,,most_relevant,com.ticktick.task +Angelica K,https://lh3.googleusercontent.com/a-/AOh14GhQ3Uq_sMA_IKyFMgAQ04Ddc523xNTvj3YVWQP0Bw,"Pros: this app is very similar to the functionality of Wunderlist and adds features I wanted. Free version is fully functional except for the limitation of 9 lists Cons: Some of the widget buttons are small and I am not a fan of subscription services for premium features (I would pay a one-time fee, even for each upgrade, but i absolutely won't subscribe)",4,2,5.5.1.0,2020-02-25 17:44:13,,,most_relevant,com.ticktick.task +Mobile Tali,https://lh3.googleusercontent.com/-ruvYssej0DE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNN8L95RSNeOwu1IwkzfPR4BJOKNw/photo.jpg,"Huge amount of functionality in free version. stopped short of 5* because duplicate functionality v limited. When i duplicate tasks I cannot duplicate to any other location than current one and cannot change name, and the new name is set as old name plus ""copied"". Would be very helpful to have duplication functionality that I can copy tasks (or indeed a whole list) and on copying them can have the duplicates placed where I wish and make choice about naming convention",4,0,5.5.1.0,2020-03-03 12:52:45,,,most_relevant,com.ticktick.task +Denny Foehner,https://lh3.googleusercontent.com/-tW4DMvs4zvE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPno-fHIANRlWD2CDhJ6xUldBwtcA/photo.jpg,"Love the app, but I notice it skips a reminder from time to time.",4,0,5.5.5.0,2020-03-11 19:47:52,,,most_relevant,com.ticktick.task +vmc costa,https://lh3.googleusercontent.com/-snlVjRmCNqU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOH7SCSEiIuAqzLCv8W3mMdW2ekgQ/photo.jpg,"Very good, could have a little more utilities for the free version",4,0,5.5.5.0,2020-03-14 01:55:21,,,most_relevant,com.ticktick.task +hawaiinsurf614,https://lh3.googleusercontent.com/-PLYsV2zzE5o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNjaTJS1vyypIN2FIm0t8qfqAbVWg/photo.jpg,"amazing functionality; however, I wish there was a guide for some of the more advanced features.",4,0,5.5.5.0,2020-03-14 11:32:19,,,most_relevant,com.ticktick.task +Mike Shinn,https://lh3.googleusercontent.com/a-/AOh14GjaknbjqiSmlCGGZCumXcpr003415uaSWrGJ0ZD0g,"TickTick looks like a powerful and flexible productivity app but I find the help and support information across platforms somewhat overwhelming and confusing. I think that (for the easily confused) it would benefit from a good tidy-up, beginning with a clear conceptual overview of the design philosophy and architecture of the product and the methodology of its use, including flow diagrams and examples, before any specific platform advice.",4,9,5.5.1.0,2020-02-17 06:11:48,"Hi, here is the TickTick tutorial. https://support.ticktick.com/hc/en-us/categories/360000948871",2020-02-16 03:51:53,most_relevant,com.ticktick.task +Vampire The Immortal God,https://lh3.googleusercontent.com/a-/AOh14Gj0YiZ2WOC7O7PNpoTmAVlvz446hjE4Qs9lQcGDTA,"Hi, I previously posted a review to this app and I was furious. I gave it a single star because many choices are premium. But when I started to use the app, I learnt that this is app is really good for productivity. And I am glad that I am using it. I can't say it's perfect without you paying for the premium version but it's pretty good app.!",4,2,5.5.0.1,2020-01-20 14:00:53,,,most_relevant,com.ticktick.task +Dawn Marie Melius,https://lh3.googleusercontent.com/a-/AOh14GgVwo6PUYFg_LVn4PG4q2yAYmLoqX20gsFCYVw6o-o,"Great addition to having a calendar. I can set text reminders for To Dos from here so I don't have to clutter my family's digital calendar with details for my days. Took a while to get how the app and folders work, but I have a good system set up now.",4,0,5.5.5.0,2020-03-07 13:01:48,,,most_relevant,com.ticktick.task +Diana Garifulina,https://lh3.googleusercontent.com/a-/AOh14GgZNnKt_uCgipCJRRTwOzZCtMsMTkBtZ24MF4cziA,"Please, solve the problem with fast typing! After I type in the date, letters and numbers REMAIN",4,0,5.5.5.0,2020-03-18 15:59:16,Hey Diana! Are you wanting to remove the date/time in Quick add? You may go to Settings > Task Quick Add > Smart Recognition > REMOVE TEXT in Tasks.,2019-11-01 01:38:22,most_relevant,com.ticktick.task +Attila Matisse Aliswag,https://lh3.googleusercontent.com/a-/AOh14GjiXFDlIPnEXUgXJdxWLTvn_NcVgFg6wQTVcii_y5M,Can't fully scroll to the bottom of the options list of a task. Can't see the delete option fully.,4,0,5.5.6.0,2020-03-25 16:49:33,,,most_relevant,com.ticktick.task +Srinivas D,https://lh3.googleusercontent.com/-Bh0jc0cpEq4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPKMab0WY3RX6H2m0u6_beFtAMYHg/photo.jpg,Quite adequate for reminders ; Simple and easy to use.,4,0,5.5.6.0,2020-04-02 10:26:08,,,most_relevant,com.ticktick.task +Geredd Hayes,https://lh3.googleusercontent.com/a-/AOh14Gh9Ieo9OvWx9ArPBnx-jgFSV1RH11l3Ulw-ySEGWg,"Overall good app. Interface is easy to use, effective and powerful. Would be good if it had better integration with calendars and other services. While many features are free, premium is a continuous subscription and quickly adds up to be very expensive.",4,0,5.5.0.2,2020-02-09 12:58:17,,,most_relevant,com.ticktick.task +Elizabeth Chesnut,https://lh3.googleusercontent.com/a-/AOh14Gi7AJ1TCnihW3OAHubKBi-fdEseSYiWddLOpUds,"I really like it so far. I did have one problem, where i checked off a task i had completed (that was a weekly task) and then the following week it did not show up on my list because it had deactivated somehow. I'm sure they will fix it soon.",4,0,5.5.0.2,2020-02-09 06:31:00,,,most_relevant,com.ticktick.task +Anjan Singh,https://lh3.googleusercontent.com/a-/AOh14GjH-_EObovKcCtL9UOt04Y3eMRp7JQF3X831AaJivc,Great app for task reminders. Reminders notifications works well. Easy to use.,4,0,5.5.6.0,2020-03-28 08:43:58,,,most_relevant,com.ticktick.task +Teresa,https://lh3.googleusercontent.com/-iAU-ssh_kAM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPlu81JcmTyfuPxsPjGdQqyj6YQnQ/photo.jpg,Liked wunderlist better. Can't add more than one share. I wanted family grocery list.,4,0,5.5.6.0,2020-04-02 14:03:56,,,most_relevant,com.ticktick.task +Maciej Fiedler,https://lh3.googleusercontent.com/a-/AOh14Gik7LJYirgp8c2bKbSOLJ9ke0WobClWDOCeEs1AFg,"Overall very good, but cant make a task with splitscreen.",4,0,5.5.5.0,2020-03-15 21:45:24,,,most_relevant,com.ticktick.task +Tal Tene,https://lh3.googleusercontent.com/a-/AOh14Gi7xHbIdE1RJ-bkq-vtpGgKvE8o5BMcuLsnatRQGVo,Great app. Still waiting for RTL support and sub folders. Please!!,4,0,5.5.5.0,2020-03-16 10:26:41,,,most_relevant,com.ticktick.task +George McLoughlin,https://lh3.googleusercontent.com/-TNF9IO3KoB0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMVG-HUzcE5kG_g7pCNspWoPqqtsA/photo.jpg,"This app does exactly what you need it to. Not perfect, but great at its job.",4,0,5.5.6.0,2020-03-23 22:48:31,,,most_relevant,com.ticktick.task +Sander Flink,https://lh3.googleusercontent.com/a-/AOh14GgcXvvfe5_NnV6wXFQN-t_y-RqXKfROjXHrpFQuHg,"Finally an organised app for notes and daily planning with a modern UI. It works great. Only downside is that payments are monthly. I'd rather pay it immediately. Though, in my opinion the app offers sufficient features in the free version.",4,0,5.5.0.1,2020-01-19 21:41:03,,,most_relevant,com.ticktick.task +Erick,https://lh3.googleusercontent.com/a-/AOh14Gik8Kift2lk8dSsNdgBycuUSccaUZL6Yu0l8jUCXJ4,Wow they listened. They added links between task which was my idea. Good. If only they could be consistent across platforms. Improve rating to 4 stars just cuz the ticktick team is really trying to be better Aldous allow us to see the changes you make in the app.,4,9,5.5.5.0,2020-03-09 13:34:35,"Hi, sorry for the inconvenience. We'll improve shortcuts consistency in future.",2020-03-02 01:35:30,most_relevant,com.ticktick.task +Lakshanah Buruth,https://lh3.googleusercontent.com/a-/AOh14Gh-Bv5m2FTYu8u535iYXs6VIc1RofTOzpwCJyew,Good but needs to increase responsiveness to fingerprint ( takes time to unlock ),4,3,5.5.5.0,2020-03-11 12:09:26,,,most_relevant,com.ticktick.task +Al Le,https://lh3.googleusercontent.com/-_S4R4CusOEU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPvziiGKuvW0uaR4tyaTskm6hy6jA/photo.jpg,Useful but slow to synchronize across devices. Could evolve to become even more uh ser friendly,4,0,5.5.5.0,2020-03-12 08:22:03,,,most_relevant,com.ticktick.task +Tom Boyland,https://lh3.googleusercontent.com/-cmBzuQ-vMAI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPVjswIssiQvwElv1yX3Be2gxdWsA/photo.jpg,"Nearly the perfect 5 star app, but I have just one gripe, which is that unlike most reminders apps, the due / overdue takes don't change colour to make it clear at a glance which of your reminders are for now, and which ones are upcoming.",4,1,5.4.1,2020-01-15 08:41:14,,,most_relevant,com.ticktick.task +Bryan Garrett,https://lh3.googleusercontent.com/-QrswLBLxy5U/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPgS3GLUW2lBqcuOI8f7Q3XpBWgGw/photo.jpg,"Excellent overall, very flexible with many useful features. Only suggestion I'd make for improvement is a feature that as the user if they really intend to complete a task that has been snoozed multiple times.",4,0,5.5.0.1,2020-02-09 16:36:00,,,most_relevant,com.ticktick.task +Aaron Griffin,https://lh3.googleusercontent.com/a-/AOh14Gjh9jsMMBI94M35hQGcfxyJy2MfvyyL7EOPrjnOjlA,"My go-to todo list app. I'd love for the habits feature to be improved, though.",4,0,5.5.5.0,2020-03-15 22:20:01,,,most_relevant,com.ticktick.task +Kerry French,https://lh3.googleusercontent.com/a-/AOh14Ght2ALlkq8HKSXeb4kWQ0uAibcOP2Pzd7AS41Br,"Been using for about a year. Getting more and more useful every day. Works well across Android, iPad, and Windows 10.",4,0,5.5.5.0,2020-03-11 21:23:16,,,most_relevant,com.ticktick.task +Izuchukwu Joseph,https://lh3.googleusercontent.com/-HzTnbIJe5hU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNfQyB0s8jH2Qi6jyE8PRG0HbbSNQ/photo.jpg,Great app. Ideal for planning ur day. Nice premium subscription,4,0,5.5.6.0,2020-03-25 08:15:03,,,most_relevant,com.ticktick.task +Jason Bohnenstiehl,https://lh3.googleusercontent.com/a-/AOh14GjlFND5BJM0flX3uj2PmRPSQaYbQPen7yylolht-w,"Wish it supported sharing, but otherwise a fantastic, simple to do list app",4,0,5.5.5.0,2020-03-15 18:49:28,,,most_relevant,com.ticktick.task +Todd Price,https://lh3.googleusercontent.com/a-/AOh14GhIz50nDxpThtCDg_QF-ifEP6zWFLGwZrvhTWgzpJc,"Good, simple app that works well. It keeps my to-do list synced between my Android phone and web browser on my computer.",4,0,5.5.5.0,2020-03-10 21:01:59,,,most_relevant,com.ticktick.task +P R,https://lh3.googleusercontent.com/a-/AOh14Gi9DzObNvV0XVwlSvev5lmxG7zHeLC4XA_qNaiDPiw,Not very intuitive sometimes but a useful app I use daily.,4,0,5.5.6.0,2020-04-03 12:22:18,,,most_relevant,com.ticktick.task +Andrey К,https://lh3.googleusercontent.com/a-/AOh14Gg90ZyJw_wanAa63c1qKHbosakNMjy3f_R1-DLd,After update time picker control is bad. It's very difficult to pick a time and it takes much more time to pick it. Please revert it as it was before. + one 🌟 for reverted time picker,4,1,5.5.0,2020-01-17 05:51:30,"Hi, we'll bring back the radical time picker in next update. Sorry for the inconvenience.",2020-01-16 03:24:56,most_relevant,com.ticktick.task +Na T,https://lh3.googleusercontent.com/-zqHiqQ3KqNI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJODRSvZDpNFZFO2V50zmof3X4xfRA/photo.jpg,"Very good, have been using it daily for work. However, I really dislike that I cannot change the date for one of many recurring events. It changes the whole lot.",4,1,5.5.1.0,2020-02-24 06:01:20,,,most_relevant,com.ticktick.task +Paul Ashworth,https://lh3.googleusercontent.com/-pVgueUBUsag/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM_PVnIJRpgKyY45uvzsDFwIL4oPQ/photo.jpg,One of the best ToDo apps. I'm not using the FULL version just basic as single user. For me the only failing is I want more options on recurring dates e.g. 14th of each month except Jan & Feb.,4,0,5.5.0.2,2020-02-11 18:46:20,,,most_relevant,com.ticktick.task +Daniel Chrisman,https://lh3.googleusercontent.com/a-/AOh14GgQ7fMkAMumz2bHtnZTzf17bqCq7mGhJ8xDfunfgA,I first installed this app on an older tablet where the performance was an issue. Since I have installed it on my smartphone it has performed above average.,4,0,5.5.1.0,2020-02-18 00:15:51,,,most_relevant,com.ticktick.task +A D M,https://lh3.googleusercontent.com/a-/AOh14Gjeqs2FF3h3_3gQN98YpDfM3TLSxKvlgZ2xpa1K5Q,"I love this app and use it constantly, but there doesn't seem to be a way to add subtasks in the app. I don't have access to the desktop version. Other than that, great app.",4,1,5.5.1.0,2020-02-25 06:18:06,,,most_relevant,com.ticktick.task +F Z,https://lh3.googleusercontent.com/a-/AOh14GjLOFag_jdjoLpJvQS6FQLW_lvQEMZtOZYl9-fLww,"Great App, reliable and useful, however would be great if the kanban view was also available on mobile :) other than that I'm very satisfied with the app 👍",4,0,5.5.1.0,2020-03-07 10:43:26,,,most_relevant,com.ticktick.task +Victor Van Sande,https://lh3.googleusercontent.com/a-/AOh14GihiJly6CXYHFcIWDsVOIQ9hMXCu7jC-mAxAN4zIJg,"Very user-friendly, easy-to-use and well designed app to keep track of all your tasks/lists. Too bad the premium version is so expensive",4,0,5.5.1.0,2020-03-04 19:22:23,,,most_relevant,com.ticktick.task +Arasin Staubly,https://lh3.googleusercontent.com/a-/AOh14Gh7VSaSE5pXfnJiygX3fVLqh07wLbewIuokBSvJxw,"Pretty good for me, but in the version I have I can't edit a task.",4,0,5.5.6.0,2020-04-02 15:44:26,,,most_relevant,com.ticktick.task +Abhinav Tripathi,https://lh3.googleusercontent.com/-SZHzzEx5YoM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMAc-1BAxoe5frgllyZ3182PBfvpg/photo.jpg,Easy to use. A direct link with other apps(Google calendar/ outlook calendar) would be a great add ON.,4,0,5.5.1.0,2020-03-09 00:29:16,,,most_relevant,com.ticktick.task +prakash rao,https://lh3.googleusercontent.com/a-/AOh14GicF_Er9iGfFzoiFvfBcnk7_sm3mkbMN89TdN5fXg,Good app..but everytime for particular thing should go inside every remainder and check.. Other than that. Beneficial app. Very good.. will recommend this.,4,1,5.5.1.0,2020-02-23 00:14:39,,,most_relevant,com.ticktick.task +Blake Bambrook,https://lh3.googleusercontent.com/-ubgNQIFiah8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJORwCDpaA5D6CHe87qaqP9obqWGkg/photo.jpg,Pretty good and getting better with feedback. My favourite part is the integrated calendar rather than relying on third party calendar.,4,0,5.4.1,2020-02-08 05:33:09,,,most_relevant,com.ticktick.task +Avie Owle,https://lh3.googleusercontent.com/-3NVwZgX8Wt4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMcTVdLTBchGj9x51GhLiT1vRyzXA/photo.jpg,"Great, premium allows for more alarms and reminders . But I don't have premium so that sucks.",4,0,5.5.5.0,2020-03-11 19:48:47,,,most_relevant,com.ticktick.task +Animania freak,https://lh3.googleusercontent.com/a-/AOh14GiN_oOq0BHMhBuhZAjhMU_HTpUAzomGTcFV5Ygi3Q,"I wish this would sync with my Google task, so that i can use it on my computer and ipad.",4,0,5.5.6.0,2020-04-04 19:35:10,,,most_relevant,com.ticktick.task +Sri Ram Chandra,https://lh3.googleusercontent.com/a-/AOh14Ggk5hUao_mtZsfhFD5SC5gp91Mk8qMdB9ohzyM_xw,"Best To do app for me, just one issue : The pricing is too high for an app of this nature, I want to pay once and forget.",4,1,5.5.0.2,2020-02-10 16:02:15,"Sorry to frustrate you by our current pricing. The team will have an evaluation together and see if it could be adjusted in the future. About the widget issue, the devs will look into it asap. Thanks!",2019-08-20 01:41:51,most_relevant,com.ticktick.task +Legendary Blader,https://lh3.googleusercontent.com/a-/AOh14GgsP-OlFMK46v6b1QrccZB0rRjWLaJMvw4lCDrMNw,The app is really good but there shouldn't be a premium version of this app it should be free.,4,0,5.5.6.0,2020-04-01 14:59:11,,,most_relevant,com.ticktick.task +Andrea Salbego,https://lh3.googleusercontent.com/a-/AOh14GiWJSbTpRnS56F6HogQcY82KRjucLQTDl_3tHzXqw,Urgent-Where is your backup function to externally export task. U would have received a 5 star from me if u had this function. This app has almost everything except most important thing,4,0,5.5.1.0,2020-02-20 18:51:58,,,most_relevant,com.ticktick.task +Sachin Ranjitsingh,https://lh3.googleusercontent.com/-HZELbqFBfQ4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMC_56Aj4pPFw1iXjIbf9M-9ANvHQ/photo.jpg,"Nice app, use it almost everyday. I wish you had the option to rollover the unfinished tasks for the next day",4,0,5.5.0.2,2020-01-22 12:05:36,,,most_relevant,com.ticktick.task +Saurabh prajapati,https://lh3.googleusercontent.com/a-/AOh14GhcHlgtCPRpkUEq9K-j5GUK5U5qMjKevDw49sjqUw,Everything is pretty much amazing but it should have a Note tab(without checkboxes) where we can put important note not task.,4,0,5.5.0.1,2020-01-29 03:26:52,,,most_relevant,com.ticktick.task +Priyanka Pankaj,https://lh3.googleusercontent.com/-cyGDAf4X5gc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPAC7iDX4TsRtEYpdcJ4Ian6ncC5A/photo.jpg,It's great in reminding to take my meds. Want an option to mark tasks as incomplete instead of canceling from list.,4,0,5.5.0,2020-02-11 14:31:30,,,most_relevant,com.ticktick.task +Mohit Sharma,https://lh3.googleusercontent.com/a-/AOh14Gi2k8vYudt0Lp_J8FSTfh8mVIbjnTO-Dqi8CHMFWA,"Like the app but instead of monthly payment, it should have been a one time app purchase",4,0,5.5.5.0,2020-03-11 15:26:32,,,most_relevant,com.ticktick.task +Kunj Desai,https://lh3.googleusercontent.com/a-/AOh14GiiGRT_-0fAv3EWbGrAqHLTUz8XhwOMkD35bVmi0w,MKBHD suggested this app. The free version is very good. Gets my work done.,4,0,5.5.6.0,2020-03-30 06:05:55,,,most_relevant,com.ticktick.task +Dhwanil Shah,https://lh3.googleusercontent.com/-_tEpDuk6jak/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMeMoudzE5kn38pBR74hJzq4MdLqw/photo.jpg,Was a big fan but changed the clock to spinner. Scrolling is a pain. Why did you guys change it? Bring back the normal clock asap.,4,0,5.4.1,2020-01-30 11:18:09,"Our technical team shared that they've fixed the issue. Please try to upgrade to the latest version to see if it works well. If the same problem still exists, please let us know at support@ticktick.com. Thank you.",2020-01-30 11:57:23,most_relevant,com.ticktick.task +Tom Corley,https://lh3.googleusercontent.com/-Y58_q4ownPo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN4JTgU9zB_ZVn3dGmP_DF_6B4VfA/photo.jpg,Very good. How about a tutorial about making best use of TickTick?,4,0,5.5.0.2,2020-02-18 08:44:54,,,most_relevant,com.ticktick.task +JJfrancay,https://lh3.googleusercontent.com/a-/AOh14GjkawRhAdA1-xASKrpykbnhTHp81opXGVRbEXLjng,"Great app for my Todos and calendar, would give 5 starts if they fix the ""show in calendar only"" bug",4,0,5.5.0.2,2020-02-13 19:26:01,"Hi, could you provide us with more details about the bug? You could contact us via support@ticktick.com. Sorry for the trouble.",2020-02-14 11:24:30,most_relevant,com.ticktick.task +R Heldt,https://lh3.googleusercontent.com/-gfj8Bp1lJPc/AAAAAAAAAAI/AAAAAAAA4wg/AAKWJJPqbXXMLowzCXkD9_a62MVt4BTfjA/photo.jpg,Thank you for bringing back the clock time picker! This app is essential for my daily todos.,4,5,5.5.0,2020-01-16 14:34:38,"Hi, we'll bring back the radical time picker in next update. Sorry for the inconvenience.",2020-01-16 03:44:38,most_relevant,com.ticktick.task +Willy Wijaya,https://lh3.googleusercontent.com/a-/AOh14Gh_2Oj5FrQayXLy2sD8uSKkd5DzqroNmwwN9aJFJw,Great App! Reminders are working and easy to use!,4,0,5.5.0.2,2020-01-23 07:41:06,,,most_relevant,com.ticktick.task +Japs Juinio,https://lh3.googleusercontent.com/-zxPlbZkbH-w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMRpdwRuVhAVIK6T9Y-ihaNuzApzg/photo.jpg,Great app but is subscription based app.,4,0,5.5.5.0,2020-03-18 00:09:40,,,most_relevant,com.ticktick.task +Fidel Esteves,https://lh3.googleusercontent.com/a-/AOh14GgveRhZ2J75X8ig42cYdp3j64uw3BAklwPeN5Ng,Incredible app with serious problems of synchronization.,4,0,5.5.1.0,2020-02-20 19:36:27,,,most_relevant,com.ticktick.task +Makyla Smith,https://lh3.googleusercontent.com/a-/AOh14Gjo2V6TiotahYVN1PO2wghLlnnNgW6PW28377TnJA,Good alternative to Todoist with some extra features that were a must for me ex. Dedicated calendar.,4,0,5.5.0.2,2020-02-16 22:19:18,,,most_relevant,com.ticktick.task +KR Parikh,https://lh3.googleusercontent.com/a-/AOh14GhowPuTMW2SVeKGHmQ9lq5q9AkC_xOsIAxsoKTkJg,It would be more useful if user can provide interdependence and correlation between various actions and lists,4,0,5.5.5.0,2020-03-19 12:02:12,,,most_relevant,com.ticktick.task +Kevin Kidd,https://lh3.googleusercontent.com/a-/AOh14GgHWCl4B7kFUI-S6ofLaiIwZH2MnaI7KhaQHLt3FA,Edit... The 2-tap reminder set is back. Upgraded back to 4-stars.,4,1,5.5.0.1,2020-01-18 18:36:18,"Hey Kevin, + +Sorry for the issue. We will improve it on the next version. Please wait for some time.",2020-01-08 08:48:04,most_relevant,com.ticktick.task +Mr EveryDayLife,https://lh3.googleusercontent.com/a-/AOh14GiQ0N6Dl9A1kqLdnf06A6qyjw3rGb3fRZqraf28tA,"Beautiful design but, I'd prefer a one time option for the PRO version",4,0,5.5.0.2,2020-02-13 17:46:41,,,most_relevant,com.ticktick.task +LASkAR DesigNers,https://lh3.googleusercontent.com/a-/AOh14GjvhcPrIp48Tohwo9SIjRxl9rDYjvm1PGVLlmNKow,Excellent job. I don't give you 5 🌟 because I don't wanna see the panel on status bar when I already completed my tasks. It's very annoying to me. If you will resolve this problem then I will give you 5 🌟. insha Allah 💚☮️,4,0,5.5.5.0,2020-03-12 13:04:20,,,most_relevant,com.ticktick.task +Jim Williams,https://lh3.googleusercontent.com/-AhxkU2ehen8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMscA2TOvIuuU0aCyiEZH76DIGJsw/photo.jpg,"Great app, I like recording tasks verbally.",4,0,5.4.1,2020-01-12 21:45:26,,,most_relevant,com.ticktick.task +Sajan Panchal,https://lh3.googleusercontent.com/a-/AOh14GiZOa6E8fD71tfw5HS1trdQYBV8g56u-oeJYCZcmA4,Widget remains blank (tasks don't appear) on my OnePlus 7Pro phone. Any suggestions?,4,0,5.5.0.2,2020-02-12 06:16:12,,,most_relevant,com.ticktick.task +Joanna Jurdi,https://lh3.googleusercontent.com/a-/AOh14GijKQqHhC43nQhGStExQ38wC8-g9OR5h_Ygse5Axg,Great app. I suggest having more reminder options,4,0,5.5.1.0,2020-02-26 09:06:33,,,most_relevant,com.ticktick.task +Olav Norrud,https://lh3.googleusercontent.com/a-/AOh14GhPl6pPiXcXyejaUR4Al-d-8uMWfxvA6eeklxFhsA,"Have been quite satisfied with Premium for a year. Would have been so good with a monthly/weekly calendar view for my TickTick tasks, like the web app has. No calendar icon, although the doc vaguely states that there is. Guess it has been removed. Well, it still has a tiny edge to the competition.",4,1,5.4.1,2020-01-09 23:15:12,,,most_relevant,com.ticktick.task +Lisa Doll,https://lh3.googleusercontent.com/-RrT7VnNBGRE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMalJa-rLit3QVLA6-bFyCwpu_6jw/photo.jpg,"I love this app. The only change I wish they would make is that certain words and all numbers become dates that the app tries to make into a deadline. Sometimes I just want to write the word ""tomorrow"" without it thinking that I want to do that task by tomorrow or on tomorrow (for example)",4,1,5.4.1,2020-01-09 18:41:33,,,most_relevant,com.ticktick.task +Mr. Willson,https://lh3.googleusercontent.com/-aO6H6ZV2DhY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN0kAuSliWUG5LzhZEw4_NPNYbNgQ/photo.jpg,"I've used all of the popular and some of the lesser known To Do List apps. This is by far my favorite. You don't have to have an account and has more options. But you should for back up purposes. The only problem I have is that when I miss a task, it says due 10 minutes ago when it's been 2 hours. My tasks do show up on time though. The times vary, but this issue started when I created an account.",4,1,5.3.1,2019-12-10 11:58:19,,,most_relevant,com.ticktick.task +Nick Barabash,https://lh3.googleusercontent.com/a-/AOh14Ghz80KzXKHICid5sgWYvbn-eqfn6sd01-e6NZgM,"In my opinion this is The Best task management tool out there. FYI: I've tried Todoist, Nirvana, Notion, Microsoft To-Do, Wunderlist, Google Tasks, Any.Do. None of these apps had that many features that worked so well together as in TickTick. I use this app to plan my every day, and It's awesome! I don't have much money atm (pun intended) and can't get the premium, but free plan is offering so many features that it doesn't hinder my performance here, unlike in other apps.",4,14,5.4.0,2019-12-10 03:21:35,,,most_relevant,com.ticktick.task +Rigved P.,https://lh3.googleusercontent.com/a-/AOh14GjCFlCdo-BxwRtSoYcHoHoA8N_OV5FnFEMDPLhK,"Please add 3rd party app integrations like Alexa, Microsoft outlook calendar, etc.",4,0,5.5.0.1,2020-01-18 14:01:49,"Hi, we're working on integration with Alexa. Besides, you could subscribe Microsoft outlook calendar by url. Please ref:https://support.ticktick.com/hc/en-us/articles/360016271692-Subscribe-to-TickTick-in-a-third-party-calendar",2020-01-19 01:56:49,most_relevant,com.ticktick.task +TSHROU HJKT,https://lh3.googleusercontent.com/a-/AOh14GgJp2ywDZcGCMG-Fui8m9mnZPyAw34oO2nTgZCV,"Really nice clean UI and smooth UX, not laggy at all. You can divide tasks in groups and sub groups, and attach a due date to it and tell you when the task is overdue. The second best thing about this app is the ""plan"" app feature. The feature shows what task you have planned for the day and shows you the task one by one and lets you pick when to do it. Very nice feature but how many times you can plan your tasks is limited in the free version. I wish there's an integrated ""Habit App""feature",4,8,5.3.1,2019-11-12 01:12:46,,,most_relevant,com.ticktick.task +Bahar J,https://lh3.googleusercontent.com/-gpaCGX490oQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPpeVnTZ0IutDiqL2SgnO7zFMYLnw/photo.jpg,"It is simply one of the best productivity apps I've ever used,i would just go and give a five star,but i keep that last star cause living in my country i cant pay for the pro version and it kinda hurts that i see all the options I've missed,STILL thanks for all the great free options available",4,0,5.4.0,2020-01-23 18:36:35,,,most_relevant,com.ticktick.task +Iden Versio,https://lh3.googleusercontent.com/a-/AOh14GhThmT61QXVQHuoZHEMP9u9LBmBFaj2P1JRJLwbiQ,I really wish the calendar was available for non-premium members,4,0,5.5.0.2,2020-02-04 00:46:41,,,most_relevant,com.ticktick.task +Bee Ee,https://lh3.googleusercontent.com/-tI9YQKE0Ri8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPheh837d37hWmP-pKHgPEvHZFS2Q/photo.jpg,LOVE this app - but I have two suggestions to make the habit function even better. Possible to implement please? 1) Interval tracking - e.g. do a habit every third day. Resets to third day following every time the habit is marked as done. 2) Track a habit less frequently than once per week e.g. once every two months. Will subscribe if the app has these two abilities!,4,2,5.3.1,2019-11-10 13:27:46,,,most_relevant,com.ticktick.task +Prem Patel,https://lh3.googleusercontent.com/a-/AOh14GjPMz3oBHSanCW5oTJXMe4qUy6BtlFdy-ZkqIzAuw,"Really great app, fast and snappy like a to-do app should be like so you don't miss any thoughts, my biggest issue with this app is that there is no one time pay to buy option for it, while I find it useful I don't need a lot of the pro features, I am a basic user and need it just to track my personal tasks, as such the monthly payment subscription for the Pro version does not make sense to me, why not add a basic pro model, with limited features, that users can outright buy forever.",4,11,5.3.1,2019-11-18 20:29:05,,,most_relevant,com.ticktick.task +mhmd1978,https://lh3.googleusercontent.com/-w7AjfeKPIxo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMy0DKRIsi8beW9cO-QDSqgjYbCMg/photo.jpg,"After the latest update, when I click the 3 dots at the top right to delete a task, I can't pull the menu up to click the delete button",4,12,5.5.6.0,2020-04-05 08:02:22,,,newest,com.ticktick.task +Randy Walker,https://lh3.googleusercontent.com/a-/AOh14Gj-GOLh5mK-z6d09hmXz-BMjI80Li5rHUTa33Ya,Very good experience. Does what we need.,4,0,5.5.6.0,2020-04-04 20:43:04,,,newest,com.ticktick.task +Animania freak,https://lh3.googleusercontent.com/a-/AOh14GiN_oOq0BHMhBuhZAjhMU_HTpUAzomGTcFV5Ygi3Q,"I wish this would sync with my Google task, so that i can use it on my computer and ipad.",4,0,5.5.6.0,2020-04-04 19:35:10,,,newest,com.ticktick.task +Harini Mudliyar,https://lh3.googleusercontent.com/a-/AOh14GiT6Yipsx6c6bFb-_HML4ozQo6X048tpRYZxjMoHg,"Excellent app that not only has to do check lists but habit tracking also covered, what I loved most about the app is the 'your thought' that pops after completing the habits...genuinely thank you for such app creator..",4,0,5.5.6.0,2020-04-04 13:42:06,,,newest,com.ticktick.task +Sneha Herle,https://lh3.googleusercontent.com/a-/AOh14GgD8cTikzFNe03OjkSHHNhF7SvieF0hAf54AL7EDK4,"I like the simple interface and it helps me set reminders for tasks, schedule them and analyse them.",4,0,5.5.6.0,2020-04-04 06:39:08,,,newest,com.ticktick.task +Naresh Rawat,https://lh3.googleusercontent.com/a-/AOh14GgpxAvIBzedTOgTII1wZMlhzNKiLBoVnE12AOxQ,This is a great app,4,0,5.5.6.0,2020-04-03 16:27:44,,,newest,com.ticktick.task +bob f,https://lh3.googleusercontent.com/-CqMWdRdsP7g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNvMtO_62qSyNEw6mGSjj-TkPiCsg/photo.jpg,Do you miss Astrid? Get this.,4,0,5.5.6.0,2020-04-03 16:11:27,,,newest,com.ticktick.task +Kuya Nerd,https://lh3.googleusercontent.com/a-/AOh14GhYs0_wfJpenIDXbSBJdYlpXHVDFmge4dG3XDtyDw,Pretty good!,4,0,5.5.6.0,2020-04-03 15:11:01,,,newest,com.ticktick.task +Willem Crouse,https://lh3.googleusercontent.com/a-/AOh14Gj0pdLPVdinMNMcU3pA4TNgkYV6_93rE1zKbVe3,So far so good,4,0,5.5.6.0,2020-04-03 14:38:08,,,newest,com.ticktick.task +P R,https://lh3.googleusercontent.com/a-/AOh14Gi9DzObNvV0XVwlSvev5lmxG7zHeLC4XA_qNaiDPiw,Not very intuitive sometimes but a useful app I use daily.,4,0,5.5.6.0,2020-04-03 12:22:18,,,newest,com.ticktick.task +Bodhisattva Gopal - बोधिसत्त्व गोपाल,https://lh3.googleusercontent.com/-VK-mdzone_w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMHeBmgyOmC1ZQeZkQgwjIifMTbhA/photo.jpg,"Awesome app. Just want one feature, though, namely setting up the feature of an advanced timer for a task if one wants. Then will make the rating 5* from the current 4*.",4,0,,2020-04-03 08:52:28,,,newest,com.ticktick.task +Naveed Ahmed,https://lh3.googleusercontent.com/-R1fCuWIFdEs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNbz6fV0D7uvzNzU-8rAZVIPk5Z8Q/photo.jpg,Great app. I wish it had two features: the ability to add directly to a folder without having to move it. And the ability to resize the widget to a smaller height.,4,0,,2020-04-02 16:48:11,,,newest,com.ticktick.task +Arasin Staubly,https://lh3.googleusercontent.com/a-/AOh14Gh7VSaSE5pXfnJiygX3fVLqh07wLbewIuokBSvJxw,"Pretty good for me, but in the version I have I can't edit a task.",4,0,5.5.6.0,2020-04-02 15:44:26,,,newest,com.ticktick.task +Rebecca Howard,https://lh3.googleusercontent.com/-eHE9nAnoPsM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMIkUxAYpb4E9xA98Op0L4R-PpByw/photo.jpg,"The free version is very good so far. Most features are free. Ive only used a week, but if this app continues to be as useful, I'll consider premium soon.",4,0,5.5.6.0,2020-04-02 14:57:51,,,newest,com.ticktick.task +Teresa,https://lh3.googleusercontent.com/-iAU-ssh_kAM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPlu81JcmTyfuPxsPjGdQqyj6YQnQ/photo.jpg,Liked wunderlist better. Can't add more than one share. I wanted family grocery list.,4,0,5.5.6.0,2020-04-02 14:03:56,,,newest,com.ticktick.task +Srinivas D,https://lh3.googleusercontent.com/-Bh0jc0cpEq4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPKMab0WY3RX6H2m0u6_beFtAMYHg/photo.jpg,Quite adequate for reminders ; Simple and easy to use.,4,0,5.5.6.0,2020-04-02 10:26:08,,,newest,com.ticktick.task +sherlock_arnold,https://lh3.googleusercontent.com/a-/AOh14Gi_tSCe6ZwRwkMlxWKDEutbmmXP5ZzMUxF-F4_d,"Ever since I downloaded this app, I've gotten less lazy, I've done more work, and I was able to keep track of my tasks needed. I would rate 5/5 stars, but I would like this app to have compatibility on windows or have some sort of chrome extension. If I am mistaken and there is a windows/chrome extension, please notify me. Thank you.",4,0,5.5.6.0,2020-04-02 06:59:19,,,newest,com.ticktick.task +Azima,https://lh3.googleusercontent.com/a-/AOh14Gj53CJW0_aCbh-qj4MkXE7DFUhapAY15p8HGmWWhg,"I didn't understand how to add subtask in ""template"". I pressed ""save as template"", but it saved only the name of template. I couldn't find any information about template in ""help centre"". Please explain me how to add subtask in template.",4,0,5.5.6.0,2020-04-02 06:17:15,,,newest,com.ticktick.task +Legendary Blader,https://lh3.googleusercontent.com/a-/AOh14GgsP-OlFMK46v6b1QrccZB0rRjWLaJMvw4lCDrMNw,The app is really good but there shouldn't be a premium version of this app it should be free.,4,0,5.5.6.0,2020-04-01 14:59:11,,,newest,com.ticktick.task +UJJWAL KUMAR SINGH,https://lh3.googleusercontent.com/a-/AOh14Giyeev8kCi5UbUVVQTMM6uLIS8_rTRe7qitKhH1,Expensive,4,0,,2020-04-01 14:18:15,,,newest,com.ticktick.task +Michael Zeta,https://lh3.googleusercontent.com/a-/AOh14GiZxwmF3iYlKhpDNzzYUwG1dsf9p-fTe0B3Vl6JgH0,"Love TickTick, it's almost perfect! I'd love to see the following features added: • Subtasks within subtasks (like todoists) • Option to assign repeating tasks to repeat after completion rather than due date. (I have an automatic cat feeder that lasts five days then I need to be reminded, but if I postpone a day or two and then check it off it sets to repeat five days after the original due date instead of after I check off) • Option to configure inbox behavior (include tasks from other lists)",4,1,5.5.6.0,2020-03-31 20:34:14,,,newest,com.ticktick.task +Amit Singla,https://lh3.googleusercontent.com/-vAPQqBWX1nk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM4ldo_B-DcrUwdElGx9M18XynYtw/photo.jpg,Good,4,0,5.5.6.0,2020-03-31 15:48:57,,,newest,com.ticktick.task +Kunj Desai,https://lh3.googleusercontent.com/a-/AOh14GiiGRT_-0fAv3EWbGrAqHLTUz8XhwOMkD35bVmi0w,MKBHD suggested this app. The free version is very good. Gets my work done.,4,0,5.5.6.0,2020-03-30 06:05:55,,,newest,com.ticktick.task +Damian Gutkowski,https://lh3.googleusercontent.com/a-/AOh14GizFrAT_MuzNlFgcC5VrX3cyX8GGQdcJ0tJxV_9wA,new item menu for actions is horrible! please bring the old one back. delete action has a bad offset and is rendered behind the navigation bar. it's so inconvenient,4,0,5.5.6.0,2020-03-29 16:23:00,,,newest,com.ticktick.task +James Wilson,https://lh3.googleusercontent.com/a-/AOh14Gje4rbTfmvtMHKKmD8M-5kIsV0msk3PWDtEQaW2daU,I have been utilizing TickTick:ToDo List for awhile now. Its a very solid application that helps ensure the important tasks in one's life are completed on time.,4,0,5.5.6.0,2020-03-29 14:03:57,,,newest,com.ticktick.task +Gibar Becerril,https://lh3.googleusercontent.com/-ozqkqx79nwE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMFlNbuwvcNqoEr47w4mCkOGaGrMA/photo.jpg,Great app! Highly recommend it! I just wish this app would show the sub tasks in the to-do list.,4,0,,2020-03-28 21:16:37,,,newest,com.ticktick.task +Wesley Jonathan Marcolino,https://lh3.googleusercontent.com/a-/AOh14Gi0KKyL6-tYwglwRB-L8yFB_6iC361mBZD1YgAOz3g,I love this app. Only thing that annoys me is how marking a task as complete in one device doesn't dismiss notifications on the others.,4,0,5.5.6.0,2020-03-28 19:44:46,,,newest,com.ticktick.task +Fajar Prabowo,https://lh3.googleusercontent.com/-qp2qSw3jFsc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNWM0trQp3Sbm-oPFmWdOSyGWgU2w/photo.jpg,Good apps. However I want to quit the subscription. Could u help me?,4,0,,2020-03-28 15:31:46,,,newest,com.ticktick.task +Mark Hochstein,https://lh3.googleusercontent.com/a-/AOh14GjP6VMpvrC_xlMVi1RvZBe2j3ikiSVdjGNbKqfeHrE,"This is a great app. The ine thing that would make it better would be if it worked with Google Assistant, Google Home, & Amazon Echo so I could make reminders in TickTick by voice.",4,0,5.5.6.0,2020-03-28 13:25:48,,,newest,com.ticktick.task +Anjan Singh,https://lh3.googleusercontent.com/a-/AOh14GjH-_EObovKcCtL9UOt04Y3eMRp7JQF3X831AaJivc,Great app for task reminders. Reminders notifications works well. Easy to use.,4,0,5.5.6.0,2020-03-28 08:43:58,,,newest,com.ticktick.task +Sarah Bjorkman,https://lh3.googleusercontent.com/a-/AOh14Gi2JqybVmfrbDlFURKVmBSfkP3iJWtymbYh7D3Iqw,This app is very helpful to me!,4,0,5.5.6.0,2020-03-27 14:11:45,,,newest,com.ticktick.task +Otabek Ilkhomov,https://lh3.googleusercontent.com/-dROwTRnsnCY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO8u5lMPuksZaCr375D1r0kWlMWiw/photo.jpg,Would be great if all the features were free,4,0,5.5.5.0,2020-03-27 12:31:18,,,newest,com.ticktick.task +Hassen Noormahomed,https://lh3.googleusercontent.com/a-/AOh14GgP3uBMnVvsJCog8Ns7TRMpGcCotswB_uUOEkw9,Does what I need and makes remembering tasks very easy,4,0,5.5.6.0,2020-03-27 07:32:29,,,newest,com.ticktick.task +Neal Haegele,https://lh3.googleusercontent.com/-YedqsZ-I5Sg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNXd1U2xuz7tdgMdxd1yitNv0wAiA/photo.jpg,Good program,4,0,5.5.6.0,2020-03-26 21:53:33,,,newest,com.ticktick.task +Marwan .V,https://lh3.googleusercontent.com/a-/AOh14Gj--6siE9xAOsH5pit7Vlt5v9SzEeAsWlxSiG5KmA,How can I open pomo timer? 😢,4,1,5.5.6.0,2020-03-25 19:16:03,,,newest,com.ticktick.task +Noah F,https://lh3.googleusercontent.com/a-/AOh14GisOnml_FU2RFO8HFYtm55U-fyE5bCjTzo-y2GJhg,The app works great as a digital day planner. The only complaint that I have. I dont see a way to edit tasks after I enter them.,4,0,5.5.6.0,2020-03-25 18:11:10,,,newest,com.ticktick.task +Attila Matisse Aliswag,https://lh3.googleusercontent.com/a-/AOh14GjiXFDlIPnEXUgXJdxWLTvn_NcVgFg6wQTVcii_y5M,Can't fully scroll to the bottom of the options list of a task. Can't see the delete option fully.,4,0,5.5.6.0,2020-03-25 16:49:33,,,newest,com.ticktick.task +Mortada Ayyad,https://lh3.googleusercontent.com/a-/AOh14GhIzPSG_rGRnmzZfcxOplIBIIrXyp98h46b6n4esg,Good But need some options more Such as when you make one habit in different day at different time her can't help you,4,0,,2020-03-25 16:30:30,,,newest,com.ticktick.task +Parth Mittal,https://lh3.googleusercontent.com/-etLd3rCPZ0A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPekG2sBgrGVdw-azvFAvEy3YiqPQ/photo.jpg,One of the best apps to boost your productivity. Replete with useful features even in the free version. Love their habit feature.,4,0,5.5.6.0,2020-03-25 10:07:13,,,newest,com.ticktick.task +Izuchukwu Joseph,https://lh3.googleusercontent.com/-HzTnbIJe5hU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNfQyB0s8jH2Qi6jyE8PRG0HbbSNQ/photo.jpg,Great app. Ideal for planning ur day. Nice premium subscription,4,0,5.5.6.0,2020-03-25 08:15:03,,,newest,com.ticktick.task +Ahmed Eleraky,https://lh3.googleusercontent.com/a-/AOh14Gg8lDQzJYAQ34mxDoLfBckV2itrzKWKvjtJZ52X,Very good,4,0,5.5.5.0,2020-03-25 06:02:18,,,newest,com.ticktick.task +Dawn Hansen,https://lh3.googleusercontent.com/-sXBm7m7IlfE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM2RIPnkQXvpzQw1cqdm50iA0K8AA/photo.jpg,Love it,4,0,5.5.5.0,2020-03-24 16:20:29,,,newest,com.ticktick.task +Chas. Eberle,https://lh3.googleusercontent.com/a-/AOh14GiA42qeGa2IWB35FZDgslqd1teU5WG2r5p-uboyuA,Very simple & easy to use reminder/list system. Not a lot of Fluff & Complications a lot of other programs like this do. But just switched from a 5 to a 4 star as security program showed all of my device info is being sent to Facebook servers in CA? Please tell me developer is not selling my info to Facebook??? Developer has not refuted this for quite a while now?,4,1,5.5.5.0,2020-03-24 05:55:19,,,newest,com.ticktick.task +George McLoughlin,https://lh3.googleusercontent.com/-TNF9IO3KoB0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMVG-HUzcE5kG_g7pCNspWoPqqtsA/photo.jpg,"This app does exactly what you need it to. Not perfect, but great at its job.",4,0,5.5.6.0,2020-03-23 22:48:31,,,newest,com.ticktick.task +Ebullient Whee,https://lh3.googleusercontent.com/a-/AOh14GgLogUiM59T5ivQKEUSuZZmJyGjN42EeIXm6r-A,"Great app, but annoying that it limits the number of lists you can make. I can understand limiting *shared* lists on the free version, but not regular ones. Functionally it's great though. I would pay a one time fee to open the pro functions, but not ongoing fees.",4,0,5.5.5.0,2020-03-23 17:29:04,,,newest,com.ticktick.task +rob wilson,https://lh3.googleusercontent.com/a-/AOh14GhrCrKLSszLdbD4EZ2i_GTYx6ZkrsYMf5VyMiwCwo4,Pretty good,4,0,5.5.5.0,2020-03-22 22:51:34,,,newest,com.ticktick.task +U J SHABAREENATH,https://lh3.googleusercontent.com/a-/AOh14GhvUaLXvXwq8x40VI48LhwrX0omBgw_xp1xpMFiYw,Nice,4,0,5.5.5.0,2020-03-22 15:37:32,,,newest,com.ticktick.task +Hamed Esmaeeli,https://lh3.googleusercontent.com/a-/AOh14Ghuet_VyZCe9pIxUa8CxIlG_Sg454_tCC7UtvYP9go,Very useful and flexible for scheduling tasks. It can be better by employing ML to guess the best choice of time for any task.,4,0,5.5.5.0,2020-03-20 13:33:01,,,newest,com.ticktick.task +Butt Jani,https://lh3.googleusercontent.com/a-/AOh14GirA5DB9xCRdST_HR46cOp-q7rshQ_rSGAkfM6s89I,Beautiful,4,0,5.5.5.0,2020-03-20 12:41:07,,,newest,com.ticktick.task +Ashim Ashish Tyson,https://lh3.googleusercontent.com/a-/AOh14GhGJYMYghvjIIRNos0dnIwpahR4_1e2NQfrsiPG8w,Need at least few more levels of subtasks and lists for it to be perfect. Otherwise everything is good. Love it.,4,0,,2020-03-20 07:56:00,,,newest,com.ticktick.task +KR Parikh,https://lh3.googleusercontent.com/a-/AOh14GhowPuTMW2SVeKGHmQ9lq5q9AkC_xOsIAxsoKTkJg,It would be more useful if user can provide interdependence and correlation between various actions and lists,4,0,5.5.5.0,2020-03-19 12:02:12,,,newest,com.ticktick.task +Akash Sharma,https://lh3.googleusercontent.com/-fJZ4cN5KYcE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO6iARNe4vdCg6w8R6cDwmWG4m5IA/photo.jpg,It is very good app to manage your to do list. One thing that can make it better is it should show all the incomplete or overdue taks with todays tasks as overdue instead of into inbox. This will make those task more accessible and will keep them under notice.,4,1,5.5.5.0,2020-03-19 07:27:16,,,newest,com.ticktick.task +Carl Argent,https://lh3.googleusercontent.com/a-/AOh14GiLlK53g6Wa1LEMxUjRy8jB1y-_3e9fiG7Kt5ZL1tY,Compared to Google Tasks it's overly complicated and too many menus to set simple things like dates and times.,4,0,,2020-03-18 19:01:25,,,newest,com.ticktick.task +Diana Garifulina,https://lh3.googleusercontent.com/a-/AOh14GgZNnKt_uCgipCJRRTwOzZCtMsMTkBtZ24MF4cziA,"Please, solve the problem with fast typing! After I type in the date, letters and numbers REMAIN",4,0,5.5.5.0,2020-03-18 15:59:16,Hey Diana! Are you wanting to remove the date/time in Quick add? You may go to Settings > Task Quick Add > Smart Recognition > REMOVE TEXT in Tasks.,2019-11-01 01:38:22,newest,com.ticktick.task +Kamarudeen Ahamed,https://lh3.googleusercontent.com/a-/AOh14GhP-__5j3l19-95vj8yU6EGO_40cV0O89ZPvAvp8Q,Superb,4,0,5.5.5.0,2020-03-18 06:33:47,,,newest,com.ticktick.task +Japs Juinio,https://lh3.googleusercontent.com/-zxPlbZkbH-w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMRpdwRuVhAVIK6T9Y-ihaNuzApzg/photo.jpg,Great app but is subscription based app.,4,0,5.5.5.0,2020-03-18 00:09:40,,,newest,com.ticktick.task +Jonathan Maheshwar,https://lh3.googleusercontent.com/a-/AOh14GiIBI6tn5rmQSWk7x1tuCDUOY85mkQImM61fLhHYw,"My all around power app! This app has been so useful, that I use it not just for tasks but also my calendar. Used to sync with Google calendar, but left that to be all Ticktick now. This app is right on the money.",4,0,5.5.5.0,2020-03-17 03:31:58,,,newest,com.ticktick.task +Nicolás Chenlo,https://lh3.googleusercontent.com/a-/AOh14Gg5xSQgT1lFrlQyxESVXIsgitrvvhCsMnDneqbKLyc,Overall an amazing app,4,0,5.5.5.0,2020-03-16 21:16:27,,,newest,com.ticktick.task +Tal Tene,https://lh3.googleusercontent.com/a-/AOh14Gi7xHbIdE1RJ-bkq-vtpGgKvE8o5BMcuLsnatRQGVo,Great app. Still waiting for RTL support and sub folders. Please!!,4,0,5.5.5.0,2020-03-16 10:26:41,,,newest,com.ticktick.task +Aaron Griffin,https://lh3.googleusercontent.com/a-/AOh14Gjh9jsMMBI94M35hQGcfxyJy2MfvyyL7EOPrjnOjlA,"My go-to todo list app. I'd love for the habits feature to be improved, though.",4,0,5.5.5.0,2020-03-15 22:20:01,,,newest,com.ticktick.task +Maciej Fiedler,https://lh3.googleusercontent.com/a-/AOh14Gik7LJYirgp8c2bKbSOLJ9ke0WobClWDOCeEs1AFg,"Overall very good, but cant make a task with splitscreen.",4,0,5.5.5.0,2020-03-15 21:45:24,,,newest,com.ticktick.task +Jason Bohnenstiehl,https://lh3.googleusercontent.com/a-/AOh14GjlFND5BJM0flX3uj2PmRPSQaYbQPen7yylolht-w,"Wish it supported sharing, but otherwise a fantastic, simple to do list app",4,0,5.5.5.0,2020-03-15 18:49:28,,,newest,com.ticktick.task +im allergic to soap,https://lh3.googleusercontent.com/a-/AOh14GgsHFCiDkzoJB_sy-75BACIXrQViAbXT_OsFoGoTg,It's better then the other apps I've tried. But there should a bottom where it says you couldn't do the task instead of just turning the task as an overdue.,4,0,5.5.5.0,2020-03-14 18:06:20,,,newest,com.ticktick.task +KVMike Ballard,https://lh3.googleusercontent.com/a-/AOh14GiGGn48-4M7cWfs0kZRxLBnSXFvPAIiYmHQ_w_V,One of the best To Do list apps I've used.,4,0,,2020-03-14 13:02:22,,,newest,com.ticktick.task +hawaiinsurf614,https://lh3.googleusercontent.com/-PLYsV2zzE5o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNjaTJS1vyypIN2FIm0t8qfqAbVWg/photo.jpg,"amazing functionality; however, I wish there was a guide for some of the more advanced features.",4,0,5.5.5.0,2020-03-14 11:32:19,,,newest,com.ticktick.task +vmc costa,https://lh3.googleusercontent.com/-snlVjRmCNqU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOH7SCSEiIuAqzLCv8W3mMdW2ekgQ/photo.jpg,"Very good, could have a little more utilities for the free version",4,0,5.5.5.0,2020-03-14 01:55:21,,,newest,com.ticktick.task +Samantha Heaton,https://lh3.googleusercontent.com/a-/AOh14Ghlze9DQRD9TlDTr_T5JWC_2ZhOg6wgHFHo1W2HTA,Good hard to change times,4,0,5.5.5.0,2020-03-13 14:15:34,,,newest,com.ticktick.task +Petite Shara,https://lh3.googleusercontent.com/a-/AOh14GiLkKCyibbnkQoBQhnpoV-Se8kse6t3_vh5Se5bng,A search bar would be nice.,4,0,5.5.5.0,2020-03-12 21:59:53,,,newest,com.ticktick.task +LASkAR DesigNers,https://lh3.googleusercontent.com/a-/AOh14GjvhcPrIp48Tohwo9SIjRxl9rDYjvm1PGVLlmNKow,Excellent job. I don't give you 5 🌟 because I don't wanna see the panel on status bar when I already completed my tasks. It's very annoying to me. If you will resolve this problem then I will give you 5 🌟. insha Allah 💚☮️,4,0,5.5.5.0,2020-03-12 13:04:20,,,newest,com.ticktick.task +Pat A,https://lh3.googleusercontent.com/-xisAnHiH_6M/AAAAAAAAAAI/AAAAAAAAAnM/AAKWJJNLBv0BwgOO30AxHQDfAsAO7eZqQg/photo.jpg,Wunderlist being killed by Microsoft.... Seems like most people are coming to this app instead of moving to the recommended Microsoft To Do. Giving this a try.,4,0,5.5.5.0,2020-03-12 12:18:17,,,newest,com.ticktick.task +Al Le,https://lh3.googleusercontent.com/-_S4R4CusOEU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPvziiGKuvW0uaR4tyaTskm6hy6jA/photo.jpg,Useful but slow to synchronize across devices. Could evolve to become even more uh ser friendly,4,0,5.5.5.0,2020-03-12 08:22:03,,,newest,com.ticktick.task +Rob Hunter,https://lh3.googleusercontent.com/a-/AOh14Gj4iyTCfkOz1RSxvUtIhPXHVzPAMlfKJHYD6N-efA,"Not bad It's a basic to-do list which establishes days when a project is to be completed and a list of tasks that were uncompleted. Uncomplicated and useful. I would like to see the option that shows a job partially completed... some projects need to be held over and a more customisable repeat process ... every fortnight, or third Friday of the week.",4,0,5.5.5.0,2020-03-12 01:47:29,,,newest,com.ticktick.task +Kerry French,https://lh3.googleusercontent.com/a-/AOh14Ght2ALlkq8HKSXeb4kWQ0uAibcOP2Pzd7AS41Br,"Been using for about a year. Getting more and more useful every day. Works well across Android, iPad, and Windows 10.",4,0,5.5.5.0,2020-03-11 21:23:16,,,newest,com.ticktick.task +Kristofers Ekštets,https://lh3.googleusercontent.com/a-/AOh14Gi70ftZB_oI5gGMgKFmESiL4lwtlth-rbNsUOH8,one of the best to do list planners in play store,4,0,5.5.5.0,2020-03-11 20:54:37,,,newest,com.ticktick.task +Diane Rae,https://lh3.googleusercontent.com/a-/AOh14GgPuPS-E3Z6yhXepW_c2aF_3GPnspBzC9D85KC78_Y,So helpful!!!,4,0,5.5.5.0,2020-03-11 20:23:50,,,newest,com.ticktick.task +Avie Owle,https://lh3.googleusercontent.com/-3NVwZgX8Wt4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMcTVdLTBchGj9x51GhLiT1vRyzXA/photo.jpg,"Great, premium allows for more alarms and reminders . But I don't have premium so that sucks.",4,0,5.5.5.0,2020-03-11 19:48:47,,,newest,com.ticktick.task +Denny Foehner,https://lh3.googleusercontent.com/-tW4DMvs4zvE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPno-fHIANRlWD2CDhJ6xUldBwtcA/photo.jpg,"Love the app, but I notice it skips a reminder from time to time.",4,0,5.5.5.0,2020-03-11 19:47:52,,,newest,com.ticktick.task +Liam,https://lh3.googleusercontent.com/a-/AOh14GiK5zEcCceKiXL6RUIJgcXS8YAd4Khe_l902NDrLQ,"Excellent Calender Supplement! - I've been using TickTick along side my long term Callander (Google Calender) as a planner for my daily tasks and University Timetable. And it's been nothing short of amazing, life changing might sound like a stretch but it's helped me a tonne when it comes to getting stuffz done. - Only thing I'd ask for is more options or a separate way of planning things like a university timetable to make it faster to add classes etc.",4,0,5.5.5.0,2020-03-11 15:49:43,,,newest,com.ticktick.task +Andrej Gombar,https://lh3.googleusercontent.com/a-/AOh14GhgId_PiL4PU8W8bX-Jkoh3tlC4FYImmMnsx5DBNg,Been using it for years and there have been tons of improvements! Great app. Just wish you could choose for notifications to come from top of screen instead of the bottom because many times a reminder pops up while I'm typing and I'll mistakenly dismiss it.,4,0,5.5.5.0,2020-03-11 15:44:48,,,newest,com.ticktick.task +Mohit Sharma,https://lh3.googleusercontent.com/a-/AOh14Gi2k8vYudt0Lp_J8FSTfh8mVIbjnTO-Dqi8CHMFWA,"Like the app but instead of monthly payment, it should have been a one time app purchase",4,0,5.5.5.0,2020-03-11 15:26:32,,,newest,com.ticktick.task +King's Marine services,https://lh3.googleusercontent.com/a-/AOh14Ggs6-F0kvSLtXGFqrasQubz_EG5UcdeyIwi2b9JVg,Awesome to scheduled my job and personal issues!,4,0,5.5.5.0,2020-03-11 15:15:55,,,newest,com.ticktick.task +Lakshanah Buruth,https://lh3.googleusercontent.com/a-/AOh14Gh-Bv5m2FTYu8u535iYXs6VIc1RofTOzpwCJyew,Good but needs to increase responsiveness to fingerprint ( takes time to unlock ),4,3,5.5.5.0,2020-03-11 12:09:26,,,newest,com.ticktick.task +Andrew Philip,https://lh3.googleusercontent.com/a-/AOh14Gi-ls4if0WecaCMyCSX5KmzvgyPKiA1iD6B2aBn9w,Great app with just about every function I want for a task list. Love the way it integrates with the calendar. It used to work with Google voice activation but that seems to have ceased.,4,0,5.5.5.0,2020-03-11 11:06:51,,,newest,com.ticktick.task +Todd Price,https://lh3.googleusercontent.com/a-/AOh14GhIz50nDxpThtCDg_QF-ifEP6zWFLGwZrvhTWgzpJc,"Good, simple app that works well. It keeps my to-do list synced between my Android phone and web browser on my computer.",4,0,5.5.5.0,2020-03-10 21:01:59,,,newest,com.ticktick.task +Kathleen Martin,https://lh3.googleusercontent.com/a-/AOh14Gj34Yjf7lJL_c5d668VieZ689fSUUN_HFtcatI9vA,Very user friendly.,4,0,5.5.5.0,2020-03-10 17:39:07,,,newest,com.ticktick.task +Wesley Cartwright,https://lh3.googleusercontent.com/a-/AOh14GjlLukUcDhKBq18t8AqVWuR0aPiWhxxuK7aIUNdPg,Well it's berfect to have so I can't miss any reminders,4,0,5.5.5.0,2020-03-10 12:56:24,,,newest,com.ticktick.task +Divineand Branches,https://lh3.googleusercontent.com/a-/AOh14GiPNZhW_pKlmFhckh1c2w7ohcIwWgPKrByYbRlX,Hii and,4,0,5.5.5.0,2020-03-10 11:03:27,,,newest,com.ticktick.task +Gayan Sajith Bandara,https://lh3.googleusercontent.com/a-/AOh14GjK49a01Kwf8mm3EVN3KATpAJE0rxZtIKu9ZJaI,Very helpful for day to day activities,4,0,5.5.5.0,2020-03-10 03:43:07,,,newest,com.ticktick.task +Mr Green,https://lh3.googleusercontent.com/a-/AOh14GgFI9EUguS7Zy2oUvLA9sMAy_l6Oox2HWlb8_gGbQ,"I was so pleased with the new Habit tracker as well as using a true Dark Mode. However, I don't agree with the Premium policy as I prefer to make a bigger one-time payment (such as when I bought Final Cut Pro X with Apple) instead of a small recurring subscription that makes me want to go back to Todoist. It's a damn shame as I liked TickTick so much I'm willing to pay for Premium. Unfortunately, the subscription policy is an easy deal breaker.",4,2,5.5.1.0,2020-03-10 03:18:24,,,newest,com.ticktick.task +Kelly Madison,https://lh3.googleusercontent.com/a-/AOh14Gi7_5d_UK6AqQmu3vvkdIXE8LzEJUFaOlwnZNmR,"5.5.5.0: Habits widget improved but lacking. NEEDS ALSO SINGLE COLUMN LAYOUT for habits widget. THE GOOD: 1. SOME offline. 2. Habits. 3. Pomo timer. 4. Dark theme. 5. Sorting lists (only Paid). THE BAD: 1. Too expensive to use basic features. Make it $10 lifetime. 2. Social aspect sucks. Needs public leaderboard (OPEN to free users) & search find & add users. 3. Limited export feature. Use Titanium Backup. Share option ok but only one list, need full backup export all. 4. Need 100% offline mode",4,4,4.8.6,2020-03-10 02:30:13,"Hi, +We've forwarded your feedback to our product managers. Thank you for taking out the time to send us your suggestions!",2019-08-10 04:32:12,newest,com.ticktick.task +luiz miguel,https://lh3.googleusercontent.com/a-/AOh14GhBE0oQDS2p1KgxUf4Jln_uZ61TLFEowMl5eBjN3g,Nāo tem a opçāo de sub tarefas,4,0,5.5.1.0,2020-03-09 13:55:04,,,newest,com.ticktick.task +Erick,https://lh3.googleusercontent.com/a-/AOh14Gik8Kift2lk8dSsNdgBycuUSccaUZL6Yu0l8jUCXJ4,Wow they listened. They added links between task which was my idea. Good. If only they could be consistent across platforms. Improve rating to 4 stars just cuz the ticktick team is really trying to be better Aldous allow us to see the changes you make in the app.,4,9,5.5.5.0,2020-03-09 13:34:35,"Hi, sorry for the inconvenience. We'll improve shortcuts consistency in future.",2020-03-02 01:35:30,newest,com.ticktick.task +taeyeon new Yen,https://lh3.googleusercontent.com/-1aUZY-IP80w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNJrLgDlhbfiCKm6qU_qpNeRY5qBw/photo.jpg,Good to use,4,0,5.5.5.0,2020-03-09 06:13:04,,,newest,com.ticktick.task +Sharon Jones,https://lh3.googleusercontent.com/-Mwyj3346bRs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOt1QweBGUVYNKBh5D77Sd2hSW9Mg/photo.jpg,Very helpful,4,0,5.5.5.0,2020-03-09 04:22:16,,,newest,com.ticktick.task +Ajay Kumar,https://lh3.googleusercontent.com/a-/AOh14Gg8N6ueDCz_eR-8xPmChtzbpEwgioAoqLnr887LWA,Very good...it is good to keep as a reminder for personal work.,4,0,5.5.5.0,2020-03-09 02:40:16,,,newest,com.ticktick.task +Abhinav Tripathi,https://lh3.googleusercontent.com/-SZHzzEx5YoM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMAc-1BAxoe5frgllyZ3182PBfvpg/photo.jpg,Easy to use. A direct link with other apps(Google calendar/ outlook calendar) would be a great add ON.,4,0,5.5.1.0,2020-03-09 00:29:16,,,newest,com.ticktick.task +Hamzah,https://lh3.googleusercontent.com/a-/AOh14GhG50VFVehFUrmJHx0FmYIu7QiiWeFenTfhNv0pCr8,"I decided to update my review because the Tick tick team doesn't want to implement such a simple feature as 2AF protection. Many users asked then since 2018, but they use the same ""excuse"" every time: ""Our dev team hasn't such plan in my for this year."" Hello, it is 2020, the application that stores so much sensitive data, there must be 2FA.",4,0,5.5.1.0,2020-03-08 12:29:04,,,newest,com.ticktick.task +Jatin Gondaliya,https://lh3.googleusercontent.com/-23rxQMTRb2k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOXnByH9FsJLkmlK-SqYxsl2EWhsA/photo.jpg,jordar,4,0,5.5.1.0,2020-03-08 11:34:51,,,newest,com.ticktick.task +Dawn Marie Melius,https://lh3.googleusercontent.com/a-/AOh14GgVwo6PUYFg_LVn4PG4q2yAYmLoqX20gsFCYVw6o-o,"Great addition to having a calendar. I can set text reminders for To Dos from here so I don't have to clutter my family's digital calendar with details for my days. Took a while to get how the app and folders work, but I have a good system set up now.",4,0,5.5.5.0,2020-03-07 13:01:48,,,newest,com.ticktick.task +F Z,https://lh3.googleusercontent.com/a-/AOh14GjLOFag_jdjoLpJvQS6FQLW_lvQEMZtOZYl9-fLww,"Great App, reliable and useful, however would be great if the kanban view was also available on mobile :) other than that I'm very satisfied with the app 👍",4,0,5.5.1.0,2020-03-07 10:43:26,,,newest,com.ticktick.task +James W. King,https://lh3.googleusercontent.com/a-/AOh14GiC1kf5W5-WRV9YF5fnwSqDdjN2-flb_PiCw2v3-g,"Great application! I use it across all of my platforms, seamlessly. Keeps me organized for my day to day, week to week, month to month, and year to year tasks. I can attach documents, pictures, etc for all tasks which is very useful. Before TickTick, I used Toodeldo. It was okay, but TickTick is just leaps and bounds better than Toodeldo. If you want and need organization in your life, TickTick is the application for you!",5,73,5.5.5.0,2020-03-13 21:06:54,,,most_relevant,com.ticktick.task +Wayne Hynd,https://lh3.googleusercontent.com/a-/AOh14GhdMYCHYeafauxOP-Lw3U449uDXIeZAixnXsx2dRBE,"OK, I've finally found something to replace my beloved CloudCal and CloudTasks, which seem to have been abandoned, as the dev is communicating NOTHING to customers. TickTick, has a similar not that steep learning curve, but, once you catch on, it is fast, flexible, efficient, and gorgeous (I run the Dark mode.), which is actively updated. My new ""go to"" task manager and calendar. Great job, devs!",5,1,5.5.6.0,2020-03-27 22:31:40,,,most_relevant,com.ticktick.task +Marcelo Brandalero,https://lh3.googleusercontent.com/a-/AOh14Gil_5VQYp3EhJA61sfg1Bnm4iG9jRLbpxeVOvEIRA,"Best to-do app I have used. It offers most of the features that other similar apps also offer, in a very simple user intefface: organize your tasks into lists, use tags, create smart lists, use two-way sync with Google Calendar. Finally, what makes it Excel over the competitors for me is that it also works as a daily/weekly planner, since the calendar view allows to drag and drop pending tasks into the day/week and also schedule start and end times for each task.",5,4,5.5.6.0,2020-03-29 06:15:24,,,most_relevant,com.ticktick.task +Robert Magio,https://lh3.googleusercontent.com/-wZ88UtNd8sc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOm17RrQ1lVDEtIy9zChEGLClGcDw/photo.jpg,"Just got the app about a week ago after downloading and deleting multiple similar apps. TickTick works great, haven't had any problems with the app and it does everything it says it will do without asking you for additional money to use what was advertised as one of the features. This app has really helped me get my life more organized.",5,0,5.5.6.0,2020-03-31 15:35:19,,,most_relevant,com.ticktick.task +ArTeMiCh,https://lh3.googleusercontent.com/a-/AOh14Gg1RRAs-COb727j21rcqX_V6AUTvvSidu6L_lyas-8,Wow! I tried many apps like this. And in my experience this app is the best one! So easy to use! After other apps with too many options and not understandable design this app is perfect! You just click '+' and enter the name! That's all! Of course if you want you can add time and date and something else. I recommend!,5,0,5.5.6.0,2020-04-03 00:23:26,,,most_relevant,com.ticktick.task +Jason N. Footman,https://lh3.googleusercontent.com/a-/AOh14GirD1doCAJybZytj4ScuvM4wCGstVN7h8STrxVQqg,"I'm not usually one to advertise, but SERIOUSLY, if you are looking to be more organized with your daily, weekly, monthly, yearly, or random TASKS, then Tick Tick may be right up your alley. I downloaded it about a week ago as a suggested upgrade from the GTask Tracker app (which I liked a lot) and I absolutely love this app, for real!!",5,47,5.5.5.0,2020-03-18 13:27:46,,,most_relevant,com.ticktick.task +Ethan Porter,https://lh3.googleusercontent.com/-pdDjnKf54m4/AAAAAAAAAAI/AAAAAAAANtQ/AAKWJJMA1TRdcJP4-3VXRpg1K4H5uMyMtA/photo.jpg,"Has every feature I could ask for in an app like this, and it's all executed perfectly. Leagues better than any of the other options. I do feel like $30 a year is steep for premium, though. For new users, know that premium is by no means necessary; It just gives you a little more capacity for random operations and unlocks some convenient functionality.",5,14,5.5.5.0,2020-03-12 17:09:52,,,most_relevant,com.ticktick.task +Cam Slice,https://lh3.googleusercontent.com/a-/AOh14Gim17djTbcTnBavGfuOczh1iw4acZZLqNv1ol-icg,"Well designed, simple, yet powerful task list app. Has a great web app too, which works beautifully in tandem with the smartphone app. Use it on a daily basis and has also proved to be the best place to consolidate all my other lists (you know, the never ending list of lists that seems to keep growing...)",5,1,5.5.5.0,2020-03-21 04:17:38,,,most_relevant,com.ticktick.task +Malik Rahman,https://lh3.googleusercontent.com/-Y3sLbr_wM6U/AAAAAAAAAAI/AAAAAAAAAJM/AAKWJJPMukyJ1ETBoo9D2Yvyb0poCpshiA/photo.jpg,"The dream Task/Reminder app I have been looking for, and looking for a long time. UI, facilities, features are just amazing. Hopefully they don't ruin it by adding and updating it with pointless, unasked for features like so many other apps! I'll enjoy it while it's good! Also, please don't over saturate it with features like Essential PIM, was good at one point but now it's full of bugs and absolutely dire.",5,0,5.5.6.0,2020-03-29 13:38:40,,,most_relevant,com.ticktick.task +James Nicolson,https://lh3.googleusercontent.com/-A7y9k_XSOw8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM2V_NyFQVh4HvwM-xgz87m7fBuCw/photo.jpg,"Looked for replacement to wunderlist, found a much much better alternative. Ticktick is absolutely fantastic. Does everything wunderlist did, or I needed it to do, but much better. Built in integration for transferring wunderlist data over makes it so easy to start using and the layout and functionality is much more polished than wunderlist. Would highly recommend.",5,0,5.5.5.0,2020-03-14 16:02:35,,,most_relevant,com.ticktick.task +Ihuoma Okpara,https://lh3.googleusercontent.com/a-/AOh14GhnGeBiO7XE9FI1LeFTq7Pv6PRNFscigPKZdLj8uQ,"Beautiful UI/UX design. Very easy to navigate and the developers keep adding useful features. If you're looking for an app with a to-do list feature and a pomodoro timer, TickTick is a great choice. I don't use the premium version and so far, I've still been able to access a lot of features. I highly recommend this app.",5,1,5.5.6.0,2020-03-27 16:34:34,,,most_relevant,com.ticktick.task +Devin Deatrich,https://lh3.googleusercontent.com/-Nz51A1WymlU/AAAAAAAAAAI/AAAAAAAACiE/AAKWJJMtZ7AvJPuubdZR4ZoOj8xGIaJCMg/photo.jpg,"It's a very good planner app. I had scoured the play store for dozens of planner apps, but none of their free versions were worth my time. This free version is entirely great on it's own and without any ads. However, if you're a student as I am, the duration feature for tasks on the premium app is definitely worth the $2.99 a month",5,0,5.5.6.0,2020-04-01 21:21:26,,,most_relevant,com.ticktick.task +Bill Butler,https://lh3.googleusercontent.com/-zGV59B81a7c/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO5BmIe9zC9X2JTXSmro3fklNd_aQ/photo.jpg,"I was a longtime Wunderlist user, and briefly switched to Microsoft ToDo after I found out it was going to be gobbled up by Microsoft. After realizing that everything had to be within the Microsoft world to take advantage of full ToDo functionality, Iditched it and discovered TickTick. I would have used TickTick from the get-go if I knew it existed! This is an awesome app.",5,0,5.5.5.0,2020-03-15 17:22:28,,,most_relevant,com.ticktick.task +R. Aziz,https://lh3.googleusercontent.com/a-/AOh14GilAKVE-w5iC-NpzbBvAX07Ebq1NMB04h3SB1By9ic,It has everything I need. Seemless synchronization across devices. Habit Tracker. Dark Theme. Calendar. And a whole lot more! I'm usually not a fan of paying monthly for a to-do app but this one is so well made I don't mind paying $2.99 monthly at all. Hoping to see some more themes in the future. :),5,17,5.5.6.0,2020-03-29 06:11:47,,,most_relevant,com.ticktick.task +Gor Sargsyan,https://lh3.googleusercontent.com/a-/AOh14GjmLmwzusClPpS6lH0uetcA3Q7zqP9kVuAWtVQMuA,"I've tried many productivity hacks, tools, and methods. This app is something that has stayed consistent throughout. It has everything you need in one place, no ads, and the pro features are for things that are extra, like for a company or team. My favorite part is how much you can customize every to-do list, folder and sub-folder to go with your personal style of working. Definitely worth downloading.",5,31,5.5.6.0,2020-03-26 05:36:17,,,most_relevant,com.ticktick.task +Enoc Estrada Avila,https://lh3.googleusercontent.com/-3P9G29Sj9vA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMTYso-3yOOuFIeVUO7UYNmZgiMYQ/photo.jpg,"This app is amazing! I use it for many tasks that are continuous and I mostly don't remember and it keeps me up to date with those tasks. I did have an inconvenience with the pomodoro timer being cancelled at the middle of it, but I do not use that feature a lot so I still give it a 5 star review",5,0,5.5.5.0,2020-03-20 21:31:57,,,most_relevant,com.ticktick.task +Paul Princewill,https://lh3.googleusercontent.com/-GG12Z-p86u8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPq6JTZJDjPyA5gVwlCc8rwyQJjRQ/photo.jpg,"I love the fact it covers different and very specific areas I need for my productivity - a daily task schedule with sub tasks - a calender to plan my roadmap, project lists for my work and to collaborate with my team, even assign tasks to them, and just recently, the new daily log in the habits is really helping me form new habits. I love the fact that most of the important features are free, it makes it easier to work with my team without them using premium like I do, and they learn it easily",5,0,5.5.5.0,2020-03-30 07:36:05,,,most_relevant,com.ticktick.task +Kareem Wagdy,https://lh3.googleusercontent.com/a-/AOh14GgRpos9ApyitXL5_ZkT-Pq1jaZinTbAEAeE2jqOZg,"I like this app so much. It's user interface is simple and easy to use. In addition, it's a versatile app as it combines the features of many different applications, for instance, it's a to-do list, pomodoro, and a habit tracker. All in one. It has helped me alot to organise my life and I really appreciate it, so it deserves the 5 stars. I recommend this app to everyone.",5,14,5.5.5.0,2020-03-23 21:37:20,,,most_relevant,com.ticktick.task +Margaret Wilson,https://lh3.googleusercontent.com/-Rg2P1saFIFk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMWH6qibQcwSRQRejoIRm_rZpFk-g/photo.jpg,"I love this app! I can set times, and my tasks will appear in that order. I can set several reminders. When I click Done, the task goes to the bottom under Completed. The app keeps track of my productivity. I like that I can group my tasks in categories. I especially like that when I click on the date, all of my tasks automatically appear. I don't have to be overwhelmed by how much I have to do. I just take 1 task at a time. There's even a Promo timer embedded to help me stay on track.",5,19,5.5.6.0,2020-03-29 13:45:53,,,most_relevant,com.ticktick.task +Leonie Duncan,https://lh3.googleusercontent.com/-mb1MpKQAC2o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPbLOpmn2xm9RL1aDDy_6WwB74CCw/photo.jpg,"The most intuitive app ever! Over the years I've tried numerous self-management techniques and apps, but this is the best by far. I love that it combines so many personal productivity functions in one, including Pomo timers, Kanban boards, habit tracker, smart reminders etc. Best by far is the minimalist, flexible calendar. The devs have done an incredible job! Update: Months later and I still love this and use it daily :)",5,3,5.5.5.0,2020-03-21 15:51:22,,,most_relevant,com.ticktick.task +C.N. Allotey,https://lh3.googleusercontent.com/-sozoU-9bFWc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNyBf7FJRBUutiFg20o3tKIqLi1Ng/photo.jpg,"Phenomenal experience. It has everything I need including the ability to schedule recurring tasks which is something I was especially looking for in a to-do app. Happily paying monthly for this it has really helped. Though there are other habit tracking apps that I really like right now, I am also trying out their habit tracking feature",5,4,5.5.5.0,2020-03-12 23:22:12,,,most_relevant,com.ticktick.task +Chris Spizzirri,https://lh3.googleusercontent.com/a-/AOh14Git3OCi3cBFpmmJIIoI1cSFn3V8T-Fdgg-VBNoqW9Y,Needed a replacement for Wunderlist. Looked at several disappointing options before finding TickTick. It has everything I liked about Wunderlist plus it has nice extras like formatting in task notes and it lacks some of Wunderlist's annoying behaviors. It also did the best job importing from Wunderlist. The best alternative to Wunderlist. Period.,5,0,5.5.5.0,2020-04-02 18:11:41,,,most_relevant,com.ticktick.task +Palms Galore,https://lh3.googleusercontent.com/a-/AOh14Gigk8l_taK3bF1jUo-z9HCogsk2BGwSughkuHwNNg,This was fantastic for my daily workplan. So easy to do. I was up and running after 10 minutes. Very easy to edit like move tasks to next day or another date if not complete. You can add real time to tasks helpful for setting up order of priority on list. You can select those tasks that repeat and set them up. It has an alarm reminder My husband downloaded it and can do many org things too. Get it.,5,6,5.5.5.0,2020-03-23 19:26:53,,,most_relevant,com.ticktick.task +Dan Barns,https://lh3.googleusercontent.com/-PgytUk1L9Zg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJORYMrwqjw1onsh9WFloQL66Ct_jQ/photo.jpg,"It's very good. Works on mobile and PC and it's easy to organize, you're able to nest lists, and it's easy to move them between lists or between different days. Several different options for viewing your tasks, by category, by priority, or by day or week.",5,0,5.5.6.0,2020-04-03 14:39:18,,,most_relevant,com.ticktick.task +Amber R.,https://lh3.googleusercontent.com/-pmB7y5OlxOI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNxGXDbOFURHwk2JTk2LGX2PUfBUQ/photo.jpg,"I'm a teacher and there are so many little things to do that pop up unexpectedly in my work. TickTick has helped ease the mental load of remembering them all, and it's more useful than a paper list as your phone is always handy. I think I even sleep better because I have less stress about keeping up with tasks. It's easy to reschedule tasks that you don't get to on a given day. I also enjoy the habit-forming function!",5,0,5.5.5.0,2020-03-13 00:43:38,,,most_relevant,com.ticktick.task +Stacey Shay,https://lh3.googleusercontent.com/a-/AOh14GiE4g37v9KVsqILjwqD1EoOCAPWIcHAgDUFjK46cg,"So far so good! I've used other reminder apps. With ADD I have to have reminders of nothing would get done. This one let's me snooze the stuff I want to procrastinate on. Or if I need to be annoyed by the reminder, I can do that too. All around good app.",5,0,5.5.5.0,2020-03-22 22:42:31,,,most_relevant,com.ticktick.task +Janesse Leung,https://lh3.googleusercontent.com/a-/AOh14GjX8a33CVpgGWADAq2Zg36D5riCyGjuq3nihcSpIw,"Really helpful for daily scheduling, lists and calendar, and nicer look than competitors. Habit function could be smoother and stickier, with timed reminders and a quick check box like the tasks plus a visual of the streak -- don't need two steps and a graphic every time I take my vitamins.",5,1,5.5.5.0,2020-03-26 08:01:08,,,most_relevant,com.ticktick.task +Erin L. McCoy,https://lh3.googleusercontent.com/-8Py1eoCHb2I/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOquF1K4NBGICHhY_qBgto1YAhovg/photo.jpg,"Absolutely replaced Wunderlist, for me. Devs are responsive to suggestions. With one or two extra features (richer data for pomodoros, a handful of 3rd-party integrations to handle automated tasks), TickTick could replace several other apps I use, too. Love it.",5,0,5.5.5.0,2020-03-22 16:01:00,,,most_relevant,com.ticktick.task +Jira Amancio,https://lh3.googleusercontent.com/a-/AOh14GgUUisL1NUlxYr0frqn06ckXvPAcsoLRK0oJl8A,"I have been using this for a long time now and it's really useful for me especially when I need reminders to do certain things on a daily basis, or weekly. Though it can get annoying when you're doing something and it pops up but overall, it's an app i recommend!",5,0,5.5.6.0,2020-04-03 01:04:22,,,most_relevant,com.ticktick.task +Jacob Evan Shreve,https://lh3.googleusercontent.com/a-/AOh14GgVY59ZlP1mHnCWTEe__wmwaF0Hl3W8q_CkoyV8KQ,"TickTick is complex enough that it can handle all the things I need to dump out of my brain, but simple enough that it gets out of my way and causes very little friction. It's a well polished app and offers quite a lot in the free version.",5,0,5.5.5.0,2020-03-23 06:03:14,,,most_relevant,com.ticktick.task +Jeremy Gerritsen,https://lh3.googleusercontent.com/a-/AOh14GhVMJSaCua7JXwn_KE-YdNQvBpb5cEo3isdSBfQ4dU,"By far the most streamlined and easy way to keep my tasks organized and clean, all in one place! I love the compatibility with Google Calendar. It's so simple and not as complicated as some other reminder apps. It just works.",5,0,5.5.5.0,2020-03-18 15:09:18,,,most_relevant,com.ticktick.task +ahmed abouzaid,https://lh3.googleusercontent.com/a-/AOh14Ggr3TSkhPwEXrptcUy98AbLc4AcCPfCy6DozBzGCg,"An amazing all in one; to-do list, pomodoro app, calendar app, habit tracker... I have made a video about it and all the people who have tried it, were impressed by it. I just love it. ❤️. Thinking truly about purchasing the full version.",5,1,5.5.5.0,2020-03-18 18:41:05,,,most_relevant,com.ticktick.task +jovi thurston,https://lh3.googleusercontent.com/-knCt4DUBcgA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPa_NX8cglKS0thG5YJ29_ALUq_ng/photo.jpg,"I really like ticktick, i have a decent memory but as a day goes on there is always something missed. I always set a task if i know it needs to get done amd and its done. Not to mention i have never had a single issue with the app not working.",5,0,5.5.5.0,2020-03-23 17:34:04,,,most_relevant,com.ticktick.task +Charlie Victoria Taylor,https://lh3.googleusercontent.com/a-/AOh14GjbgEEZvZYuVYiau7hC-75KsEG6s4lhei1aJONqcg,It has everything I wanted! I really love the habit integration and at first I didn't know you could back date habits but you can so now I am very excited to use this app long term and see how it goes. Beautiful design too!,5,0,5.5.5.0,2020-03-20 02:37:01,,,most_relevant,com.ticktick.task +Erik Schick,https://lh3.googleusercontent.com/a-/AOh14Gh6Vb6solMZC7gNY5jFPxbl2h_SFw0fH41uQG73pg,"I was a Todoist Premium user (loved Todoist) but the calendar view and list folders converted me over to TickTick Premium. I prefer TickTick's UI, widget, and task entry as well. If you like Todoist you'll like TickTick, but TickTick has some extra polish in places that I appreciate.",5,0,5.5.5.0,2020-03-15 17:10:02,,,most_relevant,com.ticktick.task +Matt Temple,https://lh3.googleusercontent.com/a-/AOh14GgguyxVdD8VC-lpXtWj9-CkWRfR77sUqyKYFhIq5Q,I used to use Todoist for years but after switching to Windows for my computer I realised how onesided their platform is. Ticktick is a great all rounder with all features available on all platforms and that makes it worth the subscription and 5 stars for me.,5,0,5.5.5.0,2020-03-16 03:41:32,,,most_relevant,com.ticktick.task +Joseph Hindy,https://lh3.googleusercontent.com/a-/AOh14GhlqcS_lnqGVA2d8JaNN6uCa0oaaosOPWtzwTFQp30,"After Microsoft announced the end of Wunderlist, I started using this app because of its similar UI and organizational capabilities. Been using it ever since with my girlfriend. Works for everything I need it to work for.",5,0,5.5.5.0,2020-03-13 18:42:01,,,most_relevant,com.ticktick.task +Kawshik T,https://lh3.googleusercontent.com/a-/AOh14GifOw0tGco4AVwrBSB35ALmvX45vhjt3EQTgasYsA,Just about the best when it comes to getting organized and planning your day to day tasks. Love having the option to collaborate with others and the Pomo timer is a real plus to stay focused on a specific task.,5,0,5.5.6.0,2020-03-25 06:43:28,,,most_relevant,com.ticktick.task +Varun Vaibhav,https://lh3.googleusercontent.com/a-/AOh14Gj3hmIxBxXbZ1LBzWdJDP1DDpHWtqnLGSbKPlFgnJ0,"This app is exceptionally great. I wanted to shift on Google tasks due to it's integration all over the place but this app is also cross platform compatible. TickTick is 1-2 steps away of being the ultimate app for daily task, habit management tool.",5,0,5.5.6.0,2020-04-01 00:13:50,,,most_relevant,com.ticktick.task +Mohit Gaur,https://lh3.googleusercontent.com/a-/AOh14GhuleZtwM0VZhWHKsiwsY37uFF-WrRX7RDbjmA-,This application is the best for to do task. I think it is more than you expect it will fulfill your all requirements. it has most creative function that you haven't imagine. Thank you so much developers.,5,0,5.5.5.0,2020-03-22 04:28:27,,,most_relevant,com.ticktick.task +Michael McAdam,https://lh3.googleusercontent.com/a-/AOh14Gi3I5p79DV_NcU7vzRYUUK9hcP0JdztquxrFm0MVw,"Genuinely I have tried a bunch of different to do apps and this one is by far the best. Genuinely has every feature that you'd want, you can organise things in so many different ways. Big props.",5,0,5.5.5.0,2020-03-20 05:03:06,,,most_relevant,com.ticktick.task +Oļegs Kurovs,https://lh3.googleusercontent.com/-P-Nr0A0S_hg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNdyvFMzwjffpkomFsWpCIsIgz35A/photo.jpg,"This is a really good app! Feature-rich free version, notifications work perfectly, several widgets to choose from, lists, and ability to share lists with other people - what else can i wish for?",5,0,5.5.5.0,2020-03-13 15:46:55,,,most_relevant,com.ticktick.task +Martin Barringer,https://lh3.googleusercontent.com/-rnY3214N4kw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO8VbPQtL8ifglLD4hA0UKsPgVXng/photo.jpg,"Still exploring the features but excellent and by far the best of the todos I've looked at. Addendum: having been using the app for a few months now, I can thoroughly recommend. Does everything that I need.",5,0,5.5.5.0,2020-03-16 22:14:44,,,most_relevant,com.ticktick.task +Nathaniel Jones,https://lh3.googleusercontent.com/a-/AOh14Giln7DG8Iv5pKXWb-RfkbHoYjcHmrxa53-WThSf,"Free version limits you to 9 checklists, but ad-free, intuitive and extensive functionality are totally worth it. Best feature IMO is shared lists and ability to assign tasks to certain people.",5,0,5.5.5.0,2020-03-16 01:37:23,,,most_relevant,com.ticktick.task +Noel O'Shea,https://lh3.googleusercontent.com/-y3uSP_QyoHI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN9gQBFlYdShpkc66x7VaCz_9s-xQ/photo.jpg,"Just does everything it should, allows you to configure alot but all the defaults are good, syncs across many platforms and allows you to email tasks. Much better than todoist and feels like wunderlist on steroids.",5,0,5.5.5.0,2020-03-24 22:19:20,,,most_relevant,com.ticktick.task +Jijo Punnoose,https://lh3.googleusercontent.com/-MADuwosQGx8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNdk5BKnD0Y9KBHLkbkLWaGiCPCFQ/photo.jpg,One of the best to do app in playstore. This combines the strength of GTD & pomodoro and lot of customization options. Hats off to the developers! You guys have really added value in my life through this app. Thank you.,5,0,5.5.5.0,2020-03-16 10:00:31,,,most_relevant,com.ticktick.task +Jackson Corson,https://lh3.googleusercontent.com/a-/AOh14GhHYyNKeFobhQbly3-PujyLCGUDe7oUGGurb_52,Best Todo list/Organizational application I have found. I have tried many different apps like this one before finding ticktick. It's proven extremely useful for organizing my day to day tasks and chores.,5,0,5.5.5.0,2020-03-12 15:59:02,,,most_relevant,com.ticktick.task +skye bo,https://lh3.googleusercontent.com/-gxJWtq4lDGo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOndKbemqVPwaML_-JbxY_IfOoU3A/photo.jpg,so far? best alternative to Wunderlist I've found. works for my brain. great features. ad-free. synch. thank you to the developers for making all essential features free.,5,0,5.5.6.0,2020-03-31 14:24:27,"Hi, could you send a feedback to us in TickTick? We'll follow us this issue asap. Sorry for the bad experience.",2020-03-31 12:03:15,most_relevant,com.ticktick.task +Wei Kang Ho,https://lh3.googleusercontent.com/-Noq21SrSyzA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPHSNM2YlrXW82_YY1A9IsY0rgPkg/photo.jpg,"I think it serves the purpose very well, as a ToDo list, with reminder categories functions. User interface is user-friendly too. Thanks!",5,0,5.5.5.0,2020-03-20 11:06:14,,,most_relevant,com.ticktick.task +Brandon Allbritton,https://lh3.googleusercontent.com/a-/AOh14GhhNQwXwHAKTMK8hPgf1JW15FapBk8trQXxqmqSpg,Love this app. Very easy to use and has a great system of organizing tasks. Also the reminders are very helpful. Basically vital to my college experience.,5,0,5.5.6.0,2020-03-30 03:50:48,,,most_relevant,com.ticktick.task +Jordan P,https://lh3.googleusercontent.com/a-/AOh14Gi_wTIKjfpv4oAv_fV7dUMkL8bQKLg4De5eM1KE,"My life is a million times more organized with TickTick. I just wish that they'd do a one time payment rather than subscription, but I'm sure they've done their market research. Love them!",5,0,5.5.6.0,2020-03-29 23:00:32,,,most_relevant,com.ticktick.task +Jason Ward,https://lh3.googleusercontent.com/a-/AOh14GgR5PSCH0XAQW31WbnUNbo-0O09h4hzYK2yc6OVgw,"The app I was using before was closing and changing into something else. So I did some research and this was very popular. Rightly so, as I prefer it to what I was using before. Great app",5,0,5.5.6.0,2020-04-04 11:20:22,,,most_relevant,com.ticktick.task +John Harper,https://lh3.googleusercontent.com/a-/AOh14GgDWLQ17ozRhywfmYmaeiOcaYOzvBdAwZV24svGfA,Just a awesome app!! Update: This app has really helped with my adhd! Still love the app. Now if I could do email from it. It would be the best app I have ever downloaded.,5,0,5.5.6.0,2020-04-02 22:43:05,,,most_relevant,com.ticktick.task +It's my world now e-e,https://lh3.googleusercontent.com/a-/AOh14GjBKoPKg_0E6yNSSdDRYyy7fxFoLk4fHx3MEdwx8w,"This app has helped me organize my life and start habits that I've always been wanting to. Also, it has a pomo timer that helped me get many projects done. Great app!",5,0,5.5.5.0,2020-03-14 15:56:43,,,most_relevant,com.ticktick.task +Pamela Dobson,https://lh3.googleusercontent.com/a-/AOh14GjXM_wOM-H5EuilfBMH4EpmJ26wO2-NT0qxwxP1VQ,The free version is all I need. It synchs with my calendar & offers alarms and reminders. Very easy access through the notification screen--one of its best features!,5,0,5.5.5.0,2020-03-18 17:03:04,,,most_relevant,com.ticktick.task +J Neb,https://lh3.googleusercontent.com/-gj38lY49vKI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOKyNUjQkOI2x8r6RYw3ed4Gh5rBQ/photo.jpg,"Great way to track tasks. Reminders, priorities, repeating tasks are hugely helpful to keep me on top of what needs to be done.",5,0,5.5.5.0,2020-03-16 13:39:40,,,most_relevant,com.ticktick.task +Unadostre_ W,https://lh3.googleusercontent.com/a-/AOh14Gj52wOHnCn6No2c4bgG8Tt1A5EMyE7iJ9Ui2oG60w,I use this app as a recommendation from some writer in Medium. I've been using for a month and it's amazing. I can plan and complete all my tasks!,5,0,5.5.6.0,2020-04-03 00:27:36,,,most_relevant,com.ticktick.task +Amane Nixen,https://lh3.googleusercontent.com/a-/AOh14GiLJ5KnwcdjLY6Fv3BLi6kfZve6Ds1DoD2Rf36U,"I love the app, it's simple and efficient, with a smart interface that easily organizes my day. Support and Response is also quick and helpful.",5,0,5.5.5.0,2020-03-12 12:54:09,,,most_relevant,com.ticktick.task +Brent Edwards,https://lh3.googleusercontent.com/a-/AOh14GgH8iiZxN2X2C-f7yAnZ0L48GsDARj0JZB8ayW3ZQ,Total game-changer. No glitches on the mobile version. Excellent filtering capabilities. Used it for 270 straight days and counting,5,0,5.5.5.0,2020-03-12 22:14:24,,,most_relevant,com.ticktick.task +Halee Legge McCoy,https://lh3.googleusercontent.com/a-/AOh14GiiowzFSZg0uRdbdmikxJ1kPEG9GU8TPMbM6JbOMA,"So helpful. Great way to keep track of tasks, notes, info, and appointments! Appreciate the cross-platform functionality ☺",5,0,5.5.5.0,2020-03-17 13:39:18,,,most_relevant,com.ticktick.task +Pax Michelena,https://lh3.googleusercontent.com/a-/AOh14GgMVkEBiAoPGYLcbK3xyL0DW_8fdPC9yxfOjCJ__g,"Excellent! Plan your day by the hour! This is what I've been looking for for years. Also, tick tick supports some amazing, innovative widget modes.",5,0,5.5.5.0,2020-03-12 00:45:59,,,most_relevant,com.ticktick.task +Risha Tresyani,https://lh3.googleusercontent.com/a-/AOh14GhfvJIjqyxfG8BoWoJeQ2y_IETF-x85NJ9M2mIgFg,So easy to use. Really help me who's such an untidy person. There's a pomo and really help me to count how much time that I've spent in one session.,5,0,5.5.6.0,2020-04-03 06:34:42,,,most_relevant,com.ticktick.task +Olivia Cole,https://lh3.googleusercontent.com/a-/AOh14GggmTWfNXf8v2X7O4WhWzVKKEbpWQhN6z5zjxuPnA,Love TickTick. It's the perfect organization tool for me. So well designed and has all the features I need. Well done!,5,0,5.5.5.0,2020-03-15 18:54:28,,,most_relevant,com.ticktick.task +Kent Riley,https://lh3.googleusercontent.com/-cSfnYfiUXpc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMsI7kNeNsbuuNX-IvLZiGDEPvusA/photo.jpg,Love this app. My favorite part is the helpful and intuitive snooze feature on tasks. Quick preset time ranges or ability to get specific make reminders easy to manage.,5,0,5.5.6.0,2020-04-02 06:15:19,,,most_relevant,com.ticktick.task +Josh Waddo,https://lh3.googleusercontent.com/-wzM-0B1VgGw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNCpexVgHnTNX5ZmrJs_rKXbALvag/photo.jpg,Tick Tick has been very easy to use and very handy. I use it for both business and personal use and find it very easy to collaborate lists with other people and create lists,5,0,5.5.6.0,2020-04-01 21:28:02,,,most_relevant,com.ticktick.task +korteks visceralzen,https://lh3.googleusercontent.com/a-/AOh14GjBR5UBQ3E70Ka5cBbKfO-D5DR52bksZ1osQab9uw,Actually... It's pretty darn good. Yes you pay a subscription for full functionality but if you have a lot of projects and other stuff to track it's worth it. I also have to say that I love that there is a nice Chrome extension/widget (whatever)... so nice to be able to work on the desktop as well. Yes OneNote is good but honestly TickTick is much much better for tracking tasks with due dates IMO. Cheers!,5,7,5.5.5.0,2020-03-12 03:50:59,,,most_relevant,com.ticktick.task +Jonelle Chapman,https://lh3.googleusercontent.com/a-/AOh14Gjri8AJ9pCRoY53g53Ks6FQCjEdomzFD0Wx4GRUCA,Helps me at work soooo much! Perfect program. Can't think of anything that would make it better. I'm a type A list maker. Love it!,5,0,5.5.5.0,2020-03-13 01:31:37,,,most_relevant,com.ticktick.task +Shinchan : Asahi,https://lh3.googleusercontent.com/a-/AOh14GjQV_a0JruPXfyNPXJ_CBHCNYxDUlrqFaRl5kLYFg,This app is actually good for daily routine. Things which I like :- 1. UI 2. Optimization 3. Functionality 4. Dark UI 5. No Ads 6. No charges,5,0,5.5.5.0,2020-03-13 06:36:17,,,most_relevant,com.ticktick.task +Ambati Sai Kalyan,https://lh3.googleusercontent.com/a-/AOh14GhSWUZV-_pmPzOnR2LndLg3WKeR80RfmkDg3FualA,Such an incredible app made my life well organised well Handful notification settings are pretty good i think you really don't need the pro subscription and if u use it alot then u can go for it for students like me its pretty much get the work done,5,0,5.5.6.0,2020-03-25 12:35:48,,,most_relevant,com.ticktick.task +cesareo gutierrez,https://lh3.googleusercontent.com/a-/AOh14Gi-NntTi2lCdLaztY2d5Jf7zrdrK5grNSK4YIt1dxE,"Pretty good so far. It does just what I need. Widgets, attachments, small line below the main description,... I just miss the undo feature the free version had.",5,0,5.5.5.0,2020-03-12 01:58:43,,,most_relevant,com.ticktick.task +Jane Todvayler,https://lh3.googleusercontent.com/-XxZLZoMbwy4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOY9k1-lYemvFf6ccKrMhULSxjQkQ/photo.jpg,Perfect! A Calendar with the opportunity to create notes for everyday or other notes on the side. I just love it!,5,0,5.5.6.0,2020-04-02 18:39:08,,,most_relevant,com.ticktick.task +Alex Kruger,https://lh3.googleusercontent.com/a-/AOh14Gg2tCvlQ3YeFa-dNahfHDusZ8tS6rvCzQec5AlGNg,"Fantastic task list for personal and teams, calendar, pomodoro timer, and habit tracker. This one app does pretty much everything, it's fantastic.",5,0,5.5.5.0,2020-03-18 02:29:45,,,most_relevant,com.ticktick.task +Govind Rao,https://lh3.googleusercontent.com/a-/AOh14Gi9NR4EVfpoyrR0qinbk725u7HPH9xNtV4BteEk5A,One word to describe this app is AMAZING. Ultimate app for to-do and habit tracking. After many years a single app has impressed me so much. Highly recommended 👍,5,0,5.5.6.0,2020-04-04 13:38:07,,,most_relevant,com.ticktick.task +MANISHA CHALAMALASETTI,https://lh3.googleusercontent.com/-BIspeyDwJp0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO6jYE5ATWX-7_7etVlKcRGqgS5eQ/photo.jpg,"I get notifications on time, and this app has various features, including pomodoro, all in one. Super happy with the present.",5,0,5.5.5.0,2020-03-14 05:21:56,,,most_relevant,com.ticktick.task +Molly Kieper,https://lh3.googleusercontent.com/-6hrUkI7C8Rw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNGfkwwBBt8sOcE2pnxUIIo9jfztA/photo.jpg,"Simple and intuitive. I don't even know for sure how long I've been using TickTick, but at the time I tried multiple free to-do list apps, and this one was by far my favorite. It allows my tasks to auto reset on a schedule of my choice. I get reminders for the day, but can also set reminders ahead of time (down to a specific time of day if preferred).",5,20,5.5.5.0,2020-03-09 14:21:41,,,most_relevant,com.ticktick.task +Zahratul Kamila,https://lh3.googleusercontent.com/a-/AOh14Gi4WefOoanX1Ex0XZ7VGyK7GBQxRNgDZuh-XwtjAA,Went very well before my payment for my premium subscription can not be proceeded. Please help me fix this issue. Thank you.,5,0,5.5.5.0,2020-03-26 03:38:26,,,most_relevant,com.ticktick.task +Mister Jeff,https://lh3.googleusercontent.com/-D4LR7xsCbnk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN6wOItgwphiNBkCGDWh_QNnASV-w/photo.jpg,"I use the app daily for routine planning and habit tracking. Multi-device app with constant improvements by the developer, the app keeps on getting better",5,0,5.5.6.0,2020-03-28 08:47:58,,,most_relevant,com.ticktick.task +Darshan Ramesh,https://lh3.googleusercontent.com/a-/AOh14GjFZFbxFpX23wHzeGUG1T_NugPHESfmgIDV-ToY_g,Have been using this since 15+ days. A must have app those who focus on being productive everyday. Habit tracker is a big plus. Kudos to the team.,5,0,5.5.6.0,2020-04-02 23:16:26,,,most_relevant,com.ticktick.task +Ara_Lancer,https://lh3.googleusercontent.com/a-/AOh14GheRn0dyh6KRg1GU0W_vm49-eGc6_jDLVdYxQq-2A,Syncs across Android and iOS devices. Can manage tasks and arrange them according to priority and has a file management system for different tasks needed.,5,0,5.5.5.0,2020-03-23 22:41:15,,,most_relevant,com.ticktick.task +Jessica Davis,https://lh3.googleusercontent.com/a-/AOh14GiawQIppzM6cjOY0YOFyDUjJpZUyCc_gPffFo5zOA,"So far, I am in love. This is exactly what I have been searching for to organize all of my todos. The folder feature is the best and I think this will finally bring me into the world of digital calendars. Not to mention the feedback feature is super helpful to instantly get you on the right track with how things work.",5,0,5.5.1.0,2020-03-09 20:59:08,,,most_relevant,com.ticktick.task +Tomáš Hanousek,https://lh3.googleusercontent.com/a-/AOh14GhR01aPhYE-PB6tEUCEXzoodJTcOD9bAiWsKkXaBR8,"These guys rock, I had to switch my rating to 5 stars. Since I pay for premium the app improved a lot. I also tired other well known apps but I think this one is the best right now 👍👍👍",5,8,5.5.5.0,2020-03-21 10:49:33,,,most_relevant,com.ticktick.task +Nigel Sanders,https://lh3.googleusercontent.com/a-/AOh14GgVFqKKo8ZWjNQso3HWOw97Mv8hJMwsw7rlt1wuMQ,"Excelent app, use it daily. Sortable tasks, sortable sub tasks, many reminder options. See only what you need to do today, or this week, or customize date using widget. Paid version is worth it too. I have had the servers go down a couple of times in the last few months, may change rating of it becomes a regular problem.",5,2,5.5.5.0,2020-03-11 00:09:14,,,most_relevant,com.ticktick.task +Joshua Raymond,https://lh3.googleusercontent.com/-TFskr3MgVmM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM-K5-v56eNZtZK-DVE118hgDaFMA/photo.jpg,Super helpful and has definitely increased my productivity as a student. Would have loved to have discovered it years ago. Great job devs!,5,0,5.5.5.0,2020-03-14 14:19:56,,,most_relevant,com.ticktick.task +Lady Valentine,https://lh3.googleusercontent.com/a-/AOh14Ghvm1kgDngyZheUhsZLZnWcFS1-subq832UG8PDCw,I really like this app! It has many options for personal organization and is more helpful than any other app I've tried yet.,5,0,5.5.6.0,2020-03-30 22:12:29,,,most_relevant,com.ticktick.task +Devin Clarke,https://lh3.googleusercontent.com/-ypkpieeGBUc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN8vhF66dRQLaC7XDfbi8gNzwHkYA/photo.jpg,"Nothing better. Not sure how many years I have used this, 5+ years @least, I have tried everything out there, but nothing works as well. First, it's easy. Second, it's minimal, I don't spend more time setting up, organizing, etc. I spend my time doing what I need, not taking time in the app Third, it's every where I need to access it. Is just easy and fast and I particularly love the reminder feature. I used it free for awhile, but have happily had premium for years.",5,7,5.5.5.0,2020-03-07 16:33:26,,,most_relevant,com.ticktick.task +Jeff Harris,https://lh3.googleusercontent.com/-TYIxROjIjXk/AAAAAAAAAAI/AAAAAAAAHAE/AAKWJJNv8VaYmw1mzPcDz_FR1cHSeBtYJw/photo.jpg,"Latest update corrected a previous issue, and developer was very good about replying to my messages. Use this app every day.",5,0,5.5.5.0,2020-03-17 23:53:45,"Hi, could you upgrade to the latest version 5.5.5.2 ? We've already fixed the issue.",2020-03-11 12:59:57,most_relevant,com.ticktick.task +Amanda Rowlands,https://lh3.googleusercontent.com/-GoFJznsA_NE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMVwTwH1MPCFg4yTwMko8GB3NC9cg/photo.jpg,"This App Has Made Our Lives So Much Easier! My husband and I have two kids under 3 which means we have to schedule daycare drop offs/pick up's, packing lists, doctors appointments, prep for soccer/swimming/gymnastics. This app has brought the closest thing to order we can have in our chaotic lives. Our friends have seen how we used it and downloaded the app for themselves as a result. Highly recommend using it as a shared task list with your spouse!!",5,1,5.5.5.0,2020-03-12 13:12:04,,,most_relevant,com.ticktick.task +Thankachan Jose,https://lh3.googleusercontent.com/a-/AOh14Gh_ezMzLZaxZcdAEr4S5mhZjP5yDWN1DRgg1mc1eA,"A very useful app. It helps timely completion of your tasks. Thanks a lot, developers.",5,0,5.5.5.0,2020-03-13 14:30:36,,,most_relevant,com.ticktick.task +Chris Donohue,https://lh3.googleusercontent.com/-OZdHFczxnRA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNGUdmi1Z2V6VgT5kZNqZmqYL_HDg/photo.jpg,"I have used Wunderlist for about 5 years, but now its being retired. I tested and tried 10+ apps since then, and none were that great. I stumbled upon TickTick, and wish I had started using it years ago. TickTick has much greater customization options, and does a great job of incentivizing completion of tasks via feedback. It has made my life much easier. I do wish the widget had options to change how it appears, the ""to dos"" do not have breaks between them.",5,4,5.5.0.2,2020-02-15 01:13:40,,,most_relevant,com.ticktick.task +Chanita Freeman,https://lh3.googleusercontent.com/a-/AOh14GiwJIwi1ecgx1LHQx0TioKcRiSIVa4zqUZKvXpBRA,"I love this app! I can literally organize my entire life with this app and not worry about it. I make grocery lists, set reminders for appointments, create subtasks, and this isal all with the free version. If I need to make other arrangements I can do that with a few adjustments with the date and time. This is the first app I've seen in several years that may be worth the paid version. Just what I need!",5,8,5.5.1.0,2020-03-02 13:24:37,,,most_relevant,com.ticktick.task +Sandro Mantis,https://lh3.googleusercontent.com/a-/AOh14Gh8zbZzCN4TojB1Fnx5hV7brqm_ivS6BP8aL6ez,"There is all-in-one combine. I absolutely excited. All function realized perfectly. ✅ Pomodoro ✅ Tasks, subtusks, folders ✅ Calendar ✅ Availability to see all completed tasks in calendar ✅ Stats ✅ Formated description (numerical lists, bold, headers etc) All I need I have in this app. I little bother about restrictions for free version. Monthly price is high enough for my using case. But nowadays I don't need to buy full version. App is brilliant, I have checked a lot of todo/dairy/organizers",5,0,5.5.1.0,2020-03-07 12:00:55,,,most_relevant,com.ticktick.task +Elisabeth Ness,https://lh3.googleusercontent.com/-q52jP2s7zLg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP8_2khcAPstfCkmNr2GsCnJrS3bA/photo.jpg,"It is not an exaggeration to say that the colorful, customizable, syncable, endlessly-useful TickTick has changed my workflow, productivity, & life. There are some improvements I've hoped they'd make -- the ability to determine an est. amt of time for a task (aside from Pomodoro/calendar); including a habit tracker in the computer software in addition to the phone -- but it's 5 stars even with those elements lacking, and that's why I am a loyal customer who has recommended it to everyone I know.",5,1,5.5.5.0,2020-03-11 17:20:51,,,most_relevant,com.ticktick.task +Adriano Oliveira,https://lh3.googleusercontent.com/-yUw5IgBb8j0/AAAAAAAAAAI/AAAAAAAAB7A/AAKWJJOoayOinNwZdOErPTmpMonVgBP9FA/photo.jpg,Moved to TickTick when Wunderlist announced it would become Microsoft ToDo. I'm loving it so far. Better than Wunderlist. Specially the web app.,5,0,5.5.5.0,2020-03-21 10:50:59,,,most_relevant,com.ticktick.task +Anandadeep Roy,https://lh3.googleusercontent.com/-1f9cGiVF0_k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMwBRK62PgWt10Ee7vzDdyy8lWW7Q/photo.jpg,Incredibly useful app. Very good for making lists. Not that great for habit forming but that's fine.,5,0,5.5.6.0,2020-03-28 22:01:33,,,most_relevant,com.ticktick.task +Aaron La Mattina,https://lh3.googleusercontent.com/-jVj3ZEXOijY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPaJLBn-qwQqa8MOed7yiep9Pvhtw/photo.jpg,"This app does EXACTLY what I need it ""to do""! I love that it integrates with Google Chrome ams synchronizes across all of my devices! 5 stars!",5,0,5.5.6.0,2020-03-28 22:20:47,,,most_relevant,com.ticktick.task +Kelli,https://lh3.googleusercontent.com/a-/AOh14GhDPcZ5OU3Vsp75hOH2FT1fcZ4sltEqN_BY8xNStQ,this app helps me stay organized with my online work during quarantine. it reminds of assignments that are overdue and lets me set priorities for each assignments. really helpful app if you're a procrastinator like i am.,5,0,5.5.6.0,2020-03-31 04:00:55,,,most_relevant,com.ticktick.task +Mike J,https://lh3.googleusercontent.com/a-/AOh14GiYuhTkQ3-u-GLfKwLb70NrDQ1j_uGQ1InCrIj4dg,"This is exactly what I needed. The customizations are really in-depth and very helpful. I opted for the 2.99/mo subscription and so far it's already worth it. It's like a better version of Google calendar. Look at your daily routine and upcoming tasks at a glance. It's super intuitive. Within a half hour I set up my daily routine and upcoming events with absolutely no problems at all. If you're a busy person and need a way to organize your life, this is the app you need.",5,3,5.5.0.2,2020-02-13 05:03:55,,,most_relevant,com.ticktick.task +Oss Silva,https://lh3.googleusercontent.com/a-/AOh14GiZ8WXFbIR6fdKy39rqL3c51QvGQnxLPQE6FFXWoQ,"I could rate this app with 6 stars, it is the best task manager app I've found ever and it is cross-platform, nice work!!",5,0,5.5.5.0,2020-03-23 00:43:47,,,most_relevant,com.ticktick.task +Lyall Mattheus,https://lh3.googleusercontent.com/a-/AOh14GiniitDq_7EMvFppNEoexaT8SdSkbv8Ac1-hIlgrg,"This app is simply the best for organising yourself. It's so customisable, I really love how you can not only set exact times and dates, you can then get those reminders to repeat however you want - do you want to be reminded every second Wednesday of the month? No problem. Do you want reminders only during weekdays? Sure! Also, my love for this app has grown considerably since I found out you can set location based reminders - and you don't even have to pay for it! Fantastic app, A++",5,13,5.5.0,2020-01-19 13:00:21,,,most_relevant,com.ticktick.task +Shahid Malik,https://lh3.googleusercontent.com/a-/AOh14GgB8DfSLXnms8RybTIb8nohZC3iIw1UP8K6tNoe7pg,"Tried a few different apps over 2 years but always came back to TickTick. Works well for me, aligns to me needs and I find it intuitive. I'd recommend, especially since it offers a lot of features which are premium in others apps. Unsolicited advice to anyone looking for a to-do app: there is no app that works best, no one-size-fits-all. Unfortunately you need to test a bunch and decide which works best for you.",5,13,5.5.1.0,2020-03-02 10:42:12,,,most_relevant,com.ticktick.task +Alok Somani,https://lh3.googleusercontent.com/a-/AOh14Ggi15g3dziwzyLp4Zn7M_ToIXJIOksUgsrz_qHEgw,This has made my life so simpler and better. Amazing planner app. Sync across all the devices. Sub task can be added. Task can be allotted to your team. This is superb. They deserve much more appreciation then they get.,5,0,5.5.6.0,2020-04-06 20:03:40,,,newest,com.ticktick.task +Sophi Gamon,https://lh3.googleusercontent.com/a-/AOh14GhMtDf0RtY4BkPXGMgvlaDqTiKDN5rHd80_7EIWEg,"Perfect for a busy bee! I do a lot in a day, this app helps me categorize my time on my busiest days by setting times, dates and reminders for all my tasks that need to get done, love it!",5,0,5.5.6.0,2020-04-06 19:55:14,,,newest,com.ticktick.task +Vivek Prasad,https://lh3.googleusercontent.com/a-/AOh14GhZctZJSl5Ur7fvbN13c5rTJxsdDgwssoAeOJ8f5Q,This app have everything from UI to Features without costing much..Best in the market.,5,0,5.5.6.0,2020-04-06 19:41:17,,,newest,com.ticktick.task +Kirubhas Shankar,https://lh3.googleusercontent.com/-NCRvl04SwPk/AAAAAAAAAAI/AAAAAAAAAkQ/AAKWJJNYhvbY84XCMDWywp83acWj6zFo7g/photo.jpg,Best to-do app I've come across.,5,0,5.5.6.0,2020-04-06 18:48:12,,,newest,com.ticktick.task +nishnt bhtt,https://lh3.googleusercontent.com/-a-pniybQe4g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNLV4wDlwbFRcxTalhvih93Exi4HQ/photo.jpg,Awesome app. I found in this app exactly i want. With this app all tasks can be completed in a very organized way with proper timing,5,0,5.5.6.0,2020-04-06 17:43:06,,,newest,com.ticktick.task +Grace Eka,https://lh3.googleusercontent.com/a-/AOh14GjYgxc2dpFCujKiXXms7ij4GvGl-Hn8dZm2twy1,Suka banget lengkap banget fiturnya!,5,0,,2020-04-06 17:34:14,,,newest,com.ticktick.task +Ryan Dumas,https://lh3.googleusercontent.com/a-/AOh14GjxhnGc4xxEJTh8oYRkLeNaiK9kKkOoxhwnBeYutQ,"Clean design, easy interface, keeps me on task.",5,0,5.5.6.0,2020-04-06 14:56:01,,,newest,com.ticktick.task +Naseer Azka,https://lh3.googleusercontent.com/-Rwm9B7Re5hA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOEK7YeHKFxs8b-hluhHu-3mtLwFA/photo.jpg,To-do list is so much easier to achieve than before..,5,0,5.5.6.0,2020-04-06 12:58:19,,,newest,com.ticktick.task +Mahfuz Shanto,https://lh3.googleusercontent.com/a-/AOh14GhYEv545v6ckUxwXRFMRck88Iw24hYnxWdu9ST9hw,Nice App,5,0,5.5.6.0,2020-04-06 11:01:36,,,newest,com.ticktick.task +Rubin Rao,https://lh3.googleusercontent.com/a-/AOh14Gi99YdjTrrOZRbWDgTmbKNBxJw6V3RjnLqXvnJfcA,It has made me more productive than ever,5,0,5.5.6.0,2020-04-06 03:08:19,,,newest,com.ticktick.task +Emily Taala,https://lh3.googleusercontent.com/a-/AOh14GgdIftV5Zp6bhxIHbTFHUlkXPCUUArWTKY56gAs,"Good app, does what I need it to.",5,0,5.5.6.0,2020-04-06 02:24:36,,,newest,com.ticktick.task +MUKESH BADIGINENI,https://lh3.googleusercontent.com/a-/AOh14GgH1ALuOD_NPtD6y_6PvzGB557C44JXRD5NZW85LQ,Most productive application,5,0,,2020-04-06 02:10:13,,,newest,com.ticktick.task +Paulus Agung Pranoto,https://lh3.googleusercontent.com/a-/AOh14Gh4pxXYiAVmd9KsWemzPBzJa2Mfy-Mep1JJd8gDhw,Love this apps. Would be great if can aks before delete task,5,0,5.5.6.0,2020-04-06 02:06:24,,,newest,com.ticktick.task +Richard Dog,https://lh3.googleusercontent.com/-zpKZYx1NsAo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN0nyNUMV1WPyUAackk2PXoLIUdoA/photo.jpg,"seems to be usable, i am too accustomed to wunderlist, i wish i could star items to be put on a starred list",5,0,5.5.6.0,2020-04-05 22:55:13,,,newest,com.ticktick.task +Taha Abdelgalil,https://lh3.googleusercontent.com/a-/AOh14Ggg2tj3e9e8-lGFzhRmyUwpSwSkleTLv1xZGoej,Best App,5,0,,2020-04-05 22:32:52,,,newest,com.ticktick.task +Paco Vernen,https://lh3.googleusercontent.com/a-/AOh14GhV-yTgZEGJry5Gsxjwd--jBgJ0HsGJdQ0CJuSSXQ,Enables you to sandwich your productivity in double slices of focus. It's definitely my go-to planner.,5,0,5.5.6.0,2020-04-05 21:12:53,,,newest,com.ticktick.task +Geva Greenfield,https://lh3.googleusercontent.com/a-/AOh14GjyXEkXALnsJ-I_Uuz2J2CRrmvrT5BTPWJQPG8Zbg,Great app,5,0,5.5.6.0,2020-04-05 17:26:54,,,newest,com.ticktick.task +José Cardoso,https://lh3.googleusercontent.com/a-/AOh14Gj8Pz5pA2_vUWrkwV9imDFli1bRjZ2HSF8PI9J2SA,"The best app in this area. I could only suggest that a functionality is tracking the progress of a task could be offered (a board with doing, blocked, completed, etc columns)",5,0,5.5.6.0,2020-04-05 17:16:28,,,newest,com.ticktick.task +Jessica Lindon,https://lh3.googleusercontent.com/-SYz9izU2__A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP1s6WE1CnytqWb0-a-TReO7zJnAQ/photo.jpg,"I love this app, it keeps me organized and is simple to use. It has a lot of features in the free version but isnt too complicated. Some apps try to do too much, not this one, it does what I need and it does it well. I love the feature to make lists or schedule tasks, set a tasks priority, or quickly move it to tomorrow when I've over scheduled myself. Highly recommend.",5,0,5.5.6.0,2020-04-05 16:55:21,,,newest,com.ticktick.task +Alfred Cejku,https://lh3.googleusercontent.com/a-/AOh14GgzK83-Jtwva9hlaKoFSL4s5KHh6OPiEa6dDCICrg,Great!,5,0,5.5.6.0,2020-04-05 15:57:54,,,newest,com.ticktick.task +Enrique García,https://lh3.googleusercontent.com/a-/AOh14GgVu9mMYzdbmaKhxz5LFMmM_bBOCG2t_R5iM8jJag,Amazing,5,0,5.5.6.0,2020-04-05 15:14:23,,,newest,com.ticktick.task +Mano Ananth,https://lh3.googleusercontent.com/a-/AOh14Ghkr28my5ZQdEoSa2PEfQEWnICyiz9iXkbYQ2b_gDM,Best to do list app better than anything,5,0,5.5.6.0,2020-04-05 14:03:34,,,newest,com.ticktick.task +Able Anil Chandy,https://lh3.googleusercontent.com/-dIf5zvFAB3M/AAAAAAAAAAI/AAAAAAAABbw/AAKWJJMgQUux5gTMY9cXAMI3Qij5G_GkJw/photo.jpg,Best tasks app ever . Clean interface . Does the job perfectly,5,0,5.5.6.0,2020-04-05 13:06:50,,,newest,com.ticktick.task +sanath shetty,https://lh3.googleusercontent.com/a-/AOh14Ggu5KMXBtabjjtLpCaC6nr4GcYFE0WO0O_y7JvVNQ,"An all in one app for todo lists, remainders, habit trackers and pomodoro timer. And i haven't even bought the premium version yet.",5,0,5.5.6.0,2020-04-05 11:03:38,,,newest,com.ticktick.task +dano vrablik,https://lh3.googleusercontent.com/a-/AOh14GhrHkbXXbRNlhshFB_Hl-inO4qtT4p2XBLXBxLc7g,Best task app. In free version very useful. I hope they don't disable options what are now for free.,5,0,5.5.6.0,2020-04-05 10:21:54,,,newest,com.ticktick.task +Juan Santoy,https://lh3.googleusercontent.com/a-/AOh14Ggi6-Pyme_JmPQoQVjH0kTyrGdvBXTdKnH633pVVA,"After many years of Android, finally found the perfect task app. Plenty of category and reminder options, and seamless sync to the cloud with a web based interface.",5,0,5.5.6.0,2020-04-05 09:21:23,,,newest,com.ticktick.task +Alon Regensteiner,https://lh3.googleusercontent.com/a-/AOh14GiYjSN1VQKjcNxP4OmUAzFVMTgDKKskcfkXC1bzwEI,"Great app! A good replacement for Wunderlist. Supports all platforms, and has all the important feature whilst remaining very easy to use (unlike some of the competition). I would love having a slightly better widget. The current one doesn't look very good (the tasks aren't in boxes), and there's not a good support for RTL writing. I suggest aligning the text to the Left even when having RTL text, so every task is on the Left side and it's not mixed up.",5,0,5.5.6.0,2020-04-05 08:46:36,,,newest,com.ticktick.task +Manish Sharma,https://lh3.googleusercontent.com/a-/AOh14Gj-gHM93_QDiExbvXkt_mvevVN_axw9d30vEeQrsQ,Amazing app. Beats the even best ones out there. Good work. Keep it up.. keep improving..,5,0,5.5.6.0,2020-04-05 08:38:41,,,newest,com.ticktick.task +Matthew Derman,https://lh3.googleusercontent.com/a-/AOh14GjG4GkEpUCC1_L5ZDSXz6WNiE9B_Hjw6jxkwKobaUQ,Very helpful,5,0,,2020-04-05 08:38:25,,,newest,com.ticktick.task +Avinash Yadav,https://lh3.googleusercontent.com/a-/AOh14Gi2r0JlRZpJXkCy9OcTo89Cm8Gests25mDph9X8OA,Too good.,5,0,5.5.6.0,2020-04-05 07:52:54,,,newest,com.ticktick.task +Timur Tkachenko,https://lh3.googleusercontent.com/a-/AOh14GjT2XzdFz6eEcLSkvfhPMUXyn5JQi3mxzAEz1IKTg,"This app is great for everyday planning: to plan shopping or fast task, equally good for planning big projects. Keeping on track with your habits and stay focused with Pomo. Fast, powerful, lite",5,0,,2020-04-05 07:51:36,,,newest,com.ticktick.task +likith R.N,https://lh3.googleusercontent.com/a-/AOh14Gjsvur6UIwJu1XxFfpx6L9u0QxKZ6bqtgfdNQKZnw,This just helps structure your life so better....,5,0,5.5.6.0,2020-04-05 03:58:15,,,newest,com.ticktick.task +Daryl Gordon,https://lh3.googleusercontent.com/a-/AOh14GgbRin3bXSHaFYUOSnHx3OYtHobAvZbCMkxKdVIvQ,I'm pretty picky with task apps - TickTick is one of the best I've used. Good functionality with flexible usage models.,5,0,5.5.6.0,2020-04-05 01:35:22,,,newest,com.ticktick.task +yanis optismiste,https://lh3.googleusercontent.com/-8EN_WKIvVM4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMnG9DfIx6NGRqmDwbIAlpzElJ4eQ/photo.jpg,It's very good apps,5,0,5.5.6.0,2020-04-04 23:37:34,,,newest,com.ticktick.task +Barbara Nekolite,https://lh3.googleusercontent.com/-YjxXpK6LKE8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPZrSE_U98nGKWadvMz2VYXt9RFqw/photo.jpg,Love for scheduling but MORE for grocery lists!,5,0,5.5.6.0,2020-04-04 22:42:30,,,newest,com.ticktick.task +Mani Salehi,https://lh3.googleusercontent.com/-meeTiJgiwmM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP0wpFA99rzqUtbKY_XGUFpfFSOGA/photo.jpg,Really great. Since I had installed this application I can do my works on time and very well.,5,0,5.5.6.0,2020-04-04 21:57:19,,,newest,com.ticktick.task +Paul Wanjau,https://lh3.googleusercontent.com/-0mSdF_VCzuk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOwFj0_wGAv1hMmlQ1lPQeMjV2GVA/photo.jpg,"It is inviting, which makes it very usable.",5,0,5.5.6.0,2020-04-04 21:34:36,,,newest,com.ticktick.task +Ashwin Prasad,https://lh3.googleusercontent.com/a-/AOh14GgOgP_iHBwqBis-_YgSN3MEXgCzyG8Q38Eubpw8,"Amazing app. Perfect blend of features and polish. One thing I gotta appreciate is that even to new users who haven't decided on subscription yet, it's so clean. No in-the-face BUY ME messages. It's so clean. And polite. The subscription is totally worth it since it really does offer that much. Love it. Kudos to the team and community for making it what it is.",5,0,5.5.6.0,2020-04-04 20:20:14,,,newest,com.ticktick.task +Jennifer Tsai,https://lh3.googleusercontent.com/a-/AOh14GgBZkYaJ8bGhIiBEA33ZS1zXS3DQ9kHciKH_eblBes,The best planner app I've ever used,5,0,5.5.6.0,2020-04-04 19:34:33,,,newest,com.ticktick.task +Mohamed Ali Abid,https://lh3.googleusercontent.com/-JULdQV2RvvU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM2lO8wHkvHqopsZn-mXkejoLZPCA/photo.jpg,It's really a great app which can help you organize your day and be more productive 💙,5,0,5.5.6.0,2020-04-04 18:13:25,,,newest,com.ticktick.task +vilas patil,https://lh3.googleusercontent.com/a-/AOh14Gj3Sbfp1al9WzW_ouwJ_pVOisTtRhW3P7e0NUiw,Its a very useful app ..,5,0,5.5.6.0,2020-04-04 18:06:51,,,newest,com.ticktick.task +Gus M,https://lh3.googleusercontent.com/a-/AOh14GiUlSimUyiaX1zdJtxKgQEWTs_muo5EFcmOF8EVAaE,Best Todo app for me. Simple to use.,5,0,5.5.6.0,2020-04-04 17:16:27,,,newest,com.ticktick.task +Ranjan Karmakar,https://lh3.googleusercontent.com/a-/AOh14GgtQ44ybnob2awtEPKG4t1k3ZVNoUXlx3Dui_v8CA,Really good alternative for Wunderlist that I wa using before. This one have more features and syncs very well for collaborative use.,5,0,5.5.6.0,2020-04-04 14:19:32,,,newest,com.ticktick.task +John Fitzpatrick,https://lh3.googleusercontent.com/-zTugx4Uc23U/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMjjVpXqavNHIvS8uq9QtqDPLrvtg/photo.jpg,Awesome,5,0,,2020-04-04 13:53:27,,,newest,com.ticktick.task +Govind Rao,https://lh3.googleusercontent.com/a-/AOh14Gi9NR4EVfpoyrR0qinbk725u7HPH9xNtV4BteEk5A,One word to describe this app is AMAZING. Ultimate app for to-do and habit tracking. After many years a single app has impressed me so much. Highly recommended 👍,5,0,5.5.6.0,2020-04-04 13:38:07,,,newest,com.ticktick.task +M. Brian Dunson,https://lh3.googleusercontent.com/a-/AOh14GioFuF67tYSA7pGxsSu-FCvwc5gpsdiu0rO3ph9OA,Such a great app. I use it dozens of times each day!,5,0,5.5.6.0,2020-04-04 13:12:49,,,newest,com.ticktick.task +Ramnath Lakshman,https://lh3.googleusercontent.com/a-/AOh14Gh3fXmwpFcKrUSEwwAYE96HzIwUhSRJ4P4aSm2T1mw,Awesome,5,0,5.5.6.0,2020-04-04 11:35:24,,,newest,com.ticktick.task +Jason Ward,https://lh3.googleusercontent.com/a-/AOh14GgR5PSCH0XAQW31WbnUNbo-0O09h4hzYK2yc6OVgw,"The app I was using before was closing and changing into something else. So I did some research and this was very popular. Rightly so, as I prefer it to what I was using before. Great app",5,0,5.5.6.0,2020-04-04 11:20:22,,,newest,com.ticktick.task +Harshit Jain,https://lh3.googleusercontent.com/-uQJeAuWApQI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPQLopAEOmGV5VJ7LY6ftumxXTdwg/photo.jpg,Best app for planning and scheduling...jst bless u developers,5,0,5.5.1.0,2020-04-04 06:47:46,,,newest,com.ticktick.task +Павел Чер,https://lh3.googleusercontent.com/-tGgSinXttv8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNwOMS0eDDYquL2dqOzfEv1AIgq-g/photo.jpg,I like it,5,0,5.5.6.0,2020-04-04 06:07:47,,,newest,com.ticktick.task +Jay Milla,https://lh3.googleusercontent.com/a-/AOh14Gh6cs-2H1LCCKIflObtrX2m7vh48PQZe86qP_wrjQ,Excellent balance between reminding you and not being annoying. Well done.. I have some ideas for you.,5,0,5.5.6.0,2020-04-04 03:05:55,,,newest,com.ticktick.task +Dr. Vaseem Shaikh,https://lh3.googleusercontent.com/a-/AOh14GhX6DefyGQyXUNO5jIZgAJMHC_nqxsP4jhWVye3sA,Wonderful app to keep you up to date and to remind you to complete your tasks in time.,5,0,5.5.6.0,2020-04-03 22:11:23,,,newest,com.ticktick.task +Michael Brinker,https://lh3.googleusercontent.com/-F98bJ-3NRPk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMd7Z0cPUictuqcmGJrMBGfR0IA5g/photo.jpg,Good app for helping me organize daily tasks,5,0,5.5.6.0,2020-04-03 21:00:18,,,newest,com.ticktick.task +Afiq Asyraf,https://lh3.googleusercontent.com/a-/AOh14GiWbyGR3jy_1tl8qX2oLQpqOc7S0Xh0FE4QKIRJ,Has been using this app since last 7 months and everything goes better. thank you so much. Really worth downloading it 🤗,5,0,5.5.6.0,2020-04-03 17:28:21,,,newest,com.ticktick.task +Ben Jay,https://lh3.googleusercontent.com/-ef3Epg8uN7s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOgEt1JREbfFvC5oBZvc18t6p9LqA/photo.jpg,"Without question the best to-do list app. It has the most customizations and functionality when compared to any other. Integrates seamlessly across devices. Good free features, good paid features -- fair.",5,0,,2020-04-03 16:57:11,,,newest,com.ticktick.task +Mohamed Benmehimda,https://lh3.googleusercontent.com/a-/AOh14GiK01W3OVfLYp7-BpNSbwaRHMWxrOWmc7JAef0b-g,Something great 💞,5,0,5.5.6.0,2020-04-03 16:20:45,,,newest,com.ticktick.task +Mehrdad Senobari,https://lh3.googleusercontent.com/a-/AOh14GiecPMxi5S_oPABRd9tDjdPjXQGRyFuaQlVWiKnng,"Finally, a simple planner that works for me!",5,0,5.5.6.0,2020-04-03 16:07:55,,,newest,com.ticktick.task +Dan Barns,https://lh3.googleusercontent.com/-PgytUk1L9Zg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJORYMrwqjw1onsh9WFloQL66Ct_jQ/photo.jpg,"It's very good. Works on mobile and PC and it's easy to organize, you're able to nest lists, and it's easy to move them between lists or between different days. Several different options for viewing your tasks, by category, by priority, or by day or week.",5,0,5.5.6.0,2020-04-03 14:39:18,,,newest,com.ticktick.task +Rahul Deshmukh,https://lh3.googleusercontent.com/a-/AOh14Ggzeu_cf0z32GtEiZLm_0NKjoa6mt3ozXe4w56z,Best in the business👍👍,5,0,5.5.5.0,2020-04-03 13:55:07,,,newest,com.ticktick.task +Melvin Delos Santos,https://lh3.googleusercontent.com/-ZjQsGr-sMwM/AAAAAAAAAAI/AAAAAAAAP1k/AAKWJJNPsiTmJQ06DP0BBx2syaN5ZENOlg/photo.jpg,Best to do list app. I've tried so many to do list app bit this is certainly the best!,5,0,5.5.6.0,2020-04-03 13:54:46,,,newest,com.ticktick.task +Pillaistic Pillai,https://lh3.googleusercontent.com/-Ik4nZddLS0g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNBAfSBWzQaxJU6KwQl3u3mNJYsWw/photo.jpg,This app is a gold standard for life and work management.,5,0,,2020-04-03 13:06:08,,,newest,com.ticktick.task +Cristian Burlacu,https://lh3.googleusercontent.com/-4cEyUpcOdcM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMOp5XiDEv97w154BQJKHM25GnlDQ/photo.jpg,Please extend the beta program with more seats 😊,5,0,,2020-04-03 11:25:11,,,newest,com.ticktick.task +Ahmed Soliman,https://lh3.googleusercontent.com/-RXM7MmrylSM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNZwChYh2-jtOKNcVx6UxKFJki_XA/photo.jpg,Great application,5,0,,2020-04-03 11:19:51,,,newest,com.ticktick.task +RaTan IB,https://lh3.googleusercontent.com/a-/AOh14Gh-u_HYBCnhgwZv9cYa1RikvD9Jcn0DDDvcT6bk,Fine apk,5,0,5.5.5.0,2020-04-03 10:28:12,,,newest,com.ticktick.task +Suvankar Das,https://lh3.googleusercontent.com/a-/AOh14Ghe6G16NJvArx6JjZpQ_CHXGnSktYvsxmRi3bHx,Good app for daily reminder,5,0,5.5.6.0,2020-04-03 09:36:29,,,newest,com.ticktick.task +nabil sihali,https://lh3.googleusercontent.com/a-/AOh14GispBbol7vvKOUM0MyHNkWBQEp8IJS2rhDBq-dyCA,Very useful.,5,0,5.5.5.0,2020-04-03 09:12:30,,,newest,com.ticktick.task +Ananda Shankar Bhowmick,https://lh3.googleusercontent.com/a-/AOh14GhLoF-CV2-nkDVkBSLbMZXQNmOaBuMt4UtiJE60hw,Excellent tool!,5,0,5.5.6.0,2020-04-03 08:29:58,,,newest,com.ticktick.task +Cindy Luk,https://lh3.googleusercontent.com/a-/AOh14GjRkXPD93Z7kUa_WkPFicfyWI-hDuSrTT1GNLH0,Simple and to the point.,5,0,5.5.6.0,2020-04-03 07:38:55,,,newest,com.ticktick.task +Risha Tresyani,https://lh3.googleusercontent.com/a-/AOh14GhfvJIjqyxfG8BoWoJeQ2y_IETF-x85NJ9M2mIgFg,So easy to use. Really help me who's such an untidy person. There's a pomo and really help me to count how much time that I've spent in one session.,5,0,5.5.6.0,2020-04-03 06:34:42,,,newest,com.ticktick.task +ashok lamichhane,https://lh3.googleusercontent.com/a-/AOh14GiqJ3QbttLvse9aEYZut7lJl6Dj_n2VJcbjKCMyag,Best free version todo list app,5,0,5.5.6.0,2020-04-03 05:24:19,,,newest,com.ticktick.task +Jira Amancio,https://lh3.googleusercontent.com/a-/AOh14GgUUisL1NUlxYr0frqn06ckXvPAcsoLRK0oJl8A,"I have been using this for a long time now and it's really useful for me especially when I need reminders to do certain things on a daily basis, or weekly. Though it can get annoying when you're doing something and it pops up but overall, it's an app i recommend!",5,0,5.5.6.0,2020-04-03 01:04:22,,,newest,com.ticktick.task +Unadostre_ W,https://lh3.googleusercontent.com/a-/AOh14Gj52wOHnCn6No2c4bgG8Tt1A5EMyE7iJ9Ui2oG60w,I use this app as a recommendation from some writer in Medium. I've been using for a month and it's amazing. I can plan and complete all my tasks!,5,0,5.5.6.0,2020-04-03 00:27:36,,,newest,com.ticktick.task +ArTeMiCh,https://lh3.googleusercontent.com/a-/AOh14Gg1RRAs-COb727j21rcqX_V6AUTvvSidu6L_lyas-8,Wow! I tried many apps like this. And in my experience this app is the best one! So easy to use! After other apps with too many options and not understandable design this app is perfect! You just click '+' and enter the name! That's all! Of course if you want you can add time and date and something else. I recommend!,5,0,5.5.6.0,2020-04-03 00:23:26,,,newest,com.ticktick.task +Darshan Ramesh,https://lh3.googleusercontent.com/a-/AOh14GjFZFbxFpX23wHzeGUG1T_NugPHESfmgIDV-ToY_g,Have been using this since 15+ days. A must have app those who focus on being productive everyday. Habit tracker is a big plus. Kudos to the team.,5,0,5.5.6.0,2020-04-02 23:16:26,,,newest,com.ticktick.task +John Harper,https://lh3.googleusercontent.com/a-/AOh14GgDWLQ17ozRhywfmYmaeiOcaYOzvBdAwZV24svGfA,Just a awesome app!! Update: This app has really helped with my adhd! Still love the app. Now if I could do email from it. It would be the best app I have ever downloaded.,5,0,5.5.6.0,2020-04-02 22:43:05,,,newest,com.ticktick.task +Jane Todvayler,https://lh3.googleusercontent.com/-XxZLZoMbwy4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOY9k1-lYemvFf6ccKrMhULSxjQkQ/photo.jpg,Perfect! A Calendar with the opportunity to create notes for everyday or other notes on the side. I just love it!,5,0,5.5.6.0,2020-04-02 18:39:08,,,newest,com.ticktick.task +Orville S Roberts,https://lh3.googleusercontent.com/-MxnUhLDNNRw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP3fff8Ox6gavh57QXBhMKTlmgdBA/photo.jpg,Simple and efficient,5,0,5.5.6.0,2020-04-02 18:29:08,,,newest,com.ticktick.task +Chris Spizzirri,https://lh3.googleusercontent.com/a-/AOh14Git3OCi3cBFpmmJIIoI1cSFn3V8T-Fdgg-VBNoqW9Y,Needed a replacement for Wunderlist. Looked at several disappointing options before finding TickTick. It has everything I liked about Wunderlist plus it has nice extras like formatting in task notes and it lacks some of Wunderlist's annoying behaviors. It also did the best job importing from Wunderlist. The best alternative to Wunderlist. Period.,5,0,5.5.5.0,2020-04-02 18:11:41,,,newest,com.ticktick.task +Mauricio Ortuno,https://lh3.googleusercontent.com/a-/AOh14GiqwQEd5cF2aVDhCufemok1gCgXCNsPFnHecEmORfE,Very useful application. Intuitive and lots of features. Thanks!,5,0,5.5.6.0,2020-04-02 15:45:44,,,newest,com.ticktick.task +Pedro Couto,https://lh3.googleusercontent.com/a-/AOh14GgCUIntLTv49hCAN2fIHvWeNTFKnVvt4T0WXyQw8g,Simply the best app for productivity. Best user interface out there and best reminder service. Offers great widgets too.,5,0,5.5.6.0,2020-04-02 15:20:01,,,newest,com.ticktick.task +oliver smaith,https://lh3.googleusercontent.com/a-/AOh14Giu9B7VLNDhxJ1q7-0mmJGOftKEgXn3ZWv845_G,Cool,5,0,,2020-04-02 11:04:02,,,newest,com.ticktick.task +Le Dong Tam,https://lh3.googleusercontent.com/a-/AOh14GiNiWdodQNckFvMlqbpMcUROirrQ1ELpp4S-BFe6A,Great! Easy to use!,5,0,5.5.6.0,2020-04-02 10:46:52,,,newest,com.ticktick.task +Kent Riley,https://lh3.googleusercontent.com/-cSfnYfiUXpc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMsI7kNeNsbuuNX-IvLZiGDEPvusA/photo.jpg,Love this app. My favorite part is the helpful and intuitive snooze feature on tasks. Quick preset time ranges or ability to get specific make reminders easy to manage.,5,0,5.5.6.0,2020-04-02 06:15:19,,,newest,com.ticktick.task +Hasan Khoddami,https://lh3.googleusercontent.com/a-/AOh14GiYu2HhhSMWbbYuNW69PWlS4qWDBZZ52qDYBVNB,It's a really great app👍👍,5,0,,2020-04-02 05:54:38,,,newest,com.ticktick.task +Анна Морозова,https://lh3.googleusercontent.com/a-/AOh14Gi7EdsNc6I2Apzp8mnhUa-WWX3P_edRSb9k3GkfOg,The best app for planning I met.,5,0,5.5.6.0,2020-04-02 04:56:59,,,newest,com.ticktick.task +lio redux,https://lh3.googleusercontent.com/-eITJd9Fjezc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNxlvR_tGiy6VozW3hjT8g0oBMTaQ/photo.jpg,Very useful.,5,0,,2020-04-02 02:03:43,,,newest,com.ticktick.task +Ahmed Osamaa,https://lh3.googleusercontent.com/a-/AOh14Gggcyi9xM8BQrdX027Z8d-HwjgxRJA0m8QF_cvIsg,best to-do app,5,0,5.5.5.0,2020-04-02 00:15:15,,,newest,com.ticktick.task +Josh Waddo,https://lh3.googleusercontent.com/-wzM-0B1VgGw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNCpexVgHnTNX5ZmrJs_rKXbALvag/photo.jpg,Tick Tick has been very easy to use and very handy. I use it for both business and personal use and find it very easy to collaborate lists with other people and create lists,5,0,5.5.6.0,2020-04-01 21:28:02,,,newest,com.ticktick.task +Devin Deatrich,https://lh3.googleusercontent.com/-Nz51A1WymlU/AAAAAAAAAAI/AAAAAAAACiE/AAKWJJMtZ7AvJPuubdZR4ZoOj8xGIaJCMg/photo.jpg,"It's a very good planner app. I had scoured the play store for dozens of planner apps, but none of their free versions were worth my time. This free version is entirely great on it's own and without any ads. However, if you're a student as I am, the duration feature for tasks on the premium app is definitely worth the $2.99 a month",5,0,5.5.6.0,2020-04-01 21:21:26,,,newest,com.ticktick.task +Dr. Yaw Asokwa-Nkansah,https://lh3.googleusercontent.com/a-/AOh14GgpvT2ByCHeT_OKXEAjR4mLTkq1eEgMsUK-GudDrfU,Great apk,5,0,5.5.6.0,2020-04-01 18:45:24,,,newest,com.ticktick.task +Mr. R,https://lh3.googleusercontent.com/-nGNzPkzMNRs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJONO609wlQYaeEQSecf8sw5cRtgNQ/photo.jpg,Loved the way to add due time of tasks,5,0,,2020-04-01 16:43:41,,,newest,com.ticktick.task +aya nagib,https://lh3.googleusercontent.com/-QxES0fTWuLI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNmW33Lrk0k3zOyhAysoGm_efORaQ/photo.jpg,It's a wonderful app,5,0,5.5.6.0,2020-04-01 16:27:15,,,newest,com.ticktick.task +Abbos Fayzullayev,https://lh3.googleusercontent.com/-Z2Bs8bVQZbM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO01LZAE50cH3pWxIa7W2hiPLDAPg/photo.jpg,Excellent !!!,5,0,5.5.6.0,2020-04-01 15:04:17,,,newest,com.ticktick.task +Tracy Britton-Conley,https://lh3.googleusercontent.com/a-/AOh14GhwcJDPGZ2uwOUDMbPBodFMYfVJDxwKrz9c4hzTO4k,Easy to use. Keeping track of all my tasks and appointments,5,0,5.5.6.0,2020-04-01 14:59:33,,,newest,com.ticktick.task +Jie Xi,https://lh3.googleusercontent.com/a-/AOh14Ghk32D0prnCdgJZeJhIwf28bUitQ0bq9I6_m0OG,非常棒 整体也很简洁明了 非常喜欢❤️,5,0,5.5.6.0,2020-04-01 14:21:44,,,newest,com.ticktick.task +Syazwan Aiman Sharip,https://lh3.googleusercontent.com/a-/AOh14GjE6mjS0BpAdtmrcCIesLDlcgZGpAoAD0gOWjFe,Very good app,5,0,5.5.6.0,2020-04-01 14:06:03,,,newest,com.ticktick.task +Duncan Allester,https://lh3.googleusercontent.com/-0f2dIalwkEQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNKr6OnnuHGzZaJjLG-HC8l7-VGbA/photo.jpg,Very good,5,0,5.5.6.0,2020-04-01 12:26:42,,,newest,com.ticktick.task +Gabriel Garcia Morales,https://lh3.googleusercontent.com/-dZZ_rQdxmvE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM5oKvVpy1DYxSQjXyCnWhdC6hD0w/photo.jpg,"Completa y sencilla. Muy intuitiva. Me baje 6 app parecidas y las compare, elegí TickTick",5,0,5.5.6.0,2020-04-01 12:04:33,,,newest,com.ticktick.task +Hamada Alzahrany,https://lh3.googleusercontent.com/a-/AOh14GiUpDZH083lTr5r5A4hmXFeo6nxDYAEgCn4AafY,This amazing app 😍👌👍,5,0,5.5.6.0,2020-04-01 09:12:32,,,newest,com.ticktick.task +IK Okechukwu,https://lh3.googleusercontent.com/a-/AOh14Gi-fQIC8DVcQ3Ac39g_uTxHfeb4AyBwlkqPsI45fA,An excellent application,5,0,5.5.6.0,2020-04-01 08:00:45,,,newest,com.ticktick.task +Zeb McNeil,https://lh3.googleusercontent.com/-57Mm2_eiqRo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN31vS2ROMvcVhQ75ZeWh4OdETo7w/photo.jpg,"I love it except, and this is a big issue for me, it's totally server based. Want to update anything, but have a bad internet connection? Too bad, it's either going to take forever or fail. I would use and maybe even pay for this app to just have a way to have everything first be saved on my device. So, back to hunting for a to-do app. Edit 3/23: I have to drop my review on this to 1 star. You can manually edit values within the app for stats making any it unreasonable that I need internet.",1,34,2.5,2020-03-23 19:41:45,"Thank you for this thoughtful review, but sorry we couldn't meet your needs. We hope you find an app that works for you :)",2020-04-01 04:33:35,most_relevant,com.habitrpg.android.habitica +Miguel Rosa,https://lh3.googleusercontent.com/a-/AOh14GgppHDdFHqzCmMzAAxtfYzIdpXLutCoKr9bbHJbclc,Buggy as all hell. The advertisement is right. It gamifies tasks... But that's it. No tracking history of your habits. Inaccurate as all hell. Worst of all is you can't delete your account. They'll forever keep your data. I'm sure that's illegal in parts of this country and around the world. Definitely don't use your real email to sign up to test it out.,1,3,2.5,2020-03-09 22:44:29,"Hi Miguel, you can delete your account via Menu - Settings - Authentication. We abide by GDPR guidelines- you may email us at admin@habitica.com if you need any further information about that.",2020-03-13 18:45:37,most_relevant,com.habitrpg.android.habitica +zanin fayik,https://lh3.googleusercontent.com/a-/AOh14GgqSZu-9rK19fimZFCVk5nabv6JuMdumKk-ZY9e,"I should be able to use the app when offline, and the app should sync the changes whenever connected to the internet. It shouldn't force me to connect with the internet for ticking a checkbox!",1,1,2.5,2020-03-14 10:57:51,"Hi, this is a common feature request. Offline mode would be really complicated, and since Habitica doesn't make money by selling ads or personal information, it's a really small team that hasn't been able to work on that. If you're more connected in the future, I hope you can give us another chance.",2020-04-01 04:39:32,most_relevant,com.habitrpg.android.habitica +C. C. G,https://lh3.googleusercontent.com/a-/AOh14Gi9l0__BF-_YNaezG_kiPQzV4mAzct8aKZoERkBsA,"The first 2 slides are black and I can't see character in the character creation. Some message saying ""path 'profile' required habitica...i hope this gets fix soon. Until then I I'll wait.",1,1,2.4.2,2020-01-31 15:38:26,"Hi, sorry to hear about this issue. Please try updating to the newest version, and let us know if you're still having trouble via mobile@habitica.com and the team will look into it.",2020-02-06 23:53:48,most_relevant,com.habitrpg.android.habitica +Ross,https://lh3.googleusercontent.com/a-/AOh14Ghx73mTtO6MXRyRiGO5mMqFBDR_oCn6rO6G5X7gLg,"The two starting pages were blank, same as character customization. I saw another comment and there's any new version to update. I was excited to try this app but I couldn't :(",1,0,2.4.2,2020-02-03 21:41:16,"Hi Ross, sorry to hear about this issue. Please try updating to the newest version (2.4.3), and let us know if you're still having trouble via mobile@habitica.com and the team will look into it.",2020-02-06 23:57:54,most_relevant,com.habitrpg.android.habitica +Alexandra Zelek,https://lh3.googleusercontent.com/a-/AOh14GgybI9FCFCEs37MJ1JYWuSUfcgMBcu3x-lJtmH3Wg,I was looking forward to using this app. But it wont even let me pick out an avatar. Things just go blank on the app and tells me I'm missing information when I clearly am not. What a bummer,1,1,2.4.3,2020-02-07 03:55:51,"Hi Alexandra, sorry to hear about this issue. Your character should update to your choices once you select a task list and pull down. In any case we've let the developers know about this issue and they are working to fix it for the next update! You can send us additional information via Menu - About - Report a Bug if you would like.",2020-02-13 20:29:29,most_relevant,com.habitrpg.android.habitica +Joshama Listandi,https://lh3.googleusercontent.com/-x212XsMaH_c/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOIKoPI34B9v5p3VT9rI_LE5dAVdQ/photo.jpg,"Would love to actually get started with this app, but for whatever reason I can't even build my avatar. None of the options for selecting what I want my avatar to look like actually show up on the screen, they're all completely invisible.",1,0,2.4.3,2020-02-12 15:15:10,"Hi Joshama, sorry to hear about this issue. Your character should update to your choices once you select a task list and pull down. In any case we've let the developers know about this issue and they are working to fix it for the next update! You can send us additional information via Menu - About - Report a Bug if you would like.",2020-02-13 20:36:59,most_relevant,com.habitrpg.android.habitica +Bryan Jackson,https://lh3.googleusercontent.com/-INH9wAupF5A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMmZq0kH3AwugBI9_fE8eBrbZXSsw/photo.jpg,Completely unusable on Android right now. Everything is blank or not loading. Downloaded and deleted right away which is unfortunate because it looked like something I'd be really interested in.,1,0,2.4.2,2020-01-25 15:12:28,"Hi Bryan, sorry to hear about this issue. Please try updating to the newest version, and let us know if you're still having trouble via mobile@habitica.com and the team will look into it.",2020-02-06 23:48:57,most_relevant,com.habitrpg.android.habitica +Shang Cai,https://lh3.googleusercontent.com/a-/AOh14GiOgXEDDCKUdjJOleA42VmfYAYrqgVZuqCcCs9QKg,"Doesn't seem to work on OP 6T, can go through character creation, but doesnt let me customize or select anything. half of the UI shows up blank.",1,0,2.4.3,2020-02-15 21:26:00,"Hi Shang, sorry to hear about this issue. Your character should update to your choices once you select a task list and pull down. In any case we've let the developers know about this issue and they are working to fix it for the next update! You can send us additional information via Menu - About - Report a Bug if you would like.",2020-02-21 00:14:32,most_relevant,com.habitrpg.android.habitica +Emmanuel G,https://lh3.googleusercontent.com/-QOnntIQ8WvI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNnCLrBKMQFmTdn-4VfODfoAxEUbw/photo.jpg,"It does not seem possible to have a simple shopping list shared with another person... Nice app, but useless.",1,0,2.5,2020-03-19 10:12:03,"Hi Emmanuel, thanks so much for this thoughtful review. You can create a Challenge to share tasks with another person. You can learn more about this here: https://habitica.fandom.com/wiki/Challenges",2020-03-20 22:39:08,most_relevant,com.habitrpg.android.habitica +Asad Ahmed,https://lh3.googleusercontent.com/a-/AOh14GjRfmxjWthldWuRygd1i8R4b6xSz1bzdXs6bNBqfg,App has many bugs. 1. Start screen doesn't display first 3 slides. User creating is totally not functional. I'm using both Android 9 and Android 10 same bugs.,1,1,2.4.3,2020-02-05 18:39:51,"Hi Asad, sorry to hear about this issue. Your character should update to your choices once you select a task list and pull down. In any case we've let the developers know about this issue and they are working to fix it for the next update! You can send us additional information via Menu - About - Report a Bug if you would like.",2020-02-06 23:59:29,most_relevant,com.habitrpg.android.habitica +Jonathan Medrano,https://lh3.googleusercontent.com/a-/AOh14GiGc328s0B3GawN_yZ5jD8bKA0IcwEAJMBrjjeo-g,"Blank screens when initially launching, character creation screen missing most assets but still semi functional. Unable to begin. Oneplus 6T A10",1,1,2.4.2,2020-01-28 12:54:02,"Hi Jonathan, sorry to hear about this issue. Please try updating to the newest version, and let us know if you're still having trouble via mobile@habitica.com and the team will look into it.",2020-02-06 23:51:38,most_relevant,com.habitrpg.android.habitica +Kiyan Pardakhti,https://lh3.googleusercontent.com/-b2aNeKctvPs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO__9cxTGxODEy1AD6kzJjkPjwRfg/photo.jpg,"Can't even start it properly. Just says ""Path 'profile.name' is required.""",1,0,2.4.4,2020-02-27 01:47:41,"Hi Kiyan, the issue with the character customization screen and adding tasks should be fixed in the latest update that was just pushed. If you're still having trouble, we're happy to investigate. You can send a bug report directly to the dev team via Menu - About - Report a Bug.",2020-02-27 23:57:08,most_relevant,com.habitrpg.android.habitica +Darren Singh,https://lh3.googleusercontent.com/a-/AOh14GjooIoI-ejhYJbOUSHTnTsbfcN2lIFiMWtgxnq7uw,The app is broken right now. Downloaded today to try it out and the first two slides were blank. Character creation is all blank. Unfortunately deleted but was looking forward to trying. This has been catalogued by others. When its fixed I'll try again but so far it seems that this app is only really properly supported for iPhone users. (I have a Samsung S9),1,33,2.4,2020-01-20 17:52:26,"Hi Darren, sorry to hear about the trouble. Please try updating to the newest version, and let us know if you're still having trouble via mobile@habitica.com and the team will look into it.",2020-01-24 21:43:50,most_relevant,com.habitrpg.android.habitica +Tara Team,https://lh3.googleusercontent.com/-Fa6WcJezBaU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPgk0JHvuLTYAAS0jPhz7IAI6DlLw/photo.jpg,Unfortunately i can not sign up or sign in. By google account or email. I tried a lot. From iran,1,0,2.4.4,2020-02-26 20:48:38,,,most_relevant,com.habitrpg.android.habitica +Edward Hewitt,https://lh3.googleusercontent.com/-9V_-8H8h_uM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOI5imRdDsOWgRRV13SLT4MRwOcjw/photo.jpg,"App broken, don't bother. Like many many other reviewers, this app is totally broken and defunct on Android devices and specifically Galaxy S10 / Note 10 devices. It seems the developer response to all of those reviews is ""please report a bug"" but this has now been an issue for months that they haven't looked into fixing despite dozens of notifications from users that their app is broken. I have instead now downloaded an app by another developer which actually works. I will not be back.",1,7,2.4,2020-01-12 09:44:19,"Hi Edward, thank you so much for this thoughtful review. We have a very small team since we don't make money from ads or selling user information, so improvements may take longer than you're used to from other apps. Thanks for giving us a try.",2020-01-14 18:16:13,most_relevant,com.habitrpg.android.habitica +Kirsten Lindsay,https://lh3.googleusercontent.com/a-/AOh14GhnStoLAIxWgGNSSpBMW0zWNwBoB-cZQ275El2ZrA,"I had really begun to depend on this app and was having fun. Then I downloaded the update. I now have NOTHING. Not even the IMAGE of an avatar, there's just NOTHING THERE. I have no experience, no level, no coins, NOTHING. I was having a really awful day and this was just icing on the cake. There was so much I put into this game. How can I remember all of the tasks I scheduled for myself? I am so so discouraged.",1,4,2.3,2019-11-16 02:17:02,"Hi Kirsten, you may have run into some server issues we had at the time you posted- let us know if you're still having trouble via Menu- About -Report a Bug and the team will look into it. Sorry for the trouble.",2019-11-18 17:14:57,most_relevant,com.habitrpg.android.habitica +Travis Richards,https://lh3.googleusercontent.com/-Yu2yqoOt58Y/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPTRhSXT-vWy5Hp-TtM8N6ukd6WFg/photo.jpg,Same issue as Don Smith who wrote a review on 10/10/19. Will consider this app but the lack of slide visuals and character visuals makes the app in-op. Current phone is the Google pixel 4xl......perhaps I misspoke in regards to the reply. My issue is not with the visuals but the lack of visuals. Everything is blank for me so literally can not see half of the content.,1,0,2.4,2020-01-04 01:24:23,"Hi Travis, thanks for clarifying your feedback. We're sorry to hear about this issue- if you can send us an email with more details via mobile@habitica.com that may help the team investigate.",2020-01-14 18:04:56,most_relevant,com.habitrpg.android.habitica +Alex,https://lh3.googleusercontent.com/-z9eaq2Io4RI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNKe0ybvtrtcjBtE4I_ZPpqXqmyLg/photo.jpg,You need internet access and the server has to be up on their side for you to be able to access your to-do list. Server has been down today and I cant check off or edit my to-do list due to that. Going to be deleting this app. Most other to-do lists work offline.,1,0,2.2.2,2019-11-16 04:38:05,"Hi Alex, sorry for the trouble, let us know if you're still having trouble via Menu- About -Report a Bug and the team will look into it.",2019-11-18 17:15:55,most_relevant,com.habitrpg.android.habitica +Faith Foreman,https://lh3.googleusercontent.com/a-/AOh14GjocFWSCaedTvrt_mvEQ65RHWeZABYc09AxSqYU,"Can't even log in. Seems to stop working or freeze up every time. Just downloaded the app for the first time, can't make a new account or log in. Waste of time, will be looking for other apps that actually let me get past the log in screen.",1,0,2.2.1,2019-10-30 18:48:43,"Hi Faith, sorry to hear about this issue. Please let us know if you're still having trouble by sending us a message at mobile@habitica.com and the team will look into it.",2019-11-05 19:57:22,most_relevant,com.habitrpg.android.habitica +David Ramalho,https://lh3.googleusercontent.com/a-/AOh14Gj7_IYCy8YWhZiT0VICcXShewklm6Y8Es1c5N4sZVY,"Wanted to try this, but it doesn't seem to properly load images to create my character or load tutorial pages so I can't even continue from the create screen. Seems like it's broken...",1,0,2.3,2019-11-28 14:06:34,"Hi David, you may have run into some server issues we had at the time you posted- let us know if you're still having trouble via mobile@habitica.com and the team will look into it.",2019-12-06 01:13:10,most_relevant,com.habitrpg.android.habitica +butsuriboy o,https://lh3.googleusercontent.com/-qFL1qM8RJZk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNedJpM9QXctv5gbQ3yL5cEp6Pn9A/photo.jpg,"App is completely broken. Can't even make an avatar -- none of the options show up. Also, get an error message when trying to show a display name",1,0,2.3,2019-12-02 16:47:17,"Hi butsuriboy, sorry to hear about this issue. Please let us know if you're still having trouble by sending us a message at mobile@habitica.com and the team will look into it.",2019-12-06 01:15:59,most_relevant,com.habitrpg.android.habitica +Corrine Cassias,https://lh3.googleusercontent.com/-pqCi7NMunTY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP7B77i-YpRpSCbguR5fq4Nc3iFvQ/photo.jpg,Doesnt work the main screen is stuck i can move to the next page.,1,0,2.3,2020-01-07 04:33:57,"Hi Corrine, sorry to hear about this issue. Please let us know if you're still having trouble by sending us a message at mobile@habitica.com and the team will look into it.",2020-01-14 18:13:39,most_relevant,com.habitrpg.android.habitica +Rebecca Jordan,https://lh3.googleusercontent.com/a-/AOh14Gi5XyVnbWKjdHvQ1E7SciKl18hYShrlbo5GsejoPg,Want to like it. So far half of the set up items aren't even showing up for my samsung s8. All the purple screens are blank. Was excited to try but it doesn't work.,1,2,2.3,2019-12-10 18:18:22,"Hi Rebecca, sorry to hear about these issues. Please let us know if you're still having trouble via Menu - About - Report a Bug. A direct report will provide details that will help the team fix the issues you've mentioned.",2019-12-12 19:27:42,most_relevant,com.habitrpg.android.habitica +Sam Peterson,https://lh3.googleusercontent.com/a-/AOh14GgHIjkJ8h0JwNPuLoK15bTSt0-PFuHxAjt0FJetAQ,"It's completely broken, things don't show up, error codes from the very beginning, it's just broken",1,2,2.2.1,2019-10-24 19:08:11,"Hi Sam, thank you so much for this thoughtful review. You can help us fix bugs by reporting them directly via Menu - About - Report a Bug. We have a very small team since we don't make money from ads or selling user information, so improvements may take longer than you're used to from other apps. Thanks for your patience.",2019-10-25 00:12:02,most_relevant,com.habitrpg.android.habitica +Martin Sweeny,https://lh3.googleusercontent.com/a-/AOh14Gg2swn84tvlab-SMbJ3itPlYUdbOACOHL7CoIg6,"Can't log in. The password input is shorter on the in-app login than both the reset password field as well as the login form on web, so my correct password is rejected",1,0,2.3,2019-11-26 01:10:17,"Hi Martin, sorry to hear about the trouble. Please email our support team at mobile@habitica.com for assistance.",2019-12-06 01:10:35,most_relevant,com.habitrpg.android.habitica +Rasha Tabbakh,https://lh3.googleusercontent.com/a-/AOh14GiUbMUmGYD8WdpevLTXVgcA-wIQqPw83_kfAreU,"I couldn't register , the circle rounds and rounds .. And nothing happens",1,0,2.2.2,2019-11-07 15:53:08,"Hi Rasha, sorry to hear about this issue. Please try updating to the newest version, and let us know if you're still having trouble via mobile@habitica.com and the team will look into it.",2019-11-08 00:33:45,most_relevant,com.habitrpg.android.habitica +Louis Payne,https://lh3.googleusercontent.com/a-/AOh14GjWeW8cDOC6YnC7Dlm7BD6ZwL7wqDo9uSuZomP4ow,"Doesn't show character customisation, think it needs an update",1,0,2.4,2019-12-29 22:56:27,"Hi Louis, sorry to hear about the trouble. If you'd like to send us more detail to help us investigate these issues, you can send that information directly to the support team via Menu - About - Report a Bug.",2020-01-04 00:56:02,most_relevant,com.habitrpg.android.habitica +Aidan Brumsickle,https://lh3.googleusercontent.com/a-/AOh14Ghgv2HcHaM6yJboBRbdZ_ynT7FPqnrkgf414O_ACQ,"Broken from the start, can't do anything",1,0,2.4.3,2020-02-17 01:45:12,"Hi Aidan, , sorry to hear about this issue. Please try updating to the newest version, and let us know if you're still having trouble via mobile@habitica.com and the team will look into it.",2020-02-21 00:10:15,most_relevant,com.habitrpg.android.habitica +Aaron S,https://lh3.googleusercontent.com/a-/AOh14GjntQvokUXoB3vY6Zlq06FFOUxdUEobUWl2-_Em3Q,Path profile name is required glitch when trying to make avatar on Galaxy s10,1,1,2.4,2019-12-28 07:31:18,"Hi Aaron, sorry to hear about this issue. Please let us know if you're still having trouble by sending us a message at mobile@habitica.com and the team will look into it.",2020-01-04 00:53:49,most_relevant,com.habitrpg.android.habitica +kryke09,https://lh3.googleusercontent.com/a-/AOh14GgOIHLPK7SBMmU0kPmHxm8SAj8JPXxdvaCYwJUnuw,The website works but the app is blank.,1,0,2.3,2019-12-08 16:38:41,"Hi Kryke09, sorry to hear about this issue. Please let us know if you're still having trouble by sending us a message at mobile@habitica.com and the team will look into it.",2019-12-12 19:24:56,most_relevant,com.habitrpg.android.habitica +Ian McClaskey,https://lh3.googleusercontent.com/a-/AOh14GictubTY2J97G4ugPJgsCbY6jWEysVDlDk_i9mJfA,"This app is completely unusable on my Note10+ The account creation is riddled with errors and when I finally get into the app, I can't click on any items or add a new item without the app instantly crashing. I was excited by the premise and motivated to start using it, but the experience was downright embarrassing. I'd love for a developer response here to acknowledge these problems and maybe offer some solutions.",1,0,,2020-02-24 21:02:27,"Hi Ian, sorry about that, the issue with the character customization screen and adding tasks should be fixed in the latest update that was just pushed. If you're still having trouble, we're happy to investigate. You can send a bug report directly to the dev team via Menu - About - Report a Bug.",2020-02-27 23:54:19,most_relevant,com.habitrpg.android.habitica +Timothy R. Dumont,https://lh3.googleusercontent.com/a-/AOh14GhPhPJX73NwWMlTP4UbBzV7ojMvWx6QhlW5EJCcIQ,"Great concept, but I can't even create an avatar. This is a constant bug listed in reviews. The company says that your selections should show up after you start actually using the app, but how can they when we can't even actually CHOOSE anything. I guess I'll try one of the competitors apps.",1,0,,2020-02-26 00:22:08,"Hi Timothy, the issue with the character customization screen and adding tasks should be fixed in the latest update that was just pushed. If you're still having trouble, we're happy to investigate. You can send a bug report directly to the dev team via Menu - About - Report a Bug.",2020-02-27 23:55:59,most_relevant,com.habitrpg.android.habitica +Don Smith,https://lh3.googleusercontent.com/a-/AOh14GjQjSsEunvFQeYFYV56z_iB_Y7PoVY3MwqCWVYpKA,"I really want to use this app, but on my Galaxy S10, the first 2 of the 3 slides in the introduction before logging in, are blank. The character visuals on the character customization are invisible, and on the settings menu, I scroll down and the options start to overlap each other (hard to describe). I will consider reinstalling after the graphical issues are fixed because it seems like a great app, but currently it's unusable for me.",1,12,2.1.1,2019-10-11 00:01:19,"Hi Don, sorry to hear about the trouble. The mobile team would like to investigate these issues further. It would be helpful if you could send more details via mobile@habitica.com so they can look into this.",2019-10-11 01:01:54,most_relevant,com.habitrpg.android.habitica +Michael Parnell,https://lh3.googleusercontent.com/a-/AOh14GjeC5DOjebDbkW0979kngifCjHd4zd3j8OSEDo6qQ,This app has some major problems. It seemed to work fine for the first day of running. After the first day no reminders were executed. Any game armor or weapons could never be equipped. it appeared you could equip them but once you left the screen they become unequipped and they never showed up on the avatar. I mainly got this app for productivity and since the reminders do not work I'm not certain I'm going to continue using it unless these problems are fixed.,1,0,,2019-12-06 16:26:53,"Hi Michael, sorry to hear about the trouble. If you'd like to send us more detail to help us investigate these issues, you can send that information directly to the support team via Menu - About - Report a Bug.",2019-12-12 19:23:19,most_relevant,com.habitrpg.android.habitica +Rina Bina,https://lh3.googleusercontent.com/a-/AOh14Gi9y8rrkKBs3ZT3Vt-mLO5ogB6NCMPu5C8KmsJQ,"My phone is a Samsung S8+. The introduction screen is mostly blank, and the character customization seems to be broken because your character and customization options don't show up. I didnt go any further.",1,0,,2020-01-17 16:09:23,"Hi Rina, sorry to hear about the trouble. Please try updating to the newest version, and let us know if you're still having trouble via mobile@habitica.com and the team will look into it.",2020-01-24 21:37:17,most_relevant,com.habitrpg.android.habitica +Muhammad Hanafi,https://lh3.googleusercontent.com/a-/AOh14GjLIo5nbUvdMh8lweOEiW41nU3zm15dP0necTrSYxw,Quite disappointed with this app. Is used to be fine for past years. Currently is really slow when checking my task and is so frustrating at times. This app need improvement on the server and at times server down :(.,1,0,1.4.3,2020-01-07 10:26:07,"Hi Muhammad, sorry to hear about this issue. The devs are working to improve load speed, so keep your eyes out for a new update soon. You can send more details to help us fix it, if you like, by sending us a message at mobile@habitica.com.",2020-01-14 18:14:06,most_relevant,com.habitrpg.android.habitica +Bryce DeVaughn,https://lh3.googleusercontent.com/-EV_HD00i_OM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP6VEVxCvauhldxtXuDIOVTDokDqQ/photo.jpg,"As soon as I downloaded the app and made a new account, I couldn't create a new character because under the body, skin, and other options to make your character was blank. When I changed my display name, I got a weird message for 'profile.name' required. The randomize button didn't even work for me either. I left originally because there were many bugs with to-do's and other things and I'm not confident it's functional past the character creator, so I don't see a point to continue. On the S10E",1,10,2.1.1,2019-10-16 10:52:32,"Hi Bryce, sorry to hear about these issues. You're welcome to try updating to the newest version, and let us know if you're still having trouble via Menu - About - Report a Bug and the team will look into it.",2019-10-17 21:29:09,most_relevant,com.habitrpg.android.habitica +Graham McGregor,https://lh3.googleusercontent.com/a-/AOh14GjvxVqK_aw3vDAY5J-vxr3d_z4VtbqGAcT9WH7SRQ,"Busted from the start. On the first open of the app I got a 3 pane swipe intro and the first 2 were blank purple screens. Then, on the Avatar creation screen the Avatar wasn't visible. When finally getting in to the app the ""help text"" bubble didn't point at anything, just the bottom of the screen for the whole dialogue. This app sounded interesting but it seems there's a complete lack of interest in quality.",1,0,,2019-12-17 13:51:15,"Hi Graham, thank you so much for this thoughtful review. We have a very small team since we don't make money from ads or selling user information,, so improvements may take longer than you're used to from other apps. We appreciate your patience and understanding.",2019-12-19 18:30:06,most_relevant,com.habitrpg.android.habitica +Ashley Monson,https://lh3.googleusercontent.com/-c8D5Go5iGWQ/AAAAAAAAAAI/AAAAAAAALH0/AAKWJJOWj9-lvgwenyn5tl9uDoUAKkb2dQ/photo.jpg,"Downloaded this app hoping for a fun way to form new habits, but when I get to the register screen the first two tutorial panels are blank and then the third one lets you link social media accounts. Then I can't save the username and display name I create, and the avatar generator screen doesn't load any options. Opened the app the next day to find nothing I could edit had been saved. Uninstalled and tried registering again with a different account and got the same results. Pretty disappointed",1,0,,2020-01-05 07:06:52,"Hi Ashley, sorry to hear about this issue. Please try updating to the newest version, and let us know if you're still having trouble via mobile@habitica.com and the team will look into it.",2020-01-14 18:09:15,most_relevant,com.habitrpg.android.habitica +Ryan Barnes,https://lh3.googleusercontent.com/-FcXoiWw1naQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPTf6LPhGDp57XXRXpSqIb-6T6rtA/photo.jpg,App has no images on S10+ and is completely unusuable,1,1,2.3,2020-02-14 01:01:00,"Hi Ryan, sorry to hear about this issue. Please try updating to the newest version, and let us know if you're still having trouble via mobile@habitica.com and the team will look into it.",2020-02-21 00:09:36,most_relevant,com.habitrpg.android.habitica +Alan Mathews,https://lh3.googleusercontent.com/a-/AOh14GhdQqz-Typ9Kc6KN14y-1lPbvsF6Sp9OiYbDzfBlQ,"I kept getting empty screens when opening the app, so I pressed skip. Filled out the registry info and was taken to character creation where I couldn't see my character or the build options. I could select things like body or hair, but nothing appeared relating to that.",1,0,,2019-10-12 18:36:42,"Hi Alan, sorry to hear about this issue. Please try updating to the newest version, and let us know if you're still having trouble via Menu - About - Report a Bug and the team will look into it.",2019-10-17 21:22:03,most_relevant,com.habitrpg.android.habitica +Evan Bailey,https://lh3.googleusercontent.com/a-/AOh14GgbznIN7jLeK16FW2wdiQs8SRFg9iJjeMOoUlxe89Y,"This seems like a fun idea, and was recommended to me as especially helpful for people with ADHD, so I was intrigued. Unfortunately, I have encountered a bug where when I get to the screen where I choose my screen name and username, I cannot press the next button after filling out the name and username. Then, when I exit the app and go back to it, it's the default character and I cannot customise it/my account.",1,10,1.6.1,2018-12-24 18:51:52,,,most_relevant,com.habitrpg.android.habitica +VincentVanHorn,https://lh3.googleusercontent.com/-FWEdwsk_opk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMaQMOOOhnBIBgUbpdT7ibOenaJhw/photo.jpg,"DL'd to try this app out, but could not get past the initial setup. Buttons missing labels or information, lethargic loading issues, and the graphics are really sub par for what other games host currently. Even the initial avatar appearance has most things locked behind a pay wall, and keeps putting me in a wheelchair! The idea behind the app has a lot of potential, and would be a joy to see if they can make it better and working properly. Will have to wait and see. As is? Not functional.",1,1,,2019-02-13 18:15:39,,,most_relevant,com.habitrpg.android.habitica +Lenore Pedicord,https://lh3.googleusercontent.com/a-/AOh14GhbXxJLJuiEuYHQyPqjYly3fXgCaV7zt4vl-roscl8,"I really wanted to love this app. It looks amazing & has so much potential. However, the app does not sync to your timezone. My day does not reset at midnight, despite what the app says. When I try to change the reset time to match up with the incorrect timezone, it keeps switching back to midnight. So my day randomly resets, usually around 6 or 7 pm. Sometimes, the day doesn't reset for more than 24 hours. & my avatar takes damage for the ""missed"" day. Makes it impossible to effectively use. :(",1,71,1.7.1,2019-01-26 03:03:54,,,most_relevant,com.habitrpg.android.habitica +Hayley Brookshire,https://lh3.googleusercontent.com/a-/AOh14Gilg4RQTgVTm_dtdjCETSHGxvFxQu9qQBnmH83zmUQ,Installed it and it glitched and didn't display many of the images on the 'create your avatar' page. Immediately Uninstalled.,1,0,,2020-01-08 14:41:11,,,most_relevant,com.habitrpg.android.habitica +Danielle Zuleta,https://lh3.googleusercontent.com/a-/AOh14GizH0anV8YrAZ0rLY4y_3iPOr-k71I8JwNu_-VnQw,"Super buggy on Android, have to close and open constantly for anything to work.",1,0,,2020-01-18 00:26:08,"Hi Danielle, sorry to hear about the trouble. Please try updating to the newest version, and let us know if you're still having trouble via mobile@habitica.com and the team will look into it.",2020-01-24 21:37:24,most_relevant,com.habitrpg.android.habitica +Chris Heyman,https://lh3.googleusercontent.com/a-/AOh14GiCqjuF4giE4jDFJ3xHFFoxAAtfOaA4zONhyZTBzA,"So many portions of the app we're not appearing on the screen from the get go, including the first two screens entirely, and even the avartar selections.",1,0,,2019-12-24 21:04:05,"Hi Chris, sorry to hear about this issue. Please let us know if you're still having trouble by sending us a message at mobile@habitica.com and the team will look into it.",2020-01-04 00:52:14,most_relevant,com.habitrpg.android.habitica +Chantelle v.d. Vyver,https://lh3.googleusercontent.com/a-/AOh14Gidlws5-4hRYUBumOihHMGen_29ApMofepU2ggGQA,"Pretty disappointed that the first wall I hit is having to login or register. I get the whole cloud saving thing but at least give me the option and let the risk fall on me for data loss. The app looked promising and I was really impressed with the bit of pixel art I got to see. However, I'm not sure I want to sign up and allow access to my details or habits just yet.",1,4,2.0.2,2019-07-20 21:04:03,,,most_relevant,com.habitrpg.android.habitica +Jadelyn Cerezo,https://lh3.googleusercontent.com/a-/AOh14GjGqVNIB_EGDPrXI-6n-G7jXTPZ-WxNjCOmDjtH3g,I downloaded this app because I thought that the game concept for to-do lists would be really cool. Opened the app just after downloading and tried to register an account and it wouldn't let me log in. Waited another hour and it still wasn't working. Call me impatient but I just couldn't use an app that refused to work.,1,0,,2019-03-05 09:16:24,Hi Jadelyn You may have run into some server issues we had at the time you posted- let us know if you're still having trouble via Menu- About -Report a Bug and the team will look into it.,2019-03-05 21:05:29,most_relevant,com.habitrpg.android.habitica +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Need to be online to use this app. In case you make changes in offline mode. It doesn't sync automatically when online. You need to again make those changes. Enable offline feature and offline data should be synced when ever we are online. Once this is done, you got my 5 star.",1,8,1.7.1,2019-03-17 18:43:12,,,most_relevant,com.habitrpg.android.habitica +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Ever get a phone call from a Salesman whom you don't remember giving your phone number out to? this is the app that does it. it reads your phone number and identity and uploads it to the cloud where it can later be sold to the highest bidder. this app makes sure that it gets your identity because you have to login before you can even use it. once you log in, the game is a huge disappointment. mypoli has everything over this.",1,1,1.7.1,2019-02-16 23:28:30,"Hi there, we're not sure what you're referencing here. We do not sell or share our users' information. If you believe you've found an issue within our app that you'd like to bring to our attention, you can email us at mobile@habitica.com",2019-02-20 23:36:14,most_relevant,com.habitrpg.android.habitica +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Just starting and learning how to use. Unable to set correct due date on tasks. When I select that task has a due date, todays date appears. When I click that date the calendar displays. Allgood so far. But when I select a date on the calendar and close it, the due date is still today.",1,3,1.7.1,2019-02-02 17:44:51,Hi there! Sorry to hear about the trouble. Our team is looking into this bug and hopes to have it fixed for the next version.,2019-02-20 22:44:00,most_relevant,com.habitrpg.android.habitica +Tamara Brown,https://lh3.googleusercontent.com/-LlDb2Cfe9gU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPc5RVP82gXONLXs3BqM58NkcrAqA/photo.jpg,Requires being online to use. Which is a shame because it looks like a fun way to get motivated. Would use if it didn't require constant network or wifi connection (I live and work in rural areas) . Had to uninstall due to inability to use throughout the day.,1,21,1.7,2019-01-10 18:00:12,,,most_relevant,com.habitrpg.android.habitica +Ryan Clower,https://lh3.googleusercontent.com/-8rgZTvXxm1c/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOKzKqls__kVFqEvcQqnoHJWI1pJw/photo.jpg,It's broken. I try to create my account and I can't even use the name I want or customize my character. It's just broken. Nothing displays.,1,0,,2019-12-04 01:11:55,"Hi Ryan, sorry to hear about this issue. Please let us know if you're still having trouble by sending us a message at mobile@habitica.com and the team will look into it.",2019-12-06 01:16:26,most_relevant,com.habitrpg.android.habitica +Mark Ablu,https://lh3.googleusercontent.com/a-/AOh14Gh-JkcaDqotbYoGQ4duf1WSTqyUOrnaZio5mS-Hpg,"First thing I did when I installed the app was disable notifications and yet I still get constantly spammed with notifications all day long. That aside, the app is poorly made. UI is very buggy. Chat functions are glitchy and don't update mezsages correctly. Sometimes the main ui responds to nothing. You can switch tabs and nothing changes till you close and open the app again. Almost all fun and worth while content is locked behind a paywall or subscription.",1,1,2.0.2,2019-08-01 18:55:18,Hi Christian. Thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.,2019-08-01 18:42:38,most_relevant,com.habitrpg.android.habitica +Boi O,https://lh3.googleusercontent.com/-8Bdmr6F3avY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOg2D6iNiA8nkY83guKfDTlL88APw/photo.jpg,App is no longer functional. Cant even Start app without it malfunctioning. Cant change username or character. It was fine before the update!,1,0,,2019-11-16 15:59:08,"Hi Boi O, you may have run into some server issues we had at the time you posted- let us know if you're still having trouble via Menu- About -Report a Bug and the team will look into it.",2019-11-18 17:22:11,most_relevant,com.habitrpg.android.habitica +Allie Klein,https://lh3.googleusercontent.com/-L44eSiSjO_U/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPHTD0lAWMUIUXPPafD_K5pTG4U7A/photo.jpg,"There seems to be no way to actually mark a task as complete, so I had to delete the tasks I actually did complete and therefore have not gotten in-game rewards. There is also no way at all to contact support. If you join the Habitat Help Guild that is supposed to allow you to ask questions, there is no obvious way to post a question there. There is a button to leave the guild but not one to post a question. This app is terrible and is a waste of time.",1,1,2.1.1,2019-10-01 02:26:29,"Hi Allie, sorry to hear about the trouble. If you'd like to send us more detail to help us investigate these issues, you can send that information directly to the support team via Menu - About - Report a Bug.",2019-10-11 00:51:37,most_relevant,com.habitrpg.android.habitica +Wait What,https://lh3.googleusercontent.com/a-/AOh14Gj5z925NJfhFw7mqrMirzGRprpJdAvTxvG3MMrcyg,"I have been wanting to try out this app for a while. I registered, and everything is going great until i get to the character maker screen. i am unable to see my charcter and the customization options. Will send photos if needed. Will change rating once this is fixed.",1,0,1.9.3,2019-06-12 20:37:19,Hi Wait What! Sorry to hear about the trouble. The team is aware of this issue and is working to fix it as soon as possible.,2019-06-14 00:38:08,most_relevant,com.habitrpg.android.habitica +Blake Thomson,https://lh3.googleusercontent.com/a-/AOh14GjMkpNvTHVgajIjjvrH9JRPO2XtXb0wzucfqZsU4VY,App didn't work at all. Was buggy from the start of my sign up where I used my Google account to login.,1,0,,2019-12-13 18:46:25,"Hi Blake, sorry to hear about this issue. Please let us know if you're still having trouble by sending us a message at mobile@habitica.com and the team will look into it.",2019-12-19 18:26:12,most_relevant,com.habitrpg.android.habitica +Hassaan M,https://lh3.googleusercontent.com/a-/AOh14GiOfxaHbuL8Ie0_48bT-dodBiK_GsRUXQCyc5B4Vg,"--Update 2--: Okay, I think I have figured it out. The app doesn't sync with the servers on my WiFi, but works fine on my Data connection. Weirdly enough, the web version works on my laptop using the same WiFi. Please fix. --Update 1--: Reinstalled app. Apparently login with Google is completely broken. Not working at all. That's why maybe the data is not syncing? --Original--:No data loads upon startup; just a blank screen with 0 health, 0 xp, and 0 mana.",1,9,2.1.1,2019-10-01 13:48:44,"Hi Hassaan, sorry to hear about the trouble. We have not had other reports about this problem with Google login. We're happy to investigate if you can send an email to mobile@habitica.com with your username so we can see what might be causing this.",2019-09-26 21:17:31,most_relevant,com.habitrpg.android.habitica +Melanie Ang,https://lh3.googleusercontent.com/a-/AOh14GhSk9k92SZ06QQn5l9gjO1GPXYNhfHuV2JemMAojg,Downloaded the app and the server just did not want to connect and synch my to do list and habits. Gave up after 10 mins.,1,0,,2019-11-16 06:42:34,"Hi Melanie, you may have run into some server issues we had at the time you posted- let us know if you're still having trouble via Menu- About -Report a Bug and the team will look into it.",2019-11-18 17:21:09,most_relevant,com.habitrpg.android.habitica +Dhruv Singhal,https://lh3.googleusercontent.com/a-/AOh14GiTLjlxj9es35p1BLy3rVq9pNkAQYfh3jDobwc0,Unable to download it beyond 78% even as other apps download in a second,1,0,,2020-04-01 17:36:28,,,most_relevant,com.habitrpg.android.habitica +Nathaniel Nolan,https://lh3.googleusercontent.com/a-/AOh14GisVKjPKgUqsVQTonyCsiCi08s2GXJhz13rjT19Jw,I cancelled my subscription back in June of last year and just realized my membership had been reinstated without my permission. I would like a refund for the months between now and then and (another) confirmation that my subscription is cancelled.,1,1,1.4.5,2019-03-07 19:14:24,"Hi Nathaniel, sorry to hear about the trouble. Please email us at admin@habitica.com for assistance with payment issues and we'll look into it right away.",2019-03-20 21:10:15,most_relevant,com.habitrpg.android.habitica +Jenny Franco,https://lh3.googleusercontent.com/a-/AOh14GhswwwzVgIWgmOH1liaeFgLLWb1zzvT6IEFDVdpIQ,I love it at first plus the very idea gamifying a task to make it a habit. It was all fun until the 'I cant use it offline' that really threw me off. Please make it available offline as well.,1,0,,2019-04-11 15:45:02,,,most_relevant,com.habitrpg.android.habitica +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"nothing but connection error after connection error. the concept is great, but I can't even manage to use the service because any time I try to do anything, that's all I'm getting.",1,3,1.7.1,2019-03-05 03:45:59,"Hi there, You may have run into some server issues we had at the time you posted- let us know if you're still having trouble via Menu- About -Report a Bug and the team will look into it.",2019-03-05 21:06:11,most_relevant,com.habitrpg.android.habitica +Henrique de Souza,https://lh3.googleusercontent.com/-L4xr2hL0AMY/AAAAAAAAAAI/AAAAAAAAAkY/AAKWJJP_B0JmLmYFeA3bdxdZtdX3GPSEmA/photo.jpg,"Please make it work again. The app is great, but it is not working and says I'm not connected to the internet, even though I have 2 available connections. Please, fix it!!!",1,2,1.6.1,2018-12-03 10:28:00,"Hi Henrique, sorry to hear about the trouble. If you email mobile@habitica.com the team will look into this.",2018-12-07 01:06:11,most_relevant,com.habitrpg.android.habitica +Angie Rainville,https://lh3.googleusercontent.com/a-/AOh14GgVlQ3JadXDZP-zAKotVRnCgOj8jgCLr4TjaTTZgA,I couldnt even get past setting everything up before it glitched. I couldnt move on from types of goals. A pop up showed up that said something about strength and attributes.,1,0,,2019-05-06 14:34:26,"Hi Angie, sorry about that, this issue should be fixed in the latest update (2133). If you're still having trouble, we're happy to investigate and it helps if you send a bug report directly to the dev team via Menu - About - Report a Bug.",2019-05-07 16:41:36,most_relevant,com.habitrpg.android.habitica +Vineet Chauhan,https://lh3.googleusercontent.com/a-/AOh14GjmSDFSgK6sAXUANO8-AAn4AeMQNfTLtcdZUxF1,"After adding task to the app, it just doesn't shows up.",1,0,,2020-01-20 04:42:13,"Hi Vineet, sorry to hear about the trouble. Please try updating to the newest version, and let us know if you're still having trouble via mobile@habitica.com and the team will look into it.",2020-01-24 21:43:39,most_relevant,com.habitrpg.android.habitica +Stephan,https://lh3.googleusercontent.com/a-/AOh14GjNfP-3s8I2RRrJPnK_g3q7v2t2KNqBQQWKUot-cw,"Online? really? register? really? There's two other apps in the suggested/similar apps banner that are better than this & they're free to use with out registration (why?! for this type of app) , full & offline ( again)",1,7,1.9.3,2019-06-15 05:37:05,,,most_relevant,com.habitrpg.android.habitica +James Hay,https://lh3.googleusercontent.com/a-/AOh14GhODw-3CerfmgGhv6uyt3V0Crlbc32kwsI0QCm8,Update: problem fixed. Did you people just do another update? Because the app is completely screwed up. It can't recognize that my phone is connected to the internet.,1,2,1.5.1,2018-09-27 05:32:43,"Hi James, if you're still having trouble and would like help, you can reach the team at mobile@habitica.com",2018-10-11 17:01:50,most_relevant,com.habitrpg.android.habitica +erza ethan,https://lh3.googleusercontent.com/a-/AOh14GgDkTCgMActqNvKPtSMuYZnohkRGQYdi_MvBFFa,Just installed. Keyed in all tasks n to-do list. Server error. Lost everything. Redo. Server error. Lost. Kept repeating. Frustrating = Uninstalled.,1,0,,2019-03-05 10:28:39,"Hi Erza, You may have run into some server issues we had at the time you posted- let us know if you're still having trouble via Menu- About -Report a Bug and the team will look into it.",2019-03-05 21:05:22,most_relevant,com.habitrpg.android.habitica +Josel Sanoria,https://lh3.googleusercontent.com/a-/AOh14Gimgxokp_cUfreuhM6lffhOkBKlvClI15jEJM4HVA,It keeps lagging and dificult to select the traits i want for my character... ugh ! Not worth it UNINSTALL !,1,0,,2019-11-25 13:43:34,"Hi Josel, thanks for this thoughtful review. You may have run into some server issues we had at the time you posted- let us know if you're still having trouble via Menu- About -Report a Bug and the team will look into it.",2019-12-06 01:09:16,most_relevant,com.habitrpg.android.habitica +Tarek Barghouti,https://lh3.googleusercontent.com/a-/AOh14GiqElbEXwHhA_EhKnEg6z8USOGRGkgsQuWr5B5l,"It took 3 tries to get registered, now it wont let me change anything in character creation. I didnt even make it to setting up anything beyond skin tone before it wouldn't let me select anything. Awesome idea, crappy execution. Womp womp.",1,3,2.0.3,2019-08-19 19:23:15,"Hi Tarek, sorry to hear about this issue. Your character should update to your choices once you select a task list and pull down. In any case we've let the developers know about this issue and they are working to fix it for the next update! You can send us additional information via Menu - About - Report a Bug if you would like.",2019-08-23 23:15:50,most_relevant,com.habitrpg.android.habitica +Ela,https://lh3.googleusercontent.com/-DxqVj6cXWiI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN07MQ3fz8r8RCADbMOJjUmIXb49g/photo.jpg,"Seems broken - cant complete the process of creating new tasks, so I'm just stuck with a huge empty menu I cant change. Loved the idea but this is broken and unusable.",1,1,1.9.3,2019-06-16 21:19:11,"Hi Ela, sorry to hear about this issue. Please try updating to the newest version, and let us know if you're still having trouble via Menu - About - Report a Bug and the team will look into it.",2019-06-25 18:39:47,most_relevant,com.habitrpg.android.habitica +Bogart Zhivago,https://lh3.googleusercontent.com/-anEjONxEYqg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMTz-HYhwzVtiLm8M_MY5kpIjsZuQ/photo.jpg,I CANNOT CHANGE the order of dailies which is frustrating since normally I would like to have them in chronological order.,1,3,1.7,2019-01-22 07:58:40,,,most_relevant,com.habitrpg.android.habitica +Flamezeal,https://lh3.googleusercontent.com/a-/AOh14GgLxh1IQ3aGtvNzU48hdwGXmOtFBuySvFCOdMQ6TQ,"App worked fine till they put in the new username update, now there's a bug where you can't get into the app because every name is taken",1,1,1.8.1,2019-04-25 15:35:50,"Hi Flamezeal, sorry to hear about the trouble! Please email us at mobile@habitica.com and we'll be happy to help you out with this.",2019-05-02 19:19:07,most_relevant,com.habitrpg.android.habitica +Roxy Reed,https://lh3.googleusercontent.com/-1uxDm4DXM7M/AAAAAAAAAAI/AAAAAAAAARI/AAKWJJME4rHT48KzsLwWNL6Z5er9qrtecg/photo.jpg,I keep getting a message saying the app can't connect to the server and every time I tap on a different colour of skin or shirt it stays the same.,1,1,1.5.1,2018-09-26 02:28:31,"Hi Roxy, we had a server outage. We apologize for the inconvenience. The app should be working as normal now.",2018-09-26 17:07:27,most_relevant,com.habitrpg.android.habitica +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,This app is bullocks.I downloaded it and it ran smoothly on my phone and i setup my avatar my habits and my daily task and then it just stopped working and couldn't open the app again!,1,0,,2019-02-04 10:46:33,Hi there! Sorry to hear about the trouble. If you email mobile@habitica.com someone from the team will look into this and help.,2019-02-20 23:01:10,most_relevant,com.habitrpg.android.habitica +Jessica Teeple,https://lh3.googleusercontent.com/a-/AOh14GhxYhEK4RpMUuCnSB2r1S-2ikHI4aFyH5xkri6I9g,The customization screen at the beginning of set-up doesn't work. Tasks have tagging section with no clear way to actually add tags to it.,1,15,2.0.3,2019-08-18 13:46:27,"Hi Jessica, sorry to hear about this issue. Your character should update to your choices once you select a task list and pull down. In any case we've let the developers know about this issue and they are working to fix it for the next update! You can send us additional information via Menu - About - Report a Bug if you would like.",2019-08-23 23:10:07,most_relevant,com.habitrpg.android.habitica +Whitney Hodgkins,https://lh3.googleusercontent.com/a-/AOh14GhsKWVbujPQ-xnCMZhM1v3Q54lP7ydVet9xU4PNlA,"I was excited to try this app, but like many others have said, the customization screen doesn't work. Let me know when it's fixed and I'll update and hopefully be able to start using it.",1,9,2.0.3,2019-08-20 01:35:43,"Hi Whitne, sorry to hear about this issue. Your character should update to your choices once you select a task list and pull down. In any case we've let the developers know about this issue and they are working to fix it for the next update! You can send us additional information via Menu - About - Report a Bug if you would like.",2019-08-23 23:15:57,most_relevant,com.habitrpg.android.habitica +Pax Margret,https://lh3.googleusercontent.com/a-/AOh14Gj3RHK-h9HyqqgTFOWP8hx73WSLP_zTCoIm4ULuLQ,"i cannt acces my account anymore since their ""password reset"" feature does not work. tried on my iphone, android oreo, web version. i don't receive any email to reset my password.",1,0,2.0.2,2019-07-17 14:20:30,Hi Pax! Sorry to hear about this issue. We are currently fixing an issue with these emails. Please contact us directly at admin@habitica.com and one of the devs will manually send you a reset link ASAP.,2019-07-23 16:41:54,most_relevant,com.habitrpg.android.habitica +Sam Y,https://lh3.googleusercontent.com/-zdpF0fY9U6I/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMb-5kXoo3NELfv2HfHWVQj2TzC-Q/photo.jpg,"impossible to register, circle, circle, circle... and nothing",1,0,,2020-02-20 19:29:30,"Hi Sam, sorry to hear about this issue. Please try updating to the newest version, and let us know if you're still having trouble via mobile@habitica.com and the team will look into it.",2020-02-21 00:11:10,most_relevant,com.habitrpg.android.habitica +Jisoo Kim,https://lh3.googleusercontent.com/a-/AOh14Gg5WZXOBTJFw7Yc8V2rvGcKcaIl2MNrpGyL818w,"Uninstalling, took forever to load when my internet connection is just working fine on other apps.",1,1,1.7,2019-01-22 14:17:54,,,most_relevant,com.habitrpg.android.habitica +Kelly Madison,https://lh3.googleusercontent.com/a-/AOh14Gi7_5d_UK6AqQmu3vvkdIXE8LzEJUFaOlwnZNmR,I AM SPECIFICALLY LOOKING FOR A GAMIFIED PRODUCTIVITY APP. MY REVIEW OF YOURS WHICH IS VERY LACKING: Dark theme is missing! This one appears to be for 5 year olds! Can you make a NON-CHILD app similar to this but for REGULAR PEOPLE not 5 year old RPG gamers? I avoided yours for a long time but still nothing exists yet for adults. I hate RPG (cause I'm not an anti-social loser) but want to gamify my productivity with public leaderboards in an app. Thanks. Looks well made but I don't want it.,1,0,,2019-08-28 05:20:43,"Hi Kelly, thank you so much for leaving us this thoughtful review. Sounds like an app based on RPG gaming is perhaps not the productivity solution you're looking for. Thanks for giving us a try, and we wish you best of luck finding a productivity app that better suits your personal tastes!",2019-08-08 20:20:01,most_relevant,com.habitrpg.android.habitica +Darkest Love,https://lh3.googleusercontent.com/a-/AOh14GiPuSYcbH8xoZkFht4-wZ_P7FMdbGf4gfPOySxBjg,confusing and definitely didn't motivate me to do tasks. just spent hours trying to figure out how to add personalized tasks.,1,0,1.9.3,2019-06-16 14:51:27,"Hi Darkest Love, thanks for your review! We'll keep your feedback in mind as we continue to work to improve Habitica. You can contact us directly by going to Menu - About - Send Feedback if you'd like to give us additional details.",2019-06-25 18:37:28,most_relevant,com.habitrpg.android.habitica +Nikki Ebora,https://lh3.googleusercontent.com/a-/AOh14Gg5fQ_F80NzZhexY-etzjcmM1pBwrXQV6YjE6XJiQ,"I can use Habitica on the browser, but I can't login via Facebook in the app. The Facebook login shows up, I enter my credentials, then nothing.",1,0,,2018-09-12 15:38:07,"Hi Nikki, Sorry to hear about the trouble. If you'd be willing to send a report to mobile@habitica.com we'll be happy to investigate this issue.",2018-09-13 17:37:05,most_relevant,com.habitrpg.android.habitica +daniel haynes,https://lh3.googleusercontent.com/-noc9-Mf22YQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOfsj1TM0TJf8614jHu86OtOHdtWw/photo.jpg,Won't connect to server. Will rate better when this issue is fixed. I'm using a Samsung Galaxy Note 8,1,2,1.5.1,2018-09-26 00:23:47,"Hi daniel, we had a server outage. We apologize for the inconvenience. The app should be working as normal now.",2018-09-26 17:08:18,most_relevant,com.habitrpg.android.habitica +Ramon Sua,https://lh3.googleusercontent.com/-GMR74CscROs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPNa6HEby_X7HuSSv3W7QLLcgwGgQ/photo.jpg,"beginning setup wasn't loading at all. signed up using Facebook. since it was not loading, i just clicked next. now I'm stuck with my Avatar with no way to change",1,1,2.1.1,2019-10-01 04:05:52,"Hi Ramon, sorry to hear about the confusion. We're happy to help you through these questions in detail if you contact us via Menu - About - Report a Bug.",2019-10-07 18:55:26,most_relevant,com.habitrpg.android.habitica +Syretia,https://lh3.googleusercontent.com/a-/AOh14Gh0JnYqUNNeFlW-vMgIk5iq4vAiCAUjRTJUyU-wAA,"after signing in, I get random notifications telling me things I absolutely do not care about. I haven't even added any tasks and it's already telling me to join groups and blah blah blah... no thank you.",1,10,2.1,2019-09-29 21:05:15,"Hi Syretia, thank you so much for this very thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-10-07 18:52:14,most_relevant,com.habitrpg.android.habitica +Riri,https://lh3.googleusercontent.com/a-/AOh14GjwVEioMvP9YQmHd-Bhg536exdEK-65gbzQu9HyqA,Great app but only if it was an offline app i would've given it a five star... please fix this...,1,0,2.0.2,2019-07-17 09:10:46,,,most_relevant,com.habitrpg.android.habitica +Sierra Thompson,https://lh3.googleusercontent.com/-YRHVDHIb6kk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMcwrriFm6jEeNCnr3qAxFHHeEAqA/photo.jpg,Awful graphics. Idea ia great but the graphics need a major update. Can't tell the different between anything in this game. Overall disappointed.,1,0,,2019-09-07 02:59:00,"Hi Sierra, thanks for your review. Our artwork is done by volunteers from our community and is intended to evoke a retro style. Sorry it's not your cup of tea!",2019-09-12 19:23:41,most_relevant,com.habitrpg.android.habitica +Ashley Erlach,https://lh3.googleusercontent.com/a-/AOh14GjdDoIk1bEYIMeYP2FtfVDoul5gOEu6xJOpQo7waA,"Definitely not for me, it was confusing. But hey if you are a gamer and suffering from mental health stuff. its for you",1,0,,2019-06-07 21:52:38,"Hi Ashley, thanks so much for taking the time to leave such a thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can contact us directly by going to Menu - About - Send Feedback if you'd like to give us additional details.",2019-06-14 00:45:16,most_relevant,com.habitrpg.android.habitica +Eduard v.d. W,https://lh3.googleusercontent.com/-arjiNzwKOPg/AAAAAAAAAAI/AAAAAAAAK94/AAKWJJObLuRANT8ZsI6u5AYL6lHyaLqm6A/photo.jpg,"Doesn't work. Nothing happens when signing in with Google and when creating a new account, it just shows ""server timeout"".",1,3,2.0.2,2019-07-24 14:49:45,"Hi Eduard, sorry to hear about the trouble. We're happy to help- please send an email to mobile@habitica.com including your username and we can look into this.",2019-08-01 18:38:57,most_relevant,com.habitrpg.android.habitica +Penzalza Ink,https://lh3.googleusercontent.com/a-/AOh14Gjvybm-04pzzeOoktW75GoMgaetD4pgjIV9HfAP,Uninstalled. Still cannot remove background to blank. Edit: Yep still the same. Also please put the free backgrounds at the top. This is from only within the app by the way.,1,0,,2019-08-16 16:29:24,"Hi Penzalza, sorry to hear about the continued confusion. Please contact us via Menu - About - Report a Bug and the team will look into it.",2019-07-23 16:24:55,most_relevant,com.habitrpg.android.habitica +Reece Parry,https://lh3.googleusercontent.com/a-/AOh14GhFQ-fPL76KE31mssj6JF82Kn8syD9HuWjfgZ0x8g,Constant connection drop outs. Will update review when this is fixed.,1,1,1.7.1,2019-03-05 06:55:59,"Hi Reece, You may have run into some server issues we had at the time you posted- let us know if you're still having trouble via Menu- About -Report a Bug and the team will look into it.",2019-03-05 21:05:40,most_relevant,com.habitrpg.android.habitica +ArmandE le Hanie,https://lh3.googleusercontent.com/a-/AOh14GgOiknu2wt97nHyZJhmwRs0AdkPIVzZ5l7Elcrv,It doesn't work. Worked fine first few hours now it keeps saying it can't connect to the server,1,3,1.7,2019-01-21 04:51:10,,,most_relevant,com.habitrpg.android.habitica +Katie Stotler,https://lh3.googleusercontent.com/a-/AOh14Gjs3PL4eWgbRDOZKpE56FfnSGzuaOKDXI-Wwm-n,Kept bugging out trying to register/log in,1,0,,2020-03-28 05:21:15,Oh no! You probably can't reach the Report-a-bug menu if you can't get registered. Please let us know if you're still having trouble by sending us a message at mobile@habitica.com and the team will look into it.,2020-04-01 04:29:36,most_relevant,com.habitrpg.android.habitica +Gabriel Soares,https://lh3.googleusercontent.com/-1kqbfzSxNg4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMVY3NMFsLtt8h6mekiTsHd37zZuA/photo.jpg,the big problem is that task management should work offline and habitica should have synchronization feature like anki mobile and anki pc.,1,0,1.7,2019-04-14 17:52:57,,,most_relevant,com.habitrpg.android.habitica +Martyn Anderton,https://lh3.googleusercontent.com/a-/AOh14GiyggLppBN36W1N9TrGbVGb3-zPI71han65m8C1BA,"Failed at the first hurdle, couldnt customise my character to even get started. Next button worked thats about it. galaxy S8",1,0,,2019-08-18 17:16:28,"Hi Martyn, sorry to hear about this issue. Your character should update to your choices once you select a task list and pull down. In any case we've let the developers know about this issue and they are working to fix it for the next update! You can send us additional information via Menu - About - Report a Bug if you would like.",2019-08-23 23:14:54,most_relevant,com.habitrpg.android.habitica +Florian Westreicher,https://lh3.googleusercontent.com/a-/AOh14Gj1gBJkKK1onthB9DJeFJ7CdCQpmJGgMoyiP45Bc8Q,"Stuck on setting the user name, no error message etc. Used to be good",1,0,1.4.3,2020-04-05 14:50:40,,,newest,com.habitrpg.android.habitica +Dhruv Singhal,https://lh3.googleusercontent.com/a-/AOh14GiTLjlxj9es35p1BLy3rVq9pNkAQYfh3jDobwc0,Unable to download it beyond 78% even as other apps download in a second,1,0,,2020-04-01 17:36:28,,,newest,com.habitrpg.android.habitica +Deena Pazot,https://lh3.googleusercontent.com/a-/AOh14GjNrk7Jyts9sgaz1owHcAoO-uTjM72KuvkAH1Cx,Waste of time. Unhelpful and unmotivating.,1,0,,2020-04-01 07:40:42,"Sorry it wasn't your cup of tea! If you have specific issues you want to tell us about, you can send us feedback through the app at Menu - About - Send Feedback. Otherwise, we hope you find something that works for you.",2020-04-03 03:56:06,newest,com.habitrpg.android.habitica +Katie Stotler,https://lh3.googleusercontent.com/a-/AOh14Gjs3PL4eWgbRDOZKpE56FfnSGzuaOKDXI-Wwm-n,Kept bugging out trying to register/log in,1,0,,2020-03-28 05:21:15,Oh no! You probably can't reach the Report-a-bug menu if you can't get registered. Please let us know if you're still having trouble by sending us a message at mobile@habitica.com and the team will look into it.,2020-04-01 04:29:36,newest,com.habitrpg.android.habitica +Aria Sound,https://lh3.googleusercontent.com/a-/AOh14GiXFzpLMvBG7Bf9yAXPSLrBpJJwGFNSqHdRNL2L,Too many errors,1,0,,2020-03-28 03:49:26,"Sorry to hear you had issues. You can help us fix bugs by reporting them directly via Menu - About - Report a Bug. If you can't get logged in, you can contact mobile@habitica.com, but please include information about your app version and such. Hope we can get it worked out for you!",2020-04-01 04:31:18,newest,com.habitrpg.android.habitica +Zeb McNeil,https://lh3.googleusercontent.com/-57Mm2_eiqRo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN31vS2ROMvcVhQ75ZeWh4OdETo7w/photo.jpg,"I love it except, and this is a big issue for me, it's totally server based. Want to update anything, but have a bad internet connection? Too bad, it's either going to take forever or fail. I would use and maybe even pay for this app to just have a way to have everything first be saved on my device. So, back to hunting for a to-do app. Edit 3/23: I have to drop my review on this to 1 star. You can manually edit values within the app for stats making any it unreasonable that I need internet.",1,34,2.5,2020-03-23 19:41:45,"Thank you for this thoughtful review, but sorry we couldn't meet your needs. We hope you find an app that works for you :)",2020-04-01 04:33:35,newest,com.habitrpg.android.habitica +Emmanuel G,https://lh3.googleusercontent.com/-QOnntIQ8WvI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNnCLrBKMQFmTdn-4VfODfoAxEUbw/photo.jpg,"It does not seem possible to have a simple shopping list shared with another person... Nice app, but useless.",1,0,2.5,2020-03-19 10:12:03,"Hi Emmanuel, thanks so much for this thoughtful review. You can create a Challenge to share tasks with another person. You can learn more about this here: https://habitica.fandom.com/wiki/Challenges",2020-03-20 22:39:08,newest,com.habitrpg.android.habitica +zanin fayik,https://lh3.googleusercontent.com/a-/AOh14GgqSZu-9rK19fimZFCVk5nabv6JuMdumKk-ZY9e,"I should be able to use the app when offline, and the app should sync the changes whenever connected to the internet. It shouldn't force me to connect with the internet for ticking a checkbox!",1,1,2.5,2020-03-14 10:57:51,"Hi, this is a common feature request. Offline mode would be really complicated, and since Habitica doesn't make money by selling ads or personal information, it's a really small team that hasn't been able to work on that. If you're more connected in the future, I hope you can give us another chance.",2020-04-01 04:39:32,newest,com.habitrpg.android.habitica +Miguel Rosa,https://lh3.googleusercontent.com/a-/AOh14GgppHDdFHqzCmMzAAxtfYzIdpXLutCoKr9bbHJbclc,Buggy as all hell. The advertisement is right. It gamifies tasks... But that's it. No tracking history of your habits. Inaccurate as all hell. Worst of all is you can't delete your account. They'll forever keep your data. I'm sure that's illegal in parts of this country and around the world. Definitely don't use your real email to sign up to test it out.,1,3,2.5,2020-03-09 22:44:29,"Hi Miguel, you can delete your account via Menu - Settings - Authentication. We abide by GDPR guidelines- you may email us at admin@habitica.com if you need any further information about that.",2020-03-13 18:45:37,newest,com.habitrpg.android.habitica +Fathurrahman Menaz,https://lh3.googleusercontent.com/a-/AOh14Gj7IV3w6XG9Soo499odRt01_bqPNciqluyaxobqPQ,Stopped,1,0,2.5,2020-03-01 02:21:41,"Hi Fathurrahman, sorry to hear about the trouble. If you'd like to send us more detail to help us investigate these issues, you can send that information directly to the support team via Menu - About - Report a Bug.",2020-03-13 17:57:05,newest,com.habitrpg.android.habitica +Kiyan Pardakhti,https://lh3.googleusercontent.com/-b2aNeKctvPs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO__9cxTGxODEy1AD6kzJjkPjwRfg/photo.jpg,"Can't even start it properly. Just says ""Path 'profile.name' is required.""",1,0,2.4.4,2020-02-27 01:47:41,"Hi Kiyan, the issue with the character customization screen and adding tasks should be fixed in the latest update that was just pushed. If you're still having trouble, we're happy to investigate. You can send a bug report directly to the dev team via Menu - About - Report a Bug.",2020-02-27 23:57:08,newest,com.habitrpg.android.habitica +Tara Team,https://lh3.googleusercontent.com/-Fa6WcJezBaU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPgk0JHvuLTYAAS0jPhz7IAI6DlLw/photo.jpg,Unfortunately i can not sign up or sign in. By google account or email. I tried a lot. From iran,1,0,2.4.4,2020-02-26 20:48:38,,,newest,com.habitrpg.android.habitica +Timothy R. Dumont,https://lh3.googleusercontent.com/a-/AOh14GhPhPJX73NwWMlTP4UbBzV7ojMvWx6QhlW5EJCcIQ,"Great concept, but I can't even create an avatar. This is a constant bug listed in reviews. The company says that your selections should show up after you start actually using the app, but how can they when we can't even actually CHOOSE anything. I guess I'll try one of the competitors apps.",1,0,,2020-02-26 00:22:08,"Hi Timothy, the issue with the character customization screen and adding tasks should be fixed in the latest update that was just pushed. If you're still having trouble, we're happy to investigate. You can send a bug report directly to the dev team via Menu - About - Report a Bug.",2020-02-27 23:55:59,newest,com.habitrpg.android.habitica +Ian McClaskey,https://lh3.googleusercontent.com/a-/AOh14GictubTY2J97G4ugPJgsCbY6jWEysVDlDk_i9mJfA,"This app is completely unusable on my Note10+ The account creation is riddled with errors and when I finally get into the app, I can't click on any items or add a new item without the app instantly crashing. I was excited by the premise and motivated to start using it, but the experience was downright embarrassing. I'd love for a developer response here to acknowledge these problems and maybe offer some solutions.",1,0,,2020-02-24 21:02:27,"Hi Ian, sorry about that, the issue with the character customization screen and adding tasks should be fixed in the latest update that was just pushed. If you're still having trouble, we're happy to investigate. You can send a bug report directly to the dev team via Menu - About - Report a Bug.",2020-02-27 23:54:19,newest,com.habitrpg.android.habitica +Ivan Ivanov,https://lh3.googleusercontent.com/a-/AOh14GiyqhA-YP-rs6-N8VBqJJd95bfMqBOeJu6gkic5,Mandatory registration,1,0,,2020-02-23 00:19:38,,,newest,com.habitrpg.android.habitica +Sam Y,https://lh3.googleusercontent.com/-zdpF0fY9U6I/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMb-5kXoo3NELfv2HfHWVQj2TzC-Q/photo.jpg,"impossible to register, circle, circle, circle... and nothing",1,0,,2020-02-20 19:29:30,"Hi Sam, sorry to hear about this issue. Please try updating to the newest version, and let us know if you're still having trouble via mobile@habitica.com and the team will look into it.",2020-02-21 00:11:10,newest,com.habitrpg.android.habitica +Aidan Brumsickle,https://lh3.googleusercontent.com/a-/AOh14Ghgv2HcHaM6yJboBRbdZ_ynT7FPqnrkgf414O_ACQ,"Broken from the start, can't do anything",1,0,2.4.3,2020-02-17 01:45:12,"Hi Aidan, , sorry to hear about this issue. Please try updating to the newest version, and let us know if you're still having trouble via mobile@habitica.com and the team will look into it.",2020-02-21 00:10:15,newest,com.habitrpg.android.habitica +Shang Cai,https://lh3.googleusercontent.com/a-/AOh14GiOgXEDDCKUdjJOleA42VmfYAYrqgVZuqCcCs9QKg,"Doesn't seem to work on OP 6T, can go through character creation, but doesnt let me customize or select anything. half of the UI shows up blank.",1,0,2.4.3,2020-02-15 21:26:00,"Hi Shang, sorry to hear about this issue. Your character should update to your choices once you select a task list and pull down. In any case we've let the developers know about this issue and they are working to fix it for the next update! You can send us additional information via Menu - About - Report a Bug if you would like.",2020-02-21 00:14:32,newest,com.habitrpg.android.habitica +Datboisfathea,https://lh3.googleusercontent.com/a-/AOh14Gh-jan2qvUR56BNjx9v_U9kz14qWZ0E8lhACWsY5TE,Cant see my character,1,0,2.4.3,2020-02-15 19:34:23,"Hi there, sorry to hear about this issue. Your character should update to your choices once you select a task list and pull down. In any case we've let the developers know about this issue and they are working to fix it for the next update! You can send us additional information via Menu - About - Report a Bug if you would like.",2020-02-21 00:14:25,newest,com.habitrpg.android.habitica +Ryan Barnes,https://lh3.googleusercontent.com/-FcXoiWw1naQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPTf6LPhGDp57XXRXpSqIb-6T6rtA/photo.jpg,App has no images on S10+ and is completely unusuable,1,1,2.3,2020-02-14 01:01:00,"Hi Ryan, sorry to hear about this issue. Please try updating to the newest version, and let us know if you're still having trouble via mobile@habitica.com and the team will look into it.",2020-02-21 00:09:36,newest,com.habitrpg.android.habitica +Joshama Listandi,https://lh3.googleusercontent.com/-x212XsMaH_c/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOIKoPI34B9v5p3VT9rI_LE5dAVdQ/photo.jpg,"Would love to actually get started with this app, but for whatever reason I can't even build my avatar. None of the options for selecting what I want my avatar to look like actually show up on the screen, they're all completely invisible.",1,0,2.4.3,2020-02-12 15:15:10,"Hi Joshama, sorry to hear about this issue. Your character should update to your choices once you select a task list and pull down. In any case we've let the developers know about this issue and they are working to fix it for the next update! You can send us additional information via Menu - About - Report a Bug if you would like.",2020-02-13 20:36:59,newest,com.habitrpg.android.habitica +Alexandra Zelek,https://lh3.googleusercontent.com/a-/AOh14GgybI9FCFCEs37MJ1JYWuSUfcgMBcu3x-lJtmH3Wg,I was looking forward to using this app. But it wont even let me pick out an avatar. Things just go blank on the app and tells me I'm missing information when I clearly am not. What a bummer,1,1,2.4.3,2020-02-07 03:55:51,"Hi Alexandra, sorry to hear about this issue. Your character should update to your choices once you select a task list and pull down. In any case we've let the developers know about this issue and they are working to fix it for the next update! You can send us additional information via Menu - About - Report a Bug if you would like.",2020-02-13 20:29:29,newest,com.habitrpg.android.habitica +Asad Ahmed,https://lh3.googleusercontent.com/a-/AOh14GjRfmxjWthldWuRygd1i8R4b6xSz1bzdXs6bNBqfg,App has many bugs. 1. Start screen doesn't display first 3 slides. User creating is totally not functional. I'm using both Android 9 and Android 10 same bugs.,1,1,2.4.3,2020-02-05 18:39:51,"Hi Asad, sorry to hear about this issue. Your character should update to your choices once you select a task list and pull down. In any case we've let the developers know about this issue and they are working to fix it for the next update! You can send us additional information via Menu - About - Report a Bug if you would like.",2020-02-06 23:59:29,newest,com.habitrpg.android.habitica +Ross,https://lh3.googleusercontent.com/a-/AOh14Ghx73mTtO6MXRyRiGO5mMqFBDR_oCn6rO6G5X7gLg,"The two starting pages were blank, same as character customization. I saw another comment and there's any new version to update. I was excited to try this app but I couldn't :(",1,0,2.4.2,2020-02-03 21:41:16,"Hi Ross, sorry to hear about this issue. Please try updating to the newest version (2.4.3), and let us know if you're still having trouble via mobile@habitica.com and the team will look into it.",2020-02-06 23:57:54,newest,com.habitrpg.android.habitica +C. C. G,https://lh3.googleusercontent.com/a-/AOh14Gi9l0__BF-_YNaezG_kiPQzV4mAzct8aKZoERkBsA,"The first 2 slides are black and I can't see character in the character creation. Some message saying ""path 'profile' required habitica...i hope this gets fix soon. Until then I I'll wait.",1,1,2.4.2,2020-01-31 15:38:26,"Hi, sorry to hear about this issue. Please try updating to the newest version, and let us know if you're still having trouble via mobile@habitica.com and the team will look into it.",2020-02-06 23:53:48,newest,com.habitrpg.android.habitica +Jonathan Medrano,https://lh3.googleusercontent.com/a-/AOh14GiGc328s0B3GawN_yZ5jD8bKA0IcwEAJMBrjjeo-g,"Blank screens when initially launching, character creation screen missing most assets but still semi functional. Unable to begin. Oneplus 6T A10",1,1,2.4.2,2020-01-28 12:54:02,"Hi Jonathan, sorry to hear about this issue. Please try updating to the newest version, and let us know if you're still having trouble via mobile@habitica.com and the team will look into it.",2020-02-06 23:51:38,newest,com.habitrpg.android.habitica +Weston Wheeler,https://lh3.googleusercontent.com/-nZVP2ulr-e8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN0gughEZKb2JaHBcRpTfylaiQibg/photo.jpg,Wont let me change my appearance so I'm stuck as a black female. The user interface is very poorly designed,1,0,2.4.2,2020-01-26 21:49:02,"Hi Weston, sorry to hear about this issue. Your character should update to your choices once you select a task list and pull down. In any case we've let the developers know about this issue and they are working to fix it for the next update! You can send us additional information via Menu - About - Report a Bug if you would like.",2020-02-06 23:50:25,newest,com.habitrpg.android.habitica +Bryan Jackson,https://lh3.googleusercontent.com/-INH9wAupF5A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMmZq0kH3AwugBI9_fE8eBrbZXSsw/photo.jpg,Completely unusable on Android right now. Everything is blank or not loading. Downloaded and deleted right away which is unfortunate because it looked like something I'd be really interested in.,1,0,2.4.2,2020-01-25 15:12:28,"Hi Bryan, sorry to hear about this issue. Please try updating to the newest version, and let us know if you're still having trouble via mobile@habitica.com and the team will look into it.",2020-02-06 23:48:57,newest,com.habitrpg.android.habitica +Darren Singh,https://lh3.googleusercontent.com/a-/AOh14GjooIoI-ejhYJbOUSHTnTsbfcN2lIFiMWtgxnq7uw,The app is broken right now. Downloaded today to try it out and the first two slides were blank. Character creation is all blank. Unfortunately deleted but was looking forward to trying. This has been catalogued by others. When its fixed I'll try again but so far it seems that this app is only really properly supported for iPhone users. (I have a Samsung S9),1,33,2.4,2020-01-20 17:52:26,"Hi Darren, sorry to hear about the trouble. Please try updating to the newest version, and let us know if you're still having trouble via mobile@habitica.com and the team will look into it.",2020-01-24 21:43:50,newest,com.habitrpg.android.habitica +Vineet Chauhan,https://lh3.googleusercontent.com/a-/AOh14GjmSDFSgK6sAXUANO8-AAn4AeMQNfTLtcdZUxF1,"After adding task to the app, it just doesn't shows up.",1,0,,2020-01-20 04:42:13,"Hi Vineet, sorry to hear about the trouble. Please try updating to the newest version, and let us know if you're still having trouble via mobile@habitica.com and the team will look into it.",2020-01-24 21:43:39,newest,com.habitrpg.android.habitica +Danielle Zuleta,https://lh3.googleusercontent.com/a-/AOh14GizH0anV8YrAZ0rLY4y_3iPOr-k71I8JwNu_-VnQw,"Super buggy on Android, have to close and open constantly for anything to work.",1,0,,2020-01-18 00:26:08,"Hi Danielle, sorry to hear about the trouble. Please try updating to the newest version, and let us know if you're still having trouble via mobile@habitica.com and the team will look into it.",2020-01-24 21:37:24,newest,com.habitrpg.android.habitica +Rina Bina,https://lh3.googleusercontent.com/a-/AOh14Gi9y8rrkKBs3ZT3Vt-mLO5ogB6NCMPu5C8KmsJQ,"My phone is a Samsung S8+. The introduction screen is mostly blank, and the character customization seems to be broken because your character and customization options don't show up. I didnt go any further.",1,0,,2020-01-17 16:09:23,"Hi Rina, sorry to hear about the trouble. Please try updating to the newest version, and let us know if you're still having trouble via mobile@habitica.com and the team will look into it.",2020-01-24 21:37:17,newest,com.habitrpg.android.habitica +Edward Hewitt,https://lh3.googleusercontent.com/-9V_-8H8h_uM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOI5imRdDsOWgRRV13SLT4MRwOcjw/photo.jpg,"App broken, don't bother. Like many many other reviewers, this app is totally broken and defunct on Android devices and specifically Galaxy S10 / Note 10 devices. It seems the developer response to all of those reviews is ""please report a bug"" but this has now been an issue for months that they haven't looked into fixing despite dozens of notifications from users that their app is broken. I have instead now downloaded an app by another developer which actually works. I will not be back.",1,7,2.4,2020-01-12 09:44:19,"Hi Edward, thank you so much for this thoughtful review. We have a very small team since we don't make money from ads or selling user information, so improvements may take longer than you're used to from other apps. Thanks for giving us a try.",2020-01-14 18:16:13,newest,com.habitrpg.android.habitica +Hayley Brookshire,https://lh3.googleusercontent.com/a-/AOh14Gilg4RQTgVTm_dtdjCETSHGxvFxQu9qQBnmH83zmUQ,Installed it and it glitched and didn't display many of the images on the 'create your avatar' page. Immediately Uninstalled.,1,0,,2020-01-08 14:41:11,,,newest,com.habitrpg.android.habitica +Muhammad Hanafi,https://lh3.googleusercontent.com/a-/AOh14GjLIo5nbUvdMh8lweOEiW41nU3zm15dP0necTrSYxw,Quite disappointed with this app. Is used to be fine for past years. Currently is really slow when checking my task and is so frustrating at times. This app need improvement on the server and at times server down :(.,1,0,1.4.3,2020-01-07 10:26:07,"Hi Muhammad, sorry to hear about this issue. The devs are working to improve load speed, so keep your eyes out for a new update soon. You can send more details to help us fix it, if you like, by sending us a message at mobile@habitica.com.",2020-01-14 18:14:06,newest,com.habitrpg.android.habitica +Corrine Cassias,https://lh3.googleusercontent.com/-pqCi7NMunTY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP7B77i-YpRpSCbguR5fq4Nc3iFvQ/photo.jpg,Doesnt work the main screen is stuck i can move to the next page.,1,0,2.3,2020-01-07 04:33:57,"Hi Corrine, sorry to hear about this issue. Please let us know if you're still having trouble by sending us a message at mobile@habitica.com and the team will look into it.",2020-01-14 18:13:39,newest,com.habitrpg.android.habitica +Ashley Monson,https://lh3.googleusercontent.com/-c8D5Go5iGWQ/AAAAAAAAAAI/AAAAAAAALH0/AAKWJJOWj9-lvgwenyn5tl9uDoUAKkb2dQ/photo.jpg,"Downloaded this app hoping for a fun way to form new habits, but when I get to the register screen the first two tutorial panels are blank and then the third one lets you link social media accounts. Then I can't save the username and display name I create, and the avatar generator screen doesn't load any options. Opened the app the next day to find nothing I could edit had been saved. Uninstalled and tried registering again with a different account and got the same results. Pretty disappointed",1,0,,2020-01-05 07:06:52,"Hi Ashley, sorry to hear about this issue. Please try updating to the newest version, and let us know if you're still having trouble via mobile@habitica.com and the team will look into it.",2020-01-14 18:09:15,newest,com.habitrpg.android.habitica +Travis Richards,https://lh3.googleusercontent.com/-Yu2yqoOt58Y/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPTRhSXT-vWy5Hp-TtM8N6ukd6WFg/photo.jpg,Same issue as Don Smith who wrote a review on 10/10/19. Will consider this app but the lack of slide visuals and character visuals makes the app in-op. Current phone is the Google pixel 4xl......perhaps I misspoke in regards to the reply. My issue is not with the visuals but the lack of visuals. Everything is blank for me so literally can not see half of the content.,1,0,2.4,2020-01-04 01:24:23,"Hi Travis, thanks for clarifying your feedback. We're sorry to hear about this issue- if you can send us an email with more details via mobile@habitica.com that may help the team investigate.",2020-01-14 18:04:56,newest,com.habitrpg.android.habitica +Louis Payne,https://lh3.googleusercontent.com/a-/AOh14GjWeW8cDOC6YnC7Dlm7BD6ZwL7wqDo9uSuZomP4ow,"Doesn't show character customisation, think it needs an update",1,0,2.4,2019-12-29 22:56:27,"Hi Louis, sorry to hear about the trouble. If you'd like to send us more detail to help us investigate these issues, you can send that information directly to the support team via Menu - About - Report a Bug.",2020-01-04 00:56:02,newest,com.habitrpg.android.habitica +Aaron S,https://lh3.googleusercontent.com/a-/AOh14GjntQvokUXoB3vY6Zlq06FFOUxdUEobUWl2-_Em3Q,Path profile name is required glitch when trying to make avatar on Galaxy s10,1,1,2.4,2019-12-28 07:31:18,"Hi Aaron, sorry to hear about this issue. Please let us know if you're still having trouble by sending us a message at mobile@habitica.com and the team will look into it.",2020-01-04 00:53:49,newest,com.habitrpg.android.habitica +Chris Heyman,https://lh3.googleusercontent.com/a-/AOh14GiCqjuF4giE4jDFJ3xHFFoxAAtfOaA4zONhyZTBzA,"So many portions of the app we're not appearing on the screen from the get go, including the first two screens entirely, and even the avartar selections.",1,0,,2019-12-24 21:04:05,"Hi Chris, sorry to hear about this issue. Please let us know if you're still having trouble by sending us a message at mobile@habitica.com and the team will look into it.",2020-01-04 00:52:14,newest,com.habitrpg.android.habitica +Graham McGregor,https://lh3.googleusercontent.com/a-/AOh14GjvxVqK_aw3vDAY5J-vxr3d_z4VtbqGAcT9WH7SRQ,"Busted from the start. On the first open of the app I got a 3 pane swipe intro and the first 2 were blank purple screens. Then, on the Avatar creation screen the Avatar wasn't visible. When finally getting in to the app the ""help text"" bubble didn't point at anything, just the bottom of the screen for the whole dialogue. This app sounded interesting but it seems there's a complete lack of interest in quality.",1,0,,2019-12-17 13:51:15,"Hi Graham, thank you so much for this thoughtful review. We have a very small team since we don't make money from ads or selling user information,, so improvements may take longer than you're used to from other apps. We appreciate your patience and understanding.",2019-12-19 18:30:06,newest,com.habitrpg.android.habitica +Blake Thomson,https://lh3.googleusercontent.com/a-/AOh14GjMkpNvTHVgajIjjvrH9JRPO2XtXb0wzucfqZsU4VY,App didn't work at all. Was buggy from the start of my sign up where I used my Google account to login.,1,0,,2019-12-13 18:46:25,"Hi Blake, sorry to hear about this issue. Please let us know if you're still having trouble by sending us a message at mobile@habitica.com and the team will look into it.",2019-12-19 18:26:12,newest,com.habitrpg.android.habitica +Rebecca Jordan,https://lh3.googleusercontent.com/a-/AOh14Gi5XyVnbWKjdHvQ1E7SciKl18hYShrlbo5GsejoPg,Want to like it. So far half of the set up items aren't even showing up for my samsung s8. All the purple screens are blank. Was excited to try but it doesn't work.,1,2,2.3,2019-12-10 18:18:22,"Hi Rebecca, sorry to hear about these issues. Please let us know if you're still having trouble via Menu - About - Report a Bug. A direct report will provide details that will help the team fix the issues you've mentioned.",2019-12-12 19:27:42,newest,com.habitrpg.android.habitica +kryke09,https://lh3.googleusercontent.com/a-/AOh14GgOIHLPK7SBMmU0kPmHxm8SAj8JPXxdvaCYwJUnuw,The website works but the app is blank.,1,0,2.3,2019-12-08 16:38:41,"Hi Kryke09, sorry to hear about this issue. Please let us know if you're still having trouble by sending us a message at mobile@habitica.com and the team will look into it.",2019-12-12 19:24:56,newest,com.habitrpg.android.habitica +Michael Parnell,https://lh3.googleusercontent.com/a-/AOh14GjeC5DOjebDbkW0979kngifCjHd4zd3j8OSEDo6qQ,This app has some major problems. It seemed to work fine for the first day of running. After the first day no reminders were executed. Any game armor or weapons could never be equipped. it appeared you could equip them but once you left the screen they become unequipped and they never showed up on the avatar. I mainly got this app for productivity and since the reminders do not work I'm not certain I'm going to continue using it unless these problems are fixed.,1,0,,2019-12-06 16:26:53,"Hi Michael, sorry to hear about the trouble. If you'd like to send us more detail to help us investigate these issues, you can send that information directly to the support team via Menu - About - Report a Bug.",2019-12-12 19:23:19,newest,com.habitrpg.android.habitica +Ryan Clower,https://lh3.googleusercontent.com/-8rgZTvXxm1c/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOKzKqls__kVFqEvcQqnoHJWI1pJw/photo.jpg,It's broken. I try to create my account and I can't even use the name I want or customize my character. It's just broken. Nothing displays.,1,0,,2019-12-04 01:11:55,"Hi Ryan, sorry to hear about this issue. Please let us know if you're still having trouble by sending us a message at mobile@habitica.com and the team will look into it.",2019-12-06 01:16:26,newest,com.habitrpg.android.habitica +Vanshika Garg,https://lh3.googleusercontent.com/a-/AOh14GghWo06uKO9irLjSMLcZQL1yBkIv6YIbJgMykZKCQ,I have been trying to download the app but its just not happening. Please look into it.,1,0,,2019-12-03 08:51:43,"Hi Vanshika, sorry to hear about this issue. Please let us know if you're still having trouble by sending us a message at mobile@habitica.com and the team will look into it.",2019-12-06 01:16:17,newest,com.habitrpg.android.habitica +butsuriboy o,https://lh3.googleusercontent.com/-qFL1qM8RJZk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNedJpM9QXctv5gbQ3yL5cEp6Pn9A/photo.jpg,"App is completely broken. Can't even make an avatar -- none of the options show up. Also, get an error message when trying to show a display name",1,0,2.3,2019-12-02 16:47:17,"Hi butsuriboy, sorry to hear about this issue. Please let us know if you're still having trouble by sending us a message at mobile@habitica.com and the team will look into it.",2019-12-06 01:15:59,newest,com.habitrpg.android.habitica +James Villareal,https://lh3.googleusercontent.com/a-/AOh14GhyuXuVhOg7E673el7YIXrONXnCi3muZ6Tzy2W4N4U,Please make this app offline as well,1,0,,2019-11-30 12:55:48,,,newest,com.habitrpg.android.habitica +David Ramalho,https://lh3.googleusercontent.com/a-/AOh14Gj7_IYCy8YWhZiT0VICcXShewklm6Y8Es1c5N4sZVY,"Wanted to try this, but it doesn't seem to properly load images to create my character or load tutorial pages so I can't even continue from the create screen. Seems like it's broken...",1,0,2.3,2019-11-28 14:06:34,"Hi David, you may have run into some server issues we had at the time you posted- let us know if you're still having trouble via mobile@habitica.com and the team will look into it.",2019-12-06 01:13:10,newest,com.habitrpg.android.habitica +David Nergaard jnr,https://lh3.googleusercontent.com/-MR1Km_bCxzk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM_k6tPAlM5L0XX4OZSvpY7drBPqw/photo.jpg,Will not open disappointed as i was looking forward to using this service,1,0,,2019-11-27 13:25:47,"Hi David, you may have run into some server issues we had at the time you posted- let us know if you're still having trouble via mobile@habitica.com and the team will look into it.",2019-12-06 01:11:07,newest,com.habitrpg.android.habitica +Martin Sweeny,https://lh3.googleusercontent.com/a-/AOh14Gg2swn84tvlab-SMbJ3itPlYUdbOACOHL7CoIg6,"Can't log in. The password input is shorter on the in-app login than both the reset password field as well as the login form on web, so my correct password is rejected",1,0,2.3,2019-11-26 01:10:17,"Hi Martin, sorry to hear about the trouble. Please email our support team at mobile@habitica.com for assistance.",2019-12-06 01:10:35,newest,com.habitrpg.android.habitica +Josel Sanoria,https://lh3.googleusercontent.com/a-/AOh14Gimgxokp_cUfreuhM6lffhOkBKlvClI15jEJM4HVA,It keeps lagging and dificult to select the traits i want for my character... ugh ! Not worth it UNINSTALL !,1,0,,2019-11-25 13:43:34,"Hi Josel, thanks for this thoughtful review. You may have run into some server issues we had at the time you posted- let us know if you're still having trouble via Menu- About -Report a Bug and the team will look into it.",2019-12-06 01:09:16,newest,com.habitrpg.android.habitica +Emanuel,https://lh3.googleusercontent.com/a-/AOh14GjMN2FvR0ZlJsPaxnDLxq14t_cUQBKhgu68_lFypA,App doesn't work,1,0,2.3,2019-11-22 13:20:27,"Hi Emanuel, sorry to hear about this issue. Please let us know if you're still having trouble by sending us a message at mobile@habitica.com and the team will look into it.",2019-12-06 00:47:44,newest,com.habitrpg.android.habitica +Frank Clarke,https://lh3.googleusercontent.com/a-/AOh14GhAHLuDunZsd07nYjGsNAg1eBWsn7GdPBfXHwy3bw,Can't set the username field,1,0,2.3,2019-11-18 22:38:32,"Hi Frank, sorry to hear about this issue. Please let us know if you're still having trouble by sending us a message at mobile@habitica.com and the team will look into it.",2019-11-21 18:25:32,newest,com.habitrpg.android.habitica +Boi O,https://lh3.googleusercontent.com/-8Bdmr6F3avY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOg2D6iNiA8nkY83guKfDTlL88APw/photo.jpg,App is no longer functional. Cant even Start app without it malfunctioning. Cant change username or character. It was fine before the update!,1,0,,2019-11-16 15:59:08,"Hi Boi O, you may have run into some server issues we had at the time you posted- let us know if you're still having trouble via Menu- About -Report a Bug and the team will look into it.",2019-11-18 17:22:11,newest,com.habitrpg.android.habitica +Melanie Ang,https://lh3.googleusercontent.com/a-/AOh14GhSk9k92SZ06QQn5l9gjO1GPXYNhfHuV2JemMAojg,Downloaded the app and the server just did not want to connect and synch my to do list and habits. Gave up after 10 mins.,1,0,,2019-11-16 06:42:34,"Hi Melanie, you may have run into some server issues we had at the time you posted- let us know if you're still having trouble via Menu- About -Report a Bug and the team will look into it.",2019-11-18 17:21:09,newest,com.habitrpg.android.habitica +Alex,https://lh3.googleusercontent.com/-z9eaq2Io4RI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNKe0ybvtrtcjBtE4I_ZPpqXqmyLg/photo.jpg,You need internet access and the server has to be up on their side for you to be able to access your to-do list. Server has been down today and I cant check off or edit my to-do list due to that. Going to be deleting this app. Most other to-do lists work offline.,1,0,2.2.2,2019-11-16 04:38:05,"Hi Alex, sorry for the trouble, let us know if you're still having trouble via Menu- About -Report a Bug and the team will look into it.",2019-11-18 17:15:55,newest,com.habitrpg.android.habitica +Kirsten Lindsay,https://lh3.googleusercontent.com/a-/AOh14GhnStoLAIxWgGNSSpBMW0zWNwBoB-cZQ275El2ZrA,"I had really begun to depend on this app and was having fun. Then I downloaded the update. I now have NOTHING. Not even the IMAGE of an avatar, there's just NOTHING THERE. I have no experience, no level, no coins, NOTHING. I was having a really awful day and this was just icing on the cake. There was so much I put into this game. How can I remember all of the tasks I scheduled for myself? I am so so discouraged.",1,4,2.3,2019-11-16 02:17:02,"Hi Kirsten, you may have run into some server issues we had at the time you posted- let us know if you're still having trouble via Menu- About -Report a Bug and the team will look into it. Sorry for the trouble.",2019-11-18 17:14:57,newest,com.habitrpg.android.habitica +Rasha Tabbakh,https://lh3.googleusercontent.com/a-/AOh14GiUbMUmGYD8WdpevLTXVgcA-wIQqPw83_kfAreU,"I couldn't register , the circle rounds and rounds .. And nothing happens",1,0,2.2.2,2019-11-07 15:53:08,"Hi Rasha, sorry to hear about this issue. Please try updating to the newest version, and let us know if you're still having trouble via mobile@habitica.com and the team will look into it.",2019-11-08 00:33:45,newest,com.habitrpg.android.habitica +Faith Foreman,https://lh3.googleusercontent.com/a-/AOh14GjocFWSCaedTvrt_mvEQ65RHWeZABYc09AxSqYU,"Can't even log in. Seems to stop working or freeze up every time. Just downloaded the app for the first time, can't make a new account or log in. Waste of time, will be looking for other apps that actually let me get past the log in screen.",1,0,2.2.1,2019-10-30 18:48:43,"Hi Faith, sorry to hear about this issue. Please let us know if you're still having trouble by sending us a message at mobile@habitica.com and the team will look into it.",2019-11-05 19:57:22,newest,com.habitrpg.android.habitica +Sam Peterson,https://lh3.googleusercontent.com/a-/AOh14GgHIjkJ8h0JwNPuLoK15bTSt0-PFuHxAjt0FJetAQ,"It's completely broken, things don't show up, error codes from the very beginning, it's just broken",1,2,2.2.1,2019-10-24 19:08:11,"Hi Sam, thank you so much for this thoughtful review. You can help us fix bugs by reporting them directly via Menu - About - Report a Bug. We have a very small team since we don't make money from ads or selling user information, so improvements may take longer than you're used to from other apps. Thanks for your patience.",2019-10-25 00:12:02,newest,com.habitrpg.android.habitica +Bryce DeVaughn,https://lh3.googleusercontent.com/-EV_HD00i_OM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP6VEVxCvauhldxtXuDIOVTDokDqQ/photo.jpg,"As soon as I downloaded the app and made a new account, I couldn't create a new character because under the body, skin, and other options to make your character was blank. When I changed my display name, I got a weird message for 'profile.name' required. The randomize button didn't even work for me either. I left originally because there were many bugs with to-do's and other things and I'm not confident it's functional past the character creator, so I don't see a point to continue. On the S10E",1,10,2.1.1,2019-10-16 10:52:32,"Hi Bryce, sorry to hear about these issues. You're welcome to try updating to the newest version, and let us know if you're still having trouble via Menu - About - Report a Bug and the team will look into it.",2019-10-17 21:29:09,newest,com.habitrpg.android.habitica +Alan Mathews,https://lh3.googleusercontent.com/a-/AOh14GhdQqz-Typ9Kc6KN14y-1lPbvsF6Sp9OiYbDzfBlQ,"I kept getting empty screens when opening the app, so I pressed skip. Filled out the registry info and was taken to character creation where I couldn't see my character or the build options. I could select things like body or hair, but nothing appeared relating to that.",1,0,,2019-10-12 18:36:42,"Hi Alan, sorry to hear about this issue. Please try updating to the newest version, and let us know if you're still having trouble via Menu - About - Report a Bug and the team will look into it.",2019-10-17 21:22:03,newest,com.habitrpg.android.habitica +Don Smith,https://lh3.googleusercontent.com/a-/AOh14GjQjSsEunvFQeYFYV56z_iB_Y7PoVY3MwqCWVYpKA,"I really want to use this app, but on my Galaxy S10, the first 2 of the 3 slides in the introduction before logging in, are blank. The character visuals on the character customization are invisible, and on the settings menu, I scroll down and the options start to overlap each other (hard to describe). I will consider reinstalling after the graphical issues are fixed because it seems like a great app, but currently it's unusable for me.",1,12,2.1.1,2019-10-11 00:01:19,"Hi Don, sorry to hear about the trouble. The mobile team would like to investigate these issues further. It would be helpful if you could send more details via mobile@habitica.com so they can look into this.",2019-10-11 01:01:54,newest,com.habitrpg.android.habitica +Dayle Jackson,https://lh3.googleusercontent.com/-MjbcKD5ACnw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNAU6C2NmVjRQXN_VL4LBTfGgXM3g/photo.jpg,Major issues need all email so I can send you pics pixel 2xl,1,0,,2019-10-10 05:13:26,"Hi Dayle, if you're unable to access the in-app bug reporting via Menu - About - Report a Bug, you can reach the mobile team at mobile@habitica.com and they'll be happy to look into any issues.",2019-10-11 01:00:02,newest,com.habitrpg.android.habitica +Anıl Berksoy,https://lh3.googleusercontent.com/a-/AOh14Ghi1fAjwItzXuBrsqO4rvg_qrVNFzMh-WFXPS2Ncw,Apps been broken from the moment I download need fixing,1,0,2.1.1,2019-10-09 10:11:06,"Hi , sorry to hear about the trouble. If you'd like to send us more detail to help us investigate these issues, you can send that information directly to the support team via Menu - About - Report a Bug.",2019-10-11 00:54:36,newest,com.habitrpg.android.habitica +Aryn Harvey,https://lh3.googleusercontent.com/-dPE1rLWUtis/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOyAbNY1J9wI4mq21gDJGcz3oRf0Q/photo.jpg,Nothing loads up. Probably a bad glitch,1,0,,2019-10-01 22:26:06,"Hi Aryn, sorry to hear about this issue. Please try updating to the newest version, and let us know if you're still having trouble via mobile@habitica.com and the team will look into it.",2019-10-07 18:57:16,newest,com.habitrpg.android.habitica +Hassaan M,https://lh3.googleusercontent.com/a-/AOh14GiOfxaHbuL8Ie0_48bT-dodBiK_GsRUXQCyc5B4Vg,"--Update 2--: Okay, I think I have figured it out. The app doesn't sync with the servers on my WiFi, but works fine on my Data connection. Weirdly enough, the web version works on my laptop using the same WiFi. Please fix. --Update 1--: Reinstalled app. Apparently login with Google is completely broken. Not working at all. That's why maybe the data is not syncing? --Original--:No data loads upon startup; just a blank screen with 0 health, 0 xp, and 0 mana.",1,9,2.1.1,2019-10-01 13:48:44,"Hi Hassaan, sorry to hear about the trouble. We have not had other reports about this problem with Google login. We're happy to investigate if you can send an email to mobile@habitica.com with your username so we can see what might be causing this.",2019-09-26 21:17:31,newest,com.habitrpg.android.habitica +Ramon Sua,https://lh3.googleusercontent.com/-GMR74CscROs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPNa6HEby_X7HuSSv3W7QLLcgwGgQ/photo.jpg,"beginning setup wasn't loading at all. signed up using Facebook. since it was not loading, i just clicked next. now I'm stuck with my Avatar with no way to change",1,1,2.1.1,2019-10-01 04:05:52,"Hi Ramon, sorry to hear about the confusion. We're happy to help you through these questions in detail if you contact us via Menu - About - Report a Bug.",2019-10-07 18:55:26,newest,com.habitrpg.android.habitica +Allie Klein,https://lh3.googleusercontent.com/-L44eSiSjO_U/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPHTD0lAWMUIUXPPafD_K5pTG4U7A/photo.jpg,"There seems to be no way to actually mark a task as complete, so I had to delete the tasks I actually did complete and therefore have not gotten in-game rewards. There is also no way at all to contact support. If you join the Habitat Help Guild that is supposed to allow you to ask questions, there is no obvious way to post a question there. There is a button to leave the guild but not one to post a question. This app is terrible and is a waste of time.",1,1,2.1.1,2019-10-01 02:26:29,"Hi Allie, sorry to hear about the trouble. If you'd like to send us more detail to help us investigate these issues, you can send that information directly to the support team via Menu - About - Report a Bug.",2019-10-11 00:51:37,newest,com.habitrpg.android.habitica +Syretia,https://lh3.googleusercontent.com/a-/AOh14Gh0JnYqUNNeFlW-vMgIk5iq4vAiCAUjRTJUyU-wAA,"after signing in, I get random notifications telling me things I absolutely do not care about. I haven't even added any tasks and it's already telling me to join groups and blah blah blah... no thank you.",1,10,2.1,2019-09-29 21:05:15,"Hi Syretia, thank you so much for this very thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-10-07 18:52:14,newest,com.habitrpg.android.habitica +Wicked Wolfwood,https://lh3.googleusercontent.com/a-/AOh14GjFH2hTIicWDiaI6jD85aTBX2ca_CVWC7D2U0lRuQ,Micro transaction. I wish I could give 0 stars.,1,0,,2019-09-25 21:46:08,"Hello Dahrk, thank you so much for this very thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-09-26 21:29:58,newest,com.habitrpg.android.habitica +Lineage Test,https://lh3.googleusercontent.com/-0ZfxvzrOkYw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNVWBJ29gqhuG4y9lypCGbpUAmGlQ/photo.jpg,"Need to register, immediately deleted",1,0,2.0.4,2019-09-11 16:43:23,,,newest,com.habitrpg.android.habitica +Divya Kumari,https://lh3.googleusercontent.com/a-/AOh14GilOb2oEXayUMIC-NBpYyBTZeA7I68GPBZI76ZqBw,I am unable to download this app. It downloads uptil 82% and then stops. I have a android device,1,0,,2019-09-08 05:19:18,"Hi Divya, sorry to hear about the trouble. We're not sure this issue is on our end, but we're happy to look into it if you can email us some details at mobile@habitica.com.",2019-09-12 19:27:24,newest,com.habitrpg.android.habitica +Sierra Thompson,https://lh3.googleusercontent.com/-YRHVDHIb6kk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMcwrriFm6jEeNCnr3qAxFHHeEAqA/photo.jpg,Awful graphics. Idea ia great but the graphics need a major update. Can't tell the different between anything in this game. Overall disappointed.,1,0,,2019-09-07 02:59:00,"Hi Sierra, thanks for your review. Our artwork is done by volunteers from our community and is intended to evoke a retro style. Sorry it's not your cup of tea!",2019-09-12 19:23:41,newest,com.habitrpg.android.habitica +TR1ckSTeR 98,https://lh3.googleusercontent.com/-RUPe4s_QmOY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNE2we6ycLwGM7S-HLotPBAxlkShw/photo.jpg,"Doesn't work in my country I have to use a VPN for it to work, which sucks of course. Syrian Arab Republic",1,0,,2019-09-02 03:30:35,,,newest,com.habitrpg.android.habitica +Kelly Madison,https://lh3.googleusercontent.com/a-/AOh14Gi7_5d_UK6AqQmu3vvkdIXE8LzEJUFaOlwnZNmR,I AM SPECIFICALLY LOOKING FOR A GAMIFIED PRODUCTIVITY APP. MY REVIEW OF YOURS WHICH IS VERY LACKING: Dark theme is missing! This one appears to be for 5 year olds! Can you make a NON-CHILD app similar to this but for REGULAR PEOPLE not 5 year old RPG gamers? I avoided yours for a long time but still nothing exists yet for adults. I hate RPG (cause I'm not an anti-social loser) but want to gamify my productivity with public leaderboards in an app. Thanks. Looks well made but I don't want it.,1,0,,2019-08-28 05:20:43,"Hi Kelly, thank you so much for leaving us this thoughtful review. Sounds like an app based on RPG gaming is perhaps not the productivity solution you're looking for. Thanks for giving us a try, and we wish you best of luck finding a productivity app that better suits your personal tastes!",2019-08-08 20:20:01,newest,com.habitrpg.android.habitica +Raphi_M __,https://lh3.googleusercontent.com/a-/AOh14Gj3E3sa7b82YIBqtrqAczofL5LWUBU9GNnYAVG3vw,Good app but i can't do anything since To days ago ! Help me please your app je very usefull for me,1,0,,2019-08-26 09:46:54,"Hi Raphi, sorry to hear about this issue. Please let us know if you're still having trouble by sending us a message at mobile@habitica.com and the team will look into it.",2019-08-29 18:57:11,newest,com.habitrpg.android.habitica +Adam Miller,https://lh3.googleusercontent.com/-lK0zNGJ_GmA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMnEAmvZ034c25zpj7e3VWEQCSsWA/photo.jpg,"Annoying, slow, clunky, unresponsive, repetitive",1,0,,2019-08-22 12:08:16,"Hi Adam, thanks for your review! You can help us fix bugs by reporting them directly via Menu - About - Report a Bug.",2019-08-23 23:19:12,newest,com.habitrpg.android.habitica +Whitney Hodgkins,https://lh3.googleusercontent.com/a-/AOh14GhsKWVbujPQ-xnCMZhM1v3Q54lP7ydVet9xU4PNlA,"I was excited to try this app, but like many others have said, the customization screen doesn't work. Let me know when it's fixed and I'll update and hopefully be able to start using it.",1,9,2.0.3,2019-08-20 01:35:43,"Hi Whitne, sorry to hear about this issue. Your character should update to your choices once you select a task list and pull down. In any case we've let the developers know about this issue and they are working to fix it for the next update! You can send us additional information via Menu - About - Report a Bug if you would like.",2019-08-23 23:15:57,newest,com.habitrpg.android.habitica +Tarek Barghouti,https://lh3.googleusercontent.com/a-/AOh14GiqElbEXwHhA_EhKnEg6z8USOGRGkgsQuWr5B5l,"It took 3 tries to get registered, now it wont let me change anything in character creation. I didnt even make it to setting up anything beyond skin tone before it wouldn't let me select anything. Awesome idea, crappy execution. Womp womp.",1,3,2.0.3,2019-08-19 19:23:15,"Hi Tarek, sorry to hear about this issue. Your character should update to your choices once you select a task list and pull down. In any case we've let the developers know about this issue and they are working to fix it for the next update! You can send us additional information via Menu - About - Report a Bug if you would like.",2019-08-23 23:15:50,newest,com.habitrpg.android.habitica +Martyn Anderton,https://lh3.googleusercontent.com/a-/AOh14GiyggLppBN36W1N9TrGbVGb3-zPI71han65m8C1BA,"Failed at the first hurdle, couldnt customise my character to even get started. Next button worked thats about it. galaxy S8",1,0,,2019-08-18 17:16:28,"Hi Martyn, sorry to hear about this issue. Your character should update to your choices once you select a task list and pull down. In any case we've let the developers know about this issue and they are working to fix it for the next update! You can send us additional information via Menu - About - Report a Bug if you would like.",2019-08-23 23:14:54,newest,com.habitrpg.android.habitica +Danielle Crammer,https://lh3.googleusercontent.com/a-/AOh14GiH6ldLQO_aNDovoQnuOLJHrfiOi_KUDrVHwSs2oT8,Wouldn't even let me customize.,1,0,2.0.3,2019-08-18 15:57:03,"Hi Danielle, sorry to hear about this issue. Your character should update to your choices once you select a task list and pull down. In any case we've let the developers know about this issue and they are working to fix it for the next update! You can send us additional information via Menu - About - Report a Bug if you would like.",2019-08-23 23:14:45,newest,com.habitrpg.android.habitica +Jessica Teeple,https://lh3.googleusercontent.com/a-/AOh14GhxYhEK4RpMUuCnSB2r1S-2ikHI4aFyH5xkri6I9g,The customization screen at the beginning of set-up doesn't work. Tasks have tagging section with no clear way to actually add tags to it.,1,15,2.0.3,2019-08-18 13:46:27,"Hi Jessica, sorry to hear about this issue. Your character should update to your choices once you select a task list and pull down. In any case we've let the developers know about this issue and they are working to fix it for the next update! You can send us additional information via Menu - About - Report a Bug if you would like.",2019-08-23 23:10:07,newest,com.habitrpg.android.habitica +Salvator Fel,https://lh3.googleusercontent.com/a-/AOh14GjdfUlHmb1YvYDU9kje6YH-CkocUV-wIYKZmMcmBA,Won't let me customize my avatar except for glasses.,1,0,2.0.3,2019-08-17 15:22:47,"Hi there, sorry to hear about this issue. Your character should update to your choices once you select a task list and pull down. In any case we've let the developers know about this issue and they are working to fix it for the next update! You can send us additional information via Menu - About - Report a Bug if you would like.",2019-08-23 23:09:50,newest,com.habitrpg.android.habitica +Penzalza Ink,https://lh3.googleusercontent.com/a-/AOh14Gjvybm-04pzzeOoktW75GoMgaetD4pgjIV9HfAP,Uninstalled. Still cannot remove background to blank. Edit: Yep still the same. Also please put the free backgrounds at the top. This is from only within the app by the way.,1,0,,2019-08-16 16:29:24,"Hi Penzalza, sorry to hear about the continued confusion. Please contact us via Menu - About - Report a Bug and the team will look into it.",2019-07-23 16:24:55,newest,com.habitrpg.android.habitica +Dave L,https://lh3.googleusercontent.com/a-/AOh14GiiSnGnC68du4zBfxP1qQrxh_obnpLqlgf_2D5QJg,Ganky. Couldn't get it to work right.,1,0,2.0.2,2019-08-03 04:47:36,"Hi Dave, thanks for your thoughtful review! You can help us fix bugs by reporting them directly via Menu - About - Report a Bug.",2019-08-08 20:14:28,newest,com.habitrpg.android.habitica +Mark Ablu,https://lh3.googleusercontent.com/a-/AOh14Gh-JkcaDqotbYoGQ4duf1WSTqyUOrnaZio5mS-Hpg,"First thing I did when I installed the app was disable notifications and yet I still get constantly spammed with notifications all day long. That aside, the app is poorly made. UI is very buggy. Chat functions are glitchy and don't update mezsages correctly. Sometimes the main ui responds to nothing. You can switch tabs and nothing changes till you close and open the app again. Almost all fun and worth while content is locked behind a paywall or subscription.",1,1,2.0.2,2019-08-01 18:55:18,Hi Christian. Thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.,2019-08-01 18:42:38,newest,com.habitrpg.android.habitica +Eduard v.d. W,https://lh3.googleusercontent.com/-arjiNzwKOPg/AAAAAAAAAAI/AAAAAAAAK94/AAKWJJObLuRANT8ZsI6u5AYL6lHyaLqm6A/photo.jpg,"Doesn't work. Nothing happens when signing in with Google and when creating a new account, it just shows ""server timeout"".",1,3,2.0.2,2019-07-24 14:49:45,"Hi Eduard, sorry to hear about the trouble. We're happy to help- please send an email to mobile@habitica.com including your username and we can look into this.",2019-08-01 18:38:57,newest,com.habitrpg.android.habitica +Chantelle v.d. Vyver,https://lh3.googleusercontent.com/a-/AOh14Gidlws5-4hRYUBumOihHMGen_29ApMofepU2ggGQA,"Pretty disappointed that the first wall I hit is having to login or register. I get the whole cloud saving thing but at least give me the option and let the risk fall on me for data loss. The app looked promising and I was really impressed with the bit of pixel art I got to see. However, I'm not sure I want to sign up and allow access to my details or habits just yet.",1,4,2.0.2,2019-07-20 21:04:03,,,newest,com.habitrpg.android.habitica +Troy Fergus,https://lh3.googleusercontent.com/a-/AOh14GjOTB-6aLeFxX0mNDPFTeaQa-t2VhGJl0zPNgJSwJM,Terrible moderator community. Anti religious. Reply: I've already had numerous interactions with Habatica mods and I've no desire to reply further. When I questioned why the website had an anti-Christian stance I was banned. Nothing more needs to be said.,1,0,1.1.6,2019-07-20 19:53:27,"Hi Troy! We strive to make Habitica a welcoming and safe community for all ages, cultures, and belief systems, and ask all users to abide by our Terms of Service and Community Guidelines which must be accepted to use the chats and site. If you'd like to further discuss your situation, we're happy to chat! Shoot us an email at admin@habitica.com",2018-06-01 23:06:34,newest,com.habitrpg.android.habitica +Pax Margret,https://lh3.googleusercontent.com/a-/AOh14Gj3RHK-h9HyqqgTFOWP8hx73WSLP_zTCoIm4ULuLQ,"i cannt acces my account anymore since their ""password reset"" feature does not work. tried on my iphone, android oreo, web version. i don't receive any email to reset my password.",1,0,2.0.2,2019-07-17 14:20:30,Hi Pax! Sorry to hear about this issue. We are currently fixing an issue with these emails. Please contact us directly at admin@habitica.com and one of the devs will manually send you a reset link ASAP.,2019-07-23 16:41:54,newest,com.habitrpg.android.habitica +Riri,https://lh3.googleusercontent.com/a-/AOh14GjwVEioMvP9YQmHd-Bhg536exdEK-65gbzQu9HyqA,Great app but only if it was an offline app i would've given it a five star... please fix this...,1,0,2.0.2,2019-07-17 09:10:46,,,newest,com.habitrpg.android.habitica +Zena Asura,https://lh3.googleusercontent.com/a-/AOh14GhChBLFvkPFpKk2QLnjtZUlT5ARCPYKmKzHNoQuEA,got banned for talking about not politically correct stuff in a respectful manner. didnt even had a chance to discuss or clear my name. would not recommend bc of it being heavily monitored and censored. it does not facilitate what it was aiming for a community for learning and growth. after pouring 2 months and money into it was terribly disappointed after my ban. yes perma ban. no warnings no nothing. disgusting. outsourcing will power is a bad idea anyways.,1,3,2.0.1,2019-07-06 21:34:54,"Hi Zena, thank you for your review. Your account may have been blocked for violating our Terms of Service. Please contact us via admin@habitica.com if you'd like to discuss this further,.",2019-07-23 16:30:22,newest,com.habitrpg.android.habitica +Ela,https://lh3.googleusercontent.com/-DxqVj6cXWiI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN07MQ3fz8r8RCADbMOJjUmIXb49g/photo.jpg,"Seems broken - cant complete the process of creating new tasks, so I'm just stuck with a huge empty menu I cant change. Loved the idea but this is broken and unusable.",1,1,1.9.3,2019-06-16 21:19:11,"Hi Ela, sorry to hear about this issue. Please try updating to the newest version, and let us know if you're still having trouble via Menu - About - Report a Bug and the team will look into it.",2019-06-25 18:39:47,newest,com.habitrpg.android.habitica +Darkest Love,https://lh3.googleusercontent.com/a-/AOh14GiPuSYcbH8xoZkFht4-wZ_P7FMdbGf4gfPOySxBjg,confusing and definitely didn't motivate me to do tasks. just spent hours trying to figure out how to add personalized tasks.,1,0,1.9.3,2019-06-16 14:51:27,"Hi Darkest Love, thanks for your review! We'll keep your feedback in mind as we continue to work to improve Habitica. You can contact us directly by going to Menu - About - Send Feedback if you'd like to give us additional details.",2019-06-25 18:37:28,newest,com.habitrpg.android.habitica +Stephan,https://lh3.googleusercontent.com/a-/AOh14GjNfP-3s8I2RRrJPnK_g3q7v2t2KNqBQQWKUot-cw,"Online? really? register? really? There's two other apps in the suggested/similar apps banner that are better than this & they're free to use with out registration (why?! for this type of app) , full & offline ( again)",1,7,1.9.3,2019-06-15 05:37:05,,,newest,com.habitrpg.android.habitica +Wait What,https://lh3.googleusercontent.com/a-/AOh14Gj5z925NJfhFw7mqrMirzGRprpJdAvTxvG3MMrcyg,"I have been wanting to try out this app for a while. I registered, and everything is going great until i get to the character maker screen. i am unable to see my charcter and the customization options. Will send photos if needed. Will change rating once this is fixed.",1,0,1.9.3,2019-06-12 20:37:19,Hi Wait What! Sorry to hear about the trouble. The team is aware of this issue and is working to fix it as soon as possible.,2019-06-14 00:38:08,newest,com.habitrpg.android.habitica +Aharon Shube,https://lh3.googleusercontent.com/-sBuaUFFTjAU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJME3mTxtcj6ohxeGItc6bkZxtxeGg/photo.jpg,"I like the concept because I've been trying to gamify my free time for a while, assigning a predifined score to each habit practiced the most during every hour, and all I wanted was the positive and the negative habits to affect the same progress bar, with the possibility to keep track of a daily score, with a possibly negative value. It's a damn shame but this aint for me. I wish it was more customisable",2,7,2.4.2,2020-02-01 22:48:14,"Hi Aharon, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2020-02-06 23:54:37,most_relevant,com.habitrpg.android.habitica +Alex Cooper,https://lh3.googleusercontent.com/a-/AOh14GgXFOhsc2kGd-nqh2-Jw6_0VVuOPaxB1qDPzErs,"Good app, but very buggy and support is completely unhelpful. There's no way to change your subscription level in the app or play store. Even if you cancel the app will think you're still subscribed. So basically when you pick a subscription level you are fully committed to it because the devs are too incompetent and uncaring to help. When using a choosing skill the habits n dailies show up like 10% of the time and the devs basically said ""oh well, we can't fix that"" when I mentioned it.",2,23,2.4.2,2020-02-02 17:03:18,"Hi Alex, we're very sorry to hear you had this experience. Our customer service team will be happy to help with any refund you need if you email us at admin@habitica.com. We care very much about giving our users the best assistance and experience possible.",2020-02-06 23:56:36,most_relevant,com.habitrpg.android.habitica +Alex T,https://lh3.googleusercontent.com/a-/AOh14Gg6Cw-Q9DUjo0KsIXj4elkk4yT87XbJPkY1ZbM60Q,Set up was glitchy. I didnt get further than that. It's a great concept though and the art is cute.,2,0,2.4.3,2020-02-06 14:15:55,"Hi Alex, sorry to hear about this issue. Please let us know if you're still having trouble by sending us a message at mobile@habitica.com and the team will look into it.",2020-02-07 00:00:55,most_relevant,com.habitrpg.android.habitica +Jeremy Lemon,https://lh3.googleusercontent.com/a-/AOh14Gh5icreFkIJotO5nlP1WGuE5krKOgiOvhBdBhnHkg,"Excited to try it out, but the app crashes whenever I try to create or edit tasks!",2,1,2.5,2020-02-25 05:49:12,"Hi Jeremy, sorry about that, the issue with adding tasks should be fixed in the latest update that was just pushed today. If you're still having trouble, we're happy to investigate. You can send a bug report directly to the dev team via Menu - About - Report a Bug.",2020-02-27 23:54:46,most_relevant,com.habitrpg.android.habitica +Andrea,https://lh3.googleusercontent.com/-TDBSFnsdMNE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNFW9aTZ5-34rpDtAeNTJJEDVfl-A/photo.jpg,I love the idea but it's not working on my Samsung S10e. Like the main screen is just purple when I first open and then the features for designing my character didn't show any options. I'll happily try again once bugs are worked out. Keep us posted!,2,1,2.4,2020-01-15 01:53:36,"Hi Andrea, sorry to hear about this issue! Please try updating to the newest version, and let us know if you're still having trouble via mobile@habitica.com",2020-01-24 21:31:48,most_relevant,com.habitrpg.android.habitica +Eugene Kuznetsov,https://lh3.googleusercontent.com/a-/AOh14GhvY33BibZOpnzMhR1SSuCFkIDYU0eEt_3iJ-d7Hog,"The idea is wonderful. But a lot of tedious mistakes spoil the whole impression. For example, information is slowly updated even within the application, often clicking on a menu item is ignored. If you create a task without a title, but with a list, it will become closed for editing, just delete. Not all things are obvious. I had to read help to solve simple questions. Well, the old-school 8-bit graphics - not everyone likes it.",2,3,2.3,2019-11-21 23:37:05,"Hi Eugene, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback. Our artwork is done by volunteers from our community and is intended to evoke a retro style. Sorry it's not your cup of tea!",2019-12-06 00:44:14,most_relevant,com.habitrpg.android.habitica +Will Green,https://lh3.googleusercontent.com/a-/AOh14GgsLGPNZZ_5jbzZTJ_x6TGl4RyYe-_GF3yn8wOfFOI,"Great concept, but really quite bad execution. With so many bugs even in the new player introduction it feels like an early access, not v2.2 of anything. Surprised to learn that it's been in public release for 4 years now. I would be ashamed to make or spend money from any transaction within this game. I'm not usually this harsh, and I hope none of the devs take this review personally, but get it together. Needs a major QOL & UX overhaul before I would consider the concept v1.0 complete.",2,60,2.2,2019-10-18 12:21:34,"Hi Will, thank you so much for this thoughtful review. You can help us fix bugs by reporting them directly via Menu - About - Report a Bug. We have a very small team since we don't make money from ads or selling user information, so improvements may take longer than you're used to from other apps. Thanks for your patience.",2019-10-25 00:10:29,most_relevant,com.habitrpg.android.habitica +Ryan Haynes,https://lh3.googleusercontent.com/-jc_67GfE23M/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPIdNYkHGP6DJafvx74JsHTUNPYWQ/photo.jpg,"Seems to have glitched out on me. When I put in my username and display name, it gave me an error saying ""Path Profile.Name Required."" Then none of the Avatar customization options appeared. I wasn't even able to start the third page when the app crashed. Reopening the app took me to the Dailies tutorial and now I'm sure I'm missing something. I have a Samsung Galaxy Note 10.",2,2,2.3,2019-11-21 02:18:24,"Hi Ryan, sorry to hear about this issue. Please let us know if you're still having trouble by sending us a message at mobile@habitica.com and the team will look into it.",2019-11-21 18:28:33,most_relevant,com.habitrpg.android.habitica +Georges-Henri Daigle,https://lh3.googleusercontent.com/-oGYtJpGCjqA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM9WYk44AU5lbii73fpxac1JafgIg/photo.jpg,"I was using this app just fine without problems for about 2 months but when my wife decided to get us both a subscription, my account stopped working right. Whenever i check off a task i just get an error message and nothing gets counted. I did everything the helpers told me (clear cache, reinstall the app, restart phone) and nothing worked. Its been about a week and i have yet to hear again from technical support.",2,47,2.4,2019-12-23 10:54:38,"Hi Georges-Henri, sorry to hear about the trouble! Our team is very small since the app is ad-free and we don't sell user data, and we are not always able to respond instantaneously to support requests, particularly during the holidays. If you have not yet received help please email admin@habitica.com and we'll be sure to let the staff know.",2020-01-04 00:51:37,most_relevant,com.habitrpg.android.habitica +A. L.,https://lh3.googleusercontent.com/-6A5cn344c28/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM9Vg6tB6rvAjbUsNhetKk3bc8ubA/photo.jpg,"1/5/20) I have tried the updates since my original post, and launch speed has slightly improved. Main Landing Page loads very slowly, but at least didn't crash right away again. Almost froze when scrolling through habits. I gave it more time to load, then tried going to a different section of the app & it crashed.. 11/9/19) Would be an awesome app, if it would load. Painfully slow startup and very laggy in app as a well. (Android 9 ; Moto G6 Play) Please fix! & I will actually update my review.",2,0,2.4,2020-01-05 12:35:34,"Hi A.L., sorry to hear about these issues. Our team is always working to improve speed and eliminate crashes. You can send more details to help us fix them via Menu - About - Report a Bug.",2020-01-14 18:10:32,most_relevant,com.habitrpg.android.habitica +Alenezi989 A,https://lh3.googleusercontent.com/a-/AOh14GiqBRnTpMaS0znMfSdBzjNUjlJtkLsGydK_wVGJSvo,"The app looks interesting but it didn't work in my device which is a Samsung Galaxy Note9 , I couldn't see the introduction and I couldn't see my character in the character creation window it kept saying path profile.file is needed I don't know how to fix it",2,0,2.2.2,2019-11-05 10:56:04,"Hi Alenezi, sorry to hear about this issue. Please let us know if you're still having trouble by sending us a message at mobile@habitica.com and the team will look into it.",2019-11-05 20:08:19,most_relevant,com.habitrpg.android.habitica +This Is Fallacious,https://lh3.googleusercontent.com/a-/AOh14GhtVYhpSxV9pGcnA4kaQoGb8LyAPoli2Z5n9Kug,"Would you quit directing me to the website!? If I want to join a party/guild it should be done on the app. It won't let me log in on the site AT ALL.. Why you people would choose to have it so if you use ""log in using Google"", it resets and begins a whole new account without asking, now I have two accounts on one email? It won't even give me my password! I tried resetting it several times. How annoying, bad design. After I spent so much time on the app too, all for it not to work",2,5,2.3,2019-12-10 20:25:43,"Hi This is Fallacious, we apologize for the inconvenience. We hope to have complete feature parity for all platforms as soon as possible! We have a very small team since we don't make money from ads or selling user information, so improvements may take longer than you're used to from other apps. Thanks for your patience.",2019-12-12 19:28:20,most_relevant,com.habitrpg.android.habitica +Emily Schlintz,https://lh3.googleusercontent.com/-Ekl4-wTybN8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNqunM8W6hVIlVo8Xvi6iny7m2hfA/photo.jpg,I really liked this until I realized that unfinished daily/repeating tasks get marked as done whether you complete them or not the next day. That makes it pretty useless for tracking tasks I need to do each week.,2,0,2.3,2019-11-19 13:05:22,"Hi Emily, thanks for your review. We are working to add an overview so you can see your completion stats more clearly. We'd love to hear more about what you'd like to see- let us know via Menu - About - Send Feedback. Our current workaround is this site, created by one of our devs: https://oldgods.net/habitrpg/habitrpg_user_data_display.html",2019-11-21 18:26:58,most_relevant,com.habitrpg.android.habitica +Holy_Empress,https://lh3.googleusercontent.com/a-/AOh14GgtrvcjFigVBNpCMuh0ArgJIBAamTdoJdzgx5tJxw,"I downloaded this app today but there is a problem that makes me unable to see to-do lists,habits etc. I really want to use this app but I can't do it when I can't see the options. It would be great if you fixed it so I can use it!",2,0,2.2.2,2019-11-13 04:38:36,"Hi Holy_Empress, sorry to hear about this issue! If pulling down in a task list to refresh doesn't solve this issue, please send us a report via Menu - About - Report a Bug and the team will be happy to take a look for you!",2019-11-15 00:23:19,most_relevant,com.habitrpg.android.habitica +Rj Marayag,https://lh3.googleusercontent.com/a-/AOh14GjexKYQFLZKT18YE470Mfn-0nZNS8EYzJXy756yEQ,"Does this works on android 10? I tried installing it and tried to make a character but it seems it's bugging. Doesn't show my character (from character-making phase). Reinstalled it, same thing occurred. Hopefully you guys can help me here. Cheers!",2,1,2.3,2019-12-16 18:47:33,"Hi Rj, sorry to hear about this issue. Please let us know if you're still having trouble by sending us a message at mobile@habitica.com and the team will look into it.",2019-12-19 18:27:53,most_relevant,com.habitrpg.android.habitica +Mister Mungus,https://lh3.googleusercontent.com/a-/AOh14GgOIdQ3xj1AO_nuMuaCrswyG6G_oeC_ypR7rSLP,Galaxy S10 on Android 10. FTUE is busted. First two slides don't load. You get to the character creation and the avatar and all of the customize options are invisible/don't display. Please fix or mark the app as incompatible with Android 10.,2,4,2.4,2019-12-30 08:50:47,"Hi Mister Mungus, sorry to hear about this issue. Please try updating to the newest version, and let us know if you're still having trouble via Menu - About - Report a Bug and the team will look into it.",2020-01-04 00:57:58,most_relevant,com.habitrpg.android.habitica +Deepika A,https://lh3.googleusercontent.com/-odLegy5Kfkg/AAAAAAAAAAI/AAAAAAAADGE/AAKWJJNJYlQXT1NqC8u9qL1TxUgWkRjDtA/photo.jpg,Why does the app keep showing server connection lost even though there is no problem with my network or internet server? I can't open the app and refresh it at all.,2,0,2.3,2019-11-16 06:20:16,"Hi Deepika, you may have run into some server issues we had at the time you posted- let us know if you're still having trouble via Menu- About -Report a Bug and the team will look into it.",2019-11-18 17:20:08,most_relevant,com.habitrpg.android.habitica +theredwolf,https://lh3.googleusercontent.com/a-/AOh14GiCUN5De7-dGJzfKFpWtM3g1fyVWUvt1ubPkUflJA,Certain pages don't fit on screen.,2,0,2.4,2019-12-23 04:25:44,"Hi theredwolf, sorry to hear about the trouble. If you'd like to send us more detail to help us investigate these issues, you can send that information directly to the support team via Menu - About - Report a Bug.",2020-01-04 00:48:02,most_relevant,com.habitrpg.android.habitica +Brent Kohler布伦特科勒,https://lh3.googleusercontent.com/a-/AOh14GjqDu4E0URmLZ0wKovR4GVIniGsDEwACPUWJwuxVjg,fun and helpful. graphics are awesome. just needs a few tweaks. too easy to cheat. i don't like the tavern because i am in recovery from drugs and alcohol so it's kinda anthemic. maybe a temple option would be a better social forum for inclusion for those of us who don't drink and/or use drugs. it would also be nice if you could continue to see completed to-do items after you have checked them so you can continue to visualize your progress.,2,0,,2020-03-20 03:42:18,"Hi Brent, thanks for the review. We do discourage all mentions of addictive substances in public chat spaces (except in the context of recovery) and we hope that helps. We hope to add more in-app stats but in the meantime, you may find the Data Display Tool helpful: https://oldgods.net/habitrpg/habitrpg_user_data_display.html",2020-03-20 22:44:15,most_relevant,com.habitrpg.android.habitica +Cameron Lowe,https://lh3.googleusercontent.com/a-/AOh14Gi77vbOf4jRGZsi7OaQSeSYpKMXjl7GTaQkTnzXPw,"Despite various updates to ""fix bugs"" the first few screens of this app are still completely broken on Android. The app beyond sign-in still functions...but that's it. The game aspect is weak, the app isn't very well designed, and the tutorials tend to be broken on Android as well. I prefer apps like Fabulous, which I think approaches the subject of mental health and habit forming in a much better way.",2,1,,2020-02-14 14:52:53,"Hi Cameron, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2020-02-21 00:15:10,most_relevant,com.habitrpg.android.habitica +Tanmay Gupta,https://lh3.googleusercontent.com/-pJ4EHCtbmCs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMHOfsi7WmVZI202iISBBg8teRV5g/photo.jpg,Not very user friendly and very less interactive,2,0,2.3,2019-12-29 08:52:17,"Hi Tanmay, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2020-01-04 00:55:07,most_relevant,com.habitrpg.android.habitica +Marie-Pierre governale,https://lh3.googleusercontent.com/-jEjbfUPJZ3w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO4PFBulQoEGoTSy8gKOo2rnb155g/photo.jpg,"I'm probably too old for this. Couldn't find the energy/patience to work out how it works (and why was it preset with meditation?), I guess it would seem obvious to someone who uses technology more. Bought a huge paper planner called Trigg instead. Less portable! But it won't crash, malfunction or lost if I break my phone...",2,0,,2019-10-22 17:55:34,"Hi Marie-Pierre, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-10-25 00:17:13,most_relevant,com.habitrpg.android.habitica +Ed Hasaba,https://lh3.googleusercontent.com/a-/AOh14Ghc5KD1om3Qe2_Qg3PgJivlYt8-ND-oEA6ohq0BeQ,"I immediately encountered a problem when I began, by misclicking on one of my Habits. There's no way to correct for that. Manually change the values, yes, but the xp and hp don't change to reflect that automatically. Secondly, the settings page is broken on my S9, and the issue is difficult to describe. The display freezes so if you scroll, an instance of the text moves while the another is stuck below. Honestly the tutorial really needs work. I could go on but space constraints.",2,1,2.1.1,2019-10-09 23:15:00,"Hi Ed, thanks so much for this thoughtful review. You can send the mobile team more details directly by going to Menu - About - Send Feedback.",2019-10-11 00:59:19,most_relevant,com.habitrpg.android.habitica +Omari Rose,https://lh3.googleusercontent.com/a-/AOh14GjBSz1qGtkFKhnRUoNcjZ9_ZYxYwnFj_z-Ro7waFg,"Need Wifi/Data for it. I get that you can play with your friends, but it would be nice if I could use it without wifi for data anyway. I have a limited ammout of data and brain memory. So by the time I get home after all day I've forgotten my habits and the point becomes mute. Only gave this an extra star because I love the 8 Bit art.",2,0,,2019-11-25 17:25:22,,,most_relevant,com.habitrpg.android.habitica +A S,https://lh3.googleusercontent.com/a-/AOh14GjQEdE3qoUjLni3tK9KfCedSKlBWm2trVaqcMbX_g,"Two bugs right at the beginning of registration. First two images didn't load on the three slides intro, then when registering my info, it moved to the next screen but gave a name error and I couldn't make an avatar. Not a good first impression. Just deleted my account thru the website.",2,0,,2019-11-09 13:09:40,"Hi AS, thanks so much for this thoughtful review, and thanks for giving Habitica a try.",2019-11-15 00:21:03,most_relevant,com.habitrpg.android.habitica +Jenna Blanchette,https://lh3.googleusercontent.com/-K6WqJN-1yWY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN2V9KfkkE3FqhW5aMPOfIAXaBS9A/photo.jpg,"I honestly didn't get much chance to use the app before it stopped connecting and not letting me do anything. Before that happened i started setting up daily tasks and the part where you set how often (such as the days of the week) you do each task was confusing. I would change the days on one task and it would change it for all of them. Over all, too much work for its worth. Loved the idea though, it would have really gotten me doing things to level up and collect items",2,4,1.5.1,2018-09-26 00:55:24,"Hi Jenna, we had a server outage. We apologize for the inconvenience. The app should be working as normal now.",2018-09-26 17:08:02,most_relevant,com.habitrpg.android.habitica +Arturas P.,https://lh3.googleusercontent.com/-bdaAO3-HEcU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMNB71gWKon6204T6bERKS3hTzfIA/photo.jpg,"I wanted to use this app. The concept is really good. But I won't use it simply because it barely functions. For starters it's online only... but as if that wasn't enough the sync on Android is just all over the place - the app would sometimes ask ""have you done these things today?"" for tasks that were scheduled the day before or at 1 AM for tasks on that day... Speaking of tasks, I couldn't set up multiple repeating tasks for certain days of the week (per task, wanted to fill the whole week with various tasks and repeat them) for some reason, they would all sync to same weekdays. I enabled reminders but never had a reminder come up once and as far as I researched online this is a common problem on Android and hasn't been resolved for some time. So it seems I have to create a habit of opening this habit tracker app...",2,0,1.6.1,2019-01-16 09:33:55,,,most_relevant,com.habitrpg.android.habitica +Cocoa and Consternation,https://lh3.googleusercontent.com/a-/AOh14Gji7ttMEKb0pPHVqcZAYBvWCDHnz26dqTkOHYfNbw,"Boring and not very effective for me: the visual design is a bit of a yawn and it's too hard to earn rewards without paying. If it works for you, great but it doesn't give me enough gratification.",2,0,,2019-12-29 00:04:45,"Hi Cocoa, thanks so much for your feedback, we'll be sure to pass it on to the team. Our artwork is done by volunteers from our community and is intended to evoke a retro style. Sorry it's not your cup of tea!",2020-01-04 00:54:46,most_relevant,com.habitrpg.android.habitica +James Christian,https://lh3.googleusercontent.com/a-/AOh14GjTyHCETgfJb1ov3vZsomChs4bVc3dwRCqIgluYRA,"This app is a great idea with poor execution. Reminders only sometimes appear, and the UI can be very unresponsive - I've checked daily tasks off, only to find that the app interpreted this as UNchecking the task (since it hadn't registered the fact that it is a new day, yet), which actually subtracts the game resources from you. These problems are significant enough to make the RPG-like rewards system ineffective for me, and the app not worth using as a habit-tracker at this time, sadly.",2,2,1.5.1,2018-10-28 15:15:06,"Hi James, sorry to hear about the trouble and thank you for your feedback. If you'd like to send any bug reports directly to the team to help them diagnose and fix the issues you mentioned, you can do so via Menu- About - Report a Bug.",2018-11-06 19:59:57,most_relevant,com.habitrpg.android.habitica +Diana Paprotny,https://lh3.googleusercontent.com/a-/AOh14GjK8lMIQipttt30kYEPqEoRRs1U9XLq8WaCQe6Q4A,"This app would be so much better if it didn't penalize you for doing your habits for many days in a row. Instead of getting more experience, coins, you get less the longer you do something. You should be rewarding the habits that people are building, not telling them that once they have the Habit they're going to get less for it. Otherwise, this app would get five stars for me.",2,8,1.5.1,2018-10-15 13:22:20,,,most_relevant,com.habitrpg.android.habitica +Sonja Haynes-Schardt,https://lh3.googleusercontent.com/-3PRhiKgE8yo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOFPKKIceYozLZR1vl8BbPP_Fh32Q/photo.jpg,"I'm a breath away from uninstalling this app again. Half the time it doesn't even do what it's supposed to do, some things it doesn't even let you do inside the app, you have to go to the actual browser version to do it. On that subject, the mobile browser is beyond awkward, no chance of navigating it properly! If I'm supposed to log into an actual PC just to check off that I did a workout or washed dishes, forget it. Right now the only reward I get is having my good mood ruined; certainly not worth it.",2,7,1.5.1,2018-10-27 13:58:56,"Hi Sonja, sorry to hear about the trouble and thank you for your feedback. If you'd like to send any bug reports directly to the team to help them diagnose and fix the issues you mentioned, you can do so via Menu- About - Report a Bug.",2018-11-06 20:00:56,most_relevant,com.habitrpg.android.habitica +Ehjae Chan,https://lh3.googleusercontent.com/a-/AOh14Gj2FG0AjwGQUS5e2MOVbE0l8v8oeSIhV925aFzB,"I love the idea of this app. Unfortunately, it is not super user friendly. I've been using it for over a month and it is not very obvious how to complete quests or anything else. (and yes, I have gone through the FAQs) I finally figured out how to hatch eggs, but that's all. It's a pretty clunky app as a ""game"" but it does a pretty good job of keeping me accountable for things. That's the only reason I haven't deleted it. As a ""Gamify your life"" app, I'm not convinced. Hopefully it improves!",2,0,1.9.1,2019-05-16 07:02:54,"Hi Ehjae, thanks so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-05-28 20:31:52,most_relevant,com.habitrpg.android.habitica +Mu Skygryph,https://lh3.googleusercontent.com/a-/AOh14GgnJ0jqiXH45Py01whU-hpV8rkOVxFHkVUOZFkkTA,"Great concept, but riddled with bugs. Sign up was horribly difficult, with the servers not responding and the app failing to realize I was trying to change my username and display names. App reset at around 7:00 pm, instead of at midnight of my time zone, which I had double checked beforehand. I want to like it, but this is becoming downright frustrating.",2,4,1.7,2019-03-20 00:31:26,"Hi Rukia, sorry to hear about the trouble! The team will be happy to look into any bugs. It's helpful to us if you can report them via Menu - About - Report a Bug.",2019-03-20 21:31:14,most_relevant,com.habitrpg.android.habitica +Philip Bradford,https://lh3.googleusercontent.com/-Tpv1XdPFf3I/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPoU6e7aW362wmvqKeTkvdmyw8mOA/photo.jpg,"Needs a VPN if you're in China. Some questionable UI and design choices, though the fundamentals work well for the most part. If you want to do anything remotely interesting then you have to pay, of course. And the subscription fees are absolutely extortionate. One month is the same price as a month of Netflix and a year is £47. A year of MS Office 365 with all of its functionality is £60... Let that sink in. I don't understand why, for relatively little, this app costs so much. Greed, I assume.",2,3,1.9,2019-05-07 02:04:20,"Hi Philip, thanks so much for this thoughtful feedback. We'll be sure to pass it on to the team.",2019-05-07 16:43:37,most_relevant,com.habitrpg.android.habitica +Leolani Lancaster,https://lh3.googleusercontent.com/-Wz8e4-p109k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM9iaPb92p02HLiXcDLDsnIquKHlA/photo.jpg,"This app is either really good or really bad/broken --- there are no in betweens. I love the concept, and its super cute, but it bugs out quite a bit and besides which, is super easy to misclick on. As a result, I've lost or accidentally lost items, as well as accidentally spending nearly all of my coins completely on accident because there's no verification for buying and no refunding??? And that's besides the part where it constantly unequips all of my gear... This game needs help...",2,1,2.0.6,2019-09-09 21:04:45,"Hi Leolani, thanks for your review! You can help us fix bugs by reporting them directly via Menu - About - Report a Bug. If you've lost any gold or xp you'd like back, you can adjust this by going to Menu - Settings - Fix Character Values.",2019-09-12 19:30:05,most_relevant,com.habitrpg.android.habitica +Ariel Hamilto,https://lh3.googleusercontent.com/-DTVFLxKGZ-A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMGbWTHVDNC-6ZhjQGItlspF_nfnw/photo.jpg,"It would be a very helpful app if it actually worked the way you'd expect... if I say I want a task to be weekly, but make it so I can complete that task any day, what I'm trying to do, is make the task flexible, so I can do the weekly task whatever day of the week I feel like, instead however, making it available everyday turns it into a daily task, which I will be punished for by not completing daily, my only real solution at the moment is filling up my to-do list which is really frustrating.",2,45,2.0.2,2019-07-28 13:12:07,Hi Ariel! Thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.,2019-08-01 18:41:47,most_relevant,com.habitrpg.android.habitica +Rich Crawford,https://lh3.googleusercontent.com/a-/AOh14Gju9wGBwjkvQWzUeaQ5xLpZG6ojphKaP-xG9a5M,"Just had a big visual update but if anything the app is getting worse and worse. Now most of the time when I tap a plus sign to increase count of something, nothing happens. I have to drag down to refresh and then after it thinks for a minute it'll update the count. Or not, it kind of does what it wants at this point. I've mostly stopped using it because of this.",2,6,2.0,2019-06-23 18:57:26,"Hi Rich, thanks for your thoughtful review! We'll pass your feedback along to the development team. If you'd like to send us more detail to help us investigate these issues, you can send that information directly to the support team via Menu - About - Report a Bug.",2019-06-25 18:45:28,most_relevant,com.habitrpg.android.habitica +Ryan M,https://lh3.googleusercontent.com/a-/AOh14GjnCqHdAeeso_mBqIW0kSGs8sw_Yuf31ThQfIQeRg,used it awhile ago and recently installed on my new phone. as soon as it opened it was clear i would not be able to use it. several things where off (like trying to put pictures in an office doc) worse still when i try to add many options are cut off by some form of white box that sits in the way. unfortunately dailies are one of the missing options and a huge part of how i personally used the app.,2,0,,2019-05-24 18:27:49,"Hi Ryan, sorry to hear about these issues. We have not received any similar reports, so it would be very helpful to us if you could send a direct report with more details so we can investigate. You can send that information directly to the support team via Menu - About - Report a Bug.",2019-05-28 20:44:29,most_relevant,com.habitrpg.android.habitica +Rowan Summers,https://lh3.googleusercontent.com/a-/AOh14GiiURzLENGadL1Ks-xYR-TKYMujFz1wL5oPujAZ,"it's a great idea but it just doesn't work! The pages never refresh for the next day, and if i press the refresh button it just comes up with an unable to connect to server error, or just stays with the loading symbol infinitely. I went on it today after not going on it for a couple of days and i just find that im dead out of nowhere. The ""refill health"" prompt kept repeatedly popping up and then when it stopped my health bar was still at zero. Also the add habit button isnt there always...",2,15,1.7,2019-01-22 11:31:46,,,most_relevant,com.habitrpg.android.habitica +TwistedKing88,https://lh3.googleusercontent.com/a-/AOh14GhD1bh57RvShgqKYSUVgtZDrRSuQbyQAdac0-ZRpg,Very buggy first few times that I've used the app. Repeatedly having to close and reopen it for it to properly work.,2,0,,2019-10-13 04:30:01,"Hi TwistedKing, sorry to hear about this issue. Please try updating to the newest version, and let us know if you're still having trouble via Menu - About - Report a Bug and the team will look into it.",2019-10-17 21:22:58,most_relevant,com.habitrpg.android.habitica +Dan Wilkie,https://lh3.googleusercontent.com/a-/AOh14GjYOn5JxhFfgDjZWqYclLNT1NSzNYfNVrfiMJxT3w,Heres the thing. I love this app and the idea behind it. But for some reason its so dang glitchy. Pages wont always change when i scroll. Tasks dont refresh. I often have to completely close the app. Help! Very willing to change this review to 5 stars if we get this figured out.,2,5,1.7,2019-01-19 18:18:15,,,most_relevant,com.habitrpg.android.habitica +Siobhan Macdonnell,https://lh3.googleusercontent.com/a-/AOh14GiUmoFHfdtdp2qFjHihhmEav2LOqBBbBwBkSzlSDA,I really enjoy this app but it has just stopped working randomly. I tried to hatch a dragon egg and the app crashed and since then I cant access it. I have tried uninstalling the app but nothing is working. I have even tried to use the website but it doesnt keep track of my exp gained. I am very dissapointed as I really like the idea of the app.,2,4,2.0,2019-06-27 05:10:09,"Hi Siobhan, sorry to hear about the trouble! Please let us know if you're still having trouble by sending us a message at mobile@habitica.com and the team will look into it.",2019-07-22 23:48:48,most_relevant,com.habitrpg.android.habitica +Ben Wilcox,https://lh3.googleusercontent.com/a-/AOh14GjxgMUSjSbEGvRavSETGmfgt9fJC3HnGvxaibUXuw,"I quite like habitica, but this app has some issues. The biggest problem for me is that switching the to do list to ""Scheduled"" is supposed to sort the to do items by due date (that's how it works on the website), but it doesn't. That makes the to do list (in the app) useless for me.",2,4,1.9.1,2019-05-11 15:02:54,"Hi Ben, sorry to hear about the trouble! We'll be sure to pass your feedback on to the team.",2019-05-16 21:30:04,most_relevant,com.habitrpg.android.habitica +Klaus Acobo,https://lh3.googleusercontent.com/a-/AOh14GhSE30pUnIS6hOx6t6XBNYx8NMAMW7jIcx7jWrjNg,"To be honest, it's a really good app. It has everything (simplicity, system, ui, etc.) but seriously, if this is really a productivity app, it needs to have an offline mode. Does it really need to have an internet connection every time someone has to check their to do list?",2,0,,2019-09-24 14:13:50,,,most_relevant,com.habitrpg.android.habitica +m pe,https://lh3.googleusercontent.com/-ijyFcOrz3dk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMXJomFRGYhy7ASTj11Mgx0sn-UdQ/photo.jpg,"latest update has not fixes bugs that occur every day.frustrating to use.sometimes it won't save,will just have a loading loop.Some basic things are not customizable like the calendar starting on Monday or the date format ,doesn't keep track of activity data correctly . Please focus on getting the app to work instead of focusing on superficial appearance! was thinking of paying for a subscription but what's the point if the money will not go towards making the app usable & less temperamental?",2,1,2.0,2019-07-02 03:05:13,"Hi m, thank you for your review and feedback. As Habitica does not serve ads or sell user data for revenue, we are only able to retain a small staff so improvements may not happen as quickly as you're used to from other apps. We'll certainly pass your feedback on to the mobile team in any case.",2019-07-22 23:54:46,most_relevant,com.habitrpg.android.habitica +Snow Flake,https://lh3.googleusercontent.com/-wWiFT_Um8K8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN4qHy9M-5VTKVxGFCjQwxv9zyCJA/photo.jpg,"Very nice and interesting concept but completely useless because you flipping need wifi to update your checklist?! Furthermore even if my parents didn't control my wifi and I had full access, there should be a way to see all your tasks etc at a glance without having to scroll so much. Also what's the point if you can just go in the settings and set the amount of money you want? And a bunch of my friends joined habitica only to leave because it takes up too much time, and it's not fun enough.",2,1,,2019-08-31 19:29:08,"Hi Snow Flake, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-09-05 18:28:37,most_relevant,com.habitrpg.android.habitica +Canh Pham,https://lh3.googleusercontent.com/-BReBVFbTajY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPcG8kxbbZBPiGeZLX2DVI8hCPexQ/photo.jpg,"This is terribly buggy and you're better off avoiding it; use the website instead, if you're on your mobile device. Latest update doesn't update habit counters on-screen after you press any buttons; all of the command is processed though. App still doesn't display items that are found. Just another buggy update.",2,88,2.0,2019-06-22 01:31:40,"Hi Canh, thanks for your thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback",2019-04-24 02:39:30,most_relevant,com.habitrpg.android.habitica +Chas Phyle,https://lh3.googleusercontent.com/a-/AOh14Gj0-5hcHdLgyjKXelx1Ox8Gkk_mGkjD_Wg8EocgHA,"The whole app is pretty broke on the note 9 (edit: I would love to report the big to help however, the settings menue does not work so I do not have the ability to send a report).",2,0,2.1.1,2019-10-18 03:23:46,"Hi Chas, sorry to hear about this issue. Please try updating to the newest version, and let us know if you're still having trouble via mobile@habitica.com and the team will look into it.",2019-10-25 00:07:51,most_relevant,com.habitrpg.android.habitica +Jessica Serafin,https://lh3.googleusercontent.com/-AQxM_3lQS0Y/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMM7j2BfFAcQ2y7ZFx4RPCCzPuxng/photo.jpg,Please help. Relogging in after several months disuse. It has asked me to enter a username and it's stuck on 'username taken'. Will not let me progress to the app. I've tried every random letter/number combination so it's definitely not taken. Just buggy app?,2,1,2.0.3,2019-08-12 14:51:48,"Hi Jessica, sorry to hear about the trouble! If you contact the support team at admin@habitica.com someone can look into this for you and sort this out.",2019-08-13 23:12:48,most_relevant,com.habitrpg.android.habitica +Soul Ninja,https://lh3.googleusercontent.com/a-/AOh14GjLuQBz9QcEUtHlMc3762NtSu9E5P40QuESpSjcsGc,"It's a good app but it doesn't really work for me. Please provide an offline mode, because not everyone has data and Wi-Fi throughout the whole day. I will rate it 5 stars once there is an offline mode.",2,19,1.5.1,2018-10-05 11:28:04,,,most_relevant,com.habitrpg.android.habitica +Daniel Wong,https://lh3.googleusercontent.com/--U8EGqFSQAw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOWPihB1Avn075DVuCd2JxxNt2a1Q/photo.jpg,this app would be 100x better if it incorporated some of the editting/customizing functions of the other to-do-list apps out there. i want to be able to strike through each of the to do items and view deleted/archived/completed items. be able to choose colors etc ..,2,2,1.6.1,2019-01-09 07:30:58,,,most_relevant,com.habitrpg.android.habitica +Fabrício Holmes,https://lh3.googleusercontent.com/a-/AOh14GhVB04hdpL0BI0JMbdeTvcelo_1t8FevSLvNbumtcw,"The idea behind the app is nice, but it isn't userfriendly. Finding and adding friends to use it together was so counter productive that it got us to waste time we could be actually doing our daily tasks.",2,0,,2019-01-21 00:58:38,,,most_relevant,com.habitrpg.android.habitica +Grey Malkin,https://lh3.googleusercontent.com/a-/AOh14Gi78TFXpVgCLgpewQpJLOzAkRGJYsMKmXr40pu_vA,"Great concept. But I didn't build up coins quickly enough, and didn't get any gems, meaning I couldn't get anything new for my character. Honestly, a calendar and check-mark system would give me more incentive than this.",2,0,,2019-08-20 21:57:57,"Hi Grey, thanks for your review! We'll keep your feedback in mind as we continue to work to improve Habitica. You can contact us directly by going to Menu - About - Send Feedback if you'd like to give us additional details.",2019-08-23 23:18:24,most_relevant,com.habitrpg.android.habitica +Wafa Rashid,https://lh3.googleusercontent.com/a-/AOh14GizflepKIHCQZmpHj2m_JQ2jSvG0iIVpMm2Vnj0Ng,Good ideas but not well implemented. It gets tedious and boring after a while.,2,0,,2019-11-16 05:53:54,"Hi Wafa, Thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-11-18 17:19:02,most_relevant,com.habitrpg.android.habitica +Leslie Baquirin,https://lh3.googleusercontent.com/-XCOgoWH9QfU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMRNv1ZD29C9GrLKhO_8j2hh-9Meg/photo.jpg,"It's a great app. Really nice features. Does everything it says on the tin. But let me tell you: a productivity app won't do what it's meant to do unless it's usable offline. I really loved using it, but now I'm going back to the good old bullet journal.",2,1,,2018-09-27 05:29:06,,,most_relevant,com.habitrpg.android.habitica +Yuu Urase,https://lh3.googleusercontent.com/-XW6xPauTQB0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOJ694FXaery4zcDHcVmiuictV8AA/photo.jpg,It would be better if there are more options for customising the avatar and theme which is in purple. You will need to spend money for a decent background. The avatar is pixelated and doesn't look good. Getting a bit bored of it now.,2,1,2.0.4,2019-09-01 06:39:04,"Hi Yuu, thanks for your review. Our artwork is done by volunteers from our community and is intended to evoke a retro style. Sorry it's not your cup of tea!",2019-09-05 18:31:33,most_relevant,com.habitrpg.android.habitica +Dagget 10,https://lh3.googleusercontent.com/a-/AOh14Gi03uFQpXG7_YAGmXUMCSGAOxjNU5BjoTFrYFEFPw,"The app works great... with wifi. I love the feel of the app and desktop versions, but a decent chunk of my day is spent with limited/no wifi. I can't recommend it for that.",2,0,,2019-03-04 13:22:44,,,most_relevant,com.habitrpg.android.habitica +Belle Salcedo,https://lh3.googleusercontent.com/a-/AOh14GhnA-ue5tpuXVQwULWBbOc_ehNUCB7qD34HpuGCkg,"Have been a user for years, but the app is borderline unusable at this point, it's not saving anything and is not connecting to servers. Tried uninstalling and reinstalling, not sure what's wrong.",2,50,1.7.1,2019-03-05 04:05:41,"Hi Belle, You may have run into some server issues we had at the time you posted- let us know if you're still having trouble via Menu- About -Report a Bug and the team will look into it.",2019-03-05 21:06:05,most_relevant,com.habitrpg.android.habitica +Seung-Heon Lee,https://lh3.googleusercontent.com/a-/AOh14Gj3z00m9VFTN9vMUNk_RvLxRz8NAEpbqofF01m4oQ,"I like the concept, but the execution needs work. In my experience, the app was laggy non-responsive at times which made the experience of creating and managing tasks tedious.",2,1,,2019-02-04 14:32:21,"Hi Seung-Heon Lee! Sorry to hear about the trouble, and thank you for your review. You can help us fix issues like this by reporting them directly to the mobile team via Menu - About - Report a Bug.",2019-02-20 23:01:56,most_relevant,com.habitrpg.android.habitica +Mohammed Ameer,https://lh3.googleusercontent.com/a-/AOh14GhwuY85jk7Ev0OlVbCNumGVVuHm8LS242TB6mAJ6g,Couldn't get past registration/login. I've never used the app before but when I tried to make an account it said that my email has been taken and when I went to login it just kept loading forever.,2,0,,2019-04-28 22:06:30,"Hi MTXShift Games, sorry to hear about the trouble! This issue should be resolved in the latest update. Please let us know if you're still running into this issue via mobile@habitica.com and we'll be happy to help!",2019-05-02 19:23:18,most_relevant,com.habitrpg.android.habitica +Francois Jeffery,https://lh3.googleusercontent.com/-GVTSRTC7fQE/AAAAAAAAAAI/AAAAAAAAAG4/AAKWJJPzWFeM1h9kYpgGRnr8w_qrCqy36Q/photo.jpg,"Bug that says 'path 'type' is required' everytime I try to do something. I tried submittinf an error report through menu - about - report a bug, but I get the same error message when I try report the bug",2,0,1.7.1,2019-03-01 20:52:01,"Hi Francois, if you're unable to report from within the app you can contact the dev team via mobile@habitica.com.",2019-03-05 21:08:51,most_relevant,com.habitrpg.android.habitica +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,The app was working fine until it started bugging out recently and showing me the wrong dailies. Going back to using just the website now until this is fixed.,2,2,1.5.1,2018-11-05 02:31:40,,,most_relevant,com.habitrpg.android.habitica +Alysse Rathburn,https://lh3.googleusercontent.com/a-/AOh14GjAYLpNrymIuhO9cLRjilUyzDqsk3v7azJeHh_D,Super glitchy. Too frustrating to bother trying to use it.,2,1,2.1.1,2019-10-26 04:02:51,"Hi Alysse, sorry to hear about these issues. Please try updating to the newest version, and let us know if you're still having trouble via Menu - About - Report a Bug and the team will look into it.",2019-11-05 19:53:52,most_relevant,com.habitrpg.android.habitica +Dale Rusch,https://lh3.googleusercontent.com/a-/AOh14Gh7jW6h19GdTm-0LChAJL2iIPZO0c2328closkr6w,"Incredible tool, awful app. I'd recommend the desktop version of this site to anyone but the app is a bug-ridden mess that overcomplicates simple functions and only works about 90% of the time.",2,143,1.7.1,2019-01-23 23:04:06,,,most_relevant,com.habitrpg.android.habitica +Imran Zainal,https://lh3.googleusercontent.com/-ckEOkcDnkiE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNm6FSXmJdkDgA9VLuZFDDEAYXGBg/photo.jpg,Super super buggy on my Note 8 . Can't press anything on the character creation menu after registering . Justin ( the tip guy ) ALWAYS comes up after pressing any of the menus . Super super annoying . please fix a.s.a.p,2,0,,2019-08-17 08:49:08,"Hi Imran, sorry to hear about this issue. Your character should update to your choices once you select a task list and pull down. In any case we've let the developers know about this issue and they are working to fix it for the next update! You can send us additional information via Menu - About - Report a Bug if you would like.",2019-08-23 23:08:25,most_relevant,com.habitrpg.android.habitica +Emily Honn,https://lh3.googleusercontent.com/a-/AOh14Gg5a-2ra5tskTxQ-KTAMEE29LbNu96PADyVJ5EO,I really enjoyed this app but now if I delete a daily reminder I still get the notification for it! Which is highly annoying! Please fix this it distracts me from my work each time I here my notification go off for a deleted reminder,2,0,,2019-08-18 18:51:47,"Hi Emily, sorry to hear about this issue. There's a new update coming soon. After you update, please let us know if you're still having trouble via Menu - About - Report a Bug and the team will look into it.",2019-08-23 22:30:10,most_relevant,com.habitrpg.android.habitica +Kevin Speedy,https://lh3.googleusercontent.com/a-/AOh14GjIqT8R07uayILcahljTq04tEXfYVDHIo34JqXQEQ,"Several navigation options are inaccessible because they're underneath the home/back/tasks buttons at the bottom or within the notification/notch area at the top, making this app hard to use on my phone.",2,4,1.5.1,2018-11-05 12:54:39,,,most_relevant,com.habitrpg.android.habitica +Steven Salim,https://lh3.googleusercontent.com/a-/AOh14GgPSby89BLhb-MfNlLNY9CgyIzQWV12PBn3xNxr5w,"i like how this become my favorute game because it keeps me doing things. BUT, it is constanly in problem....crash...unable to load....bug...not processing....and i don't understand WHY the task constanly can't be arranged?????",2,5,1.7.1,2019-02-16 08:19:22,,,most_relevant,com.habitrpg.android.habitica +Cool Guy,https://lh3.googleusercontent.com/-H5DpgOHEI1s/AAAAAAAAAAI/AAAAAAAAAOw/AAKWJJPrIBVkhv4clqicfWqq8KQH1gONWg/photo.jpg,"Good idea, bad execution. The first screen, with the customkze character options, wouldn't let me pick anything; therefore, I couldn't move on.",2,0,,2019-08-20 23:07:24,"Hi Cool Guy, sorry to hear about this issue. Your character should update to your choices once you select a task list and pull down. In any case we've let the developers know about this issue and they are working to fix it for the next update! You can send us additional information via Menu - About - Report a Bug if you would like.",2019-08-23 23:18:44,most_relevant,com.habitrpg.android.habitica +Angela Nicoll,https://lh3.googleusercontent.com/-lEUMtVdp0X4/AAAAAAAAAAI/AAAAAAAAA6U/AAKWJJOYPqxSL2pRmBm6FXpjdCL_cas8iQ/photo.jpg,It's been really helpful for habit building but it's now bugging like crazy and crashing every time I open it so not wonderful.,2,3,1.7,2019-01-22 14:42:38,,,most_relevant,com.habitrpg.android.habitica +K _ Marie,https://lh3.googleusercontent.com/-38yBacds20k/AAAAAAAAAAI/AAAAAAAAAOg/AAKWJJNA3vNsSXCHiq_E8mCxc9bJk7Nj6A/photo.jpg,Clunky and very slow to load. Not fun at all - just yet another task I had to deal with daily.,2,2,1.5.1,2018-11-08 17:24:47,,,most_relevant,com.habitrpg.android.habitica +Hannah W,https://lh3.googleusercontent.com/a-/AOh14GiiVguPzYBbuf_SJ_NJbStS7e3QQbFEqqF83HFwng,"Interesting concept but I get a ""path type is required"" error all the time so I stopped using it",2,0,2.0,2019-06-21 18:04:17,"Hi Hannah, sorry to hear about the trouble! We're happy to look into this if you can send us some more details at mobile@habitica.com - please let us know what type of action causes this error. Thank you!",2019-06-25 18:17:16,most_relevant,com.habitrpg.android.habitica +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"No landscape mode for tablets. I like the browser version, but landscape support is essential to me.",2,2,1.5.1,2018-10-20 11:43:53,,,most_relevant,com.habitrpg.android.habitica +Phillip Reese,https://lh3.googleusercontent.com/a-/AOh14Gh3j0fL6oh0FLux2Y5UQPWKCjbo0BONpQ1zaFPFiHo,lost the ability to sort to dos by tags. very inconvenient. i used that feature a lot.,2,1,2.0.1,2019-07-05 18:59:52,"Hi Phillip, sorry to hear about this issue. Please try updating to the newest version, and let us know if you're still having trouble via Menu - About - Report a Bug and the team will look into it.",2019-07-23 16:28:44,most_relevant,com.habitrpg.android.habitica +Izzy Young,https://lh3.googleusercontent.com/a-/AOh14Gj3fQUdFNCT3joGc8PImQifKQess8o0v6AMJFYIXw,"Great concept, but can they hire an artist, this artwork is outdated!! otherwise I would use this",2,0,,2019-04-07 06:33:51,"Hi Izzy, thanks for your review. Our artwork is done by volunteers from our community and is intended to evoke a retro style. Sorry it's not your cup of tea!",2019-04-12 00:08:24,most_relevant,com.habitrpg.android.habitica +Jacob Rourke,https://lh3.googleusercontent.com/a-/AOh14GhrnIIRENzsjWV2XqY_do9K60_DifTUHS5MD-u5jg,Very buggy and doesn't always show whole pages or lists.,2,0,1.6.1,2018-11-29 10:28:04,Hi Jacob! Thanks for your review. Our team is happy to investigate bugs. You can report them via Menu - About- Report a Bug.,2018-11-30 20:22:48,most_relevant,com.habitrpg.android.habitica +roxaurelia,https://lh3.googleusercontent.com/a-/AOh14GiyX_-AujPurtYmIi13HAl5cQ2dyi9uOM1ipQUYjno,"upon using the app so far, i wish that it would be accessible offline. other than that, the idea to challenge yourself to earn points for your habits and chores is quite remarkable",2,0,,2019-06-24 13:05:27,,,most_relevant,com.habitrpg.android.habitica +Niko Perez,https://lh3.googleusercontent.com/a-/AOh14GiunRwBU3dimrZvCgvKZuTH4KjHw8SSXCf8UpfMpA,"Laggiest experience ever, icons were missing everywhere, it seemed really cool but quite unplayable for me.",2,0,,2019-10-07 20:51:11,Hi Niko! Thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.,2019-10-11 00:53:28,most_relevant,com.habitrpg.android.habitica +Iamacrazydude,https://lh3.googleusercontent.com/-3K4igbU5GFo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMdOIsIK7AWjpiP_A4OxG4dOufj-w/photo.jpg,Change of days in app is a major problem. I wish it would happen smoothly.,2,0,2.0.2,2019-08-02 08:39:36,"Hi Iamacrazydude, sorry to hear about the trouble. It sounds like you're experiencing a bug which usually only affects users on their second day. Going forward your dailies should reset correctly. If not please let us know via Menu - About - Report a Bug .",2019-08-08 20:13:04,most_relevant,com.habitrpg.android.habitica +Olivier Gosselin,https://lh3.googleusercontent.com/a-/AOh14GgfshjDfDCz-QT7l4skDzrT2zUbeSORestZHGMXP2M,"Did not enjoy the layout, workflows, rewards, explanations. A+ for the effort.",2,0,1.6.1,2019-09-11 15:05:30,"Hello Olivier, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-09-12 19:31:31,most_relevant,com.habitrpg.android.habitica +Burning Scribbles,https://lh3.googleusercontent.com/a-/AOh14GgsI4y7GC_TJu2gJb_Lrn6FMuOd9tsImPISaVuY,would like to change my my class and chat is IMPOSSIBLE to navigate. a simple notification system would make it easy.,2,5,1.8,2019-03-25 04:57:28,"Hi Burning Scribbles, thanks for your review! We'll keep your feedback in mind as we continue to work to improve Habitica. You can contact us directly by going to Menu - About - Send Feedback if you'd like to give us additional details.",2019-04-03 20:37:08,most_relevant,com.habitrpg.android.habitica +eli les,https://lh3.googleusercontent.com/-UPWdrPTweLk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMNIp7v03YgY6h8ndY9rOX-WQLrYg/photo.jpg,"it is fun but now i just level up and i don't get any notifs for ""unallocated stat points"" anymore",2,0,2.1,2019-09-14 22:01:53,"Hi Eli, sorry to hear about the trouble. If you'd like to send us more detail to help us investigate this issue with notifications, you can send that information directly to the support team via Menu - About - Report a Bug.",2019-09-26 21:19:59,most_relevant,com.habitrpg.android.habitica +Lisa K,https://lh3.googleusercontent.com/a-/AOh14GigOuS_sjk17IqaBzs7GPlCToyIOstOCiCzWilN,Downloaded a bunch of these types of programs to find the one that was best. This was one of the worst. Played with it for about an hour and couldnt figure it out.,2,0,2.0.4,2019-08-30 20:57:03,"Hi Lisa, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-09-05 18:28:16,most_relevant,com.habitrpg.android.habitica +Lorenz Graf Egli,https://lh3.googleusercontent.com/a-/AOh14GgEi6pa8JFzS-txwArvpt8fpVT5xZmwSCjmAn0-LQ,the app is awesome. but it made my phone drain 30% battery per day in the background which makes it useless,2,0,,2018-12-11 22:00:04,,,most_relevant,com.habitrpg.android.habitica +Emmanuel Goldstein,https://lh3.googleusercontent.com/a-/AOh14GgcPsKHqgmllpXjuLeLNfgozSdcYtzIgCF2_6Yu,The app itself is quite good but without offline mode it's useless for me.,2,0,,2018-10-25 14:25:45,,,most_relevant,com.habitrpg.android.habitica +Shawn Isawesome,https://lh3.googleusercontent.com/a-/AOh14GigKOe4_9NB6nCIxHJjkvr_g8uA9-rMzm_rUHB85g,"Let's be honest here, if you need help with basic habit management, you won't use this regularly enough to help. And if you're organized and have a good routine, you don't need it. A pointless novelty at best.",2,0,,2018-11-09 02:02:41,,,most_relevant,com.habitrpg.android.habitica +ShyGirl Paris,https://lh3.googleusercontent.com/a-/AOh14Ggj-FDmkclqOV86nespkKwixQzqe2_KcwjpZwJq_Q,it keeps bugging out whenever i try to do anything. it wont stop doing ghe tutorial and wont ket me delete tast and stuff.,2,0,1.9.2,2019-05-22 20:22:06,"Hi ShyGirl, sorry to hear about the trouble! If you'd like help and can't use the in-app bug reporting function because of the issues you mentioned, you're welcome to email us at mobile@habitica.com",2019-05-28 20:41:34,most_relevant,com.habitrpg.android.habitica +cassidy jones,https://lh3.googleusercontent.com/a-/AOh14GhtuL_0o6y31CoeJSKZ8xiO34FmQT_KBb9NvR6vvQ,this app is closing down everytime I try to do anything but daily tasks. rather frustrating...,2,15,1.8,2019-03-19 17:54:08,"Hi cassidy, we're sorry to hear about the trouble! If you email us at mobile@habitica.com the team can investigate this and help you out.",2019-03-20 21:29:05,most_relevant,com.habitrpg.android.habitica +Kylee Dea,https://lh3.googleusercontent.com/a-/AOh14GiUTVyjam7cLdjAlLnpIkvFGF7OyOM-y7EAwvOItQ,"Seems like it could be fun, I just had a hard time getting into it.",2,0,,2020-04-01 22:08:33,"Sorry it wasn't your cup of tea! If you’d like to share any feedback with us directly, you can do that via Menu - About - Send Feedback. Otherwise, we hope you find something that fits your needs. :)",2020-04-03 03:50:55,most_relevant,com.habitrpg.android.habitica +Samarth Narladkar,https://lh3.googleusercontent.com/a-/AOh14GgZCK0lIISlx6fUQkhMO3YczYA1TxBIzNjXcJ08,Can do better very complex to handle for newbies.,2,3,1.8,2019-03-26 07:12:20,"Hi Samarth, thanks for your review! We'll keep your feedback in mind as we continue to work to improve Habitica. You can contact us directly by going to Menu - About - Send Feedback if you'd like to give us additional details.",2019-04-03 20:33:28,most_relevant,com.habitrpg.android.habitica +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Awesome App.... BUT, soo many bugs!!",2,1,1.7.1,2019-02-15 14:19:19,"Hi there, sorry to hear about the trouble! We're happy to look into any bugs you report- you can send these reports directly to the team by going to Menu - About- Report a Bug",2019-02-20 23:31:59,most_relevant,com.habitrpg.android.habitica +Ed Lim,https://lh3.googleusercontent.com/a-/AOh14Gij_7j3Jy-twGc_96taaiWzwdGa9u4exnDR9ZgUck4,Doesn't connect at all. Pls fix it,2,2,1.5.1,2018-09-26 00:35:21,"Hi Ed, we had a server outage. We apologize for the inconvenience. The app should be working as normal now.",2018-09-26 17:08:10,most_relevant,com.habitrpg.android.habitica +fejfo,https://lh3.googleusercontent.com/a-/AOh14GjBfDEHXALWTCAd4n1PcTDt6O9oWXdTABevbLX4,Can't check of checklist items,2,0,2.0.3,2019-08-18 15:17:38,"Hi there, sorry to hear about this issue. Please let us know if you're still having trouble via Menu - About - Report a Bug and the team will look into it.",2019-08-23 23:11:25,most_relevant,com.habitrpg.android.habitica +Victor Dalisay,https://lh3.googleusercontent.com/-q84hiE9Nhtw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOCuvov1a9NQqM-jZ6OFtDeoUkUGw/photo.jpg,It's slow. It'll be better if it works offline,2,0,,2019-07-03 00:35:38,,,most_relevant,com.habitrpg.android.habitica +Jack Daniels,https://lh3.googleusercontent.com/-R8LnawPUxr4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOtTTabPYYE2v3zJsmfIX97LIzFPA/photo.jpg,"I couldn't get past the set-up. ""'strength is not valid enum value path 'attitude'""",2,0,1.9.1,2019-05-06 22:13:26,"Hi Jack! Sorry about that, the issue with this error message should be fixed in the latest update (2133). If you're still having trouble, we're happy to investigate and it helps if you send a bug report directly to the dev team via Menu - About - Report a Bug.",2019-05-07 16:42:35,most_relevant,com.habitrpg.android.habitica +Taj Mathakiya,https://lh3.googleusercontent.com/a-/AOh14Gi5vZiDpxpBt_-Ak8mXhx-jZTGK5dozvyA55zd12A,Good concept but lack basic functionality,2,0,1.4.3,2018-10-27 05:41:14,"Hi Taj, sorry to hear about the trouble and thank you for your feedback. If you'd like to send any feedback directly to the team to help them work on the issues you mentioned, you can do so via Menu- About - Send Feedback.",2018-11-06 20:01:38,most_relevant,com.habitrpg.android.habitica +Meenakshi Singh,https://lh3.googleusercontent.com/-vXCPpbkUhQs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO-9Z4VuAsvdyVqQVnfbGlMu0fonw/photo.jpg,The dailies and habits should reset everyday.please let them reset,2,0,,2019-03-29 04:08:30,"Hi Meenakshi, sorry to hear about the trouble. We're working to fix this bug, which only affects users on their second day. Going forward your dailies should reset correctly. If not please let us know via Menu - About - Report a Bug .",2019-04-03 20:23:51,most_relevant,com.habitrpg.android.habitica +Felix Gehm,https://lh3.googleusercontent.com/a-/AOh14Gh_Iv_5DsIe9GWa75oBkjKQr5W8wOftyGbOQXiu0A,Sadly the UI isn't adapted for the Pixel 3 XL,2,0,,2018-11-11 19:40:08,"Hi Felix, sorry to hear about the trouble! Our dev team is aware of the issues with the Pixel 3 and are working to fix them.",2018-11-16 20:29:32,most_relevant,com.habitrpg.android.habitica +Blue Raivyn,https://lh3.googleusercontent.com/-LqGjWghG54A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO8jBo51VWwi615Ts9R9Y4soSypDw/photo.jpg,"Was ok until i saw the mtx. I guess it truely does ""gamify"" things now.",2,0,,2020-02-19 04:05:37,"Hi Blue Raivyn, thank you for your review. All items that can be obtained with premuim currency are cosmetic, and quests can be shared with partymates. There are also a number of ways to earn gems without using money- you can read more about them here: https://habitica.fandom.com/wiki/Gems#Obtaining_Gems_for_Free",2020-02-21 00:17:59,most_relevant,com.habitrpg.android.habitica +H wester,https://lh3.googleusercontent.com/a-/AOh14Ggel80KnccbqxByCiG2DvT13XvUTACFXBRVz64A6SM,two stars bc i have adhd AND i REALLY wanted it to work. it isn't user friendly and i can't give it the time of day to sit and figure it out. I'll try again later.... maybe this fall?,2,0,,2019-05-06 13:19:07,"Hi Heather, sorry to hear about the trouble. We'd love to hear any specific feedback you'd like to share about how we can make Habitica easier to use. You can send it to mobile@habitica.com",2019-05-07 16:41:13,most_relevant,com.habitrpg.android.habitica +Kylee Dea,https://lh3.googleusercontent.com/a-/AOh14GiUTVyjam7cLdjAlLnpIkvFGF7OyOM-y7EAwvOItQ,"Seems like it could be fun, I just had a hard time getting into it.",2,0,,2020-04-01 22:08:33,"Sorry it wasn't your cup of tea! If you’d like to share any feedback with us directly, you can do that via Menu - About - Send Feedback. Otherwise, we hope you find something that fits your needs. :)",2020-04-03 03:50:55,newest,com.habitrpg.android.habitica +Brent Kohler布伦特科勒,https://lh3.googleusercontent.com/a-/AOh14GjqDu4E0URmLZ0wKovR4GVIniGsDEwACPUWJwuxVjg,fun and helpful. graphics are awesome. just needs a few tweaks. too easy to cheat. i don't like the tavern because i am in recovery from drugs and alcohol so it's kinda anthemic. maybe a temple option would be a better social forum for inclusion for those of us who don't drink and/or use drugs. it would also be nice if you could continue to see completed to-do items after you have checked them so you can continue to visualize your progress.,2,0,,2020-03-20 03:42:18,"Hi Brent, thanks for the review. We do discourage all mentions of addictive substances in public chat spaces (except in the context of recovery) and we hope that helps. We hope to add more in-app stats but in the meantime, you may find the Data Display Tool helpful: https://oldgods.net/habitrpg/habitrpg_user_data_display.html",2020-03-20 22:44:15,newest,com.habitrpg.android.habitica +Adrian Blasco,https://lh3.googleusercontent.com/a-/AOh14GhQXz-Yod4Kqs1bfwE22OFxLOsdvFDc0lQVXnj7rA,Make a go back button,2,0,,2020-03-03 19:32:37,"Hi Adrian, thanks for your review and feedback! If this is helpful, you can manually adjust your stats and gold by going to Settings - Fix Character Values",2020-03-13 18:10:27,newest,com.habitrpg.android.habitica +Jeremy Lemon,https://lh3.googleusercontent.com/a-/AOh14Gh5icreFkIJotO5nlP1WGuE5krKOgiOvhBdBhnHkg,"Excited to try it out, but the app crashes whenever I try to create or edit tasks!",2,1,2.5,2020-02-25 05:49:12,"Hi Jeremy, sorry about that, the issue with adding tasks should be fixed in the latest update that was just pushed today. If you're still having trouble, we're happy to investigate. You can send a bug report directly to the dev team via Menu - About - Report a Bug.",2020-02-27 23:54:46,newest,com.habitrpg.android.habitica +Blue Raivyn,https://lh3.googleusercontent.com/-LqGjWghG54A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO8jBo51VWwi615Ts9R9Y4soSypDw/photo.jpg,"Was ok until i saw the mtx. I guess it truely does ""gamify"" things now.",2,0,,2020-02-19 04:05:37,"Hi Blue Raivyn, thank you for your review. All items that can be obtained with premuim currency are cosmetic, and quests can be shared with partymates. There are also a number of ways to earn gems without using money- you can read more about them here: https://habitica.fandom.com/wiki/Gems#Obtaining_Gems_for_Free",2020-02-21 00:17:59,newest,com.habitrpg.android.habitica +Cameron Lowe,https://lh3.googleusercontent.com/a-/AOh14Gi77vbOf4jRGZsi7OaQSeSYpKMXjl7GTaQkTnzXPw,"Despite various updates to ""fix bugs"" the first few screens of this app are still completely broken on Android. The app beyond sign-in still functions...but that's it. The game aspect is weak, the app isn't very well designed, and the tutorials tend to be broken on Android as well. I prefer apps like Fabulous, which I think approaches the subject of mental health and habit forming in a much better way.",2,1,,2020-02-14 14:52:53,"Hi Cameron, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2020-02-21 00:15:10,newest,com.habitrpg.android.habitica +Alex T,https://lh3.googleusercontent.com/a-/AOh14Gg6Cw-Q9DUjo0KsIXj4elkk4yT87XbJPkY1ZbM60Q,Set up was glitchy. I didnt get further than that. It's a great concept though and the art is cute.,2,0,2.4.3,2020-02-06 14:15:55,"Hi Alex, sorry to hear about this issue. Please let us know if you're still having trouble by sending us a message at mobile@habitica.com and the team will look into it.",2020-02-07 00:00:55,newest,com.habitrpg.android.habitica +Alex Cooper,https://lh3.googleusercontent.com/a-/AOh14GgXFOhsc2kGd-nqh2-Jw6_0VVuOPaxB1qDPzErs,"Good app, but very buggy and support is completely unhelpful. There's no way to change your subscription level in the app or play store. Even if you cancel the app will think you're still subscribed. So basically when you pick a subscription level you are fully committed to it because the devs are too incompetent and uncaring to help. When using a choosing skill the habits n dailies show up like 10% of the time and the devs basically said ""oh well, we can't fix that"" when I mentioned it.",2,23,2.4.2,2020-02-02 17:03:18,"Hi Alex, we're very sorry to hear you had this experience. Our customer service team will be happy to help with any refund you need if you email us at admin@habitica.com. We care very much about giving our users the best assistance and experience possible.",2020-02-06 23:56:36,newest,com.habitrpg.android.habitica +Aharon Shube,https://lh3.googleusercontent.com/-sBuaUFFTjAU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJME3mTxtcj6ohxeGItc6bkZxtxeGg/photo.jpg,"I like the concept because I've been trying to gamify my free time for a while, assigning a predifined score to each habit practiced the most during every hour, and all I wanted was the positive and the negative habits to affect the same progress bar, with the possibility to keep track of a daily score, with a possibly negative value. It's a damn shame but this aint for me. I wish it was more customisable",2,7,2.4.2,2020-02-01 22:48:14,"Hi Aharon, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2020-02-06 23:54:37,newest,com.habitrpg.android.habitica +Andrea,https://lh3.googleusercontent.com/-TDBSFnsdMNE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNFW9aTZ5-34rpDtAeNTJJEDVfl-A/photo.jpg,I love the idea but it's not working on my Samsung S10e. Like the main screen is just purple when I first open and then the features for designing my character didn't show any options. I'll happily try again once bugs are worked out. Keep us posted!,2,1,2.4,2020-01-15 01:53:36,"Hi Andrea, sorry to hear about this issue! Please try updating to the newest version, and let us know if you're still having trouble via mobile@habitica.com",2020-01-24 21:31:48,newest,com.habitrpg.android.habitica +A. L.,https://lh3.googleusercontent.com/-6A5cn344c28/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM9Vg6tB6rvAjbUsNhetKk3bc8ubA/photo.jpg,"1/5/20) I have tried the updates since my original post, and launch speed has slightly improved. Main Landing Page loads very slowly, but at least didn't crash right away again. Almost froze when scrolling through habits. I gave it more time to load, then tried going to a different section of the app & it crashed.. 11/9/19) Would be an awesome app, if it would load. Painfully slow startup and very laggy in app as a well. (Android 9 ; Moto G6 Play) Please fix! & I will actually update my review.",2,0,2.4,2020-01-05 12:35:34,"Hi A.L., sorry to hear about these issues. Our team is always working to improve speed and eliminate crashes. You can send more details to help us fix them via Menu - About - Report a Bug.",2020-01-14 18:10:32,newest,com.habitrpg.android.habitica +Mister Mungus,https://lh3.googleusercontent.com/a-/AOh14GgOIdQ3xj1AO_nuMuaCrswyG6G_oeC_ypR7rSLP,Galaxy S10 on Android 10. FTUE is busted. First two slides don't load. You get to the character creation and the avatar and all of the customize options are invisible/don't display. Please fix or mark the app as incompatible with Android 10.,2,4,2.4,2019-12-30 08:50:47,"Hi Mister Mungus, sorry to hear about this issue. Please try updating to the newest version, and let us know if you're still having trouble via Menu - About - Report a Bug and the team will look into it.",2020-01-04 00:57:58,newest,com.habitrpg.android.habitica +Tanmay Gupta,https://lh3.googleusercontent.com/-pJ4EHCtbmCs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMHOfsi7WmVZI202iISBBg8teRV5g/photo.jpg,Not very user friendly and very less interactive,2,0,2.3,2019-12-29 08:52:17,"Hi Tanmay, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2020-01-04 00:55:07,newest,com.habitrpg.android.habitica +Cocoa and Consternation,https://lh3.googleusercontent.com/a-/AOh14Gji7ttMEKb0pPHVqcZAYBvWCDHnz26dqTkOHYfNbw,"Boring and not very effective for me: the visual design is a bit of a yawn and it's too hard to earn rewards without paying. If it works for you, great but it doesn't give me enough gratification.",2,0,,2019-12-29 00:04:45,"Hi Cocoa, thanks so much for your feedback, we'll be sure to pass it on to the team. Our artwork is done by volunteers from our community and is intended to evoke a retro style. Sorry it's not your cup of tea!",2020-01-04 00:54:46,newest,com.habitrpg.android.habitica +Georges-Henri Daigle,https://lh3.googleusercontent.com/-oGYtJpGCjqA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM9WYk44AU5lbii73fpxac1JafgIg/photo.jpg,"I was using this app just fine without problems for about 2 months but when my wife decided to get us both a subscription, my account stopped working right. Whenever i check off a task i just get an error message and nothing gets counted. I did everything the helpers told me (clear cache, reinstall the app, restart phone) and nothing worked. Its been about a week and i have yet to hear again from technical support.",2,47,2.4,2019-12-23 10:54:38,"Hi Georges-Henri, sorry to hear about the trouble! Our team is very small since the app is ad-free and we don't sell user data, and we are not always able to respond instantaneously to support requests, particularly during the holidays. If you have not yet received help please email admin@habitica.com and we'll be sure to let the staff know.",2020-01-04 00:51:37,newest,com.habitrpg.android.habitica +theredwolf,https://lh3.googleusercontent.com/a-/AOh14GiCUN5De7-dGJzfKFpWtM3g1fyVWUvt1ubPkUflJA,Certain pages don't fit on screen.,2,0,2.4,2019-12-23 04:25:44,"Hi theredwolf, sorry to hear about the trouble. If you'd like to send us more detail to help us investigate these issues, you can send that information directly to the support team via Menu - About - Report a Bug.",2020-01-04 00:48:02,newest,com.habitrpg.android.habitica +Rj Marayag,https://lh3.googleusercontent.com/a-/AOh14GjexKYQFLZKT18YE470Mfn-0nZNS8EYzJXy756yEQ,"Does this works on android 10? I tried installing it and tried to make a character but it seems it's bugging. Doesn't show my character (from character-making phase). Reinstalled it, same thing occurred. Hopefully you guys can help me here. Cheers!",2,1,2.3,2019-12-16 18:47:33,"Hi Rj, sorry to hear about this issue. Please let us know if you're still having trouble by sending us a message at mobile@habitica.com and the team will look into it.",2019-12-19 18:27:53,newest,com.habitrpg.android.habitica +This Is Fallacious,https://lh3.googleusercontent.com/a-/AOh14GhtVYhpSxV9pGcnA4kaQoGb8LyAPoli2Z5n9Kug,"Would you quit directing me to the website!? If I want to join a party/guild it should be done on the app. It won't let me log in on the site AT ALL.. Why you people would choose to have it so if you use ""log in using Google"", it resets and begins a whole new account without asking, now I have two accounts on one email? It won't even give me my password! I tried resetting it several times. How annoying, bad design. After I spent so much time on the app too, all for it not to work",2,5,2.3,2019-12-10 20:25:43,"Hi This is Fallacious, we apologize for the inconvenience. We hope to have complete feature parity for all platforms as soon as possible! We have a very small team since we don't make money from ads or selling user information, so improvements may take longer than you're used to from other apps. Thanks for your patience.",2019-12-12 19:28:20,newest,com.habitrpg.android.habitica +Omari Rose,https://lh3.googleusercontent.com/a-/AOh14GjBSz1qGtkFKhnRUoNcjZ9_ZYxYwnFj_z-Ro7waFg,"Need Wifi/Data for it. I get that you can play with your friends, but it would be nice if I could use it without wifi for data anyway. I have a limited ammout of data and brain memory. So by the time I get home after all day I've forgotten my habits and the point becomes mute. Only gave this an extra star because I love the 8 Bit art.",2,0,,2019-11-25 17:25:22,,,newest,com.habitrpg.android.habitica +Eugene Kuznetsov,https://lh3.googleusercontent.com/a-/AOh14GhvY33BibZOpnzMhR1SSuCFkIDYU0eEt_3iJ-d7Hog,"The idea is wonderful. But a lot of tedious mistakes spoil the whole impression. For example, information is slowly updated even within the application, often clicking on a menu item is ignored. If you create a task without a title, but with a list, it will become closed for editing, just delete. Not all things are obvious. I had to read help to solve simple questions. Well, the old-school 8-bit graphics - not everyone likes it.",2,3,2.3,2019-11-21 23:37:05,"Hi Eugene, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback. Our artwork is done by volunteers from our community and is intended to evoke a retro style. Sorry it's not your cup of tea!",2019-12-06 00:44:14,newest,com.habitrpg.android.habitica +Ryan Haynes,https://lh3.googleusercontent.com/-jc_67GfE23M/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPIdNYkHGP6DJafvx74JsHTUNPYWQ/photo.jpg,"Seems to have glitched out on me. When I put in my username and display name, it gave me an error saying ""Path Profile.Name Required."" Then none of the Avatar customization options appeared. I wasn't even able to start the third page when the app crashed. Reopening the app took me to the Dailies tutorial and now I'm sure I'm missing something. I have a Samsung Galaxy Note 10.",2,2,2.3,2019-11-21 02:18:24,"Hi Ryan, sorry to hear about this issue. Please let us know if you're still having trouble by sending us a message at mobile@habitica.com and the team will look into it.",2019-11-21 18:28:33,newest,com.habitrpg.android.habitica +Emily Schlintz,https://lh3.googleusercontent.com/-Ekl4-wTybN8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNqunM8W6hVIlVo8Xvi6iny7m2hfA/photo.jpg,I really liked this until I realized that unfinished daily/repeating tasks get marked as done whether you complete them or not the next day. That makes it pretty useless for tracking tasks I need to do each week.,2,0,2.3,2019-11-19 13:05:22,"Hi Emily, thanks for your review. We are working to add an overview so you can see your completion stats more clearly. We'd love to hear more about what you'd like to see- let us know via Menu - About - Send Feedback. Our current workaround is this site, created by one of our devs: https://oldgods.net/habitrpg/habitrpg_user_data_display.html",2019-11-21 18:26:58,newest,com.habitrpg.android.habitica +Deepika A,https://lh3.googleusercontent.com/-odLegy5Kfkg/AAAAAAAAAAI/AAAAAAAADGE/AAKWJJNJYlQXT1NqC8u9qL1TxUgWkRjDtA/photo.jpg,Why does the app keep showing server connection lost even though there is no problem with my network or internet server? I can't open the app and refresh it at all.,2,0,2.3,2019-11-16 06:20:16,"Hi Deepika, you may have run into some server issues we had at the time you posted- let us know if you're still having trouble via Menu- About -Report a Bug and the team will look into it.",2019-11-18 17:20:08,newest,com.habitrpg.android.habitica +Wafa Rashid,https://lh3.googleusercontent.com/a-/AOh14GizflepKIHCQZmpHj2m_JQ2jSvG0iIVpMm2Vnj0Ng,Good ideas but not well implemented. It gets tedious and boring after a while.,2,0,,2019-11-16 05:53:54,"Hi Wafa, Thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-11-18 17:19:02,newest,com.habitrpg.android.habitica +Holy_Empress,https://lh3.googleusercontent.com/a-/AOh14GgtrvcjFigVBNpCMuh0ArgJIBAamTdoJdzgx5tJxw,"I downloaded this app today but there is a problem that makes me unable to see to-do lists,habits etc. I really want to use this app but I can't do it when I can't see the options. It would be great if you fixed it so I can use it!",2,0,2.2.2,2019-11-13 04:38:36,"Hi Holy_Empress, sorry to hear about this issue! If pulling down in a task list to refresh doesn't solve this issue, please send us a report via Menu - About - Report a Bug and the team will be happy to take a look for you!",2019-11-15 00:23:19,newest,com.habitrpg.android.habitica +A S,https://lh3.googleusercontent.com/a-/AOh14GjQEdE3qoUjLni3tK9KfCedSKlBWm2trVaqcMbX_g,"Two bugs right at the beginning of registration. First two images didn't load on the three slides intro, then when registering my info, it moved to the next screen but gave a name error and I couldn't make an avatar. Not a good first impression. Just deleted my account thru the website.",2,0,,2019-11-09 13:09:40,"Hi AS, thanks so much for this thoughtful review, and thanks for giving Habitica a try.",2019-11-15 00:21:03,newest,com.habitrpg.android.habitica +Alenezi989 A,https://lh3.googleusercontent.com/a-/AOh14GiqBRnTpMaS0znMfSdBzjNUjlJtkLsGydK_wVGJSvo,"The app looks interesting but it didn't work in my device which is a Samsung Galaxy Note9 , I couldn't see the introduction and I couldn't see my character in the character creation window it kept saying path profile.file is needed I don't know how to fix it",2,0,2.2.2,2019-11-05 10:56:04,"Hi Alenezi, sorry to hear about this issue. Please let us know if you're still having trouble by sending us a message at mobile@habitica.com and the team will look into it.",2019-11-05 20:08:19,newest,com.habitrpg.android.habitica +Michael Wolf,https://lh3.googleusercontent.com/a-/AOh14GiGJT2HNR1Hfksrut6Hb0CzoumA60XMdfovx2da_g,good app but skills glitch out all the time.....fix this for 5 stars,2,0,2.2.1,2019-10-28 17:38:12,"Hi Michael, sorry to hear about this issue. Please let us know if you're still having trouble via Menu - About - Report a Bug. A direct report will provide details that will help the team fix the issue.",2019-11-05 19:56:16,newest,com.habitrpg.android.habitica +Alysse Rathburn,https://lh3.googleusercontent.com/a-/AOh14GjAYLpNrymIuhO9cLRjilUyzDqsk3v7azJeHh_D,Super glitchy. Too frustrating to bother trying to use it.,2,1,2.1.1,2019-10-26 04:02:51,"Hi Alysse, sorry to hear about these issues. Please try updating to the newest version, and let us know if you're still having trouble via Menu - About - Report a Bug and the team will look into it.",2019-11-05 19:53:52,newest,com.habitrpg.android.habitica +Marie-Pierre governale,https://lh3.googleusercontent.com/-jEjbfUPJZ3w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO4PFBulQoEGoTSy8gKOo2rnb155g/photo.jpg,"I'm probably too old for this. Couldn't find the energy/patience to work out how it works (and why was it preset with meditation?), I guess it would seem obvious to someone who uses technology more. Bought a huge paper planner called Trigg instead. Less portable! But it won't crash, malfunction or lost if I break my phone...",2,0,,2019-10-22 17:55:34,"Hi Marie-Pierre, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-10-25 00:17:13,newest,com.habitrpg.android.habitica +Will Green,https://lh3.googleusercontent.com/a-/AOh14GgsLGPNZZ_5jbzZTJ_x6TGl4RyYe-_GF3yn8wOfFOI,"Great concept, but really quite bad execution. With so many bugs even in the new player introduction it feels like an early access, not v2.2 of anything. Surprised to learn that it's been in public release for 4 years now. I would be ashamed to make or spend money from any transaction within this game. I'm not usually this harsh, and I hope none of the devs take this review personally, but get it together. Needs a major QOL & UX overhaul before I would consider the concept v1.0 complete.",2,60,2.2,2019-10-18 12:21:34,"Hi Will, thank you so much for this thoughtful review. You can help us fix bugs by reporting them directly via Menu - About - Report a Bug. We have a very small team since we don't make money from ads or selling user information, so improvements may take longer than you're used to from other apps. Thanks for your patience.",2019-10-25 00:10:29,newest,com.habitrpg.android.habitica +Chas Phyle,https://lh3.googleusercontent.com/a-/AOh14Gj0-5hcHdLgyjKXelx1Ox8Gkk_mGkjD_Wg8EocgHA,"The whole app is pretty broke on the note 9 (edit: I would love to report the big to help however, the settings menue does not work so I do not have the ability to send a report).",2,0,2.1.1,2019-10-18 03:23:46,"Hi Chas, sorry to hear about this issue. Please try updating to the newest version, and let us know if you're still having trouble via mobile@habitica.com and the team will look into it.",2019-10-25 00:07:51,newest,com.habitrpg.android.habitica +TwistedKing88,https://lh3.googleusercontent.com/a-/AOh14GhD1bh57RvShgqKYSUVgtZDrRSuQbyQAdac0-ZRpg,Very buggy first few times that I've used the app. Repeatedly having to close and reopen it for it to properly work.,2,0,,2019-10-13 04:30:01,"Hi TwistedKing, sorry to hear about this issue. Please try updating to the newest version, and let us know if you're still having trouble via Menu - About - Report a Bug and the team will look into it.",2019-10-17 21:22:58,newest,com.habitrpg.android.habitica +Ed Hasaba,https://lh3.googleusercontent.com/a-/AOh14Ghc5KD1om3Qe2_Qg3PgJivlYt8-ND-oEA6ohq0BeQ,"I immediately encountered a problem when I began, by misclicking on one of my Habits. There's no way to correct for that. Manually change the values, yes, but the xp and hp don't change to reflect that automatically. Secondly, the settings page is broken on my S9, and the issue is difficult to describe. The display freezes so if you scroll, an instance of the text moves while the another is stuck below. Honestly the tutorial really needs work. I could go on but space constraints.",2,1,2.1.1,2019-10-09 23:15:00,"Hi Ed, thanks so much for this thoughtful review. You can send the mobile team more details directly by going to Menu - About - Send Feedback.",2019-10-11 00:59:19,newest,com.habitrpg.android.habitica +Niko Perez,https://lh3.googleusercontent.com/a-/AOh14GiunRwBU3dimrZvCgvKZuTH4KjHw8SSXCf8UpfMpA,"Laggiest experience ever, icons were missing everywhere, it seemed really cool but quite unplayable for me.",2,0,,2019-10-07 20:51:11,Hi Niko! Thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.,2019-10-11 00:53:28,newest,com.habitrpg.android.habitica +Klaus Acobo,https://lh3.googleusercontent.com/a-/AOh14GhSE30pUnIS6hOx6t6XBNYx8NMAMW7jIcx7jWrjNg,"To be honest, it's a really good app. It has everything (simplicity, system, ui, etc.) but seriously, if this is really a productivity app, it needs to have an offline mode. Does it really need to have an internet connection every time someone has to check their to do list?",2,0,,2019-09-24 14:13:50,,,newest,com.habitrpg.android.habitica +eli les,https://lh3.googleusercontent.com/-UPWdrPTweLk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMNIp7v03YgY6h8ndY9rOX-WQLrYg/photo.jpg,"it is fun but now i just level up and i don't get any notifs for ""unallocated stat points"" anymore",2,0,2.1,2019-09-14 22:01:53,"Hi Eli, sorry to hear about the trouble. If you'd like to send us more detail to help us investigate this issue with notifications, you can send that information directly to the support team via Menu - About - Report a Bug.",2019-09-26 21:19:59,newest,com.habitrpg.android.habitica +Olivier Gosselin,https://lh3.googleusercontent.com/a-/AOh14GgfshjDfDCz-QT7l4skDzrT2zUbeSORestZHGMXP2M,"Did not enjoy the layout, workflows, rewards, explanations. A+ for the effort.",2,0,1.6.1,2019-09-11 15:05:30,"Hello Olivier, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-09-12 19:31:31,newest,com.habitrpg.android.habitica +Leolani Lancaster,https://lh3.googleusercontent.com/-Wz8e4-p109k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM9iaPb92p02HLiXcDLDsnIquKHlA/photo.jpg,"This app is either really good or really bad/broken --- there are no in betweens. I love the concept, and its super cute, but it bugs out quite a bit and besides which, is super easy to misclick on. As a result, I've lost or accidentally lost items, as well as accidentally spending nearly all of my coins completely on accident because there's no verification for buying and no refunding??? And that's besides the part where it constantly unequips all of my gear... This game needs help...",2,1,2.0.6,2019-09-09 21:04:45,"Hi Leolani, thanks for your review! You can help us fix bugs by reporting them directly via Menu - About - Report a Bug. If you've lost any gold or xp you'd like back, you can adjust this by going to Menu - Settings - Fix Character Values.",2019-09-12 19:30:05,newest,com.habitrpg.android.habitica +Mayank Jha,https://lh3.googleusercontent.com/a-/AOh14GihP59HrI9QABVfJT3k1oUmMHe1_i2IzX9W_8Z7mA,Please make it work offline!!,2,0,2.0.4,2019-09-04 05:06:54,,,newest,com.habitrpg.android.habitica +Yuu Urase,https://lh3.googleusercontent.com/-XW6xPauTQB0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOJ694FXaery4zcDHcVmiuictV8AA/photo.jpg,It would be better if there are more options for customising the avatar and theme which is in purple. You will need to spend money for a decent background. The avatar is pixelated and doesn't look good. Getting a bit bored of it now.,2,1,2.0.4,2019-09-01 06:39:04,"Hi Yuu, thanks for your review. Our artwork is done by volunteers from our community and is intended to evoke a retro style. Sorry it's not your cup of tea!",2019-09-05 18:31:33,newest,com.habitrpg.android.habitica +Snow Flake,https://lh3.googleusercontent.com/-wWiFT_Um8K8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN4qHy9M-5VTKVxGFCjQwxv9zyCJA/photo.jpg,"Very nice and interesting concept but completely useless because you flipping need wifi to update your checklist?! Furthermore even if my parents didn't control my wifi and I had full access, there should be a way to see all your tasks etc at a glance without having to scroll so much. Also what's the point if you can just go in the settings and set the amount of money you want? And a bunch of my friends joined habitica only to leave because it takes up too much time, and it's not fun enough.",2,1,,2019-08-31 19:29:08,"Hi Snow Flake, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-09-05 18:28:37,newest,com.habitrpg.android.habitica +Lisa K,https://lh3.googleusercontent.com/a-/AOh14GigOuS_sjk17IqaBzs7GPlCToyIOstOCiCzWilN,Downloaded a bunch of these types of programs to find the one that was best. This was one of the worst. Played with it for about an hour and couldnt figure it out.,2,0,2.0.4,2019-08-30 20:57:03,"Hi Lisa, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-09-05 18:28:16,newest,com.habitrpg.android.habitica +Cool Guy,https://lh3.googleusercontent.com/-H5DpgOHEI1s/AAAAAAAAAAI/AAAAAAAAAOw/AAKWJJPrIBVkhv4clqicfWqq8KQH1gONWg/photo.jpg,"Good idea, bad execution. The first screen, with the customkze character options, wouldn't let me pick anything; therefore, I couldn't move on.",2,0,,2019-08-20 23:07:24,"Hi Cool Guy, sorry to hear about this issue. Your character should update to your choices once you select a task list and pull down. In any case we've let the developers know about this issue and they are working to fix it for the next update! You can send us additional information via Menu - About - Report a Bug if you would like.",2019-08-23 23:18:44,newest,com.habitrpg.android.habitica +Grey Malkin,https://lh3.googleusercontent.com/a-/AOh14Gi78TFXpVgCLgpewQpJLOzAkRGJYsMKmXr40pu_vA,"Great concept. But I didn't build up coins quickly enough, and didn't get any gems, meaning I couldn't get anything new for my character. Honestly, a calendar and check-mark system would give me more incentive than this.",2,0,,2019-08-20 21:57:57,"Hi Grey, thanks for your review! We'll keep your feedback in mind as we continue to work to improve Habitica. You can contact us directly by going to Menu - About - Send Feedback if you'd like to give us additional details.",2019-08-23 23:18:24,newest,com.habitrpg.android.habitica +Emily Honn,https://lh3.googleusercontent.com/a-/AOh14Gg5a-2ra5tskTxQ-KTAMEE29LbNu96PADyVJ5EO,I really enjoyed this app but now if I delete a daily reminder I still get the notification for it! Which is highly annoying! Please fix this it distracts me from my work each time I here my notification go off for a deleted reminder,2,0,,2019-08-18 18:51:47,"Hi Emily, sorry to hear about this issue. There's a new update coming soon. After you update, please let us know if you're still having trouble via Menu - About - Report a Bug and the team will look into it.",2019-08-23 22:30:10,newest,com.habitrpg.android.habitica +fejfo,https://lh3.googleusercontent.com/a-/AOh14GjBfDEHXALWTCAd4n1PcTDt6O9oWXdTABevbLX4,Can't check of checklist items,2,0,2.0.3,2019-08-18 15:17:38,"Hi there, sorry to hear about this issue. Please let us know if you're still having trouble via Menu - About - Report a Bug and the team will look into it.",2019-08-23 23:11:25,newest,com.habitrpg.android.habitica +Imran Zainal,https://lh3.googleusercontent.com/-ckEOkcDnkiE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNm6FSXmJdkDgA9VLuZFDDEAYXGBg/photo.jpg,Super super buggy on my Note 8 . Can't press anything on the character creation menu after registering . Justin ( the tip guy ) ALWAYS comes up after pressing any of the menus . Super super annoying . please fix a.s.a.p,2,0,,2019-08-17 08:49:08,"Hi Imran, sorry to hear about this issue. Your character should update to your choices once you select a task list and pull down. In any case we've let the developers know about this issue and they are working to fix it for the next update! You can send us additional information via Menu - About - Report a Bug if you would like.",2019-08-23 23:08:25,newest,com.habitrpg.android.habitica +Jessica Serafin,https://lh3.googleusercontent.com/-AQxM_3lQS0Y/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMM7j2BfFAcQ2y7ZFx4RPCCzPuxng/photo.jpg,Please help. Relogging in after several months disuse. It has asked me to enter a username and it's stuck on 'username taken'. Will not let me progress to the app. I've tried every random letter/number combination so it's definitely not taken. Just buggy app?,2,1,2.0.3,2019-08-12 14:51:48,"Hi Jessica, sorry to hear about the trouble! If you contact the support team at admin@habitica.com someone can look into this for you and sort this out.",2019-08-13 23:12:48,newest,com.habitrpg.android.habitica +Iamacrazydude,https://lh3.googleusercontent.com/-3K4igbU5GFo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMdOIsIK7AWjpiP_A4OxG4dOufj-w/photo.jpg,Change of days in app is a major problem. I wish it would happen smoothly.,2,0,2.0.2,2019-08-02 08:39:36,"Hi Iamacrazydude, sorry to hear about the trouble. It sounds like you're experiencing a bug which usually only affects users on their second day. Going forward your dailies should reset correctly. If not please let us know via Menu - About - Report a Bug .",2019-08-08 20:13:04,newest,com.habitrpg.android.habitica +Ariel Hamilto,https://lh3.googleusercontent.com/-DTVFLxKGZ-A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMGbWTHVDNC-6ZhjQGItlspF_nfnw/photo.jpg,"It would be a very helpful app if it actually worked the way you'd expect... if I say I want a task to be weekly, but make it so I can complete that task any day, what I'm trying to do, is make the task flexible, so I can do the weekly task whatever day of the week I feel like, instead however, making it available everyday turns it into a daily task, which I will be punished for by not completing daily, my only real solution at the moment is filling up my to-do list which is really frustrating.",2,45,2.0.2,2019-07-28 13:12:07,Hi Ariel! Thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.,2019-08-01 18:41:47,newest,com.habitrpg.android.habitica +Phillip Reese,https://lh3.googleusercontent.com/a-/AOh14Gh3j0fL6oh0FLux2Y5UQPWKCjbo0BONpQ1zaFPFiHo,lost the ability to sort to dos by tags. very inconvenient. i used that feature a lot.,2,1,2.0.1,2019-07-05 18:59:52,"Hi Phillip, sorry to hear about this issue. Please try updating to the newest version, and let us know if you're still having trouble via Menu - About - Report a Bug and the team will look into it.",2019-07-23 16:28:44,newest,com.habitrpg.android.habitica +Victor Dalisay,https://lh3.googleusercontent.com/-q84hiE9Nhtw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOCuvov1a9NQqM-jZ6OFtDeoUkUGw/photo.jpg,It's slow. It'll be better if it works offline,2,0,,2019-07-03 00:35:38,,,newest,com.habitrpg.android.habitica +m pe,https://lh3.googleusercontent.com/-ijyFcOrz3dk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMXJomFRGYhy7ASTj11Mgx0sn-UdQ/photo.jpg,"latest update has not fixes bugs that occur every day.frustrating to use.sometimes it won't save,will just have a loading loop.Some basic things are not customizable like the calendar starting on Monday or the date format ,doesn't keep track of activity data correctly . Please focus on getting the app to work instead of focusing on superficial appearance! was thinking of paying for a subscription but what's the point if the money will not go towards making the app usable & less temperamental?",2,1,2.0,2019-07-02 03:05:13,"Hi m, thank you for your review and feedback. As Habitica does not serve ads or sell user data for revenue, we are only able to retain a small staff so improvements may not happen as quickly as you're used to from other apps. We'll certainly pass your feedback on to the mobile team in any case.",2019-07-22 23:54:46,newest,com.habitrpg.android.habitica +Cindy Herring,https://lh3.googleusercontent.com/a-/AOh14Gg1crXUa3jxQdLA_WXuTToq3REo6PS3E4Xr17ap_g,it got boring fast,2,0,2.0,2019-06-30 11:55:13,"Hi Cindy, thanks for your review! We'll keep your feedback in mind as we continue to work to improve Habitica. You can contact us directly by going to Menu - About - Send Feedback if you'd like to give us additional details.",2019-07-22 23:51:24,newest,com.habitrpg.android.habitica +Siobhan Macdonnell,https://lh3.googleusercontent.com/a-/AOh14GiUmoFHfdtdp2qFjHihhmEav2LOqBBbBwBkSzlSDA,I really enjoy this app but it has just stopped working randomly. I tried to hatch a dragon egg and the app crashed and since then I cant access it. I have tried uninstalling the app but nothing is working. I have even tried to use the website but it doesnt keep track of my exp gained. I am very dissapointed as I really like the idea of the app.,2,4,2.0,2019-06-27 05:10:09,"Hi Siobhan, sorry to hear about the trouble! Please let us know if you're still having trouble by sending us a message at mobile@habitica.com and the team will look into it.",2019-07-22 23:48:48,newest,com.habitrpg.android.habitica +roxaurelia,https://lh3.googleusercontent.com/a-/AOh14GiyX_-AujPurtYmIi13HAl5cQ2dyi9uOM1ipQUYjno,"upon using the app so far, i wish that it would be accessible offline. other than that, the idea to challenge yourself to earn points for your habits and chores is quite remarkable",2,0,,2019-06-24 13:05:27,,,newest,com.habitrpg.android.habitica +Rich Crawford,https://lh3.googleusercontent.com/a-/AOh14Gju9wGBwjkvQWzUeaQ5xLpZG6ojphKaP-xG9a5M,"Just had a big visual update but if anything the app is getting worse and worse. Now most of the time when I tap a plus sign to increase count of something, nothing happens. I have to drag down to refresh and then after it thinks for a minute it'll update the count. Or not, it kind of does what it wants at this point. I've mostly stopped using it because of this.",2,6,2.0,2019-06-23 18:57:26,"Hi Rich, thanks for your thoughtful review! We'll pass your feedback along to the development team. If you'd like to send us more detail to help us investigate these issues, you can send that information directly to the support team via Menu - About - Report a Bug.",2019-06-25 18:45:28,newest,com.habitrpg.android.habitica +Canh Pham,https://lh3.googleusercontent.com/-BReBVFbTajY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPcG8kxbbZBPiGeZLX2DVI8hCPexQ/photo.jpg,"This is terribly buggy and you're better off avoiding it; use the website instead, if you're on your mobile device. Latest update doesn't update habit counters on-screen after you press any buttons; all of the command is processed though. App still doesn't display items that are found. Just another buggy update.",2,88,2.0,2019-06-22 01:31:40,"Hi Canh, thanks for your thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback",2019-04-24 02:39:30,newest,com.habitrpg.android.habitica +Hannah W,https://lh3.googleusercontent.com/a-/AOh14GiiVguPzYBbuf_SJ_NJbStS7e3QQbFEqqF83HFwng,"Interesting concept but I get a ""path type is required"" error all the time so I stopped using it",2,0,2.0,2019-06-21 18:04:17,"Hi Hannah, sorry to hear about the trouble! We're happy to look into this if you can send us some more details at mobile@habitica.com - please let us know what type of action causes this error. Thank you!",2019-06-25 18:17:16,newest,com.habitrpg.android.habitica +Richard Case,https://lh3.googleusercontent.com/a-/AOh14GicDT8PARlMBYfh3tCjGoQ9C6n9YIoLntig37D-Lg,requires an account,2,0,1.9.2,2019-05-27 12:10:16,,,newest,com.habitrpg.android.habitica +Ryan M,https://lh3.googleusercontent.com/a-/AOh14GjnCqHdAeeso_mBqIW0kSGs8sw_Yuf31ThQfIQeRg,used it awhile ago and recently installed on my new phone. as soon as it opened it was clear i would not be able to use it. several things where off (like trying to put pictures in an office doc) worse still when i try to add many options are cut off by some form of white box that sits in the way. unfortunately dailies are one of the missing options and a huge part of how i personally used the app.,2,0,,2019-05-24 18:27:49,"Hi Ryan, sorry to hear about these issues. We have not received any similar reports, so it would be very helpful to us if you could send a direct report with more details so we can investigate. You can send that information directly to the support team via Menu - About - Report a Bug.",2019-05-28 20:44:29,newest,com.habitrpg.android.habitica +ShyGirl Paris,https://lh3.googleusercontent.com/a-/AOh14Ggj-FDmkclqOV86nespkKwixQzqe2_KcwjpZwJq_Q,it keeps bugging out whenever i try to do anything. it wont stop doing ghe tutorial and wont ket me delete tast and stuff.,2,0,1.9.2,2019-05-22 20:22:06,"Hi ShyGirl, sorry to hear about the trouble! If you'd like help and can't use the in-app bug reporting function because of the issues you mentioned, you're welcome to email us at mobile@habitica.com",2019-05-28 20:41:34,newest,com.habitrpg.android.habitica +Ehjae Chan,https://lh3.googleusercontent.com/a-/AOh14Gj2FG0AjwGQUS5e2MOVbE0l8v8oeSIhV925aFzB,"I love the idea of this app. Unfortunately, it is not super user friendly. I've been using it for over a month and it is not very obvious how to complete quests or anything else. (and yes, I have gone through the FAQs) I finally figured out how to hatch eggs, but that's all. It's a pretty clunky app as a ""game"" but it does a pretty good job of keeping me accountable for things. That's the only reason I haven't deleted it. As a ""Gamify your life"" app, I'm not convinced. Hopefully it improves!",2,0,1.9.1,2019-05-16 07:02:54,"Hi Ehjae, thanks so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-05-28 20:31:52,newest,com.habitrpg.android.habitica +Ben Wilcox,https://lh3.googleusercontent.com/a-/AOh14GjxgMUSjSbEGvRavSETGmfgt9fJC3HnGvxaibUXuw,"I quite like habitica, but this app has some issues. The biggest problem for me is that switching the to do list to ""Scheduled"" is supposed to sort the to do items by due date (that's how it works on the website), but it doesn't. That makes the to do list (in the app) useless for me.",2,4,1.9.1,2019-05-11 15:02:54,"Hi Ben, sorry to hear about the trouble! We'll be sure to pass your feedback on to the team.",2019-05-16 21:30:04,newest,com.habitrpg.android.habitica +Philip Bradford,https://lh3.googleusercontent.com/-Tpv1XdPFf3I/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPoU6e7aW362wmvqKeTkvdmyw8mOA/photo.jpg,"Needs a VPN if you're in China. Some questionable UI and design choices, though the fundamentals work well for the most part. If you want to do anything remotely interesting then you have to pay, of course. And the subscription fees are absolutely extortionate. One month is the same price as a month of Netflix and a year is £47. A year of MS Office 365 with all of its functionality is £60... Let that sink in. I don't understand why, for relatively little, this app costs so much. Greed, I assume.",2,3,1.9,2019-05-07 02:04:20,"Hi Philip, thanks so much for this thoughtful feedback. We'll be sure to pass it on to the team.",2019-05-07 16:43:37,newest,com.habitrpg.android.habitica +Jack Daniels,https://lh3.googleusercontent.com/-R8LnawPUxr4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOtTTabPYYE2v3zJsmfIX97LIzFPA/photo.jpg,"I couldn't get past the set-up. ""'strength is not valid enum value path 'attitude'""",2,0,1.9.1,2019-05-06 22:13:26,"Hi Jack! Sorry about that, the issue with this error message should be fixed in the latest update (2133). If you're still having trouble, we're happy to investigate and it helps if you send a bug report directly to the dev team via Menu - About - Report a Bug.",2019-05-07 16:42:35,newest,com.habitrpg.android.habitica +H wester,https://lh3.googleusercontent.com/a-/AOh14Ggel80KnccbqxByCiG2DvT13XvUTACFXBRVz64A6SM,two stars bc i have adhd AND i REALLY wanted it to work. it isn't user friendly and i can't give it the time of day to sit and figure it out. I'll try again later.... maybe this fall?,2,0,,2019-05-06 13:19:07,"Hi Heather, sorry to hear about the trouble. We'd love to hear any specific feedback you'd like to share about how we can make Habitica easier to use. You can send it to mobile@habitica.com",2019-05-07 16:41:13,newest,com.habitrpg.android.habitica +Brajeswar Das,https://lh3.googleusercontent.com/-bevuBpPqsT4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOrQ0hls15dmHjRpoWgymhZnLEAAA/photo.jpg,It's completely a mess. Can't understand what to do and where.,2,0,,2019-05-01 17:50:59,"Hi Brajeswar, sorry to hear about the trouble! We're happy to help out if you can give us some more details about what you'd like to know. Feel free to reach out via mobile@habitica.com",2019-05-02 19:27:06,newest,com.habitrpg.android.habitica +Mohammed Ameer,https://lh3.googleusercontent.com/a-/AOh14GhwuY85jk7Ev0OlVbCNumGVVuHm8LS242TB6mAJ6g,Couldn't get past registration/login. I've never used the app before but when I tried to make an account it said that my email has been taken and when I went to login it just kept loading forever.,2,0,,2019-04-28 22:06:30,"Hi MTXShift Games, sorry to hear about the trouble! This issue should be resolved in the latest update. Please let us know if you're still running into this issue via mobile@habitica.com and we'll be happy to help!",2019-05-02 19:23:18,newest,com.habitrpg.android.habitica +Cyprian Guerra,https://lh3.googleusercontent.com/a-/AOh14GiWDVnrG8mydKQ3J8kfoyXjJ0jkx_2G-UNDAhhTy6E,Not really interesting. Doesn't help if you don't have a discipline already in place.,2,0,,2019-04-27 11:43:16,"Hi Cyprian, sorry to hear Habitica wasn't for you, but thanks for giving us a try. We'd love to hear any specific feedback you have via mobile@habitica.com",2019-05-02 19:21:17,newest,com.habitrpg.android.habitica +Izzy Young,https://lh3.googleusercontent.com/a-/AOh14Gj3fQUdFNCT3joGc8PImQifKQess8o0v6AMJFYIXw,"Great concept, but can they hire an artist, this artwork is outdated!! otherwise I would use this",2,0,,2019-04-07 06:33:51,"Hi Izzy, thanks for your review. Our artwork is done by volunteers from our community and is intended to evoke a retro style. Sorry it's not your cup of tea!",2019-04-12 00:08:24,newest,com.habitrpg.android.habitica +Alexis Lane,https://lh3.googleusercontent.com/-tMzJhf07ibk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPqQJLVwyUNZbLWCcBmoeC71triQA/photo.jpg,Too hard,2,0,1.7,2019-04-05 10:23:27,"Hi Alexis, sorry to hear you had trouble. If you'd like some assistance learning the ropes, folks in the Habitica Help Guild (which you can find listed first in our public Guilds list) would be happy to answer any questions you have.",2019-04-12 00:10:23,newest,com.habitrpg.android.habitica +Meenakshi Singh,https://lh3.googleusercontent.com/-vXCPpbkUhQs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO-9Z4VuAsvdyVqQVnfbGlMu0fonw/photo.jpg,The dailies and habits should reset everyday.please let them reset,2,0,,2019-03-29 04:08:30,"Hi Meenakshi, sorry to hear about the trouble. We're working to fix this bug, which only affects users on their second day. Going forward your dailies should reset correctly. If not please let us know via Menu - About - Report a Bug .",2019-04-03 20:23:51,newest,com.habitrpg.android.habitica +Samarth Narladkar,https://lh3.googleusercontent.com/a-/AOh14GgZCK0lIISlx6fUQkhMO3YczYA1TxBIzNjXcJ08,Can do better very complex to handle for newbies.,2,3,1.8,2019-03-26 07:12:20,"Hi Samarth, thanks for your review! We'll keep your feedback in mind as we continue to work to improve Habitica. You can contact us directly by going to Menu - About - Send Feedback if you'd like to give us additional details.",2019-04-03 20:33:28,newest,com.habitrpg.android.habitica +Анна Куликова,https://lh3.googleusercontent.com/a-/AOh14Gi4Sd7op-yzDeYoQDxk2gl2VzyNyC-Auu2NzwGN2w,Some my tasks and habits dissappear. There aren't any in completed.,2,8,1.8,2019-03-25 17:38:08,"Hi there, sorry to hear about this issue. Please let us know if you're still having trouble via Menu - About - Report a Bug and the team will look into it.",2019-04-03 20:35:49,newest,com.habitrpg.android.habitica +Burning Scribbles,https://lh3.googleusercontent.com/a-/AOh14GgsI4y7GC_TJu2gJb_Lrn6FMuOd9tsImPISaVuY,would like to change my my class and chat is IMPOSSIBLE to navigate. a simple notification system would make it easy.,2,5,1.8,2019-03-25 04:57:28,"Hi Burning Scribbles, thanks for your review! We'll keep your feedback in mind as we continue to work to improve Habitica. You can contact us directly by going to Menu - About - Send Feedback if you'd like to give us additional details.",2019-04-03 20:37:08,newest,com.habitrpg.android.habitica +Mu Skygryph,https://lh3.googleusercontent.com/a-/AOh14GgnJ0jqiXH45Py01whU-hpV8rkOVxFHkVUOZFkkTA,"Great concept, but riddled with bugs. Sign up was horribly difficult, with the servers not responding and the app failing to realize I was trying to change my username and display names. App reset at around 7:00 pm, instead of at midnight of my time zone, which I had double checked beforehand. I want to like it, but this is becoming downright frustrating.",2,4,1.7,2019-03-20 00:31:26,"Hi Rukia, sorry to hear about the trouble! The team will be happy to look into any bugs. It's helpful to us if you can report them via Menu - About - Report a Bug.",2019-03-20 21:31:14,newest,com.habitrpg.android.habitica +cassidy jones,https://lh3.googleusercontent.com/a-/AOh14GhtuL_0o6y31CoeJSKZ8xiO34FmQT_KBb9NvR6vvQ,this app is closing down everytime I try to do anything but daily tasks. rather frustrating...,2,15,1.8,2019-03-19 17:54:08,"Hi cassidy, we're sorry to hear about the trouble! If you email us at mobile@habitica.com the team can investigate this and help you out.",2019-03-20 21:29:05,newest,com.habitrpg.android.habitica +Belle Salcedo,https://lh3.googleusercontent.com/a-/AOh14GhnA-ue5tpuXVQwULWBbOc_ehNUCB7qD34HpuGCkg,"Have been a user for years, but the app is borderline unusable at this point, it's not saving anything and is not connecting to servers. Tried uninstalling and reinstalling, not sure what's wrong.",2,50,1.7.1,2019-03-05 04:05:41,"Hi Belle, You may have run into some server issues we had at the time you posted- let us know if you're still having trouble via Menu- About -Report a Bug and the team will look into it.",2019-03-05 21:06:05,newest,com.habitrpg.android.habitica +Dagget 10,https://lh3.googleusercontent.com/a-/AOh14Gi03uFQpXG7_YAGmXUMCSGAOxjNU5BjoTFrYFEFPw,"The app works great... with wifi. I love the feel of the app and desktop versions, but a decent chunk of my day is spent with limited/no wifi. I can't recommend it for that.",2,0,,2019-03-04 13:22:44,,,newest,com.habitrpg.android.habitica +Francois Jeffery,https://lh3.googleusercontent.com/-GVTSRTC7fQE/AAAAAAAAAAI/AAAAAAAAAG4/AAKWJJPzWFeM1h9kYpgGRnr8w_qrCqy36Q/photo.jpg,"Bug that says 'path 'type' is required' everytime I try to do something. I tried submittinf an error report through menu - about - report a bug, but I get the same error message when I try report the bug",2,0,1.7.1,2019-03-01 20:52:01,"Hi Francois, if you're unable to report from within the app you can contact the dev team via mobile@habitica.com.",2019-03-05 21:08:51,newest,com.habitrpg.android.habitica +Steven Salim,https://lh3.googleusercontent.com/a-/AOh14GgPSby89BLhb-MfNlLNY9CgyIzQWV12PBn3xNxr5w,"i like how this become my favorute game because it keeps me doing things. BUT, it is constanly in problem....crash...unable to load....bug...not processing....and i don't understand WHY the task constanly can't be arranged?????",2,5,1.7.1,2019-02-16 08:19:22,,,newest,com.habitrpg.android.habitica +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Awesome App.... BUT, soo many bugs!!",2,1,1.7.1,2019-02-15 14:19:19,"Hi there, sorry to hear about the trouble! We're happy to look into any bugs you report- you can send these reports directly to the team by going to Menu - About- Report a Bug",2019-02-20 23:31:59,newest,com.habitrpg.android.habitica +Seung-Heon Lee,https://lh3.googleusercontent.com/a-/AOh14Gj3z00m9VFTN9vMUNk_RvLxRz8NAEpbqofF01m4oQ,"I like the concept, but the execution needs work. In my experience, the app was laggy non-responsive at times which made the experience of creating and managing tasks tedious.",2,1,,2019-02-04 14:32:21,"Hi Seung-Heon Lee! Sorry to hear about the trouble, and thank you for your review. You can help us fix issues like this by reporting them directly to the mobile team via Menu - About - Report a Bug.",2019-02-20 23:01:56,newest,com.habitrpg.android.habitica +anastasia becks,https://lh3.googleusercontent.com/a-/AOh14GhA-mN3LHdVo1R_2LwcDZ5VpbJRxz6nJgkbrMzkOA,Not user-friendly,2,2,1.7,2019-01-30 07:32:53,,,newest,com.habitrpg.android.habitica +Dale Rusch,https://lh3.googleusercontent.com/a-/AOh14Gh7jW6h19GdTm-0LChAJL2iIPZO0c2328closkr6w,"Incredible tool, awful app. I'd recommend the desktop version of this site to anyone but the app is a bug-ridden mess that overcomplicates simple functions and only works about 90% of the time.",2,143,1.7.1,2019-01-23 23:04:06,,,newest,com.habitrpg.android.habitica +Angela Nicoll,https://lh3.googleusercontent.com/-lEUMtVdp0X4/AAAAAAAAAAI/AAAAAAAAA6U/AAKWJJOYPqxSL2pRmBm6FXpjdCL_cas8iQ/photo.jpg,It's been really helpful for habit building but it's now bugging like crazy and crashing every time I open it so not wonderful.,2,3,1.7,2019-01-22 14:42:38,,,newest,com.habitrpg.android.habitica +Rowan Summers,https://lh3.googleusercontent.com/a-/AOh14GiiURzLENGadL1Ks-xYR-TKYMujFz1wL5oPujAZ,"it's a great idea but it just doesn't work! The pages never refresh for the next day, and if i press the refresh button it just comes up with an unable to connect to server error, or just stays with the loading symbol infinitely. I went on it today after not going on it for a couple of days and i just find that im dead out of nowhere. The ""refill health"" prompt kept repeatedly popping up and then when it stopped my health bar was still at zero. Also the add habit button isnt there always...",2,15,1.7,2019-01-22 11:31:46,,,newest,com.habitrpg.android.habitica +Fabrício Holmes,https://lh3.googleusercontent.com/a-/AOh14GhVB04hdpL0BI0JMbdeTvcelo_1t8FevSLvNbumtcw,"The idea behind the app is nice, but it isn't userfriendly. Finding and adding friends to use it together was so counter productive that it got us to waste time we could be actually doing our daily tasks.",2,0,,2019-01-21 00:58:38,,,newest,com.habitrpg.android.habitica +Dan Wilkie,https://lh3.googleusercontent.com/a-/AOh14GjYOn5JxhFfgDjZWqYclLNT1NSzNYfNVrfiMJxT3w,Heres the thing. I love this app and the idea behind it. But for some reason its so dang glitchy. Pages wont always change when i scroll. Tasks dont refresh. I often have to completely close the app. Help! Very willing to change this review to 5 stars if we get this figured out.,2,5,1.7,2019-01-19 18:18:15,,,newest,com.habitrpg.android.habitica +Arturas P.,https://lh3.googleusercontent.com/-bdaAO3-HEcU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMNB71gWKon6204T6bERKS3hTzfIA/photo.jpg,"I wanted to use this app. The concept is really good. But I won't use it simply because it barely functions. For starters it's online only... but as if that wasn't enough the sync on Android is just all over the place - the app would sometimes ask ""have you done these things today?"" for tasks that were scheduled the day before or at 1 AM for tasks on that day... Speaking of tasks, I couldn't set up multiple repeating tasks for certain days of the week (per task, wanted to fill the whole week with various tasks and repeat them) for some reason, they would all sync to same weekdays. I enabled reminders but never had a reminder come up once and as far as I researched online this is a common problem on Android and hasn't been resolved for some time. So it seems I have to create a habit of opening this habit tracker app...",2,0,1.6.1,2019-01-16 09:33:55,,,newest,com.habitrpg.android.habitica +Daniel Wong,https://lh3.googleusercontent.com/--U8EGqFSQAw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOWPihB1Avn075DVuCd2JxxNt2a1Q/photo.jpg,this app would be 100x better if it incorporated some of the editting/customizing functions of the other to-do-list apps out there. i want to be able to strike through each of the to do items and view deleted/archived/completed items. be able to choose colors etc ..,2,2,1.6.1,2019-01-09 07:30:58,,,newest,com.habitrpg.android.habitica +Lorenz Graf Egli,https://lh3.googleusercontent.com/a-/AOh14GgEi6pa8JFzS-txwArvpt8fpVT5xZmwSCjmAn0-LQ,the app is awesome. but it made my phone drain 30% battery per day in the background which makes it useless,2,0,,2018-12-11 22:00:04,,,newest,com.habitrpg.android.habitica +Jacob Rourke,https://lh3.googleusercontent.com/a-/AOh14GhrnIIRENzsjWV2XqY_do9K60_DifTUHS5MD-u5jg,Very buggy and doesn't always show whole pages or lists.,2,0,1.6.1,2018-11-29 10:28:04,Hi Jacob! Thanks for your review. Our team is happy to investigate bugs. You can report them via Menu - About- Report a Bug.,2018-11-30 20:22:48,newest,com.habitrpg.android.habitica +Felix Gehm,https://lh3.googleusercontent.com/a-/AOh14Gh_Iv_5DsIe9GWa75oBkjKQr5W8wOftyGbOQXiu0A,Sadly the UI isn't adapted for the Pixel 3 XL,2,0,,2018-11-11 19:40:08,"Hi Felix, sorry to hear about the trouble! Our dev team is aware of the issues with the Pixel 3 and are working to fix them.",2018-11-16 20:29:32,newest,com.habitrpg.android.habitica +Shawn Isawesome,https://lh3.googleusercontent.com/a-/AOh14GigKOe4_9NB6nCIxHJjkvr_g8uA9-rMzm_rUHB85g,"Let's be honest here, if you need help with basic habit management, you won't use this regularly enough to help. And if you're organized and have a good routine, you don't need it. A pointless novelty at best.",2,0,,2018-11-09 02:02:41,,,newest,com.habitrpg.android.habitica +K _ Marie,https://lh3.googleusercontent.com/-38yBacds20k/AAAAAAAAAAI/AAAAAAAAAOg/AAKWJJNA3vNsSXCHiq_E8mCxc9bJk7Nj6A/photo.jpg,Clunky and very slow to load. Not fun at all - just yet another task I had to deal with daily.,2,2,1.5.1,2018-11-08 17:24:47,,,newest,com.habitrpg.android.habitica +Kevin Speedy,https://lh3.googleusercontent.com/a-/AOh14GjIqT8R07uayILcahljTq04tEXfYVDHIo34JqXQEQ,"Several navigation options are inaccessible because they're underneath the home/back/tasks buttons at the bottom or within the notification/notch area at the top, making this app hard to use on my phone.",2,4,1.5.1,2018-11-05 12:54:39,,,newest,com.habitrpg.android.habitica +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,The app was working fine until it started bugging out recently and showing me the wrong dailies. Going back to using just the website now until this is fixed.,2,2,1.5.1,2018-11-05 02:31:40,,,newest,com.habitrpg.android.habitica +Cambria Rosales,https://lh3.googleusercontent.com/a-/AOh14GiSvMTewE_3eFcf7QwshZipsORrfu8I4FRZym9R5A,I'm constantly finding little glitches in the game that throw off what I am trying to do when I am trying to earn points. Thank goodness for husband and siblings who have played this enough to know how to fix things when they go buggy but I don't appreciate not being able to go to customer service or send a quick email to help them update the system and fix it.,3,3,2.5,2020-03-26 12:10:51,"Hi Cambria, thanks for your review and sorry to hear about these issues. Please let us know if you're still having trouble via Menu - About - Report a Bug and the team will be happy to look into it.",2020-03-26 19:51:35,most_relevant,com.habitrpg.android.habitica +Станислав Капелев,https://lh3.googleusercontent.com/-1fXPX8MpHTs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPBMwrSjoMpV4FgM6DX1EaD3awuSQ/photo.jpg,"I've been using Habitica for a few years now and while I love the idea, from a technical standpoint the mobile app is broken. It feels like something you would have on your phone back when touchscreens were a new thing. The most annoying bugs are: party screen not updating after you accept a quest invitation so you're not sure if you accepted it, spamming buffs sometimes reduces your mana without actually applying the buff and party chat not updating (have to restart the app to see new messages)",3,0,2.5,2020-03-23 10:00:50,"Hi, thank you so much for this thoughtful review. We have a very small team since we don't make money from ads or selling user information, so improvements may take longer than you're used to from other apps. Thanks for your patience.",2020-03-26 19:45:47,most_relevant,com.habitrpg.android.habitica +Jenni Kmiotek,https://lh3.googleusercontent.com/a-/AOh14GjTvdJ66UkVr8dpXLb16wL2bv3DN8wEixGJ3VI-,"It's fun, a great concept, but the app itself needs work. It locks up constantly and has to be manually shut down and then re-started, and the reminders basically don't work at all. Honestly I think it would be best to remove the reminder feature for now until it can be fixed, because not having a way to set one at all is better than using the feature and thinking you'll get a needed reminder when you won't because it doesn't actually work.",3,4,2.4.4,2020-02-29 04:44:56,"Hi Jenni, sorry to hear about the trouble. If you'd like to send us more detail to help us investigate these issues, you can send that information directly to the support team via Menu - About - Report a Bug.",2020-03-13 17:53:31,most_relevant,com.habitrpg.android.habitica +Anthony Parris,https://lh3.googleusercontent.com/a-/AOh14GiPcoUjZB3H43RyVlhBcsytHJsdGv9rVkE4ARfevBE,"Love the idea but the app is so buggy and not too user friendly at points. First off, I can't change my character when creating an account because nothing pops up. It's just missing so I end up with a female characters. I have Galaxys10 and tried reinstalling app but nope, seems to be just a bug. Also, changing outfits just seems terrible to scroll through (the not user friendly part) The Good Idea is amazing! I really want this app to improve so I can incorporate this into my daily life.",3,16,2.4.4,2020-02-21 13:58:33,"Hi Anthony! Sorry about that, the issue with the character customization screen should be fixed in the latest update (2.5). If you're still having trouble, we're happy to investigate. You can send a bug report directly to the dev team via Menu - About - Report a Bug.",2020-02-27 23:53:03,most_relevant,com.habitrpg.android.habitica +Rijad Čičeklić,https://lh3.googleusercontent.com/-KWoQhzkSMKc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNzNUPMgiY5Ici_R0o7dTIkfcxiKg/photo.jpg,I really love the idea this app has but it has some bugs. The first 2 pages are blank and when i had to make my character everything was blank too. After updating the app it was still the same. (Im using a samsung s8 if thats important) Hope you guys fix it cuz i'd love to use the app.,3,8,2.4.2,2020-01-26 08:02:13,"Hi Rijad, sorry to hear about this issue. Please try updating to the newest version, and let us know if you're still having trouble via mobile@habitica.com and the team will look into it.",2020-02-06 23:49:05,most_relevant,com.habitrpg.android.habitica +Julia Michaely,https://lh3.googleusercontent.com/-oSugbIlOIkc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN4zangUhkm2udHmeozXbh6H6gGoQ/photo.jpg,"The game is very buggy, I just bought a reward, then the app crashed, and the gold I've spent is gone, but I didn't receive the reward. These kind of experiences unfortunately decrease the gaming fun tremendously, and it could be such a good game otherwise!",3,1,2.4.4,2020-02-24 09:11:50,"Hi Julia, thanks for your review and sorry to hear about the issues. You can help us fix bugs by reporting them directly via Menu - About - Report a Bug.",2020-02-28 00:06:19,most_relevant,com.habitrpg.android.habitica +Hanifah Muthmainnah,https://lh3.googleusercontent.com/a-/AOh14GhmvF8_HC5kvvjBUS2-nUXLPmfc_H5MOm4QoxP-mg,"Ok I like it, but know what? The experience points keep expanding but not with health. Simultaneously, you will be sent backward everytime you lose your health while to refill health you need to max up the exp point. Please fix this",3,0,2.4.4,2020-03-09 01:38:30,"Hi Hanifah, sorry about the confusion! If you need to refill your health, you can purchase a Health Potion from the Rewards tab for 25 gold.",2020-03-13 18:42:40,most_relevant,com.habitrpg.android.habitica +Mohammad Irfan Izzuddin,https://lh3.googleusercontent.com/a-/AOh14Gha8Y92DJ7T_SMReU3qEt4tbOyvaDdInU59inIhvg,Is there any ways to see your progress in graphic? Like daily task you've done and see it in graphic stats or something? Because i can seems to find one in the apps or did i miss something? I wsnt to know and compare my tasks daily. The UI and everything is good tho except for that graphical stats daily i cant find one here dev,3,0,2.5,2020-03-07 11:45:16,"Hi Mohammad, thanks for your review! We hope to add more in-app stats and info on completion and improvement soon. In the meantime, you may find the Data Display Tool one of our devs created helpful: https://oldgods.net/habitrpg/habitrpg_user_data_display.html",2020-03-13 18:41:09,most_relevant,com.habitrpg.android.habitica +J,https://lh3.googleusercontent.com/-muEupaVdtHU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPrq9zinlyWCVLo280f8PGY2RuRLg/photo.jpg,"Interesting concept to improve productivity! Whenever I click on a link and come back to the app, I am unable to view contents in the app.",3,0,2.5,2020-03-20 03:10:11,"Hi J, sorry to hear about this issue. Please let us know if you're still having trouble via Menu - About - Report a Bug and the team will look into it.",2020-03-20 22:40:31,most_relevant,com.habitrpg.android.habitica +Lizbeth Erdreichstarr,https://lh3.googleusercontent.com/a-/AOh14Gif_Iacwd9gh_umJ8sdMKBqv21hBwpqI2i2jSRt,"Game is great, can give back results where you put in effort. However when I last tried to put in a task everything was empty and I cant seem to log back in.",3,0,2.5,2020-02-26 19:24:10,"Hi Lizbeth, sorry about that, the issue with adding tasks should be fixed in the latest update that was just pushed today. If you're still having trouble, we're happy to investigate. You can send a bug report directly to the dev team via Menu - About - Report a Bug.",2020-02-27 23:56:33,most_relevant,com.habitrpg.android.habitica +Satguru Vashisht,https://lh3.googleusercontent.com/a-/AOh14GjEbugvBQ6LfQID9-SbLCXKNunSv_TJEWhq-fB73zI,Looks promising but I can't create avatar due to this error: path 'profile name' is required.,3,0,2.5,2020-03-19 17:50:44,"Hi Satguru, sorry to hear about this issue. Please let us know if you're still having trouble by sending us a message at mobile@habitica.com and the team will look into it.",2020-03-20 22:39:37,most_relevant,com.habitrpg.android.habitica +Robert Frobisher,https://lh3.googleusercontent.com/a-/AOh14Gh7anOaL0wooyPjaWVuq0KmKjWQufs5-jQv7oxWPg,Looks good but lack of dark mode kills it for my phone. I can't stand any app that's mostly bright b white. Went with LifeRPG instead.,3,0,2.4.3,2020-02-07 09:18:52,"Hello Robert, thank you for your thoughtful review. We are working to add dark mode for Android as soon as possible. Thanks for giving us a try.",2020-02-13 20:30:00,most_relevant,com.habitrpg.android.habitica +Ельвіра Агзамова,https://lh3.googleusercontent.com/-rCRwQBuyaQg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP5vjrtXMRGZESxInuv0kQhyN1WMw/photo.jpg,I like the app and it's a pity that I won't keep on using it because of the absence of monthly overview for dailies which I need most from a habit tracker instead of useless strikes,3,1,2.5,2020-02-28 16:46:42,"Hi Elvy, thanks for your review! We hope to add more in-app stats and info on completion and improvement soon. In the meantime, you may find the Data Display Tool one of our devs created helpful: https://oldgods.net/habitrpg/habitrpg_user_data_display.html",2020-03-13 17:52:44,most_relevant,com.habitrpg.android.habitica +Bilend Mohammed,https://lh3.googleusercontent.com/-ITWHlIxvwYE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM4tEuUgqILA3dl8mwlit5ulejh-g/photo.jpg,"Seems like I really great app, but I just installed it and I couldn't get passed the avatar creation screen :/",3,0,2.5,2020-03-29 20:55:22,Oh no! You probably can't reach the Report-a-bug menu if you can't get past avatar creation. Please let us know if you're still having trouble by sending us a message at mobile@habitica.com and the team will look into it.,2020-04-01 04:26:37,most_relevant,com.habitrpg.android.habitica +Ritesh Sonavane,https://lh3.googleusercontent.com/a-/AOh14GigcDptBI50E1CfVlE44q06sDdF_MVDvPxfCN3HtQ,"This is a good app to motivate, but wished there would be analytics to show progress like graphs, etc.",3,0,2.4.4,2020-02-20 10:49:41,"Hi Ritesh, thanks for your review! We hope to add more in-app stats and info on completion and improvement soon. In the meantime, you may find the Data Display Tool one of our devs created helpful: https://oldgods.net/habitrpg/habitrpg_user_data_display.html",2020-02-21 00:19:15,most_relevant,com.habitrpg.android.habitica +Jose Gonzalez,https://lh3.googleusercontent.com/a-/AOh14GhlM0JG4St9buOCX3m3zs23eAEAvRk3yRpQACmzBlI,The concept is great and it's a fun way to keep track of your habits. My only gripes are: -I wish there was a better way to see habit streaks. The number is cool but if we could see it on a calendar like view I think that would be helpful. You could miss a day and if streaks aren't set to reset the number remains unchanged. -Better explanation of the colors on streaks. I still don't know what they mean (going to Google it). -You can't use rogue skills because you get a blue screen.,3,6,2.2.2,2019-11-10 19:28:05,"Hi Jose, Thank you so much for this thoughtful review. We are working to fix the skills issue, so keep your eye out for a new update soon. We'll keep your other feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-11-15 00:22:14,most_relevant,com.habitrpg.android.habitica +magicianNevar,https://lh3.googleusercontent.com/a-/AOh14GgXZIC7qVXBpGmxJENWHDBdBvArrwihOm_6bhMRiQ,"Great idea, it needs some improvements imo. Edit: after playing for a while i noticed some things that definitely need improvement. Faster loading times when changing sections or when receiving items, you shouldn't have to refresh to see them. That also applies when feeding pets where i dont see a progress in the bar unless i refresh. Etc.",3,5,2.2,2019-10-22 13:53:31,"Hi magicianNevar, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-09-26 21:29:19,most_relevant,com.habitrpg.android.habitica +Lilithmae Orkidhea,https://lh3.googleusercontent.com/--qvSS5_c6W0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPQDbY3wK6hSIMzDMg9eZX5OmI0Hw/photo.jpg,"App has been useful in helping me keep track of tasks and all, but lately the alarms I set on my dailies haven't been going off at all. Which is... unfortunate, because they're all to remind me to eat...",3,1,2.4,2020-01-12 20:07:14,"Hi Lilithmae, sorry to hear about this issue. Please let us know if you're still having trouble via Menu - About - Report a Bug and the team will look into it",2020-01-14 18:20:22,most_relevant,com.habitrpg.android.habitica +Lorena Abreu Järås,https://lh3.googleusercontent.com/-PI-AKVuFyaA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM1oaA5kQE4qM1qzClpNiNGp-Q9Ww/photo.jpg,"Disappointed. Had the app installed for a few weeks only, I was enjoying it and improving my life and suddenly it stopped working. I keep getting notifications saying that there's no connection, I can't log anything, and once I decided to reinstall again and again, I can't even log in anymore. The screen won't load and it never goes past the login/register screen.",3,17,2.3,2019-11-16 10:49:22,"Hi Lorena, you may have run into some server issues we had at the time you posted- let us know if you're still having trouble via Menu- About -Report a Bug and the team will look into it.",2019-11-18 17:21:57,most_relevant,com.habitrpg.android.habitica +Earl Sweatpants,https://lh3.googleusercontent.com/-dDMAtZY6onI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMkOzuF9VyesPZsFWeS9hyWGSqq5g/photo.jpg,Fantastic idea!!! I've actively been seeking something just like this for a long time. But the app itself is super glitchy. Most things wont load and everything keeps resetting. It might be my connection or my phone. I'm not sure. Hoping I can figure it out cause I love this!,3,1,2.2.2,2019-11-01 17:40:19,"Hi Earl, sorry to hear about these issues. Please let us know if you're still having trouble via Menu - About - Report a Bug. A direct report will provide details that will help the team fix the issue.",2019-11-05 20:00:00,most_relevant,com.habitrpg.android.habitica +Allyssa Ermoso,https://lh3.googleusercontent.com/a-/AOh14GgWR9xfeOUquhDj7ZVQm9a5BIA7nSUc-q48v4b-EQ,"Had a great experience when I was using it thru browser but when i installed it on my phone, it wouldnt record all my progress and tasks on my phone application. Even with the same account. Please work it out, I would love to keep using thru my phone.",3,0,2.3,2019-12-13 23:43:06,"Hi Allyssa, sorry to hear about this issue with task recording. Please let us know if you're still having trouble via Menu - About - Report a Bug. A direct report will provide details that will help the team fix the problem.",2019-12-19 18:27:00,most_relevant,com.habitrpg.android.habitica +Esen Vezir,https://lh3.googleusercontent.com/a-/AOh14GgSXF1ZUWO7SrpM0r6CvlmCfqcuFFJwHz64qM7e5w,App is amazing but ios version is so much better than android version. It has many other settings while this one lacks them. i hope this gets fixed so i can change my rate to 5 stars.,3,0,2.3,2019-11-18 18:23:26,"Hi Michael, thanks for your review! We're working hard towards feature parity on all platforms. Can you let us know which features you're missing? You can do so via Menu - About - Report a Bug.",2019-11-21 18:25:05,most_relevant,com.habitrpg.android.habitica +Den Lieu,https://lh3.googleusercontent.com/-7PwVofDJFrc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNa1KJt0BcdWsGASKXuW8tDX85uXw/photo.jpg,"Cute, but seems like it would benefit from a way to set eg monthly or annual reminders for bills and birthdays without going to a Google script.",3,0,2.3,2019-12-02 04:39:25,"Hi Den, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-12-06 01:15:32,most_relevant,com.habitrpg.android.habitica +Maaike Broekhuizen,https://lh3.googleusercontent.com/a-/AOh14GjmjqjxRRuG8orS71gmdOmzFfsp8wy-w9iU8AdlQg,"The concept is inventive, but the execution simply makes this app less than enticing to use.",3,0,2.4,2020-01-16 07:55:26,"Hi Maaike, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2020-01-24 21:32:48,most_relevant,com.habitrpg.android.habitica +Jade The Demon,https://lh3.googleusercontent.com/a-/AOh14GiraGVSaE7BfoLYLlqHJXYI29Z6cx92opRDq_hMvw,It seems so cool and I wanted to use it as soon as possible but it wont even let me log in. It takes 1second to load and then nothing happens,3,0,2.3,2019-12-06 11:55:32,"Hi Jade, sorry to hear about this issue. Please let us know if you're still having trouble by sending us a message at mobile@habitica.com and the team will look into it.",2019-12-12 19:22:45,most_relevant,com.habitrpg.android.habitica +Ana Azziul,https://lh3.googleusercontent.com/a-/AOh14GiihuQlKMzgl9625OFSSUDL34b5XfY6O7_je9j5fg,The to do list should allow prioritizing tasks by importance and urgency. It would be great if you could add that.,3,0,2.3,2019-12-16 08:04:19,"Hi Ana, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-12-19 18:27:31,most_relevant,com.habitrpg.android.habitica +Collin King,https://lh3.googleusercontent.com/a-/AOh14GhV40SffbKFMj0C7xWNa8oPcABMJ1N3QhVog22zjg,"It's a cool app and it kinda helps me but you are forced to be a warrior. It says you can change your class in the settings, but there is no option.",3,0,2.3,2019-11-28 19:31:21,"Hi Collin, thanks for your review. Class changes are available after level 10.",2019-12-06 01:14:06,most_relevant,com.habitrpg.android.habitica +Maa Rouf,https://lh3.googleusercontent.com/a-/AOh14Gh81fS_DRJssxwvJ_8iFSkuo7KU7J2GLcz0R8_B,"First two slides doesn't load, the character in character creation & menu items are invisible, pls fix.",3,0,2.4,2020-01-02 10:55:51,"Hi Maa, sorry to hear about this issue. Please let us know if you're still having trouble via Menu - About - Report a Bug and the team will look into it.",2020-01-04 00:59:23,most_relevant,com.habitrpg.android.habitica +Maria Adil,https://lh3.googleusercontent.com/a-/AOh14GiFvj0FlFbFuMQ9PsqoxyD07iqpVMNTEZ4MEeVO,It doesn't work offline and when I'm actually online I need also a vpn to use it :-(,3,0,2.3,2019-12-19 04:27:06,,,most_relevant,com.habitrpg.android.habitica +Mark S,https://lh3.googleusercontent.com/a-/AOh14GhguMf82FBqbKz3A9_YeQLpzREL5KUM9QlKBxrDmg,All my tasks are gone and unable to load anything.,3,0,2.3,2019-11-15 22:54:02,"Hi Mark, you may have run into some server issues we had at the time you posted- let us know if you're still having trouble via Menu- About -Report a Bug and the team will look into it.",2019-11-18 17:12:40,most_relevant,com.habitrpg.android.habitica +Alvin Yeung,https://lh3.googleusercontent.com/-Fs9OFynoO3g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOZFGcBMnaxhYeZ-fAEWdxG4NNHug/photo.jpg,"Friend was permabanned for calling another friend a ""mad c**t*"" in party chat, but here in Australia that's a compliment... TL;DR over-sensitive language filter, should allow party chat to be unfiltered.",3,0,2.3,2019-11-27 14:17:26,"Hi Alvin, our Terms of Service state that slurs are forbidden in any chat space in Habitica. We do take context into account when people take the time to reach out to us. Your friend may email admin@habitica.com if they'd like for the moderation team to consider reinstating their account.",2019-12-06 01:12:25,most_relevant,com.habitrpg.android.habitica +Cats Catz,https://lh3.googleusercontent.com/-lKgUuLu90AQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPjTONGQMK5kBxRuV-QTBDy6spu7A/photo.jpg,"Love the app. Love the rewards. But, I wish that it showed you past dates and all you accomplished on days previous, and I wish that the coloring of tasks wasn't so complicated when getting close to red or blue or whatever. Also, certain things are hard to navigate... but overall, I absolutely love this app. Use it every day. Not so much for challenges or battles, but for habit making and to do's.",3,0,,2020-01-30 04:11:38,"Hi Cats, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2020-02-06 23:52:27,most_relevant,com.habitrpg.android.habitica +Brandon Patterson,https://lh3.googleusercontent.com/a-/AOh14GiR-VWdRjE7ea9awmI2auAzA8powb4PtRemkK9EnQ,Love this app. Its helped me with my motivation and procrastinating. I've been more motivated since using it. But I'm having a very frustrating issue that is driving my OCD insane. I try to move a task in my list... Only for it to disappear or move itself somewhere I didn't tell it to go. I try to keep my list in a certain order of how i should get things done and this is not helping me at all.,3,0,2.1.1,2019-10-15 13:16:33,"Hi Brandon, sorry to hear about this issue. Please try updating to the newest version, and let us know if you're still having trouble via Menu - About - Report a Bug and the team will look into it.",2019-10-17 21:28:14,most_relevant,com.habitrpg.android.habitica +Donovan DeLaughter,https://lh3.googleusercontent.com/a-/AOh14Gj_95RkG5TF-_WkL12YfhBU_BgdD2-NyMpKM_CQgw,"Enjoying the app so far, but the widgets are quite limiting. You cannot use check lists in the widgets, and sometimes they update rather weirdly. I have also had UI bugs throughout, but they haven't affected me too much. Overall good, but just needs some tweaking to make it more solid. That's not to say the service is bad. Just the mobile app.",3,0,2.1.1,2019-10-16 19:01:01,"Hi Donovan, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-10-17 21:29:39,most_relevant,com.habitrpg.android.habitica +Shifaza Chicky,https://lh3.googleusercontent.com/a-/AOh14Gi2FdqSwetRcAIEmQ6QoBWLaUmvRyd2BrqT1aLAUkY,"I've been actively using this and I love the concept. App version could really use a new UI. Dark mode would be appreciated, and maybe letting users adjust Font or size of boxes. (Feels too large right now. It would easily hold more details, but space is lost to a big box)",3,0,2.1.1,2019-10-10 05:35:25,"Hi Shifaza, thank you so much for this thoughtful review. We do have a dark mode on the way, so keep an eye out for future updates. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-10-11 01:00:47,most_relevant,com.habitrpg.android.habitica +Krishana Khatri,https://lh3.googleusercontent.com/a-/AOh14Gjas8DpJcDPLVIjglPkTTYDeuLC-IlBnY421rXnMw,Why it is not giving me notifications for dailies?,3,0,2.2.2,2019-11-02 16:48:44,"Hi Krishana, sorry to hear about this issue. Please let us know if you're still having trouble via Menu - About - Report a Bug. A direct report will provide details that will help the team fix the issue.",2019-11-05 20:01:19,most_relevant,com.habitrpg.android.habitica +P M,https://lh3.googleusercontent.com/a-/AOh14Gj8BF0wD3FDdy2RQUUNw1ZmLfk3tzdV5nzPr1z9,"Really unique app that motivates me to get stuff done. Unfortunately, this app needs A LOT of work. I tried writing a message in a guild chat. Once it got long enough, the words disappeared behind my keyboard so I couldn't see what I was writing. When I put the keyboard down, the send button disappeared..as a result I couldn't send my message. Theres no search for trying to find a challenge that suits you. Theres no notifications when your party is chatting. There is also no search for guilds. I just started this app and so for these are the problems I've noticed. Otherwise it is great and I hope it improves.",3,38,1.6.1,2018-12-14 01:48:50,,,most_relevant,com.habitrpg.android.habitica +Richard Dame,https://lh3.googleusercontent.com/-8ipmb8Xs5pk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPJK6g6rvPE0YsfKeX7-YSi8mgElA/photo.jpg,"This app has a nice interface and a great idea, but it seems to suffer the same issue I've found of all habit trackers. I can't easily keep track of multiple daily iterations of a habit. If I want to create a habit of say drinking 5 bottles of water a day, I want to be able to check off and keep track of each bottle drunk, then get rewarded when I finish all five. Most of the habits I want to develop fall in this category. Could this be implemented in the future?",3,3,1.5,2018-09-22 22:15:57,,,most_relevant,com.habitrpg.android.habitica +Morgan Harney,https://lh3.googleusercontent.com/-TUtjkZOmslA/AAAAAAAAAAI/AAAAAAAAATg/AAKWJJNQdnc1egXXAapg_C2WGrHNMBkyoA/photo.jpg,"The app itself is pretty good. My issue came from having difficulties canceling my subscription. I described everything I was doing to try to do it, what I was seeing instead of the option to unsubscribe, etc. The solution suggested did not help, so I described the situation further. The next response came from a different person, who suggested a method I had already mentioned was not working for me. After I replied again, I never got another response. I just figured out what the issue was, but I couldn't do so before getting charged again. Disappointed in the customer service.",3,0,,2018-10-06 03:15:51,"Hi Morgan, we're very sorry to hear you felt your experience was unhelpful. If there are any additional charges you'd like refunded please feel free to reach out again to admin@habitica.com",2018-10-11 17:12:15,most_relevant,com.habitrpg.android.habitica +Jill Fleming,https://lh3.googleusercontent.com/a-/AOh14GhM7b0Eqe2WzDaJ50u4RRoBwdYVD0NZSUXhKPg,"This app is great and it already helping me stay on track with some things. It's surprising how much imaginary experience points can motivate. But, I am having a bug where dailies can't be set for a given day, they just revert to all days being checked. I want this app to keep me accountable for working out on certain days, so this is a major flaw.",3,2,1.5,2018-09-20 12:35:00,"Hi Jill, Sorry to hear about the trouble. Our team is happy to look into any bugs reported. You can send a report by going to Menu - About - Report a Bug.",2018-09-26 17:17:11,most_relevant,com.habitrpg.android.habitica +Salma Ashraf Hady,https://lh3.googleusercontent.com/a-/AOh14GiAjgzvulZb2wFKT0lqVU_syBlMw9g0fZSX15k2,"Edit: Uninstalled it, takes too much interest. Honestly I find it not working offline a major issue. I liked it but it is too slow and laggy not to mention the various bugs in game. Just today I was trying to add a new tag, I entered it about 5 times before I gave up and them 15 minutes later I find the tag I entered repeated 3 times, so I try to remove the other two. Also trying to organise the tasks' order, the keep going back to their original order. Sometimes when I finish a task and check it, it doesn't work. And in the habits it stops working some times and other times it checks the habit twice positive or twice negative.",3,3,1.6,2018-12-02 11:20:43,,,most_relevant,com.habitrpg.android.habitica +Rebecca de Vos,https://lh3.googleusercontent.com/a-/AOh14GiujDD47EwmJ5z2O1KGVTL2Lp3zBnjSm5cZlpMbgQ,"I wanted to give the app more stars as I love the concept, but it's so buggy. Especially with the dailies feature... all the dailies are linked together somehow. There are some things I do Mon-Sat for instance, but not on Sundays. But when I set a task to not repeat on Sunday, it sets all tasks that way. Very frustrating.",3,0,1.5,2018-09-24 14:37:32,"HI Rebecca, Sorry to hear about the trouble. Our team is happy to look into any bugs reported. You can send a report by going to Menu - About - Report a Bug.",2018-09-26 17:16:03,most_relevant,com.habitrpg.android.habitica +Mihai Stan,https://lh3.googleusercontent.com/a-/AOh14GhIIqnCB3Ax0mhmCq56r1IP-WaSPWz6RWtcWhiO,"This is a great app and it really helped me do my tasks but it doesn't work properly. For example when I try to move a habit so that the list is in the order I want it to be, the app glitches and the habit is sent back to the top. I know those problems are almost insignificant but it gets seriously annoying sometimes. Fix those little problems and I'll give this app the five stars it deserves.",3,7,1.7,2019-01-19 14:30:11,,,most_relevant,com.habitrpg.android.habitica +Rodolfo Fava,https://lh3.googleusercontent.com/a-/AOh14GiV8J_pVvr-5X_AjoiKXazhZ68-lRtPhZKTBn3heg,"There are bugs that break the immersion for me. It's not as responsive as it looks, and the design should be worked out in the app. To complete a challenge, I need to post my goal on the chat, fine. But then I cannot access the chat room through the app, and I need to use the browser for that. Please improve the user xp.",3,2,1.5.1,2018-11-12 15:13:38,"Hi Rodolfo, sorry to hear about the trouble. Our dev team is happy to investigate bugs. You can report them via Menu-About-Report a Bug.",2018-11-16 20:28:39,most_relevant,com.habitrpg.android.habitica +Benjamin Morehead,https://lh3.googleusercontent.com/-4w9DdpKZn-g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOMkKVuq1xc-lFmV8Pv0WdQKCXW2A/photo.jpg,"This app is a great idea and I love all the features. However, no matter what I set the day start time to for daily tasks to reset, they keep resetting at some seemingly random point in the middle of the day despite me having it at 2AM, which is causing all of my evening tasks and some of my midday tasks to fail as I haven't done them yet. I'm not sure if the app thinks I'm in a different time zone or what but it's very irritating. If they fix that it's 5 stars for sure.",3,3,1.7,2019-01-21 03:33:20,,,most_relevant,com.habitrpg.android.habitica +Miss Dee,https://lh3.googleusercontent.com/a-/AOh14GjeVu1Bjg7aifa9yWAcEhpD_XWKPuMllX_YQ5c-,"Great until last update. Love the app, its a great tool, but since the last update, I frequently get server error notifications, and the app doesn't function in any capacity (can't chat in party, dailies and habits don't refresh, etc.). rebooting my phone and reinstalling the app did not solve the issue. I'd happily give this a 5-star if this could be fixed and I could get back to my daily log-ins and updates.",3,0,1.7,2019-01-22 15:31:48,,,most_relevant,com.habitrpg.android.habitica +Diana Cadwell,https://lh3.googleusercontent.com/a-/AOh14GiPyxhhYTcuy6YNVsPgY02_7AMJIUng-qQgsEWt,"I've only started using this this morning; so far I'm hoping it helps with motivating me to accomplish things. It's definitely a great idea! I kind of am wishing the was done sort of story line to follow along with, like ones you have so many days of completing so many habits you get a clue to find whatever your quest goal is, or something like that would make it more exciting... I'll update my review once I'm a week or 2 in.",3,1,1.5.1,2018-10-25 16:15:33,Hi Diana! Thanks for your review and your feedback. We look forward to hearing what you think when you update!,2018-10-25 21:02:55,most_relevant,com.habitrpg.android.habitica +Shaderite Matobit,https://lh3.googleusercontent.com/a-/AOh14GgZm97oBzswSY1CU1uX9_0gAsAhOYx8s5mG2GvHqw,"Okay But I wish it had options to increase exp and stays for example when you read a book gain x intuition when you run x times you gain x stamina, etc etc and get rewards and level that way. Gives more motivation for doing those things.",3,0,,2019-11-17 17:20:29,"Hi Shaderite, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-11-18 17:31:26,most_relevant,com.habitrpg.android.habitica +Dmitri Eddy,https://lh3.googleusercontent.com/a-/AOh14GgLKeEM4wQjryx6pB2teei1O5SqXzOUECg20VtQ,"Great app, I only have one complaint: The Tavern system doesn't work. I went on vacation and knew I wouldn't be able to complete my dailies or even open the app for that matter, so I entered the Tavern thinking I was safe for the couple weeks I'd be gone. I just reopened the app and it told me I had died twice, took all of my gold, two of my items, and decreased two levels. Honestly considering deleting the app now, as I had over 100 gold saved and lost a piece of rare equipment",3,29,1.7.1,2019-02-12 10:57:55,,,most_relevant,com.habitrpg.android.habitica +Trevor Caruso,https://lh3.googleusercontent.com/a-/AOh14Gh2PaRmIz3jrMx2ocGsf2RLF3WDM-jAJLIvLPd4hQ,"Decent app, but would be so much better if you could set the worth of your tasks. Some tasks are simple, like 'drink more water', others like 'save $2000'. Theres nothing but a crude difficulty rating to differentiate tasks. We cam create rewards and their worth, why wouldnt we have control of the amount of points for the tasks??",3,25,1.6.1,2018-12-14 00:54:04,,,most_relevant,com.habitrpg.android.habitica +Courtney Bragg,https://lh3.googleusercontent.com/a-/AOh14GhBC3Jwl6li4jpDZUeaTcXRBHUd2gWkRa7ZgM_9,I love the idea of it but I am having a hard time trying to get started. As I am setting up my dailies anything that I set for weekly seemed like they are all linked together so if I change my days on one task it changes on something else. I like what it trying to do but if this isn't corrected then I will have to find another app.,3,0,1.5,2018-09-14 15:08:04,,,most_relevant,com.habitrpg.android.habitica +Nicole Dyson,https://lh3.googleusercontent.com/-_5T0Ymrnj4I/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPnWLEH63mPL3-sSvEkX1rLAypTyQ/photo.jpg,"it's fine to use to check off stuff and gain/lose habits and get rewarded for it, but the formatting is so ugly and it's so easy to cheat which kinda defeats the purpose of the app. like you can make yourself level 100 or give yourself 2,000 gold if you want to. plus there's a lot of bugs even though habitica has been alive since either 2015 or 2014 so that kinda says it all for how much the staff is on things.",3,0,1.6.1,2018-12-28 23:40:36,,,most_relevant,com.habitrpg.android.habitica +Dave Smith,https://lh3.googleusercontent.com/-KGec7lCOW9M/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNjX9nooTuVZreo2UW7h-QqvRxi8g/photo.jpg,"Incredibly useful service and thanks so much for creating it. The app tends to be buggy, but nothing that couldn't easily be worked around until the last update. Since the last update drag and drop sorting of To Do (and I suspect Dailies as well) subtasks/checklists no longer works which is really frustrating. At least the website works great as always. It's just frustrating to have to run down to the computer to fix my lists.",3,4,1.9.1,2019-05-09 13:09:38,"Hi Dave, sorry to hear about that issue! We'll make sure the dev team is aware.",2019-05-16 21:07:54,most_relevant,com.habitrpg.android.habitica +Christina Waldén,https://lh3.googleusercontent.com/a-/AOh14GgRPkTXmeMxQkS45S7RLRCRWR7bxGxLMJ1Wc2SJQA,"I really like this app though I've only used it a week. I have some suggestions though, when I add a habit I'd like to add it for the week but not weekends. In Daily tasks I can + the same task more than once which is a bit like cheating, maybe add a pop up message that says ""you've already done that today"" 😊",3,1,1.5.1,2018-11-12 09:33:46,"Hi Christina, thanks for your review and feedback. We'll be sure to pass that on to the team.",2018-11-16 20:29:02,most_relevant,com.habitrpg.android.habitica +David Sikes,https://lh3.googleusercontent.com/a-/AOh14GhKa4hMTmyo7o2esbUWkR5r-I4CQxKh1tr0HA3LfeU,"Over the years the platform has become stagnant. I was a huge proponent of Habitica, using it for a few years and even paying for a subscription to support development; but development beyond bug fixes never happened. It's a good tool with a potent gamification component, but they've failed to continue to make it engaging and interesting—and certainly not worth paying to support.",3,0,1.3.3,2019-09-24 10:23:11,"Hi David, thank you so much for this thoughtful review. We have a very small team since we don't make money from ads or selling user information, so improvements may take longer than you're used to from other apps. Thanks for your patience.",2019-09-26 21:26:37,most_relevant,com.habitrpg.android.habitica +Matthew Austin,https://lh3.googleusercontent.com/a-/AOh14GhrXHRoZdFzYUL8IssZ_KcNzEY2AAt0t3BozFHc9g,"Great concept, but there are numerous issues that I found right off the bat. The main one for me was the fact that, once you pick a subject for your journey you can never go back and change that. I mean, there are multiple journey subjects to choose from and maybe I want to focus on one aspect of my life at a time. The app treats life like a game, after all and most games allow you to start over with different settings. Starting over in THIS game requires you to uninstall the app, reinstall the app and then create a brand new account. Kind of silly and frustrating to boot. Check out the Level Life Up app instead. It has a much better platform.",3,1,1.6.1,2018-12-02 10:37:47,"Hi Matthew, thanks for your review! Any default tasks installed in the tutorial can be deleted by swiping them to the left. If you're looking for task ideas to help you with a particular subject, you may find the Library of Lists and Challenges Guild helpful.",2018-12-07 01:07:42,most_relevant,com.habitrpg.android.habitica +Jai Titan,https://lh3.googleusercontent.com/a-/AOh14Gi1WxqPxyx4BHFBCmGoBdLufMQSyqzJHO8TO239,This is one of the better Habit tracker app Ive tried. A couple of them I deleted after a few days just because they were So Basic yet had the Audacity to charge for a Premium Service. Habitica seems to be much more realistic and actually has a more detailed U.I for setting yourself different kinds of targets/habits. But I would like to give this app 5* once they link this app to your clock and calendar apps (or build in) & add more Notification controls. Looking forwards to updates....TBC,3,0,1.6.1,2019-01-02 20:12:32,,,most_relevant,com.habitrpg.android.habitica +Mazey,https://lh3.googleusercontent.com/a-/AOh14GgXVQgtEoX7YHjdwnRPcNC_Xzty5NkeIRcC83TdZA,"The app is pretty good, but I wish there was a way to put weekly tasks in. I tried setting up a task that would go off weekly but I still lost health for not completing it daily. It would be nice to be able to put repeating tasks on the app that you don't do every day, but repeat on a schedule, like laundry every Sunday or something.",3,5,2.0.2,2019-07-15 14:10:54,"Hi Mazey, thanks for your review! You can set a task to repeat each week (or month, or other intervals) by opening it in edit mode. Tap the Daily and hold to open these options.",2019-07-23 16:37:11,most_relevant,com.habitrpg.android.habitica +Sara Gojkov,https://lh3.googleusercontent.com/-BJeOnGsnBbw/AAAAAAAAAAI/AAAAAAAAAK4/AAKWJJO5Ui0IJXbUcdwFbl89YhVAU5IQLA/photo.jpg,"It's a good sentiment but it didn't really work for me. I wanted to like it but the motivation for getting stuff outweighs the motivation to actually do the things you're supposed to and unless you join a guild or any sort of group, there's no accountability. If you don't want to use it as a social app, then I can't imagine mustering up the focus and drive not to just lie.",3,0,,2019-02-03 12:45:58,Hi Sara! Thanks for your thoughtful feedback. We appreciate you taking the time to let us know!,2019-02-20 22:46:32,most_relevant,com.habitrpg.android.habitica +Ravi Koundinya V V P,https://lh3.googleusercontent.com/a-/AOh14GgPb4mmK8GBcLheE1tdDTSN2mZU7KHG1CCxY88T,"A very interesting idea. I would give 5 stars, but there are minor bugs in the apps. I can't choose my user name, it says there are all taken. (I'm sure No one else would use it) and I cant add a daily task. It shows an error when I try to add one. ""is not the enum for frequency "" or something similar. please fix this, I really love this idea.",3,6,1.7.1,2019-02-17 09:30:27,"Hi Ravi, thanks for your review and sorry to hear about the trouble! If you send us a direct report via Menu - About - Report a Bug, we'll certainly look into the issues you mentioned.",2019-02-20 23:37:06,most_relevant,com.habitrpg.android.habitica +Katerina Minovska,https://lh3.googleusercontent.com/a-/AOh14Gg5zGEN58afJp1ZwIf1V1o-oEpj3e7MLZGecOItVw,"Please tell me how to undo an accidentally added habit, I feel like I'm cheating when I delete and re-add a whole habit because it's bugging me. Otherwise the app is a gem. 3 stars till you fix this for me. It still doesn't work, I don't want to delete a task, I want to unclick a habit, because I've accidentally clicked positive/negative and I can't undo it. Even if I click the other one to make it even, it just registers it as a separate log.",3,0,,2019-03-12 13:33:44,"Hi Katerina, while we don't yet have an ""undo"" function, if you go to Menu - Settings - Fix Character Values you can adjust your gold and experience after an accidental tap. We hope that helps!",2019-03-20 21:21:03,most_relevant,com.habitrpg.android.habitica +Dylan Hopwood,https://lh3.googleusercontent.com/a-/AOh14Gi4cx-FrpvYZegTx6NW6851wayakbhE9-Xw8yvs,"This app is fine in concept, but the ""game"" part of Habitica, arguably the reason you would use this app over other habit tracking apps, is just too boring and not that ""gamey"" to me, which doesn't keep me motivated to keep going back to the app for my habits. Concept is good, execution leaves much to be desired.",3,4,1.5.1,2018-10-31 00:11:58,,,most_relevant,com.habitrpg.android.habitica +James Rhinehardt,https://lh3.googleusercontent.com/a-/AOh14GibNuAU5hcZbGaqo3zYTPGW_Mq1C9UDOMd_RJiR,"I would be happy to give the app a five star rating as I have reaped many benefits I directly relate to my usage of Habitica, but I am prevented from doing so by recent events. I can only give you a three star rating because suddenly your application no longer functions, with no warning or information as to why or how to fix it. 500 characters is not enough to relay proper data on this issue to the Dev Team, likely by design, and for that I blame Google Play, not the Dev Team of Habitica.",3,20,1.7,2019-01-15 04:48:14,,,most_relevant,com.habitrpg.android.habitica +Joanne Hohenadel,https://lh3.googleusercontent.com/-VUK8pxfiEoY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNZy1GX8_PJjodXwD-_BIZZ09snYg/photo.jpg,"This app has done a good job of helping me keep track of tasks. Dailies, Habits, and the To Do with checklists have been wonderful. I just don't like the new redesign. Nothing looks to be where it should be to me. It now feels bulky and clunky, and I feel like it will make me use it a lot less because it is now uncomfortable to look at.",3,4,2.0.1,2019-07-03 00:14:55,"Hi Joanne, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-07-22 23:55:29,most_relevant,com.habitrpg.android.habitica +Kate Cousino,https://lh3.googleusercontent.com/a-/AOh14Gg1D1BUjjo1wVPU3a8JFM-5fn-cYZMfkECMl4RyFao,"I love Habitica and I like the UI of the updated app, but I find it frustrating that the app doesn't show all the content that the website does. Normally this is just a small annoyance--but now, after paying for a Group plan for my family, I'm discovering that my kids can't access the group tasks list via the app! Which makes the entire thing a waste of money since the whole point was to be able to create tasks for family chores. Please tell me a fix is in the works!",3,5,2.0.3,2019-08-09 14:22:52,"Hi Kate, Thank you so much for this thoughtful review. Our small team is working hard to bring feature parity to all our platforms- including with our Group Plans. You can send the mobile team feedback directly by going to Menu - About - Send Feedback if you have specific thoughts you'd like to share.",2019-08-13 23:09:26,most_relevant,com.habitrpg.android.habitica +Sheldon Hull,https://lh3.googleusercontent.com/a-/AOh14GiY6I7lgsccZB1WnRFHBB1ubGnG39YNYPOU86vV7rM,overall decent experience. main areas I'm not happy with are ui design choices. lots of wasted space and navigational steps that could be improved. Wish i could see the content in more compressed format. also no night/dark theme which is important to me when using an app i night pull up before going to sleep or in early morning.,3,1,1.7,2019-01-22 05:04:00,,,most_relevant,com.habitrpg.android.habitica +Fel. L.,https://lh3.googleusercontent.com/-ppgY04Ew_8A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNRg-Z9K40-0Vmcb4HERrCU4RQr6A/photo.jpg,"I prefer the browser version over the app version. It's hard to find all the options in the app version. The app and browser also don't sync well, and one time I lost all of my health and money upon opening my app version for the first time in a long while even though I had used the browser version earlier.",3,0,,2019-03-29 00:00:55,"Hi Fel, sorry to hear about the trouble! It sounds like your character may have died due to damage from a quest from your partymates. If that's not the case, please let us know via via Menu- About -Report a Bug and the team will look into it.",2019-04-03 20:25:17,most_relevant,com.habitrpg.android.habitica +Ricardo Servilha,https://lh3.googleusercontent.com/a-/AOh14Gil9HXSeGWCztsAP_gEeFtUBmn7eSEGQGVAD_JhYQ,"I liked, but in my cellphone had some bugs (galaxy A8+). I think if this app had a function to sync with the phone calendar (google calendar or samsung calendar) it would be much better",3,0,,2019-12-09 02:21:13,"Hi Ricardo, thanks for your review! We'll keep your feedback in mind as we continue to work to improve Habitica. You can contact us directly by going to Menu - About - Send Feedback if you'd like to give us additional details.",2019-12-12 19:25:16,most_relevant,com.habitrpg.android.habitica +Bea Z,https://lh3.googleusercontent.com/a-/AOh14GioM5UEDmxINTXtIuWV5bJcpVidbVZQQx55Fr7YfQ,Edit: Reverted to old version or something and issues are back :( Edit: Issue fixed and new update is great! Seems like you actually passed the issue along instead of making complaining subscriber have to repeat the complaint in email... Huge fan of Habitica. Used it for years. It was called HabitRPG when I started. Only to-do list app I have stuck to. Encourages you to build good habits in a fun way. Community-built. No ads...worth subscribing to support the app.,3,7,1.9.2,2019-05-24 11:56:27,"Hi Bea, thanks so much for your review! We'll pass your feedback along to the development team.",2019-05-02 19:25:00,most_relevant,com.habitrpg.android.habitica +Prasad Kamat,https://lh3.googleusercontent.com/a-/AOh14GhJfaodGgX-g38eZPa5EHm3TXLBs0DnUP7zM7bCTQ,"Loving it! But are there themes on the horizon? Not a huge fan on purple! And where can see a weekly/monthly summary of how I'm keeping up with my dailies? Also I noticed a bug when I accidentally hit 'create' multiple times for a new daily, it will create multiple instances of it.",3,1,1.9,2019-05-01 20:30:31,"Hi Prasad, thanks for your review and feedback! We'll be sure to pass it along, but if you'd like to send it directly to the mobile team you can do so via Menu - About - Send Feedback.",2019-05-02 19:27:46,most_relevant,com.habitrpg.android.habitica +GN R,https://lh3.googleusercontent.com/a-/AOh14GiPmDLyuDwJybNBuCTph-GfSkuUjAQ3y6UohH61bw,"Having to find players to be able to do anything is a bit annoying, it's really boring otherwise. Reminders don't work properly - I set a bunch for last night that never happened, and a bunch this morning that never happened. It's not really built for proper daily routines including things you need to do twice per day so... It's not really useful for me.",3,52,1.9.1,2019-05-12 05:24:47,"Hi GN R! Thanks for giving us a try, and sorry to hear Habitica wasn't your cup of tea. We'll be sure to pass your feedback on to the team.",2019-05-16 21:31:09,most_relevant,com.habitrpg.android.habitica +Austin Dvorak,https://lh3.googleusercontent.com/a-/AOh14Gi4Wf9_0DnoCvPxSyYEHZjZA1woHJ82BeFyMViJ9A,"Decent app. Works like intended but does have bugs for the extra ""game"" part of it. constantly have to close and reopen the app because the loading bar never really loads, or white screens. Another thing is I dont think we should be paying 3 gems to change our class. I accidently chose a class when I upgraded enough, and I thought I was fine as the bottom said you can change a class later, except it didnt say we needed 3 gems to do it. I dont usually get that many gems unless i buy them.",3,6,1.8,2019-03-31 23:05:35,"Hi Austin, thanks for your thoughtful review! Sorry to hear about the trouble, we'll look into these issues. You can get help for bugs directly by reporting them via Menu - About - Report a Bug.",2019-04-03 20:17:25,most_relevant,com.habitrpg.android.habitica +Stephiroth D,https://lh3.googleusercontent.com/-_rejGDdloxA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOZQa8N_mooLPDuNcX5nIzNESB3Tg/photo.jpg,"This app is very helpful! Total game changer for my ADHD. Unfortunately, after level 25 the app becomes a money grab and the items you find and the equipment you can buy with coins get severely capped. But overall I'm happy this app exists, it really helps me stay on track :) Perhaps if the game cost a few dollars to purchase the developers wouldn't need to resort to capping in order to create revenue from the app. I feel as though many people will quit once the RPG element is restricted.",3,1,1.9.1,2019-05-20 14:00:58,"Hi Stephiroth, we strive to keep Habitica from being pay-to-play, so items that must be purchased with real money are purely cosmetic and do not affect player stats. We'll keep your feedback in mind as we continue to improve Habitica. You can contact us directly by going to Menu - About - Send Feedback if you'd like to give us additional details.",2019-05-28 20:39:54,most_relevant,com.habitrpg.android.habitica +Chris Murphy,https://lh3.googleusercontent.com/-WlUcumdRLdQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPodcWvO9coLMmuXMpbSa1_fJelMA/photo.jpg,I really enjoy this app up until about an hour ago. all of a sudden during a quest my party disappeared and my friends messaged me to ask what happened. I have also tried to join a help guild to ask but the app wont let me join a guild or post in chat at all now. please fix this bug so me and my friends can enjoy the app.,3,0,2.0.2,2019-07-17 00:18:20,"Hi Chris! We experienced a partial outage that affected parties. The owner of your quest should have received a new copy of the quest, and your party should be back! If you are experiencing any lingering issues, please email admin@habitica.com and we'll fix you up as soon as we can!",2019-07-23 16:39:59,most_relevant,com.habitrpg.android.habitica +Tayriel,https://lh3.googleusercontent.com/a-/AOh14GiTeSdp_97hxpisXlXfi3ev3L54t1oPoi98D8C8cQ,I love it. But the app keeps crashing when I try to invite friends to party and I can't buy gems.,3,0,2.1.1,2019-10-14 00:35:12,"Hi Tayriel, sorry to hear about these issues. Please try updating to the newest version, and let us know if you're still having trouble via Menu - About - Report a Bug and the team will look into it.",2019-10-17 21:27:20,most_relevant,com.habitrpg.android.habitica +Ania E,https://lh3.googleusercontent.com/a-/AOh14GggRk-ISQv-E0t67CTyXpGBPJXMGechJP1b5IdiQA,"I love it, compared to other apps like it. but i do miss the features that epic win has, that you can sort your to do s based on the day.. so you can set up to dos for the future, while in habits it all shows in one list instead of being separated by date",3,0,1.6.1,2018-12-28 02:18:58,,,most_relevant,com.habitrpg.android.habitica +Ada,https://lh3.googleusercontent.com/a-/AOh14GjPPHul_MMUHBvfNPRVHEFOn9dxPrGTYDFh0NmAYw,"Decent app. Fun concept. Biggest issue right now is that some of the dailies that are supposed to be once per week are still showing up as an every-day task, which is very annoying. Sometimes the dailies will cross over into the to-do list for an hour or so at a time, too.",3,1,2.1.1,2019-10-05 15:37:30,"Hi Ada, thanks for your review and sorry to hear about the trouble. You can help us fix bugs by reporting them directly via Menu - About - Report a Bug.",2019-10-07 19:01:01,most_relevant,com.habitrpg.android.habitica +Inaiê de Alencar Ceccim,https://lh3.googleusercontent.com/a-/AOh14GgX6kXAl2Z6Gd4q0F-F-DpkdP3P3JHv96JqZp5H,"First time and first day was everyting amazing, but the next day for several time it showed the ""connection error"" message. I loved everyting in the app, very visual and fun, so when this issue gets fixed i will come back to give more stars.",3,2,1.5.1,2018-09-26 01:13:31,"Hi Inaie, we had a server outage. We apologize for the inconvenience. The app should be working as normal now.",2018-09-26 17:07:45,most_relevant,com.habitrpg.android.habitica +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"It is a very good app, but it has many glitches. The widget requires you to open the app to update and in some occasions even when you check some activities as completed they still appear in your list. It is a good app, but it doesn't run smoothly.",3,0,1.7.1,2019-03-05 02:34:50,"Hi there! Thanks for your review- if you'd like to help us fix the bugs you mentioned, you can send the team reports directly via Menu- About -Report a Bug and the team will look into it.",2019-03-05 21:07:00,most_relevant,com.habitrpg.android.habitica +Bryo,https://lh3.googleusercontent.com/a-/AOh14GjQMBSkopVfR-8FjwmxRegEDXt7OYyOr1Ed9YYarg,"I have been using this app for a while, really trying to get to grips with it but I've come to conclude that it's not me. If you feel like you need less complexity in your life them this probably isn't for you as this adds a new system that you have to get to grips with and plus the gamification aspect can be quite destracting and finnecky. I think if this were to ever be useful for me it would need a separate environment for tasks, habits and dailies.",3,1,1.9,2019-05-25 00:01:49,"Hi Bryo, thanks for your thoughtful review! We're glad you gave Habitica a try.",2019-05-28 20:44:54,most_relevant,com.habitrpg.android.habitica +D Wick,https://lh3.googleusercontent.com/-BrVO8vKTc6o/AAAAAAAAAAI/AAAAAAAAt7w/AAKWJJNLNGbwnIOubHXExXoERVcCf1rOPA/photo.jpg,Im giving it 3 stars. it deserves 5 stars for the app but getting 3 cause after i bought some Gems there were some shady withdrawals which means the privacy protection for my card was breached... and im 99% sure its from Habitica cause this happened right after the purchase. please increase your cyber security for card transactions.,3,17,1.8.1,2019-04-13 00:27:30,"Hi Daniel, we're very sorry to hear about this experience. Google Play actually handles all payments related in-app purchases and subscriptions. You can learn more about how to report this issue here: https://support.google.com/googleplay/answer/2851610?hl=en&ref_topic=3364671",2019-06-14 01:08:49,most_relevant,com.habitrpg.android.habitica +Color Coded Creature,https://lh3.googleusercontent.com/-1fbX8YWqga4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNRFslAG7ug_wssgPcB_XbZp4HbFw/photo.jpg,Useless unless it gets updated so we can use it offline as well. The best time I have for updating it is en route to & from uni and I can't do that without internet. Otherwise it would have been a bomb app. :(,3,5,1.7,2019-01-18 18:28:18,,,most_relevant,com.habitrpg.android.habitica +Clare G,https://lh3.googleusercontent.com/-UBPXblK3hng/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNftIm520dgLvfwZR1CLcJKJQY8PA/photo.jpg,"I've just installed this as and won't be using it due to it requiring you to create an account and login. It sounds like a fantastic app, but I'd much rather my data was stored locally where only I have access to it.",3,2,2.0.2,2019-08-06 14:49:31,,,most_relevant,com.habitrpg.android.habitica +Tsvetan Ovedenski,https://lh3.googleusercontent.com/a-/AOh14GiDt4C_676uLtic54RFBX3JVZoZz5_ixNt4nOTq7A,"Idea is cool (not for everyone); I'm removing 1 star for not having any charts for the habits themselves; and 1 star for the funky behavior of tasks screen - I'd edit some task from Dailies and after it's saved, I'm placed back to Habits, for example.",3,0,,2019-07-01 17:29:07,"Hi Tsvetan, thanks for your review! We'll keep your feedback in mind as we continue to work to improve Habitica. You can contact us directly by going to Menu - About - Send Feedback if you'd like to give us additional details.",2019-07-22 23:53:27,most_relevant,com.habitrpg.android.habitica +Mina Faridi,https://lh3.googleusercontent.com/-EfnF8Mb8SRE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM90u_7Tn4QWHyJrh7cDo_D4NSKNg/photo.jpg,Hi I like this app 😍 it could be better if the todo list's tasks were sorted by their deadline and also today's tasks had a different color!! And a reward could be a game which needs some coins to play them! Thank you!!,3,2,1.6.1,2018-12-26 05:20:35,,,most_relevant,com.habitrpg.android.habitica +Pootilla T Hun,https://lh3.googleusercontent.com/a-/AOh14Gi_N9u5Z_5Skd3t0rLeTzhrSso4pptsvZUl3KNg,"This app is a fantastic idea, but man is it buggy. I'm constantly having to restart the app or check it later because it's bugging out. Would be 5 stars otherwise.",3,0,1.5.1,2018-09-28 15:19:05,Hi Pootilla! Sorry to hear about the trouble. Our team is happy to look into any bugs reported. You can send a report by going to Menu - About - Report a Bug.,2018-10-11 17:02:38,most_relevant,com.habitrpg.android.habitica +Sean Gleason,https://lh3.googleusercontent.com/-abcpk5rLhCg/AAAAAAAAAAI/AAAAAAAAADg/AAKWJJPDVB9DMEnftD1ErfYNSqAsstx3fw/photo.jpg,"Great idea, and everything looks good but the top and bottom buttons are covered by navigation bar on the Pixel 3 XL making it unusable. Couldn't even click the button to report the bug within the app so I'll change my rating once this is fixed.",3,0,,2018-10-25 21:46:09,"Hi Sean, orry to hear about the trouble! It would be very helpful for the team if you sent a bug report with device information. You can do this by emailing mobile@habitica.com if you cannot access the Report a Bug function.",2018-11-06 20:03:30,most_relevant,com.habitrpg.android.habitica +Rebeca Velasco,https://lh3.googleusercontent.com/a-/AOh14GhPKAQcOkOz688-MZc4IhZxzvwTFgcR0jT0rNladA,":( i cant log in after because i need to add a username. i did it, but the app froze when i was adding my username and now it seems is taken... when it wasn't. i tried again with a different one and happened again :(",3,0,0.0.33.2,2019-03-14 08:30:01,"Hi Rebeca, sorry to hear about the trouble! If you're still unable to get the username please email us at admin@habitica.com and the admins can see if they can help!",2019-03-20 21:23:23,most_relevant,com.habitrpg.android.habitica +Sven Bendel,https://lh3.googleusercontent.com/a-/AOh14Gi5RoKbgnYAv6LZmE2rJZFAEVQPByyjjOHfMoUdtQQ,"Great concept, unfortunately sometimes a bit buggy implementation: really weird back stack handling and syncs don't work quite often. Staying with it for now hoping on things to be fixed in the future.",3,7,1.8,2019-03-23 16:07:47,"Hi Sven, Thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-04-03 20:42:00,most_relevant,com.habitrpg.android.habitica +pixelator bit,https://lh3.googleusercontent.com/-kVn5YXQBkQ0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMJQRDB1cDUwOK3Wm1abYVvD6501w/photo.jpg,Its great productivity app but not the one that motivates me or to fun to use personally. The game theme is cool but not the one I like. I like the original task apps better with all neat features since this one doesn't really have any.,3,0,,2018-10-09 22:14:09,,,most_relevant,com.habitrpg.android.habitica +May Liongue,https://lh3.googleusercontent.com/-OXajaHOCpvs/AAAAAAAAAAI/AAAAAAAAO9A/AAKWJJM8ZoAwqn5qt4fhE0sjt_y75fLGQw/photo.jpg,With the latest update it seems that when I update the frequency for one task it messes up the frequency and repeat days of the week for another task which is annoying as I was using the app to track my weekly tasks,3,2,1.5,2018-09-14 20:14:30,,,most_relevant,com.habitrpg.android.habitica +Paul Barnes,https://lh3.googleusercontent.com/a-/AOh14GhdyJgtgDBxAot2Vpv1o1f0Ed2eklMlsY7mJLItBQ,I'd love to see class selection. as an option when you start the game. I was forced to be warrior without an option to change. I even went to setting and nothing there to change it either...,3,0,2.0.2,2019-07-16 10:54:36,"Hi Paul, all players are Warriors until level 10. Once you reach level 10 you will be able to choose a class, and if you wish to change later you can find that option under Settings > User > Change Class.",2019-07-23 16:38:15,most_relevant,com.habitrpg.android.habitica +Crazy Toothy,https://lh3.googleusercontent.com/a-/AOh14GiQwsNnuzIquv6GqB3a777hmsEbqL_vWi70zPGD,Its a very good game and I like it but to buy most things in the game you have to get gems or a subscription which you both to pay for. Also I don't seem to get anything when I purchase the enchanted Armoire.,3,1,2.1.1,2019-10-02 15:45:41,"Hi Crazy Toothy, we're working to improve notifications to let you know what you received from the armoire. Thank you for your feedback, If you'd like to send more details you can do so by going to Menu - About - Send Feedback.",2019-10-07 18:59:05,most_relevant,com.habitrpg.android.habitica +rober carrillo,https://lh3.googleusercontent.com/-5qvXqhKVJqI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPN5wR1VPI_Q-Ns_mEdivSCUSug9A/photo.jpg,"I constantly get a message "" problem with the server "" please fix this, I liked the app a lot but I am unable to use it cause it doesn't connect nor update my tasks",3,0,1.7.1,2019-03-05 14:24:00,"Hi rober, You may have run into some server issues we had at the time you posted- let us know if you're still having trouble via Menu- About -Report a Bug and the team will look into it.",2019-03-05 21:03:53,most_relevant,com.habitrpg.android.habitica +Louise,https://lh3.googleusercontent.com/a-/AOh14GganpalwJrops6CisKX-NpsSqd2wjli4GsH5fL85jQ,a great app! has some kinks that need ironing and I'll update when they're done. But I love this app and use it daily - as intended 😊,3,0,2.0,2019-07-05 01:15:51,Hi Louise! Thanks for your thoughtful review! You can help us fix bugs by reporting them directly via Menu - About - Report a Bug.,2019-07-23 16:27:44,most_relevant,com.habitrpg.android.habitica +Tobias MacD,https://lh3.googleusercontent.com/-J6uNP4HrSts/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP5RJzSOcUL3xOJN8yWmiHJpjS1Zw/photo.jpg,it works great for me but my friends are dealing with the days not reseting and aren't able to deal damage our monster....please i cant do this alone. our party needs help.,3,0,1.7,2019-01-23 19:28:59,,,most_relevant,com.habitrpg.android.habitica +Wim Welsink,https://lh3.googleusercontent.com/a-/AOh14GhY4Jen99KeJx5KFJ64LR2VzbsyDfQd499oHCYzYQ,The app crashes very often. You also have to restart the app every time for a reward to show up in your inventory.,3,4,1.7,2019-01-11 18:44:51,,,most_relevant,com.habitrpg.android.habitica +Ali Moharam,https://lh3.googleusercontent.com/-Hg6r-8IG610/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOKcE3n_UmavUbla7RgX_e2Yeu3lw/photo.jpg,The app is great except for being internet dependant and lacking an undo button or a button lock for unintended log entries I know there is an edit your character section but there is no record of past entries to use as reference,3,0,2.1.1,2019-10-04 14:20:01,"Hi Ali, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-10-07 18:59:58,most_relevant,com.habitrpg.android.habitica +Ryn R. Climenhaga Illustrations,https://lh3.googleusercontent.com/a-/AOh14Gi2IIOr9BanSXgd-s4FPHO_4jhoAzvv6MbOSb1w,"Latest update is super buggy; can't change if I want my dailys to be every 2 days, 3 days, etc. because the keyboard jumps up and immediately disappears. Really annoying.",3,0,,2019-05-07 23:00:49,"Hi Ryn! Sorry to hear about the trouble, please try installing the latest update. If you're still running into problems, you can get help directly by reporting via Menu - About - Report a Bug.",2019-05-16 20:48:04,most_relevant,com.habitrpg.android.habitica +Mark van pelt,https://lh3.googleusercontent.com/a-/AOh14Gh4cR729zFzYQhhuycAK19HFSkIG_3d7dDpTXw3,fun way to track habits. It would be great if you could update tasks without an interent connection and then just sync the next time your connected like many other trackers,3,4,1.9.2,2019-05-21 22:16:05,,,most_relevant,com.habitrpg.android.habitica +Juan Valencia,https://lh3.googleusercontent.com/a-/AOh14GgLdd6yCvwDHF_hdTwXDZHO7pGGt-Zjh_G8DBEDlQ,Interesting and promising but not refined or intuitive. Chat function is one of the worst I've ever encountered.,3,1,1.9.3,2019-06-16 20:03:00,"Hi Juan, thanks for your review! We'll keep your feedback in mind as we continue to work to improve Habitica. You can contact us directly by going to Menu - About - Send Feedback if you'd like to give us additional details.",2019-06-25 18:38:29,most_relevant,com.habitrpg.android.habitica +Redouane Khaldi,https://lh3.googleusercontent.com/a-/AOh14GiYUejP8nl2run1m8gaqj7qmjMiWVs9NODnTfW2ZQ,I really enjoyed the experience of using this app i like it but it doesn't work offline so I can't use it properly so please make it offline or at least se fundamental features.,3,0,,2019-07-24 11:59:57,,,most_relevant,com.habitrpg.android.habitica +Christiaan Bloemendaal,https://lh3.googleusercontent.com/a-/AOh14GjMakZWhi4U4GMqiX0vDJzuQXKy_nJO5r3hxSYWrA,"Nice and useful app. Feels quite buggy though, and the party chat goes the wrong way if you're used to any other chat app.",3,0,2.0.3,2019-08-28 16:29:26,"Hi Christiaan, thanks for your review! You can help us fix bugs by reporting them directly via Menu - About - Report a Bug.",2019-08-29 18:59:13,most_relevant,com.habitrpg.android.habitica +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Hey! The app is great but can't deal with the constant glitches and crashes. Cheers!,3,0,,2019-01-21 03:31:00,,,most_relevant,com.habitrpg.android.habitica +Maria Ioannou,https://lh3.googleusercontent.com/-IQgW0qHbA-0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPYMm5VI0ATM3kKoERDl7nzOe6btg/photo.jpg,I love this app but the latest update is buggy and does not record when I check off tasks. Please fix!,3,0,2.0.1,2019-07-05 11:02:17,"Hi Maria, sorry to hear about this issue. Please try updating to the newest version, and let us know if you're still having trouble via Menu - About - Report a Bug and the team will look into it.",2019-07-23 16:28:01,most_relevant,com.habitrpg.android.habitica +Joey B,https://lh3.googleusercontent.com/a-/AOh14GjKj89xxkaE2cFCLRZkX09Kg_YCrZlgZS-tDY7iJA,Habit widgets stopped working. After a day they just go blank and don't ever come back. The widgets where my favorite part of this app so that's too bad :(,3,8,1.7.1,2019-02-10 15:13:30,Hi Joey B! Thank you for your review and sorry to hear about the trouble! Our team is investigating the issues with the widgets and hopes to have them fixed soon.,2019-02-20 23:22:15,most_relevant,com.habitrpg.android.habitica +Will Guise,https://lh3.googleusercontent.com/a-/AOh14GgQFw9ZlQywD7eQ1ZP1BiD2aex5wFCL73b6K9c,A lot of bugs for an app that tells you to pay to support its development.,3,0,1.5,2018-09-26 16:39:52,Hi Will! Sorry to hear about the trouble. Our team is happy to look into any bugs reported. You can send a report by going to Menu - About - Report a Bug.,2018-09-26 17:06:23,most_relevant,com.habitrpg.android.habitica +Rowan Rome,https://lh3.googleusercontent.com/a-/AOh14GhLZg1ICC24Vf2b8UD-VN4ChJkz_8tcm5ICUYJBmw,Fix the glitch where if you want to change the streak of a daily the keyboard pops up and gos down. super annoying,3,0,1.9.2,2019-06-03 16:19:10,"Hi Rowan, sorry to hear about the trouble! The team is aware of this and is working to fix it as soon as possible.",2019-06-07 20:32:57,most_relevant,com.habitrpg.android.habitica +Zaryab Waseem,https://lh3.googleusercontent.com/a-/AOh14GiFZFqgrB9seaNvwFF7kGHi95cvU6MPxvohBy8vnA,Too complex as a game! The time I spent tried to understanding how it work could have been spent actually working!,3,0,,2019-08-25 08:44:35,Hi Zaryab! Thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.,2019-08-29 18:55:58,most_relevant,com.habitrpg.android.habitica +Gavin Elesban Rodrigues,https://lh3.googleusercontent.com/-b4CaAWMvYnA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMKibdEDEWJUz2IzYb2CWAroZAtaA/photo.jpg,"Love the app, but I have a question. In the options under daily tasks, we can choose between Daily or weekly, What's the difference?",3,0,,2019-06-16 17:38:11,"Hi Gavin, thanks for your review. A Daily task will repeat each day, while a weekly one will repeat on the days of the week you select when you open the task in edit mode. We hope that helps!",2019-06-25 18:38:20,most_relevant,com.habitrpg.android.habitica +Calvez Piamonte,https://lh3.googleusercontent.com/a-/AOh14GhFN2fwIkK9jUA5A5JvZZb7gFoiuX3lWqVVDrHF,I just wish you could use this offline even if wouldn't record progress. Just make it accessible offline,3,0,1.7,2019-04-08 14:40:27,,,most_relevant,com.habitrpg.android.habitica +Genieva Beland,https://lh3.googleusercontent.com/a-/AOh14Ghd-bmAZtzYhfO1D9EmtIC0LiH_CsJNsv9EEylH2Q,"The website is buggy, but enjoyable. The app, however, feel almost nonfunctional.",3,0,,2019-06-07 07:17:14,"Hi Genieva, thanks for your thoughtful review! We'll keep your feedback in mind as we continue to work to improve Habitica. You can contact us directly by going to Menu - About - Send Feedback if you'd like to give us additional details.",2019-06-07 20:37:06,most_relevant,com.habitrpg.android.habitica +Shashank Tyagi,https://lh3.googleusercontent.com/a-/AOh14GgZsIaR1MrOf3f-rMWdoIWPL9Jl7kG0ki6UZPe-,why doesn't adjusting habit streak reflect in health and experience (say if i accidentally clicked + or - for a habit)?,3,0,2.0,2019-06-21 17:33:08,"Hi Shashank, thanks for your review, and sorry to hear about what may be a bug. You can contact us directly by going to Menu - About - Report a Bug with more details if you'd like for us to look into this for you.",2019-06-07 20:30:49,most_relevant,com.habitrpg.android.habitica +Danny Granville,https://lh3.googleusercontent.com/a-/AOh14GiTPN4FsZga74emyNnjo-ZimyzI0GGg00-DexMW,timezone feature broken. the gamification was a little too complicated and too much for my needs.,3,0,,2019-04-13 06:28:11,,,most_relevant,com.habitrpg.android.habitica +Andrew Dillon,https://lh3.googleusercontent.com/a-/AOh14GgAS_l31UWNMha-WzJGbuaOZCXEErCaCBIxEiGZ,"Clunky, annoying lag time after button presses, often won't update upon opening",3,0,1.8.1,2019-04-13 15:06:26,"Hi Andrew! Thank you for your review and feedback. If you'd like to send along any details to help us look into the issues you mentioned, please feel free to do so via Menu - About - Send Feedback.",2019-04-24 02:30:50,most_relevant,com.habitrpg.android.habitica +Lucinda Sanchez,https://lh3.googleusercontent.com/a-/AOh14Giwg8KuSvzrVmW3Rnp1bFdIon-5PZtHzqYnISmWGA,"I really like this, however I'm not able to stay with it for long periods of time. This one and others I've tried and I just can't stay motivated....",3,0,,2019-12-09 05:15:39,"Hi Lucinda, thanks for your review! We'll keep your feedback in mind as we continue to work to improve Habitica. You can contact us directly by going to Menu - About - Send Feedback if you'd like to give us additional details about what you think might improve long term motivation.",2019-12-12 19:25:43,most_relevant,com.habitrpg.android.habitica +Đặng Trang,https://lh3.googleusercontent.com/a-/AOh14Gixy65RQwKE0kVNC1Z4lAo1DIScIxn9pEe3ehpoJg,"Bug: message cannot be displayed on app! Android 9, nokia 6.1 plus",3,1,1.9.3,2019-06-20 08:22:20,"Hi Đặng, thanks for your review and sorry to hear about the trouble. If you'd like to send us more detail to help us investigate this issue, you can send that information directly to the support team via Menu - About - Report a Bug.",2019-06-25 18:42:42,most_relevant,com.habitrpg.android.habitica +Reginald Uy,https://lh3.googleusercontent.com/a-/AOh14GgYUZav24tnLYQYh64QZSll0rmWWpMRm7-IOovljQ,Missing a few good features and isn't always the most stable of apps,3,0,1.9.3,2019-06-08 23:10:02,"Hi Reginald, thanks for your review! We'll keep your feedback in mind as we continue to work to improve Habitica. You can contact us directly by going to Menu - About - Send Feedback if you'd like to give us additional details.",2019-06-14 00:45:49,most_relevant,com.habitrpg.android.habitica +Default,https://lh3.googleusercontent.com/a-/AOh14GjdW6ZH_KsM90YrzcRXaRbz34gSLuv8pmf1kaDkTg,super cute and motivating but the server seems to constantly bug out on me,3,0,1.7.1,2019-03-05 04:36:18,"Hi Default, You may have run into some server issues we had at the time you posted- let us know if you're still having trouble via Menu- About -Report a Bug and the team will look into it.",2019-03-05 21:05:59,most_relevant,com.habitrpg.android.habitica +Eugene Bos,https://lh3.googleusercontent.com/a-/AOh14GgR258KF_wMYyjE-pNfk1cSTsYwXByGDv5SQgCF0CQ,"useless, as you can not group habits, but gamifying idea is good, maybe they will fix it",3,0,2.0.2,2019-08-02 09:47:25,Thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team more details about what you'd like to see by going to Menu - About - Send Feedback.,2019-08-01 18:42:23,most_relevant,com.habitrpg.android.habitica +Hossein Malakalaie,https://lh3.googleusercontent.com/a-/AOh14GhNbwRa3JGGgIMnikPMWcyHdsjBkk_Pd5hz8Q6nYA,"Gamification is good designed but the app works kind of laggy, 5 star when redesigned",3,0,2.0.6,2019-09-08 19:11:51,Thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.,2019-09-12 19:27:40,most_relevant,com.habitrpg.android.habitica +hojun lee,https://lh3.googleusercontent.com/a-/AOh14GiKDy8F0fuj2deeZ6fDTDyfmzxNReneBoWP7L6duQ,"very good app, but i wish it can be used offline :)",3,1,1.8.1,2019-04-17 11:51:24,,,most_relevant,com.habitrpg.android.habitica +Black Pug,https://lh3.googleusercontent.com/-SJ1aVyX3Rv8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPtS6UXIgpZUTK6hJYY5eJCQ7bg5A/photo.jpg,Needs internet connection and is a pain to set up simole tasks.,3,1,1.6.1,2019-01-01 14:05:19,,,most_relevant,com.habitrpg.android.habitica +maryam gazichi,https://lh3.googleusercontent.com/a-/AOh14Ggds9Do1UETIf5xEnM8Ih9tZVa9rgL2z2BDGm5lPw,It miss my data after updating.i can't use it easily.,3,2,2.1.1,2019-10-08 07:53:41,"Hi maryam, sorry to hear about the trouble. If you'd like to send us more detail to help us investigate these issues, you can send that information directly to the support team via Menu - About - Report a Bug.",2019-10-11 00:53:58,most_relevant,com.habitrpg.android.habitica +Seth Glukler,https://lh3.googleusercontent.com/a-/AOh14Gh6FCbXeGl-DTzcWE1FsW6s7G8CWPJSGCJ3sTIWJ0w,i love it but my daily tasks dont reset at midnight so i cant use it in the morning im in western canada what timezones should i set this to so it works for me? irs just frustrating not being able to use it for the majority of my day,3,6,1.7,2019-01-16 17:47:11,,,most_relevant,com.habitrpg.android.habitica +Caio Silva,https://lh3.googleusercontent.com/a-/AOh14GizCAWVO_oSFxJZ1qqzw1khfRMpJRy4_Duk3iqr0w,It's good but has some points to improve.,3,0,1.5.1,2018-10-10 02:45:44,"Hi Caio, thanks for your review! If you'd like to share your feedback you can send it via Menu - About - Send Feedback.",2018-10-11 17:15:48,most_relevant,com.habitrpg.android.habitica +Beatriz Gálvez,https://lh3.googleusercontent.com/a-/AOh14Gg1tar9HnbjJiwKdRiIvuTwakzGQJVL8Lso6l3S,"Finally is working, but I had to erase the data on my cellphone =/ Later I'm going to check what happened with the avatar. Until then the rating gonna stay still",3,6,2.0,2019-06-23 16:10:36,"Hi Beatriz, sorry to hear about the trouble. If you'd like to send us more detail to help us investigate these issues, you can send that information directly to the support team via Menu - About - Report a Bug.",2019-06-25 18:44:56,most_relevant,com.habitrpg.android.habitica +hy a,https://lh3.googleusercontent.com/a-/AOh14GhfEPxPtAYX0WbwLjqKEE124ED55HG53_HYyJyHNg,Force closes when trying to create challenge,3,0,2.1.1,2019-10-12 22:03:27,"Hello Hy, sorry to hear about this issue. Please try updating to the newest version, and let us know if you're still having trouble via Menu - About - Report a Bug and the team will look into it.",2019-10-17 21:22:16,most_relevant,com.habitrpg.android.habitica +Clayton Robertson,https://lh3.googleusercontent.com/-fB9MAkp0gbk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOugnOWmYoixrKMh7dddpQ-oWvIpg/photo.jpg,"It is a great idea, don't get me wrong, but why the need for a chat room?",3,0,,2019-09-26 23:00:12,"Hi Clayton, thanks for your review! We provide chat spaces so players can interact over common interests and goals. Many folks say it's very helpful for their motivation.",2019-10-07 18:50:29,most_relevant,com.habitrpg.android.habitica +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,the idea behind it its very good but it wont even let me log in...,3,0,,2019-03-27 08:15:51,"Hi there, sorry to hear about this issue. Please let us know if you're still having trouble by sending us a message at mobile@habitica.com and the team will look into it.",2019-04-03 20:31:05,most_relevant,com.habitrpg.android.habitica +Dejan Perović,https://lh3.googleusercontent.com/a-/AOh14GgqT03rGYB4VzCff2Bx7nI8YmC4-ray0Tu2ox-GGw,Good idea but this isn't for me. I am much more for classic habit apps.,3,0,2.0.2,2019-07-24 23:31:46,"Hi there, once you complete the tutorial you can customize the appearance of your avatar via Menu - Inventory - Customize Avatar.",2019-07-23 16:36:24,most_relevant,com.habitrpg.android.habitica +Lauren Joanna,https://lh3.googleusercontent.com/a-/AOh14GgBJVQ6APGwAnP8eSxASiXDiAwpkDw-zNPQ35l7LA,Having some equipment related bugs,3,0,2.0.4,2019-08-31 21:01:54,"Hi Lauren, sorry to hear about the trouble! The team is aware of this issue, and it should be solved in the latest update. Let us know if you're still having this issue by contacting us at Menu - About - Report a Bug and we can look into it.",2019-09-05 18:30:00,most_relevant,com.habitrpg.android.habitica +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"App needs work, poor sync with website",3,1,1.5.1,2018-10-12 03:36:33,,,most_relevant,com.habitrpg.android.habitica +Sanya Grosh,https://lh3.googleusercontent.com/a-/AOh14Gj7gMOBIPtXqHpmN711EnhxmZjUjx0bOXl1pmfx3g,"bags lags. Usable, but painful",3,0,1.7,2019-01-19 10:52:56,,,most_relevant,com.habitrpg.android.habitica +Shadow Owl,https://lh3.googleusercontent.com/a-/AOh14GjU8j-XuoszCUDNsfyMPDpU7EojIw6aQPBRjvnPrQ,Notifications are great so far.,3,0,1.8,2019-03-26 18:31:20,,,most_relevant,com.habitrpg.android.habitica +Keith Ballentine,https://lh3.googleusercontent.com/a-/AOh14Gi8uJfhMihBlVSAEaXt_-OI-4MEt0zL1IY8QvyQsA,it has great promise but i cant use it offline so its worthless to me.,3,2,1.8.1,2019-04-29 21:40:05,,,most_relevant,com.habitrpg.android.habitica +Amethyst Amethyst,https://lh3.googleusercontent.com/a-/AOh14GgVLnz-xINUc6N6f30tpb6VjMwVNpZUbmInD89y9Q,ehh it's just way too confusing for me to understand and do anything. my health would probably go to 0 if i actually did know what i was doing anyways lmao,3,0,1.7,2019-01-16 06:57:00,,,most_relevant,com.habitrpg.android.habitica +zaito k,https://lh3.googleusercontent.com/a-/AOh14Gj8Givf9L6bvWtH6BYhSiFoRZCT-pNUYJCg9-miCg,idk if its my phone (android) but i dont receive push notifications nor reminder for this app :/,3,0,1.9.3,2019-06-18 21:11:32,"Hi Zaito, thanks for your review and sorry to hear about the trouble. If you'd like to send us more detail to help us investigate this issue, you can send that information directly to the support team via Menu - About - Report a Bug.",2019-06-25 18:41:57,most_relevant,com.habitrpg.android.habitica +Gwendolyn Alvinra C.T.,https://lh3.googleusercontent.com/-XJyJ7GACSx4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPFU2G88b2XMrIIJMA0tlW83Cs-kA/photo.jpg,Just downloaded the app better review later on,3,0,2.5,2020-03-23 07:43:46,"Hi Gwendolyn, thanks for your review! If you'd like to share any further feedback, please feel free to reach out via Menu - About - Send Feedback.",2020-03-26 19:44:19,most_relevant,com.habitrpg.android.habitica +No.,https://lh3.googleusercontent.com/a-/AOh14GiBWNTAiP929mkzdo5sccPgtPEik94q0o1IUOfbDw,"Interesting organizer, but is there any other way to earn gems without buying them?",3,0,1.6.1,2018-12-21 17:06:20,,,most_relevant,com.habitrpg.android.habitica +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,No option to set daily tasks as only Monday to Friday.,3,1,0.0.32.1,2018-11-07 05:38:31,"Hi Bret, thanks for your review. Actually you can set Dailies for specific days of the week by tapping and holding to open them in edit mode.",2018-11-16 20:31:36,most_relevant,com.habitrpg.android.habitica +Hai Luong,https://lh3.googleusercontent.com/a-/AOh14Gg5ykgmenAIvA8R4QJTaJxdRw9ATZjORh_WhKRHlMI,"An ok, but expensive app",3,1,1.5.1,2018-10-25 07:02:06,,,most_relevant,com.habitrpg.android.habitica +Jennifer Coan - Art,https://lh3.googleusercontent.com/a-/AOh14GiSlVVOvIKz-y0XCOcRYsfHod5VCjxKQ9uhik2Q8Q,"My friend loves this app, but its not for me",3,0,,2020-03-26 14:01:21,"Hi Jennifer, thanks for your review! If you'd like to share any further feedback about why Habitica didn't work for you, please feel free to reach out via Menu - About - Send Feedback.",2020-03-26 19:52:19,most_relevant,com.habitrpg.android.habitica +Jorijn Bleijs,https://lh3.googleusercontent.com/a-/AOh14GiYVYeFVszg8j9bKsYRW33pmjxd7PSJQ7OTakfeeLk,"Beautiful idea, bad design",3,0,,2018-11-20 16:33:52,"Hi Jorjin, thank you for your feedback! If you'd like to give us any specific feedback about our design, you can do that via Menu- About- Send Feedback.",2018-11-30 20:18:57,most_relevant,com.habitrpg.android.habitica +Sarthak Saini,https://lh3.googleusercontent.com/-ZpVzHzBauJs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP-WCk1duv1RSXCFF_OAKQCTzl3wQ/photo.jpg,######please make offline version because most of studious people cannot afford online apps so if you want good ratting please make part 2 offline,3,0,,2019-10-28 16:51:05,,,most_relevant,com.habitrpg.android.habitica +Micah Orozco,https://lh3.googleusercontent.com/a-/AOh14GjsiDJC5vm3LkzaxBPat6DLhg4ShwTG7sTyJ5RL5g,"Neat concept, just not for me.",3,0,,2019-11-03 10:56:51,"Hi Micah, thanks so much for this thoughtful review. We value your feedback as we improve Habitica.",2019-11-05 20:03:16,most_relevant,com.habitrpg.android.habitica +Hill Sever,https://lh3.googleusercontent.com/a-/AOh14Gi4PgOV8Fv0f1nCOevwNjQ4a0mYqD7-LryfnofMbg,"Wants me to write a username, but says ""username already taken"", even when I put nonsense in.",3,1,,2019-04-15 14:30:49,Hi there! Sorry to hear about the trouble. Please email us at admin@habitica.com and we'll be happy to look into this.,2019-04-24 02:38:53,most_relevant,com.habitrpg.android.habitica +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Please fix the date format, we're not all backward Americans...",3,1,1.6.1,2018-12-05 08:25:46,,,most_relevant,com.habitrpg.android.habitica +Shozloch ShadR,https://lh3.googleusercontent.com/-bDt_0ChQAD0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP974UxKglhF4obvXumx2jZrYTDlQ/photo.jpg,My life is a game and I should quit to desktop lmao,3,0,,2018-12-10 10:02:58,,,most_relevant,com.habitrpg.android.habitica +Sheherezade Blanc,https://lh3.googleusercontent.com/a-/AOh14GhKbDIA1YUyjdPIT-e33-uUxfwx1zxLOP3U0D-bjA,"nice, but not what I need for now",3,0,,2019-05-01 15:16:19,"Hi Sheherezade, sorry to hear Habitica wasn't for you, but thanks for giving us a try!",2019-05-02 19:26:31,most_relevant,com.habitrpg.android.habitica +Thomas Pardey,https://lh3.googleusercontent.com/a-/AOh14Gh8JWYypFQkbW0afijHdb2mM_jVOYEWJ7hExGsfkQ,The app is what you expect.,3,0,2.0.6,2019-09-06 19:39:59,"Hi Thomas, thank you so much for this thoughtful review. If you'd like to send us more details, you can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-09-12 19:23:23,most_relevant,com.habitrpg.android.habitica +Joshua Gaulrapp,https://lh3.googleusercontent.com/a-/AOh14Gi6-gyXA6-cRWoV0GOjUHfmm9CZpKo2jvZoPC0H,i dont get the point of the game,3,0,1.8.1,2019-04-13 15:45:46,"Hi Joshua, Habitica is a gamified productivity app to help you approach your everyday tasks like a game. We hope that helps clarify, and if you'd like to know more, folks in the Habitica Help Guild can answer any questions you might have.",2019-04-24 02:31:52,most_relevant,com.habitrpg.android.habitica +Brian Chelule,https://lh3.googleusercontent.com/a-/AOh14Gj2iQ6oAxAL5-gzwQTseyq4-BxG9oqbDtZTiWOdsw,"not bad, still new user tho",3,0,1.7.1,2019-02-25 07:02:58,,,most_relevant,com.habitrpg.android.habitica +explored explorer,https://lh3.googleusercontent.com/-uTcMMgbPeF4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNAgD8Gn6TsIn_k2CJSr8H0N36MGg/photo.jpg,miss the dark theme,3,0,2.1,2019-09-16 19:14:12,Hi explored! A dark mode is on the way in a near-future update.,2019-09-26 21:22:33,most_relevant,com.habitrpg.android.habitica +Anj0kaid0,https://lh3.googleusercontent.com/a-/AOh14Gi4ibjmTjXPWrkp32i4JbAbTxG3hJ9xd1phdpL8,"Não consigo mudar a linguagem, já fui nas opções e tudo mas sempre atualiza e fica no inglês.",3,0,2.3,2019-11-18 04:31:27,"Hi there, you should be able to change your Language in Settings once you complete the tutorial. Not all translations are complete, as our translations are done by volunteers. If you'd like to help, you can learn more here: https://habitica.fandom.com/wiki/Guidance_for_Linguists",2019-11-21 18:07:47,most_relevant,com.habitrpg.android.habitica +Stanislav Larsen,https://lh3.googleusercontent.com/a-/AOh14GjpO14yzRNcsrMOiplT_n2ScmTE_F-YmQ4RhB9rPwM,"Ребят, конечно круто что вы сделали это в виде игры. Только вот, вы бы могли доработать такие вещи: - сбивается сортировка задач после выхода из приложения. Я хочу чтобы у меня постоянно была сортировка по не выполненим ежедневным задачам. - я закрыла прогу на вкладке ""ежедневные задачи"" . Хочу чтобы при повторном открытии она была также на этой вкладке.",3,0,2.2.2,2019-11-09 15:51:30,"Hi Stanislav, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-11-15 00:21:29,most_relevant,com.habitrpg.android.habitica +Segundo Constantino,https://lh3.googleusercontent.com/a-/AOh14GgQfTr-AX6nFsi9ZTo48NGIXO9J__mg7YTZvDc0YQ,"Parece una gran app, pero no se me actualiza el idioma a español, a pesar de que ya lo configure para que asi sea. Una lastima",3,0,2.0.4,2019-08-29 23:47:38,"Hi Segundo, you should be able to change your Language in Settings once you complete the tutorial. Not all translations are complete, as our translations are done by volunteers. If you'd like to help, you can learn more here: https://habitica.fandom.com/wiki/Guidance_for_Linguists",2019-09-05 18:25:40,most_relevant,com.habitrpg.android.habitica +Mr Green,https://lh3.googleusercontent.com/a-/AOh14GgFI9EUguS7Zy2oUvLA9sMAy_l6Oox2HWlb8_gGbQ,"The big CONS to this app: DAILIES tab always shows all of my weekly duties, instead of the DAILY ones. I change this in the filter but once I reopen the app, it switches back to showing EVERYTHING. What's the point of a filter when the app doesn't save it? (Galaxy Note 8) Also, why is there no dark mode? My eyes are screaming at night.",3,0,1.9.2,2019-05-29 02:36:15,,,most_relevant,com.habitrpg.android.habitica +TE L,https://lh3.googleusercontent.com/a-/AOh14GgHgNZ94ZOJReVDsIMpdwpR_MZo7SNbEj-aAzfFM0s,"Cool concept, but I don't have the attention span for it.",3,0,1.8.1,2019-04-26 07:16:30,,,most_relevant,com.habitrpg.android.habitica +HyperWizard Gring,https://lh3.googleusercontent.com/a-/AOh14GjrxJFmk4Nj-YtS4ffAq4iiAfCZVzh4dy1HD1qN,Ok ok ok,3,0,1.7.1,2019-02-12 00:37:43,Hi there! We'd love to hear any specific feedback you have for improvement. You can send this to the team directly via Menu- About - Send Feedback.,2019-02-20 23:33:21,most_relevant,com.habitrpg.android.habitica +Sam Sammy,https://lh3.googleusercontent.com/a-/AOh14GjrYIVp3QECA8Z0u7QUeDMgbEwGcBpfhesFk_kI-w,would be good if it is made offline atleast for todos,3,0,1.7,2019-01-22 13:09:08,,,most_relevant,com.habitrpg.android.habitica +sventhedog gy,https://lh3.googleusercontent.com/-ENmBHjhyQAY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNKidtUAqS7Cb9AaflSmcwEk_82Ag/photo.jpg,Offline support? At least make an offline list feature.,3,3,1.6,2018-11-17 12:19:22,,,most_relevant,com.habitrpg.android.habitica +Duc Pham,https://lh3.googleusercontent.com/a-/AOh14GgG5MN3HNDSeOMpjt5dTNR-mkXNWTGTuhLxawJX,Laggy.,3,0,1.5.1,2018-10-02 10:58:36,"Hi Duc, Sorry to hear about the trouble. Our team is happy to look into any bugs reported. You can send a report by going to Menu - About - Report a Bug.",2018-10-11 17:04:45,most_relevant,com.habitrpg.android.habitica +Elle McCann,https://lh3.googleusercontent.com/a-/AOh14GjhO1vuqIdxHjUCPCA8nPcxly3vd5SDKiblIvi2LA,"I like the concept of the app and the fun gamification of reaching your goals however it is SUPER buggy on Android. The app is constantly quitting unexpectedly, not closing tasks properly and not doing rewards properly. I've reported it multiple times now and there has never been any update to fix it. I recommend going with another app if you have an Android device to save yourself the frustration.",3,4,1.4.5,2018-09-03 16:49:41,"Hi Elle, Sorry to hear about the trouble! If you'd like to report any bugs you may have experienced so our team can look into them, you can do so via Menu - About - Report a Bug and the mobile team will investigate.",2018-09-13 17:54:37,most_relevant,com.habitrpg.android.habitica +Narosenla Longkumer,https://lh3.googleusercontent.com/a-/AOh14GjahopfHoW8QXrP9IJLcKFCHOEQzGoHrm3rExap0Q,Please make the reminder work!!! It's really important for me to remember things because I forget and don't do it in the end.,3,0,1.4.5,2018-09-06 05:57:01,Hi Narosenla! Sorry to hear about the trouble. If you're still experiencing this issue you can report it via Menu - About - Report a Bug and the mobile team will investigate.,2018-09-13 17:51:13,most_relevant,com.habitrpg.android.habitica +Aaron Huttner,https://lh3.googleusercontent.com/-Xi-ZX0PQtnA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMjWYgn_xObxKHr7ayMZ5QVtAF5lw/photo.jpg,"App is slow and unresponsive, makes using it a pain",3,1,1.4.5,2018-08-26 22:28:00,"Hi Aaron, sorry to hear about this issue. If you're still having trouble, please feel free to send us a bug report via Menu>About>Report a Bug and we'll investigate.",2018-08-31 01:35:07,most_relevant,com.habitrpg.android.habitica +Josh Wyciskalla,https://lh3.googleusercontent.com/a-/AOh14GiUY9yVAsjIj_MG8OfZ5We3PGH6Qzyiwdsnp0bI,"I like it a lot, but I think it needs a way to tell what day you're in. It +does ask if you did things yesterday, but I sometimes get reminders for +things on the wrong days... It's still a very good resource.",3,0,1.4.4,2018-08-12 00:06:53,,,most_relevant,com.habitrpg.android.habitica +Kai MacCrory,https://lh3.googleusercontent.com/a-/AOh14Gh0ncmeHZW21zaiZVPleAiKl5VdMRtYnuoOY-2r,"I can't allocate skill points? While it's not something massive, it +certainly is a little frustrating.",3,0,1.4.4,2018-08-06 10:11:18,"Hi Kai, Thanks for your review! You can allocate skill points starting at level 10.",2018-08-09 20:40:34,most_relevant,com.habitrpg.android.habitica +Mariah Schurman,https://lh3.googleusercontent.com/-MUZPWx7VNgc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNTj_qA3wBxkOwSLT5TYfN6MRT5Eg/photo.jpg,"I would like it better if you could add days of the week that would be +super helpful. For example, I only workout Monday thru Friday so if I could +have it remind me Monday thru Friday that would be super helpful",3,1,1.4.4,2018-07-28 20:16:01,,,most_relevant,com.habitrpg.android.habitica +Lydia Cleveland,https://lh3.googleusercontent.com/a-/AOh14GgpZKZJrgQAN3g4zUoc_yYbPBNxrxOs89c6krkbYA,"I like the idea, especially the differentiation between dailies, habits, +and to-dos, but I need to be able to see the history. Uninstalled - will +stick to Daylio for now.",3,0,1.4.4,2018-08-07 05:32:35,"Hi Lydia, Thank you for your feedback. We hope to better integrate stats and history in the app soon, but in the meantime you might enjoy the Data Display Tool: https://oldgods.net/habitrpg/habitrpg_user_data_display.html",2018-08-09 20:42:33,most_relevant,com.habitrpg.android.habitica +Stephanie T,https://lh3.googleusercontent.com/-ktCaZzXr9NU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP71ASqio-W5w-be5Ssy4L45YXOHQ/photo.jpg,"It's a good app but it always need to be online to use the app. Most of the +items are in-app purchase.",3,0,1.4.4,2018-08-04 03:38:28,,,most_relevant,com.habitrpg.android.habitica +Azl Cedric Lopez,https://lh3.googleusercontent.com/a-/AOh14Ghc4CEA2ODI3weIOFvyYWgffxEYQ-ZXhKPLaDRprg,Widget not working,3,0,1.4.4,2018-08-19 19:49:17,,,most_relevant,com.habitrpg.android.habitica +Santiago Suarez Ordoñez,https://lh3.googleusercontent.com/a-/AOh14Gh2_-AV80L8fHM3MituHNU6Y1q2nfUYevqFYdIfWvI,"Pretty buggy still. Love habitica and really wish the app wasn't so painful +to use. Many times, the bottom half of the screen becomes numb to taps. +Marking many teams done usually fails and means you have to unmark and then +mark again. Some real polish is sorely needed",3,17,1.4.3,2018-04-18 07:11:13,,,most_relevant,com.habitrpg.android.habitica +Strider Bantegui,https://lh3.googleusercontent.com/a-/AOh14Ggfm51_XNLFGTp19Oq239sIPeOeUqlAsEtIyAeJCA,"Initially i gave it 4 stars but after using it worked great based on how it +was created but lacked important features like offline functionality on +mobile, sorting your todo list by date, and calendar syncing. Overall if +you're not very particular about these it works great in gamifying habits.",3,2,1.4.3,2018-04-30 16:40:11,,,most_relevant,com.habitrpg.android.habitica +Dark Spectro,https://lh3.googleusercontent.com/a-/AOh14Gg6LGXhTZYjPbc-Oos_7I9MIODwzpPZk02CooJV,"To-Dos should be named to QUEST, don't feel like im playing a game with a +boring to do list, its very depressing... Now a quest i think it fits +better the description. Also why does this app doesn't have any financial +options to help me keep track of bills, debt!!",3,9,1.4.3,2018-04-12 22:00:47,,,most_relevant,com.habitrpg.android.habitica +humus is great,https://lh3.googleusercontent.com/a-/AOh14Gj9CHV9xnTGVyRyWn5MpvbGVupStHpJa7b65iVoTw,"I really do like this, but there's one (probably petty) reason I have given +it a three. My class. I cannot seem to change from warrior to something +else. This is a problem to me because I personally hate the warrior class +in games. This makes me less motivated to stop my warrior from losing +health and the such. I would be much more motivated to help my healer.",3,0,1.4.3,2018-05-22 07:21:04,"Hi George, starting at level 10 you can select a different class. You can learn more about this here! http://habitica.wikia.com/wiki/Class_System",2018-06-01 22:03:35,most_relevant,com.habitrpg.android.habitica +Richard Bingley,https://lh3.googleusercontent.com/a-/AOh14Gj3vi5afdXl9p26MQ6zciz7nqOoyB0ibJg6F1c6,"The application consistantly tells me I have no internet connection, and +has become a pain to use. I know I have internet, it is slow, but present. +The application would be much more useful if it could keep track and update +your progress when it feels the connection is stable enough.",3,1,1.4.3,2018-07-06 16:50:45,,,most_relevant,com.habitrpg.android.habitica +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"The app is okay. It would be nice if I could sort tasks by due date, change the order of to-dos manually without bugs, and have the option of dark mode. Streaks for dailies should be more visual so as to increase motivation. Undo button is a must. Sometimes the touches don't register, quite a few small bugs.",3,5,1.4.3,2018-03-23 08:19:35,,,most_relevant,com.habitrpg.android.habitica +Matt Kay,https://lh3.googleusercontent.com/a-/AOh14GitrmqFMqCULLZNTMf6XhJnjkPqtA6WZJxNwP2r9g8,"Best and most effective habit app I've tried. However, adding new tasks is +very frustrating, because the sorting feature is buggy. Sometimes the item +you're moving disappears for a time, sometimes the item jumps out of place. +This might sound trivial, but I have a lot of tasks, and being able to sort +them is an essential feature for me. I'm on Android 6.0 (LG G4).",3,2,1.4.3,2018-04-26 07:42:45,,,most_relevant,com.habitrpg.android.habitica +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I like the idea and will probably keep using it but it keeps telling me I'm +not connected to the internet even though I am. I don't know whether it's +working fine and throwing errors or if I might be missing features due to +these errors. Nonetheless worth downloading.",3,0,1.4.3,2018-07-18 18:18:32,,,most_relevant,com.habitrpg.android.habitica +Adarsh,https://lh3.googleusercontent.com/a-/AOh14GhMYpuui2OTZosfepSMcw--OSrbLnROccVwUFA_Gg,"It's too confusing for me. I got the part, how to play the game. But the +rewards are too many and too confusing. Would have loved the app, if the +game was simple with better graphics.",3,0,1.4.3,2018-05-19 14:27:31,"Hi Adarsh, thanks for your thoughtful comments. We'll be sure to pass them on to the team.",2018-06-01 22:12:13,most_relevant,com.habitrpg.android.habitica +Kaci Kanani,https://lh3.googleusercontent.com/a-/AOh14Gip-0AUij_BfsXKODALFqimX7Ydv5LTEptos7MZ_w,"Buggy. Stuck with a connection to server error which seems ridiculous +because all the app truly has to do is figure out what day it is and let +you mark tasks off as complete. Nice concept, as it does make doing daily +chores and setting goals a bit more fun to complete. But there's still a +long way to go.",3,0,1.4.3,2018-04-23 19:23:45,,,most_relevant,com.habitrpg.android.habitica +Jaya Vara Prasad Kakara,https://lh3.googleusercontent.com/a-/AOh14GhItRJ-9TfbSRu7IpC1eRmOVNNE_irqBPZMoHnI3Q,"Cannot add tags to anything. The remainder setting is a little clumsy. +Please make it simple by changing it to daily, weekdays or weekends. Except +for that everything else is cool.",3,0,1.4.3,2018-05-05 06:42:12,"Hi Jaya, sorry to hear about the trouble. If you'd like to receive help with bugs from the support team, please send a bug report using the in-app bug reporting feature. You can find this in Menu>About. Please note you must give the app permission to access the email client on your phone for this to work.",2018-05-08 18:34:03,most_relevant,com.habitrpg.android.habitica +Rory Covey,https://lh3.googleusercontent.com/a-/AOh14GgpDrXW_vua7T4QhmDIS3g77uXLHe-ni_0Xjx6gfQ,"It's pretty neat, helps get things done, especially if there's people in your every day life to play and compete with. Adding a to- done list that kept log of the to- dos you check off would be cool. And adding some sort of actual gameplay with the avatars and the items you gather might be neat too",3,0,1.4.3,2018-04-11 16:09:34,,,most_relevant,com.habitrpg.android.habitica +Irene Vera,https://lh3.googleusercontent.com/a-/AOh14GjUq_udDB6mefgeMOW-R8sdcsJ6LrwVpD2EXJFB3g,"I love this app, buuuut... There's a lot of small simple things that can be +added to the actual organization system that can make it much more +effective on people For now (bigger concerns), - PLEASE allow task ( and +etc.) making/ setting/ marking (and etc.) to be allowed to be done OFFLINE, +it's worth it and will be effective trust me - when making tasks and all +that good stuff there's an option to have a start date. This does nothing, +I suggest that this should let the said task or etc to only show up on the +date you stated, or have a tag you can activate to show it, or at least not +turn red or damage you until the start date of your choice, or just some +concept of long term task setting(please) - when I try to make a party in +the mobile app it directs me to a window in chrome, that then tells me to +use the mobile app. Really love this, best of wishes in developing :)))",3,1,1.4.3,2018-05-29 14:45:15,"Thanks for your comments, Irene! We'll pass them on to the team. We'd love to add an offline mode but we have a very small developer team and that process is very intensive. We're open source and welcome help if you have programming skills- learn more here: http://habitica.wikia.com/wiki/Guidance_for_Blacksmiths",2018-06-01 21:58:53,most_relevant,com.habitrpg.android.habitica +Jeff Smith,https://lh3.googleusercontent.com/a-/AOh14GghEZJ_2wDlGg12pSoXiMzT4IrGRD7qfIY1lOHhXBs,"Although much improved, the app could still use some work. It doesn't do +landscape, and still needs UI improvements when working with pets and items.",3,4,1.4.3,2018-04-21 19:07:26,,,most_relevant,com.habitrpg.android.habitica +S Sh,https://lh3.googleusercontent.com/-Pf41i3vkpbE/AAAAAAAAAAI/AAAAAAAAAEY/AAKWJJMtwUjNC9TF2d0FRdRdAFKGS7gNxg/photo.jpg,"Great concept but too buggy. My brother had the same problem so he +uninstalled it.",3,0,1.4.3,2018-04-24 14:32:20,,,most_relevant,com.habitrpg.android.habitica +Marie,https://lh3.googleusercontent.com/-7HJz1qwTlCY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNthiwStai6pMnQG9Rs230z_U1uQg/photo.jpg,"This is a really good app. It's what I'm looking for. But I wish it was +available offline so that I could add/edit my tasks, to dos, habits and +rewards",3,1,1.4.3,2018-06-03 04:24:09,Hi Marie! Thanks for your feedback. We hope to add an offline mode in the future.,2018-06-07 21:28:02,most_relevant,com.habitrpg.android.habitica +Leandro Lemos,https://lh3.googleusercontent.com/a-/AOh14GhRoYa9Aw3dcbQOv_l3yfJtGbv29Ii6sjTecyRJ7A,"Uhmm I love the idea of this and enjoy using it at the same time. It will +be amazing if the app could offer to change the date format, for ex +actually it is month/day/year for me it's too weird, I'll prefer something +like year/month/day or day/month/year",3,0,1.4.3,2018-07-02 06:49:17,,,most_relevant,com.habitrpg.android.habitica +Sourav Bhowmick,https://lh3.googleusercontent.com/a-/AOh14Ghg0pwdOuUID_FWI0_Rf6LwTGhvvO6deBNuIM9B3w,"Okay.. thing is this app is almost gender biased.. the starting avatar it +gave is already set in female.. and you'll have to earn something to get +beard and mustache... I thought it will be custom task set ups.. but it's +already given... Lags a bit too..",3,0,1.4.3,2018-05-30 10:09:44,,,most_relevant,com.habitrpg.android.habitica +Nii lomotey,https://lh3.googleusercontent.com/-AWGsnm8EsUo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOXyr51gCCSjkwaPyIfUKxtxd4yiw/photo.jpg,"It's really good, I would appreciate it even better if I could save tasks +offline.",3,2,1.4.3,2018-06-22 13:05:42,,,most_relevant,com.habitrpg.android.habitica +Minh Ngoc Dang,https://lh3.googleusercontent.com/-82P1u28Fmqg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNG5X5hMRcarBLx28640pir-R9PWg/photo.jpg,"I'm liking the app so far, but the widget does not sync with the app so +renders that function useless.. suggestion to add a refresh button to the +widgets so i don't have to open the app every time",3,0,1.4.3,2018-07-01 10:34:41,,,most_relevant,com.habitrpg.android.habitica +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"There should be an option to undo last action, for accidentally pressing +the wrong button.",3,0,1.4.3,2018-04-24 17:07:01,,,most_relevant,com.habitrpg.android.habitica +Jenna Henry,https://lh3.googleusercontent.com/a-/AOh14GgqDd2W4YRcoMy-08vKZ7SrggqR26sS2-7QHsVZu5o,"I love this app, and would give it a 5 star review, except I can't get my +dailies to reset after yesterday and that puts a major damper on my quests.",3,0,1.4.3,2018-04-30 19:57:21,,,most_relevant,com.habitrpg.android.habitica +F Moradi,https://lh3.googleusercontent.com/-9WgMxqyt3FI/AAAAAAAAAAI/AAAAAAAAAJE/AAKWJJNqaVvZwOCvgoImCC4EizYSPQuqeg/photo.jpg,Hi I can't see my avatar and related things...😠,3,0,1.4.3,2018-05-13 07:34:09,"Hi Amir, Sorry to hear about the trouble! If you'd like to receive help with any of the issues you mentioned from the support team, please send a bug report using the in-app bug reporting feature. You can find this in Menu>About. Please note you must give the app permission to access the email client on your phone for this to work.",2018-05-17 22:01:13,most_relevant,com.habitrpg.android.habitica +Mirai未来,https://lh3.googleusercontent.com/a-/AOh14GjLGjiJgg9GwG3ET68Y4aZMbg3kMYR5lzRNVaA1-Q,The app keeps freezing on the tasks screen,3,0,1.4.3,2018-04-26 14:20:29,,,most_relevant,com.habitrpg.android.habitica +Silver sky,https://lh3.googleusercontent.com/a-/AOh14GizsJkT-ZB6GlewTzDWZsQJooqGdzEnAguEd1Vaxg,In beta test have a many bug for example when i starts my day in my Hp is lost!!! I die agian and agian.i lost my EXP.I lost my sword.,3,0,1.4.3,2018-09-07 13:48:51,"Hi Silver Sky! Sorry to hear about the confusion. If you'd like to report any specific bugs for us to look into, you can do so via Menu > About >Report a Bug.",2018-09-13 17:41:59,most_relevant,com.habitrpg.android.habitica +Jeremy Vandale,https://lh3.googleusercontent.com/a-/AOh14GjYnaXfKcddVzwOuKd7FNzEGjoDe6-D1CllWeTscw,well it was good until it just kept crashing and I don't know why,3,0,1.4.3,2018-06-14 00:23:34,"Hi Jeremy, sorry to hear about the trouble! If you are unable to report from within the app due to the crash issue, please feel free to send us an email at mobile@habitica.com with any details you can provide so we can look into fixing this.",2018-06-14 17:11:34,most_relevant,com.habitrpg.android.habitica +Janine Avenido,https://lh3.googleusercontent.com/a-/AOh14GjrZny4GITejv8EepBwxjfyFsc0Ks6cYXzKDlSsvg,Too many bugs,3,0,1.4.3,2018-06-23 00:41:24,,,most_relevant,com.habitrpg.android.habitica +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Not available offline. Tsk.,3,1,1.4.3,2018-07-15 13:04:20,,,most_relevant,com.habitrpg.android.habitica +Bilend Mohammed,https://lh3.googleusercontent.com/-ITWHlIxvwYE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM4tEuUgqILA3dl8mwlit5ulejh-g/photo.jpg,"Seems like I really great app, but I just installed it and I couldn't get passed the avatar creation screen :/",3,0,2.5,2020-03-29 20:55:22,Oh no! You probably can't reach the Report-a-bug menu if you can't get past avatar creation. Please let us know if you're still having trouble by sending us a message at mobile@habitica.com and the team will look into it.,2020-04-01 04:26:37,newest,com.habitrpg.android.habitica +Jennifer Coan - Art,https://lh3.googleusercontent.com/a-/AOh14GiSlVVOvIKz-y0XCOcRYsfHod5VCjxKQ9uhik2Q8Q,"My friend loves this app, but its not for me",3,0,,2020-03-26 14:01:21,"Hi Jennifer, thanks for your review! If you'd like to share any further feedback about why Habitica didn't work for you, please feel free to reach out via Menu - About - Send Feedback.",2020-03-26 19:52:19,newest,com.habitrpg.android.habitica +Cambria Rosales,https://lh3.googleusercontent.com/a-/AOh14GiSvMTewE_3eFcf7QwshZipsORrfu8I4FRZym9R5A,I'm constantly finding little glitches in the game that throw off what I am trying to do when I am trying to earn points. Thank goodness for husband and siblings who have played this enough to know how to fix things when they go buggy but I don't appreciate not being able to go to customer service or send a quick email to help them update the system and fix it.,3,3,2.5,2020-03-26 12:10:51,"Hi Cambria, thanks for your review and sorry to hear about these issues. Please let us know if you're still having trouble via Menu - About - Report a Bug and the team will be happy to look into it.",2020-03-26 19:51:35,newest,com.habitrpg.android.habitica +Станислав Капелев,https://lh3.googleusercontent.com/-1fXPX8MpHTs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPBMwrSjoMpV4FgM6DX1EaD3awuSQ/photo.jpg,"I've been using Habitica for a few years now and while I love the idea, from a technical standpoint the mobile app is broken. It feels like something you would have on your phone back when touchscreens were a new thing. The most annoying bugs are: party screen not updating after you accept a quest invitation so you're not sure if you accepted it, spamming buffs sometimes reduces your mana without actually applying the buff and party chat not updating (have to restart the app to see new messages)",3,0,2.5,2020-03-23 10:00:50,"Hi, thank you so much for this thoughtful review. We have a very small team since we don't make money from ads or selling user information, so improvements may take longer than you're used to from other apps. Thanks for your patience.",2020-03-26 19:45:47,newest,com.habitrpg.android.habitica +Gwendolyn Alvinra C.T.,https://lh3.googleusercontent.com/-XJyJ7GACSx4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPFU2G88b2XMrIIJMA0tlW83Cs-kA/photo.jpg,Just downloaded the app better review later on,3,0,2.5,2020-03-23 07:43:46,"Hi Gwendolyn, thanks for your review! If you'd like to share any further feedback, please feel free to reach out via Menu - About - Send Feedback.",2020-03-26 19:44:19,newest,com.habitrpg.android.habitica +J,https://lh3.googleusercontent.com/-muEupaVdtHU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPrq9zinlyWCVLo280f8PGY2RuRLg/photo.jpg,"Interesting concept to improve productivity! Whenever I click on a link and come back to the app, I am unable to view contents in the app.",3,0,2.5,2020-03-20 03:10:11,"Hi J, sorry to hear about this issue. Please let us know if you're still having trouble via Menu - About - Report a Bug and the team will look into it.",2020-03-20 22:40:31,newest,com.habitrpg.android.habitica +Satguru Vashisht,https://lh3.googleusercontent.com/a-/AOh14GjEbugvBQ6LfQID9-SbLCXKNunSv_TJEWhq-fB73zI,Looks promising but I can't create avatar due to this error: path 'profile name' is required.,3,0,2.5,2020-03-19 17:50:44,"Hi Satguru, sorry to hear about this issue. Please let us know if you're still having trouble by sending us a message at mobile@habitica.com and the team will look into it.",2020-03-20 22:39:37,newest,com.habitrpg.android.habitica +Hanifah Muthmainnah,https://lh3.googleusercontent.com/a-/AOh14GhmvF8_HC5kvvjBUS2-nUXLPmfc_H5MOm4QoxP-mg,"Ok I like it, but know what? The experience points keep expanding but not with health. Simultaneously, you will be sent backward everytime you lose your health while to refill health you need to max up the exp point. Please fix this",3,0,2.4.4,2020-03-09 01:38:30,"Hi Hanifah, sorry about the confusion! If you need to refill your health, you can purchase a Health Potion from the Rewards tab for 25 gold.",2020-03-13 18:42:40,newest,com.habitrpg.android.habitica +Mohammad Irfan Izzuddin,https://lh3.googleusercontent.com/a-/AOh14Gha8Y92DJ7T_SMReU3qEt4tbOyvaDdInU59inIhvg,Is there any ways to see your progress in graphic? Like daily task you've done and see it in graphic stats or something? Because i can seems to find one in the apps or did i miss something? I wsnt to know and compare my tasks daily. The UI and everything is good tho except for that graphical stats daily i cant find one here dev,3,0,2.5,2020-03-07 11:45:16,"Hi Mohammad, thanks for your review! We hope to add more in-app stats and info on completion and improvement soon. In the meantime, you may find the Data Display Tool one of our devs created helpful: https://oldgods.net/habitrpg/habitrpg_user_data_display.html",2020-03-13 18:41:09,newest,com.habitrpg.android.habitica +Jenni Kmiotek,https://lh3.googleusercontent.com/a-/AOh14GjTvdJ66UkVr8dpXLb16wL2bv3DN8wEixGJ3VI-,"It's fun, a great concept, but the app itself needs work. It locks up constantly and has to be manually shut down and then re-started, and the reminders basically don't work at all. Honestly I think it would be best to remove the reminder feature for now until it can be fixed, because not having a way to set one at all is better than using the feature and thinking you'll get a needed reminder when you won't because it doesn't actually work.",3,4,2.4.4,2020-02-29 04:44:56,"Hi Jenni, sorry to hear about the trouble. If you'd like to send us more detail to help us investigate these issues, you can send that information directly to the support team via Menu - About - Report a Bug.",2020-03-13 17:53:31,newest,com.habitrpg.android.habitica +Ельвіра Агзамова,https://lh3.googleusercontent.com/-rCRwQBuyaQg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP5vjrtXMRGZESxInuv0kQhyN1WMw/photo.jpg,I like the app and it's a pity that I won't keep on using it because of the absence of monthly overview for dailies which I need most from a habit tracker instead of useless strikes,3,1,2.5,2020-02-28 16:46:42,"Hi Elvy, thanks for your review! We hope to add more in-app stats and info on completion and improvement soon. In the meantime, you may find the Data Display Tool one of our devs created helpful: https://oldgods.net/habitrpg/habitrpg_user_data_display.html",2020-03-13 17:52:44,newest,com.habitrpg.android.habitica +Lizbeth Erdreichstarr,https://lh3.googleusercontent.com/a-/AOh14Gif_Iacwd9gh_umJ8sdMKBqv21hBwpqI2i2jSRt,"Game is great, can give back results where you put in effort. However when I last tried to put in a task everything was empty and I cant seem to log back in.",3,0,2.5,2020-02-26 19:24:10,"Hi Lizbeth, sorry about that, the issue with adding tasks should be fixed in the latest update that was just pushed today. If you're still having trouble, we're happy to investigate. You can send a bug report directly to the dev team via Menu - About - Report a Bug.",2020-02-27 23:56:33,newest,com.habitrpg.android.habitica +Julia Michaely,https://lh3.googleusercontent.com/-oSugbIlOIkc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN4zangUhkm2udHmeozXbh6H6gGoQ/photo.jpg,"The game is very buggy, I just bought a reward, then the app crashed, and the gold I've spent is gone, but I didn't receive the reward. These kind of experiences unfortunately decrease the gaming fun tremendously, and it could be such a good game otherwise!",3,1,2.4.4,2020-02-24 09:11:50,"Hi Julia, thanks for your review and sorry to hear about the issues. You can help us fix bugs by reporting them directly via Menu - About - Report a Bug.",2020-02-28 00:06:19,newest,com.habitrpg.android.habitica +Anthony Parris,https://lh3.googleusercontent.com/a-/AOh14GiPcoUjZB3H43RyVlhBcsytHJsdGv9rVkE4ARfevBE,"Love the idea but the app is so buggy and not too user friendly at points. First off, I can't change my character when creating an account because nothing pops up. It's just missing so I end up with a female characters. I have Galaxys10 and tried reinstalling app but nope, seems to be just a bug. Also, changing outfits just seems terrible to scroll through (the not user friendly part) The Good Idea is amazing! I really want this app to improve so I can incorporate this into my daily life.",3,16,2.4.4,2020-02-21 13:58:33,"Hi Anthony! Sorry about that, the issue with the character customization screen should be fixed in the latest update (2.5). If you're still having trouble, we're happy to investigate. You can send a bug report directly to the dev team via Menu - About - Report a Bug.",2020-02-27 23:53:03,newest,com.habitrpg.android.habitica +Ritesh Sonavane,https://lh3.googleusercontent.com/a-/AOh14GigcDptBI50E1CfVlE44q06sDdF_MVDvPxfCN3HtQ,"This is a good app to motivate, but wished there would be analytics to show progress like graphs, etc.",3,0,2.4.4,2020-02-20 10:49:41,"Hi Ritesh, thanks for your review! We hope to add more in-app stats and info on completion and improvement soon. In the meantime, you may find the Data Display Tool one of our devs created helpful: https://oldgods.net/habitrpg/habitrpg_user_data_display.html",2020-02-21 00:19:15,newest,com.habitrpg.android.habitica +Robert Frobisher,https://lh3.googleusercontent.com/a-/AOh14Gh7anOaL0wooyPjaWVuq0KmKjWQufs5-jQv7oxWPg,Looks good but lack of dark mode kills it for my phone. I can't stand any app that's mostly bright b white. Went with LifeRPG instead.,3,0,2.4.3,2020-02-07 09:18:52,"Hello Robert, thank you for your thoughtful review. We are working to add dark mode for Android as soon as possible. Thanks for giving us a try.",2020-02-13 20:30:00,newest,com.habitrpg.android.habitica +Cats Catz,https://lh3.googleusercontent.com/-lKgUuLu90AQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPjTONGQMK5kBxRuV-QTBDy6spu7A/photo.jpg,"Love the app. Love the rewards. But, I wish that it showed you past dates and all you accomplished on days previous, and I wish that the coloring of tasks wasn't so complicated when getting close to red or blue or whatever. Also, certain things are hard to navigate... but overall, I absolutely love this app. Use it every day. Not so much for challenges or battles, but for habit making and to do's.",3,0,,2020-01-30 04:11:38,"Hi Cats, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2020-02-06 23:52:27,newest,com.habitrpg.android.habitica +Rijad Čičeklić,https://lh3.googleusercontent.com/-KWoQhzkSMKc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNzNUPMgiY5Ici_R0o7dTIkfcxiKg/photo.jpg,I really love the idea this app has but it has some bugs. The first 2 pages are blank and when i had to make my character everything was blank too. After updating the app it was still the same. (Im using a samsung s8 if thats important) Hope you guys fix it cuz i'd love to use the app.,3,8,2.4.2,2020-01-26 08:02:13,"Hi Rijad, sorry to hear about this issue. Please try updating to the newest version, and let us know if you're still having trouble via mobile@habitica.com and the team will look into it.",2020-02-06 23:49:05,newest,com.habitrpg.android.habitica +Maaike Broekhuizen,https://lh3.googleusercontent.com/a-/AOh14GjmjqjxRRuG8orS71gmdOmzFfsp8wy-w9iU8AdlQg,"The concept is inventive, but the execution simply makes this app less than enticing to use.",3,0,2.4,2020-01-16 07:55:26,"Hi Maaike, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2020-01-24 21:32:48,newest,com.habitrpg.android.habitica +Lilithmae Orkidhea,https://lh3.googleusercontent.com/--qvSS5_c6W0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPQDbY3wK6hSIMzDMg9eZX5OmI0Hw/photo.jpg,"App has been useful in helping me keep track of tasks and all, but lately the alarms I set on my dailies haven't been going off at all. Which is... unfortunate, because they're all to remind me to eat...",3,1,2.4,2020-01-12 20:07:14,"Hi Lilithmae, sorry to hear about this issue. Please let us know if you're still having trouble via Menu - About - Report a Bug and the team will look into it",2020-01-14 18:20:22,newest,com.habitrpg.android.habitica +Maa Rouf,https://lh3.googleusercontent.com/a-/AOh14Gh81fS_DRJssxwvJ_8iFSkuo7KU7J2GLcz0R8_B,"First two slides doesn't load, the character in character creation & menu items are invisible, pls fix.",3,0,2.4,2020-01-02 10:55:51,"Hi Maa, sorry to hear about this issue. Please let us know if you're still having trouble via Menu - About - Report a Bug and the team will look into it.",2020-01-04 00:59:23,newest,com.habitrpg.android.habitica +Maria Adil,https://lh3.googleusercontent.com/a-/AOh14GiFvj0FlFbFuMQ9PsqoxyD07iqpVMNTEZ4MEeVO,It doesn't work offline and when I'm actually online I need also a vpn to use it :-(,3,0,2.3,2019-12-19 04:27:06,,,newest,com.habitrpg.android.habitica +Ana Azziul,https://lh3.googleusercontent.com/a-/AOh14GiihuQlKMzgl9625OFSSUDL34b5XfY6O7_je9j5fg,The to do list should allow prioritizing tasks by importance and urgency. It would be great if you could add that.,3,0,2.3,2019-12-16 08:04:19,"Hi Ana, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-12-19 18:27:31,newest,com.habitrpg.android.habitica +Allyssa Ermoso,https://lh3.googleusercontent.com/a-/AOh14GgWR9xfeOUquhDj7ZVQm9a5BIA7nSUc-q48v4b-EQ,"Had a great experience when I was using it thru browser but when i installed it on my phone, it wouldnt record all my progress and tasks on my phone application. Even with the same account. Please work it out, I would love to keep using thru my phone.",3,0,2.3,2019-12-13 23:43:06,"Hi Allyssa, sorry to hear about this issue with task recording. Please let us know if you're still having trouble via Menu - About - Report a Bug. A direct report will provide details that will help the team fix the problem.",2019-12-19 18:27:00,newest,com.habitrpg.android.habitica +Lucinda Sanchez,https://lh3.googleusercontent.com/a-/AOh14Giwg8KuSvzrVmW3Rnp1bFdIon-5PZtHzqYnISmWGA,"I really like this, however I'm not able to stay with it for long periods of time. This one and others I've tried and I just can't stay motivated....",3,0,,2019-12-09 05:15:39,"Hi Lucinda, thanks for your review! We'll keep your feedback in mind as we continue to work to improve Habitica. You can contact us directly by going to Menu - About - Send Feedback if you'd like to give us additional details about what you think might improve long term motivation.",2019-12-12 19:25:43,newest,com.habitrpg.android.habitica +Ricardo Servilha,https://lh3.googleusercontent.com/a-/AOh14Gil9HXSeGWCztsAP_gEeFtUBmn7eSEGQGVAD_JhYQ,"I liked, but in my cellphone had some bugs (galaxy A8+). I think if this app had a function to sync with the phone calendar (google calendar or samsung calendar) it would be much better",3,0,,2019-12-09 02:21:13,"Hi Ricardo, thanks for your review! We'll keep your feedback in mind as we continue to work to improve Habitica. You can contact us directly by going to Menu - About - Send Feedback if you'd like to give us additional details.",2019-12-12 19:25:16,newest,com.habitrpg.android.habitica +Jade The Demon,https://lh3.googleusercontent.com/a-/AOh14GiraGVSaE7BfoLYLlqHJXYI29Z6cx92opRDq_hMvw,It seems so cool and I wanted to use it as soon as possible but it wont even let me log in. It takes 1second to load and then nothing happens,3,0,2.3,2019-12-06 11:55:32,"Hi Jade, sorry to hear about this issue. Please let us know if you're still having trouble by sending us a message at mobile@habitica.com and the team will look into it.",2019-12-12 19:22:45,newest,com.habitrpg.android.habitica +Den Lieu,https://lh3.googleusercontent.com/-7PwVofDJFrc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNa1KJt0BcdWsGASKXuW8tDX85uXw/photo.jpg,"Cute, but seems like it would benefit from a way to set eg monthly or annual reminders for bills and birthdays without going to a Google script.",3,0,2.3,2019-12-02 04:39:25,"Hi Den, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-12-06 01:15:32,newest,com.habitrpg.android.habitica +Collin King,https://lh3.googleusercontent.com/a-/AOh14GhV40SffbKFMj0C7xWNa8oPcABMJ1N3QhVog22zjg,"It's a cool app and it kinda helps me but you are forced to be a warrior. It says you can change your class in the settings, but there is no option.",3,0,2.3,2019-11-28 19:31:21,"Hi Collin, thanks for your review. Class changes are available after level 10.",2019-12-06 01:14:06,newest,com.habitrpg.android.habitica +Alvin Yeung,https://lh3.googleusercontent.com/-Fs9OFynoO3g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOZFGcBMnaxhYeZ-fAEWdxG4NNHug/photo.jpg,"Friend was permabanned for calling another friend a ""mad c**t*"" in party chat, but here in Australia that's a compliment... TL;DR over-sensitive language filter, should allow party chat to be unfiltered.",3,0,2.3,2019-11-27 14:17:26,"Hi Alvin, our Terms of Service state that slurs are forbidden in any chat space in Habitica. We do take context into account when people take the time to reach out to us. Your friend may email admin@habitica.com if they'd like for the moderation team to consider reinstating their account.",2019-12-06 01:12:25,newest,com.habitrpg.android.habitica +Gabriel de Oliveira Ramos,https://lh3.googleusercontent.com/a-/AOh14GjVgHS2cXpTJ0cjTn6GntbpNsSqCgTk48qRnSu1NEA,"It needs a better way to Schedule the to do list. An easy way to schedule your day, week and even month. It needs a calendar to see things with a bird eye view. I like the game thing, but it needs more functions and to be more practical.",3,0,1.2,2019-11-19 23:28:34,"Hi Gabriel, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-11-21 18:27:26,newest,com.habitrpg.android.habitica +Esen Vezir,https://lh3.googleusercontent.com/a-/AOh14GgSXF1ZUWO7SrpM0r6CvlmCfqcuFFJwHz64qM7e5w,App is amazing but ios version is so much better than android version. It has many other settings while this one lacks them. i hope this gets fixed so i can change my rate to 5 stars.,3,0,2.3,2019-11-18 18:23:26,"Hi Michael, thanks for your review! We're working hard towards feature parity on all platforms. Can you let us know which features you're missing? You can do so via Menu - About - Report a Bug.",2019-11-21 18:25:05,newest,com.habitrpg.android.habitica +Anj0kaid0,https://lh3.googleusercontent.com/a-/AOh14Gi4ibjmTjXPWrkp32i4JbAbTxG3hJ9xd1phdpL8,"Não consigo mudar a linguagem, já fui nas opções e tudo mas sempre atualiza e fica no inglês.",3,0,2.3,2019-11-18 04:31:27,"Hi there, you should be able to change your Language in Settings once you complete the tutorial. Not all translations are complete, as our translations are done by volunteers. If you'd like to help, you can learn more here: https://habitica.fandom.com/wiki/Guidance_for_Linguists",2019-11-21 18:07:47,newest,com.habitrpg.android.habitica +Shaderite Matobit,https://lh3.googleusercontent.com/a-/AOh14GgZm97oBzswSY1CU1uX9_0gAsAhOYx8s5mG2GvHqw,"Okay But I wish it had options to increase exp and stays for example when you read a book gain x intuition when you run x times you gain x stamina, etc etc and get rewards and level that way. Gives more motivation for doing those things.",3,0,,2019-11-17 17:20:29,"Hi Shaderite, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-11-18 17:31:26,newest,com.habitrpg.android.habitica +Lorena Abreu Järås,https://lh3.googleusercontent.com/-PI-AKVuFyaA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM1oaA5kQE4qM1qzClpNiNGp-Q9Ww/photo.jpg,"Disappointed. Had the app installed for a few weeks only, I was enjoying it and improving my life and suddenly it stopped working. I keep getting notifications saying that there's no connection, I can't log anything, and once I decided to reinstall again and again, I can't even log in anymore. The screen won't load and it never goes past the login/register screen.",3,17,2.3,2019-11-16 10:49:22,"Hi Lorena, you may have run into some server issues we had at the time you posted- let us know if you're still having trouble via Menu- About -Report a Bug and the team will look into it.",2019-11-18 17:21:57,newest,com.habitrpg.android.habitica +Mark S,https://lh3.googleusercontent.com/a-/AOh14GhguMf82FBqbKz3A9_YeQLpzREL5KUM9QlKBxrDmg,All my tasks are gone and unable to load anything.,3,0,2.3,2019-11-15 22:54:02,"Hi Mark, you may have run into some server issues we had at the time you posted- let us know if you're still having trouble via Menu- About -Report a Bug and the team will look into it.",2019-11-18 17:12:40,newest,com.habitrpg.android.habitica +Jose Gonzalez,https://lh3.googleusercontent.com/a-/AOh14GhlM0JG4St9buOCX3m3zs23eAEAvRk3yRpQACmzBlI,The concept is great and it's a fun way to keep track of your habits. My only gripes are: -I wish there was a better way to see habit streaks. The number is cool but if we could see it on a calendar like view I think that would be helpful. You could miss a day and if streaks aren't set to reset the number remains unchanged. -Better explanation of the colors on streaks. I still don't know what they mean (going to Google it). -You can't use rogue skills because you get a blue screen.,3,6,2.2.2,2019-11-10 19:28:05,"Hi Jose, Thank you so much for this thoughtful review. We are working to fix the skills issue, so keep your eye out for a new update soon. We'll keep your other feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-11-15 00:22:14,newest,com.habitrpg.android.habitica +Stanislav Larsen,https://lh3.googleusercontent.com/a-/AOh14GjpO14yzRNcsrMOiplT_n2ScmTE_F-YmQ4RhB9rPwM,"Ребят, конечно круто что вы сделали это в виде игры. Только вот, вы бы могли доработать такие вещи: - сбивается сортировка задач после выхода из приложения. Я хочу чтобы у меня постоянно была сортировка по не выполненим ежедневным задачам. - я закрыла прогу на вкладке ""ежедневные задачи"" . Хочу чтобы при повторном открытии она была также на этой вкладке.",3,0,2.2.2,2019-11-09 15:51:30,"Hi Stanislav, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-11-15 00:21:29,newest,com.habitrpg.android.habitica +Micah Orozco,https://lh3.googleusercontent.com/a-/AOh14GjsiDJC5vm3LkzaxBPat6DLhg4ShwTG7sTyJ5RL5g,"Neat concept, just not for me.",3,0,,2019-11-03 10:56:51,"Hi Micah, thanks so much for this thoughtful review. We value your feedback as we improve Habitica.",2019-11-05 20:03:16,newest,com.habitrpg.android.habitica +Krishana Khatri,https://lh3.googleusercontent.com/a-/AOh14Gjas8DpJcDPLVIjglPkTTYDeuLC-IlBnY421rXnMw,Why it is not giving me notifications for dailies?,3,0,2.2.2,2019-11-02 16:48:44,"Hi Krishana, sorry to hear about this issue. Please let us know if you're still having trouble via Menu - About - Report a Bug. A direct report will provide details that will help the team fix the issue.",2019-11-05 20:01:19,newest,com.habitrpg.android.habitica +Earl Sweatpants,https://lh3.googleusercontent.com/-dDMAtZY6onI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMkOzuF9VyesPZsFWeS9hyWGSqq5g/photo.jpg,Fantastic idea!!! I've actively been seeking something just like this for a long time. But the app itself is super glitchy. Most things wont load and everything keeps resetting. It might be my connection or my phone. I'm not sure. Hoping I can figure it out cause I love this!,3,1,2.2.2,2019-11-01 17:40:19,"Hi Earl, sorry to hear about these issues. Please let us know if you're still having trouble via Menu - About - Report a Bug. A direct report will provide details that will help the team fix the issue.",2019-11-05 20:00:00,newest,com.habitrpg.android.habitica +Sarthak Saini,https://lh3.googleusercontent.com/-ZpVzHzBauJs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP-WCk1duv1RSXCFF_OAKQCTzl3wQ/photo.jpg,######please make offline version because most of studious people cannot afford online apps so if you want good ratting please make part 2 offline,3,0,,2019-10-28 16:51:05,,,newest,com.habitrpg.android.habitica +teeth,https://lh3.googleusercontent.com/a-/AOh14GihQGscAFgaMMVhQITmgEMjX4VBcL53WM0LEKqAAA,I like this app but this is the buggiest app i ever had i been using this for years and still havent fix them,3,1,,2019-10-26 08:17:04,"Hi Boi, thanks for your review! You can help us fix bugs by reporting them directly via Menu - About - Report a Bug.",2019-11-05 19:52:48,newest,com.habitrpg.android.habitica +magicianNevar,https://lh3.googleusercontent.com/a-/AOh14GgXZIC7qVXBpGmxJENWHDBdBvArrwihOm_6bhMRiQ,"Great idea, it needs some improvements imo. Edit: after playing for a while i noticed some things that definitely need improvement. Faster loading times when changing sections or when receiving items, you shouldn't have to refresh to see them. That also applies when feeding pets where i dont see a progress in the bar unless i refresh. Etc.",3,5,2.2,2019-10-22 13:53:31,"Hi magicianNevar, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-09-26 21:29:19,newest,com.habitrpg.android.habitica +Donovan DeLaughter,https://lh3.googleusercontent.com/a-/AOh14Gj_95RkG5TF-_WkL12YfhBU_BgdD2-NyMpKM_CQgw,"Enjoying the app so far, but the widgets are quite limiting. You cannot use check lists in the widgets, and sometimes they update rather weirdly. I have also had UI bugs throughout, but they haven't affected me too much. Overall good, but just needs some tweaking to make it more solid. That's not to say the service is bad. Just the mobile app.",3,0,2.1.1,2019-10-16 19:01:01,"Hi Donovan, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-10-17 21:29:39,newest,com.habitrpg.android.habitica +Brandon Patterson,https://lh3.googleusercontent.com/a-/AOh14GiR-VWdRjE7ea9awmI2auAzA8powb4PtRemkK9EnQ,Love this app. Its helped me with my motivation and procrastinating. I've been more motivated since using it. But I'm having a very frustrating issue that is driving my OCD insane. I try to move a task in my list... Only for it to disappear or move itself somewhere I didn't tell it to go. I try to keep my list in a certain order of how i should get things done and this is not helping me at all.,3,0,2.1.1,2019-10-15 13:16:33,"Hi Brandon, sorry to hear about this issue. Please try updating to the newest version, and let us know if you're still having trouble via Menu - About - Report a Bug and the team will look into it.",2019-10-17 21:28:14,newest,com.habitrpg.android.habitica +Tayriel,https://lh3.googleusercontent.com/a-/AOh14GiTeSdp_97hxpisXlXfi3ev3L54t1oPoi98D8C8cQ,I love it. But the app keeps crashing when I try to invite friends to party and I can't buy gems.,3,0,2.1.1,2019-10-14 00:35:12,"Hi Tayriel, sorry to hear about these issues. Please try updating to the newest version, and let us know if you're still having trouble via Menu - About - Report a Bug and the team will look into it.",2019-10-17 21:27:20,newest,com.habitrpg.android.habitica +hy a,https://lh3.googleusercontent.com/a-/AOh14GhfEPxPtAYX0WbwLjqKEE124ED55HG53_HYyJyHNg,Force closes when trying to create challenge,3,0,2.1.1,2019-10-12 22:03:27,"Hello Hy, sorry to hear about this issue. Please try updating to the newest version, and let us know if you're still having trouble via Menu - About - Report a Bug and the team will look into it.",2019-10-17 21:22:16,newest,com.habitrpg.android.habitica +Shifaza Chicky,https://lh3.googleusercontent.com/a-/AOh14Gi2FdqSwetRcAIEmQ6QoBWLaUmvRyd2BrqT1aLAUkY,"I've been actively using this and I love the concept. App version could really use a new UI. Dark mode would be appreciated, and maybe letting users adjust Font or size of boxes. (Feels too large right now. It would easily hold more details, but space is lost to a big box)",3,0,2.1.1,2019-10-10 05:35:25,"Hi Shifaza, thank you so much for this thoughtful review. We do have a dark mode on the way, so keep an eye out for future updates. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-10-11 01:00:47,newest,com.habitrpg.android.habitica +maryam gazichi,https://lh3.googleusercontent.com/a-/AOh14Ggds9Do1UETIf5xEnM8Ih9tZVa9rgL2z2BDGm5lPw,It miss my data after updating.i can't use it easily.,3,2,2.1.1,2019-10-08 07:53:41,"Hi maryam, sorry to hear about the trouble. If you'd like to send us more detail to help us investigate these issues, you can send that information directly to the support team via Menu - About - Report a Bug.",2019-10-11 00:53:58,newest,com.habitrpg.android.habitica +Ada,https://lh3.googleusercontent.com/a-/AOh14GjPPHul_MMUHBvfNPRVHEFOn9dxPrGTYDFh0NmAYw,"Decent app. Fun concept. Biggest issue right now is that some of the dailies that are supposed to be once per week are still showing up as an every-day task, which is very annoying. Sometimes the dailies will cross over into the to-do list for an hour or so at a time, too.",3,1,2.1.1,2019-10-05 15:37:30,"Hi Ada, thanks for your review and sorry to hear about the trouble. You can help us fix bugs by reporting them directly via Menu - About - Report a Bug.",2019-10-07 19:01:01,newest,com.habitrpg.android.habitica +Ali Moharam,https://lh3.googleusercontent.com/-Hg6r-8IG610/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOKcE3n_UmavUbla7RgX_e2Yeu3lw/photo.jpg,The app is great except for being internet dependant and lacking an undo button or a button lock for unintended log entries I know there is an edit your character section but there is no record of past entries to use as reference,3,0,2.1.1,2019-10-04 14:20:01,"Hi Ali, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-10-07 18:59:58,newest,com.habitrpg.android.habitica +Crazy Toothy,https://lh3.googleusercontent.com/a-/AOh14GiQwsNnuzIquv6GqB3a777hmsEbqL_vWi70zPGD,Its a very good game and I like it but to buy most things in the game you have to get gems or a subscription which you both to pay for. Also I don't seem to get anything when I purchase the enchanted Armoire.,3,1,2.1.1,2019-10-02 15:45:41,"Hi Crazy Toothy, we're working to improve notifications to let you know what you received from the armoire. Thank you for your feedback, If you'd like to send more details you can do so by going to Menu - About - Send Feedback.",2019-10-07 18:59:05,newest,com.habitrpg.android.habitica +Clayton Robertson,https://lh3.googleusercontent.com/-fB9MAkp0gbk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOugnOWmYoixrKMh7dddpQ-oWvIpg/photo.jpg,"It is a great idea, don't get me wrong, but why the need for a chat room?",3,0,,2019-09-26 23:00:12,"Hi Clayton, thanks for your review! We provide chat spaces so players can interact over common interests and goals. Many folks say it's very helpful for their motivation.",2019-10-07 18:50:29,newest,com.habitrpg.android.habitica +David Sikes,https://lh3.googleusercontent.com/a-/AOh14GhKa4hMTmyo7o2esbUWkR5r-I4CQxKh1tr0HA3LfeU,"Over the years the platform has become stagnant. I was a huge proponent of Habitica, using it for a few years and even paying for a subscription to support development; but development beyond bug fixes never happened. It's a good tool with a potent gamification component, but they've failed to continue to make it engaging and interesting—and certainly not worth paying to support.",3,0,1.3.3,2019-09-24 10:23:11,"Hi David, thank you so much for this thoughtful review. We have a very small team since we don't make money from ads or selling user information, so improvements may take longer than you're used to from other apps. Thanks for your patience.",2019-09-26 21:26:37,newest,com.habitrpg.android.habitica +explored explorer,https://lh3.googleusercontent.com/-uTcMMgbPeF4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNAgD8Gn6TsIn_k2CJSr8H0N36MGg/photo.jpg,miss the dark theme,3,0,2.1,2019-09-16 19:14:12,Hi explored! A dark mode is on the way in a near-future update.,2019-09-26 21:22:33,newest,com.habitrpg.android.habitica +Hossein Malakalaie,https://lh3.googleusercontent.com/a-/AOh14GhNbwRa3JGGgIMnikPMWcyHdsjBkk_Pd5hz8Q6nYA,"Gamification is good designed but the app works kind of laggy, 5 star when redesigned",3,0,2.0.6,2019-09-08 19:11:51,Thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.,2019-09-12 19:27:40,newest,com.habitrpg.android.habitica +Thomas Pardey,https://lh3.googleusercontent.com/a-/AOh14Gh8JWYypFQkbW0afijHdb2mM_jVOYEWJ7hExGsfkQ,The app is what you expect.,3,0,2.0.6,2019-09-06 19:39:59,"Hi Thomas, thank you so much for this thoughtful review. If you'd like to send us more details, you can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-09-12 19:23:23,newest,com.habitrpg.android.habitica +Lauren Joanna,https://lh3.googleusercontent.com/a-/AOh14GgBJVQ6APGwAnP8eSxASiXDiAwpkDw-zNPQ35l7LA,Having some equipment related bugs,3,0,2.0.4,2019-08-31 21:01:54,"Hi Lauren, sorry to hear about the trouble! The team is aware of this issue, and it should be solved in the latest update. Let us know if you're still having this issue by contacting us at Menu - About - Report a Bug and we can look into it.",2019-09-05 18:30:00,newest,com.habitrpg.android.habitica +Segundo Constantino,https://lh3.googleusercontent.com/a-/AOh14GgQfTr-AX6nFsi9ZTo48NGIXO9J__mg7YTZvDc0YQ,"Parece una gran app, pero no se me actualiza el idioma a español, a pesar de que ya lo configure para que asi sea. Una lastima",3,0,2.0.4,2019-08-29 23:47:38,"Hi Segundo, you should be able to change your Language in Settings once you complete the tutorial. Not all translations are complete, as our translations are done by volunteers. If you'd like to help, you can learn more here: https://habitica.fandom.com/wiki/Guidance_for_Linguists",2019-09-05 18:25:40,newest,com.habitrpg.android.habitica +Christiaan Bloemendaal,https://lh3.googleusercontent.com/a-/AOh14GjMakZWhi4U4GMqiX0vDJzuQXKy_nJO5r3hxSYWrA,"Nice and useful app. Feels quite buggy though, and the party chat goes the wrong way if you're used to any other chat app.",3,0,2.0.3,2019-08-28 16:29:26,"Hi Christiaan, thanks for your review! You can help us fix bugs by reporting them directly via Menu - About - Report a Bug.",2019-08-29 18:59:13,newest,com.habitrpg.android.habitica +Zaryab Waseem,https://lh3.googleusercontent.com/a-/AOh14GiFZFqgrB9seaNvwFF7kGHi95cvU6MPxvohBy8vnA,Too complex as a game! The time I spent tried to understanding how it work could have been spent actually working!,3,0,,2019-08-25 08:44:35,Hi Zaryab! Thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.,2019-08-29 18:55:58,newest,com.habitrpg.android.habitica +Kate Cousino,https://lh3.googleusercontent.com/a-/AOh14Gg1D1BUjjo1wVPU3a8JFM-5fn-cYZMfkECMl4RyFao,"I love Habitica and I like the UI of the updated app, but I find it frustrating that the app doesn't show all the content that the website does. Normally this is just a small annoyance--but now, after paying for a Group plan for my family, I'm discovering that my kids can't access the group tasks list via the app! Which makes the entire thing a waste of money since the whole point was to be able to create tasks for family chores. Please tell me a fix is in the works!",3,5,2.0.3,2019-08-09 14:22:52,"Hi Kate, Thank you so much for this thoughtful review. Our small team is working hard to bring feature parity to all our platforms- including with our Group Plans. You can send the mobile team feedback directly by going to Menu - About - Send Feedback if you have specific thoughts you'd like to share.",2019-08-13 23:09:26,newest,com.habitrpg.android.habitica +Clare G,https://lh3.googleusercontent.com/-UBPXblK3hng/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNftIm520dgLvfwZR1CLcJKJQY8PA/photo.jpg,"I've just installed this as and won't be using it due to it requiring you to create an account and login. It sounds like a fantastic app, but I'd much rather my data was stored locally where only I have access to it.",3,2,2.0.2,2019-08-06 14:49:31,,,newest,com.habitrpg.android.habitica +Eugene Bos,https://lh3.googleusercontent.com/a-/AOh14GgR258KF_wMYyjE-pNfk1cSTsYwXByGDv5SQgCF0CQ,"useless, as you can not group habits, but gamifying idea is good, maybe they will fix it",3,0,2.0.2,2019-08-02 09:47:25,Thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team more details about what you'd like to see by going to Menu - About - Send Feedback.,2019-08-01 18:42:23,newest,com.habitrpg.android.habitica +Dejan Perović,https://lh3.googleusercontent.com/a-/AOh14GgqT03rGYB4VzCff2Bx7nI8YmC4-ray0Tu2ox-GGw,Good idea but this isn't for me. I am much more for classic habit apps.,3,0,2.0.2,2019-07-24 23:31:46,"Hi there, once you complete the tutorial you can customize the appearance of your avatar via Menu - Inventory - Customize Avatar.",2019-07-23 16:36:24,newest,com.habitrpg.android.habitica +Redouane Khaldi,https://lh3.googleusercontent.com/a-/AOh14GiYUejP8nl2run1m8gaqj7qmjMiWVs9NODnTfW2ZQ,I really enjoyed the experience of using this app i like it but it doesn't work offline so I can't use it properly so please make it offline or at least se fundamental features.,3,0,,2019-07-24 11:59:57,,,newest,com.habitrpg.android.habitica +Chris Murphy,https://lh3.googleusercontent.com/-WlUcumdRLdQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPodcWvO9coLMmuXMpbSa1_fJelMA/photo.jpg,I really enjoy this app up until about an hour ago. all of a sudden during a quest my party disappeared and my friends messaged me to ask what happened. I have also tried to join a help guild to ask but the app wont let me join a guild or post in chat at all now. please fix this bug so me and my friends can enjoy the app.,3,0,2.0.2,2019-07-17 00:18:20,"Hi Chris! We experienced a partial outage that affected parties. The owner of your quest should have received a new copy of the quest, and your party should be back! If you are experiencing any lingering issues, please email admin@habitica.com and we'll fix you up as soon as we can!",2019-07-23 16:39:59,newest,com.habitrpg.android.habitica +Paul Barnes,https://lh3.googleusercontent.com/a-/AOh14GhdyJgtgDBxAot2Vpv1o1f0Ed2eklMlsY7mJLItBQ,I'd love to see class selection. as an option when you start the game. I was forced to be warrior without an option to change. I even went to setting and nothing there to change it either...,3,0,2.0.2,2019-07-16 10:54:36,"Hi Paul, all players are Warriors until level 10. Once you reach level 10 you will be able to choose a class, and if you wish to change later you can find that option under Settings > User > Change Class.",2019-07-23 16:38:15,newest,com.habitrpg.android.habitica +Mazey,https://lh3.googleusercontent.com/a-/AOh14GgXVQgtEoX7YHjdwnRPcNC_Xzty5NkeIRcC83TdZA,"The app is pretty good, but I wish there was a way to put weekly tasks in. I tried setting up a task that would go off weekly but I still lost health for not completing it daily. It would be nice to be able to put repeating tasks on the app that you don't do every day, but repeat on a schedule, like laundry every Sunday or something.",3,5,2.0.2,2019-07-15 14:10:54,"Hi Mazey, thanks for your review! You can set a task to repeat each week (or month, or other intervals) by opening it in edit mode. Tap the Daily and hold to open these options.",2019-07-23 16:37:11,newest,com.habitrpg.android.habitica +Maria Ioannou,https://lh3.googleusercontent.com/-IQgW0qHbA-0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPYMm5VI0ATM3kKoERDl7nzOe6btg/photo.jpg,I love this app but the latest update is buggy and does not record when I check off tasks. Please fix!,3,0,2.0.1,2019-07-05 11:02:17,"Hi Maria, sorry to hear about this issue. Please try updating to the newest version, and let us know if you're still having trouble via Menu - About - Report a Bug and the team will look into it.",2019-07-23 16:28:01,newest,com.habitrpg.android.habitica +Louise,https://lh3.googleusercontent.com/a-/AOh14GganpalwJrops6CisKX-NpsSqd2wjli4GsH5fL85jQ,a great app! has some kinks that need ironing and I'll update when they're done. But I love this app and use it daily - as intended 😊,3,0,2.0,2019-07-05 01:15:51,Hi Louise! Thanks for your thoughtful review! You can help us fix bugs by reporting them directly via Menu - About - Report a Bug.,2019-07-23 16:27:44,newest,com.habitrpg.android.habitica +Joanne Hohenadel,https://lh3.googleusercontent.com/-VUK8pxfiEoY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNZy1GX8_PJjodXwD-_BIZZ09snYg/photo.jpg,"This app has done a good job of helping me keep track of tasks. Dailies, Habits, and the To Do with checklists have been wonderful. I just don't like the new redesign. Nothing looks to be where it should be to me. It now feels bulky and clunky, and I feel like it will make me use it a lot less because it is now uncomfortable to look at.",3,4,2.0.1,2019-07-03 00:14:55,"Hi Joanne, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-07-22 23:55:29,newest,com.habitrpg.android.habitica +Tsvetan Ovedenski,https://lh3.googleusercontent.com/a-/AOh14GiDt4C_676uLtic54RFBX3JVZoZz5_ixNt4nOTq7A,"Idea is cool (not for everyone); I'm removing 1 star for not having any charts for the habits themselves; and 1 star for the funky behavior of tasks screen - I'd edit some task from Dailies and after it's saved, I'm placed back to Habits, for example.",3,0,,2019-07-01 17:29:07,"Hi Tsvetan, thanks for your review! We'll keep your feedback in mind as we continue to work to improve Habitica. You can contact us directly by going to Menu - About - Send Feedback if you'd like to give us additional details.",2019-07-22 23:53:27,newest,com.habitrpg.android.habitica +priyansh Takzariya,https://lh3.googleusercontent.com/-c1SxSUuCIrI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMBbVyEMmhwhWLuaotTZITPTVyWeA/photo.jpg,best,3,0,,2019-06-29 14:34:38,,,newest,com.habitrpg.android.habitica +Beatriz Gálvez,https://lh3.googleusercontent.com/a-/AOh14Gg1tar9HnbjJiwKdRiIvuTwakzGQJVL8Lso6l3S,"Finally is working, but I had to erase the data on my cellphone =/ Later I'm going to check what happened with the avatar. Until then the rating gonna stay still",3,6,2.0,2019-06-23 16:10:36,"Hi Beatriz, sorry to hear about the trouble. If you'd like to send us more detail to help us investigate these issues, you can send that information directly to the support team via Menu - About - Report a Bug.",2019-06-25 18:44:56,newest,com.habitrpg.android.habitica +Shashank Tyagi,https://lh3.googleusercontent.com/a-/AOh14GgZsIaR1MrOf3f-rMWdoIWPL9Jl7kG0ki6UZPe-,why doesn't adjusting habit streak reflect in health and experience (say if i accidentally clicked + or - for a habit)?,3,0,2.0,2019-06-21 17:33:08,"Hi Shashank, thanks for your review, and sorry to hear about what may be a bug. You can contact us directly by going to Menu - About - Report a Bug with more details if you'd like for us to look into this for you.",2019-06-07 20:30:49,newest,com.habitrpg.android.habitica +Đặng Trang,https://lh3.googleusercontent.com/a-/AOh14Gixy65RQwKE0kVNC1Z4lAo1DIScIxn9pEe3ehpoJg,"Bug: message cannot be displayed on app! Android 9, nokia 6.1 plus",3,1,1.9.3,2019-06-20 08:22:20,"Hi Đặng, thanks for your review and sorry to hear about the trouble. If you'd like to send us more detail to help us investigate this issue, you can send that information directly to the support team via Menu - About - Report a Bug.",2019-06-25 18:42:42,newest,com.habitrpg.android.habitica +zaito k,https://lh3.googleusercontent.com/a-/AOh14Gj8Givf9L6bvWtH6BYhSiFoRZCT-pNUYJCg9-miCg,idk if its my phone (android) but i dont receive push notifications nor reminder for this app :/,3,0,1.9.3,2019-06-18 21:11:32,"Hi Zaito, thanks for your review and sorry to hear about the trouble. If you'd like to send us more detail to help us investigate this issue, you can send that information directly to the support team via Menu - About - Report a Bug.",2019-06-25 18:41:57,newest,com.habitrpg.android.habitica +Juan Valencia,https://lh3.googleusercontent.com/a-/AOh14GgLdd6yCvwDHF_hdTwXDZHO7pGGt-Zjh_G8DBEDlQ,Interesting and promising but not refined or intuitive. Chat function is one of the worst I've ever encountered.,3,1,1.9.3,2019-06-16 20:03:00,"Hi Juan, thanks for your review! We'll keep your feedback in mind as we continue to work to improve Habitica. You can contact us directly by going to Menu - About - Send Feedback if you'd like to give us additional details.",2019-06-25 18:38:29,newest,com.habitrpg.android.habitica +Gavin Elesban Rodrigues,https://lh3.googleusercontent.com/-b4CaAWMvYnA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMKibdEDEWJUz2IzYb2CWAroZAtaA/photo.jpg,"Love the app, but I have a question. In the options under daily tasks, we can choose between Daily or weekly, What's the difference?",3,0,,2019-06-16 17:38:11,"Hi Gavin, thanks for your review. A Daily task will repeat each day, while a weekly one will repeat on the days of the week you select when you open the task in edit mode. We hope that helps!",2019-06-25 18:38:20,newest,com.habitrpg.android.habitica +Reginald Uy,https://lh3.googleusercontent.com/a-/AOh14GgYUZav24tnLYQYh64QZSll0rmWWpMRm7-IOovljQ,Missing a few good features and isn't always the most stable of apps,3,0,1.9.3,2019-06-08 23:10:02,"Hi Reginald, thanks for your review! We'll keep your feedback in mind as we continue to work to improve Habitica. You can contact us directly by going to Menu - About - Send Feedback if you'd like to give us additional details.",2019-06-14 00:45:49,newest,com.habitrpg.android.habitica +Genieva Beland,https://lh3.googleusercontent.com/a-/AOh14Ghd-bmAZtzYhfO1D9EmtIC0LiH_CsJNsv9EEylH2Q,"The website is buggy, but enjoyable. The app, however, feel almost nonfunctional.",3,0,,2019-06-07 07:17:14,"Hi Genieva, thanks for your thoughtful review! We'll keep your feedback in mind as we continue to work to improve Habitica. You can contact us directly by going to Menu - About - Send Feedback if you'd like to give us additional details.",2019-06-07 20:37:06,newest,com.habitrpg.android.habitica +Rowan Rome,https://lh3.googleusercontent.com/a-/AOh14GhLZg1ICC24Vf2b8UD-VN4ChJkz_8tcm5ICUYJBmw,Fix the glitch where if you want to change the streak of a daily the keyboard pops up and gos down. super annoying,3,0,1.9.2,2019-06-03 16:19:10,"Hi Rowan, sorry to hear about the trouble! The team is aware of this and is working to fix it as soon as possible.",2019-06-07 20:32:57,newest,com.habitrpg.android.habitica +Mr Green,https://lh3.googleusercontent.com/a-/AOh14GgFI9EUguS7Zy2oUvLA9sMAy_l6Oox2HWlb8_gGbQ,"The big CONS to this app: DAILIES tab always shows all of my weekly duties, instead of the DAILY ones. I change this in the filter but once I reopen the app, it switches back to showing EVERYTHING. What's the point of a filter when the app doesn't save it? (Galaxy Note 8) Also, why is there no dark mode? My eyes are screaming at night.",3,0,1.9.2,2019-05-29 02:36:15,,,newest,com.habitrpg.android.habitica +Bryo,https://lh3.googleusercontent.com/a-/AOh14GjQMBSkopVfR-8FjwmxRegEDXt7OYyOr1Ed9YYarg,"I have been using this app for a while, really trying to get to grips with it but I've come to conclude that it's not me. If you feel like you need less complexity in your life them this probably isn't for you as this adds a new system that you have to get to grips with and plus the gamification aspect can be quite destracting and finnecky. I think if this were to ever be useful for me it would need a separate environment for tasks, habits and dailies.",3,1,1.9,2019-05-25 00:01:49,"Hi Bryo, thanks for your thoughtful review! We're glad you gave Habitica a try.",2019-05-28 20:44:54,newest,com.habitrpg.android.habitica +Bea Z,https://lh3.googleusercontent.com/a-/AOh14GioM5UEDmxINTXtIuWV5bJcpVidbVZQQx55Fr7YfQ,Edit: Reverted to old version or something and issues are back :( Edit: Issue fixed and new update is great! Seems like you actually passed the issue along instead of making complaining subscriber have to repeat the complaint in email... Huge fan of Habitica. Used it for years. It was called HabitRPG when I started. Only to-do list app I have stuck to. Encourages you to build good habits in a fun way. Community-built. No ads...worth subscribing to support the app.,3,7,1.9.2,2019-05-24 11:56:27,"Hi Bea, thanks so much for your review! We'll pass your feedback along to the development team.",2019-05-02 19:25:00,newest,com.habitrpg.android.habitica +Mark van pelt,https://lh3.googleusercontent.com/a-/AOh14Gh4cR729zFzYQhhuycAK19HFSkIG_3d7dDpTXw3,fun way to track habits. It would be great if you could update tasks without an interent connection and then just sync the next time your connected like many other trackers,3,4,1.9.2,2019-05-21 22:16:05,,,newest,com.habitrpg.android.habitica +Stephiroth D,https://lh3.googleusercontent.com/-_rejGDdloxA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOZQa8N_mooLPDuNcX5nIzNESB3Tg/photo.jpg,"This app is very helpful! Total game changer for my ADHD. Unfortunately, after level 25 the app becomes a money grab and the items you find and the equipment you can buy with coins get severely capped. But overall I'm happy this app exists, it really helps me stay on track :) Perhaps if the game cost a few dollars to purchase the developers wouldn't need to resort to capping in order to create revenue from the app. I feel as though many people will quit once the RPG element is restricted.",3,1,1.9.1,2019-05-20 14:00:58,"Hi Stephiroth, we strive to keep Habitica from being pay-to-play, so items that must be purchased with real money are purely cosmetic and do not affect player stats. We'll keep your feedback in mind as we continue to improve Habitica. You can contact us directly by going to Menu - About - Send Feedback if you'd like to give us additional details.",2019-05-28 20:39:54,newest,com.habitrpg.android.habitica +GN R,https://lh3.googleusercontent.com/a-/AOh14GiPmDLyuDwJybNBuCTph-GfSkuUjAQ3y6UohH61bw,"Having to find players to be able to do anything is a bit annoying, it's really boring otherwise. Reminders don't work properly - I set a bunch for last night that never happened, and a bunch this morning that never happened. It's not really built for proper daily routines including things you need to do twice per day so... It's not really useful for me.",3,52,1.9.1,2019-05-12 05:24:47,"Hi GN R! Thanks for giving us a try, and sorry to hear Habitica wasn't your cup of tea. We'll be sure to pass your feedback on to the team.",2019-05-16 21:31:09,newest,com.habitrpg.android.habitica +Dave Smith,https://lh3.googleusercontent.com/-KGec7lCOW9M/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNjX9nooTuVZreo2UW7h-QqvRxi8g/photo.jpg,"Incredibly useful service and thanks so much for creating it. The app tends to be buggy, but nothing that couldn't easily be worked around until the last update. Since the last update drag and drop sorting of To Do (and I suspect Dailies as well) subtasks/checklists no longer works which is really frustrating. At least the website works great as always. It's just frustrating to have to run down to the computer to fix my lists.",3,4,1.9.1,2019-05-09 13:09:38,"Hi Dave, sorry to hear about that issue! We'll make sure the dev team is aware.",2019-05-16 21:07:54,newest,com.habitrpg.android.habitica +Ryn R. Climenhaga Illustrations,https://lh3.googleusercontent.com/a-/AOh14Gi2IIOr9BanSXgd-s4FPHO_4jhoAzvv6MbOSb1w,"Latest update is super buggy; can't change if I want my dailys to be every 2 days, 3 days, etc. because the keyboard jumps up and immediately disappears. Really annoying.",3,0,,2019-05-07 23:00:49,"Hi Ryn! Sorry to hear about the trouble, please try installing the latest update. If you're still running into problems, you can get help directly by reporting via Menu - About - Report a Bug.",2019-05-16 20:48:04,newest,com.habitrpg.android.habitica +Prasad Kamat,https://lh3.googleusercontent.com/a-/AOh14GhJfaodGgX-g38eZPa5EHm3TXLBs0DnUP7zM7bCTQ,"Loving it! But are there themes on the horizon? Not a huge fan on purple! And where can see a weekly/monthly summary of how I'm keeping up with my dailies? Also I noticed a bug when I accidentally hit 'create' multiple times for a new daily, it will create multiple instances of it.",3,1,1.9,2019-05-01 20:30:31,"Hi Prasad, thanks for your review and feedback! We'll be sure to pass it along, but if you'd like to send it directly to the mobile team you can do so via Menu - About - Send Feedback.",2019-05-02 19:27:46,newest,com.habitrpg.android.habitica +Sheherezade Blanc,https://lh3.googleusercontent.com/a-/AOh14GhKbDIA1YUyjdPIT-e33-uUxfwx1zxLOP3U0D-bjA,"nice, but not what I need for now",3,0,,2019-05-01 15:16:19,"Hi Sheherezade, sorry to hear Habitica wasn't for you, but thanks for giving us a try!",2019-05-02 19:26:31,newest,com.habitrpg.android.habitica +Keith Ballentine,https://lh3.googleusercontent.com/a-/AOh14Gi8uJfhMihBlVSAEaXt_-OI-4MEt0zL1IY8QvyQsA,it has great promise but i cant use it offline so its worthless to me.,3,2,1.8.1,2019-04-29 21:40:05,,,newest,com.habitrpg.android.habitica +TE L,https://lh3.googleusercontent.com/a-/AOh14GgHgNZ94ZOJReVDsIMpdwpR_MZo7SNbEj-aAzfFM0s,"Cool concept, but I don't have the attention span for it.",3,0,1.8.1,2019-04-26 07:16:30,,,newest,com.habitrpg.android.habitica +hojun lee,https://lh3.googleusercontent.com/a-/AOh14GiKDy8F0fuj2deeZ6fDTDyfmzxNReneBoWP7L6duQ,"very good app, but i wish it can be used offline :)",3,1,1.8.1,2019-04-17 11:51:24,,,newest,com.habitrpg.android.habitica +Hill Sever,https://lh3.googleusercontent.com/a-/AOh14Gi4PgOV8Fv0f1nCOevwNjQ4a0mYqD7-LryfnofMbg,"Wants me to write a username, but says ""username already taken"", even when I put nonsense in.",3,1,,2019-04-15 14:30:49,Hi there! Sorry to hear about the trouble. Please email us at admin@habitica.com and we'll be happy to look into this.,2019-04-24 02:38:53,newest,com.habitrpg.android.habitica +Joshua Gaulrapp,https://lh3.googleusercontent.com/a-/AOh14Gi6-gyXA6-cRWoV0GOjUHfmm9CZpKo2jvZoPC0H,i dont get the point of the game,3,0,1.8.1,2019-04-13 15:45:46,"Hi Joshua, Habitica is a gamified productivity app to help you approach your everyday tasks like a game. We hope that helps clarify, and if you'd like to know more, folks in the Habitica Help Guild can answer any questions you might have.",2019-04-24 02:31:52,newest,com.habitrpg.android.habitica +Andrew Dillon,https://lh3.googleusercontent.com/a-/AOh14GgAS_l31UWNMha-WzJGbuaOZCXEErCaCBIxEiGZ,"Clunky, annoying lag time after button presses, often won't update upon opening",3,0,1.8.1,2019-04-13 15:06:26,"Hi Andrew! Thank you for your review and feedback. If you'd like to send along any details to help us look into the issues you mentioned, please feel free to do so via Menu - About - Send Feedback.",2019-04-24 02:30:50,newest,com.habitrpg.android.habitica +Danny Granville,https://lh3.googleusercontent.com/a-/AOh14GiTPN4FsZga74emyNnjo-ZimyzI0GGg00-DexMW,timezone feature broken. the gamification was a little too complicated and too much for my needs.,3,0,,2019-04-13 06:28:11,,,newest,com.habitrpg.android.habitica +D Wick,https://lh3.googleusercontent.com/-BrVO8vKTc6o/AAAAAAAAAAI/AAAAAAAAt7w/AAKWJJNLNGbwnIOubHXExXoERVcCf1rOPA/photo.jpg,Im giving it 3 stars. it deserves 5 stars for the app but getting 3 cause after i bought some Gems there were some shady withdrawals which means the privacy protection for my card was breached... and im 99% sure its from Habitica cause this happened right after the purchase. please increase your cyber security for card transactions.,3,17,1.8.1,2019-04-13 00:27:30,"Hi Daniel, we're very sorry to hear about this experience. Google Play actually handles all payments related in-app purchases and subscriptions. You can learn more about how to report this issue here: https://support.google.com/googleplay/answer/2851610?hl=en&ref_topic=3364671",2019-06-14 01:08:49,newest,com.habitrpg.android.habitica +Calvez Piamonte,https://lh3.googleusercontent.com/a-/AOh14GhFN2fwIkK9jUA5A5JvZZb7gFoiuX3lWqVVDrHF,I just wish you could use this offline even if wouldn't record progress. Just make it accessible offline,3,0,1.7,2019-04-08 14:40:27,,,newest,com.habitrpg.android.habitica +Austin Dvorak,https://lh3.googleusercontent.com/a-/AOh14Gi4Wf9_0DnoCvPxSyYEHZjZA1woHJ82BeFyMViJ9A,"Decent app. Works like intended but does have bugs for the extra ""game"" part of it. constantly have to close and reopen the app because the loading bar never really loads, or white screens. Another thing is I dont think we should be paying 3 gems to change our class. I accidently chose a class when I upgraded enough, and I thought I was fine as the bottom said you can change a class later, except it didnt say we needed 3 gems to do it. I dont usually get that many gems unless i buy them.",3,6,1.8,2019-03-31 23:05:35,"Hi Austin, thanks for your thoughtful review! Sorry to hear about the trouble, we'll look into these issues. You can get help for bugs directly by reporting them via Menu - About - Report a Bug.",2019-04-03 20:17:25,newest,com.habitrpg.android.habitica +Fel. L.,https://lh3.googleusercontent.com/-ppgY04Ew_8A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNRg-Z9K40-0Vmcb4HERrCU4RQr6A/photo.jpg,"I prefer the browser version over the app version. It's hard to find all the options in the app version. The app and browser also don't sync well, and one time I lost all of my health and money upon opening my app version for the first time in a long while even though I had used the browser version earlier.",3,0,,2019-03-29 00:00:55,"Hi Fel, sorry to hear about the trouble! It sounds like your character may have died due to damage from a quest from your partymates. If that's not the case, please let us know via via Menu- About -Report a Bug and the team will look into it.",2019-04-03 20:25:17,newest,com.habitrpg.android.habitica +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,the idea behind it its very good but it wont even let me log in...,3,0,,2019-03-27 08:15:51,"Hi there, sorry to hear about this issue. Please let us know if you're still having trouble by sending us a message at mobile@habitica.com and the team will look into it.",2019-04-03 20:31:05,newest,com.habitrpg.android.habitica +Shadow Owl,https://lh3.googleusercontent.com/a-/AOh14GjU8j-XuoszCUDNsfyMPDpU7EojIw6aQPBRjvnPrQ,Notifications are great so far.,3,0,1.8,2019-03-26 18:31:20,,,newest,com.habitrpg.android.habitica +Sven Bendel,https://lh3.googleusercontent.com/a-/AOh14Gi5RoKbgnYAv6LZmE2rJZFAEVQPByyjjOHfMoUdtQQ,"Great concept, unfortunately sometimes a bit buggy implementation: really weird back stack handling and syncs don't work quite often. Staying with it for now hoping on things to be fixed in the future.",3,7,1.8,2019-03-23 16:07:47,"Hi Sven, Thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-04-03 20:42:00,newest,com.habitrpg.android.habitica +Rebeca Velasco,https://lh3.googleusercontent.com/a-/AOh14GhPKAQcOkOz688-MZc4IhZxzvwTFgcR0jT0rNladA,":( i cant log in after because i need to add a username. i did it, but the app froze when i was adding my username and now it seems is taken... when it wasn't. i tried again with a different one and happened again :(",3,0,0.0.33.2,2019-03-14 08:30:01,"Hi Rebeca, sorry to hear about the trouble! If you're still unable to get the username please email us at admin@habitica.com and the admins can see if they can help!",2019-03-20 21:23:23,newest,com.habitrpg.android.habitica +Katerina Minovska,https://lh3.googleusercontent.com/a-/AOh14Gg5zGEN58afJp1ZwIf1V1o-oEpj3e7MLZGecOItVw,"Please tell me how to undo an accidentally added habit, I feel like I'm cheating when I delete and re-add a whole habit because it's bugging me. Otherwise the app is a gem. 3 stars till you fix this for me. It still doesn't work, I don't want to delete a task, I want to unclick a habit, because I've accidentally clicked positive/negative and I can't undo it. Even if I click the other one to make it even, it just registers it as a separate log.",3,0,,2019-03-12 13:33:44,"Hi Katerina, while we don't yet have an ""undo"" function, if you go to Menu - Settings - Fix Character Values you can adjust your gold and experience after an accidental tap. We hope that helps!",2019-03-20 21:21:03,newest,com.habitrpg.android.habitica +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,soo bugy,3,0,,2019-03-08 17:24:41,"Hi there! If you have any specific feedback you'd like us to know, you can send it to us directly via Menu - About - Send Feedback.",2019-03-20 21:12:20,newest,com.habitrpg.android.habitica +rober carrillo,https://lh3.googleusercontent.com/-5qvXqhKVJqI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPN5wR1VPI_Q-Ns_mEdivSCUSug9A/photo.jpg,"I constantly get a message "" problem with the server "" please fix this, I liked the app a lot but I am unable to use it cause it doesn't connect nor update my tasks",3,0,1.7.1,2019-03-05 14:24:00,"Hi rober, You may have run into some server issues we had at the time you posted- let us know if you're still having trouble via Menu- About -Report a Bug and the team will look into it.",2019-03-05 21:03:53,newest,com.habitrpg.android.habitica +Default,https://lh3.googleusercontent.com/a-/AOh14GjdW6ZH_KsM90YrzcRXaRbz34gSLuv8pmf1kaDkTg,super cute and motivating but the server seems to constantly bug out on me,3,0,1.7.1,2019-03-05 04:36:18,"Hi Default, You may have run into some server issues we had at the time you posted- let us know if you're still having trouble via Menu- About -Report a Bug and the team will look into it.",2019-03-05 21:05:59,newest,com.habitrpg.android.habitica +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"It is a very good app, but it has many glitches. The widget requires you to open the app to update and in some occasions even when you check some activities as completed they still appear in your list. It is a good app, but it doesn't run smoothly.",3,0,1.7.1,2019-03-05 02:34:50,"Hi there! Thanks for your review- if you'd like to help us fix the bugs you mentioned, you can send the team reports directly via Menu- About -Report a Bug and the team will look into it.",2019-03-05 21:07:00,newest,com.habitrpg.android.habitica +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Felt more like i was wasting time instead of getting something done.,3,0,,2019-02-28 03:33:47,"Hi there, thanks for your review! If you'd like to send us more detailed information about what you felt was not efficient or helpful, you can do so by going to Menu - About - Send Feedback.",2019-03-01 19:06:42,newest,com.habitrpg.android.habitica +Brian Chelule,https://lh3.googleusercontent.com/a-/AOh14Gj2iQ6oAxAL5-gzwQTseyq4-BxG9oqbDtZTiWOdsw,"not bad, still new user tho",3,0,1.7.1,2019-02-25 07:02:58,,,newest,com.habitrpg.android.habitica +Elisabetta Bruno,https://lh3.googleusercontent.com/a-/AOh14Ghf24PtJsgkR_wSHrak1oOac1MnzXLiUlCFHTA_,"The reminder system is not very robust, and that should be one of the most important things. I would like more than one daily reminder for everything. I will do tasks at different times of the day, thus I need reminders that are task specific. It also requires a connection in order for you to set tasks, and if you have no signal you are out of luck. I do love the idea, fix these two things and I'll reinstall.",3,3,0.0.24,2019-02-20 07:58:06,"Hi Elisabetta, thank you for your thoughtful feedback! If you'd like to send additional feedback to us directly, you can do so by emailing mobile@habitica.com",2019-02-20 23:41:07,newest,com.habitrpg.android.habitica +Ravi Koundinya V V P,https://lh3.googleusercontent.com/a-/AOh14GgPb4mmK8GBcLheE1tdDTSN2mZU7KHG1CCxY88T,"A very interesting idea. I would give 5 stars, but there are minor bugs in the apps. I can't choose my user name, it says there are all taken. (I'm sure No one else would use it) and I cant add a daily task. It shows an error when I try to add one. ""is not the enum for frequency "" or something similar. please fix this, I really love this idea.",3,6,1.7.1,2019-02-17 09:30:27,"Hi Ravi, thanks for your review and sorry to hear about the trouble! If you send us a direct report via Menu - About - Report a Bug, we'll certainly look into the issues you mentioned.",2019-02-20 23:37:06,newest,com.habitrpg.android.habitica +Dmitri Eddy,https://lh3.googleusercontent.com/a-/AOh14GgLKeEM4wQjryx6pB2teei1O5SqXzOUECg20VtQ,"Great app, I only have one complaint: The Tavern system doesn't work. I went on vacation and knew I wouldn't be able to complete my dailies or even open the app for that matter, so I entered the Tavern thinking I was safe for the couple weeks I'd be gone. I just reopened the app and it told me I had died twice, took all of my gold, two of my items, and decreased two levels. Honestly considering deleting the app now, as I had over 100 gold saved and lost a piece of rare equipment",3,29,1.7.1,2019-02-12 10:57:55,,,newest,com.habitrpg.android.habitica +HyperWizard Gring,https://lh3.googleusercontent.com/a-/AOh14GjrxJFmk4Nj-YtS4ffAq4iiAfCZVzh4dy1HD1qN,Ok ok ok,3,0,1.7.1,2019-02-12 00:37:43,Hi there! We'd love to hear any specific feedback you have for improvement. You can send this to the team directly via Menu- About - Send Feedback.,2019-02-20 23:33:21,newest,com.habitrpg.android.habitica +Joey B,https://lh3.googleusercontent.com/a-/AOh14GjKj89xxkaE2cFCLRZkX09Kg_YCrZlgZS-tDY7iJA,Habit widgets stopped working. After a day they just go blank and don't ever come back. The widgets where my favorite part of this app so that's too bad :(,3,8,1.7.1,2019-02-10 15:13:30,Hi Joey B! Thank you for your review and sorry to hear about the trouble! Our team is investigating the issues with the widgets and hopes to have them fixed soon.,2019-02-20 23:22:15,newest,com.habitrpg.android.habitica +Taylor LaMar,https://lh3.googleusercontent.com/a-/AOh14GgBNPxBxC2F47dEUlTNtstj-LdNG4UvJsH9egKXMA,"It's slow to update and pretty buggy, but it's a good idea and helps me and my friends maintain accountability.",3,0,1.3.3,2019-02-06 03:03:01,Hi Taylor! Thank you for your thoughtful review. Sorry to hear about the bugs- you can help us fix them by reporting them directly to the mobile team via Menu - About - Report a Bug.,2019-02-20 23:03:11,newest,com.habitrpg.android.habitica +Sara Gojkov,https://lh3.googleusercontent.com/-BJeOnGsnBbw/AAAAAAAAAAI/AAAAAAAAAK4/AAKWJJO5Ui0IJXbUcdwFbl89YhVAU5IQLA/photo.jpg,"It's a good sentiment but it didn't really work for me. I wanted to like it but the motivation for getting stuff outweighs the motivation to actually do the things you're supposed to and unless you join a guild or any sort of group, there's no accountability. If you don't want to use it as a social app, then I can't imagine mustering up the focus and drive not to just lie.",3,0,,2019-02-03 12:45:58,Hi Sara! Thanks for your thoughtful feedback. We appreciate you taking the time to let us know!,2019-02-20 22:46:32,newest,com.habitrpg.android.habitica +Tobias MacD,https://lh3.googleusercontent.com/-J6uNP4HrSts/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP5RJzSOcUL3xOJN8yWmiHJpjS1Zw/photo.jpg,it works great for me but my friends are dealing with the days not reseting and aren't able to deal damage our monster....please i cant do this alone. our party needs help.,3,0,1.7,2019-01-23 19:28:59,,,newest,com.habitrpg.android.habitica +Miss Dee,https://lh3.googleusercontent.com/a-/AOh14GjeVu1Bjg7aifa9yWAcEhpD_XWKPuMllX_YQ5c-,"Great until last update. Love the app, its a great tool, but since the last update, I frequently get server error notifications, and the app doesn't function in any capacity (can't chat in party, dailies and habits don't refresh, etc.). rebooting my phone and reinstalling the app did not solve the issue. I'd happily give this a 5-star if this could be fixed and I could get back to my daily log-ins and updates.",3,0,1.7,2019-01-22 15:31:48,,,newest,com.habitrpg.android.habitica +Sam Sammy,https://lh3.googleusercontent.com/a-/AOh14GjrYIVp3QECA8Z0u7QUeDMgbEwGcBpfhesFk_kI-w,would be good if it is made offline atleast for todos,3,0,1.7,2019-01-22 13:09:08,,,newest,com.habitrpg.android.habitica +Sheldon Hull,https://lh3.googleusercontent.com/a-/AOh14GiY6I7lgsccZB1WnRFHBB1ubGnG39YNYPOU86vV7rM,overall decent experience. main areas I'm not happy with are ui design choices. lots of wasted space and navigational steps that could be improved. Wish i could see the content in more compressed format. also no night/dark theme which is important to me when using an app i night pull up before going to sleep or in early morning.,3,1,1.7,2019-01-22 05:04:00,,,newest,com.habitrpg.android.habitica +Benjamin Morehead,https://lh3.googleusercontent.com/-4w9DdpKZn-g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOMkKVuq1xc-lFmV8Pv0WdQKCXW2A/photo.jpg,"This app is a great idea and I love all the features. However, no matter what I set the day start time to for daily tasks to reset, they keep resetting at some seemingly random point in the middle of the day despite me having it at 2AM, which is causing all of my evening tasks and some of my midday tasks to fail as I haven't done them yet. I'm not sure if the app thinks I'm in a different time zone or what but it's very irritating. If they fix that it's 5 stars for sure.",3,3,1.7,2019-01-21 03:33:20,,,newest,com.habitrpg.android.habitica +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Hey! The app is great but can't deal with the constant glitches and crashes. Cheers!,3,0,,2019-01-21 03:31:00,,,newest,com.habitrpg.android.habitica +Mihai Stan,https://lh3.googleusercontent.com/a-/AOh14GhIIqnCB3Ax0mhmCq56r1IP-WaSPWz6RWtcWhiO,"This is a great app and it really helped me do my tasks but it doesn't work properly. For example when I try to move a habit so that the list is in the order I want it to be, the app glitches and the habit is sent back to the top. I know those problems are almost insignificant but it gets seriously annoying sometimes. Fix those little problems and I'll give this app the five stars it deserves.",3,7,1.7,2019-01-19 14:30:11,,,newest,com.habitrpg.android.habitica +Sanya Grosh,https://lh3.googleusercontent.com/a-/AOh14Gj7gMOBIPtXqHpmN711EnhxmZjUjx0bOXl1pmfx3g,"bags lags. Usable, but painful",3,0,1.7,2019-01-19 10:52:56,,,newest,com.habitrpg.android.habitica +Color Coded Creature,https://lh3.googleusercontent.com/-1fbX8YWqga4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNRFslAG7ug_wssgPcB_XbZp4HbFw/photo.jpg,Useless unless it gets updated so we can use it offline as well. The best time I have for updating it is en route to & from uni and I can't do that without internet. Otherwise it would have been a bomb app. :(,3,5,1.7,2019-01-18 18:28:18,,,newest,com.habitrpg.android.habitica +Seth Glukler,https://lh3.googleusercontent.com/a-/AOh14Gh6FCbXeGl-DTzcWE1FsW6s7G8CWPJSGCJ3sTIWJ0w,i love it but my daily tasks dont reset at midnight so i cant use it in the morning im in western canada what timezones should i set this to so it works for me? irs just frustrating not being able to use it for the majority of my day,3,6,1.7,2019-01-16 17:47:11,,,newest,com.habitrpg.android.habitica +Amethyst Amethyst,https://lh3.googleusercontent.com/a-/AOh14GgVLnz-xINUc6N6f30tpb6VjMwVNpZUbmInD89y9Q,ehh it's just way too confusing for me to understand and do anything. my health would probably go to 0 if i actually did know what i was doing anyways lmao,3,0,1.7,2019-01-16 06:57:00,,,newest,com.habitrpg.android.habitica +James Rhinehardt,https://lh3.googleusercontent.com/a-/AOh14GibNuAU5hcZbGaqo3zYTPGW_Mq1C9UDOMd_RJiR,"I would be happy to give the app a five star rating as I have reaped many benefits I directly relate to my usage of Habitica, but I am prevented from doing so by recent events. I can only give you a three star rating because suddenly your application no longer functions, with no warning or information as to why or how to fix it. 500 characters is not enough to relay proper data on this issue to the Dev Team, likely by design, and for that I blame Google Play, not the Dev Team of Habitica.",3,20,1.7,2019-01-15 04:48:14,,,newest,com.habitrpg.android.habitica +Wim Welsink,https://lh3.googleusercontent.com/a-/AOh14GhY4Jen99KeJx5KFJ64LR2VzbsyDfQd499oHCYzYQ,The app crashes very often. You also have to restart the app every time for a reward to show up in your inventory.,3,4,1.7,2019-01-11 18:44:51,,,newest,com.habitrpg.android.habitica +Jai Titan,https://lh3.googleusercontent.com/a-/AOh14Gi1WxqPxyx4BHFBCmGoBdLufMQSyqzJHO8TO239,This is one of the better Habit tracker app Ive tried. A couple of them I deleted after a few days just because they were So Basic yet had the Audacity to charge for a Premium Service. Habitica seems to be much more realistic and actually has a more detailed U.I for setting yourself different kinds of targets/habits. But I would like to give this app 5* once they link this app to your clock and calendar apps (or build in) & add more Notification controls. Looking forwards to updates....TBC,3,0,1.6.1,2019-01-02 20:12:32,,,newest,com.habitrpg.android.habitica +Black Pug,https://lh3.googleusercontent.com/-SJ1aVyX3Rv8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPtS6UXIgpZUTK6hJYY5eJCQ7bg5A/photo.jpg,Needs internet connection and is a pain to set up simole tasks.,3,1,1.6.1,2019-01-01 14:05:19,,,newest,com.habitrpg.android.habitica +Nicole Dyson,https://lh3.googleusercontent.com/-_5T0Ymrnj4I/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPnWLEH63mPL3-sSvEkX1rLAypTyQ/photo.jpg,"it's fine to use to check off stuff and gain/lose habits and get rewarded for it, but the formatting is so ugly and it's so easy to cheat which kinda defeats the purpose of the app. like you can make yourself level 100 or give yourself 2,000 gold if you want to. plus there's a lot of bugs even though habitica has been alive since either 2015 or 2014 so that kinda says it all for how much the staff is on things.",3,0,1.6.1,2018-12-28 23:40:36,,,newest,com.habitrpg.android.habitica +Ania E,https://lh3.googleusercontent.com/a-/AOh14GggRk-ISQv-E0t67CTyXpGBPJXMGechJP1b5IdiQA,"I love it, compared to other apps like it. but i do miss the features that epic win has, that you can sort your to do s based on the day.. so you can set up to dos for the future, while in habits it all shows in one list instead of being separated by date",3,0,1.6.1,2018-12-28 02:18:58,,,newest,com.habitrpg.android.habitica +Mina Faridi,https://lh3.googleusercontent.com/-EfnF8Mb8SRE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM90u_7Tn4QWHyJrh7cDo_D4NSKNg/photo.jpg,Hi I like this app 😍 it could be better if the todo list's tasks were sorted by their deadline and also today's tasks had a different color!! And a reward could be a game which needs some coins to play them! Thank you!!,3,2,1.6.1,2018-12-26 05:20:35,,,newest,com.habitrpg.android.habitica +No.,https://lh3.googleusercontent.com/a-/AOh14GiBWNTAiP929mkzdo5sccPgtPEik94q0o1IUOfbDw,"Interesting organizer, but is there any other way to earn gems without buying them?",3,0,1.6.1,2018-12-21 17:06:20,,,newest,com.habitrpg.android.habitica +P M,https://lh3.googleusercontent.com/a-/AOh14Gj8BF0wD3FDdy2RQUUNw1ZmLfk3tzdV5nzPr1z9,"Really unique app that motivates me to get stuff done. Unfortunately, this app needs A LOT of work. I tried writing a message in a guild chat. Once it got long enough, the words disappeared behind my keyboard so I couldn't see what I was writing. When I put the keyboard down, the send button disappeared..as a result I couldn't send my message. Theres no search for trying to find a challenge that suits you. Theres no notifications when your party is chatting. There is also no search for guilds. I just started this app and so for these are the problems I've noticed. Otherwise it is great and I hope it improves.",3,38,1.6.1,2018-12-14 01:48:50,,,newest,com.habitrpg.android.habitica +Trevor Caruso,https://lh3.googleusercontent.com/a-/AOh14Gh2PaRmIz3jrMx2ocGsf2RLF3WDM-jAJLIvLPd4hQ,"Decent app, but would be so much better if you could set the worth of your tasks. Some tasks are simple, like 'drink more water', others like 'save $2000'. Theres nothing but a crude difficulty rating to differentiate tasks. We cam create rewards and their worth, why wouldnt we have control of the amount of points for the tasks??",3,25,1.6.1,2018-12-14 00:54:04,,,newest,com.habitrpg.android.habitica +Shozloch ShadR,https://lh3.googleusercontent.com/-bDt_0ChQAD0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP974UxKglhF4obvXumx2jZrYTDlQ/photo.jpg,My life is a game and I should quit to desktop lmao,3,0,,2018-12-10 10:02:58,,,newest,com.habitrpg.android.habitica +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Please fix the date format, we're not all backward Americans...",3,1,1.6.1,2018-12-05 08:25:46,,,newest,com.habitrpg.android.habitica +Salma Ashraf Hady,https://lh3.googleusercontent.com/a-/AOh14GiAjgzvulZb2wFKT0lqVU_syBlMw9g0fZSX15k2,"Edit: Uninstalled it, takes too much interest. Honestly I find it not working offline a major issue. I liked it but it is too slow and laggy not to mention the various bugs in game. Just today I was trying to add a new tag, I entered it about 5 times before I gave up and them 15 minutes later I find the tag I entered repeated 3 times, so I try to remove the other two. Also trying to organise the tasks' order, the keep going back to their original order. Sometimes when I finish a task and check it, it doesn't work. And in the habits it stops working some times and other times it checks the habit twice positive or twice negative.",3,3,1.6,2018-12-02 11:20:43,,,newest,com.habitrpg.android.habitica +Matthew Austin,https://lh3.googleusercontent.com/a-/AOh14GhrXHRoZdFzYUL8IssZ_KcNzEY2AAt0t3BozFHc9g,"Great concept, but there are numerous issues that I found right off the bat. The main one for me was the fact that, once you pick a subject for your journey you can never go back and change that. I mean, there are multiple journey subjects to choose from and maybe I want to focus on one aspect of my life at a time. The app treats life like a game, after all and most games allow you to start over with different settings. Starting over in THIS game requires you to uninstall the app, reinstall the app and then create a brand new account. Kind of silly and frustrating to boot. Check out the Level Life Up app instead. It has a much better platform.",3,1,1.6.1,2018-12-02 10:37:47,"Hi Matthew, thanks for your review! Any default tasks installed in the tutorial can be deleted by swiping them to the left. If you're looking for task ideas to help you with a particular subject, you may find the Library of Lists and Challenges Guild helpful.",2018-12-07 01:07:42,newest,com.habitrpg.android.habitica +Jorijn Bleijs,https://lh3.googleusercontent.com/a-/AOh14GiYVYeFVszg8j9bKsYRW33pmjxd7PSJQ7OTakfeeLk,"Beautiful idea, bad design",3,0,,2018-11-20 16:33:52,"Hi Jorjin, thank you for your feedback! If you'd like to give us any specific feedback about our design, you can do that via Menu- About- Send Feedback.",2018-11-30 20:18:57,newest,com.habitrpg.android.habitica +sventhedog gy,https://lh3.googleusercontent.com/-ENmBHjhyQAY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNKidtUAqS7Cb9AaflSmcwEk_82Ag/photo.jpg,Offline support? At least make an offline list feature.,3,3,1.6,2018-11-17 12:19:22,,,newest,com.habitrpg.android.habitica +Rodolfo Fava,https://lh3.googleusercontent.com/a-/AOh14GiV8J_pVvr-5X_AjoiKXazhZ68-lRtPhZKTBn3heg,"There are bugs that break the immersion for me. It's not as responsive as it looks, and the design should be worked out in the app. To complete a challenge, I need to post my goal on the chat, fine. But then I cannot access the chat room through the app, and I need to use the browser for that. Please improve the user xp.",3,2,1.5.1,2018-11-12 15:13:38,"Hi Rodolfo, sorry to hear about the trouble. Our dev team is happy to investigate bugs. You can report them via Menu-About-Report a Bug.",2018-11-16 20:28:39,newest,com.habitrpg.android.habitica +Christina Waldén,https://lh3.googleusercontent.com/a-/AOh14GgRPkTXmeMxQkS45S7RLRCRWR7bxGxLMJ1Wc2SJQA,"I really like this app though I've only used it a week. I have some suggestions though, when I add a habit I'd like to add it for the week but not weekends. In Daily tasks I can + the same task more than once which is a bit like cheating, maybe add a pop up message that says ""you've already done that today"" 😊",3,1,1.5.1,2018-11-12 09:33:46,"Hi Christina, thanks for your review and feedback. We'll be sure to pass that on to the team.",2018-11-16 20:29:02,newest,com.habitrpg.android.habitica +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,No option to set daily tasks as only Monday to Friday.,3,1,0.0.32.1,2018-11-07 05:38:31,"Hi Bret, thanks for your review. Actually you can set Dailies for specific days of the week by tapping and holding to open them in edit mode.",2018-11-16 20:31:36,newest,com.habitrpg.android.habitica +Dylan Hopwood,https://lh3.googleusercontent.com/a-/AOh14Gi4cx-FrpvYZegTx6NW6851wayakbhE9-Xw8yvs,"This app is fine in concept, but the ""game"" part of Habitica, arguably the reason you would use this app over other habit tracking apps, is just too boring and not that ""gamey"" to me, which doesn't keep me motivated to keep going back to the app for my habits. Concept is good, execution leaves much to be desired.",3,4,1.5.1,2018-10-31 00:11:58,,,newest,com.habitrpg.android.habitica +Sean Gleason,https://lh3.googleusercontent.com/-abcpk5rLhCg/AAAAAAAAAAI/AAAAAAAAADg/AAKWJJPDVB9DMEnftD1ErfYNSqAsstx3fw/photo.jpg,"Great idea, and everything looks good but the top and bottom buttons are covered by navigation bar on the Pixel 3 XL making it unusable. Couldn't even click the button to report the bug within the app so I'll change my rating once this is fixed.",3,0,,2018-10-25 21:46:09,"Hi Sean, orry to hear about the trouble! It would be very helpful for the team if you sent a bug report with device information. You can do this by emailing mobile@habitica.com if you cannot access the Report a Bug function.",2018-11-06 20:03:30,newest,com.habitrpg.android.habitica +Diana Cadwell,https://lh3.googleusercontent.com/a-/AOh14GiPyxhhYTcuy6YNVsPgY02_7AMJIUng-qQgsEWt,"I've only started using this this morning; so far I'm hoping it helps with motivating me to accomplish things. It's definitely a great idea! I kind of am wishing the was done sort of story line to follow along with, like ones you have so many days of completing so many habits you get a clue to find whatever your quest goal is, or something like that would make it more exciting... I'll update my review once I'm a week or 2 in.",3,1,1.5.1,2018-10-25 16:15:33,Hi Diana! Thanks for your review and your feedback. We look forward to hearing what you think when you update!,2018-10-25 21:02:55,newest,com.habitrpg.android.habitica +Hai Luong,https://lh3.googleusercontent.com/a-/AOh14Gg5ykgmenAIvA8R4QJTaJxdRw9ATZjORh_WhKRHlMI,"An ok, but expensive app",3,1,1.5.1,2018-10-25 07:02:06,,,newest,com.habitrpg.android.habitica +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"App needs work, poor sync with website",3,1,1.5.1,2018-10-12 03:36:33,,,newest,com.habitrpg.android.habitica +Caio Silva,https://lh3.googleusercontent.com/a-/AOh14GizCAWVO_oSFxJZ1qqzw1khfRMpJRy4_Duk3iqr0w,It's good but has some points to improve.,3,0,1.5.1,2018-10-10 02:45:44,"Hi Caio, thanks for your review! If you'd like to share your feedback you can send it via Menu - About - Send Feedback.",2018-10-11 17:15:48,newest,com.habitrpg.android.habitica +pixelator bit,https://lh3.googleusercontent.com/-kVn5YXQBkQ0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMJQRDB1cDUwOK3Wm1abYVvD6501w/photo.jpg,Its great productivity app but not the one that motivates me or to fun to use personally. The game theme is cool but not the one I like. I like the original task apps better with all neat features since this one doesn't really have any.,3,0,,2018-10-09 22:14:09,,,newest,com.habitrpg.android.habitica +Morgan Harney,https://lh3.googleusercontent.com/-TUtjkZOmslA/AAAAAAAAAAI/AAAAAAAAATg/AAKWJJNQdnc1egXXAapg_C2WGrHNMBkyoA/photo.jpg,"The app itself is pretty good. My issue came from having difficulties canceling my subscription. I described everything I was doing to try to do it, what I was seeing instead of the option to unsubscribe, etc. The solution suggested did not help, so I described the situation further. The next response came from a different person, who suggested a method I had already mentioned was not working for me. After I replied again, I never got another response. I just figured out what the issue was, but I couldn't do so before getting charged again. Disappointed in the customer service.",3,0,,2018-10-06 03:15:51,"Hi Morgan, we're very sorry to hear you felt your experience was unhelpful. If there are any additional charges you'd like refunded please feel free to reach out again to admin@habitica.com",2018-10-11 17:12:15,newest,com.habitrpg.android.habitica +Duc Pham,https://lh3.googleusercontent.com/a-/AOh14GgG5MN3HNDSeOMpjt5dTNR-mkXNWTGTuhLxawJX,Laggy.,3,0,1.5.1,2018-10-02 10:58:36,"Hi Duc, Sorry to hear about the trouble. Our team is happy to look into any bugs reported. You can send a report by going to Menu - About - Report a Bug.",2018-10-11 17:04:45,newest,com.habitrpg.android.habitica +Pootilla T Hun,https://lh3.googleusercontent.com/a-/AOh14Gi_N9u5Z_5Skd3t0rLeTzhrSso4pptsvZUl3KNg,"This app is a fantastic idea, but man is it buggy. I'm constantly having to restart the app or check it later because it's bugging out. Would be 5 stars otherwise.",3,0,1.5.1,2018-09-28 15:19:05,Hi Pootilla! Sorry to hear about the trouble. Our team is happy to look into any bugs reported. You can send a report by going to Menu - About - Report a Bug.,2018-10-11 17:02:38,newest,com.habitrpg.android.habitica +Will Guise,https://lh3.googleusercontent.com/a-/AOh14GgQFw9ZlQywD7eQ1ZP1BiD2aex5wFCL73b6K9c,A lot of bugs for an app that tells you to pay to support its development.,3,0,1.5,2018-09-26 16:39:52,Hi Will! Sorry to hear about the trouble. Our team is happy to look into any bugs reported. You can send a report by going to Menu - About - Report a Bug.,2018-09-26 17:06:23,newest,com.habitrpg.android.habitica +Inaiê de Alencar Ceccim,https://lh3.googleusercontent.com/a-/AOh14GgX6kXAl2Z6Gd4q0F-F-DpkdP3P3JHv96JqZp5H,"First time and first day was everyting amazing, but the next day for several time it showed the ""connection error"" message. I loved everyting in the app, very visual and fun, so when this issue gets fixed i will come back to give more stars.",3,2,1.5.1,2018-09-26 01:13:31,"Hi Inaie, we had a server outage. We apologize for the inconvenience. The app should be working as normal now.",2018-09-26 17:07:45,newest,com.habitrpg.android.habitica +Rebecca de Vos,https://lh3.googleusercontent.com/a-/AOh14GiujDD47EwmJ5z2O1KGVTL2Lp3zBnjSm5cZlpMbgQ,"I wanted to give the app more stars as I love the concept, but it's so buggy. Especially with the dailies feature... all the dailies are linked together somehow. There are some things I do Mon-Sat for instance, but not on Sundays. But when I set a task to not repeat on Sunday, it sets all tasks that way. Very frustrating.",3,0,1.5,2018-09-24 14:37:32,"HI Rebecca, Sorry to hear about the trouble. Our team is happy to look into any bugs reported. You can send a report by going to Menu - About - Report a Bug.",2018-09-26 17:16:03,newest,com.habitrpg.android.habitica +Richard Dame,https://lh3.googleusercontent.com/-8ipmb8Xs5pk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPJK6g6rvPE0YsfKeX7-YSi8mgElA/photo.jpg,"This app has a nice interface and a great idea, but it seems to suffer the same issue I've found of all habit trackers. I can't easily keep track of multiple daily iterations of a habit. If I want to create a habit of say drinking 5 bottles of water a day, I want to be able to check off and keep track of each bottle drunk, then get rewarded when I finish all five. Most of the habits I want to develop fall in this category. Could this be implemented in the future?",3,3,1.5,2018-09-22 22:15:57,,,newest,com.habitrpg.android.habitica +Jill Fleming,https://lh3.googleusercontent.com/a-/AOh14GhM7b0Eqe2WzDaJ50u4RRoBwdYVD0NZSUXhKPg,"This app is great and it already helping me stay on track with some things. It's surprising how much imaginary experience points can motivate. But, I am having a bug where dailies can't be set for a given day, they just revert to all days being checked. I want this app to keep me accountable for working out on certain days, so this is a major flaw.",3,2,1.5,2018-09-20 12:35:00,"Hi Jill, Sorry to hear about the trouble. Our team is happy to look into any bugs reported. You can send a report by going to Menu - About - Report a Bug.",2018-09-26 17:17:11,newest,com.habitrpg.android.habitica +May Liongue,https://lh3.googleusercontent.com/-OXajaHOCpvs/AAAAAAAAAAI/AAAAAAAAO9A/AAKWJJM8ZoAwqn5qt4fhE0sjt_y75fLGQw/photo.jpg,With the latest update it seems that when I update the frequency for one task it messes up the frequency and repeat days of the week for another task which is annoying as I was using the app to track my weekly tasks,3,2,1.5,2018-09-14 20:14:30,,,newest,com.habitrpg.android.habitica +Courtney Bragg,https://lh3.googleusercontent.com/a-/AOh14GhBC3Jwl6li4jpDZUeaTcXRBHUd2gWkRa7ZgM_9,I love the idea of it but I am having a hard time trying to get started. As I am setting up my dailies anything that I set for weekly seemed like they are all linked together so if I change my days on one task it changes on something else. I like what it trying to do but if this isn't corrected then I will have to find another app.,3,0,1.5,2018-09-14 15:08:04,,,newest,com.habitrpg.android.habitica +Silver sky,https://lh3.googleusercontent.com/a-/AOh14GizsJkT-ZB6GlewTzDWZsQJooqGdzEnAguEd1Vaxg,In beta test have a many bug for example when i starts my day in my Hp is lost!!! I die agian and agian.i lost my EXP.I lost my sword.,3,0,1.4.3,2018-09-07 13:48:51,"Hi Silver Sky! Sorry to hear about the confusion. If you'd like to report any specific bugs for us to look into, you can do so via Menu > About >Report a Bug.",2018-09-13 17:41:59,newest,com.habitrpg.android.habitica +Narosenla Longkumer,https://lh3.googleusercontent.com/a-/AOh14GjahopfHoW8QXrP9IJLcKFCHOEQzGoHrm3rExap0Q,Please make the reminder work!!! It's really important for me to remember things because I forget and don't do it in the end.,3,0,1.4.5,2018-09-06 05:57:01,Hi Narosenla! Sorry to hear about the trouble. If you're still experiencing this issue you can report it via Menu - About - Report a Bug and the mobile team will investigate.,2018-09-13 17:51:13,newest,com.habitrpg.android.habitica +Elle McCann,https://lh3.googleusercontent.com/a-/AOh14GjhO1vuqIdxHjUCPCA8nPcxly3vd5SDKiblIvi2LA,"I like the concept of the app and the fun gamification of reaching your goals however it is SUPER buggy on Android. The app is constantly quitting unexpectedly, not closing tasks properly and not doing rewards properly. I've reported it multiple times now and there has never been any update to fix it. I recommend going with another app if you have an Android device to save yourself the frustration.",3,4,1.4.5,2018-09-03 16:49:41,"Hi Elle, Sorry to hear about the trouble! If you'd like to report any bugs you may have experienced so our team can look into them, you can do so via Menu - About - Report a Bug and the mobile team will investigate.",2018-09-13 17:54:37,newest,com.habitrpg.android.habitica +Jennissa Dei Arnoco,https://lh3.googleusercontent.com/-WAg0wXWJYxA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMcM3ILwfgBXB_Qf1BV7HnKB96P7A/photo.jpg,It needs to be online! And the tasks are very limited.. Response also are late,3,0,,2018-08-30 20:09:54,"Hi Jennissa, Thanks for your comments. We assume you mean you want an offline mode. We do hope to add this in the future. As for slow responses, if you're referring to the chats, most users only stop to chat between tasks so the chat may be slower than you're used to.",2018-08-31 01:29:18,newest,com.habitrpg.android.habitica +Aaron Huttner,https://lh3.googleusercontent.com/-Xi-ZX0PQtnA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMjWYgn_xObxKHr7ayMZ5QVtAF5lw/photo.jpg,"App is slow and unresponsive, makes using it a pain",3,1,1.4.5,2018-08-26 22:28:00,"Hi Aaron, sorry to hear about this issue. If you're still having trouble, please feel free to send us a bug report via Menu>About>Report a Bug and we'll investigate.",2018-08-31 01:35:07,newest,com.habitrpg.android.habitica +Azl Cedric Lopez,https://lh3.googleusercontent.com/a-/AOh14Ghc4CEA2ODI3weIOFvyYWgffxEYQ-ZXhKPLaDRprg,Widget not working,3,0,1.4.4,2018-08-19 19:49:17,,,newest,com.habitrpg.android.habitica +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"It's to complicated to really be useful. It's a great concept but I with +the interface was simpler.",3,0,,2018-08-14 16:22:51,,,newest,com.habitrpg.android.habitica +Josh Wyciskalla,https://lh3.googleusercontent.com/a-/AOh14GiUY9yVAsjIj_MG8OfZ5We3PGH6Qzyiwdsnp0bI,"I like it a lot, but I think it needs a way to tell what day you're in. It +does ask if you did things yesterday, but I sometimes get reminders for +things on the wrong days... It's still a very good resource.",3,0,1.4.4,2018-08-12 00:06:53,,,newest,com.habitrpg.android.habitica +Lydia Cleveland,https://lh3.googleusercontent.com/a-/AOh14GgpZKZJrgQAN3g4zUoc_yYbPBNxrxOs89c6krkbYA,"I like the idea, especially the differentiation between dailies, habits, +and to-dos, but I need to be able to see the history. Uninstalled - will +stick to Daylio for now.",3,0,1.4.4,2018-08-07 05:32:35,"Hi Lydia, Thank you for your feedback. We hope to better integrate stats and history in the app soon, but in the meantime you might enjoy the Data Display Tool: https://oldgods.net/habitrpg/habitrpg_user_data_display.html",2018-08-09 20:42:33,newest,com.habitrpg.android.habitica +Kai MacCrory,https://lh3.googleusercontent.com/a-/AOh14Gh0ncmeHZW21zaiZVPleAiKl5VdMRtYnuoOY-2r,"I can't allocate skill points? While it's not something massive, it +certainly is a little frustrating.",3,0,1.4.4,2018-08-06 10:11:18,"Hi Kai, Thanks for your review! You can allocate skill points starting at level 10.",2018-08-09 20:40:34,newest,com.habitrpg.android.habitica +Stephanie T,https://lh3.googleusercontent.com/-ktCaZzXr9NU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP71ASqio-W5w-be5Ssy4L45YXOHQ/photo.jpg,"It's a good app but it always need to be online to use the app. Most of the +items are in-app purchase.",3,0,1.4.4,2018-08-04 03:38:28,,,newest,com.habitrpg.android.habitica +Mariah Schurman,https://lh3.googleusercontent.com/-MUZPWx7VNgc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNTj_qA3wBxkOwSLT5TYfN6MRT5Eg/photo.jpg,"I would like it better if you could add days of the week that would be +super helpful. For example, I only workout Monday thru Friday so if I could +have it remind me Monday thru Friday that would be super helpful",3,1,1.4.4,2018-07-28 20:16:01,,,newest,com.habitrpg.android.habitica +Boipelo Zuma,https://lh3.googleusercontent.com/-gw6YbbsBgOI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPa3Su-LVWi44gPWfMyYitCU5bsfg/photo.jpg,"It's a great concept. Though I uninstalled it. It feels too playful and the +graphics and interface attract too much of my attention. I would have kept +it if were simpler, more plain, less 16 bit (in fact I'd rather not have +the avatar) - if it did a better job at making me feel like the tasks I +complete are meaningful, purposeful, tangible - not like I'm doing them +because I'm some silly video game character and I want more shiny pixels. +The tasks I would have listed on the app are real life tasks with real life +consequences. In summary I was hoping it'd bring a sense of game to my +life, not make me feel like my life is an inconsequential game",3,1,,2018-07-19 21:56:42,,,newest,com.habitrpg.android.habitica +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I like the idea and will probably keep using it but it keeps telling me I'm +not connected to the internet even though I am. I don't know whether it's +working fine and throwing errors or if I might be missing features due to +these errors. Nonetheless worth downloading.",3,0,1.4.3,2018-07-18 18:18:32,,,newest,com.habitrpg.android.habitica +Moisés Rivas,https://lh3.googleusercontent.com/-OVHGSlL5X9A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNOmzdEtpJKZs0r8icv_nE5EtqIPg/photo.jpg,"Everything is amazing but one thing: needs a high quality internet +connection. If the connection is just a little bit low the app works +terrible. Sadly i don't have a very good internet connection so as much as +i love the app doesn't work for me",3,0,,2018-07-16 04:15:43,,,newest,com.habitrpg.android.habitica +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Not available offline. Tsk.,3,1,1.4.3,2018-07-15 13:04:20,,,newest,com.habitrpg.android.habitica +Richard Bingley,https://lh3.googleusercontent.com/a-/AOh14Gj3vi5afdXl9p26MQ6zciz7nqOoyB0ibJg6F1c6,"The application consistantly tells me I have no internet connection, and +has become a pain to use. I know I have internet, it is slow, but present. +The application would be much more useful if it could keep track and update +your progress when it feels the connection is stable enough.",3,1,1.4.3,2018-07-06 16:50:45,,,newest,com.habitrpg.android.habitica +Leandro Lemos,https://lh3.googleusercontent.com/a-/AOh14GhRoYa9Aw3dcbQOv_l3yfJtGbv29Ii6sjTecyRJ7A,"Uhmm I love the idea of this and enjoy using it at the same time. It will +be amazing if the app could offer to change the date format, for ex +actually it is month/day/year for me it's too weird, I'll prefer something +like year/month/day or day/month/year",3,0,1.4.3,2018-07-02 06:49:17,,,newest,com.habitrpg.android.habitica +Minh Ngoc Dang,https://lh3.googleusercontent.com/-82P1u28Fmqg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNG5X5hMRcarBLx28640pir-R9PWg/photo.jpg,"I'm liking the app so far, but the widget does not sync with the app so +renders that function useless.. suggestion to add a refresh button to the +widgets so i don't have to open the app every time",3,0,1.4.3,2018-07-01 10:34:41,,,newest,com.habitrpg.android.habitica +Rasib Nadeem,https://lh3.googleusercontent.com/-51UjhWUXNbc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOY8TZyQWDSISTqtDAFWV9LVhF3Iw/photo.jpg,Add an offline check in feature,3,0,,2018-07-01 09:56:35,,,newest,com.habitrpg.android.habitica +Burung Pipit Jantan,https://lh3.googleusercontent.com/a-/AOh14GgyH3FXJ_qW7Mr7uBUiV4IoGyhWp-QdHzZjYFNDkw,"Could you make it offline for while.. i dont like being forced to be online +all the time..",3,1,,2018-06-23 17:07:15,,,newest,com.habitrpg.android.habitica +Janine Avenido,https://lh3.googleusercontent.com/a-/AOh14GjrZny4GITejv8EepBwxjfyFsc0Ks6cYXzKDlSsvg,Too many bugs,3,0,1.4.3,2018-06-23 00:41:24,,,newest,com.habitrpg.android.habitica +Nii lomotey,https://lh3.googleusercontent.com/-AWGsnm8EsUo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOXyr51gCCSjkwaPyIfUKxtxd4yiw/photo.jpg,"It's really good, I would appreciate it even better if I could save tasks +offline.",3,2,1.4.3,2018-06-22 13:05:42,,,newest,com.habitrpg.android.habitica +Sarah parsons,https://lh3.googleusercontent.com/-qpb4vD7YTGk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO60yATfkuGNv04G-j5SQwfSYujcw/photo.jpg,"I can't register because everytime I trie it says ""only letters from a to +z"" and ""only numbers from 0 to 9"" but I follow that and it still says the +same thing everytime I trie again. Probably because at the start it say +login when im registering. Do please fix this!",3,0,,2018-06-18 23:44:48,,,newest,com.habitrpg.android.habitica +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Unconfortable interface, requires an internet connection, often freezes",3,1,,2018-06-17 15:42:31,,,newest,com.habitrpg.android.habitica +Jeremy Vandale,https://lh3.googleusercontent.com/a-/AOh14GjYnaXfKcddVzwOuKd7FNzEGjoDe6-D1CllWeTscw,well it was good until it just kept crashing and I don't know why,3,0,1.4.3,2018-06-14 00:23:34,"Hi Jeremy, sorry to hear about the trouble! If you are unable to report from within the app due to the crash issue, please feel free to send us an email at mobile@habitica.com with any details you can provide so we can look into fixing this.",2018-06-14 17:11:34,newest,com.habitrpg.android.habitica +Marie,https://lh3.googleusercontent.com/-7HJz1qwTlCY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNthiwStai6pMnQG9Rs230z_U1uQg/photo.jpg,"This is a really good app. It's what I'm looking for. But I wish it was +available offline so that I could add/edit my tasks, to dos, habits and +rewards",3,1,1.4.3,2018-06-03 04:24:09,Hi Marie! Thanks for your feedback. We hope to add an offline mode in the future.,2018-06-07 21:28:02,newest,com.habitrpg.android.habitica +Sourav Bhowmick,https://lh3.googleusercontent.com/a-/AOh14Ghg0pwdOuUID_FWI0_Rf6LwTGhvvO6deBNuIM9B3w,"Okay.. thing is this app is almost gender biased.. the starting avatar it +gave is already set in female.. and you'll have to earn something to get +beard and mustache... I thought it will be custom task set ups.. but it's +already given... Lags a bit too..",3,0,1.4.3,2018-05-30 10:09:44,,,newest,com.habitrpg.android.habitica +Irene Vera,https://lh3.googleusercontent.com/a-/AOh14GjUq_udDB6mefgeMOW-R8sdcsJ6LrwVpD2EXJFB3g,"I love this app, buuuut... There's a lot of small simple things that can be +added to the actual organization system that can make it much more +effective on people For now (bigger concerns), - PLEASE allow task ( and +etc.) making/ setting/ marking (and etc.) to be allowed to be done OFFLINE, +it's worth it and will be effective trust me - when making tasks and all +that good stuff there's an option to have a start date. This does nothing, +I suggest that this should let the said task or etc to only show up on the +date you stated, or have a tag you can activate to show it, or at least not +turn red or damage you until the start date of your choice, or just some +concept of long term task setting(please) - when I try to make a party in +the mobile app it directs me to a window in chrome, that then tells me to +use the mobile app. Really love this, best of wishes in developing :)))",3,1,1.4.3,2018-05-29 14:45:15,"Thanks for your comments, Irene! We'll pass them on to the team. We'd love to add an offline mode but we have a very small developer team and that process is very intensive. We're open source and welcome help if you have programming skills- learn more here: http://habitica.wikia.com/wiki/Guidance_for_Blacksmiths",2018-06-01 21:58:53,newest,com.habitrpg.android.habitica +humus is great,https://lh3.googleusercontent.com/a-/AOh14Gj9CHV9xnTGVyRyWn5MpvbGVupStHpJa7b65iVoTw,"I really do like this, but there's one (probably petty) reason I have given +it a three. My class. I cannot seem to change from warrior to something +else. This is a problem to me because I personally hate the warrior class +in games. This makes me less motivated to stop my warrior from losing +health and the such. I would be much more motivated to help my healer.",3,0,1.4.3,2018-05-22 07:21:04,"Hi George, starting at level 10 you can select a different class. You can learn more about this here! http://habitica.wikia.com/wiki/Class_System",2018-06-01 22:03:35,newest,com.habitrpg.android.habitica +tyinne,https://lh3.googleusercontent.com/a-/AOh14Gh_KZBrXwW0tzMx0I-HNa199pT2o8sNg9YfJ9AhmQ,"awesome app, love the prize feature. i would give 5 stars if these two issues were solved: 1. app does not notify me about dailies even though i set a reminder for 7:45am; 2. one of my hobbies that can be checked as both positive and negative stays green forever after checking once, does not refresh at night, is that how its supposed to be?",4,3,2.5,2020-04-03 06:44:55,,,most_relevant,com.habitrpg.android.habitica +Shanna Neumiller,https://lh3.googleusercontent.com/-m_9G7W0FY0g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPEnAhPQVqnMvgey4FiMua076pQ3g/photo.jpg,"Habitica is the best productivity app I've used thus far. It lasted me for months. The quests are the most motivating feature, and I was able to take down a couple bosses solo. However, motivation dried up weeks into my first fetch quest because despite being extremely productive, I had no chance of finding even one shard. Unless you're comfortable teaming up with a bunch of strangers to take on quests, there becomes a point when being solo makes the quest motivation feature impossible.",4,0,2.5,2020-03-31 19:10:39,"Thanks so much for your review, we're happy to hear Habitica was helpful for you! Can you use Menu - About - Report a Bug about the fetch quests? It's slower solo, but shards should *definitely* turn up, especially if you're being productive! I hope we can get that sorted out and get your motivation and productivity back. :)",2020-04-01 04:21:54,most_relevant,com.habitrpg.android.habitica +djdjxj jejrjr,https://lh3.googleusercontent.com/-8LQYDDrfauQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMI7OtpFN8h3TIiRMAMdO432OTO9A/photo.jpg,"The game is pretty fun, but it's really frustrating to pay 100 coins for an enchanted armoire chest and only get experience or food. It's honestly beginning to ruin the game for me. If it doesn't change in about a month I'm rewriting this review to leave a lower score.",4,0,2.5,2020-04-02 01:44:30,"Hi, thanks for your review, and we hope it's working for you otherwise! The Enchanted Armoire was designed as a gold sink for players with lots of extra gold, but if you like using it now except for its demotivating randomness, you can always go to Fix Character Values (under Settings) and give yourself back the gold to try again.",2020-04-03 03:41:40,most_relevant,com.habitrpg.android.habitica +Elo. Chan,https://lh3.googleusercontent.com/a-/AOh14GgoSCGY4nmVctLIZ2hHcm7hbMomOBM3sc_NBeALAQ,"I've tried quite a few rpg-like to-do list apps and I must say this one is the only one that I find genuinely enjoyable, and actually kinda feels like a game. You can tell a lot of effort was put into the aesthetic, everything is very easy to access and is pleasing to the eye. Although I think there should be a way to uncheck to-do's. I keep accidentally clicking on them in the widget and remaking them every time is starting to get annoying.",4,9,2.4.3,2020-02-17 14:47:22,"Hi Elo, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2020-02-21 00:15:30,most_relevant,com.habitrpg.android.habitica +Sarah Raulerson,https://lh3.googleusercontent.com/-lbMCVHYQMCE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNUGWzUmsTIC874w2w2yCCZ45FUaw/photo.jpg,"I love this game. It has helped me do much It's a bit of a learning curve. It would be nice if challenges were visible from the app in all of the guilds, and I would also like to see the last day and time that a habit was marked, because the colors don't always change and if you have a lot of habits it gets confusing. Otherwise, this app is brilliantly done and will be getting my monetary support in whatever way I can afford.",4,5,2.4.4,2020-03-03 21:20:52,"Hi Sarah, thank you so much for this thoughtful review and your kind words! We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2020-03-13 18:37:37,most_relevant,com.habitrpg.android.habitica +Joshua Marshall,https://lh3.googleusercontent.com/a-/AOh14GhqzrJJbaTdxf0an3DHYPd9A8InC5WmIQwlgDmDQg,"Great app! I would like more progression content. Resetting levels is easy implementation, but gets stale quickly. Mages do too much damage. But this app had been transformative and amazing. I will consider contributing to development.",4,0,2.5,2020-03-20 17:54:41,"Hi Joshua, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback, and you can learn more about contributing here: https://habitica.fandom.com/wiki/Guidance_for_Blacksmiths",2020-03-20 22:43:47,most_relevant,com.habitrpg.android.habitica +Suspicious Lynx,https://lh3.googleusercontent.com/-6AjobsdeuFA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOh_kTdKg7C4p4-wwjF08qDmbyNzA/photo.jpg,"Thank you. I love the app and it's helping me immensely already. The only suggestion I can think of is, I wish there was a way of keeping track of my previously completed tasks so I could look back on the progress I've made. It would feel much more meaningful that way and serve as additional motivation.",4,30,2.4.2,2020-02-03 08:34:21,"Hi Lynx, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2020-02-06 23:57:07,most_relevant,com.habitrpg.android.habitica +Kladias,https://lh3.googleusercontent.com/-6ExeycSDBpM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM1T4Xo1_4ih0NbfLv2qDJNTZbb2g/photo.jpg,"It worked fine for a while, but now every time I click on a task/habit/goal to edit, the app crashes. I can tick off the task and plus on the habit just fine, but I can't edit anything now... Please look into fixing it soon? Edit: thank you, the latest update fixed it all!",4,7,2.5,2020-02-28 03:51:36,"Hi Kladias, sorry about that, the issue with adding tasks should be fixed in the latest update that was just pushed today. If you're still having trouble, we're happy to investigate. You can send a bug report directly to the dev team via Menu - About - Report a Bug.",2020-02-27 23:56:18,most_relevant,com.habitrpg.android.habitica +Tanner Schier,https://lh3.googleusercontent.com/a-/AOh14Gg5jssOx5v9CorDYSvynzuhcjV8EM1uNdwpUJGX,"So far so good, you have to be willing to set on the app for a bit to figure it out. It's a rpg game based off of truth. The app does freeze fairly frequently but you just have to close it and reopen it and everything is back in order.",4,0,2.4.3,2020-02-11 17:59:55,"Hi Tanner, thanks for your review! If you'd like to send us more detail to help us investigate the crashes you mentioned, you can send that information directly to the support team via Menu - About - Report a Bug.",2020-02-13 20:35:10,most_relevant,com.habitrpg.android.habitica +John Salerno,https://lh3.googleusercontent.com/a-/AOh14GgR3xR_5VEzff3_h-5pmQUBRaWRMvpE62pMXfGD,Great app and service! The user base is amazing and the staff is awesome. No notification when a challenge ends and no way to automatically remove its associated tasks. Can't read the full text of challenge tasks before joining. The health/experience widget doesn't display any information.,4,9,2.5,2020-03-05 22:39:26,Hi John! Thank you so much for your review. We'll keep your feedback on widgets in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback if you'd like to send more details. Direct reports provide details that help greatly with our bugfix efforts.,2019-11-05 19:57:01,most_relevant,com.habitrpg.android.habitica +Noa Binnendijk,https://lh3.googleusercontent.com/a-/AOh14GjvKQ1jkTumITZzXMY4JoDZ6lGQ7GbWQ196fWyF,"I like this app, and it's really helped, but now I can't open it anymore. It crashes while loading, every time. I've tried troubleshooting, restarting, deleting the cache, but nothing seems to work.",4,0,2.4.3,2020-02-07 09:23:15,"Hi Noa, sorry to hear about this issue. Please let us know if you're still having trouble via mobile@habitica.com and the team will look into it.",2020-02-13 20:30:42,most_relevant,com.habitrpg.android.habitica +Dani L King,https://lh3.googleusercontent.com/a-/AOh14Gh16LGwDIJEHK0naPQR1CPaiijz63cD26P66nuo,"There are some things i feel need to be ironed out e.g. i found feeding the pets/mounts a bit buggy, but overall it has definitely helped me think more about my personal goals and how to approach them",4,0,2.4.2,2020-02-03 01:53:02,"Hi Dani, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2020-02-06 23:56:55,most_relevant,com.habitrpg.android.habitica +Isaac Muniz,https://lh3.googleusercontent.com/a-/AOh14GhkaJM4T-0lGmoBb0ndOUXAz-zSqdHGskPxAliiww,"Great app, would be nice to be able to check the checklist items in todos.",4,0,2.4.4,2020-03-14 22:12:21,"Hi Isaac, thanks for the review! You should be able to expand the checklist by tapping on the right side where it says how many checklist items you have, then you should be able to check those items. If that doesn't solve the issue, let us know via Menu - About - Report a Bug and we'll look into it!",2020-03-20 22:35:02,most_relevant,com.habitrpg.android.habitica +Pyroaa Backup,https://lh3.googleusercontent.com/a-/AOh14GhQeE8Hw7UxmXIYLSNVJNsYWGoYH0pPrcfaAXiG,Great concept! Has me waking up on schedule and doing my tasks so I dont loose life and earn exp! Just one thing. I cant do quests. I got the dust bunnies quest but I have no clue what to do with it. Help?,4,0,2.5,2020-03-26 08:10:34,"Hi Pyroaa! Thanks for your review, we're happy to hear Habitica has been helpful for you. You can learn more about how to go on Quests here: https://habitica.fandom.com/wiki/Quests",2020-03-26 20:03:22,most_relevant,com.habitrpg.android.habitica +Phil Silver,https://lh3.googleusercontent.com/a-/AOh14GgFvFWqto0_Sx6TiZDT9iNmBEvWy_7lcQauUbCG,"I couldn't change the language of this software, I tried it again and again, but the language didn't change.",4,0,2.4.4,2020-03-07 22:34:50,"Hi Phil, you should be able to change your Language in Settings once you complete the tutorial. Not all translations are complete, as our translations are done by volunteers. If you'd like to help, you can learn more here: https://habitica.fandom.com/wiki/Guidance_for_Linguists",2020-03-13 18:41:42,most_relevant,com.habitrpg.android.habitica +Lynn Soh,https://lh3.googleusercontent.com/a-/AOh14Gh5Uoc4D1ayeweE6DsEKV7J4i31LfQGZOS42jDLgA,"It has been an effective motivator and tracker for me to accomplish the smaller tasks that get me closer towards my bigger goals. But there seems to be a Bug - I can't seem to receive a friend's Party invite, though I am able to create my own party and invite friends to it. It's a one way street in my app! Joining guilds and the self-care, self-sabotage info have been most educational and helpful.",4,0,2.4,2020-01-24 03:58:44,"Hi Lynn, sorry to hear about this issue. Please try updating to the newest version, and let us know if you're still having trouble via Menu - About - Report a Bug and the team will look into it.",2020-01-24 21:48:08,most_relevant,com.habitrpg.android.habitica +Magnus G.,https://lh3.googleusercontent.com/a-/AOh14GiQc0_t67q-OcGVLyG7IBmGltr4aHSsiwPbMPOxIg,"I like the app a lot, but some features are a little annoying. I have a few suggestions. - More ways to tweak what the widgets look like (currently they take up a lot of space). - It would be nice to see the completed tasks together with active tasks instead of them disappearing. - Task subcategories! Please! 💚 - Biggest gripe: because of the way the entire list item is like a button, I keep accidentally checking tasks that weren't actually done. +Bugged unchecking. Pls fix. Thanks💚💚💚",4,0,2.4,2020-01-21 15:52:14,"Hi Magnus, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2020-01-24 21:44:12,most_relevant,com.habitrpg.android.habitica +Simon Ghoul,https://lh3.googleusercontent.com/a-/AOh14GhXniUhrf7qneOsggpAMSAs0zdJ22oPW6ccGGz274c,"I just want to say that the tutorial was too much info, things like this should be explained in a short and concise way, at a good pace. It was just too long and too much to take in. I didn't even try the app though, I can't say what rating it deserves. I am unnistalling but I may come back to it in the future, it's not you, it's me. (Also, you can't delete your account on mobile but you can on desktop. I suggest people to try the desktop version since it may have more features)",4,3,2.4,2020-01-20 03:03:11,"Hi Simon, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica.",2020-01-24 21:43:19,most_relevant,com.habitrpg.android.habitica +Clayton Hinshaw,https://lh3.googleusercontent.com/a-/AOh14Gi_ze3Iw4RF67ztHWUFjw8ekRhemhoeMMwVYQzJtQ,"It's been a good way to get things done, and the concept of an RPG is very well executed. The reason for 4 out of 5 is simply regarding the interface. My wife uses it on iOS and it is light-years beyond what we have on Android. Much cleaner, more useful information, and less clunkiness.",4,19,2.4,2020-01-16 19:51:30,"Hi Clayton, thank you so much for this thoughtful review. It would be very helpful for us to know more details about the differences you're seeing in the experience on Android vs. iOS- you can send feedback directly by going to Menu - About - Send Feedback.",2020-01-24 21:34:27,most_relevant,com.habitrpg.android.habitica +Itsemoboii,https://lh3.googleusercontent.com/a-/AOh14GjxDVa_2yio9XVqv-rm3BzvbJwnWDYO35wiZRkM,It was amazing! I just didn't have the time to set it up all the way.,4,0,2.5,2020-04-01 18:33:03,"Thanks for the review! If you use the same log-in information, your character will still be waiting for you (in the app or on the website) if you want to keep setting it up. If you have feedback about the new-user experience, you can use Menu - About - Send Feedback to send it our way.",2020-04-03 03:52:46,most_relevant,com.habitrpg.android.habitica +Riyango,https://lh3.googleusercontent.com/a-/AOh14Gg2jfQPX8kSYQI8A6RU5bnAWhYq6cQcq_D3JnApQA,The ios app is lot better than this. please improve it as soon as possible.,4,0,2.4.2,2020-01-22 16:28:38,"Hi Riyango, thank you so much for this thoughtful review. It would be very helpful for us to know more details about the differences you're seeing in the experience on Android vs. iOS- you can send feedback directly by going to Menu - About - Send Feedback.",2020-01-24 21:46:50,most_relevant,com.habitrpg.android.habitica +Dany Christian,https://lh3.googleusercontent.com/a-/AOh14Gj0hYR2ANBuccSXNK6nPNu1RSd2aIBbTaEHwDRWSb4,"I really like the concept of this app, the style, the features, and it has done its part in motivating my studies and organizing my life. However, the app needs some serious redesigning. The layout is difficult to navigate and the chat function is almost useless. The way challenges are organized could also use improvement. All in all, I like using it (make an account a month ago), but the functionality needs to be improved",4,2,2.3,2019-12-04 05:10:37,"Hi Dany, thanks for your review! We'll keep your feedback in mind as we continue to work to improve Habitica. You can contact us directly by going to Menu - About - Send Feedback if you'd like to give us additional details.",2019-12-06 01:17:04,most_relevant,com.habitrpg.android.habitica +SY Ng,https://lh3.googleusercontent.com/a-/AOh14GgMweVNsMRVf8WUHilA0YKblQQSdfXCuiKaCfaFIw,"This app is an awesome (and fun) to-do list! I like it a lot and it helps me out with my life and tasks every day. However, the app crashes whenever I try to sort to-dos by scheduled and it's getting a bit frustrating.",4,0,2.4,2020-01-16 01:04:36,"Hi Sy, sorry to hear about this issue. Please try updating to the newest version, and let us know if you're still having trouble via Menu - About - Report a Bug and the team will look into it.",2020-01-24 21:32:31,most_relevant,com.habitrpg.android.habitica +Kathy Swords,https://lh3.googleusercontent.com/a-/AOh14GjOZor0aySGguifzoLsedTnqgI5-oJPrCynEUeYRQ,"So far it's pretty good. I've been using it about a week. Sometimes it doesn't refresh, but the other users on the app seem positive and friendly. There is a lot that I am learning through users that isn't actually explained in the app. Like if you don't do all your daily tasks, the whole party takes damage. So yeah, no pressure! It would be nice for a better help options or a more detailed in-app-fist-time training/learning session. Every 'first' should option for more info!",4,5,2.4,2019-12-31 02:38:18,"Hi Kathy, thanks for your review! We'll keep your feedback in mind as we continue to work to improve Habitica. You can contact us directly by going to Menu - About - Send Feedback if you'd like to give us additional details.",2020-01-04 00:58:47,most_relevant,com.habitrpg.android.habitica +Puroo Kumar Roy,https://lh3.googleusercontent.com/a-/AOh14GjU9C_IaWp7ee8Jj6F-raUhD9Xhy4RQ6rZOxjrQqQc,Could be better if it was completely free.,4,0,2.4.3,2020-02-14 15:05:01,"Hi Puroo, thanks for your review! All items that can be obtained with our premium currency, gems, are cosmetic, and quests can be shared with partymates. There are also a number of ways to earn gems without using money- you can read more about them here: https://habitica.fandom.com/wiki/Gems#Obtaining_Gems_for_Free",2020-02-21 00:13:05,most_relevant,com.habitrpg.android.habitica +Mukesh Khanodia,https://lh3.googleusercontent.com/a-/AOh14GhtwQ4LtbYwoVBX5paZxlkZJiLgabSqfic8EbzPYg,Best app for daily Routine but there are some issue such as you can get lot of coins and increase your level to infinit though settings. You should improve that because Some one donot get motivated for doing task when you knew that you can change your level.,4,0,2.4,2020-01-22 08:25:05,"Hi Mukesh, thanks for your review. We included that feature in the game so that people can play in any way that motivates them. The real benefit to Habitica is the improvement to your real life, not your in-game stats.",2020-01-24 21:46:18,most_relevant,com.habitrpg.android.habitica +Ranaa Rahma,https://lh3.googleusercontent.com/-2a8tWZv3s2I/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNYOtrpPj6ngGq3l-yOPZ1XClR6fQ/photo.jpg,It really is worth it to download this app. Thank you for designing this wonderful app! Thnks so much,4,0,2.4.3,2020-04-02 02:18:46,"Thanks for your review and kind words, they mean a lot to us! If you'd like to share any further feedback, please feel free to reach out via Menu - About - Send Feedback.",2020-04-03 03:48:54,most_relevant,com.habitrpg.android.habitica +Brenda,https://lh3.googleusercontent.com/a-/AOh14GgWBmm4OXo_37RYgzFXv3TTp2uPisI_XTcB9Po-,"Have been looking for a way to incorporate the elements of gaming into making progress ""In Real Life"". Even tried inventing something for myself but paper tracking was a nightmare and having it in this app is just fantastic! Really like it and it has made a big difference! The only reason I took it down a star is because it depletes my phone battery really fast if I am in the app for very long, such as when I am shopping or browsing challenges, so I do these things mostly on my PC. Overall, great job! Would recommend this to anyone that enjoys gaming but is struggling with motivation in the real world.",4,14,2.2,2019-10-23 14:52:31,"Hi Brenda, hank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-10-25 00:22:15,most_relevant,com.habitrpg.android.habitica +Garrett Michael,https://lh3.googleusercontent.com/-vHFWJ-sUqyQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMVYgpUDzLgQtcqNbe4z4TpQ1ZyqA/photo.jpg,"Great idea and I'm enjoying it so far. Chores and errands are much more fun. My one gripe so far is that it seems like most items/quests cost gems, which are pay to play. I'm afraid i'll pretty quickly run out of free items/quests to strive for and then the app will lose its effectiveness. It'd be helpful if their were other ways to unlock gems outside of paying for them, like reaching extra high levels of productivity/habit building, etc.",4,24,2.4,2020-01-04 18:51:22,"Hi Garrett, thanks for your review! All items that can be obtained with gems are cosmetic, and quests can be shared with partymates. There are also a number of ways to earn gems without using money- you can read more about them here: https://habitica.fandom.com/wiki/Gems#Obtaining_Gems_for_Free",2020-01-14 18:07:54,most_relevant,com.habitrpg.android.habitica +Vanessa Peterson,https://lh3.googleusercontent.com/-sjVjB6k1UtY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMDfUPs7njtylDvipkuEpq8sHBLKg/photo.jpg,This app is awesome could use better graphics but overall the idea of it is legit af,4,0,2.5,2020-03-25 06:33:40,"Hi Vanessa, thanks for your review. Our artwork is done by volunteers from our community and is intended to evoke a retro style. Sorry it's not your cup of tea!",2020-03-26 19:50:16,most_relevant,com.habitrpg.android.habitica +Amber Harrington,https://lh3.googleusercontent.com/a-/AOh14Ghz9Dk-rVWPb9DojF_ul3hG5Fyy7W3V6H8bsXQj,"I've been using this app for about a year now, I think. I love keeping myself accountable, and tracking what I'm doing and what I'm not each day. Lately, I've been getting push notifications for every single message that members of my party are sending in chat, none of which mention me. I've switched off push notifications completely but they're still coming through all the time. This is the only thing stopping me from giving 5 stars!",4,2,2.2.2,2019-11-16 11:22:00,,,most_relevant,com.habitrpg.android.habitica +Rachel Ayn Davis,https://lh3.googleusercontent.com/a-/AOh14GiINkH37pFCYSD0q7Vueg3llJ5yNmzyfplnGN4G7A,"This app has really helped me get my stuff in order! It also has an active community and good challenges! It is a bit glitchy at times (things don't refresh, etc) but overall it's great! Edit: lol, the 'report a bug' is glitched on my phone :P I had to manually send my info over, in the middle of fixing a glitch where my day won't reset - been broken for a week.",4,14,2.3,2019-12-12 19:59:19,"Hi Rachel, thanks for your review and kind words, they means a lot to us! You can help us fix bugs by reporting them directly via Menu - About - Report a Bug.",2019-12-12 19:24:32,most_relevant,com.habitrpg.android.habitica +Jinjer Markley,https://lh3.googleusercontent.com/a-/AOh14GiHsb6hFbNrl3fvMQn_oCbZbWYRvRmOUEK0f0wD,"I'm easily motivated by things like points and streaks, so this app works really well for me to increase my productivity and decrease my anxiety. I use rewards for breaks, and find that I get unpleasant but short tasks done much more often, because I can earn breaks quickly by just getting them over with. I also get my long, complicated, multi-part projects done early. I gave it four stars because there are a couple of features I'd like to see, but it works great as is.",4,7,2.3,2019-12-10 13:17:36,"Hi Jinjer, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-12-12 19:26:44,most_relevant,com.habitrpg.android.habitica +Manic Surry,https://lh3.googleusercontent.com/a-/AOh14GgUaPjhbxu3YPfrFsUePeworNtwZ4i02TkJlVYji5M,"This is a very helpful and fun way to get yourself in the habit of doing things. The Daily Tasks are a fantastic way to get your daily stuff handled and check them off within the app. You've got the ability to create To-Do lists with due dates and notification reminders can make it ridiculously simple to get even the most complex task completed. On top of all this, seeing your character earn experience, new items and getting pets and mounts turns all the monotony into a wickedly AWESOME RPG.",4,4,2.3,2019-11-22 10:59:27,"Hi Manic Surry, thanks for your review! We'll keep your comments in mind as we continue to work to improve Habitica. You can contact us directly by going to Menu - About - Send Feedback if you'd like to give us suggestions.",2019-12-06 00:47:04,most_relevant,com.habitrpg.android.habitica +NotChelsie Elf,https://lh3.googleusercontent.com/a-/AOh14GjaGvN64nhE632bmGW81puyjnwVbqiIP8fzj484hA,"I'm surprised, this app actually works for me! It helped me procrastinate less, but I also realised it works only if I remind myself to check the app a lot. I recommend it for those who have really bad procrastination problems like myself. Even if the game style of this app isn't your thing, it's a great to-do-list app for habits, daily reminders and general to-do items. Only complaint is it's glitchy for me when I want to customise my avatar.",4,3,2.3,2019-12-05 10:37:12,"Hi NotChelsie, thanks for your review! Sorry to hear about the trouble with avatar customization.. If you'd like to send us more detail to help us investigate these issues, you can send that information directly to the support team via Menu - About - Report a Bug.",2019-12-06 01:18:54,most_relevant,com.habitrpg.android.habitica +Synoptic 1,https://lh3.googleusercontent.com/a-/AOh14GgGSb9scoYflyHsb2S2-FV72H67Ya-FPGL-kwfBsg,"Not very expressive frame for activity descriptions, must be in the first stages of development. Guilds look incredible diverse, very surprising it is a social app. Seems the leveling function is standard gaming and well embedded. Hope open sourcing it make it better fit. Passing habits to to-do would be desirable.",4,0,2.3,2019-12-11 05:38:57,"Hi Synoptic 1, thanks for your review! We'll keep your feedback in mind as we continue to work to improve Habitica. You can contact us directly by going to Menu - About - Send Feedback if you'd like to give us additional details.",2019-12-12 19:28:42,most_relevant,com.habitrpg.android.habitica +Dieter Finn,https://lh3.googleusercontent.com/-SdRyoXsmFv8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPf7AzGgbo_XMKM9qSgGE0V6w9GeA/photo.jpg,"I've been wanting a habit tracker that is fun and this definitely is. There are a few loading issues every so often, if those bugs weren't there I'd give 5 stars. All around though enjoyable, easy to use, and a great way to keep track of good and bad habits.",4,0,2.3,2019-12-04 19:27:47,"Hi Dieter, thank you for your review! Sorry to hear about the trouble with loading. If you'd like to send us more detail to help us investigate these issues, you can send that information directly to the support team via Menu - About - Report a Bug.",2019-12-06 01:18:20,most_relevant,com.habitrpg.android.habitica +Mariah Thomas,https://lh3.googleusercontent.com/-F16dvfTo24g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMqjTFhnZHUC-Op2Y0AUGFGsJ24jg/photo.jpg,"Amazing app. Some glitchy moments, but overall nothing too annoying. This app is so cool that I'm OK with some glitches because in a very short time its already brought so much value to my life! Brilliant idea to get you into good habits and out of bad ones. In my experience it actually works!",4,0,2.2.2,2019-11-04 16:33:02,"Hi Mariah, thanks for your review! You can help us fix bugs by reporting them directly via Menu - About - Report a Bug.",2019-11-05 20:04:32,most_relevant,com.habitrpg.android.habitica +Taylor Spock,https://lh3.googleusercontent.com/a-/AOh14Gid1bNK-J8oYnobayDZmxhqiAnVk8KDevd059JqlA,"Fun for university students The only problem is they don't order the tasks by date, do you have to be careful not to miss homework. Now that i think about it, it's actually a big problem for students using the app. It is fun, overall, and I do homework to keep my avatars alive. Think Tamagotchi",4,0,2.2.2,2019-11-07 15:12:03,"Hi Tayler, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-11-08 00:34:48,most_relevant,com.habitrpg.android.habitica +Just Mavrick,https://lh3.googleusercontent.com/-0qcFguWcjig/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMLxE0FBtefxQ2Vk5w1LlEkqOod3w/photo.jpg,"Every other month, I think I'll do better. I try again. I download this app. Everything gets back in order, so I uninstall it to free up space in my storage. Then I relapse. I download the app again. This is a never ending cycle of desperation, loss, and hope. I will always download this app. I will always uninstall it. 9/10 would recommend",4,2,2.2,2019-10-17 22:54:19,,,most_relevant,com.habitrpg.android.habitica +LethalTrap,https://lh3.googleusercontent.com/a-/AOh14Gg9EIq7sfW3XkM70zhh_uoAOczTytXyhK6ZI9aGCQ,This app is good and it's useful. Yes it's true that it has a few bugs here and there but the app itself is good and I like it. I wish it had an offline mode because I can't stay on all the time but I can see why we need to be online at all times.,4,0,2.3,2019-12-13 05:36:27,"Hi there, thanks for your review and kind words, they means a lot to us! You can help us fix bugs by reporting them directly via Menu - About - Report a Bug.",2019-12-19 18:25:47,most_relevant,com.habitrpg.android.habitica +Treat Peterson,https://lh3.googleusercontent.com/-Tv-UAwtYjFU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO4K2JErWs28B0H0HIzLiLjyllizg/photo.jpg,"I love this format, only thing that would make it better is some form of active side scrolling gameplay element, build your character throughout the week and then try to beat a level sort of thing",4,1,2.3,2019-11-30 17:07:47,"Hi Treat, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-12-06 01:15:14,most_relevant,com.habitrpg.android.habitica +FuchsiaShock,https://lh3.googleusercontent.com/a-/AOh14GgGOTmo6XGrwqE9iHh2Lgu13VVSuJEUesG5HnKiPTA,"A great idea, and the app itself has been improved a fair bit, but still a little bit too slow to respond to give five stars. Seems a bit like server congestion maybe?",4,0,2.3,2019-11-18 19:16:45,"Hi Naomi, sorry to hear our brief outage was a problem for you. Our small team always does our best to get the site back up as soon as we can, but we understand the frustration. Let us know if you're still having trouble via Menu- About -Report a Bug and the team will look into it.",2019-11-18 17:13:50,most_relevant,com.habitrpg.android.habitica +Kitt eos,https://lh3.googleusercontent.com/a-/AOh14Ghs2D_vue7xz-T4Z0u6d8JS0c8juHphgEoKFyOR,Pretty good app that helps me stay organized. Could use a few improvements but overall I enjoy it,4,0,2.4,2020-01-14 17:16:23,"Hi Kitt, thanks for your review! We'll keep your feedback in mind as we continue to work to improve Habitica. You can contact us directly by going to Menu - About - Send Feedback if you'd like to give us additional details.",2020-01-14 18:22:54,most_relevant,com.habitrpg.android.habitica +Inf Win,https://lh3.googleusercontent.com/a-/AOh14Gi0Wkxo_YpfdUji57LEsxM06VaiINm5j6UtiqQM,"Really nice app that is easy to use. Would be cool to see a feature where you can build things, like building a village and materials for this are acquired through completing tasks/habits",4,6,2.4,2019-12-30 01:01:02,"Hi Inky, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2020-01-04 00:57:15,most_relevant,com.habitrpg.android.habitica +Nikki Davern,https://lh3.googleusercontent.com/-mhL6YfDqOlA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOXp0vMWatWB3L0yHWGlTIl5dgU-Q/photo.jpg,"couldn't create my avatar at first, but after that it worked fine.",4,0,2.4,2020-01-13 01:20:10,,,most_relevant,com.habitrpg.android.habitica +Samantha Lau,https://lh3.googleusercontent.com/-1dp5d8RfQII/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNnwFspZbba4fZXBnniF4g1CGol3Q/photo.jpg,Habitica is awesome! Only thing that it's hard to feed your pets with the app.,4,0,2.3,2020-01-13 06:03:59,"Hi Samantha, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2020-01-14 18:21:24,most_relevant,com.habitrpg.android.habitica +Sally Simpson,https://lh3.googleusercontent.com/a-/AOh14Gh1M3rPc30o5yJmWJqudtklPxqIRLBzMltfMB49bw,"Love habitica. I find the app often has one bug or another from update to update, so can't really give 5 stars, but the devs do a smashing job regardless so 4 stars from me.",4,1,2.4,2020-01-05 21:31:34,"Hi Sally, thanks for your review! You can help us fix bugs by reporting them directly via Menu - About - Report a Bug.",2020-01-14 18:12:10,most_relevant,com.habitrpg.android.habitica +moiz sohail,https://lh3.googleusercontent.com/a-/AOh14GjjNNuT1DrdlimOB4mbwHU_5wv-IXgux6eFwv5Vwg,"Can this please get a feature where I can add tasks when offline and it uploads to the server whenever I connect to the internet. At the moment, it simply deletes everything.",4,0,2.3,2019-12-01 20:17:40,,,most_relevant,com.habitrpg.android.habitica +unknown hunter,https://lh3.googleusercontent.com/-NhJZpJJG8QU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNamRFBivCzrXN0G725I8cz8d4qxg/photo.jpg,Its pretty good so far. My dailies just seem to never reset though. I got a streak of 2 and from then on it never moved forward,4,0,2.3,2019-12-18 04:00:06,"Hi there, sorry to hear about this issue. Please let us know if you're still having trouble via Menu - About - Report a Bug and the team will look into it.",2019-12-19 18:31:37,most_relevant,com.habitrpg.android.habitica +Brian Wightman,https://lh3.googleusercontent.com/-9kcMX8xRqYI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOLNZlwFF9CNqlxKk29kBmx8N1PbA/photo.jpg,Fabulous tool for task management by those organizationally challenged. For five stars it would need to include a calendar function.,4,0,2.2.1,2019-11-01 20:20:48,"Hi Brian, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-11-05 20:01:04,most_relevant,com.habitrpg.android.habitica +Mizuko P,https://lh3.googleusercontent.com/a-/AOh14GilGhAfXvqS3itO_mTzOCirlLSELKOYfoLoJ46vUg,The app is good and all. The only problem is that the reminder does not work.,4,1,2.2.2,2019-11-16 09:51:41,"Hi nyannakissu, sorry to hear about this issue. Please let us know if you're still having trouble via Menu - About - Report a Bug. A direct report will provide details that will help the team fix the problem.",2019-11-18 17:28:52,most_relevant,com.habitrpg.android.habitica +Abdul Rahman,https://lh3.googleusercontent.com/a-/AOh14Gh03vlKLyO8iX-mPqIHMrDHfBFGHCUAH-vseR1d,"I have been using Habitica for quite some time now and i must say, it has been the most useful in helping me establish a structure to my day. HOWEVER, the To-Dos are very limited in its functions. It's hard to implement a full task management (such as GTD methodology). It pretty much only supports next action steps, not any layers such as Projects or Waiting For. Also, syncing across devices can sometimes be problematic I hope they will improve the To-Dos and make syncing smoother.",4,1,2.1.1,2019-10-13 23:25:23,"Hi Abdul, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-10-17 21:26:43,most_relevant,com.habitrpg.android.habitica +V Q,https://lh3.googleusercontent.com/a-/AOh14GiowCBmFcWVRJcAkrF7V7g5cI0dMoNWajIguyeVlw,"I've been using this app since the beginning of December and it has really helped me with keeping on track with tasks and developing habits. However, there are a few issues with the party features. When a message is sent in the chat, no one is notified and we cannot respond appropriately unless we actively check. The chat and members tab also tends to not load up and I have to leave the app in order for it to work again. Navigating the app is also quite a hassle but it isn't a major issue.",4,0,1.6.1,2018-12-26 14:54:02,,,most_relevant,com.habitrpg.android.habitica +Jen Slow,https://lh3.googleusercontent.com/a-/AOh14GgqLEbdKxtv4BLJl7LU6lzEiuk8496r6jVXBvvGLQ,"The app's a bit glitch-y, not gonna lie, but it helps tremendously in my day-to-day life. The community aspect of it is amazing, I actually feel motivated by all the kind words. Good job, developers, my life's a bit less bleak now! c:",4,0,2.0.3,2019-12-18 12:28:43,"Hi Jen, thank you for your review and sorry to hear about the glitches you mention. Please try updating to the newest version, and let us know if you're still having trouble via Menu - About - Report a Bug and the team will look into it.",2019-12-19 18:31:03,most_relevant,com.habitrpg.android.habitica +Angel Wuff,https://lh3.googleusercontent.com/-hryx1Ug0mf4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO2WB7-nFal8ZCu05sBGY2ZQMrKLw/photo.jpg,"The app is a great concept helping me keep track of goals and be motivated to do the things I need to in a day. Friendly competition and cooperation keep things interesting and encouraging. Quests are wonderful long term motivation, along with the goal of filling the stable. It is discouraging, frustrating and hurtful when I try to check off dailies (or do ANYTHING on the app) and it doesn't let me because of connection failures. I lost health overnight because it didn't let me check off my dailies? Especially frustrating during quests. Myself and friends all have the ""connection problems"" in different locations on data, or wifi at the same time... Fixes are quick, and interactions/responses pleasant! Great app!",4,9,1.5.1,2018-10-13 22:21:14,"Hi Angel, we experienced a server outage. Our sincere apologies for the inconvenience. The site is back up now.",2018-09-26 17:14:06,most_relevant,com.habitrpg.android.habitica +John Allen,https://lh3.googleusercontent.com/a-/AOh14GhGaC0rTn7yGIR7EKWzdCn9uFAVlftz2awNNQAV0Q,"Guys - I really want to like this app more and give it 5 stars! Everything is there and I can see the work and effort that has gone into making it so thank you so much! But on Android the habits screen is quite buggy and won't let me adjust the streaks. The keyboard comes up but closes immediately so I can't do anything. The dailies work fine. I look forward to any updates you're planning but considering this is free, I think what you've achieved is great!",4,0,1.9.1,2019-05-15 16:15:46,"Hi John, thanks for your thoughtful review! Sorry to hear about the trouble- it would be helpful if you can send a direct report to our team via Menu - About - Report a Bug.",2019-05-16 21:37:34,most_relevant,com.habitrpg.android.habitica +Rebekah Perry,https://lh3.googleusercontent.com/a-/AOh14Gi-KJfOC8zmvTEs1ymiRBBG9cSoPRYoISZWAigp,"A really great idea with a lot of great features! I love it a lot. However, it's a bit unresponsive at times. Actions that previously worked will occasionally not go through for mystery reasons . And the widgets, while displaying correctly, have bad interactivity. Thats said, the art is cute, the features are helpful and extensive, and the positive impact it has on my habits is amazing",4,0,,2019-02-27 19:45:25,Hi Rebekah! Thanks so much for your thoughtful review and feedback. We'll pass your words along to the team.,2019-03-01 19:07:21,most_relevant,com.habitrpg.android.habitica +Brett C,https://lh3.googleusercontent.com/-D7Hz76CySjU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOTBFbTCimvTKkFUTADlvQmDnukig/photo.jpg,"I would have reported this as a bug within the app, but I found another bug when trying to do that. First one: when submitting a bug or feedback, it does not pass through the 'To' address into the email, so I'm not sure where to send it to. Second one: when editing a habit, daily or to-do text field, the keyboard pops up and disappears. A workaround on this (for my device) is to rotate the phone landscape. Using pixel 3. Otherwise, a very good app!",4,3,1.9.1,2019-05-20 16:50:28,"Hi Brett, sorry to hear about the trouble! Our team is aware of these issues and working to fix them as soon as possible. If you'd like to send us more detail to help us investigate, you can send that information directly to the support team via Menu - About - Report a Bug.",2019-05-28 20:40:44,most_relevant,com.habitrpg.android.habitica +Lori Hildebrandt,https://lh3.googleusercontent.com/a-/AOh14GjIhjLe6UFSm6vnjTYPotAodqMeovyMoDUuPaqm,Great concept. Reminders do not work and from some quick research it appears this has been an issue for literal years now. I was really hoping I could have the app remind me of tasks instead of setting a hundred alarms on my phone. I'd prefer not to have both. I'd really appreciate if reminders would actually work.,4,6,1.6.1,2019-01-02 00:27:44,,,most_relevant,com.habitrpg.android.habitica +Vince Schiavone,https://lh3.googleusercontent.com/a-/AOh14GiJuWcEiSzWdHIUVZaCWKoOjiGaAOf_b6OdTz-ebg,"A little buggy sometimes but all is forgiven for how much this app helps me be a more productive and motivated person. I have one request, please add some sort of real life stat tracker. The idea would be to assign tasks, habits, or dailies to certain skill categories and you could track points, levels, or hours for certain skills. For example, this would be cool for me to keep track of my progress towards mastery as a woodworker or painter etc.",4,0,1.7.1,2019-03-07 04:18:46,Hi Vince! Thanks so much for your thoughtful review and feedback- we'll pass your thoughts on to the team!,2019-03-20 21:08:34,most_relevant,com.habitrpg.android.habitica +Moneesh Prathap,https://lh3.googleusercontent.com/a-/AOh14GjQ3N8kf2HQCMJfDm0vTyH2VdRDjobfyZAxH8Uez9E,"The idea is good, but the app can be made better with some performance optimisation. For example, when I launch the app, it takes at least 3 seconds to synchronize and restart my habit list with the correct status. And all pop-ups only appear with a 2sec delay. Overall I like the idea, by I'm moving onto other habit tracker apps because this kind of gamification isn't for me :) Appreciate the app.",4,0,,2018-12-31 00:41:13,,,most_relevant,com.habitrpg.android.habitica +Tux Penguin,https://lh3.googleusercontent.com/a-/AOh14GhHlNpGIIv4Q0aFF8QoP8wHQm3mYG0wlYR5vvi9JA,"Pretty great app, motivates me to do stuff I normally wouldn't want to because of the prospect of leveling up. One small gripe I have is that if something with a reminder is marked complete before the reminder goes off, it still reminds you even though you've already done it. Also, sounds when you mark something, etc come out the Ringtone channel, not the Media channel.",4,9,1.7.1,2019-02-03 18:04:07,Hi Tux Penguin! Thank you for your review. We'll look into the issues you mentioned. You can also help us fix bugs by reporting them directly to the mobile team via Menu - About - Report a Bug.,2019-02-20 22:47:57,most_relevant,com.habitrpg.android.habitica +jae p,https://lh3.googleusercontent.com/a-/AOh14Gi1Y_x9VEwFj7pBxmizqd-CIowPm6sWzf5ZuJfKbhY,"love the idea! but the execution is kind of clumsy. there's little to no guidance with regard to how parties or challenges work, and the rewards seem to be random at best. the graphics are adorable and the app definitely has potential though! but it would be more user friendly to streamline the app because it can be overwhelming with so many choices and options (i.e. mounts, food, eggs, etc) that seem mostly arbitrary.",4,0,,2019-06-06 02:27:21,"Hi Jae, Thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-06-07 20:35:21,most_relevant,com.habitrpg.android.habitica +Jolee Warner,https://lh3.googleusercontent.com/a-/AOh14GhwJplXkHjv7l3EpFcPudVb6DFOfPIwAl5qBjuqKQ,"This app has been so helpful for me to be more productive, as i didnt take care kf myself before! i can't complain about anything, except sometimes when i first log in for the day, my dailies will be from yesterday and will take a minute to switch to today. I would love to see why so-and-so points are being deducted when you take damage from missed dailies! Like.... ""Clean (medium): -6 Health"" or something like that. I don't think I'll ever delete this app, and i look forward to any updates!",4,0,2.0.2,2019-07-20 04:15:46,Hi Jolee! Thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.,2019-07-23 16:42:40,most_relevant,com.habitrpg.android.habitica +Jennifer Leone,https://lh3.googleusercontent.com/-v6GVaSIQQjM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPVIArmEPW-7-xuCOBssjh_xlmsdg/photo.jpg,"I'm just starting out with Habitica and am liking it so far, but the To-Dos would be much more useful if they could be organized by due date. I've got like 25 things on that list, with due dates over the next two weeks or so, and it would be much easier to actually accomplish these things if I could easily see which were the most urgent instead of having to scroll up and down and compare dates in a mental tally.",4,13,1.7.1,2019-03-02 07:17:56,,,most_relevant,com.habitrpg.android.habitica +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I really love this app! It makes me more motivated in doing my tasks. But, the only problem is, after a week while using this app the pop up message ""Connection Error"" began showing up on my screen. I'm connected in our wifi and it's fast enough. If it's just because the app is ""under maintenance"", I would appreciate if you will put a message regarding on that like ""Under Maintenance: Go back for an hour"". It's working now! ^v^",4,6,1.7.1,2019-03-10 12:44:18,Hi there! Thanks for your thoughtful review! You may have run into some server issues we had at the time you posted- let us know if you're still having trouble via Menu>About>Report a Bug and the team will look into it.,2019-03-05 21:00:53,most_relevant,com.habitrpg.android.habitica +Bryce Chaffey,https://lh3.googleusercontent.com/-RwGsqmduF-k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMiHbHPtKO31zHXOxB8ojKwiIXIkQ/photo.jpg,"Great app, stability is still a bit shakey but you never lose anything even if there is a crash. Join this community if you are serious about getting your act together and having as much fun as you can while doing it. You get what you put into this and you don't have to pay a penny if you don't want to. But in my experience, when you meet the amazing people this place attracts, you'll find yourself getting more and more involved and wanting to contribute however you can.",4,5,1.8,2019-04-10 00:34:23,"Hi Bryce, thanks so much for this thoughtful review! If you have any further feedback you'd like to share with us, please feel free to send it along via Menu - About - Report a Bug.",2019-04-24 02:25:02,most_relevant,com.habitrpg.android.habitica +Dolly Chen,https://lh3.googleusercontent.com/-deVNjDPXB4Q/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNGOJyD_G8M882W9sf3O6J-v1Mvtg/photo.jpg,"I LOVE habitica, however I m think the app misses a lot of functionality when compared with website. For example the challenges in a guild is not displayed and the task detail in challenges are also not displayed. I mainly used the web version, but it would be great if there are not much differences between the website and this app!",4,3,1.6,2018-11-19 00:30:21,"Hi Dolly, thank you for your review and feedback! We're working hard to add more parity of functions across platforms.",2018-11-30 20:17:47,most_relevant,com.habitrpg.android.habitica +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Very nice app for productivity. My favorite feature is that tasks and dailies that are finished can he hidden. However, it requires connection too much. Wouldn't mind syncing from time to time but I'd really hope there could be a way to tick off tasks even offline. Also would love to see ""weeklies"" or something that doesn't reset everyday for goals like ""go to gym 3x this week"" or ""walk dogs 5x this week"". Integration of calendar events would also be nice.",4,10,1.7.1,2019-03-01 04:43:44,Hi there! Thanks so much for taking the time to leave this feedback. We're working on implementing the repeat options you mentioned- they're in the testing phase now although we don't have an exact ETA.,2019-03-01 19:03:50,most_relevant,com.habitrpg.android.habitica +Monty Watson,https://lh3.googleusercontent.com/a-/AOh14Gh8H5bz2JUOq180lTGIQ-GbMcimmHzLTFWJAotCmg,"I only started using it yesterday, and so far it is interesting, and I think it will be useful. I'd give it 4.5 stars, but that isn't an option, so 4 it is, for now. I'd really like to see a better way to organize Dailies, preferably alphabetically, so tasks I tag as Morning will show up before Night (though admittedly, that wouldn't help if I labeled any 'Afternoon' or 'Noon').",4,4,1.8.1,2019-04-21 14:20:22,Hi Monty! Thanks for your review! We'll keep your feedback in mind as we continue to work to improve Habitica. You can contact us directly by going to Menu - About - Send Feedback if you'd like to give us additional details.,2019-04-24 02:45:39,most_relevant,com.habitrpg.android.habitica +S. W.,https://lh3.googleusercontent.com/-accicVETUXw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJObZ-ojw8-CkS36pKdrdnszrSx2jw/photo.jpg,"A fun way to get into habits. Makes me want to do things in real life as I find it very rewarding. I think it would be helpful if there was a timestamp on the dailies/habits as to when you last checked the item off. I don't have the best memory and feel like some days I double up on certain tasks because I can't remember if I've checked it off or not alredy 😅 I would like to see how long it has been since I last did a task, again, I often forget. Other than that it's fantastic!",4,12,1.7,2019-01-16 14:46:19,,,most_relevant,com.habitrpg.android.habitica +Joel Macha,https://lh3.googleusercontent.com/-RpBSDkM79UU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMUfHkaz0guNos4VDxMgqNH2x0wzQ/photo.jpg,"Cool app, but I wish I could see everything I own at once. When I get a new item, I have to search every inventory screen to figure out where is went. Confusing for new players. Also, if you don't have a party, it's basically a checklist since all the gane modes are forced multiplayer.",4,0,1.6.1,2019-01-06 21:01:17,,,most_relevant,com.habitrpg.android.habitica +steven foster,https://lh3.googleusercontent.com/a-/AOh14GhHsT6JoE4M0sI3_vBiL8vvqMSt9mypPWbB38-t2g,I wish I could control the reminders for my tasks more. Like the volume or what noise it makes. Other that that the app is great for keeping track of things that need to be done.,4,1,2.1.1,2019-10-22 18:59:00,"Hi Steven, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-10-25 00:18:08,most_relevant,com.habitrpg.android.habitica +Adam Rocker,https://lh3.googleusercontent.com/a-/AOh14Ghb60IMafP1h-bBczVnfq0fC9vtz7kXcAzWtF-WvIE,Amazing application. Gamifying basic tasks really motivates me to complete them. Also naturally teaches about goal structuring. Comparatively not as good as the browser based version. Simple things like an in-app pop up for completing a quest haven't been transcribed over. Looking forward to that optimization! Thanks for the great tool.,4,20,1.7.1,2019-03-14 12:27:10,,,most_relevant,com.habitrpg.android.habitica +Nicole Crawford,https://lh3.googleusercontent.com/-_MhetUbtmeA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNr45lXLK76comwQVrHJzlW7cx6Ww/photo.jpg,"Really enjoy the app, probably wouldnt recommend unless you have someone to do it with. Also, please set up a system of 'weekly' tasks, currently you can only set a daily that you complete once a week but it would be nice to have the flexibility of doing a task any day that week without being penalised.",4,0,1.9.1,2019-05-27 21:25:03,"Hi Nicole, thanks for your review! We'll keep your feedback in mind as we continue to work to improve Habitica. You can contact us directly by going to Menu - About - Send Feedback if you'd like to give us additional details.",2019-05-28 20:47:57,most_relevant,com.habitrpg.android.habitica +Amber Burns,https://lh3.googleusercontent.com/a-/AOh14GiKKZ6XCl3GbOO03Q04_3okJCd8UYaLBRmjGBCjSw,"I love this app alot. theres just two things I would really love to see added. it would be great if you allowed us to choose to have a habit set up for like 3 times out of the week, without picking which days of the week. I also really wish I could have more than 4 habits, is there a way to do that? it's a great app, thanks so much",4,0,,2019-05-10 03:16:22,"Hi Amber! Thanks for your review. There should not be a limit on how many Habits you have- please try updating to the latest version of the app, and if you're still having trouble you can reach out to support directly via Menu - About - Report a Bug. We'll pass on your feedback to the team as well!",2019-05-16 21:10:08,most_relevant,com.habitrpg.android.habitica +Lucky S,https://lh3.googleusercontent.com/a-/AOh14GjtRewiNC0yutfzaW22LaeKn4CfCM_sc4RsynRmgA,"CAN YOU PLEASE ADD THE ABILITY TO HEAR A SAMPLE OF THE AUDIO THEMES BEFORE YOU SELECT THEM? I tried another popular RPG checklist app and I didnt like it as much. This app for me has been life-changing, literally. Its a great app for breaking bad habits, building up good habits or having a videogame style quest checklist that gives you instant gratification for completing real-world tasks. Theres some occasional glitches but nothing major, they can be fixed by closing the app and restarting it.",4,53,1.9.1,2019-05-08 18:47:37,"Hi Lucky, thanks so much for your review! We'll pass your feedback about sound previews on to the development team. In the meantime, you can find the sounds here and preview them this way if you like: https://soundcloud.com/habitica",2019-05-16 21:04:12,most_relevant,com.habitrpg.android.habitica +A Random Person,https://lh3.googleusercontent.com/a-/AOh14Ggl77QsOWHcuf5ykHOk0fsXi2KMOmrPhuslP_28,"I guess I love it as it kind of works? I mean this is as good as an app can get for it's purpose. It has the perfect amount of features and completely customizable. The biggest problem I have is at the beginning it's very challenging to keep alive (as you have no party/armour yet) and also as far as I'm aware I could only edit the order of the dailies, I wish they can be done to other sectors too.",4,11,2.0.2,2019-07-23 23:40:23,"Hi Emily, thanks for your review! We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-08-01 18:38:00,most_relevant,com.habitrpg.android.habitica +Nils,https://lh3.googleusercontent.com/a-/AOh14Gjr6mE9yfkIF07Sqleg3Sp0SxCcHNiCvnI7SGW9Gbc,"clever stuff. great concept that is already working on me, especially like the widgets, they made it really functional. Only 4 star as the walkthrough wasnt close toenough to get to grips with the game fully, i still dont actually know why my health resets or how to increase health dispite adding healthy eating and exercise. it seems like there is some mechanic somewhere to battle with your guy, but not explained anywhere, adding in some kind of quests or mini-game would be the icing on the cake",4,12,1.8.1,2019-04-10 20:35:11,Hi Gentleman's Relish! Thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica and make it easier to learn the ropes. You can send the mobile team feedback directly in the future by going to Menu - About - Send Feedback.,2019-04-12 00:04:53,most_relevant,com.habitrpg.android.habitica +Amber Hampton,https://lh3.googleusercontent.com/a-/AOh14Gj6X4apa-fZNjZ1RmMijAXSbLP7KICr7uCHxcOOzA,"This has been really engaging in my tasks and goals and I am just at day two of using it. For the app, it would be cool if there was a notification for any chat threads users are on so if anybody had a follow-up question, I would be able to return to the inquiry and add more to the discussion if needed.",4,0,1.5.1,2018-10-07 03:33:35,Hi Amber! Thanks for your review. We are actually working now to add features that will allow us to offer the option for chat notifications.,2018-10-11 17:14:01,most_relevant,com.habitrpg.android.habitica +Jordan Davies,https://lh3.googleusercontent.com/a-/AOh14GgedpK0a__RdUYhAkN70a0R8sPfB1GhqURaoADm,"I used this all the time before, and it was fun in the beginning, but got really tired of the low res graphics! If they were a bit more high def, it would be amazing! we could finally see the equipment customization better - more motivating to continue using and complete tasks.",4,1,2.0.2,2019-08-06 19:05:59,"Hi Jordan, thanks for your review. Our artwork is done by volunteers from our community and is intended to evoke a retro style. Sorry it's not your cup of tea!",2019-08-08 20:15:16,most_relevant,com.habitrpg.android.habitica +Ross Knodel,https://lh3.googleusercontent.com/-tPOt2Swmf4E/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJODvvcombf3ocbdkurm8a3SLhAsBw/photo.jpg,"Make it easier to understand when you're activating quests. I didn't have anyone in my party by I was still somehow doing it and finished it by myself without realizing it. Make a design change/renaming so that there's something labeled ""start quest"". Still a fun and useful app. Growth is neverending",4,0,1.8.1,2019-06-12 12:55:57,"Hi Ross! Thank you for your review and your thoughtful feedback- that's a really good point about the quest interface, and we'll be sure to pass it on to the team.",2019-06-14 00:39:33,most_relevant,com.habitrpg.android.habitica +Mady Marquez,https://lh3.googleusercontent.com/a-/AOh14Ghd--dLxsPZjoebfkGtMw2QWfPXkQVMeRkumO7qBw,"I like it a lot. But it doesn't have as much of the GAME aspect to it. I wish there was a feature where you character could actually play in an rpg game using the equipment and skills you earned. You could have a little rpg game on the side and has cute little morality stories. Without it, it doesn't really incentivize much.",4,2,2.1.1,2019-09-30 19:39:16,"Hi Mady, thank you for taking the time to leave this review! While we have considered adding more game aspects to the app, the feedback we've received from many users is that more of those features would distract from completing tasks and would overwhelm folks who aren't as into RPGs.",2019-10-07 18:54:03,most_relevant,com.habitrpg.android.habitica +william keeling,https://lh3.googleusercontent.com/a-/AOh14GjI3oxz69kEO7VczBhsPmU0QEM2SLFdAIyFMzkC,since the May 1st update it made me create my character 15+ times before I uninstalled and reinstalled before having to do it again and spending close to 45 minutes deleting pre generated habits dailies and to dos to get to my original ones. Terrible. I love the app otherwise. Update: since the new update it is fixed.,4,2,1.9,2019-05-02 19:36:55,"Hi William, sorry to hear about the trouble! This issue should be resolved in the latest update. Please let us know if you're still running into this issue via mobile@habitica.com and we'll be happy to help!",2019-05-02 19:24:04,most_relevant,com.habitrpg.android.habitica +Caroline Eastman,https://lh3.googleusercontent.com/a-/AOh14Ggpr1tsdbM7ahviylTPL5pBggoqwP2mkszJhsSg,"Health widget stopped working after latest Android update. Note 8. AT&T. Interesting take on habit forming. I'm not really a gamer but I like the point system, leveling up, and buying accessories for your avatar with those points. Nerdy fun that seems to actually be motivating me in a way other habit trackers haven't been able to. (The TED talk on the inspiration for this app is really interesting too.)",4,1,1.9,2019-05-04 17:02:16,"Hi Caroline! Sorry about that, the issue with the widget should be fixed in the latest update (2133). If you're still having trouble, we're happy to investigate and it helps if you send a bug report directly to the dev team via Menu - About - Report a Bug.",2019-05-07 16:14:44,most_relevant,com.habitrpg.android.habitica +Vijay Gopal,https://lh3.googleusercontent.com/-1WFCTLzvxeU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNb0BtT0d7U5mNeoFaij_grjl012Q/photo.jpg,"Just downloaded the app.Loving the idea of adding my own habits & to do stuff which i used to tick off daily on notepad(uff) ,now I am glad its automated with rewards too!!.(yay!)Have a suggestion to make all sections of list tabs movable up/down (like the rewards section) to organise as per customisable preference.(-:)",4,0,1.9.2,2019-06-08 00:04:51,"Hi Vijay, thanks for your review! We'll keep your feedback in mind as we continue to work to improve Habitica. You can contact us directly by going to Menu - About - Send Feedback if you'd like to give us additional details.",2019-06-14 00:45:37,most_relevant,com.habitrpg.android.habitica +Megan Geater,https://lh3.googleusercontent.com/a-/AOh14Gim4YZqBzcTKzBEVHIuskQ4SsPrOWIlBYRfr4sg,It's super helpful but why do all the multiplayer functions suck or not exist on mobile? Edit: I'd really like to do the missions and stuff but I'm not really in this for friends. I'd like a way to find a group on mobile. Maybe a random matchup option?,4,3,1.5.1,2018-10-11 17:26:04,"Hi Megan, thanks for your review! We are working to improve the feature parity between mobile and web. If you have specific feedback you'd like to send about this, you can send it by going to Menu - About - Send Feedback.",2018-10-11 17:11:28,most_relevant,com.habitrpg.android.habitica +Andrew Murray,https://lh3.googleusercontent.com/-D9IYx7Pd-Cg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPQOxtG0qS9CIcgEvJ3Q5cCppeIhg/photo.jpg,"This productivity app is amazing for anyone looking to gamify their life. I've been using this for about half a year and it's made a difference in motivating me to be productive. The app can act up sometimes however, with it syncing my activities properly, but other than that, this app is great!",4,0,1.5.1,2018-11-14 03:41:12,,,most_relevant,com.habitrpg.android.habitica +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Just started using the app and it doesn't scale with my phone's zoom settings so the icons on the bottom are cut off. Is there a way to fix this? It doesn't seem to have its own zoom options. More accessibility features would be great (e.g. zoom, contrast, dexterity settings). Also it's great to see a wheelchair available for the avatar but it would be more inclusive and fun for more users if there were more types of default assistive devices (canes, walkers, crutches, braces, glasses, etc).",4,17,1.6.1,2018-12-22 11:22:15,,,most_relevant,com.habitrpg.android.habitica +Manuel G. Mallen,https://lh3.googleusercontent.com/-pWj8hC5SCak/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMCW6gdriLLSA-WJlSY02FfYXWVSA/photo.jpg,"The only issue I keep finding is that I get constant errors ""disconnected from servers"" even if I have full Wifi or full 4g connection. It gets clunky with the network connectivity. HOWEVER, it has changed my productivity radically in these dark days of my life.",4,0,1.5.1,2018-09-28 16:19:21,Hi Manuel! Thanks for your review. We're looking into the cause of these errors and hope to improve performance as soon as possible.,2018-10-11 17:03:19,most_relevant,com.habitrpg.android.habitica +Nara Van Rossum,https://lh3.googleusercontent.com/a-/AOh14GhS2O9t0roAq1ak62rfwvt6L9GUPS5OI1tgFtA0Hg,"Easiest way for me to use Habitica. Simple but motivating. I'm not sure if moving the plus button to the center was a good idea, it covers more of the text of the tasks there. Though it is a easy to forget that you need to pull down on the tasks section to see any changes in inventory/tables.",4,1,2.0,2019-06-24 14:45:32,Thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.,2019-07-22 23:46:48,most_relevant,com.habitrpg.android.habitica +Norielle Rubillar,https://lh3.googleusercontent.com/a-/AOh14GiYiK_DjUAfw7IhjgD5d0oGSbVDctvEgH72c2owqQ,"Perfect app!.... but its missing an IMPORTANT tab... its already got Habits, Dailies and To-Do's BUT it doesn't have a Bucket List/Life Goals tab, for me, It doesn't feel right to put ""Learn a new recipe"" in the To-do Tab, I also want to put in my goals like ""focus on getting high grades"" or ""get a girlfriend"", I can't put these in other tabs",4,1,2.0.3,2019-08-22 12:41:43,"Hello High, Thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-08-23 23:20:05,most_relevant,com.habitrpg.android.habitica +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Is a very unique to-do list which keeps you complete all task. The only problem I found with this app, is that sometimes is very buggy. You cannot use this app offline, and you cannot sync your calendar with this. Overall is very recommended. Is like a game",4,14,1.7.1,2019-02-02 19:32:44,Thank you for your review! Sorry to hear about the bugs- you can help us fix them by reporting them directly to the mobile team via Menu - About - Report a Bug.,2019-02-20 22:44:51,most_relevant,com.habitrpg.android.habitica +Emily Wall,https://lh3.googleusercontent.com/a-/AOh14GgniyFHExf5JbdXT7EsyQpllq1NJGesYEYCbstm0hs,"I love everything about this app except for the fact that there isn't a calendar to put in to do's that have to be done on specific days. If they added a calendar, this would be a million star app. I LOVE everything else about it.",4,1,1.5.1,2018-10-26 02:58:59,Hi Emily! Thanks for your review and your feedback. We'll be sure to pass that on to the team!,2018-11-06 20:02:06,most_relevant,com.habitrpg.android.habitica +Jennifer Pitts,https://lh3.googleusercontent.com/a-/AOh14GjmNwxHx-vZ89VKBSQUfiSuaReO66v9InUGi4EeYQ,"We are using this as a group in my family and it honestly is helping us a lot with staying motivated. I have a difficult time with my anxiety and depression, but this app has helped me to feel a sense of accomplishment. I am experiencing inspiration a little more often and I have been struggling for years with this. There are some aspects I'm not entirely fond of that I hope will continue to be updated; however I'm grateful to the developers for making and keeping up with this!",4,3,1.9.1,2019-05-15 08:38:24,"Hi Jennifer! Thanks so much for your thoughtful review. If you'd like to let us know about any of the things you're having trouble with, we're happy to help! You can reach the support team via Menu - About - Report a Bug.",2019-05-16 21:35:04,most_relevant,com.habitrpg.android.habitica +Samantha Baguhin,https://lh3.googleusercontent.com/a-/AOh14Gibbnsz9L0R5Ptd2WhsmA9Iic8RPWzYLuB5y1Ohvg,"The app version has so much more to improve. Aside from being buggy, a lot of features are still missing compared tovthe web version. Four stars because it helps me nonetheless. I wish the team best of luck and thank you for Habitica! ✨",4,0,2.0.1,2019-07-09 02:55:15,"Hi Samantha, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-07-23 16:30:52,most_relevant,com.habitrpg.android.habitica +Newton Gallacher,https://lh3.googleusercontent.com/a-/AOh14GhZfca5rroGdDxKrygtsRtDqewUbfksCvjmI9ly,love it just wish I could have pixel icons for all tasks and rewards. either uploading my own or if you could design things like pixelated toothbrushes. cute icons and a fun as well as organized visual aspect will help me to be in the app more and getting it set up as it has been a slow project I'm working on.,4,22,1.9,2019-05-05 21:59:52,"Hi Newton, thanks for your thoughtful review! We'll pass your feedback on to the team. As a workaround in the meantime, emojis are supported in tasks and task names.",2019-05-07 16:39:25,most_relevant,com.habitrpg.android.habitica +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Pretty good but it'd be better of there was some kind of mini game option where your avatar does stuff like fighting or studying along with you. I dunno it'd just be fun to have that extra interaction and to give meaning to the points system.,4,0,1.7.1,2019-02-23 23:32:46,"Hi there! Thanks so much for your thoughtful feedback, we'll pass it on to the team.",2019-03-01 19:09:15,most_relevant,com.habitrpg.android.habitica +Santiago Rhenals,https://lh3.googleusercontent.com/a-/AOh14GicP7T_veXEEUBnZcdtGH_jtu2rjm9GH0qVeLS4GA,"Excellent app, great habit tracker. I've found in this app an exciting way to be productive! There are some bugs and functionalities that need to be fixed, however, it's worth using it. I really recommend it.",4,0,1.9.3,2019-06-28 00:26:13,"Hi Santiago, thanks for your review! We really appreciate you recommending us. You can help us fix bugs by reporting them directly via Menu - About - Report a Bug.",2019-07-22 23:49:46,most_relevant,com.habitrpg.android.habitica +tyinne,https://lh3.googleusercontent.com/a-/AOh14Gh_KZBrXwW0tzMx0I-HNa199pT2o8sNg9YfJ9AhmQ,"awesome app, love the prize feature. i would give 5 stars if these two issues were solved: 1. app does not notify me about dailies even though i set a reminder for 7:45am; 2. one of my hobbies that can be checked as both positive and negative stays green forever after checking once, does not refresh at night, is that how its supposed to be?",4,3,2.5,2020-04-03 06:44:55,,,newest,com.habitrpg.android.habitica +Ranaa Rahma,https://lh3.googleusercontent.com/-2a8tWZv3s2I/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNYOtrpPj6ngGq3l-yOPZ1XClR6fQ/photo.jpg,It really is worth it to download this app. Thank you for designing this wonderful app! Thnks so much,4,0,2.4.3,2020-04-02 02:18:46,"Thanks for your review and kind words, they mean a lot to us! If you'd like to share any further feedback, please feel free to reach out via Menu - About - Send Feedback.",2020-04-03 03:48:54,newest,com.habitrpg.android.habitica +djdjxj jejrjr,https://lh3.googleusercontent.com/-8LQYDDrfauQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMI7OtpFN8h3TIiRMAMdO432OTO9A/photo.jpg,"The game is pretty fun, but it's really frustrating to pay 100 coins for an enchanted armoire chest and only get experience or food. It's honestly beginning to ruin the game for me. If it doesn't change in about a month I'm rewriting this review to leave a lower score.",4,0,2.5,2020-04-02 01:44:30,"Hi, thanks for your review, and we hope it's working for you otherwise! The Enchanted Armoire was designed as a gold sink for players with lots of extra gold, but if you like using it now except for its demotivating randomness, you can always go to Fix Character Values (under Settings) and give yourself back the gold to try again.",2020-04-03 03:41:40,newest,com.habitrpg.android.habitica +Itsemoboii,https://lh3.googleusercontent.com/a-/AOh14GjxDVa_2yio9XVqv-rm3BzvbJwnWDYO35wiZRkM,It was amazing! I just didn't have the time to set it up all the way.,4,0,2.5,2020-04-01 18:33:03,"Thanks for the review! If you use the same log-in information, your character will still be waiting for you (in the app or on the website) if you want to keep setting it up. If you have feedback about the new-user experience, you can use Menu - About - Send Feedback to send it our way.",2020-04-03 03:52:46,newest,com.habitrpg.android.habitica +Shanna Neumiller,https://lh3.googleusercontent.com/-m_9G7W0FY0g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPEnAhPQVqnMvgey4FiMua076pQ3g/photo.jpg,"Habitica is the best productivity app I've used thus far. It lasted me for months. The quests are the most motivating feature, and I was able to take down a couple bosses solo. However, motivation dried up weeks into my first fetch quest because despite being extremely productive, I had no chance of finding even one shard. Unless you're comfortable teaming up with a bunch of strangers to take on quests, there becomes a point when being solo makes the quest motivation feature impossible.",4,0,2.5,2020-03-31 19:10:39,"Thanks so much for your review, we're happy to hear Habitica was helpful for you! Can you use Menu - About - Report a Bug about the fetch quests? It's slower solo, but shards should *definitely* turn up, especially if you're being productive! I hope we can get that sorted out and get your motivation and productivity back. :)",2020-04-01 04:21:54,newest,com.habitrpg.android.habitica +Anna Kolchina,https://lh3.googleusercontent.com/a-/AOh14GhCFK3UDgvqiMHwr_Gs_sh3A1LAQ3y-PV6JYFGr,"Сам сервис очень крутой, но пожалуйста сделайте более понятный интерфейс для «Habits», пусть они они становятся серыми или изчезают, когда человек отметил свой прогресс за день. Я банально не помню, отмечала я свой прогресс сегодня или ещё нет, а показатель в виде цифры или зелёного/рыжего цвета мне ни о чем не говорит.",4,0,2.5,2020-03-30 20:44:54,,,newest,com.habitrpg.android.habitica +Pyroaa Backup,https://lh3.googleusercontent.com/a-/AOh14GhQeE8Hw7UxmXIYLSNVJNsYWGoYH0pPrcfaAXiG,Great concept! Has me waking up on schedule and doing my tasks so I dont loose life and earn exp! Just one thing. I cant do quests. I got the dust bunnies quest but I have no clue what to do with it. Help?,4,0,2.5,2020-03-26 08:10:34,"Hi Pyroaa! Thanks for your review, we're happy to hear Habitica has been helpful for you. You can learn more about how to go on Quests here: https://habitica.fandom.com/wiki/Quests",2020-03-26 20:03:22,newest,com.habitrpg.android.habitica +Vanessa Peterson,https://lh3.googleusercontent.com/-sjVjB6k1UtY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMDfUPs7njtylDvipkuEpq8sHBLKg/photo.jpg,This app is awesome could use better graphics but overall the idea of it is legit af,4,0,2.5,2020-03-25 06:33:40,"Hi Vanessa, thanks for your review. Our artwork is done by volunteers from our community and is intended to evoke a retro style. Sorry it's not your cup of tea!",2020-03-26 19:50:16,newest,com.habitrpg.android.habitica +Joshua Marshall,https://lh3.googleusercontent.com/a-/AOh14GhqzrJJbaTdxf0an3DHYPd9A8InC5WmIQwlgDmDQg,"Great app! I would like more progression content. Resetting levels is easy implementation, but gets stale quickly. Mages do too much damage. But this app had been transformative and amazing. I will consider contributing to development.",4,0,2.5,2020-03-20 17:54:41,"Hi Joshua, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback, and you can learn more about contributing here: https://habitica.fandom.com/wiki/Guidance_for_Blacksmiths",2020-03-20 22:43:47,newest,com.habitrpg.android.habitica +Isaac Muniz,https://lh3.googleusercontent.com/a-/AOh14GhkaJM4T-0lGmoBb0ndOUXAz-zSqdHGskPxAliiww,"Great app, would be nice to be able to check the checklist items in todos.",4,0,2.4.4,2020-03-14 22:12:21,"Hi Isaac, thanks for the review! You should be able to expand the checklist by tapping on the right side where it says how many checklist items you have, then you should be able to check those items. If that doesn't solve the issue, let us know via Menu - About - Report a Bug and we'll look into it!",2020-03-20 22:35:02,newest,com.habitrpg.android.habitica +Catalyst Drakannon,https://lh3.googleusercontent.com/a-/AOh14GiE7tVQ_iHo4MP0Zs89LszkoLn8Q5VX-rAhd1eeEA,This is wonderful but I really need to be able to use it offline as well,4,2,2.5,2020-03-12 16:49:16,"Thanks for the review, and we're glad Habitica is working for you! Offline mode would be really complicated, and since Habitica doesn't make money by selling ads or personal information, it's a really small team that hasn't been able to work on that. Maybe some day. :)",2020-04-01 04:41:01,newest,com.habitrpg.android.habitica +Phil Silver,https://lh3.googleusercontent.com/a-/AOh14GgFvFWqto0_Sx6TiZDT9iNmBEvWy_7lcQauUbCG,"I couldn't change the language of this software, I tried it again and again, but the language didn't change.",4,0,2.4.4,2020-03-07 22:34:50,"Hi Phil, you should be able to change your Language in Settings once you complete the tutorial. Not all translations are complete, as our translations are done by volunteers. If you'd like to help, you can learn more here: https://habitica.fandom.com/wiki/Guidance_for_Linguists",2020-03-13 18:41:42,newest,com.habitrpg.android.habitica +John Salerno,https://lh3.googleusercontent.com/a-/AOh14GgR3xR_5VEzff3_h-5pmQUBRaWRMvpE62pMXfGD,Great app and service! The user base is amazing and the staff is awesome. No notification when a challenge ends and no way to automatically remove its associated tasks. Can't read the full text of challenge tasks before joining. The health/experience widget doesn't display any information.,4,9,2.5,2020-03-05 22:39:26,Hi John! Thank you so much for your review. We'll keep your feedback on widgets in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback if you'd like to send more details. Direct reports provide details that help greatly with our bugfix efforts.,2019-11-05 19:57:01,newest,com.habitrpg.android.habitica +Sarah Raulerson,https://lh3.googleusercontent.com/-lbMCVHYQMCE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNUGWzUmsTIC874w2w2yCCZ45FUaw/photo.jpg,"I love this game. It has helped me do much It's a bit of a learning curve. It would be nice if challenges were visible from the app in all of the guilds, and I would also like to see the last day and time that a habit was marked, because the colors don't always change and if you have a lot of habits it gets confusing. Otherwise, this app is brilliantly done and will be getting my monetary support in whatever way I can afford.",4,5,2.4.4,2020-03-03 21:20:52,"Hi Sarah, thank you so much for this thoughtful review and your kind words! We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2020-03-13 18:37:37,newest,com.habitrpg.android.habitica +everyone can cube,https://lh3.googleusercontent.com/-KoW3zvfJF10/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNplW13bSf94MiVjC7fzEgLNMpRQg/photo.jpg,Good,4,0,,2020-03-01 04:53:32,"Hi Kamala, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2020-03-13 17:58:05,newest,com.habitrpg.android.habitica +Joss Beane,https://lh3.googleusercontent.com/-ru-sZPxYwH8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMT26iD9hCA5k4Et7Qn4GGtfZ40YQ/photo.jpg,"Pretty cool, but it needs a diary that keeps full logs of your activities and performance. It's pro reliable but it's important to know sometimes the service goes down and doesn't work. It's pretty rare though.",4,1,2.5,2020-02-29 11:05:59,"Hi Joss, thanks for your review! We hope to add more in-app stats and info on completion and improvement soon. In the meantime, you may find the Data Display Tool one of our devs created helpful: https://oldgods.net/habitrpg/habitrpg_user_data_display.html",2020-03-13 17:53:57,newest,com.habitrpg.android.habitica +Itz_Annaッ,https://lh3.googleusercontent.com/a-/AOh14GiP4TrLmxwrI3CgaOtQ65dc2bfvYyzoU9b6wRZblg,"lol i went to settings, change character value, and got myself 9M coins uwu btw is that cheating...? I mean well its right there",4,0,2.4.4,2020-02-28 05:08:40,Hi Itz_Anna! Thanks for your review. We believe everyone should be able to play in the way that motivates them most. The real benefit is the difference you see in your real life!,2020-03-13 17:48:58,newest,com.habitrpg.android.habitica +Kladias,https://lh3.googleusercontent.com/-6ExeycSDBpM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM1T4Xo1_4ih0NbfLv2qDJNTZbb2g/photo.jpg,"It worked fine for a while, but now every time I click on a task/habit/goal to edit, the app crashes. I can tick off the task and plus on the habit just fine, but I can't edit anything now... Please look into fixing it soon? Edit: thank you, the latest update fixed it all!",4,7,2.5,2020-02-28 03:51:36,"Hi Kladias, sorry about that, the issue with adding tasks should be fixed in the latest update that was just pushed today. If you're still having trouble, we're happy to investigate. You can send a bug report directly to the dev team via Menu - About - Report a Bug.",2020-02-27 23:56:18,newest,com.habitrpg.android.habitica +Joseph Nebbia,https://lh3.googleusercontent.com/-I_HatYrHOdI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMRTj8DyUZ0qRe9uU_M2xvtVm4zag/photo.jpg,Great for ADHD,4,0,2.4.4,2020-02-27 21:56:32,"Hi Joseph, thanks for your review and kind words, they means a lot to us! If you'd like to share any further feedback, please feel free to reach out via Menu - About - Send Feedback.",2020-02-28 00:04:23,newest,com.habitrpg.android.habitica +Elo. Chan,https://lh3.googleusercontent.com/a-/AOh14GgoSCGY4nmVctLIZ2hHcm7hbMomOBM3sc_NBeALAQ,"I've tried quite a few rpg-like to-do list apps and I must say this one is the only one that I find genuinely enjoyable, and actually kinda feels like a game. You can tell a lot of effort was put into the aesthetic, everything is very easy to access and is pleasing to the eye. Although I think there should be a way to uncheck to-do's. I keep accidentally clicking on them in the widget and remaking them every time is starting to get annoying.",4,9,2.4.3,2020-02-17 14:47:22,"Hi Elo, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2020-02-21 00:15:30,newest,com.habitrpg.android.habitica +Puroo Kumar Roy,https://lh3.googleusercontent.com/a-/AOh14GjU9C_IaWp7ee8Jj6F-raUhD9Xhy4RQ6rZOxjrQqQc,Could be better if it was completely free.,4,0,2.4.3,2020-02-14 15:05:01,"Hi Puroo, thanks for your review! All items that can be obtained with our premium currency, gems, are cosmetic, and quests can be shared with partymates. There are also a number of ways to earn gems without using money- you can read more about them here: https://habitica.fandom.com/wiki/Gems#Obtaining_Gems_for_Free",2020-02-21 00:13:05,newest,com.habitrpg.android.habitica +Tanner Schier,https://lh3.googleusercontent.com/a-/AOh14Gg5jssOx5v9CorDYSvynzuhcjV8EM1uNdwpUJGX,"So far so good, you have to be willing to set on the app for a bit to figure it out. It's a rpg game based off of truth. The app does freeze fairly frequently but you just have to close it and reopen it and everything is back in order.",4,0,2.4.3,2020-02-11 17:59:55,"Hi Tanner, thanks for your review! If you'd like to send us more detail to help us investigate the crashes you mentioned, you can send that information directly to the support team via Menu - About - Report a Bug.",2020-02-13 20:35:10,newest,com.habitrpg.android.habitica +Noa Binnendijk,https://lh3.googleusercontent.com/a-/AOh14GjvKQ1jkTumITZzXMY4JoDZ6lGQ7GbWQ196fWyF,"I like this app, and it's really helped, but now I can't open it anymore. It crashes while loading, every time. I've tried troubleshooting, restarting, deleting the cache, but nothing seems to work.",4,0,2.4.3,2020-02-07 09:23:15,"Hi Noa, sorry to hear about this issue. Please let us know if you're still having trouble via mobile@habitica.com and the team will look into it.",2020-02-13 20:30:42,newest,com.habitrpg.android.habitica +Suspicious Lynx,https://lh3.googleusercontent.com/-6AjobsdeuFA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOh_kTdKg7C4p4-wwjF08qDmbyNzA/photo.jpg,"Thank you. I love the app and it's helping me immensely already. The only suggestion I can think of is, I wish there was a way of keeping track of my previously completed tasks so I could look back on the progress I've made. It would feel much more meaningful that way and serve as additional motivation.",4,30,2.4.2,2020-02-03 08:34:21,"Hi Lynx, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2020-02-06 23:57:07,newest,com.habitrpg.android.habitica +Dani L King,https://lh3.googleusercontent.com/a-/AOh14Gh16LGwDIJEHK0naPQR1CPaiijz63cD26P66nuo,"There are some things i feel need to be ironed out e.g. i found feeding the pets/mounts a bit buggy, but overall it has definitely helped me think more about my personal goals and how to approach them",4,0,2.4.2,2020-02-03 01:53:02,"Hi Dani, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2020-02-06 23:56:55,newest,com.habitrpg.android.habitica +Lynn Soh,https://lh3.googleusercontent.com/a-/AOh14Gh5Uoc4D1ayeweE6DsEKV7J4i31LfQGZOS42jDLgA,"It has been an effective motivator and tracker for me to accomplish the smaller tasks that get me closer towards my bigger goals. But there seems to be a Bug - I can't seem to receive a friend's Party invite, though I am able to create my own party and invite friends to it. It's a one way street in my app! Joining guilds and the self-care, self-sabotage info have been most educational and helpful.",4,0,2.4,2020-01-24 03:58:44,"Hi Lynn, sorry to hear about this issue. Please try updating to the newest version, and let us know if you're still having trouble via Menu - About - Report a Bug and the team will look into it.",2020-01-24 21:48:08,newest,com.habitrpg.android.habitica +Riyango,https://lh3.googleusercontent.com/a-/AOh14Gg2jfQPX8kSYQI8A6RU5bnAWhYq6cQcq_D3JnApQA,The ios app is lot better than this. please improve it as soon as possible.,4,0,2.4.2,2020-01-22 16:28:38,"Hi Riyango, thank you so much for this thoughtful review. It would be very helpful for us to know more details about the differences you're seeing in the experience on Android vs. iOS- you can send feedback directly by going to Menu - About - Send Feedback.",2020-01-24 21:46:50,newest,com.habitrpg.android.habitica +Mukesh Khanodia,https://lh3.googleusercontent.com/a-/AOh14GhtwQ4LtbYwoVBX5paZxlkZJiLgabSqfic8EbzPYg,Best app for daily Routine but there are some issue such as you can get lot of coins and increase your level to infinit though settings. You should improve that because Some one donot get motivated for doing task when you knew that you can change your level.,4,0,2.4,2020-01-22 08:25:05,"Hi Mukesh, thanks for your review. We included that feature in the game so that people can play in any way that motivates them. The real benefit to Habitica is the improvement to your real life, not your in-game stats.",2020-01-24 21:46:18,newest,com.habitrpg.android.habitica +Magnus G.,https://lh3.googleusercontent.com/a-/AOh14GiQc0_t67q-OcGVLyG7IBmGltr4aHSsiwPbMPOxIg,"I like the app a lot, but some features are a little annoying. I have a few suggestions. - More ways to tweak what the widgets look like (currently they take up a lot of space). - It would be nice to see the completed tasks together with active tasks instead of them disappearing. - Task subcategories! Please! 💚 - Biggest gripe: because of the way the entire list item is like a button, I keep accidentally checking tasks that weren't actually done. +Bugged unchecking. Pls fix. Thanks💚💚💚",4,0,2.4,2020-01-21 15:52:14,"Hi Magnus, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2020-01-24 21:44:12,newest,com.habitrpg.android.habitica +Simon Ghoul,https://lh3.googleusercontent.com/a-/AOh14GhXniUhrf7qneOsggpAMSAs0zdJ22oPW6ccGGz274c,"I just want to say that the tutorial was too much info, things like this should be explained in a short and concise way, at a good pace. It was just too long and too much to take in. I didn't even try the app though, I can't say what rating it deserves. I am unnistalling but I may come back to it in the future, it's not you, it's me. (Also, you can't delete your account on mobile but you can on desktop. I suggest people to try the desktop version since it may have more features)",4,3,2.4,2020-01-20 03:03:11,"Hi Simon, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica.",2020-01-24 21:43:19,newest,com.habitrpg.android.habitica +Clayton Hinshaw,https://lh3.googleusercontent.com/a-/AOh14Gi_ze3Iw4RF67ztHWUFjw8ekRhemhoeMMwVYQzJtQ,"It's been a good way to get things done, and the concept of an RPG is very well executed. The reason for 4 out of 5 is simply regarding the interface. My wife uses it on iOS and it is light-years beyond what we have on Android. Much cleaner, more useful information, and less clunkiness.",4,19,2.4,2020-01-16 19:51:30,"Hi Clayton, thank you so much for this thoughtful review. It would be very helpful for us to know more details about the differences you're seeing in the experience on Android vs. iOS- you can send feedback directly by going to Menu - About - Send Feedback.",2020-01-24 21:34:27,newest,com.habitrpg.android.habitica +SY Ng,https://lh3.googleusercontent.com/a-/AOh14GgMweVNsMRVf8WUHilA0YKblQQSdfXCuiKaCfaFIw,"This app is an awesome (and fun) to-do list! I like it a lot and it helps me out with my life and tasks every day. However, the app crashes whenever I try to sort to-dos by scheduled and it's getting a bit frustrating.",4,0,2.4,2020-01-16 01:04:36,"Hi Sy, sorry to hear about this issue. Please try updating to the newest version, and let us know if you're still having trouble via Menu - About - Report a Bug and the team will look into it.",2020-01-24 21:32:31,newest,com.habitrpg.android.habitica +Kitt eos,https://lh3.googleusercontent.com/a-/AOh14Ghs2D_vue7xz-T4Z0u6d8JS0c8juHphgEoKFyOR,Pretty good app that helps me stay organized. Could use a few improvements but overall I enjoy it,4,0,2.4,2020-01-14 17:16:23,"Hi Kitt, thanks for your review! We'll keep your feedback in mind as we continue to work to improve Habitica. You can contact us directly by going to Menu - About - Send Feedback if you'd like to give us additional details.",2020-01-14 18:22:54,newest,com.habitrpg.android.habitica +Samantha Lau,https://lh3.googleusercontent.com/-1dp5d8RfQII/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNnwFspZbba4fZXBnniF4g1CGol3Q/photo.jpg,Habitica is awesome! Only thing that it's hard to feed your pets with the app.,4,0,2.3,2020-01-13 06:03:59,"Hi Samantha, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2020-01-14 18:21:24,newest,com.habitrpg.android.habitica +Nikki Davern,https://lh3.googleusercontent.com/-mhL6YfDqOlA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOXp0vMWatWB3L0yHWGlTIl5dgU-Q/photo.jpg,"couldn't create my avatar at first, but after that it worked fine.",4,0,2.4,2020-01-13 01:20:10,,,newest,com.habitrpg.android.habitica +Sally Simpson,https://lh3.googleusercontent.com/a-/AOh14Gh1M3rPc30o5yJmWJqudtklPxqIRLBzMltfMB49bw,"Love habitica. I find the app often has one bug or another from update to update, so can't really give 5 stars, but the devs do a smashing job regardless so 4 stars from me.",4,1,2.4,2020-01-05 21:31:34,"Hi Sally, thanks for your review! You can help us fix bugs by reporting them directly via Menu - About - Report a Bug.",2020-01-14 18:12:10,newest,com.habitrpg.android.habitica +Garrett Michael,https://lh3.googleusercontent.com/-vHFWJ-sUqyQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMVYgpUDzLgQtcqNbe4z4TpQ1ZyqA/photo.jpg,"Great idea and I'm enjoying it so far. Chores and errands are much more fun. My one gripe so far is that it seems like most items/quests cost gems, which are pay to play. I'm afraid i'll pretty quickly run out of free items/quests to strive for and then the app will lose its effectiveness. It'd be helpful if their were other ways to unlock gems outside of paying for them, like reaching extra high levels of productivity/habit building, etc.",4,24,2.4,2020-01-04 18:51:22,"Hi Garrett, thanks for your review! All items that can be obtained with gems are cosmetic, and quests can be shared with partymates. There are also a number of ways to earn gems without using money- you can read more about them here: https://habitica.fandom.com/wiki/Gems#Obtaining_Gems_for_Free",2020-01-14 18:07:54,newest,com.habitrpg.android.habitica +Kathy Swords,https://lh3.googleusercontent.com/a-/AOh14GjOZor0aySGguifzoLsedTnqgI5-oJPrCynEUeYRQ,"So far it's pretty good. I've been using it about a week. Sometimes it doesn't refresh, but the other users on the app seem positive and friendly. There is a lot that I am learning through users that isn't actually explained in the app. Like if you don't do all your daily tasks, the whole party takes damage. So yeah, no pressure! It would be nice for a better help options or a more detailed in-app-fist-time training/learning session. Every 'first' should option for more info!",4,5,2.4,2019-12-31 02:38:18,"Hi Kathy, thanks for your review! We'll keep your feedback in mind as we continue to work to improve Habitica. You can contact us directly by going to Menu - About - Send Feedback if you'd like to give us additional details.",2020-01-04 00:58:47,newest,com.habitrpg.android.habitica +Inf Win,https://lh3.googleusercontent.com/a-/AOh14Gi0Wkxo_YpfdUji57LEsxM06VaiINm5j6UtiqQM,"Really nice app that is easy to use. Would be cool to see a feature where you can build things, like building a village and materials for this are acquired through completing tasks/habits",4,6,2.4,2019-12-30 01:01:02,"Hi Inky, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2020-01-04 00:57:15,newest,com.habitrpg.android.habitica +Jen Slow,https://lh3.googleusercontent.com/a-/AOh14GgqLEbdKxtv4BLJl7LU6lzEiuk8496r6jVXBvvGLQ,"The app's a bit glitch-y, not gonna lie, but it helps tremendously in my day-to-day life. The community aspect of it is amazing, I actually feel motivated by all the kind words. Good job, developers, my life's a bit less bleak now! c:",4,0,2.0.3,2019-12-18 12:28:43,"Hi Jen, thank you for your review and sorry to hear about the glitches you mention. Please try updating to the newest version, and let us know if you're still having trouble via Menu - About - Report a Bug and the team will look into it.",2019-12-19 18:31:03,newest,com.habitrpg.android.habitica +unknown hunter,https://lh3.googleusercontent.com/-NhJZpJJG8QU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNamRFBivCzrXN0G725I8cz8d4qxg/photo.jpg,Its pretty good so far. My dailies just seem to never reset though. I got a streak of 2 and from then on it never moved forward,4,0,2.3,2019-12-18 04:00:06,"Hi there, sorry to hear about this issue. Please let us know if you're still having trouble via Menu - About - Report a Bug and the team will look into it.",2019-12-19 18:31:37,newest,com.habitrpg.android.habitica +LethalTrap,https://lh3.googleusercontent.com/a-/AOh14Gg9EIq7sfW3XkM70zhh_uoAOczTytXyhK6ZI9aGCQ,This app is good and it's useful. Yes it's true that it has a few bugs here and there but the app itself is good and I like it. I wish it had an offline mode because I can't stay on all the time but I can see why we need to be online at all times.,4,0,2.3,2019-12-13 05:36:27,"Hi there, thanks for your review and kind words, they means a lot to us! You can help us fix bugs by reporting them directly via Menu - About - Report a Bug.",2019-12-19 18:25:47,newest,com.habitrpg.android.habitica +Rachel Ayn Davis,https://lh3.googleusercontent.com/a-/AOh14GiINkH37pFCYSD0q7Vueg3llJ5yNmzyfplnGN4G7A,"This app has really helped me get my stuff in order! It also has an active community and good challenges! It is a bit glitchy at times (things don't refresh, etc) but overall it's great! Edit: lol, the 'report a bug' is glitched on my phone :P I had to manually send my info over, in the middle of fixing a glitch where my day won't reset - been broken for a week.",4,14,2.3,2019-12-12 19:59:19,"Hi Rachel, thanks for your review and kind words, they means a lot to us! You can help us fix bugs by reporting them directly via Menu - About - Report a Bug.",2019-12-12 19:24:32,newest,com.habitrpg.android.habitica +Synoptic 1,https://lh3.googleusercontent.com/a-/AOh14GgGSb9scoYflyHsb2S2-FV72H67Ya-FPGL-kwfBsg,"Not very expressive frame for activity descriptions, must be in the first stages of development. Guilds look incredible diverse, very surprising it is a social app. Seems the leveling function is standard gaming and well embedded. Hope open sourcing it make it better fit. Passing habits to to-do would be desirable.",4,0,2.3,2019-12-11 05:38:57,"Hi Synoptic 1, thanks for your review! We'll keep your feedback in mind as we continue to work to improve Habitica. You can contact us directly by going to Menu - About - Send Feedback if you'd like to give us additional details.",2019-12-12 19:28:42,newest,com.habitrpg.android.habitica +Jinjer Markley,https://lh3.googleusercontent.com/a-/AOh14GiHsb6hFbNrl3fvMQn_oCbZbWYRvRmOUEK0f0wD,"I'm easily motivated by things like points and streaks, so this app works really well for me to increase my productivity and decrease my anxiety. I use rewards for breaks, and find that I get unpleasant but short tasks done much more often, because I can earn breaks quickly by just getting them over with. I also get my long, complicated, multi-part projects done early. I gave it four stars because there are a couple of features I'd like to see, but it works great as is.",4,7,2.3,2019-12-10 13:17:36,"Hi Jinjer, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-12-12 19:26:44,newest,com.habitrpg.android.habitica +NotChelsie Elf,https://lh3.googleusercontent.com/a-/AOh14GjaGvN64nhE632bmGW81puyjnwVbqiIP8fzj484hA,"I'm surprised, this app actually works for me! It helped me procrastinate less, but I also realised it works only if I remind myself to check the app a lot. I recommend it for those who have really bad procrastination problems like myself. Even if the game style of this app isn't your thing, it's a great to-do-list app for habits, daily reminders and general to-do items. Only complaint is it's glitchy for me when I want to customise my avatar.",4,3,2.3,2019-12-05 10:37:12,"Hi NotChelsie, thanks for your review! Sorry to hear about the trouble with avatar customization.. If you'd like to send us more detail to help us investigate these issues, you can send that information directly to the support team via Menu - About - Report a Bug.",2019-12-06 01:18:54,newest,com.habitrpg.android.habitica +Dieter Finn,https://lh3.googleusercontent.com/-SdRyoXsmFv8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPf7AzGgbo_XMKM9qSgGE0V6w9GeA/photo.jpg,"I've been wanting a habit tracker that is fun and this definitely is. There are a few loading issues every so often, if those bugs weren't there I'd give 5 stars. All around though enjoyable, easy to use, and a great way to keep track of good and bad habits.",4,0,2.3,2019-12-04 19:27:47,"Hi Dieter, thank you for your review! Sorry to hear about the trouble with loading. If you'd like to send us more detail to help us investigate these issues, you can send that information directly to the support team via Menu - About - Report a Bug.",2019-12-06 01:18:20,newest,com.habitrpg.android.habitica +Dany Christian,https://lh3.googleusercontent.com/a-/AOh14Gj0hYR2ANBuccSXNK6nPNu1RSd2aIBbTaEHwDRWSb4,"I really like the concept of this app, the style, the features, and it has done its part in motivating my studies and organizing my life. However, the app needs some serious redesigning. The layout is difficult to navigate and the chat function is almost useless. The way challenges are organized could also use improvement. All in all, I like using it (make an account a month ago), but the functionality needs to be improved",4,2,2.3,2019-12-04 05:10:37,"Hi Dany, thanks for your review! We'll keep your feedback in mind as we continue to work to improve Habitica. You can contact us directly by going to Menu - About - Send Feedback if you'd like to give us additional details.",2019-12-06 01:17:04,newest,com.habitrpg.android.habitica +Sophie Jeffares,https://lh3.googleusercontent.com/-mElCiMzlYP4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOdrEXl_fG_494ZUTJeVwWPSTl28w/photo.jpg,"would love, love, LOVE an offline mode as I don't have internet access at all time but adore this app to keep me on top of my life and mental and physical health",4,0,,2019-12-03 07:08:25,,,newest,com.habitrpg.android.habitica +moiz sohail,https://lh3.googleusercontent.com/a-/AOh14GjjNNuT1DrdlimOB4mbwHU_5wv-IXgux6eFwv5Vwg,"Can this please get a feature where I can add tasks when offline and it uploads to the server whenever I connect to the internet. At the moment, it simply deletes everything.",4,0,2.3,2019-12-01 20:17:40,,,newest,com.habitrpg.android.habitica +Treat Peterson,https://lh3.googleusercontent.com/-Tv-UAwtYjFU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO4K2JErWs28B0H0HIzLiLjyllizg/photo.jpg,"I love this format, only thing that would make it better is some form of active side scrolling gameplay element, build your character throughout the week and then try to beat a level sort of thing",4,1,2.3,2019-11-30 17:07:47,"Hi Treat, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-12-06 01:15:14,newest,com.habitrpg.android.habitica +Manic Surry,https://lh3.googleusercontent.com/a-/AOh14GgUaPjhbxu3YPfrFsUePeworNtwZ4i02TkJlVYji5M,"This is a very helpful and fun way to get yourself in the habit of doing things. The Daily Tasks are a fantastic way to get your daily stuff handled and check them off within the app. You've got the ability to create To-Do lists with due dates and notification reminders can make it ridiculously simple to get even the most complex task completed. On top of all this, seeing your character earn experience, new items and getting pets and mounts turns all the monotony into a wickedly AWESOME RPG.",4,4,2.3,2019-11-22 10:59:27,"Hi Manic Surry, thanks for your review! We'll keep your comments in mind as we continue to work to improve Habitica. You can contact us directly by going to Menu - About - Send Feedback if you'd like to give us suggestions.",2019-12-06 00:47:04,newest,com.habitrpg.android.habitica +FuchsiaShock,https://lh3.googleusercontent.com/a-/AOh14GgGOTmo6XGrwqE9iHh2Lgu13VVSuJEUesG5HnKiPTA,"A great idea, and the app itself has been improved a fair bit, but still a little bit too slow to respond to give five stars. Seems a bit like server congestion maybe?",4,0,2.3,2019-11-18 19:16:45,"Hi Naomi, sorry to hear our brief outage was a problem for you. Our small team always does our best to get the site back up as soon as we can, but we understand the frustration. Let us know if you're still having trouble via Menu- About -Report a Bug and the team will look into it.",2019-11-18 17:13:50,newest,com.habitrpg.android.habitica +Kels,https://lh3.googleusercontent.com/a-/AOh14GgH4KDMttyXSpoIucxJHJvnjUZbpRFezJprIpFEPg,Very cool app!,4,0,2.3,2019-11-16 20:46:46,"Hi Kels, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-11-18 17:30:46,newest,com.habitrpg.android.habitica +Amber Harrington,https://lh3.googleusercontent.com/a-/AOh14Ghz9Dk-rVWPb9DojF_ul3hG5Fyy7W3V6H8bsXQj,"I've been using this app for about a year now, I think. I love keeping myself accountable, and tracking what I'm doing and what I'm not each day. Lately, I've been getting push notifications for every single message that members of my party are sending in chat, none of which mention me. I've switched off push notifications completely but they're still coming through all the time. This is the only thing stopping me from giving 5 stars!",4,2,2.2.2,2019-11-16 11:22:00,,,newest,com.habitrpg.android.habitica +Mizuko P,https://lh3.googleusercontent.com/a-/AOh14GilGhAfXvqS3itO_mTzOCirlLSELKOYfoLoJ46vUg,The app is good and all. The only problem is that the reminder does not work.,4,1,2.2.2,2019-11-16 09:51:41,"Hi nyannakissu, sorry to hear about this issue. Please let us know if you're still having trouble via Menu - About - Report a Bug. A direct report will provide details that will help the team fix the problem.",2019-11-18 17:28:52,newest,com.habitrpg.android.habitica +Taylor Spock,https://lh3.googleusercontent.com/a-/AOh14Gid1bNK-J8oYnobayDZmxhqiAnVk8KDevd059JqlA,"Fun for university students The only problem is they don't order the tasks by date, do you have to be careful not to miss homework. Now that i think about it, it's actually a big problem for students using the app. It is fun, overall, and I do homework to keep my avatars alive. Think Tamagotchi",4,0,2.2.2,2019-11-07 15:12:03,"Hi Tayler, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-11-08 00:34:48,newest,com.habitrpg.android.habitica +Carlos Veliz,https://lh3.googleusercontent.com/a-/AOh14GjBiSLVDMjrY9aAcynH5CTOyHGQGsnphhK53TJRfQ,So far I love it,4,0,2.2.2,2019-11-05 02:49:26,"Hi Carlos, thank you so much for this review. If you have any feedback, you can send it to the mobile team directly by going to Menu - About - Send Feedback.",2019-11-05 20:07:55,newest,com.habitrpg.android.habitica +Mariah Thomas,https://lh3.googleusercontent.com/-F16dvfTo24g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMqjTFhnZHUC-Op2Y0AUGFGsJ24jg/photo.jpg,"Amazing app. Some glitchy moments, but overall nothing too annoying. This app is so cool that I'm OK with some glitches because in a very short time its already brought so much value to my life! Brilliant idea to get you into good habits and out of bad ones. In my experience it actually works!",4,0,2.2.2,2019-11-04 16:33:02,"Hi Mariah, thanks for your review! You can help us fix bugs by reporting them directly via Menu - About - Report a Bug.",2019-11-05 20:04:32,newest,com.habitrpg.android.habitica +Brian Wightman,https://lh3.googleusercontent.com/-9kcMX8xRqYI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOLNZlwFF9CNqlxKk29kBmx8N1PbA/photo.jpg,Fabulous tool for task management by those organizationally challenged. For five stars it would need to include a calendar function.,4,0,2.2.1,2019-11-01 20:20:48,"Hi Brian, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-11-05 20:01:04,newest,com.habitrpg.android.habitica +Brenda,https://lh3.googleusercontent.com/a-/AOh14GgWBmm4OXo_37RYgzFXv3TTp2uPisI_XTcB9Po-,"Have been looking for a way to incorporate the elements of gaming into making progress ""In Real Life"". Even tried inventing something for myself but paper tracking was a nightmare and having it in this app is just fantastic! Really like it and it has made a big difference! The only reason I took it down a star is because it depletes my phone battery really fast if I am in the app for very long, such as when I am shopping or browsing challenges, so I do these things mostly on my PC. Overall, great job! Would recommend this to anyone that enjoys gaming but is struggling with motivation in the real world.",4,14,2.2,2019-10-23 14:52:31,"Hi Brenda, hank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-10-25 00:22:15,newest,com.habitrpg.android.habitica +steven foster,https://lh3.googleusercontent.com/a-/AOh14GhHsT6JoE4M0sI3_vBiL8vvqMSt9mypPWbB38-t2g,I wish I could control the reminders for my tasks more. Like the volume or what noise it makes. Other that that the app is great for keeping track of things that need to be done.,4,1,2.1.1,2019-10-22 18:59:00,"Hi Steven, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-10-25 00:18:08,newest,com.habitrpg.android.habitica +Just Mavrick,https://lh3.googleusercontent.com/-0qcFguWcjig/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMLxE0FBtefxQ2Vk5w1LlEkqOod3w/photo.jpg,"Every other month, I think I'll do better. I try again. I download this app. Everything gets back in order, so I uninstall it to free up space in my storage. Then I relapse. I download the app again. This is a never ending cycle of desperation, loss, and hope. I will always download this app. I will always uninstall it. 9/10 would recommend",4,2,2.2,2019-10-17 22:54:19,,,newest,com.habitrpg.android.habitica +Дмитрий Самусенко,https://lh3.googleusercontent.com/-kSyJmtsvZAE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN0s68kn2yg-ofRugnGR_IFkYYeFg/photo.jpg,"Разработчик исправил ошибку, которая не давала начать и оказалось, что приложение довольно хорошее, но:Режим испытания - бред. Кто-то его использует по фану и исход решает рандом. Кто-то пиарит свой ютуб канал.Так же, нет приоритизации сложности целей.Т.е кто -то поставит сложной целью написать диплом, а кто -то сходить в магазин.Дорого,в игровой валюте, стоят квесты. За неделю так и не получил. Хотя целей было много. Удалил его, так как мне не подходит дизайн для офиса. Но это уже особенность",4,0,2.1.1,2019-10-14 22:13:11,"Hello, sorry to hear about this issue. Please let us know if you're still having trouble by sending us a message at mobile@habitica.com and the team will look into it.",2019-10-07 18:59:38,newest,com.habitrpg.android.habitica +Abdul Rahman,https://lh3.googleusercontent.com/a-/AOh14Gh03vlKLyO8iX-mPqIHMrDHfBFGHCUAH-vseR1d,"I have been using Habitica for quite some time now and i must say, it has been the most useful in helping me establish a structure to my day. HOWEVER, the To-Dos are very limited in its functions. It's hard to implement a full task management (such as GTD methodology). It pretty much only supports next action steps, not any layers such as Projects or Waiting For. Also, syncing across devices can sometimes be problematic I hope they will improve the To-Dos and make syncing smoother.",4,1,2.1.1,2019-10-13 23:25:23,"Hi Abdul, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-10-17 21:26:43,newest,com.habitrpg.android.habitica +Rory Crow,https://lh3.googleusercontent.com/a-/AOh14Gi3EsaXoYgbk4xQOP16FyvLqwfg8U9QEbqfXrfi7RM,Such a cool app! I'm in love with it! Sad that it doesn't work properly offline though :( also has bugs,4,0,2.1.1,2019-10-12 13:24:26,"Hi Rory, thanks for your review! You can help us fix bugs by reporting them directly via Menu - About - Report a Bug.",2019-10-17 21:21:04,newest,com.habitrpg.android.habitica +Biswajit Muduli,https://lh3.googleusercontent.com/a-/AOh14Gh4W4sY8NLdYUBMwL96nDtvt0nyULk1Ga2yua1U,Quite good,4,0,,2019-10-09 14:23:36,"Hi Biswajit, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-10-11 00:58:40,newest,com.habitrpg.android.habitica +Randi,https://lh3.googleusercontent.com/a-/AOh14GijF7g87kSLBcATGvpqJwo7ZHgiZPJs5TcXvAfzQg,"It's a great start to improving your life, but it's more or less just a planner app!",4,0,2.1.1,2019-10-08 21:28:08,"Hi Randi, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-10-11 00:54:17,newest,com.habitrpg.android.habitica +All Revenue Gone,https://lh3.googleusercontent.com/a-/AOh14GisZkbHw_OnrXzt6kbkU8lPAW12sqyqY2BYJ2Okw2E,Amazing app but the extremely buggy ui have made the app irritating to use and sometime unusable without a restart.,4,0,2.1.1,2019-10-02 09:38:48,"Hi All Revenue Gone, thanks for your review! You can help us fix bugs by reporting them directly via Menu - About - Report a Bug.",2019-10-07 18:57:40,newest,com.habitrpg.android.habitica +Mady Marquez,https://lh3.googleusercontent.com/a-/AOh14Ghd--dLxsPZjoebfkGtMw2QWfPXkQVMeRkumO7qBw,"I like it a lot. But it doesn't have as much of the GAME aspect to it. I wish there was a feature where you character could actually play in an rpg game using the equipment and skills you earned. You could have a little rpg game on the side and has cute little morality stories. Without it, it doesn't really incentivize much.",4,2,2.1.1,2019-09-30 19:39:16,"Hi Mady, thank you for taking the time to leave this review! While we have considered adding more game aspects to the app, the feedback we've received from many users is that more of those features would distract from completing tasks and would overwhelm folks who aren't as into RPGs.",2019-10-07 18:54:03,newest,com.habitrpg.android.habitica +سوما تشان,https://lh3.googleusercontent.com/a-/AOh14Gh2eFX51AZYkPyZjEh7PrqxM3O5U2mznFyoHGC2cA,"It's amazing, I just wish there was goals and categories for tasks",4,0,2.1,2019-09-29 14:37:54,Thank you so much for this thoughtful review! We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.,2019-10-07 18:51:49,newest,com.habitrpg.android.habitica +Wihan Uys,https://lh3.googleusercontent.com/a-/AOh14GiySTyFerd4zhCHs3OYYJgJ9P22QgWPBMHfbxGX2A,"A great app for tracking goals and habits. It is also the most fun since you achieve virtual goals ""XP and Gold"" to level up your character! Will give 5/5 if it had a Dark Theme!",4,0,2.1,2019-09-27 01:17:23,"Hi Wihan! Thank you for your thoughtful review! We are working to add a dark mode for the apps, and hope to have that feature out soon.",2019-10-07 18:51:01,newest,com.habitrpg.android.habitica +Sam Nguyen Thi,https://lh3.googleusercontent.com/-rx9IGbt04C8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOk0Q2FEPcG-qkoHWZpIuRRhS4ydg/photo.jpg,Quite confusing,4,0,2.1,2019-09-18 05:21:44,Hi Sam! Thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.,2019-09-26 21:22:58,newest,com.habitrpg.android.habitica +Prince shruikan :,https://lh3.googleusercontent.com/a-/AOh14GhJkjrjBJn_U1oXpLRaJPHe0wBkJrF5j4lJ-7Oz3g,Nice but why does it need data tho?,4,0,2.0.6,2019-09-10 14:10:34,"Hi Prince, thank you for your review. We're not sure what you mean by ""data"". We're happy to clarify if you can send us some more details via Menu - About - Send Feedback.",2019-09-12 19:31:01,newest,com.habitrpg.android.habitica +Tiny gamingtj,https://lh3.googleusercontent.com/-QIswAE3JLNA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMBNFVvfNS7FS-sPrpgst_03kvCzA/photo.jpg,its ok little confusing at first i think some more of the features that are in the add a blah should be a bit more clear. also a report a bug option would be nice my entire phone is on silent cause im at work app still makes sounds.,4,0,2.0.3,2019-09-07 16:26:41,"Hi Tiny, thanks for your review! You can help us fix bugs by reporting them directly via Menu - About - Report a Bug.",2019-09-12 19:25:24,newest,com.habitrpg.android.habitica +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,This app can save your life. Love how you can pin widgets to your home screen on Android phones. Only suggestion is to add a calendar.,4,0,2.0.5,2019-09-06 16:44:41,Thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.,2019-09-12 19:22:36,newest,com.habitrpg.android.habitica +Brady Schaefer,https://lh3.googleusercontent.com/a-/AOh14Ggwr2gU3mks0UKcDLl4FbLH6K8EHOzsziRM17zQQsw,Great way to manage your tasks. Only downside is you set the deadlines and can knowingly chance them at any time,4,0,2.0.4,2019-09-05 05:57:36,,,newest,com.habitrpg.android.habitica +Adam Zee,https://lh3.googleusercontent.com/a-/AOh14GjHH7-TxUd8iFj6HnVpIoJQvrPZnmBtz4AHleG48A,"INCREDIBLE for keeping motivation up, but the mobile app is intermittently buggy in odd ways. Definitely still highly recommend it, though!",4,0,2.0.3,2019-09-02 14:30:15,"Hi A. Zee, thanks for your review! You can help us fix bugs by reporting them directly via Menu - About - Report a Bug.",2019-09-05 18:32:54,newest,com.habitrpg.android.habitica +Kim Namjoon,https://lh3.googleusercontent.com/a-/AOh14GiRUqzwxk9dx0kju-foLxyrH3R-TzmZbeK4fa-iiQ,Great app!,4,0,2.0.3,2019-08-25 21:34:40,,,newest,com.habitrpg.android.habitica +Asher Aiden,https://lh3.googleusercontent.com/a-/AOh14Gj8Kpu3aXYD0tSvIaH1WZD8T8FXij-5bTwgtN1uPA,The concept is absolutely amaizing😊 but the procedures are very complex...😅 Can you plaese make another app with same concept👍 and with simple procedures...😊 [In simple words... Please make a simple app which has concept of gaming type rewards on completing important tasks...🤗],4,0,,2019-08-25 10:37:07,Hi Asher! Thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.,2019-08-29 18:56:11,newest,com.habitrpg.android.habitica +Abdelrahman Harfoosh,https://lh3.googleusercontent.com/a-/AOh14GjWHwSe_vQUnPsgChRtINOkwuZv5-1JHr05vUSS,"Been using the app for half a year now, it ha helped me focus on my dailies and Tasks and organize myself and replace my bad habits with good ones",4,0,2.0.3,2019-08-23 02:15:22,,,newest,com.habitrpg.android.habitica +Norielle Rubillar,https://lh3.googleusercontent.com/a-/AOh14GiYiK_DjUAfw7IhjgD5d0oGSbVDctvEgH72c2owqQ,"Perfect app!.... but its missing an IMPORTANT tab... its already got Habits, Dailies and To-Do's BUT it doesn't have a Bucket List/Life Goals tab, for me, It doesn't feel right to put ""Learn a new recipe"" in the To-do Tab, I also want to put in my goals like ""focus on getting high grades"" or ""get a girlfriend"", I can't put these in other tabs",4,1,2.0.3,2019-08-22 12:41:43,"Hello High, Thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-08-23 23:20:05,newest,com.habitrpg.android.habitica +Jack Lang,https://lh3.googleusercontent.com/a-/AOh14Ght2FknDu_nxw0-uyaSzFrFNiYlv8fcLZGHwSZsRfI,Buggy but awesome!,4,0,,2019-08-21 16:40:39,Hi Jack! thanks for your review! You can help us fix bugs by reporting them directly via Menu - About - Report a Bug.,2019-08-23 23:19:03,newest,com.habitrpg.android.habitica +Jake Zaleski,https://lh3.googleusercontent.com/a-/AOh14GjOmHfwJdP-lImse_9PxkfWLTVm_yECDHhJ4XQqetA,would be perfect if I could organize the to-do's by date!! they're random right now,4,0,2.0.2,2019-08-15 17:29:57,Hi Jake! Thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.,2019-08-23 22:23:53,newest,com.habitrpg.android.habitica +Rojin Philip,https://lh3.googleusercontent.com/a-/AOh14GgidFUOevu06KL_ub0kEIikLrlWpMOulm3AUcbixA,"Very Nwice Hi, How can I sort my todos according to due date? Is there any way I can team up with local players? Also is any offline version coming up, just to check off tasks? Thanks.",4,0,2.0.2,2019-08-13 06:04:35,"Hi Rojin, Thanks for your review! Currently there is no way to sort To-Dos in the app, but we hope to add that feature soon. Offline mode is something we also hope to add in the future, but it's a very resource-intensive feature for our small team so that may take some time. If you search our public Guilds you may find players from your region!",2019-08-13 23:14:51,newest,com.habitrpg.android.habitica +Jordan Davies,https://lh3.googleusercontent.com/a-/AOh14GgedpK0a__RdUYhAkN70a0R8sPfB1GhqURaoADm,"I used this all the time before, and it was fun in the beginning, but got really tired of the low res graphics! If they were a bit more high def, it would be amazing! we could finally see the equipment customization better - more motivating to continue using and complete tasks.",4,1,2.0.2,2019-08-06 19:05:59,"Hi Jordan, thanks for your review. Our artwork is done by volunteers from our community and is intended to evoke a retro style. Sorry it's not your cup of tea!",2019-08-08 20:15:16,newest,com.habitrpg.android.habitica +natsstings,https://lh3.googleusercontent.com/a-/AOh14Gi8vgFbYMDFBsTH0BRkRz6H2K2SeFqEPs_yn2rN9A,I'll give it a 5/5 once yall make it functional offline 😛 (like maybe allow us to edit/cross off tasks offline and let it automatically sync once connected to the internet),4,0,2.0.2,2019-07-31 10:30:18,,,newest,com.habitrpg.android.habitica +Kirsty Shaw,https://lh3.googleusercontent.com/-4XofpBPCKVU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOLooEwXOhhm4f4OdjoXR0p08ck3w/photo.jpg,"Good app with good widgets one star deducted as I can't work out how to view completed tasks, dailies and habits",4,0,2.0.2,2019-07-27 12:34:54,"Hi Kirsty, thanks for your review! We hope to add more in-app stats and info on completion and improvement soon. In the meantime, you may find the Data Display Tool one of our devs created helpful: https://oldgods.net/habitrpg/habitrpg_user_data_display.html",2019-08-01 18:40:15,newest,com.habitrpg.android.habitica +A Random Person,https://lh3.googleusercontent.com/a-/AOh14Ggl77QsOWHcuf5ykHOk0fsXi2KMOmrPhuslP_28,"I guess I love it as it kind of works? I mean this is as good as an app can get for it's purpose. It has the perfect amount of features and completely customizable. The biggest problem I have is at the beginning it's very challenging to keep alive (as you have no party/armour yet) and also as far as I'm aware I could only edit the order of the dailies, I wish they can be done to other sectors too.",4,11,2.0.2,2019-07-23 23:40:23,"Hi Emily, thanks for your review! We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-08-01 18:38:00,newest,com.habitrpg.android.habitica +Kaz,https://lh3.googleusercontent.com/-5RmQQRmGqnk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOxyXv9x-5i3Y1-LgvyIazevunStQ/photo.jpg,Great app. I just wish there was a way to keep track of time on a task/habbit (built-in timer instead of having to open an external timer),4,0,2.0.2,2019-07-21 19:34:31,"Hi Samuel, Thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-07-23 16:45:34,newest,com.habitrpg.android.habitica +Jolee Warner,https://lh3.googleusercontent.com/a-/AOh14GhwJplXkHjv7l3EpFcPudVb6DFOfPIwAl5qBjuqKQ,"This app has been so helpful for me to be more productive, as i didnt take care kf myself before! i can't complain about anything, except sometimes when i first log in for the day, my dailies will be from yesterday and will take a minute to switch to today. I would love to see why so-and-so points are being deducted when you take damage from missed dailies! Like.... ""Clean (medium): -6 Health"" or something like that. I don't think I'll ever delete this app, and i look forward to any updates!",4,0,2.0.2,2019-07-20 04:15:46,Hi Jolee! Thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.,2019-07-23 16:42:40,newest,com.habitrpg.android.habitica +Bryony Rosetta,https://lh3.googleusercontent.com/a-/AOh14GiLYVz_-GjTTrJKo-jfW7gYhWD8e5DfO9Cz5Ux5,"it is fun. every time i get an egg/food/potion though, i have to drag down the spinning wheel to let it reload 😒",4,0,2.0.2,2019-07-17 21:25:07,Hi Bryony. Thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.,2019-07-23 16:42:24,newest,com.habitrpg.android.habitica +Samantha Baguhin,https://lh3.googleusercontent.com/a-/AOh14Gibbnsz9L0R5Ptd2WhsmA9Iic8RPWzYLuB5y1Ohvg,"The app version has so much more to improve. Aside from being buggy, a lot of features are still missing compared tovthe web version. Four stars because it helps me nonetheless. I wish the team best of luck and thank you for Habitica! ✨",4,0,2.0.1,2019-07-09 02:55:15,"Hi Samantha, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-07-23 16:30:52,newest,com.habitrpg.android.habitica +Copper,https://lh3.googleusercontent.com/a-/AOh14GicMzdoaafqefsFxE1jfRBSf-dpSH256v2t5IboRg,"just started using and seems interesting, hope it'll help me to improve my life! one issue I have is that it does not give an option to sort to-do task by deadlines, which is better to see which tasks are urgent and not overlooked, hope there's an update to add this function!",4,6,2.0.1,2019-07-06 15:09:17,"Hi Copper, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-07-23 16:29:01,newest,com.habitrpg.android.habitica +Brandon Perez,https://lh3.googleusercontent.com/a-/AOh14GjHGkk4-NB6VUFL7WHdR7oVz9mBIIzcOUbIsZKGzg,"rlly good,just 4 for bugs.. but it's really good!!",4,0,2.0.1,2019-07-03 04:18:59,"Hi Brandon, thanks for your review! You can help us fix bugs by reporting them directly via Menu - About - Report a Bug.",2019-07-23 16:27:02,newest,com.habitrpg.android.habitica +전동욱,https://lh3.googleusercontent.com/a-/AOh14GjLnr-oSfB0CnQIw_Zb7OB_CL4YYmUXW4tuhrvf3Q,"i cannot pin/unpin rewards after UI updated, plz fix it. i love this game😭",4,0,2.0.1,2019-07-03 03:14:33,"Hi there! Sorry to hear about this issue. Please try updating to the newest version, and let us know if you're still having trouble via Menu - About - Report a Bug and the team will look into it.",2019-07-23 16:26:40,newest,com.habitrpg.android.habitica +Emily Malsbary,https://lh3.googleusercontent.com/-iClbLO8KbbA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO7uSX1HP9kCdkGa7VH2C4NESk7uA/photo.jpg,"with the new update, when you tap tasks or the eggs and hatching potions you have to close and reopen the app in order to get it to load. but otherwise the update is really cool",4,0,,2019-07-01 00:02:05,"Hi Emily, thank you for your review and sorry to hear about the trouble. If you'd like to send us more detail to help us investigate these issues, you can send that information directly to the support team via Menu - About - Report a Bug.",2019-07-22 23:52:56,newest,com.habitrpg.android.habitica +Enyph Games,https://lh3.googleusercontent.com/a-/AOh14GhE5Ix9CuZle9Pd-ejtoP4AB5vCf4-mBNTeJAEx,"App doesnt work without internet connection, everything else is great",4,0,2.0,2019-06-30 06:19:21,,,newest,com.habitrpg.android.habitica +Volkan Bravo,https://lh3.googleusercontent.com/a-/AOh14Gj4BnD2y0BSdCIiFnq2ziBy3LsRHWyXMzf1_-U07w,"amazing, almost perfect.",4,0,2.0,2019-06-29 14:38:27,,,newest,com.habitrpg.android.habitica +Santiago Rhenals,https://lh3.googleusercontent.com/a-/AOh14GicP7T_veXEEUBnZcdtGH_jtu2rjm9GH0qVeLS4GA,"Excellent app, great habit tracker. I've found in this app an exciting way to be productive! There are some bugs and functionalities that need to be fixed, however, it's worth using it. I really recommend it.",4,0,1.9.3,2019-06-28 00:26:13,"Hi Santiago, thanks for your review! We really appreciate you recommending us. You can help us fix bugs by reporting them directly via Menu - About - Report a Bug.",2019-07-22 23:49:46,newest,com.habitrpg.android.habitica +Underhill精神,https://lh3.googleusercontent.com/a-/AOh14GiOLGv4B6jt92zYixcDVaBft2Nw-4Ybwg4ro667,"I really like this app, it pleasing on the eyes it's well-designed, has a lot of social features but remains simple so you can focus on your goals not running the app. I would suggest to add an ability for ""gold"" that is currency only valuable to you so that your personal rewards, aka don't work against playing with your avatar and currency of that kind should be able to be exchanged within party. That way you and your friends can gift each other screen time or whatever.",5,27,2.4.4,2020-03-31 16:10:16,"Hi Naphy, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2020-02-28 00:00:59,most_relevant,com.habitrpg.android.habitica +CT Trumann,https://lh3.googleusercontent.com/a-/AOh14GgGEz5S6XoCC8ZlBDT0OjiTkU5Jhq5MN5DGr1zDaw,"Started using habitica on January 1st of this year, as a new year's resolution to manage my time and habits better, and it's been a huge help. Especially love the party aspect, and the way it adds social accountability to missing or hitting targets. Very pleased, thank you for all the work that went into this app.",5,0,2.5,2020-03-28 04:48:11,"Thanks so much for your review, we're happy to hear Habitica has been helpful for you! There's a New Year's Resolutions guild if you want to check that out! If you’d like to share any feedback with us directly, you can do that via Menu - About - Send Feedback.",2020-04-03 03:59:03,most_relevant,com.habitrpg.android.habitica +Skrik Carnivora,https://lh3.googleusercontent.com/a-/AOh14Gjvemj2XTFvL5Ub-YWAKHBatzn8s644C3_1ZS-W,"I love it! One thing I had a problem with earlier was that if I didn't have internet connection, it wasn't possible to log my dailies in. Now I have unlimited data, so this isn't a problem for me anymore, but might be worth solving this for other players. Everything else is just wonderful and a big help to life organization for scattered-mind people like myself 😅",5,9,2.5,2020-03-29 12:02:44,"Thank you for this thoughtful review, we're so glad that Habitica is working for you. Habitica doesn't have an offline mode currently -- it's on the wishlist, but it's reeeeally complicated, and Habitica has a really small team (we don't sell ads or your personal information, so it's a small budget). Maybe some day!",2020-04-01 04:28:59,most_relevant,com.habitrpg.android.habitica +Brittany Megan,https://lh3.googleusercontent.com/a-/AOh14Gi8PtBUXY73ikuBHz_3APv-hHwyUhPw6sdx-0QrNw,"I love this app so much! They make it really fun for free players too, so you don't feel left out if you don't spend money. I have decided to get a subscription though since it's such a great app. It has my whole family super motivated, my kids are actually loving doing chores! And I also love all the social aspects to it as well. It would be cool of you could assign names for your pets, and the app doesn't function quite the same as the website version, but overall I have no complaints. :)",5,4,2.5,2020-03-25 06:09:19,"Thanks so much for your review, we're happy to hear Habitica has been helpful for you! And thank you so much for the subscription, we really appreciate it. :) If you’d like to share any feedback with us directly, you can do that via Menu - About - Send Feedback.",2020-04-03 04:03:46,most_relevant,com.habitrpg.android.habitica +Carrie Burton,https://lh3.googleusercontent.com/a-/AOh14Gj-BpwyDKXECObrNBYTrmp_0BWuz9J-jMyV3FxVBg,"This is such a fun way for chores to be rewarded. My household is full of gamers, and this is a great way to create and maintain habits, as well as track chores on a daily, weekly, or monthly basis. They are great about getting back to users. They have real conversations, and listen to user feedback.",5,0,2.4.4,2020-03-09 22:41:05,"Thanks so much for your review, we're happy to hear Habitica has been helpful for you! You can send us any specific feedback via Menu - About - Send Feedback, and it sounds like you know we'll keep your feedback in mind. :D",2020-04-03 04:15:19,most_relevant,com.habitrpg.android.habitica +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,I am unable to create a new daily. This is the main reason why I downloaded Habitica. The error message says ' ' is not a valid enum value for path 'frequency'. Edit: The app works perfectly now. I've been using it for over 6 months without a single issue. This is the best self improvement app ever created.,5,5,2.4.2,2020-02-02 14:59:30,"Hi there, we're sorry to hear about the trouble! The mobile team would be happy to look into this if you can send them a report via Menu - About - Report a Bug",2019-02-20 23:41:45,most_relevant,com.habitrpg.android.habitica +Luther Coghiel,https://lh3.googleusercontent.com/a-/AOh14GjWdNahJIaV83CS4eao-3QjS1xzrbIj10umtXbR,"WOW I REALLY LOVE THIS APP!!! Such a great idea. I first downloaded it for my youngest daughter to try help her with responsibility & organization, we connect daily on the app to check each other's progress. I generally enjoy this game, it is the only one have on my phone.",5,0,2.5,2020-03-14 12:27:48,"Thanks so much for your review, we're happy to hear Habitica has been helpful for you and your daughter! If you’d like to share any feedback with us directly, you can do that via Menu - About - Send Feedback.",2020-04-03 04:05:02,most_relevant,com.habitrpg.android.habitica +sanahal singh,https://lh3.googleusercontent.com/a-/AOh14GjwKOLtvx-L7qgQ6tmy0GTtWZd4zHX5ZTRELW6S,"This app is really unique. It has made me interested again in being productive. It's almost like adopting a lifestyle! However, the app is currently having a problem with task reminders. It doesn't work most of the time and when it does, the alert is usually delayed by approx. 10 minutes. Also, it would be nice if the developers provided the ability to make task lists even when offline. Other than that, the app is perfect! Definitely recommend experiencing it!",5,2,2.4.3,2020-02-14 22:25:22,,,most_relevant,com.habitrpg.android.habitica +Santiago Bañuelos,https://lh3.googleusercontent.com/a-/AOh14GhATGL1tuib66Hg0Wq2zkNnGCbNXyEIy7tus_k3lds,This is a superb way to motivate yourself to do things. To create new and healthy/fun habits and get rid of bad habits. Do you want to live a life full of adventures? Be creative and install this amazing app. I would suggest a clearer and friendlier GUI but overall itS AMAZING.,5,1,2.5,2020-03-11 03:18:33,"Thanks so much for your review, we're happy to hear Habitica has been helpful for you, and led you on a life full of adventures! If you’d like to share specific feedback about the GUI with us directly, you can do that via Menu - About - Send Feedback.",2020-04-03 04:14:02,most_relevant,com.habitrpg.android.habitica +Ghost,https://lh3.googleusercontent.com/a-/AOh14GjRNOAvyP4Vhzc7ey5TQS_C54kNUxvNCUP2X4QRog,"Ive used this app a couple times now, only uninstalling because school ended, but this app is amazing when it comes down to it. It encourages people to do the stuff that they need to without the complication of being told off by others. Plus, it has a cool rpg theme thats great for anybody who has grown up with/rpg game like elements.",5,0,2.5,2020-04-02 01:30:05,"Thanks so much for your review, we're happy to hear Habitica has been helpful for you! If you’d like to share any feedback with us directly, you can do that via Menu - About - Send Feedback. Hope to see you again when school comes back, or if you need some motivation between now and then.",2020-04-03 03:49:36,most_relevant,com.habitrpg.android.habitica +Andy Pinette,https://lh3.googleusercontent.com/-G-XN7K0btzc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP0Bv7MzcsJx2KTmplLinqXXtdGHQ/photo.jpg,"Fantastic absolutely best of it's kind. No ads, great system of to dos dailies and habits (that you want to have and break) plus the tavern/guild/challenge/quest/party system really keeps you motivated, as does the in art or out of world reward system. Absolutely fantastic.",5,0,2.5,2020-04-02 19:49:53,"Thanks so much for your review, we're happy to hear Habitica has been helpful for your motivation! If you’d like to share any feedback with us directly, you can do that via Menu - About - Send Feedback.",2020-04-03 03:33:20,most_relevant,com.habitrpg.android.habitica +Kaitlyn Sims,https://lh3.googleusercontent.com/a-/AOh14GhMuAcP2YteftmI2T66rr6m03qrQeRaA1giGJx2F3Q,"It's a delightful app that helps you keep on top of things. Personally, I've found that you get as much as you put into it. There are communities and challenges you can join with like-minded people to help you achieve similar goals, and their are seasonal events as well. There are no adds, no constant pop ups to buy gems, and all features are equally helpful without the gems.",5,51,2.5,2020-03-01 23:27:38,,,most_relevant,com.habitrpg.android.habitica +Beth Meier,https://lh3.googleusercontent.com/a-/AOh14GjIzNY6BIIrC3MwYrt4gYpiH5UodPAsHwhBUfhOLQ,"This app has helped me keep up so many habits and routines. At first I struggled with it a lot, but I soon joined a party. The quests are really helpful to keep me on track, and there are others in the groups to help out too.",5,1,2.5,2020-03-26 20:46:55,"Thanks so much for your review, we're happy to hear Habitica has been helpful for you and that you've found a supportive party! If you’d like to share any feedback with us directly, you can do that via Menu - About - Send Feedback.",2020-04-03 04:03:00,most_relevant,com.habitrpg.android.habitica +Willow C. Waterhorse,https://lh3.googleusercontent.com/a-/AOh14GgSyp4UUbPWYtUEKgV3GmQU9qZeACYRRuCH0--T,"As a Gamer This Makes Life Fun You can make a long of lists of your daily life and gain XP and rewards. You can hatch pets, feed them, ride mounts, find a party to run with, get cool gear, and go on quests. I can see where fun wise there could possibly in the future be expansions for more to come by all means, but right now this really helps to keep on track and makes it so I actually enjoy some part of my life for the first time in a long time outside of my pets.",5,21,2.4.3,2020-02-11 06:35:19,,,most_relevant,com.habitrpg.android.habitica +Ruairidh Macmillan,https://lh3.googleusercontent.com/a-/AOh14GhV3ikHrY9vASWpPx5dorUdXhtUh5I8VWWifKMdYA,"Great app for encouraging you to do things! Love that you can personalise your own tasks and play with friends. Would love to see the ability to repeat tasks on weekdays/weekends, instead of just daily/weekly. And an Undo button would be awesome! Sometimes I'll mark something by accident and can't revert what hearts I lost, coins I earned, etc.",5,5,2.5,2020-03-06 09:17:48,"Hi Ruairidh, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2020-03-13 18:39:29,most_relevant,com.habitrpg.android.habitica +Laura Chute,https://lh3.googleusercontent.com/a-/AOh14GhuWwNoxxZCLCZolkntSQR3bOyNe22z0hRaxwuCtQ,"Honestly it's perfect but theres just. One thing. I really wish you could set a habit for 'complete X times a week', it would be so useful. I have yet to find an app that is this good, but that is the only shortcoming. Please add this! I mean of course you dont have to but it would be amazing.",5,1,2.4.3,2020-02-10 02:24:55,"Hi Laura! Thanks for your review. We are working to add the type of repetition you mentioned, and just working out the last bugs with it in testing. We hope to have it available very soon!",2020-02-13 20:31:22,most_relevant,com.habitrpg.android.habitica +Invisible Girl,https://lh3.googleusercontent.com/a-/AOh14GgJr2eg-PI6J2SE_sYS9sO7dsSTwHzB08m4tvs0,This app has helped me a lot and is all in all one of the best apps I know. There's just one suggestion: I have many habits and dailies hence I have to scroll a lot. It would be amazing if there was an option to change the layout so you can have a better overview.,5,1,2.4.4,2020-02-26 19:09:14,,,most_relevant,com.habitrpg.android.habitica +Hariom Bharadwaj,https://lh3.googleusercontent.com/a-/AOh14Gii2Ecwxe-RZncyII8WQMtwQu6MW_sC_yCASF3ILw,How to See my completed tasks ? I am confused as I accidentally clicked on done and tasks stopped appearing on the list Obviously. But It creates problem cuz you didn't do but it checked. So please add feature so we can see all our completed tasks upto a month . So we can see our records and edit any possible mistakes. Thank you. Other than this small part This app is best for me. I am requesting you if you can listen us please please add this feature. 🙏🙏🙏 COMPLETED TASKS LIST UPTO A MONTH,5,2,2.5,2020-03-17 12:01:26,"Hi Hariom, thanks for your review! We hope to add more in-app stats and info on completion and improvement soon. In the meantime, you may find the Data Display Tool one of our devs created helpful: https://oldgods.net/habitrpg/habitrpg_user_data_display.html",2020-03-20 22:37:29,most_relevant,com.habitrpg.android.habitica +Jack Zimmerman,https://lh3.googleusercontent.com/-A-S7UHfYfMs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMV7MgVEsl1TuWytSw9-wxCHkFWOQ/photo.jpg,"I love Habitica! I am particularly bad at getting things done and this app has helped me improve so much. It's as it says, gamifying your tasks. I am on level 12 and I have only been doing it for a week! If you need a pick me up with your chores and Todo lists then check it out.",5,0,2.5,2020-04-03 14:08:05,,,most_relevant,com.habitrpg.android.habitica +Eva Liandris,https://lh3.googleusercontent.com/a-/AOh14Gj96q_0IbRCBhya0iGNphiKEooxVVOZuYs0ozNtGQ,"The app didn't work for me at first, but after uninstalling a few times it eventually worked, and I love it! This is great for me as a college student because it makes keeping up with homework and assignments easier by adding an element of fun!",5,4,2.4.2,2020-01-27 05:22:56,"Hi Eva, sorry to hear about the trouble! Please reach out to our support team via mobile@habitica.com and they'll look into this as soon as possible.",2020-01-24 21:47:39,most_relevant,com.habitrpg.android.habitica +uWu,https://lh3.googleusercontent.com/a-/AOh14GjY-2f3bijlW2JMk4o7SrvdMj85SPIXv6H4FTzlXA,This been really working well with me. The community is great too. It's very useful and the widget is great feature. Though how about costumizing the app theme? Like using different color theme instead of the default purple. Because it will look prettier for my widget :D,5,17,2.4.3,2020-02-06 02:36:43,"Hi uWu, thanks for your review! We do hope to add custom color themes in the very near future!",2020-02-07 00:00:10,most_relevant,com.habitrpg.android.habitica +Phantom Zero,https://lh3.googleusercontent.com/a-/AOh14GhICXu0_Q68yZwGe2BpVekPznp0Z2HCZjXvR3Hp,"It's a good app. It fuses the entertainment received in playing games with finishing chores, which is pretty hard to pull off. I'll recommend it to anybody who's trying a lot to change their life but easily succumbs to their desires.",5,0,2.4.4,2020-02-24 14:06:18,,,most_relevant,com.habitrpg.android.habitica +Renée Wetsel,https://lh3.googleusercontent.com/a-/AOh14GjsBu-_jRk_nPskU6fFOTFn_kbWwYpyb05wD0ZIdg,"There are options to give your avatar a wheelchair, and there are a lot of colors to choose from, as well as a skinnier body type or a larger one... I don't use a wheelchair, but I just loved this option so much because I have friends who do and it really means a lot to them! So cute lol",5,1,2.5,2020-03-01 03:47:28,HI Renee! Thanks so much for your review and your kind words. We're glad we can make everyone feel welcome in Habitica!,2020-03-13 17:57:35,most_relevant,com.habitrpg.android.habitica +Diego Gatica,https://lh3.googleusercontent.com/a-/AOh14GiTYAqWsqlgj2EkKCblsTeb3MSVkpgAjbermBK2Og,"OK, I love the app, it's great, but the notifications just doesn't work, they are broken, and it's the main feature I'm looking for, fix it in order to give you the five starts",5,0,2.5,2020-03-16 04:49:53,"Hi Diego, sorry to hear about this issue. Please let us know if you're still having trouble via Menu - About - Report a Bug. A direct report will provide details that will help the team fix the notifications.",2020-03-13 18:43:13,most_relevant,com.habitrpg.android.habitica +Shondell Miller,https://lh3.googleusercontent.com/-tARQ-cmxodA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNnqAvhG9TXOAUImDs0J8_kVP7gUw/photo.jpg,"Been using Habitica for a few months. Tried a few other to-do list games, none of them beats Habitica. Best way to keep track of daily life and still have fun.",5,0,2.5,2020-03-30 02:22:23,"Thanks so much for your review, we're happy to hear Habitica has been helpful for you! If you’d like to share any feedback with us directly, you can do that via Menu - About - Send Feedback. Keep having fun!",2020-04-01 04:25:13,most_relevant,com.habitrpg.android.habitica +Zully,https://lh3.googleusercontent.com/a-/AOh14Gg_N7VZ31Wkc0RXY0s81FHIiRxfJNrQ-9IxKhj5,"I absolutely love this app. First of all, it actually works and give me all the motivation I need to get stuff done. Secondly the community is awesome and there is just so much stuff to do! Recommended to everyone looking to develop habits.",5,3,2.4.2,2020-01-24 23:00:56,,,most_relevant,com.habitrpg.android.habitica +Ran VeNtUrE,https://lh3.googleusercontent.com/-H4c-pG6FH8k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOyfmDRrkXGZgIQ4tzUKmtNGkOwNA/photo.jpg,It is an amazingly helpful app I am currently a year 11 student and this has helped tremendously boost my productivity i have seen improvements not only in my results but also me as a person as I lost lots of my bad habits and gained good ones. HIGHLY RECOMMEND TO ANYBODY WHO WANTS TO IMPROVE THEMSELVES (non--academic/academic),5,0,2.4.2,2020-01-31 14:03:44,,,most_relevant,com.habitrpg.android.habitica +Harmonious,https://lh3.googleusercontent.com/a-/AOh14GjoW_DCwmuJ0Dy0gHrilF7uoK-aw8Z32B63po8Jkw,"A great app to keep you up and moving, especially being in quarantine :) (this review was made at the time of covid 19)",5,1,2.5,2020-03-17 01:50:43,"Thanks for your review, Harmonious! Stay safe and well! :)",2020-03-20 22:36:52,most_relevant,com.habitrpg.android.habitica +Dr. Armaan Jain,https://lh3.googleusercontent.com/a-/AOh14GiXqx_JMEYGzsRyg3QG6p93arm-GDZfwqbTGXuggA,"Can you give an option to set up timer for every task like 10 minutes or so, to make us more efficient? You can do it by giving us a button to start the timer and the task automatically gets checked once the time is up. And if somebody wants to undo then points will be deducted. Is it possible in any way?",5,1,2.4.2,2020-02-06 16:44:56,"Hi Dr. Armaan, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2020-02-07 00:01:13,most_relevant,com.habitrpg.android.habitica +Kenshi Shimada,https://lh3.googleusercontent.com/a-/AOh14GjgjZfoFqFdDW-xS10lRdIcRFKxhxisopLtN7yD,"I love this app, I just wish it wasn't so easy to change your stats and I wish we could delete the default daily tasks. Maybe I can but I'm a dumbass. Idk",5,0,2.5,2020-03-12 04:07:51,"You can delete the default tasks. :) Long-press on them, an edit screen will pop up and you can delete them from there. I hope that makes Habitica more useful for you! Thanks for the review!",2020-04-03 04:13:11,most_relevant,com.habitrpg.android.habitica +prithvi shetty,https://lh3.googleusercontent.com/a-/AOh14GiQO8vHezI3Bqy5IJAscD0eQBHhKKeT-wwmmnAu1A,"I'm on the quest of improving myself, developing small good habits is pretty easy with this and using this app as a reminder for tasks is awesome.",5,0,2.4.3,2020-02-18 14:29:15,,,most_relevant,com.habitrpg.android.habitica +Umme Saad,https://lh3.googleusercontent.com/-81VoveIV7Mk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMZFkj9HfWph5oHELzwA_ASy9z1lQ/photo.jpg,Great! It's a great game to motivate people to do big stuff who just keep sitting on the sofa and don't want to move.thank you creaters of habitica.😋😁,5,0,2.5,2020-03-18 09:36:45,"Thanks so much for your review, we're happy to hear Habitica has been helpful in getting you off that sofa! If you’d like to share any feedback with us directly, you can do that via Menu - About - Send Feedback.",2020-04-03 04:04:31,most_relevant,com.habitrpg.android.habitica +No Thanks,https://lh3.googleusercontent.com/-q6CmDWxOtnY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN9nBnZkFzhlYXV4gE4L39Qmh0zmw/photo.jpg,"Engaging and effective. It doesn't seem to be possible to use a Google Play balance to pay for gems, though.",5,0,2.5,2020-02-29 16:52:32,"Hi No Thanks, sorry to hear about the trouble with gem purchases. If you're still having trouble please let us know via Menu > About > Report a Bug and we'll look into it!",2020-03-13 17:54:41,most_relevant,com.habitrpg.android.habitica +Caty Steyn,https://lh3.googleusercontent.com/a-/AOh14GgHAW1SDFi9AbdkIVlcW_HOVSe6-WiCpahRyzmq2g,I've only been on the app for a small time and I can already see the ways in which it can help. Very inclusive and helpful,5,0,2.4.4,2020-02-22 08:18:17,,,most_relevant,com.habitrpg.android.habitica +Sloth Baring,https://lh3.googleusercontent.com/a-/AOh14GhzgRk7UlgH78ho9YmI4jzoLsIm3HNPPPKTro-SXQ,I really like so far. I makes my daily routine a bit fun and make it meant something in a way.,5,0,2.4.4,2020-03-09 04:06:40,,,most_relevant,com.habitrpg.android.habitica +SconeSoda,https://lh3.googleusercontent.com/a-/AOh14GjCI4T0LkzwNYc24VNopKozBitN7wcPFDUa5MhE9w,This is a great app. It's helped me stay on task with everything I need to get done.,5,0,2.5,2020-03-28 21:16:28,"Thanks so much for your review, we're happy to hear Habitica has been helpful for you! If you’d like to share any feedback with us directly, you can do that via Menu - About - Send Feedback.",2020-04-03 03:57:52,most_relevant,com.habitrpg.android.habitica +Anshul Bhatia,https://lh3.googleusercontent.com/-Aj1mHwUdVTY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOgArvuoBEcBRUjoVXB3B8x82mNlQ/photo.jpg,"Awesome app,very helpful for forming habbits.Thank you for this wonderful app.",5,0,2.5,2020-03-24 10:23:51,"Thanks so much for your review, we're happy to hear Habitica has been helpful for you! If you’d like to share any feedback with us directly, you can do that via Menu - About - Send Feedback.",2020-04-03 04:03:51,most_relevant,com.habitrpg.android.habitica +Gyl K,https://lh3.googleusercontent.com/-hq1-CDV27p8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPXmkq0B9qRjjroWDy341BKcHN1Hw/photo.jpg,"I like this app, It is an amazing tool, however I couldn't find calendar and where I can track what I have done. Could you help me find it?",5,0,2.5,2020-03-23 08:23:37,"Hi Gyl, thanks for your review! At this time we do not have a calendar feature, although this is a popular feature request we are considering for incorporation. We hope to add more in-app stats soon. In the meantime, you may find the Data Display Tool one of our devs created helpful: https://oldgods.net/habitrpg/habitrpg_user_data_display.html",2020-03-26 19:45:21,most_relevant,com.habitrpg.android.habitica +Eeliac Ynnek,https://lh3.googleusercontent.com/a-/AOh14GhULxbRWU5wsc649mehMVYi3tVVuj8zyQBF2VmSJA,"Cute and entertaining, definitely helping me to stop bad habits!",5,0,2.5,2020-03-20 16:30:59,"Thanks so much for your review, we're happy to hear Habitica has been helpful for you! If you’d like to share any feedback with us directly, you can do that via Menu - About - Send Feedback.",2020-04-03 04:04:10,most_relevant,com.habitrpg.android.habitica +Matt Steere,https://lh3.googleusercontent.com/a-/AOh14GjoYyiIMZRnct613RHTMEO1oFpWHvPfWPpmekKY,Has helped me to stay engaged with my to dos in a workable and fun way. Love this app.,5,0,2.5,2020-03-02 13:36:59,,,most_relevant,com.habitrpg.android.habitica +Victor Seras,https://lh3.googleusercontent.com/-ImBhAuPFF6c/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMmmsv_sPix2JcH2lUcLnANhXy2GQ/photo.jpg,"Its actually improved how I do things, and caused me to be more active, I love this app!",5,0,2.5,2020-03-12 07:40:34,"Thanks so much for your review, we're happy to hear Habitica has been helpful for getting you more active! If you’d like to share any feedback with us directly, you can do that via Menu - About - Send Feedback.",2020-04-03 04:06:09,most_relevant,com.habitrpg.android.habitica +ash da furry child,https://lh3.googleusercontent.com/-6aZqW3wzVmk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMVWaBY5X0WCclSawtjIgTOhqh8bw/photo.jpg,I love this app it's the best and keeping things healthy with yourself and I love it so much,5,0,2.5,2020-03-12 00:26:16,"Thanks so much for your review, we're happy to hear Habitica has been helpful for you! If you’d like to share any feedback with us directly, you can do that via Menu - About - Send Feedback.",2020-04-03 04:13:20,most_relevant,com.habitrpg.android.habitica +Tiffany Welch,https://lh3.googleusercontent.com/a-/AOh14Gh8_PB2ANYCRtEoilY4CH3y09fK7UC8cv0vdV0fkA,This has really helped me be motivated to get things done. Im really enjoying this app,5,0,2.5,2020-03-02 14:56:38,"Thanks so much for your review, we're happy to hear Habitica has been helpful for you and your motivation! If you’d like to share any feedback with us directly, you can do that via Menu - About - Send Feedback.",2020-04-03 04:16:50,most_relevant,com.habitrpg.android.habitica +Emily De Saulles,https://lh3.googleusercontent.com/a-/AOh14GiMmHOzfwrdHY4yEEhwRvPxvxy-u7dpieUag1DAag,This game/app is so easy to use and so much fun. Thank u so much for making habitica!,5,0,2.4.4,2020-03-04 18:50:53,"Thanks so much for your review, we're happy to hear Habitica has been helpful and fun for you! If you’d like to share any feedback with us directly, you can do that via Menu - About - Send Feedback.",2020-04-03 04:16:29,most_relevant,com.habitrpg.android.habitica +S Whitfield,https://lh3.googleusercontent.com/-aACWZtbJtr0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOyi0gt164N_N9r5GDE_Q1uzG2cqA/photo.jpg,"If you're a procrastinator this app will change your life! I have a tendency to avoid the things I need to do by snacking or playing video games so this app has been perfect for me. I'm great at making to-do lists but suck at execution. This app has helped me with so many areas of my life, chores around the house, my quality of work at my job, I've even been using it to develop safer driving habits. The community is also very supportive, it's really fun to play with a friend and party up.",5,5,2.4,2020-01-25 06:32:12,,,most_relevant,com.habitrpg.android.habitica +Shawn,https://lh3.googleusercontent.com/-IgcHBBkMMw0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNpagZKWohm-e1qvmUlMf8b_dGE6A/photo.jpg,"The game aspect really does motivate me! Especially helpful for doing the dishes. There's a big difference between ""I should do xyz"" and ""I have to do this or I'll lose health points, and I don't want my party to get attacked!""",5,2,2.4,2020-01-19 05:50:37,,,most_relevant,com.habitrpg.android.habitica +Amanda Newton,https://lh3.googleusercontent.com/a-/AOh14Gg0MNsk4kb170t1l18Ph9CWdtz1sZRaslDfOmaq,"I'm really happy with this app - it helps me stay productive, both in school and with my writing goals and even tiny things like just getting out of bed in the morning. I 100% recommend this to anyone who procrastinates as much as I do, because it's really helping me get out the hole I dug myself into with my bad habits.",5,19,2.4,2020-01-21 13:40:45,,,most_relevant,com.habitrpg.android.habitica +arijit bhattacharya,https://lh3.googleusercontent.com/-3ZQDpOe-Ob0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMgKj82r0gxAK5e59OgGo5aCrsrig/photo.jpg,"If possible please add more advanced equipments and more powerful bosses so that it does not get boring after sometime. There is no purpose to collect pets if they are only for cosmetic purpose. There should be some reward that we can identify ourselves with. For example, there can be a weekly ranking system (say from 1-10000) for all the habiticans so they are more motivated.",5,1,2.3,2019-12-11 06:22:02,"Hi arijit, thanks for your review! We'll keep your feedback in mind as we continue to work to improve Habitica. You can contact us directly by going to Menu - About - Send Feedback if you'd like to give us additional details.",2019-12-12 19:29:03,most_relevant,com.habitrpg.android.habitica +Colleen Moreno,https://lh3.googleusercontent.com/a-/AOh14GjB0kzy5J5QRxta97VyN3FTZIpNsfpTxuuHvaKlTg,"Amazing. Not only is this app cute-to-boot, but it's so easy to use! It doesn't largely focus on the character aspect, which I like because I'm mostly here to organize my life. Everything is covered: To-Do lists, Dailies, Scheduling; its so extremely customizable and in such a simple platform (that I dont have to pay extra for) Not only that, there is the community aspect! Its about holding yourself accountable, and this app is perfect, thank you.",5,21,2.3,2019-11-20 22:05:05,,,most_relevant,com.habitrpg.android.habitica +Andrew Watson,https://lh3.googleusercontent.com/a-/AOh14GjzCjeDKk-grHMmKldIqVAW-T3fS8-qlqKevbbg,"Love the app! Easily modifiable for making good habits, daily routines, and checklists, and fun to do with friends. Thank you for the your response below: the link allows you to review your history (this has been very helpful for me in realizing where my weaknesses and strengths are). My last wish is to allow friends to see your tasks and completions (for encouragement).",5,17,2.3,2019-11-21 14:45:36,"Hi Andrew, thanks for your review! We hope to add more in-app stats and info on completion and improvement soon. In the meantime, you may find the Data Display Tool one of our devs created helpful: https://oldgods.net/habitrpg/habitrpg_user_data_display.html We also will keep your feedback about friend accountability in mind!",2019-11-05 20:02:11,most_relevant,com.habitrpg.android.habitica +Kailah,https://lh3.googleusercontent.com/-nya0P2A68gA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMhPVWooD1JwUcS3wN0OP36c0_apg/photo.jpg,"Habitica is the best! It's so rewarding completing day-to-day tasks with this app. Your avatar can earn gold, equipment, pets, experience by completing the tasks you choose. Joining a questing party is fun because you're with others, holding each other accountable and encouraging one another. Participating in challenges is great because you work on specific aspects of your life, like positive thinking, exercising, reading, ect. Habitica has helped improve my life, and I feel so much happier!",5,22,2.2.1,2019-11-04 05:46:55,,,most_relevant,com.habitrpg.android.habitica +Andre Martinez,https://lh3.googleusercontent.com/a-/AOh14GgTLpzXEnf_s3dxrCUiQKNu5-IoJFgntXx-GbE29w,"I've been looking for a habit like tracker via google search, not really knowing the term or if an app really existed. Once I found what I was looking for, Habitica showed up. I installed it to my phone, looked up a YouTube video of it, and began using it. Now I'm hooked and 12 days in getting my life straightened up. Cleaning house, doing daily chores, and doing things I usually hate doing. Habitica just makes it fun to do with it being an RPG. I love it and cannot recommend it enough.",5,1,2.2,2019-10-19 02:52:45,,,most_relevant,com.habitrpg.android.habitica +Clark Kent,https://lh3.googleusercontent.com/a-/AOh14Gi9yrr2nA9ctgnFe_kjmv2gCg0szMQXNVIfJYbGeA,"This app is awesome! I love it not only I'm creating healthy habits, I am also learning thru challenges, you get to talk to people and destroy bosses. Is really awesome. Plus I had some trouble connecting to the game and Alys responded to me quickly and also they fixed it. Shout out to Alys. You guys are doing a good job.",5,3,2.3,2019-11-16 16:36:32,,,most_relevant,com.habitrpg.android.habitica +Star C-S,https://lh3.googleusercontent.com/-YA0YjCswdEc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP-aP6SVVhFxPgaDVDOXvqVd9rqFg/photo.jpg,This is a very creative app to keep me amused with my Versa 2 Fitbit and to keep me productive when doing tasks around the house. Excellent job creating this app keep up the great work!!Two thumbs up...👍👍😎🖤,5,0,2.4,2020-01-24 00:04:26,,,most_relevant,com.habitrpg.android.habitica +Andrew Johnson,https://lh3.googleusercontent.com/-Hof0aqXFyRY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNAf0TJln3KwJ1VeO40hJ9fHpx7zQ/photo.jpg,Love it...it has completely changed my life I couldn't have become more adult-like without habitica!!! 😋😊😋😊😊😊,5,0,2.4.2,2020-01-27 03:21:01,,,most_relevant,com.habitrpg.android.habitica +elif gurcinar,https://lh3.googleusercontent.com/a-/AOh14GhOtmxSkqptZ9q2j94kbCZjxAVsoA0_ejuHapAWOQU,It looks awesome i hope it will help me build good habbits and keep track on my schedule. I wish it could be like a widget on android phone screen as well. And maybe we could write some quotes that motivates us we could see them as notification or something. i love the guild part looks like you can create communities and be part of them. I just download the app today and wanted to share my first impression. Well done :),5,8,2.3,2019-12-01 10:46:54,,,most_relevant,com.habitrpg.android.habitica +Alaina Gillett,https://lh3.googleusercontent.com/a-/AOh14Gg4LrCdSB1eoe0mUZsBbAHKLHPDoHRn4mpT0aXqmA,"This is a fantastic app with a fantastic community-- love this game :) Helped me start sleeping on time and drink water-- anything that you can imagine for yourself, it can help you do!",5,0,2.4,2020-02-01 06:14:25,,,most_relevant,com.habitrpg.android.habitica +Chelsea Wildner,https://lh3.googleusercontent.com/a-/AOh14GiNIoGQprjUOeNazzJ1XAX1jvHVenNP-ls6Oy9khw,"Love this concept, love this app. I've been following the development of habitica since it was still only online & I love it! Plus there's plenty of active users to party up & chat with and the devs are always helpful & prompt!! My only gripes are that I wish I could change the colors of my tasks/habits (nitpicky I know lol) & maybe have a notepad area where I can keep habitica-related notes, like a key to the emojis etc I use for myself... And maybe a proper/separate friends list :)",5,1,2.3,2019-11-24 19:23:49,"Hi Chelsea, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2019-12-06 01:07:58,most_relevant,com.habitrpg.android.habitica +Gray Seeker,https://lh3.googleusercontent.com/a-/AOh14GiFqSHF5iH0fRpTz5DGv3NBUDvxbH2V09bSj2g4,I love Habitica! It's a habit tracker and to-do list that actually motivates me to get things done via the gamification and fun social aspect. The world of Habitica feels like a supportive community of people holding each other accountable and helping each other accomplish their goals. Doing my daily chores is so much more fun when I turn it into a quest for magical potions and eggs!,5,1,2.2.2,2019-11-07 04:56:10,,,most_relevant,com.habitrpg.android.habitica +Dino Katherine,https://lh3.googleusercontent.com/a-/AOh14GjChbkTmQshLDgw9S3rDr-MOYSRPJsbM9bb2e2XaQ,I refer to this app constantly. It feels super rewarding to do things and keeps me motivated to do the tedious stuff I used to procrastinate on. I love it!!,5,0,2.4,2020-01-15 12:16:16,,,most_relevant,com.habitrpg.android.habitica +Pat The Demon,https://lh3.googleusercontent.com/a-/AOh14Ggue05KpNpNiAK5bcJopat4syzMamANLI2MRNEU,(Samsung Note 8)Surprisingly robust and easy to use. The game aspect is a nice bonus but the core productivity elements are what make this app awesome.,5,1,2.4,2020-01-15 01:01:02,,,most_relevant,com.habitrpg.android.habitica +Claire Olsen,https://lh3.googleusercontent.com/-jTgBvCleqlI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOSfw2vWjgSM10p1Hzsm2ar2WqfCw/photo.jpg,"A great way to work on self-improvement with friends, hold eachother accountable, and have fun!",5,0,2.4.3,2020-02-20 15:01:49,,,most_relevant,com.habitrpg.android.habitica +Karri bennett,https://lh3.googleusercontent.com/a-/AOh14GiSDi6Abmw98u-xtNxxTpe-Yi9ZuMazN9846jlT4w,"A fun way too self check your own habits, smashing support staff help and guide you, you can meet like minded people who are sharing connections and fun in this quaint yet challenging game app. If nothing else I'm remembering my meds on time. Enjoy finding your fun habits see you in Habitica the adventure is there for the taking 😉",5,17,2.4,2019-12-31 15:05:36,,,most_relevant,com.habitrpg.android.habitica +Sable Spottswood,https://lh3.googleusercontent.com/-qopCbukuzL4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJObJwIGDpHn0NvO7oGsSzyU-loVrw/photo.jpg,"An option for smaller text would be realllly nice and distinguished, it's so big and bulky looking and only fits a couple habits per page. Fun and actually works. it doesn't have a history for or even track your habits tho........ but still best app ever!!!",5,0,2.3,2019-11-24 21:28:39,"Hi Sable, thanks for your review! We hope to add more in-app stats and info on completion and improvement soon. In the meantime, you may find the Data Display Tool one of our devs created helpful: https://oldgods.net/habitrpg/habitrpg_user_data_display.html",2019-08-08 20:13:37,most_relevant,com.habitrpg.android.habitica +Jonathan Leung,https://lh3.googleusercontent.com/a-/AOh14GgJSPfJsznQJdSaQcVB5G76unwCPWOOZ3a_vNvvB7c,Great app. Helps me get things done and work on building better habits. Even better when you have a party going with friends. Would be nice if the app had a dark mode that's my only suggestion. Keep up the good work!,5,2,2.3,2019-11-17 05:59:30,,,most_relevant,com.habitrpg.android.habitica +Noel O,https://lh3.googleusercontent.com/-dddFY2zjaB8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMCCh6KJFKM3hFzN4AzcsJjSmourA/photo.jpg,"I'm actually willing to pay for the app, just please get the server issue resolved. Seriously, charge one dollar for the app, get a bigger Dev team and resolve any bugs or server issues. The app is actually great aside from that constructive feedback.",5,1,2.3,2019-11-16 02:37:06,"Hi Noel, thanks for your feedback. We'll certainly pass it on to the team.",2019-11-18 17:15:26,most_relevant,com.habitrpg.android.habitica +Cameron Owens,https://lh3.googleusercontent.com/a-/AOh14Gg-tBPTgZtIldqcimwnvjIP7D2qwXbmb_6GbiBUPg,"I love Habitica. I love the social aspect of it. If it didn't have the social media portion of it, I probably would have unistalled it as,soon as I installed it. The social portion of it gives me a, reason to check it, and reminds me to try and meet my goals.",5,2,2.4,2020-01-01 06:24:18,,,most_relevant,com.habitrpg.android.habitica +Mohammad Sultan Khaja,https://lh3.googleusercontent.com/a-/AOh14GglRcVEQvWlndBxhD7PCzXgVkIwcNw4nZnS7H-Ipw,Loving it. Would appreciate dark mode as well!,5,0,2.5,2020-03-01 17:10:09,"Hi Mohammad, thanks for your review! We hope to add Dark Mode very soon!",2020-03-13 17:58:29,most_relevant,com.habitrpg.android.habitica +Studying with me,https://lh3.googleusercontent.com/-_42_4WLUbC0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMR4TOLjq4-uG6A-uAImGoanvufYg/photo.jpg,Beautiful programme! I can recommend it for all my friends!,5,0,2.4.4,2020-02-23 07:34:08,,,most_relevant,com.habitrpg.android.habitica +Damien Thomas,https://lh3.googleusercontent.com/a-/AOh14GjSAawzrPUXdrZT1QJrSuD8ar7WKGTBRyaSvnwnAg,"Review as of 1/4/2020: This is a very great app. It is very useful and helpful, and the bug with some places not loading is fixed.",5,0,2.4,2020-01-04 09:48:42,"Hi Damien, sorry to hear about this issue. Please try updating to the newest version, and let us know if you're still having trouble via Menu - About - Report a Bug and the team will look into it.",2020-01-04 00:57:45,most_relevant,com.habitrpg.android.habitica +Naoko Pie,https://lh3.googleusercontent.com/a-/AOh14GiifEqBHJ6-fZFH6okTNKK545PaGmJN4FO0gKP62RM,"Beyond the social part, here we have the best way to take a good habit. Because at each ""bad habit"" you lose health. Same if you don't check a task (daily or to do) to say you did it. And you do not want to lose health. I don't know what happens when it comes to 0 but I do not want to test it. Actually I had another app for habits. It didn't works like Habitica do !",5,0,2.2.1,2019-11-01 00:50:45,,,most_relevant,com.habitrpg.android.habitica +Killian Dortch,https://lh3.googleusercontent.com/-WQJrNzSlROQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOWE4zyOWi-7ewTPeJkPESDC88nQA/photo.jpg,This is an amazing app. I've tried so many habit trackers and todo list type productivity apps. This is the only one that's kept me engaged. And the community is so wonderful.,5,7,2.4,2019-12-26 13:14:41,,,most_relevant,com.habitrpg.android.habitica +the artwoolf,https://lh3.googleusercontent.com/a-/AOh14Gj4BftAbYGIGPTEwuUB-44kTULUqF6bFOEcNazcYQ,Pretty good a little buggy with data for example i have more then 0 postive adds to eating 1 fuit and vegi also there should be a cap to tapping like a cap people can set or an option so that acidental tapping dossent happen other then this its a great app,5,0,2.2.2,2019-11-08 18:10:42,,,most_relevant,com.habitrpg.android.habitica +Maria Portillo,https://lh3.googleusercontent.com/a-/AOh14GghWfTod3wtFdXKIsf7XqKNane3DlPlgpaC0IFh9w,"Why did you change the chat order? :( Now the newest messages are at the bottom, it just feels so unnatural, it was fine before it didn't need a change",5,0,2.3,2019-12-18 19:37:47,,,most_relevant,com.habitrpg.android.habitica +Šarūnas Liutkevičius,https://lh3.googleusercontent.com/-s226J9dRZzU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOcNqbZSSqusamdxN6_K618q_aYjw/photo.jpg,Brilliant idea. You are making chores and tracking your habits and progress so much more fun!,5,0,2.3,2020-01-09 14:11:21,,,most_relevant,com.habitrpg.android.habitica +Mr. Sexy Senpai,https://lh3.googleusercontent.com/a-/AOh14GijtSVlFAUyBvUpZsU7BV_bWBlPZTEGxUaac2WoKQ,This app helps motivate me to complete my personal goals. Love it.,5,0,2.5,2020-03-31 08:15:32,"Thanks so much for your review, we're happy to hear Habitica has been helpful for you! If you’d like to share any feedback with us directly, you can do that via Menu - About - Send Feedback. Rock on with your personal goals :)",2020-04-01 04:22:32,most_relevant,com.habitrpg.android.habitica +Glitchy Wolf,https://lh3.googleusercontent.com/a-/AOh14Gh_0O5U_39qY4KSdVAgPidy_pE4V2enKR4H4H6QVA,"Thanks for the quick work! Everything works now. I really do like this app and use it on the daily, so I'm glad it's working again",5,0,2.3,2019-11-19 18:50:35,"Hi Glitchy Wolf, you may have run into some server issues we had at the time you posted- let us know if you're still having trouble via Menu- About -Report a Bug and the team will look into it.",2019-11-18 17:14:28,most_relevant,com.habitrpg.android.habitica +Kat Scheib,https://lh3.googleusercontent.com/a-/AOh14Gh5IsPqV6AJU1uaUvd_qh2RUarOubqdEhuy2RKQmg,"So glad I found this. Hope it keeps working the way it does, I just installed it. Just keeps getting better and better so far I absolutely love it :)",5,0,2.3,2019-12-06 06:09:46,,,most_relevant,com.habitrpg.android.habitica +Sam Foofoo,https://lh3.googleusercontent.com/-h2cBkbPdnys/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPWRZUXbqoC3RthWtnGYMlUb5s0zA/photo.jpg,I've always had such a hard time motivating myself to do things like chores. This app has made such a difference! It really gives me a sense of accountability. Highly recommend to anyone who just can't seem to get things done.,5,1,2.4,2019-12-26 16:44:56,,,most_relevant,com.habitrpg.android.habitica +CuckiMan,https://lh3.googleusercontent.com/a-/AOh14GiXNMpQktoZgSzSLVE05PVooIvAAGRtf-fKsJYQig,"THIS IS THE BEST APP EVER. I am a very procrastinative person from a long time ago, so I decided to improve my life. I suffered so much because I did things I didn't needed to do in the wrong time. But Habitica was there to help me rewarding me to use my time wisely :3 THANK YOOOOOOOU :DDD",5,0,2.2,2019-10-25 15:12:39,,,most_relevant,com.habitrpg.android.habitica +Nandaveer U M,https://lh3.googleusercontent.com/a-/AOh14GiKxSgfGTVGjTjGRJhtSqxlvDkacdgYw8T4FqbzaA,Must download. The app is very much useful. It had helped me get on track when I wasn't in a position of self reflection.,5,0,2.2.2,2019-11-05 23:51:56,,,most_relevant,com.habitrpg.android.habitica +nhpl 86,https://lh3.googleusercontent.com/a-/AOh14GjxuXyVqFJ6MCxIR0KjyEHOcFCj-CUd61zKsmfHdCU,"Amazing! Props for the design and organization tools, i wouldnt change a single thing. I wish there were more creator like u guys that really care and pay attention to users needs 👏👏👏",5,0,2.3,2019-12-07 15:45:33,,,most_relevant,com.habitrpg.android.habitica +Genni Emmerson,https://lh3.googleusercontent.com/-XgkeMQjAmrY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNVyl5jBrg1Yi1uPTkfzmnpyDL9qg/photo.jpg,This is an amazing app. I used to struggle to get anything done before I stumbled upon this wonderful creation.,5,9,2.3,2019-12-06 18:08:01,,,most_relevant,com.habitrpg.android.habitica +Vincent Campbell,https://lh3.googleusercontent.com/-avDs-jOR7PA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOl9XyZQKDjDpQsJ_CeS_VFIz1e-g/photo.jpg,Wonderful reminder app and Brilliant community!,5,1,2.4.2,2020-02-28 01:16:02,,,most_relevant,com.habitrpg.android.habitica +Boorose,https://lh3.googleusercontent.com/a-/AOh14Gh4z4Q8PlqQufz6lWYpRNcqpVy9oCx18-Mu-WcsJA,"Using the free version and already, I am hooked with how great it is.",5,0,2.4,2020-01-13 01:33:46,,,most_relevant,com.habitrpg.android.habitica +Jubair Hossain Jihad,https://lh3.googleusercontent.com/a-/AOh14GgPK7qew-hs_562aNNrBYo2qGLTrBuzruYY-x_a3A,Great apps to organize and manage task and practice habbit.,5,0,2.2.1,2019-11-11 03:47:41,,,most_relevant,com.habitrpg.android.habitica +Shane,https://lh3.googleusercontent.com/-E_w28-h6Huk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPRtmYaqa5y7mLuM4XmNX-iZZ__Ww/photo.jpg,Why take down show more or less function on Note after latest update version (Dec. 17 2019)? It's really useful.,5,0,2.4,2019-12-28 04:29:34,"Hi Undefined Null, sorry to hear about the trouble. If you'd like to send us more detail to help us investigate this issue, you can send that information directly to the support team via Menu - About - Report a Bug.",2020-01-04 00:53:32,most_relevant,com.habitrpg.android.habitica +Garrett Dally,https://lh3.googleusercontent.com/-ZYfR0zlbpIA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPNPzCqGIoKyMNtkXU8PIlVDk8jig/photo.jpg,It's fun and easy to use.,5,0,2.4.3,2020-02-13 22:16:54,,,most_relevant,com.habitrpg.android.habitica +Joshua Sheth,https://lh3.googleusercontent.com/-jYIaXu5Tyfo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOgvHkln41m6UHs3RdnbYoEK6ZQGg/photo.jpg,Simple and rewarding. The updates are amazing.,5,0,2.4,2020-01-06 04:31:20,,,most_relevant,com.habitrpg.android.habitica +Felix Hughes,https://lh3.googleusercontent.com/a-/AOh14GjauNM6nRMf_6rJTLyJTmshfaMRugcm7JDVn9WXkQ,"Love this app ☺ Devs always fix issues quickly, too.",5,0,2.2.2,2019-11-15 00:02:39,"Hi Felix! Sorry about this issue. Please try updating your app if you have not done so already. If you're still having trouble, we're happy to investigate and it helps if you send a bug report directly to the dev team via Menu - About - Report a Bug.",2019-09-12 19:24:59,most_relevant,com.habitrpg.android.habitica +Daphne,https://lh3.googleusercontent.com/a-/AOh14Gi_6Iz0JFmr3-0lgU7ABrp6LvE2MuAYe4C3pgQAMw,"has motivated me, kept me productive, and is continuing to do so for probably more than a year now! makes work more satsifying to complete and the party system is very helpful as well :)",5,0,2.3,2020-01-05 03:22:00,,,most_relevant,com.habitrpg.android.habitica +Emily Puckett,https://lh3.googleusercontent.com/a-/AOh14GgInD6dH3UjGFXdIWkJw01JZY-yFkKPHBrErT6c,I like this a lot! I'm getting my friends to use it with me :),5,0,2.3,2020-01-07 17:11:30,,,most_relevant,com.habitrpg.android.habitica +anthony notaro,https://lh3.googleusercontent.com/a-/AOh14GgdQwTmNUwoXQoc9TsNN95SbyLKMZuG4jpcABixDw,Awesome app for gamers who need motivation to get real life tasks done lol,5,0,2.4,2020-01-03 17:25:04,,,most_relevant,com.habitrpg.android.habitica +Joshua Choo,https://lh3.googleusercontent.com/a-/AOh14Gg6_coJzjxZeGWexTuytJXlkncOylnkPd17LLjMcqM,It's been helpful and very cute.,5,0,2.4.4,2020-03-09 06:42:51,,,most_relevant,com.habitrpg.android.habitica +Mr_Njc 9,https://lh3.googleusercontent.com/a-/AOh14Gik7z_0abTABD_2H2y6sj6g-4W5UFtSfYJY9fKRPA,Love the app... I would rate it 6/5 if calendar exist,5,0,2.4,2019-12-22 14:45:04,,,most_relevant,com.habitrpg.android.habitica +Nukala D,https://lh3.googleusercontent.com/a-/AOh14Gg1PF1XLENUuUR4BZKX1zyVgiIF-A_eOZ2dqTePGQ,Love this. This is a fun way to build your self up,5,0,2.4.2,2020-02-02 07:28:24,,,most_relevant,com.habitrpg.android.habitica +Gal Barak Mizrachi,https://lh3.googleusercontent.com/-jWjTiddxwjY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM441FMeHJ_NUTGbolzDqT32b0Qww/photo.jpg,Hebrew language doesn't work...,5,0,2.4.3,2020-02-18 11:46:36,"Hi Gal, you should be able to change your Language in Settings once you complete the tutorial. Not all translations are complete, as our translations are done by volunteers. If you'd like to help, you can learn more here: https://habitica.fandom.com/wiki/Guidance_for_Linguists",2020-02-21 00:16:17,most_relevant,com.habitrpg.android.habitica +fillone,https://lh3.googleusercontent.com/a-/AOh14Gg5B-wudBWlk51eg1k_Ms4-_LIfVTJW-KMnh8zeVg,Best habit app ever. Join a party for accountability partners and better experience.,5,0,2.3,2019-12-30 08:24:55,,,most_relevant,com.habitrpg.android.habitica +Teo Yao Neng,https://lh3.googleusercontent.com/a-/AOh14GgMc4hkOaMuUxj9Ba5iAFWVg2xqC0qtPypci4nL0g,Cannot log in.,5,0,2.4.2,2020-02-04 06:59:41,"Hi Teo, sorry to hear about this issue. Please let us know if you're still having trouble by sending us a message at mobile@habitica.com and the team will look into it.",2020-01-14 18:15:09,most_relevant,com.habitrpg.android.habitica +Shubham Doshi,https://lh3.googleusercontent.com/a-/AOh14GiDX2LvLSPUPvg_Jg4myKIKQiQEdbsKpIkWumpbvg,"Thank you developers for creating such a marvelous app, i found app history on the link you provided below, and it has all records of everything. This app has really changed my life, I hope to see more such apps from the developers. And there are no cons or bugs i have faced till now. May god bless the developers for improving the lives of people, I would rate 7 stars for such a extraordinary app. Lots of love <3",5,1,,2020-03-21 08:16:45,"Hi Shubham, thanks for your review! We hope to add more in-app stats and info on completion and improvement soon. In the meantime, you may find the Data Display Tool one of our devs created helpful: https://oldgods.net/habitrpg/habitrpg_user_data_display.html",2020-03-20 22:35:33,most_relevant,com.habitrpg.android.habitica +Mathias Soagal,https://lh3.googleusercontent.com/-vumw5HhGfb0/AAAAAAAAAAI/AAAAAAAARbk/AAKWJJMKEYiP3jW0OWEZifjhj9jJm1LObw/photo.jpg,"I like the idea. I've been using this for about 4 months, I guess. Until now, I haven't any complaints.",5,0,2.5,2020-04-06 20:28:55,,,newest,com.habitrpg.android.habitica +Ubaldo Gutierrez,https://lh3.googleusercontent.com/a-/AOh14GgM5ETgmnxp6Hg4HVDF_kf5ufvSo4_LfRsD3dTOqA,Motiva a mejorar es brutal está aplicación,5,0,2.5,2020-04-06 18:06:07,,,newest,com.habitrpg.android.habitica +Rajan Sahu,https://lh3.googleusercontent.com/a-/AOh14GjvVMED21PujCvZkdlTG7rxj0lo4VJckFLf2NwypA,"It does what is it says, love this app. Would there be more features like history and analytics about habits and routines etc.",5,0,2.5,2020-04-06 14:39:33,,,newest,com.habitrpg.android.habitica +Briana Schmidt,https://lh3.googleusercontent.com/a-/AOh14GiZxA5hMAzB_z37Z3fAkgF7a6zxOwK5fenU8P8n,"So far a little lonely, but really fun! It really is like playing a game! I almost have enough to buy a real sword!",5,0,2.5,2020-04-06 08:22:31,,,newest,com.habitrpg.android.habitica +Jeremy wilkes,https://lh3.googleusercontent.com/a-/AOh14GhwZkw4h2B7KYipG_IgWHlRKNt_PurDjjigcmuexA,Good,5,0,2.5,2020-04-06 01:10:31,,,newest,com.habitrpg.android.habitica +Vassa Rojz,https://lh3.googleusercontent.com/-ji_kxNcIQ1o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMwBPLD-DZZ1SxHvGmSUgROStPOmA/photo.jpg,Good game like real game 👌👌👌,5,0,2.5,2020-04-04 05:37:26,,,newest,com.habitrpg.android.habitica +Jack Zimmerman,https://lh3.googleusercontent.com/-A-S7UHfYfMs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMV7MgVEsl1TuWytSw9-wxCHkFWOQ/photo.jpg,"I love Habitica! I am particularly bad at getting things done and this app has helped me improve so much. It's as it says, gamifying your tasks. I am on level 12 and I have only been doing it for a week! If you need a pick me up with your chores and Todo lists then check it out.",5,0,2.5,2020-04-03 14:08:05,,,newest,com.habitrpg.android.habitica +Andy Pinette,https://lh3.googleusercontent.com/-G-XN7K0btzc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP0Bv7MzcsJx2KTmplLinqXXtdGHQ/photo.jpg,"Fantastic absolutely best of it's kind. No ads, great system of to dos dailies and habits (that you want to have and break) plus the tavern/guild/challenge/quest/party system really keeps you motivated, as does the in art or out of world reward system. Absolutely fantastic.",5,0,2.5,2020-04-02 19:49:53,"Thanks so much for your review, we're happy to hear Habitica has been helpful for your motivation! If you’d like to share any feedback with us directly, you can do that via Menu - About - Send Feedback.",2020-04-03 03:33:20,newest,com.habitrpg.android.habitica +Joel Lee,https://lh3.googleusercontent.com/-rTaEEzsdzgM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJON7MRxMTfjj81w92SH9O3ZtBwkmQ/photo.jpg,Is there a black theme coming up?,5,0,2.5,2020-04-02 18:07:32,"Hey, thanks for the review! It's definitely something that's been requested, but since we have a small team (we don't sell ads or your information) , improvements can take longer than they do in other apps. You can use Menu - About - Send Feedback if you want to contact us about it directly.",2020-04-03 03:37:35,newest,com.habitrpg.android.habitica +Epic Birds,https://lh3.googleusercontent.com/a-/AOh14Ghku6jx7HD_ZzyfDdqcwbbaIw8-EQX6ZEPP1bV2,Awesome,5,0,,2020-04-02 16:18:54,"Thanks for taking out time to rate us. It really helps us to keep going and delivering the best :) If you’d like to share any feedback with us directly, you can do that via Menu - About - Send Feedback.",2020-04-03 03:48:26,newest,com.habitrpg.android.habitica +Ghost,https://lh3.googleusercontent.com/a-/AOh14GjRNOAvyP4Vhzc7ey5TQS_C54kNUxvNCUP2X4QRog,"Ive used this app a couple times now, only uninstalling because school ended, but this app is amazing when it comes down to it. It encourages people to do the stuff that they need to without the complication of being told off by others. Plus, it has a cool rpg theme thats great for anybody who has grown up with/rpg game like elements.",5,0,2.5,2020-04-02 01:30:05,"Thanks so much for your review, we're happy to hear Habitica has been helpful for you! If you’d like to share any feedback with us directly, you can do that via Menu - About - Send Feedback. Hope to see you again when school comes back, or if you need some motivation between now and then.",2020-04-03 03:49:36,newest,com.habitrpg.android.habitica +angelyn grace a,https://lh3.googleusercontent.com/a-/AOh14Gjc74OZgQV7yLCjL7WAXaqnLjsmX2uli0rjh-Bq,Love this,5,0,2.5,2020-04-01 18:55:20,,,newest,com.habitrpg.android.habitica +Matthew Smith,https://lh3.googleusercontent.com/a-/AOh14Gg5udqEdDIWcRUuxJswOMX_Da6ijrsUFottp1W9_g,This really helped me hone my time management skills while at home and helped me to stick to a daily routine. Wonderful. I love the video game aspect of it! So interesting! Brings back childhood memories. 😊,5,0,,2020-04-01 06:42:26,"Thanks so much for your review, we're happy to hear Habitica has been helpful for you and your routine! If you’d like to share any feedback with us directly, you can do that via Menu - About - Send Feedback.",2020-04-03 04:11:17,newest,com.habitrpg.android.habitica +Underhill精神,https://lh3.googleusercontent.com/a-/AOh14GiOLGv4B6jt92zYixcDVaBft2Nw-4Ybwg4ro667,"I really like this app, it pleasing on the eyes it's well-designed, has a lot of social features but remains simple so you can focus on your goals not running the app. I would suggest to add an ability for ""gold"" that is currency only valuable to you so that your personal rewards, aka don't work against playing with your avatar and currency of that kind should be able to be exchanged within party. That way you and your friends can gift each other screen time or whatever.",5,27,2.4.4,2020-03-31 16:10:16,"Hi Naphy, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2020-02-28 00:00:59,newest,com.habitrpg.android.habitica +Mr. Sexy Senpai,https://lh3.googleusercontent.com/a-/AOh14GijtSVlFAUyBvUpZsU7BV_bWBlPZTEGxUaac2WoKQ,This app helps motivate me to complete my personal goals. Love it.,5,0,2.5,2020-03-31 08:15:32,"Thanks so much for your review, we're happy to hear Habitica has been helpful for you! If you’d like to share any feedback with us directly, you can do that via Menu - About - Send Feedback. Rock on with your personal goals :)",2020-04-01 04:22:32,newest,com.habitrpg.android.habitica +Shondell Miller,https://lh3.googleusercontent.com/-tARQ-cmxodA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNnqAvhG9TXOAUImDs0J8_kVP7gUw/photo.jpg,"Been using Habitica for a few months. Tried a few other to-do list games, none of them beats Habitica. Best way to keep track of daily life and still have fun.",5,0,2.5,2020-03-30 02:22:23,"Thanks so much for your review, we're happy to hear Habitica has been helpful for you! If you’d like to share any feedback with us directly, you can do that via Menu - About - Send Feedback. Keep having fun!",2020-04-01 04:25:13,newest,com.habitrpg.android.habitica +Dustin Conway,https://lh3.googleusercontent.com/a-/AOh14GhVM_l3FTlhfzM8s3Orh9_O-VS5NNNq0x7fvmFG,Great app!,5,0,2.5,2020-03-29 22:51:42,,,newest,com.habitrpg.android.habitica +Skrik Carnivora,https://lh3.googleusercontent.com/a-/AOh14Gjvemj2XTFvL5Ub-YWAKHBatzn8s644C3_1ZS-W,"I love it! One thing I had a problem with earlier was that if I didn't have internet connection, it wasn't possible to log my dailies in. Now I have unlimited data, so this isn't a problem for me anymore, but might be worth solving this for other players. Everything else is just wonderful and a big help to life organization for scattered-mind people like myself 😅",5,9,2.5,2020-03-29 12:02:44,"Thank you for this thoughtful review, we're so glad that Habitica is working for you. Habitica doesn't have an offline mode currently -- it's on the wishlist, but it's reeeeally complicated, and Habitica has a really small team (we don't sell ads or your personal information, so it's a small budget). Maybe some day!",2020-04-01 04:28:59,newest,com.habitrpg.android.habitica +SconeSoda,https://lh3.googleusercontent.com/a-/AOh14GjCI4T0LkzwNYc24VNopKozBitN7wcPFDUa5MhE9w,This is a great app. It's helped me stay on task with everything I need to get done.,5,0,2.5,2020-03-28 21:16:28,"Thanks so much for your review, we're happy to hear Habitica has been helpful for you! If you’d like to share any feedback with us directly, you can do that via Menu - About - Send Feedback.",2020-04-03 03:57:52,newest,com.habitrpg.android.habitica +Kyra Adley,https://lh3.googleusercontent.com/-KbSxvHSwEto/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPW16M7iBWzkZineM0fLW8nILKLBA/photo.jpg,Amazing even if you are not a nerd really helpful.,5,0,2.5,2020-03-28 14:11:23,"Thanks so much for your review, we're happy to hear Habitica has been helpful for you, even if you're not a nerd. ;) + If you’d like to share any feedback with us directly, you can do that via Menu - About - Send Feedback.",2020-04-03 03:58:11,newest,com.habitrpg.android.habitica +CT Trumann,https://lh3.googleusercontent.com/a-/AOh14GgGEz5S6XoCC8ZlBDT0OjiTkU5Jhq5MN5DGr1zDaw,"Started using habitica on January 1st of this year, as a new year's resolution to manage my time and habits better, and it's been a huge help. Especially love the party aspect, and the way it adds social accountability to missing or hitting targets. Very pleased, thank you for all the work that went into this app.",5,0,2.5,2020-03-28 04:48:11,"Thanks so much for your review, we're happy to hear Habitica has been helpful for you! There's a New Year's Resolutions guild if you want to check that out! If you’d like to share any feedback with us directly, you can do that via Menu - About - Send Feedback.",2020-04-03 03:59:03,newest,com.habitrpg.android.habitica +Beth Meier,https://lh3.googleusercontent.com/a-/AOh14GjIzNY6BIIrC3MwYrt4gYpiH5UodPAsHwhBUfhOLQ,"This app has helped me keep up so many habits and routines. At first I struggled with it a lot, but I soon joined a party. The quests are really helpful to keep me on track, and there are others in the groups to help out too.",5,1,2.5,2020-03-26 20:46:55,"Thanks so much for your review, we're happy to hear Habitica has been helpful for you and that you've found a supportive party! If you’d like to share any feedback with us directly, you can do that via Menu - About - Send Feedback.",2020-04-03 04:03:00,newest,com.habitrpg.android.habitica +Brittany Megan,https://lh3.googleusercontent.com/a-/AOh14Gi8PtBUXY73ikuBHz_3APv-hHwyUhPw6sdx-0QrNw,"I love this app so much! They make it really fun for free players too, so you don't feel left out if you don't spend money. I have decided to get a subscription though since it's such a great app. It has my whole family super motivated, my kids are actually loving doing chores! And I also love all the social aspects to it as well. It would be cool of you could assign names for your pets, and the app doesn't function quite the same as the website version, but overall I have no complaints. :)",5,4,2.5,2020-03-25 06:09:19,"Thanks so much for your review, we're happy to hear Habitica has been helpful for you! And thank you so much for the subscription, we really appreciate it. :) If you’d like to share any feedback with us directly, you can do that via Menu - About - Send Feedback.",2020-04-03 04:03:46,newest,com.habitrpg.android.habitica +Thea Draves,https://lh3.googleusercontent.com/-jetUkyAlM_k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMGlw5s5eU9WxBjI2U-rjWl8hCGMw/photo.jpg,Helpful,5,0,,2020-03-24 22:17:04,,,newest,com.habitrpg.android.habitica +Anshul Bhatia,https://lh3.googleusercontent.com/-Aj1mHwUdVTY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOgArvuoBEcBRUjoVXB3B8x82mNlQ/photo.jpg,"Awesome app,very helpful for forming habbits.Thank you for this wonderful app.",5,0,2.5,2020-03-24 10:23:51,"Thanks so much for your review, we're happy to hear Habitica has been helpful for you! If you’d like to share any feedback with us directly, you can do that via Menu - About - Send Feedback.",2020-04-03 04:03:51,newest,com.habitrpg.android.habitica +Gyl K,https://lh3.googleusercontent.com/-hq1-CDV27p8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPXmkq0B9qRjjroWDy341BKcHN1Hw/photo.jpg,"I like this app, It is an amazing tool, however I couldn't find calendar and where I can track what I have done. Could you help me find it?",5,0,2.5,2020-03-23 08:23:37,"Hi Gyl, thanks for your review! At this time we do not have a calendar feature, although this is a popular feature request we are considering for incorporation. We hope to add more in-app stats soon. In the meantime, you may find the Data Display Tool one of our devs created helpful: https://oldgods.net/habitrpg/habitrpg_user_data_display.html",2020-03-26 19:45:21,newest,com.habitrpg.android.habitica +info- chan,https://lh3.googleusercontent.com/a-/AOh14GhMcMYIdNl578fsKnjVHRGKRlzc09aFBMwESzzv,"Not gonna lie, I found this app from a tik tok video. I downloaded it to laugh at it, but it turned out to be an amazing app.",5,0,,2020-03-23 06:36:17,"A lot of folks found us from a tik tok video! We're glad you liked us :D Thank you for the review, and if you have any feedback you want to share with us directly, you can do that via Menu - About - Send Feedback.",2020-04-01 04:35:06,newest,com.habitrpg.android.habitica +Shubham Doshi,https://lh3.googleusercontent.com/a-/AOh14GiDX2LvLSPUPvg_Jg4myKIKQiQEdbsKpIkWumpbvg,"Thank you developers for creating such a marvelous app, i found app history on the link you provided below, and it has all records of everything. This app has really changed my life, I hope to see more such apps from the developers. And there are no cons or bugs i have faced till now. May god bless the developers for improving the lives of people, I would rate 7 stars for such a extraordinary app. Lots of love <3",5,1,,2020-03-21 08:16:45,"Hi Shubham, thanks for your review! We hope to add more in-app stats and info on completion and improvement soon. In the meantime, you may find the Data Display Tool one of our devs created helpful: https://oldgods.net/habitrpg/habitrpg_user_data_display.html",2020-03-20 22:35:33,newest,com.habitrpg.android.habitica +Eeliac Ynnek,https://lh3.googleusercontent.com/a-/AOh14GhULxbRWU5wsc649mehMVYi3tVVuj8zyQBF2VmSJA,"Cute and entertaining, definitely helping me to stop bad habits!",5,0,2.5,2020-03-20 16:30:59,"Thanks so much for your review, we're happy to hear Habitica has been helpful for you! If you’d like to share any feedback with us directly, you can do that via Menu - About - Send Feedback.",2020-04-03 04:04:10,newest,com.habitrpg.android.habitica +Otávio Medeiros,https://lh3.googleusercontent.com/a-/AOh14GiQoBvlJaLiX-8hV0CwSxaK3Fp1ruVepQL1YKN6mA,Wonderful!,5,0,2.5,2020-03-20 01:53:58,,,newest,com.habitrpg.android.habitica +Jay Speaks,https://lh3.googleusercontent.com/a-/AOh14GhjPiw3BZBs1zFjxnZ52UZDF1Ef7juMsqI-_RYT2A,Great Concept,5,0,,2020-03-19 22:35:06,,,newest,com.habitrpg.android.habitica +Umme Saad,https://lh3.googleusercontent.com/-81VoveIV7Mk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMZFkj9HfWph5oHELzwA_ASy9z1lQ/photo.jpg,Great! It's a great game to motivate people to do big stuff who just keep sitting on the sofa and don't want to move.thank you creaters of habitica.😋😁,5,0,2.5,2020-03-18 09:36:45,"Thanks so much for your review, we're happy to hear Habitica has been helpful in getting you off that sofa! If you’d like to share any feedback with us directly, you can do that via Menu - About - Send Feedback.",2020-04-03 04:04:31,newest,com.habitrpg.android.habitica +Hariom Bharadwaj,https://lh3.googleusercontent.com/a-/AOh14Gii2Ecwxe-RZncyII8WQMtwQu6MW_sC_yCASF3ILw,How to See my completed tasks ? I am confused as I accidentally clicked on done and tasks stopped appearing on the list Obviously. But It creates problem cuz you didn't do but it checked. So please add feature so we can see all our completed tasks upto a month . So we can see our records and edit any possible mistakes. Thank you. Other than this small part This app is best for me. I am requesting you if you can listen us please please add this feature. 🙏🙏🙏 COMPLETED TASKS LIST UPTO A MONTH,5,2,2.5,2020-03-17 12:01:26,"Hi Hariom, thanks for your review! We hope to add more in-app stats and info on completion and improvement soon. In the meantime, you may find the Data Display Tool one of our devs created helpful: https://oldgods.net/habitrpg/habitrpg_user_data_display.html",2020-03-20 22:37:29,newest,com.habitrpg.android.habitica +Harmonious,https://lh3.googleusercontent.com/a-/AOh14GjoW_DCwmuJ0Dy0gHrilF7uoK-aw8Z32B63po8Jkw,"A great app to keep you up and moving, especially being in quarantine :) (this review was made at the time of covid 19)",5,1,2.5,2020-03-17 01:50:43,"Thanks for your review, Harmonious! Stay safe and well! :)",2020-03-20 22:36:52,newest,com.habitrpg.android.habitica +Diego Gatica,https://lh3.googleusercontent.com/a-/AOh14GiTYAqWsqlgj2EkKCblsTeb3MSVkpgAjbermBK2Og,"OK, I love the app, it's great, but the notifications just doesn't work, they are broken, and it's the main feature I'm looking for, fix it in order to give you the five starts",5,0,2.5,2020-03-16 04:49:53,"Hi Diego, sorry to hear about this issue. Please let us know if you're still having trouble via Menu - About - Report a Bug. A direct report will provide details that will help the team fix the notifications.",2020-03-13 18:43:13,newest,com.habitrpg.android.habitica +CrazyPrincessJem :3,https://lh3.googleusercontent.com/a-/AOh14Ghti2ZTOVZhtkBGe5cPuQaBKx7ijVINeTZFmWGm-A,Great for geting your life together,5,0,2.5,2020-03-15 19:21:35,"Thanks for the review, and yay for getting your life together! If you'd like to share any feedback with us directly, you can do that via Menu - About - Send Feedback.",2020-04-01 04:38:04,newest,com.habitrpg.android.habitica +Lance Oli,https://lh3.googleusercontent.com/a-/AOh14GgPqHL04hZ18A3RtZd4nsuj22ayQkxO1x2HT1Rr2Q,Very helpful,5,0,2.5,2020-03-15 08:45:05,,,newest,com.habitrpg.android.habitica +iRhyno TastyGaming,https://lh3.googleusercontent.com/a-/AOh14GjBp7L7C7SMucz3NZ0tSyf4e4c3qIkfqozolRpL,Great,5,0,2.4.4,2020-03-14 16:27:02,,,newest,com.habitrpg.android.habitica +Luther Coghiel,https://lh3.googleusercontent.com/a-/AOh14GjWdNahJIaV83CS4eao-3QjS1xzrbIj10umtXbR,"WOW I REALLY LOVE THIS APP!!! Such a great idea. I first downloaded it for my youngest daughter to try help her with responsibility & organization, we connect daily on the app to check each other's progress. I generally enjoy this game, it is the only one have on my phone.",5,0,2.5,2020-03-14 12:27:48,"Thanks so much for your review, we're happy to hear Habitica has been helpful for you and your daughter! If you’d like to share any feedback with us directly, you can do that via Menu - About - Send Feedback.",2020-04-03 04:05:02,newest,com.habitrpg.android.habitica +Billy Collins,https://lh3.googleusercontent.com/a-/AOh14GgeS1MYaEBC4kk0AoVKlAE2QrFaGhCx5ENbbBjlGg,"Very fun, good game, helpful and inspiring",5,0,,2020-03-13 23:15:48,,,newest,com.habitrpg.android.habitica +Victor Seras,https://lh3.googleusercontent.com/-ImBhAuPFF6c/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMmmsv_sPix2JcH2lUcLnANhXy2GQ/photo.jpg,"Its actually improved how I do things, and caused me to be more active, I love this app!",5,0,2.5,2020-03-12 07:40:34,"Thanks so much for your review, we're happy to hear Habitica has been helpful for getting you more active! If you’d like to share any feedback with us directly, you can do that via Menu - About - Send Feedback.",2020-04-03 04:06:09,newest,com.habitrpg.android.habitica +Kenshi Shimada,https://lh3.googleusercontent.com/a-/AOh14GjgjZfoFqFdDW-xS10lRdIcRFKxhxisopLtN7yD,"I love this app, I just wish it wasn't so easy to change your stats and I wish we could delete the default daily tasks. Maybe I can but I'm a dumbass. Idk",5,0,2.5,2020-03-12 04:07:51,"You can delete the default tasks. :) Long-press on them, an edit screen will pop up and you can delete them from there. I hope that makes Habitica more useful for you! Thanks for the review!",2020-04-03 04:13:11,newest,com.habitrpg.android.habitica +ash da furry child,https://lh3.googleusercontent.com/-6aZqW3wzVmk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMVWaBY5X0WCclSawtjIgTOhqh8bw/photo.jpg,I love this app it's the best and keeping things healthy with yourself and I love it so much,5,0,2.5,2020-03-12 00:26:16,"Thanks so much for your review, we're happy to hear Habitica has been helpful for you! If you’d like to share any feedback with us directly, you can do that via Menu - About - Send Feedback.",2020-04-03 04:13:20,newest,com.habitrpg.android.habitica +Santiago Bañuelos,https://lh3.googleusercontent.com/a-/AOh14GhATGL1tuib66Hg0Wq2zkNnGCbNXyEIy7tus_k3lds,This is a superb way to motivate yourself to do things. To create new and healthy/fun habits and get rid of bad habits. Do you want to live a life full of adventures? Be creative and install this amazing app. I would suggest a clearer and friendlier GUI but overall itS AMAZING.,5,1,2.5,2020-03-11 03:18:33,"Thanks so much for your review, we're happy to hear Habitica has been helpful for you, and led you on a life full of adventures! If you’d like to share specific feedback about the GUI with us directly, you can do that via Menu - About - Send Feedback.",2020-04-03 04:14:02,newest,com.habitrpg.android.habitica +Carrie Burton,https://lh3.googleusercontent.com/a-/AOh14Gj-BpwyDKXECObrNBYTrmp_0BWuz9J-jMyV3FxVBg,"This is such a fun way for chores to be rewarded. My household is full of gamers, and this is a great way to create and maintain habits, as well as track chores on a daily, weekly, or monthly basis. They are great about getting back to users. They have real conversations, and listen to user feedback.",5,0,2.4.4,2020-03-09 22:41:05,"Thanks so much for your review, we're happy to hear Habitica has been helpful for you! You can send us any specific feedback via Menu - About - Send Feedback, and it sounds like you know we'll keep your feedback in mind. :D",2020-04-03 04:15:19,newest,com.habitrpg.android.habitica +Joshua Choo,https://lh3.googleusercontent.com/a-/AOh14Gg6_coJzjxZeGWexTuytJXlkncOylnkPd17LLjMcqM,It's been helpful and very cute.,5,0,2.4.4,2020-03-09 06:42:51,,,newest,com.habitrpg.android.habitica +Sloth Baring,https://lh3.googleusercontent.com/a-/AOh14GhzgRk7UlgH78ho9YmI4jzoLsIm3HNPPPKTro-SXQ,I really like so far. I makes my daily routine a bit fun and make it meant something in a way.,5,0,2.4.4,2020-03-09 04:06:40,,,newest,com.habitrpg.android.habitica +Brian Spragge,https://lh3.googleusercontent.com/a-/AOh14Gj5z3eKTl84Jxp8bSpgPrVIFNNu3AM52X13cHHbTQ,"These developers have done an amazing job with this app! No annoying popups, no ads, no bugs, overall a flawless experience for me. It's been four years since I've used it so I'm excited to get back into it!",5,0,,2020-03-07 15:44:38,"Welcome back! Thanks so much for your review, we're happy to hear Habitica has been helpful for you! If you’d like to share any feedback with us directly, you can do that via Menu - About - Send Feedback.",2020-04-03 04:15:58,newest,com.habitrpg.android.habitica +Ruairidh Macmillan,https://lh3.googleusercontent.com/a-/AOh14GhV3ikHrY9vASWpPx5dorUdXhtUh5I8VWWifKMdYA,"Great app for encouraging you to do things! Love that you can personalise your own tasks and play with friends. Would love to see the ability to repeat tasks on weekdays/weekends, instead of just daily/weekly. And an Undo button would be awesome! Sometimes I'll mark something by accident and can't revert what hearts I lost, coins I earned, etc.",5,5,2.5,2020-03-06 09:17:48,"Hi Ruairidh, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2020-03-13 18:39:29,newest,com.habitrpg.android.habitica +Shadows of mischief,https://lh3.googleusercontent.com/a-/AOh14GiSg7mG3U-H17E3C5Ua8gSF8nfDdmNIUzoKYcDcjA,This should be the highest rated app its simply amazing and doing chores is much more fun!,5,0,,2020-03-04 21:38:59,"Thanks so much for your review, we're happy to hear Habitica has been helpful for you! If you’d like to share any feedback with us directly, you can do that via Menu - About - Send Feedback.",2020-04-03 04:16:10,newest,com.habitrpg.android.habitica +Emily De Saulles,https://lh3.googleusercontent.com/a-/AOh14GiMmHOzfwrdHY4yEEhwRvPxvxy-u7dpieUag1DAag,This game/app is so easy to use and so much fun. Thank u so much for making habitica!,5,0,2.4.4,2020-03-04 18:50:53,"Thanks so much for your review, we're happy to hear Habitica has been helpful and fun for you! If you’d like to share any feedback with us directly, you can do that via Menu - About - Send Feedback.",2020-04-03 04:16:29,newest,com.habitrpg.android.habitica +Dave Lawrence,https://lh3.googleusercontent.com/a-/AOh14GhpxHap5oJbCRadA_T_IumASgGMmNB6kwXNTPgU3hA,Excellent way to gamify life to help motivate.,5,0,2.4.4,2020-03-04 14:24:18,,,newest,com.habitrpg.android.habitica +win thein maw,https://lh3.googleusercontent.com/-AWFG8emH6HE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPGrIXxqDBxSjXsb7ig-UGVAZuI4Q/photo.jpg,good,5,0,2.5,2020-03-04 06:20:52,,,newest,com.habitrpg.android.habitica +Natan Rodri,https://lh3.googleusercontent.com/a-/AOh14Gi6UwFDr5RYG0V1WNiqBg5YX9vqULKUh7ITpLksxg,"Sem palavras, bom demais :)",5,0,2.4.4,2020-03-03 21:01:46,,,newest,com.habitrpg.android.habitica +Tiffany Welch,https://lh3.googleusercontent.com/a-/AOh14Gh8_PB2ANYCRtEoilY4CH3y09fK7UC8cv0vdV0fkA,This has really helped me be motivated to get things done. Im really enjoying this app,5,0,2.5,2020-03-02 14:56:38,"Thanks so much for your review, we're happy to hear Habitica has been helpful for you and your motivation! If you’d like to share any feedback with us directly, you can do that via Menu - About - Send Feedback.",2020-04-03 04:16:50,newest,com.habitrpg.android.habitica +Matt Steere,https://lh3.googleusercontent.com/a-/AOh14GjoYyiIMZRnct613RHTMEO1oFpWHvPfWPpmekKY,Has helped me to stay engaged with my to dos in a workable and fun way. Love this app.,5,0,2.5,2020-03-02 13:36:59,,,newest,com.habitrpg.android.habitica +Kaitlyn Sims,https://lh3.googleusercontent.com/a-/AOh14GhMuAcP2YteftmI2T66rr6m03qrQeRaA1giGJx2F3Q,"It's a delightful app that helps you keep on top of things. Personally, I've found that you get as much as you put into it. There are communities and challenges you can join with like-minded people to help you achieve similar goals, and their are seasonal events as well. There are no adds, no constant pop ups to buy gems, and all features are equally helpful without the gems.",5,51,2.5,2020-03-01 23:27:38,,,newest,com.habitrpg.android.habitica +Mohammad Sultan Khaja,https://lh3.googleusercontent.com/a-/AOh14GglRcVEQvWlndBxhD7PCzXgVkIwcNw4nZnS7H-Ipw,Loving it. Would appreciate dark mode as well!,5,0,2.5,2020-03-01 17:10:09,"Hi Mohammad, thanks for your review! We hope to add Dark Mode very soon!",2020-03-13 17:58:29,newest,com.habitrpg.android.habitica +Soorya Saravanan,https://lh3.googleusercontent.com/a-/AOh14GjyT5f0durS7YOjNB6B8MzQOlTdxpmtFd1cLaP2HA,I've always been wanting one of these!!,5,0,2.5,2020-03-01 08:35:15,,,newest,com.habitrpg.android.habitica +Renée Wetsel,https://lh3.googleusercontent.com/a-/AOh14GjsBu-_jRk_nPskU6fFOTFn_kbWwYpyb05wD0ZIdg,"There are options to give your avatar a wheelchair, and there are a lot of colors to choose from, as well as a skinnier body type or a larger one... I don't use a wheelchair, but I just loved this option so much because I have friends who do and it really means a lot to them! So cute lol",5,1,2.5,2020-03-01 03:47:28,HI Renee! Thanks so much for your review and your kind words. We're glad we can make everyone feel welcome in Habitica!,2020-03-13 17:57:35,newest,com.habitrpg.android.habitica +No Thanks,https://lh3.googleusercontent.com/-q6CmDWxOtnY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN9nBnZkFzhlYXV4gE4L39Qmh0zmw/photo.jpg,"Engaging and effective. It doesn't seem to be possible to use a Google Play balance to pay for gems, though.",5,0,2.5,2020-02-29 16:52:32,"Hi No Thanks, sorry to hear about the trouble with gem purchases. If you're still having trouble please let us know via Menu > About > Report a Bug and we'll look into it!",2020-03-13 17:54:41,newest,com.habitrpg.android.habitica +Vincent Campbell,https://lh3.googleusercontent.com/-avDs-jOR7PA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOl9XyZQKDjDpQsJ_CeS_VFIz1e-g/photo.jpg,Wonderful reminder app and Brilliant community!,5,1,2.4.2,2020-02-28 01:16:02,,,newest,com.habitrpg.android.habitica +Nir Wigi,https://lh3.googleusercontent.com/a-/AOh14Ggcj7Ba3Z1V5G2Msd7bdShQ_b7NiKfIIZcumAGUVg,Very good 🍀,5,0,2.4.4,2020-02-27 05:31:11,,,newest,com.habitrpg.android.habitica +Invisible Girl,https://lh3.googleusercontent.com/a-/AOh14GgJr2eg-PI6J2SE_sYS9sO7dsSTwHzB08m4tvs0,This app has helped me a lot and is all in all one of the best apps I know. There's just one suggestion: I have many habits and dailies hence I have to scroll a lot. It would be amazing if there was an option to change the layout so you can have a better overview.,5,1,2.4.4,2020-02-26 19:09:14,,,newest,com.habitrpg.android.habitica +Phantom Zero,https://lh3.googleusercontent.com/a-/AOh14GhICXu0_Q68yZwGe2BpVekPznp0Z2HCZjXvR3Hp,"It's a good app. It fuses the entertainment received in playing games with finishing chores, which is pretty hard to pull off. I'll recommend it to anybody who's trying a lot to change their life but easily succumbs to their desires.",5,0,2.4.4,2020-02-24 14:06:18,,,newest,com.habitrpg.android.habitica +Studying with me,https://lh3.googleusercontent.com/-_42_4WLUbC0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMR4TOLjq4-uG6A-uAImGoanvufYg/photo.jpg,Beautiful programme! I can recommend it for all my friends!,5,0,2.4.4,2020-02-23 07:34:08,,,newest,com.habitrpg.android.habitica +Caty Steyn,https://lh3.googleusercontent.com/a-/AOh14GgHAW1SDFi9AbdkIVlcW_HOVSe6-WiCpahRyzmq2g,I've only been on the app for a small time and I can already see the ways in which it can help. Very inclusive and helpful,5,0,2.4.4,2020-02-22 08:18:17,,,newest,com.habitrpg.android.habitica +Isaiah Barriga,https://lh3.googleusercontent.com/-1epyFY5_LxQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP0fDPIFf-Uq1E-NeMQvQCHUzEcpg/photo.jpg,Love the idea of life as a videogame!,5,0,2.4.4,2020-02-21 22:16:37,,,newest,com.habitrpg.android.habitica +Claire Olsen,https://lh3.googleusercontent.com/-jTgBvCleqlI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOSfw2vWjgSM10p1Hzsm2ar2WqfCw/photo.jpg,"A great way to work on self-improvement with friends, hold eachother accountable, and have fun!",5,0,2.4.3,2020-02-20 15:01:49,,,newest,com.habitrpg.android.habitica +prithvi shetty,https://lh3.googleusercontent.com/a-/AOh14GiQO8vHezI3Bqy5IJAscD0eQBHhKKeT-wwmmnAu1A,"I'm on the quest of improving myself, developing small good habits is pretty easy with this and using this app as a reminder for tasks is awesome.",5,0,2.4.3,2020-02-18 14:29:15,,,newest,com.habitrpg.android.habitica +Gal Barak Mizrachi,https://lh3.googleusercontent.com/-jWjTiddxwjY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM441FMeHJ_NUTGbolzDqT32b0Qww/photo.jpg,Hebrew language doesn't work...,5,0,2.4.3,2020-02-18 11:46:36,"Hi Gal, you should be able to change your Language in Settings once you complete the tutorial. Not all translations are complete, as our translations are done by volunteers. If you'd like to help, you can learn more here: https://habitica.fandom.com/wiki/Guidance_for_Linguists",2020-02-21 00:16:17,newest,com.habitrpg.android.habitica +ghaith obied,https://lh3.googleusercontent.com/-KAKxhy8qz6U/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPN955h4sVW-6ZMPA7Eh3ISTsOn6w/photo.jpg,Gooood,5,0,2.4.3,2020-02-17 03:14:16,,,newest,com.habitrpg.android.habitica +Angie Ramos,https://lh3.googleusercontent.com/a-/AOh14GiXEeVYEWS9FJuCEkl-rkXvSy0_Cx2agyx8JqOwlR4,What a genius game,5,0,2.4.3,2020-02-16 05:01:29,,,newest,com.habitrpg.android.habitica +Sophie Jeffares,https://lh3.googleusercontent.com/a-/AOh14GiG7Woq4MRIQ5UtoL1-wY8D7I5MKSFsbMMFKQhVcg,Would love love LOVE LOVE an offline mode. I spend 3 days a week without internet and have trouble keeping on top of my life without structure like apps like these. This would be the one for me if it could also go offline :(,5,1,,2020-02-15 05:04:47,,,newest,com.habitrpg.android.habitica +sanahal singh,https://lh3.googleusercontent.com/a-/AOh14GjwKOLtvx-L7qgQ6tmy0GTtWZd4zHX5ZTRELW6S,"This app is really unique. It has made me interested again in being productive. It's almost like adopting a lifestyle! However, the app is currently having a problem with task reminders. It doesn't work most of the time and when it does, the alert is usually delayed by approx. 10 minutes. Also, it would be nice if the developers provided the ability to make task lists even when offline. Other than that, the app is perfect! Definitely recommend experiencing it!",5,2,2.4.3,2020-02-14 22:25:22,,,newest,com.habitrpg.android.habitica +Vishal NS,https://lh3.googleusercontent.com/a-/AOh14GjKFBsdhZqS21NoJhvfL4Gm5rXzmqLK2SvD71kVvw,Loved it,5,0,,2020-02-14 03:25:53,,,newest,com.habitrpg.android.habitica +Garrett Dally,https://lh3.googleusercontent.com/-ZYfR0zlbpIA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPNPzCqGIoKyMNtkXU8PIlVDk8jig/photo.jpg,It's fun and easy to use.,5,0,2.4.3,2020-02-13 22:16:54,,,newest,com.habitrpg.android.habitica +Willow C. Waterhorse,https://lh3.googleusercontent.com/a-/AOh14GgSyp4UUbPWYtUEKgV3GmQU9qZeACYRRuCH0--T,"As a Gamer This Makes Life Fun You can make a long of lists of your daily life and gain XP and rewards. You can hatch pets, feed them, ride mounts, find a party to run with, get cool gear, and go on quests. I can see where fun wise there could possibly in the future be expansions for more to come by all means, but right now this really helps to keep on track and makes it so I actually enjoy some part of my life for the first time in a long time outside of my pets.",5,21,2.4.3,2020-02-11 06:35:19,,,newest,com.habitrpg.android.habitica +Laura Chute,https://lh3.googleusercontent.com/a-/AOh14GhuWwNoxxZCLCZolkntSQR3bOyNe22z0hRaxwuCtQ,"Honestly it's perfect but theres just. One thing. I really wish you could set a habit for 'complete X times a week', it would be so useful. I have yet to find an app that is this good, but that is the only shortcoming. Please add this! I mean of course you dont have to but it would be amazing.",5,1,2.4.3,2020-02-10 02:24:55,"Hi Laura! Thanks for your review. We are working to add the type of repetition you mentioned, and just working out the last bugs with it in testing. We hope to have it available very soon!",2020-02-13 20:31:22,newest,com.habitrpg.android.habitica +Ali Ridho,https://lh3.googleusercontent.com/a-/AOh14Gg419D5tVFJb6ne7R-V36fRN6w0z4Zt-j2_b3-X,Really interesting apps!,5,0,2.4.2,2020-02-07 03:24:57,,,newest,com.habitrpg.android.habitica +Dr. Armaan Jain,https://lh3.googleusercontent.com/a-/AOh14GiXqx_JMEYGzsRyg3QG6p93arm-GDZfwqbTGXuggA,"Can you give an option to set up timer for every task like 10 minutes or so, to make us more efficient? You can do it by giving us a button to start the timer and the task automatically gets checked once the time is up. And if somebody wants to undo then points will be deducted. Is it possible in any way?",5,1,2.4.2,2020-02-06 16:44:56,"Hi Dr. Armaan, thank you so much for this thoughtful review. We'll keep your feedback in mind as we continue to work to improve Habitica. You can send the mobile team feedback directly by going to Menu - About - Send Feedback.",2020-02-07 00:01:13,newest,com.habitrpg.android.habitica +uWu,https://lh3.googleusercontent.com/a-/AOh14GjY-2f3bijlW2JMk4o7SrvdMj85SPIXv6H4FTzlXA,This been really working well with me. The community is great too. It's very useful and the widget is great feature. Though how about costumizing the app theme? Like using different color theme instead of the default purple. Because it will look prettier for my widget :D,5,17,2.4.3,2020-02-06 02:36:43,"Hi uWu, thanks for your review! We do hope to add custom color themes in the very near future!",2020-02-07 00:00:10,newest,com.habitrpg.android.habitica +Rajib Paul,https://lh3.googleusercontent.com/a-/AOh14GjKB4xaN-M9FeETgX3pNq6BtsoijrQ6RfZ6lPrz,Ok,5,0,,2020-02-05 10:30:31,,,newest,com.habitrpg.android.habitica +Luke Caporale,https://lh3.googleusercontent.com/a-/AOh14Ght0n1ZSV1xtRhVUednTUzu8BykbJWqEcJlHJSyIA,It's a cool app. I have enjoyed using it.,5,0,2.4.2,2020-02-05 01:07:44,,,newest,com.habitrpg.android.habitica +Teo Yao Neng,https://lh3.googleusercontent.com/a-/AOh14GgMc4hkOaMuUxj9Ba5iAFWVg2xqC0qtPypci4nL0g,Cannot log in.,5,0,2.4.2,2020-02-04 06:59:41,"Hi Teo, sorry to hear about this issue. Please let us know if you're still having trouble by sending us a message at mobile@habitica.com and the team will look into it.",2020-01-14 18:15:09,newest,com.habitrpg.android.habitica +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,I am unable to create a new daily. This is the main reason why I downloaded Habitica. The error message says ' ' is not a valid enum value for path 'frequency'. Edit: The app works perfectly now. I've been using it for over 6 months without a single issue. This is the best self improvement app ever created.,5,5,2.4.2,2020-02-02 14:59:30,"Hi there, we're sorry to hear about the trouble! The mobile team would be happy to look into this if you can send them a report via Menu - About - Report a Bug",2019-02-20 23:41:45,newest,com.habitrpg.android.habitica +Nukala D,https://lh3.googleusercontent.com/a-/AOh14Gg1PF1XLENUuUR4BZKX1zyVgiIF-A_eOZ2dqTePGQ,Love this. This is a fun way to build your self up,5,0,2.4.2,2020-02-02 07:28:24,,,newest,com.habitrpg.android.habitica +Christina Humphries,https://lh3.googleusercontent.com/-S5O1BdYHEEA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP8XwlckgVocwuprEKFqXr5fuW13g/photo.jpg,I love this app!!!,5,0,2.4.2,2020-02-01 12:39:51,,,newest,com.habitrpg.android.habitica +Alaina Gillett,https://lh3.googleusercontent.com/a-/AOh14Gg4LrCdSB1eoe0mUZsBbAHKLHPDoHRn4mpT0aXqmA,"This is a fantastic app with a fantastic community-- love this game :) Helped me start sleeping on time and drink water-- anything that you can imagine for yourself, it can help you do!",5,0,2.4,2020-02-01 06:14:25,,,newest,com.habitrpg.android.habitica +nadine,https://lh3.googleusercontent.com/a-/AOh14GjG7l7gWb6DQV9EIyBfk-av3NrNqRPwWZA7YRhQ3Q,Love it!,5,0,2.4.2,2020-01-31 15:39:27,,,newest,com.habitrpg.android.habitica +Ran VeNtUrE,https://lh3.googleusercontent.com/-H4c-pG6FH8k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOyfmDRrkXGZgIQ4tzUKmtNGkOwNA/photo.jpg,It is an amazingly helpful app I am currently a year 11 student and this has helped tremendously boost my productivity i have seen improvements not only in my results but also me as a person as I lost lots of my bad habits and gained good ones. HIGHLY RECOMMEND TO ANYBODY WHO WANTS TO IMPROVE THEMSELVES (non--academic/academic),5,0,2.4.2,2020-01-31 14:03:44,,,newest,com.habitrpg.android.habitica +Patrick Reyes,https://lh3.googleusercontent.com/a-/AOh14GjETCFXUDLhSZD1N21McocnoIpVz-14RgPDhxZIMA,"to be honest, i love this app, really useful and tackles productivity in a fun way, but since im traveling so much i cant have a consistent internet connection so i cant use it sadly, offline use would be so appreciated, even with less stuff to use, sadly i know that wont happen soon",5,0,1.4.3,2020-01-27 10:21:01,,,newest,com.habitrpg.android.habitica +Eva Liandris,https://lh3.googleusercontent.com/a-/AOh14Gj96q_0IbRCBhya0iGNphiKEooxVVOZuYs0ozNtGQ,"The app didn't work for me at first, but after uninstalling a few times it eventually worked, and I love it! This is great for me as a college student because it makes keeping up with homework and assignments easier by adding an element of fun!",5,4,2.4.2,2020-01-27 05:22:56,"Hi Eva, sorry to hear about the trouble! Please reach out to our support team via mobile@habitica.com and they'll look into this as soon as possible.",2020-01-24 21:47:39,newest,com.habitrpg.android.habitica +Andrew Johnson,https://lh3.googleusercontent.com/-Hof0aqXFyRY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNAf0TJln3KwJ1VeO40hJ9fHpx7zQ/photo.jpg,Love it...it has completely changed my life I couldn't have become more adult-like without habitica!!! 😋😊😋😊😊😊,5,0,2.4.2,2020-01-27 03:21:01,,,newest,com.habitrpg.android.habitica +S Whitfield,https://lh3.googleusercontent.com/-aACWZtbJtr0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOyi0gt164N_N9r5GDE_Q1uzG2cqA/photo.jpg,"If you're a procrastinator this app will change your life! I have a tendency to avoid the things I need to do by snacking or playing video games so this app has been perfect for me. I'm great at making to-do lists but suck at execution. This app has helped me with so many areas of my life, chores around the house, my quality of work at my job, I've even been using it to develop safer driving habits. The community is also very supportive, it's really fun to play with a friend and party up.",5,5,2.4,2020-01-25 06:32:12,,,newest,com.habitrpg.android.habitica +Zully,https://lh3.googleusercontent.com/a-/AOh14Gg_N7VZ31Wkc0RXY0s81FHIiRxfJNrQ-9IxKhj5,"I absolutely love this app. First of all, it actually works and give me all the motivation I need to get stuff done. Secondly the community is awesome and there is just so much stuff to do! Recommended to everyone looking to develop habits.",5,3,2.4.2,2020-01-24 23:00:56,,,newest,com.habitrpg.android.habitica +Star C-S,https://lh3.googleusercontent.com/-YA0YjCswdEc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP-aP6SVVhFxPgaDVDOXvqVd9rqFg/photo.jpg,This is a very creative app to keep me amused with my Versa 2 Fitbit and to keep me productive when doing tasks around the house. Excellent job creating this app keep up the great work!!Two thumbs up...👍👍😎🖤,5,0,2.4,2020-01-24 00:04:26,,,newest,com.habitrpg.android.habitica +Amanda Newton,https://lh3.googleusercontent.com/a-/AOh14Gg0MNsk4kb170t1l18Ph9CWdtz1sZRaslDfOmaq,"I'm really happy with this app - it helps me stay productive, both in school and with my writing goals and even tiny things like just getting out of bed in the morning. I 100% recommend this to anyone who procrastinates as much as I do, because it's really helping me get out the hole I dug myself into with my bad habits.",5,19,2.4,2020-01-21 13:40:45,,,newest,com.habitrpg.android.habitica +Shawn,https://lh3.googleusercontent.com/-IgcHBBkMMw0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNpagZKWohm-e1qvmUlMf8b_dGE6A/photo.jpg,"The game aspect really does motivate me! Especially helpful for doing the dishes. There's a big difference between ""I should do xyz"" and ""I have to do this or I'll lose health points, and I don't want my party to get attacked!""",5,2,2.4,2020-01-19 05:50:37,,,newest,com.habitrpg.android.habitica +Dino Katherine,https://lh3.googleusercontent.com/a-/AOh14GjChbkTmQshLDgw9S3rDr-MOYSRPJsbM9bb2e2XaQ,I refer to this app constantly. It feels super rewarding to do things and keeps me motivated to do the tedious stuff I used to procrastinate on. I love it!!,5,0,2.4,2020-01-15 12:16:16,,,newest,com.habitrpg.android.habitica +simon,https://lh3.googleusercontent.com/-cPPEnW1e07I/AAAAAAAAAAI/AAAAAAAAAac/AAKWJJPHTIJedKhV5J7snBYrnESS0aQUFw/photo.jpg,I have purchased pro version. I plant a tree for an hour and come after an hour to see the forest destroyed. It has happened more than 3 times. I even left the phone on the app itself. Kindly fix this. When you don't get to see the reward after 3 hours of productive time it really gets irritating and makes me think why did I even purchase this app. Kindly help.,1,42,4.15.0,2020-04-01 03:31:25,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problem to android.support@forestapp.cc? We will investigate the problem further. +- Forest",2020-04-06 19:07:28,most_relevant,cc.forestapp +Zaid cxhdfs,https://lh3.googleusercontent.com/-RlnMqSATBPw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOLLdTnrBuFHPPcX9cB-FZmITDI3Q/photo.jpg,I am on a Sony Xperia Xz premium Android 8.0.0 and the app when I move out of the app and use others does not wither the try thus spoiling the point. Yes all my notifications and permissions are on. Please help so I can actually have incentive growing the forest. There is no crisis notification when I move out of it or onto other apps.,1,1,4.15.0,2020-03-25 11:48:46,,,most_relevant,cc.forestapp +Adrian Casaña,https://lh3.googleusercontent.com/a-/AOh14GjMvb-Yck1jCWtzD_c5b03czKA1H8ZWZOIQ0_A6IQ,"1) Tips on how to study efficiently and effectively. 2) Before planting a tree, add a button wherein you should finalize the tag that is set. 3) If the tag is changed DURING the planting process, it should reflect separately the time spent by the previous tag as well as that of the new tag so that the overall distribution is at its peak accuracy. Will put 5 stars afterwards.",1,1,4.15.0,2020-03-28 12:51:45,,,most_relevant,cc.forestapp +Václav Pavlíček,https://lh3.googleusercontent.com/a-/AOh14GiUR35LGUOswfe1GmJ-rnKqqF8On1TG5p9WtMZznOE,"Synchronization does not work since last update with Chrome extension. I think in year 2020 when there are services such as Firebase this should be normal, however, it is not.",1,1,4.14.3,2020-03-24 09:34:59,,,most_relevant,cc.forestapp +Trần Phú Nguyễn,https://lh3.googleusercontent.com/a-/AOh14Ghtofr6xmrRy4N54hkIkgQFgGWidRZBz9Pxr6im,"I can't upgrade to pro version. Anytime I hit the Unlock button, the app will say ""some error happened (6). Please try again later.""",1,1,4.15.0,2020-03-25 04:38:42,,,most_relevant,cc.forestapp +malay nash,https://lh3.googleusercontent.com/a-/AOh14GiOBnKU_iMX0KhYsaA4cmWelzh-2fI5eJIIsJQc,"Cool concept, but sync doesn't work, and the desktop add-on is half baked. I wish the developer would be responsive to my emails as well.",1,0,4.14.3,2020-03-17 23:10:35,"Please contact us via our in-app feedback system! To visit our in-app feedback system, please go to Settings and enter our FAQ first. Once there, please tap on the top-right icon and you should be able to contact us. Thank you and sorry for the inconvenience.",2020-04-06 13:52:43,most_relevant,cc.forestapp +akaheadlesschicken,https://lh3.googleusercontent.com/-2a1yQv1g250/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNnYyZuAoL7Sr3QBKOq8sxPtkldqw/photo.jpg,"This is a really smart way to keep you off your phone and motivated to work. And I would love to use this app all day everyday but it needs a pause button desperately. Life is full of things that pop up out the blue and in its current state you loose all progress or get rewarded for doing nothing. Please, please, please add an optional pause button. There are already a bunch of optional thing to tweak it please add this. I would go Pro in a heart beat and it would become my top app.",1,32,4.14.2,2020-03-11 00:24:18,"Hi, +Thank you for the suggestion! We'll let our team know about your feedback and see if we can work on it in the future. 💪- Forest",2020-03-11 14:15:12,most_relevant,cc.forestapp +Arabela Y,https://lh3.googleusercontent.com/-1Kx7Br1emaE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNvt_l73BSa0T5jW1gbwBEhDbmfyQ/photo.jpg,"A really great app, helps me focus significantly. But I keep running into an error message when I try to upgrade to the pro version, which makes it very frustrating. I have spoken to the Google Play Store and emailed your support team about this, to no response. Please help, I would like to support a great app such as this.",1,2,4.13.0,2020-02-04 21:22:45,"Hi, +Sorry for the inconvenience. We typically respond within 1-2 work days. If you never received a reply, please reach us again at android.support@forestapp.cc. Thank you! +- Forest",2020-02-05 17:45:01,most_relevant,cc.forestapp +Bhumika Kaushik,https://lh3.googleusercontent.com/-FHxtN1ZDIVY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNbKhwnYn9NONBWEPLG6xmY288OAw/photo.jpg,"I can easily exit the app by clicking the home button and go anywhere I want to. The purpose of the app is to stop us from navigating other apps which I don't see getting fulfilled. I can Even go to tabs that I opened and didn't exit without my tree being killed. At first, I didn't know that it was that easy to fool the app,but after tad a bit of time,I realized that it was pretty easy to open youtube while my tree was growing and still ensure that my forest is lush and green. It's lame.",1,2,4.13.0,2020-01-26 14:12:17,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2020-01-26 16:32:56,most_relevant,cc.forestapp +Alex Nguyen,https://lh3.googleusercontent.com/a-/AOh14Gie0NCSHoK9Ppsg5FBxUhrPSeBSClAHYbfSb2g3c2c,"It's useful. I wasn't sure how good it'd be at keeping me focused, but it really does help--and it shows me how much I use my phone. Also, the gardens are quite pretty. I would like more realistic varieties of plants and for it to not be so expensive to plant real trees, though. Seems fitting to be able to plant trees in real life with every tree you plant. I'd be much more willing to recommend this app to people if I could plant a real tree with every full tree I plant in the app.",1,33,4.14.2,2020-03-11 00:08:42,"Hi, +Since the cost of planting real trees is covered by the company, complications might arise when users plant too many real trees; the cost can also easily exceed the app's revenue. Therefore, the price to plant a real tree requires a certain amount of focus time to reach. You can gain coins faster by unlocking achievements. :) +- Forest",2020-01-28 17:45:55,most_relevant,cc.forestapp +Kalpana Singh,https://lh3.googleusercontent.com/a-/AOh14GjNU0AFZ0p3WZWn4M70_ttVv7YyaeASDEpJ39uh,The old version was good and interesting but in the latest version it needs money for unlocking each and everything,1,1,4.15.0,2020-03-26 17:44:21,,,most_relevant,cc.forestapp +Rayiena d'Sierra,https://lh3.googleusercontent.com/a-/AOh14GgVhzEOQMUd9FXpz6h-lkoh9Xdar6NfoTEuKfHozA,"This is really annoying, I got premium but for some reason it doesn't record how much screentime I've been using?? And I have to constantly go to accessibility to turn the app on, I don't know why it turns off a few minutes I turn it on. It's been proven because I use an app called screentime and it records I have used 5 hours, but Forest doesn't? Please fix this!!",1,85,4.13.0,2020-01-29 18:29:59,"Hi, +Please make sure Forest is open in background so that it can track your phone usage. Thank you. +- Forest",2020-01-30 15:22:30,most_relevant,cc.forestapp +Shrushti Patil,https://lh3.googleusercontent.com/a-/AOh14Gi1thw0ffobdW97TxDqBmqFgg0OuIwe-SWhwtnwLoo,"Initially i used to love this app bt Lately, when i press Plant option, the countdown never starts.. N even when sometimes the countdown starts, m able to access other apps even after giving each n every access to the settings required for this app. This ultimately makes me spend more time using cellphone. Pl check. Mobile: Micromax Canvas Infinity. I updated app bt then still it's not working!",1,0,4.13.0,2020-01-31 03:45:01,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problem to android.support@forestapp.cc? We will investigate the problem further. +- Forest",2020-02-12 19:36:37,most_relevant,cc.forestapp +Shreya Bhowate,https://lh3.googleusercontent.com/-kH6tjeLN6eQ/AAAAAAAAAAI/AAAAAAAAMd0/AAKWJJMxHMywmT_HxJqq1Wl7-7aPYPNa_g/photo.jpg,"Help Forest team!!! Please note. A genuinely helpful app if followed with honesty.🙂I've been using it for around a month & have definitely improved with focusing.But not a 5-star rating? This evening the app crashed & then did not open at all. I even tried rebooting the phone, trying to clear cache(there was none),etc.And thus with no other option, in order to continue using the app,I had reinstall it. Edit: Update-It keeps crashing. I have to uninstall & reinstall it almost everyday.😟",1,26,4.13.1,2020-02-23 12:27:13,"Hi, +Vivo phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-02-29 18:24:05,most_relevant,cc.forestapp +Mwape,https://lh3.googleusercontent.com/a-/AOh14Ggxk2b1810qTh80QyZQGofEYWSrhP_TQ76OcD-z418,"When I first downloaded the app it worked seamlessly, but once I upgraded to the Pro version it began to lag and slow down. I can't access my timeline, store or achievements anymore and it's slow run time is making the app so tedious to use. It's becoming an awful app for me",1,5,4.14.0,2020-02-28 16:30:08,"Hi, +Sorry to hear about the trouble. Our support engineers are currently working on this issue and we shall fix it ASAP. +For further assistance, contact our customer support at android.support@forestapp.cc :) +- Forest",2020-02-29 18:15:47,most_relevant,cc.forestapp +Hans-Chris Anker,https://lh3.googleusercontent.com/-gNQDRCquGQc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMXSxzXeBA_0T4D3Y_JrQeRqvt6rw/photo.jpg,"I can still use all my apps when I'm using this app. It just gives me a notification to go back to the app, before if I opened Instagram for example it would redirect me to the Forest app but it doesn't do that anymore, therefore the app is useless in my opinion",1,2,4.13.1,2020-02-16 23:22:14,"Hello, +Sorry for the inconvenience. The redirecting function is removed from devices running on Android 10 because of changes in the new Android system.​ Now you'll receive a warning notice instead when accessing other apps. We'll keep seeking a way around this. Thank you for the feedback. :) +- Forest​",2020-02-19 16:35:53,most_relevant,cc.forestapp +Ahiya Ahmed,https://lh3.googleusercontent.com/-lkTWCJQ7_gE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNgr65n2sOcudFaz7nblbXkCkUfmA/photo.jpg,I hate to say but ur app sucks. It automatically stops and deletes a tree or seed score. It hangs and Even crashes so many times. I can't even contact you for support. I spend 600 s from 1146 s left with 546 which got automatically deducted to 200. I mean how on Earth this is happening.,1,0,4.14.2,2020-03-17 15:25:08,"Please contact us via our in-app feedback system or please send the details or the screenshots of the problem to android.support@forestapp.cc. We will investigate the problem further. +- Forest",2020-04-06 13:50:26,most_relevant,cc.forestapp +Maryam Shams,https://lh3.googleusercontent.com/-9A8cg63t3lg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNTbtnC9AdunbQzUvr7KA5MvLQvhQ/photo.jpg,"I had paid once for this app and had login to it. Now i have another mobile and want to use my acount on this device, but this app asket to pay first before login. Should i pay each time i change my device?",1,0,4.15.0,2020-03-28 10:16:42,,,most_relevant,cc.forestapp +Rhea Steensma,https://lh3.googleusercontent.com/a-/AOh14GhjMG01uUlzyg6aXd0-OY8OP6NOJHHDlklB_W_C9Q,"I love this app, but why does the timer not seem to support landscape mode? Give stars otherwise 💪",1,0,4.14.3,2020-03-18 10:13:54,"Hello, +Thank you for your feedback. We will forward your suggestion to our team.",2020-04-06 13:56:17,most_relevant,cc.forestapp +Michael Butler,https://lh3.googleusercontent.com/a-/AOh14GjTF6Zedvz5CG1psTpMQU_75JHM-8IxPwvGtBmaOA,No matter what settings I choose I get no sound when timer is up. App would be great if I could hear when timer is up. It makes sound when going through menu. Sent an email over a week ago. All these months later and still same issues.,1,1,4.13.0,2020-01-25 21:39:46,"Hi, +We're sorry to hear you're unhappy. If you haven't received a reply yet, you may consider your email has gone missing. Please contact us again with your phone model, Android OS version and Forest app version so we can assist you further. +- Forest",2020-01-26 01:05:20,most_relevant,cc.forestapp +Jo Arsal,https://lh3.googleusercontent.com/a-/AOh14Gi9Xln9x-kK3tVpzJJMl6JqfKqWv6S7VokbDYU8,"Never seen a worse app than this one. Seriously? I am just wondering how it got 4.6 rating on average. You plant 5 grass blades in the name of trees. One can't connect to friends and has to wait for hours like, seriously? Wish I could lessen this one star to a 0.01. Oh really? Then why you rob people telling them about features in pro version if it is only supposed to stop us from using phone.",1,27,4.13.1,2020-02-20 19:13:22,"Hi, +Sorry to hear our app doesn't meet your expectations. Forest aims to help users beat phone addiction, so you're expected to leave your phone alone during planting sessions. There's a whitelist feature in the Pro version that allows you to use certain apps. +Learn more about the tree-planting project of our partner Trees for the Future: trees.org",2020-02-19 16:13:02,most_relevant,cc.forestapp +Luna K. Amber,https://lh3.googleusercontent.com/a-/AOh14GgZj6S4Nm1gCGj-3VXv7C_4ZfkZOfVT385A3MoQ,Keeps turning off even when set to the proper settings . I made sure it was not an issue with my phone. I set the settings of the app to their adequate setting and yet the app still does not work when my phone if off.,1,1,4.13.0,2020-02-10 17:36:31,"Hello, +We are sorry for the inconvenience. Please make sure the ""Wither the tree when Forest is closed"" option is turned off and that the ""Lock Forest to stay in foreground"" option is turned on. If the problem still exists, please contact us at android.support@forestapp.cc. Thank you! +- Forest",2020-02-11 08:49:28,most_relevant,cc.forestapp +Ojaswee Kesharwanee,https://lh3.googleusercontent.com/a-/AOh14Gir8ZWvzss2_V9PHPlgc1Fz4EYSF1XnWd0NMq_Aqw,"Despite having given all the access required, it just doesn't work. Wanted to use the app but just couldn't because the tree doesn't die and it doesn't stop me from using other apps. So the purpose is defeated. Uninstalling sadly.",1,3,4.14.1,2020-03-05 09:11:09,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2020-03-14 05:30:48,most_relevant,cc.forestapp +Neo Ax,https://lh3.googleusercontent.com/a-/AOh14GiXvjpmADRhjV9AIVNDyv-pops7hS_jw2GsnjsSaQ,"Okay, the app is good I even got the bro version. But its missing a serious things. Like for an instance there is no way to change the break time or even knowing the long break times. I cant delete a pomodoro that I made unless I did a data clear which is unfair for all the other pomodoro I did. Pls fix this",1,0,4.13.0,2020-02-01 23:33:38,"Hi, +We have a break feature - after you finish planting a tree, tap the clock icon to set a break time. After the break time is over, Forest will notify you and remind you to start focusing again. :) +- Forest",2020-02-05 18:03:43,most_relevant,cc.forestapp +Prasanna Vedantha Desikan,https://lh3.googleusercontent.com/a-/AOh14GjxvUv9QAAvpe4ruTvbO_jpFuj7kXaXojjZGKEiK6A,It would be better to add a comment on what exactly the time spent for every time we turn the timer on. Now it crash and never open in my new Samsung galaxy S10 lite. Uninstalling it......,1,0,4.14.2,2020-03-14 03:22:56,"Hi, +Sorry for any inconvenience caused. Please turn off the automatic update in the Samsung app settings for Forest, and reinstall the latest version of Forest from Google Play. Thank you! - Forest",2020-03-14 04:30:18,most_relevant,cc.forestapp +Chirag Patel,https://lh3.googleusercontent.com/a-/AOh14GhQwdXLzw_paYuvWKQg7lsIQhsW1qz0HWASPpgjQWs,"I purchased the pro version in my motorola g5 plus , than uninstalled it, now I can't even get that purchase back! I understand it happening between two different devices, but I'm still using same device. Please help with it",1,1,4.14.1,2020-03-05 16:53:11,"Hi, +Please make sure you're logged in to your Google Play with only the Google account you originally used to install Forest, then go to the ""Pro Version"" in the Settings page, and your Pro upgrade should be restored automatically, which will then enable you to log in. +If the issue remains, please email us at android.support@forestapp.cc. +- Forest",2020-03-14 05:29:22,most_relevant,cc.forestapp +Kavin.,https://lh3.googleusercontent.com/a-/AOh14Gg9jHIqXUTuVDjMLSSxRtW-4y8bYK1_-8zfr1jzTg,"The app kept crashing when I tried to open it, so I had to uninstall and reinstall the app... Please look into it, for otherwise it's an awesome app.",1,0,4.13.0,2020-02-10 03:34:23,"Hi, +Vivo phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-02-11 08:58:21,most_relevant,cc.forestapp +Ashley Schrantz,https://lh3.googleusercontent.com/-qXZ33mjH5PE/AAAAAAAAAAI/AAAAAAAABPw/AAKWJJN09AhBlzRSIAgudbYAe-kpwWjkVw/photo.jpg,One of the central features that you cite in your description is a premium only feature. Misleading. Waste of time. Uninstalled.,1,0,4.13.1,2020-02-13 06:07:59,"Hi, +Pro features are cited in the 'Unlock Pro Version' section of the description page. As independent developers, we don't take any investment from venture capitalist. and thus we have to strive hard for the operation of Forest. To provide better and stable service, we need to put some features in the Pro version. Hope you understand. :) +- Forest",2020-02-13 08:06:05,most_relevant,cc.forestapp +Timothy Feathers,https://lh3.googleusercontent.com/a-/AOh14GilpFSOqIocuQJvIWbnkHHtilpgFQOxW-Dq7saUQA,This program makes my Garmin connect provide a notification and buzz every 2 seconds to let me know that my tree is still growing. Can find no guidance on how to disable this.,1,0,4.12.3,2020-01-16 18:44:18,"Hi, +Sorry for the inconvenience. Could you please send the details to android.support@forestapp.cc? We will investigate the problem further. +- Forest",2020-01-17 04:50:38,most_relevant,cc.forestapp +Joseph Stalin,https://lh3.googleusercontent.com/a-/AOh14GgoiI6a3e-GxA-qbJhjJX6SlieDTpXNSzOnE0rI,"Good concept, but whenever I open the shop it says error code 668. I tryed redownloading and it didn't work.",1,0,4.14.0,2020-02-28 00:29:41,"Hi, +Sorry to hear this is happening. Could you please send us screenshots related to this issue at android.support@forestapp.cc? We’ll fix it asap. Thank you for your patience. +- Forest",2020-02-28 16:04:58,most_relevant,cc.forestapp +Liam Sullivan,https://lh3.googleusercontent.com/a-/AOh14GgYw7nNRIgQt2ifFBQUQcWreS-yULmjABCSb12rRZU,tree withers and dies when using team mode. all is fine in single mode. refund premium please.,1,0,4.13.1,2020-02-18 21:23:08,"Hi, +Could you please contact us via the in-app feedback system so that we can investigate the problem further? Thank you and sorry for any inconvenience caused.",2020-02-19 16:17:45,most_relevant,cc.forestapp +Nikolaus Tobian,https://lh3.googleusercontent.com/a-/AOh14GhCnSaydDCP0fikhNs-fs6F-Yyf8VkjKdINI077Bg,"Updated to android 10, makes this app could allow me to go to other app. Pls fix this bug",1,0,4.14.3,2020-03-16 15:40:17,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2019-12-27 13:26:53,most_relevant,cc.forestapp +Russell S,https://lh3.googleusercontent.com/-pappM_EANNg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP867m5zX_9Vo08PmiQ5ODykNNgUA/photo.jpg,After a recent update it puts my phone on do not disturb and I have to manually turn it off after using forest.,1,1,4.12.3,2020-01-19 17:51:03,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problem to android.support@forestapp.cc? We will investigate the problem further. +- Forest",2020-01-20 16:51:50,most_relevant,cc.forestapp +prapti tuladhar,https://lh3.googleusercontent.com/a-/AOh14GheNZZxbeBe0RRLRRUppJy8Kiv99iMlXxc7s25B,"The app is not opening and displays message ""Unfortunately, forest has stopped working.""",1,0,4.13.0,2020-01-28 15:34:20,"Hi, +We have relayed this issue to our developer team and we are working on it. Sorry for any inconvenience caused. Please update the app as soon as a new version is out as this issue may be fixed there.",2020-02-05 18:02:07,most_relevant,cc.forestapp +Nitin Dighe,https://lh3.googleusercontent.com/a-/AOh14GjEGHhAMRhtTSoCIKJh5zMkXGdlSjXVbUjYXiHEmA,This app keep on crashing in my device. Fedup of this app.,1,0,4.15.0,2020-03-29 21:00:10,,,most_relevant,cc.forestapp +Talking Shiv,https://lh3.googleusercontent.com/a-/AOh14Gi_SnbCD0aZj5QF8hurd_pSWFmBXXXlsgHnMC-tPw,I bought pro version and paid twice. Still haven't been delivered the pro features.,1,0,4.14.1,2020-02-29 12:58:23,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problem to android.support@forestapp.cc? We will investigate the problem further. +- Forest",2020-02-29 18:00:05,most_relevant,cc.forestapp +Martin Cueto,https://lh3.googleusercontent.com/a-/AOh14Gid2SfmEoHYYF8wBg-uS6TJ2khEFjahY6o_4IfxBho,The tree store does not work.... Please fix Other than that great app does what it intends to do.,1,0,4.14.0,2020-02-29 14:16:17,"Hi, +Sorry to hear about the trouble. Our support engineers are currently working on this issue and we shall fix it ASAP. +For further assistance, contact our customer support at android.support@forestapp.cc :) +- Forest",2020-02-29 17:59:21,most_relevant,cc.forestapp +snowy jay,https://lh3.googleusercontent.com/a-/AOh14GjLkMBW-xV0GxIqLI1oElxhliCXZslWlJWAjW9Y,This sucks I thought u could plant trees by just playing it and spending you're time on it but nohh you need to pay for it I'm not saying for you to change it but it just sucks,1,0,4.14.1,2020-03-08 10:00:26,,,most_relevant,cc.forestapp +Akbarali Maniyar,https://lh3.googleusercontent.com/a-/AOh14Gh_ccQoMeP5pHCnJtHKtR9_PkAw77XkiGyIHfl1Dg,It's not working again what's wrong with this app nothing 😡 is fixed no bugs fixed,1,0,4.12.3,2020-01-26 03:46:18,"Hi, +Could you please update Forest to the latest version (4.13.0) and see if it solves the problem? +If you continue to experience issues, please reach us at android.support@forestapp.cc. Thank you! +- Forest",2020-01-26 16:39:29,most_relevant,cc.forestapp +shaheek SB,https://lh3.googleusercontent.com/-FMB0u9p85lw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOANYUD5vvP3uW43mQFwBAylofzrQ/photo.jpg,"I uninstalled the app and installed it again and now the app works, but ive lost all my progress and my forest... this is so dumb this app forces me to uninstall and then i dont even get my progress back",1,0,4.13.0,2020-02-08 03:20:12,"Hi, +Unfortunately your data can't be saved on the free version of the app, so it'd be gone once the app is uninstalled. We are really sorry about that. If you upgrade to the Pro version, you'll be able to save your progress, customise your whitelist, plant real trees, etc. Hope you consider! +- Forest",2020-02-12 19:32:24,most_relevant,cc.forestapp +Munkhsaruul Tavinjil,https://lh3.googleusercontent.com/-VcbqXULyXP0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNEIkgmFzdy_OFR0FwM4ViUgDUstw/photo.jpg,"can't turn on the whitelist unless i unlock the pro version , i dont wanna waste money for that. uninstalled 😤😤😤😣😪",1,0,4.13.0,2020-01-30 07:54:25,"Hi, +We are sorry for the inconvenience. As independent developers, we don't take any investment from venture capitalist. and thus we have to strive hard for the operation of Forest. To provide better and stable service and for the long-term product plan, we need to put some features in the Pro version. We kindly ask for your understanding. +- Forest",2020-01-30 15:19:16,most_relevant,cc.forestapp +micha46 R,https://lh3.googleusercontent.com/a-/AOh14Gg8RzA5dNbDGjdtHxqTyfm9Wy9Zg5T_ZpHGjC8B0F4,Tree keeps failing for no reason. Please fix,1,0,4.13.0,2020-01-24 01:58:22,"Hi, +Could you send us the exact steps to reproduce your issue at android.support@forestapp.cc? Sorry for the trouble. +- Forest",2020-01-25 21:49:48,most_relevant,cc.forestapp +Giả Bảo Ngọc,https://lh3.googleusercontent.com/a-/AOh14GiqbdQSH1azhli2du5kI21jyu7WpKk8k1X8eSOe,Kicks me out everytime i use it. Now i regret installing the new version. I also don't want to uninstall as I don't think I have backup. Help?,1,0,4.14.2,2020-03-15 11:46:13,,,most_relevant,cc.forestapp +Ruchi Chhabra,https://lh3.googleusercontent.com/a-/AOh14Gg-0451ldN76lQPE3Sgpugp2RZpqUgyXTibgPoWOQ,It works well when I install but not able to double coins,1,1,4.13.1,2020-02-13 05:58:12,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problem to android.support@forestapp.cc? We will investigate the problem further. +- Forest",2020-02-13 07:47:58,most_relevant,cc.forestapp +pink roses,https://lh3.googleusercontent.com/-BL75exTaGmM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP6i9RjpAtH_G66LrW1oDfpNy38Rg/photo.jpg,"Since the last update, always unfortunally has stoped",1,1,4.13.0,2020-01-27 21:13:35,"Hi, +We have relayed this issue to our developer team and we are working on it. Sorry for any inconvenience caused. Please update the app as soon as a new version is out as this issue may be fixed there.",2020-02-05 18:01:49,most_relevant,cc.forestapp +Hazel Marie De Guzman,https://lh3.googleusercontent.com/a-/AOh14GhnXMAzpFXxgb6y8Tw_q8n4j81JugX4fNMPISNP,"It hangs, then it killed 2 trees without setting alarm.",1,0,4.13.1,2020-02-20 02:10:43,,,most_relevant,cc.forestapp +Roma Kashyap,https://lh3.googleusercontent.com/a-/AOh14GiT_Kb58xqDwz_ox-__HFMTCdAe1ivQ_1e_4gaDxg,"Forest app is working.what to do. I allow all step what you asked. Yet my app is not working.my phone is realme. Please send me step by step process to activate app on my phone. Please. And I' m trying to problem with screenshot to skeertech.but didn't get reply. So, please help me.",1,0,4.13.1,2020-02-17 13:15:05,"Hi, +We typically reply within 1-2 work days. If you don't hear from us after 2 days, you may consider your email has gone missing. Please reach us again at android.support@forestapp.cc. +- Forest",2020-02-19 16:07:11,most_relevant,cc.forestapp +Elsss,https://lh3.googleusercontent.com/a-/AOh14Gggn6cRM5VTVGCozJvv391QcUUeuLKgSnbISst2HQ,"The app is running while I type this review, meaning I am able to just leave the app and do something else without my tree dying. Just spent 45 minutes trying to set up the app, which is ridiculous. I tried to follow the instructions, but they were really outdated and the settings don't operate like that anymore. It doesn't work at all.",1,1,4.12.2,2020-01-13 09:34:01,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2020-01-15 13:35:20,most_relevant,cc.forestapp +Vyra Matthes,https://lh3.googleusercontent.com/a-/AOh14Gho-D3pb5a_vo97QeuAo9ZTUFor1eAmfblD5RUJhQ,"This app requires a ridiculous amount of permissions, including location, camera, and data cookies?? When I heard about this app, I got excited. Really thought it was going to be nothing more than say an animated timer that only works when you stay within the app (like Youtube pauses when you switch apps). This is just downright data mining and invasive. Edit: Funny that I mentioned this and now it doesn't say the same thing.",1,6,4.11.2,2020-02-14 13:45:12,"Hi, +The Forest app installed from Google Play do NOT require permissions for camera and location. Data cookies are for Internet Communication and web pages like the News page and the Real Forest page. Please reach us at android.support@forestapp.cc if you have further concerns. Our privacy policy was last edited on September 27, 2019.",2020-02-16 14:57:41,most_relevant,cc.forestapp +Glauco Tebaldi,https://lh3.googleusercontent.com/-s0bFF8DaK7M/AAAAAAAAAAI/AAAAAAAANQc/AAKWJJMzYBemRnaOaG50twlGFbxcuUajGw/photo.jpg,"Your app doesn't work properly. I can do whatever I want while my trees grow and they won't die. When I re-enter the app there's just a message that say ""if you use other app you have to kill your tree first"". For now is totally useless. I have also bought the app and since I've done that I can't even double the money I earn. Please fix these problems :(",1,19,4.12.2,2020-01-10 18:47:32,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2020-01-15 13:56:34,most_relevant,cc.forestapp +Sriram Manthina,https://lh3.googleusercontent.com/a-/AOh14GhkvcTxCFmqSQPctxwagb8GH_xUV1YHgAu-yf0RWQ,"One of the best apps I ever liked. But I can't control my anger right now. If there is a limitation of 5 real trees then why didn't you mention it on purchase page????? Why nowhere you have mentioned that we can plant only 5 trees maximum. If you are going to plant only 5 trees with the money we paid, cant we use the same money to plant 5 in my neighbourhood? Worst app ever now. False marketing by hiding about 5 tree limit Update: I understand. But MENTION ABOUT THE 5 TREE LIMIT ON PURCHASE PAGE",1,34,4.12.2,2020-01-16 04:39:11,"Hi, +Sorry to hear you're unhappy. You might've missed the info but we HAVE actually mentioned it on Forest's app description page here on Google Play. :) +Please scroll down to ""NOTICE"" in the app description and you'll see that each user is entitled to maximum 5 real trees. Thank you. +- Forest",2020-01-26 01:15:25,most_relevant,cc.forestapp +Arthur Van Bentum,https://lh3.googleusercontent.com/a-/AOh14GjOig1-u8t05Jv2_7dAtOb_0_4vbDR_I53P0oJw0A,"Doesn't work at all like it should. Spent ages trying to set it up correctly but it just keeps letting me exit out of the app with no repercussions whatsoever. Pretty lame, since I just wasted a lot of time following FAQ's with 0 results. Well earned this 1 star as long as this isn't fixed.",1,41,4.12.2,2020-01-10 15:14:25,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2020-01-15 14:38:54,most_relevant,cc.forestapp +Shubham Jain,https://lh3.googleusercontent.com/a-/AOh14GjwyXh8eITH75CgmlVBbJqzOgyeU7o_R9oXfu9-aA,"This is such a fantastic app. But the time taken to solve out problem that I'm facing for last 10-15 days is leaving the counter-effect. Instead of being focused, I'm more distracted because I am unable to plant any tree and it crashes my phone every now and then. Reported so many times and uploaded every data they asked for but in vain. 1 star is for that !!!! I purchased premium and now I've to go through all this.",1,26,4.11.1,2019-11-18 12:37:41,"Hello, +This issue has been resolved in the latest version (4.13.1). Please update the app and we'd be glad if you give us a positive review when the problem is solved. :) +If it persists, please contact us in-app. Thank you! +- Forest",2020-02-13 08:35:43,most_relevant,cc.forestapp +Claudia Kahrs,https://lh3.googleusercontent.com/-d5LuHtBHPag/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOolllTHicKGSuINliW8avM-Zrl2A/photo.jpg,"I cannot log in to my old account since I have to buy the pro version in order to log in at first. So my past progress is lost. Also, I cannot purchase the pro version neither: 'error(6)' I have reinstalled, forced stop, cleared cache, etc multiple times. I have added a paying method to my google play account as well. Nothing has helped and I haven't received an answer to my email to you yet. This makes me sad because I like the app to much to deinstall it.",1,9,4.11.5,2019-12-11 21:54:08,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problem to android.support@forestapp.cc? We will investigate the problem further. +- Forest",2020-01-18 21:02:45,most_relevant,cc.forestapp +Qasim Kazmi,https://lh3.googleusercontent.com/a-/AOh14GiB92TPaVO2BsZExqiHK-LTE7fdFgG-HIl0CjSZiA,"Doesn't work Typing this as I have a tree growing with 8 minutes left and it's still counting down.. EDIT: After updating to all the latest versions doesn't work. Just to let you know that this issue is intermittent and not all the time, but most of the time. EDIT: I have emailed that email address for support but the email was not delivered 🤷🏾‍♂️",1,4,4.11.2,2019-12-02 21:13:55,"Hi, +The latest update is available in the Google Play Store (4.13.0). Please update the app as soon as possible to continue your focusing routine. +- Forest",2020-01-26 01:37:16,most_relevant,cc.forestapp +Oliviu Stanciu,https://lh3.googleusercontent.com/-iWSTBjdjpIw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNcLNJNpzCtZTXlN5xKJnagdf3jdA/photo.jpg,"The app no longer works. I gave it 5 stars before and used it religiously every day, while supporting the devs as often as possible. Now when I try to start a new session nothing happens. There's a countdown in the notification bar but the app itself doesn't work. The big timer in the app is frozen and I'm able to use my phone freely. A week ago or so I couldn't complete any session since the timer and the session itself would just reset at some point, without me knowing. Highly disappointed",1,108,4.11.3,2019-11-25 13:26:04,"Hi, +Please update Forest to the latest version (4.13.0) and see if it solves the problem. +If you continue to experience issues, please reach us at android.support@forestapp.cc. Thank you! +- Forest",2020-02-08 03:25:16,most_relevant,cc.forestapp +.Deena Saleh.,https://lh3.googleusercontent.com/-S0gb68mDlwM/AAAAAAAAAAI/AAAAAAAAFQ4/AAKWJJNii0Q574BleEPXyjpBaK_b6wJKEw/photo.jpg,"I have been using this app for nearly a year. However, lately it has been crashing so frequently that I reinstalled it few times in two days. It keep crashing again and again. It also sometimes doesn't count the time and resets itself. I am very disappointed that I will stop using it unfortunately if it doesn't get fixed.",1,1,4.11.5,2019-12-15 08:14:36,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problem to android.support@forestapp.cc? We will investigate the problem further. +- Forest",2020-01-18 20:52:31,most_relevant,cc.forestapp +십대.추악한,https://lh3.googleusercontent.com/a-/AOh14GimZIzbS5uLzYReYP2o1BWktIHtW6XqLy8kX3reyQ,"thanks for answering, but nothing has changed. i have tried everything but it just won't help me like it used to.",1,0,4.13.1,2020-02-23 11:06:12,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2020-01-20 17:08:38,most_relevant,cc.forestapp +Kinsey Underbrink,https://lh3.googleusercontent.com/a-/AOh14Ghg1XSRcitCzWIHg-TJZHxiBn1y7DwNQQvf0XdyrNI,"Thee planting reminders aren't working for me for some reason. I have them set and on, but I don't get notifications. Also, my trees don't wither when I go into an app that's not on my whitelist. They have an advanced detection mode, but sorry, I don't want Forest to be able to collect data on what I'm typing (it includes everything but passwords, even credit card numbers)",1,4,4.11.1,2019-11-19 21:18:48,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problems to android.support@forestapp.cc? We will investigate the problems further. +- Forest",2019-12-01 15:28:06,most_relevant,cc.forestapp +No Comment,https://lh3.googleusercontent.com/a-/AOh14GicPp9pj2gRqA6UkEY4qDqPtbVwtWg1-tFX43fs2Q,Ever since the recent updates.. the app clash and wont work as the PLANT button were pressed .. unless the Wifi/ Mobile data were on.. it works fine. I would give 0 zero star if I could.. running an app in internet connection can be interrupting especially for students. Please fix this issue as I'm wishing to depend on the app with no internet connection (as how it used to in last version),1,12,4.11.1,2019-11-17 04:05:15,"Hi, +Please update Forest to the latest version (4.13.1) and see if it solves the problem. +If you continue to experience issues, please reach us at android.support@forestapp.cc. Thank you! +- Forest",2020-02-16 15:05:36,most_relevant,cc.forestapp +Sachin Kankala,https://lh3.googleusercontent.com/a-/AOh14GghswB5B-pyzknlhdfEYi80BXnEgnbL_H9XbasqGQ,"Don't go for premium , then you have to make sure the data sync is upto date Everytime before you start the app and it is not possible unless you have good speed wifi wherever you go.",1,0,4.11.4,2020-01-06 23:05:55,"Hi, +Sorry for the inconvenience. You don't have to have your data synced immediately. You can use the app without network connection and then sync your data when available. +It's also advisable to keep the app up-to-date for the best user experience. Latest version: 4.12.3 +- Forest",2020-01-15 14:11:00,most_relevant,cc.forestapp +Bchini Syrine,https://lh3.googleusercontent.com/a-/AOh14GiHV6Jz8Bl65jAA7h71R7MAe-JVAREH9g7c8_jQ,"The app started crashing recently whenever I try to use it, I press a button and it freezes completely and stops responding, I tried uninstalling and re-installing, at first it went okay (for 2 days) the the same thing happened again! It frustrated me, I'm not sure if I'm the only user facing this problem but I sure hope it gets fixed 😔😕",1,217,4.11.5,2019-12-04 14:50:57,"Hi, +Could you please update Forest to the latest version (4.13.0) and see if it solves the problem? +If you continue to experience issues, please reach us at android.support@forestapp.cc. Thank you! +- Forest",2020-01-26 00:54:46,most_relevant,cc.forestapp +Graham Hammond,https://lh3.googleusercontent.com/a-/AOh14Gj8yxCIWa9CO38Q0qddaTORd3IzkL81F2HXVu-au3M,Excellent idea but doesn't really work as intended. All I do is use the app when I know I definitely won't need my phone and obviously this isn't what it was designed for. I'm not using my phone less at all. Really the tree's should be continuously planted and then when you use your phone the current tree growing dies as this will put people off using there phone if they see that there is only several minutes left for the current tree to finish growing.,1,6,4.11.1,2019-11-18 21:24:31,"Hi, +Please update Forest to the latest version (4.13.1) and see if it solves the problem. +If you continue to experience issues, please reach us at android.support@forestapp.cc. Thank you! +- Forest",2020-02-13 08:15:59,most_relevant,cc.forestapp +charlene acosta,https://lh3.googleusercontent.com/a-/AOh14GjxqaDBKUcK7RdHR2yyHZCsgY8Gsfj6AM6D_7WLjQ,"Why is the timer not working anymore??? Worse, after the update nothing appears but a black screen. I've been using this for a few months already and this suddenly happens . Sad that I'm even on a Pro Account and I can't make the most out of it. So disappointing. :(",1,7,4.11.4,2019-11-30 16:28:49,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problem to android.support@forestapp.cc? We will investigate the problem further. +- Forest",2019-12-01 14:46:32,most_relevant,cc.forestapp +Meike,https://lh3.googleusercontent.com/a-/AOh14GjN-IiRiL4oTEqfxcc9xTtoJnXybKnbKdcLymKqaQ,I really love this app and recommend it to anyone but since i went premium nothing works. I can't go to the shop section or see my achievements. I hope they'll fix those issues with an update soon. Only 1 star because of the issues otherwise would have been 5 stars.,1,4,4.11.1,2019-11-16 10:01:52,"Hi, +Please update Forest to the latest version (4.13.1) and see if it solves the problem. +If you continue to experience issues, please reach us at android.support@forestapp.cc. Thank you! +- Forest",2020-02-16 15:15:53,most_relevant,cc.forestapp +Christine Jones,https://lh3.googleusercontent.com/a-/AOh14GjC9CaSF77Gct0getXRIYikzlzMeUD1Q6h5eTcO,"I was really excited about the whole idea of this app, but theres this huge down side that I cant accept. I hate how the whitelist option to use your apps without killing your trees is ONLY if you pay MONEY. Which is ridiculously frustrating because I have 5 specific apps I need as an artist and use on a daily basis. I was looking forward to planting my forest while working on my pictures. But NO! Disappointing! That one specific feature should absolutely be on the standard app option.",1,30,4.11.0,2019-11-06 18:29:49,,,most_relevant,cc.forestapp +youtube viewing only yea,https://lh3.googleusercontent.com/a-/AOh14Gh24JYRp_iCH7UVGPDNOGkZgND2h5ZPKr0k5j9GMQ,Its always lagging and hanging up and not moving and Ive cleaned my phone storage and its still the same. Un installed/installed it 3-4 times already but its still the same. I dont know what it is about the app but one more crash I'll never go back to using this app and tell.my friends to do the same. Sheesh,1,3,4.11.1,2019-11-14 16:17:52,,,most_relevant,cc.forestapp +Eloisa G,https://lh3.googleusercontent.com/a-/AOh14GikvTUDSM759OwDxn_DrdGYkAEP9fW4TRlDy8WV6Q,"I am trying Forest out to curb my ""addiction"".. but yesterday I noticed I left the app and my tree didn't die. Kind of defeats the purpose, no? I think it's a really cute concept.. but that should be fixed. I even paid for the pro version...",1,1,4.12.2,2020-01-08 12:44:42,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2020-01-15 14:48:17,most_relevant,cc.forestapp +Chirag Chauhan,https://lh3.googleusercontent.com/a-/AOh14GgB5yUOxmVNARlRAu-Zop4raJQREvmcQQMSmhYX,"After some time I deleted this app because of the lack of storage and now I downloaded 3 times but I starteded growing plant this is obvious but I can use my phone and the tree dosen't spoiled and it dosent give me remainder and this app is full updated repair this problem it don't giv remainder to me, repair it soon as possible!!!",1,0,4.11.4,2019-11-29 14:59:02,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2020-01-28 17:57:28,most_relevant,cc.forestapp +Soumitra Sarkar,https://lh3.googleusercontent.com/a-/AOh14GjvbZHPr0LlR4xhFVedh4bYQ6Fz3osJWqJpWtg8Ojk,After the latest update the application crashes every time I hit the 'Plant' button. I have noticed this problem is solved if the internet connection is kept turned on. This was excellent app please fix this horrendous bug as soon as possible and I will surely increase my stars.,1,56,4.11.1,2019-11-12 18:50:07,,,most_relevant,cc.forestapp +rimsha imtiyaz,https://lh3.googleusercontent.com/a-/AOh14Gg-DNO9FYFThOWrcBde6oylmjWH6VbOM31kXHMQBA,"The app crashes every now and then, no point of using the app when the timer freezes and the app stops responding. It is happening from the past 2 weeks. Kindly do something about it because a lot of people seem to be facing the same problem.",1,7,4.11.2,2019-11-24 05:22:32,"Hi, +Could you please update Forest to the latest version (4.11.4) and see if it solves the problem? Thank you.",2019-12-01 15:14:34,most_relevant,cc.forestapp +Hend Rabie,https://lh3.googleusercontent.com/-eYkzApmlmCs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNdMtxbc6aQvxeIa-2KR6ggkhBMiw/photo.jpg,Many times i've used the app for over 65 minutes and every time it'd just freeze and shut down when only 1 second is left. Doesn't plant the tree and doesn't give me the coins. I'm disappointed + upset that i still can't save up for the treehouse that i want.,1,2,4.11.4,2019-12-01 13:12:52,"Hi, +Thank you for reporting the issue and sorry for the inconvenience. Our team shall look into the problem further. +If you encounter other issues, please reach us at android.support@forestapp.cc. +- Forest",2019-12-01 14:30:33,most_relevant,cc.forestapp +Ashish Shivram Poojary,https://lh3.googleusercontent.com/a-/AOh14GgEgadOnGsvuUyzTiYlSeTeIyeZA2zog2eQeLqp,"This app has been broken by the last update. Most of the times, whenever I try to plant a new timer, the app just hangs and I have to close it somehow. Also, the timer in the notification panel hardly updates accordingly. Please fix this!",1,4,4.11.1,2019-11-13 07:22:01,,,most_relevant,cc.forestapp +Vinay Eranki,https://lh3.googleusercontent.com/a-/AOh14GiUKd_VCn83qym74Hr42a9gnOPl9GKPu42Lzb9cMQ,The app is good but it is crashing a lot. It is instructing to upgrade but i did not find any option for upgrade. I am also a pro version user. I have to uninstall the app and later re-install it again to make it work for only 120mins.,1,0,4.11.4,2019-12-02 10:05:24,"Hi, +Vivo phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-01-26 00:56:46,most_relevant,cc.forestapp +Arya Abhishek,https://lh3.googleusercontent.com/a-/AOh14GhdhO-n_h0PEx9vfTBadLhyfkwFkt4brdOX95shbA8,"Best among productivity.... I am going to buy full version soon..... But it worked for 2 days and then it crashes on opening. Sent two mail to your team regarding this but haven't received any update I have tried everything whether on internet or on your Twitter response. I am planning to purchase this app, but it's not doing well I reinstalled almost 3 times but same worked for 1 day and again same problem. Model no: CPH1859 Phone: OPPO Realme 1",1,1,4.12.2,2019-12-28 17:26:45,"Hi, +Oppo phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-01-17 05:32:17,most_relevant,cc.forestapp +Susmit Islam,https://lh3.googleusercontent.com/a-/AOh14GjYizd3N59nLcfsQoh467kvuzitCXX_BiMoJroQ,"I used to love this app. I've been using it for about two years. But recently, it's started to crash EVERY TIME I CLICK ON THE TIMER. I tried an alternative (that I didn't like) and came back after a couple of months but still no improvement.",1,11,4.11.1,2019-11-10 09:45:04,,,most_relevant,cc.forestapp +Vallari Patel,https://lh3.googleusercontent.com/a-/AOh14Gig9m4oWSEJdm94ob8aL22D7q1MX7eE4c0uHUUjcA,The app has been really good these past few months but suddenly everytime I start the timer the app stops responding. I don't want to uninstall the app in fear of losing everything I've done on the app but the app hasn't been co-operating and I might just be forced to use another app.,1,53,4.11.1,2019-11-11 23:53:24,,,most_relevant,cc.forestapp +PALAK SHARMA,https://lh3.googleusercontent.com/-NAfjRMRtaTs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMTjiA1lhjxknWTWhqaeqrzNbm-Hg/photo.jpg,WHY CAN'T I BUY STUFF FROM THE STORE AND SEE THE ADDS. THIS IS VERY ANNOYING. It is a good app but im not able to access so many features of this app it shows some error so just fix this.,1,0,4.12.2,2020-02-18 06:09:09,"Hi, +Your app is outdated. Please update Forest to the latest version (4.13.1) and see if it solves the problem. +If you continue to experience issues, please reach us at android.support@forestapp.cc. Thank you! +- Forest",2020-02-19 16:20:07,most_relevant,cc.forestapp +Scott R.,https://lh3.googleusercontent.com/-j12Uf5dvxnY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPkhvgob9GiDGeapDrfaNo0uk3jNA/photo.jpg,"So I forced myself to sit thu the first exercise and I want my 25 minutes back, please? Is this a joke? The devs must be sadomasochistic to develop an app that flashes conflicting phrases such as ""Stay focused"" & ""You can do it!"" with ""Don't look at me!"", ""Stop phubbing"" (l had to look that one up) & ""Put down the phone!"", not that I was using a phone in the first place. Quite extraordinary!",1,5,4.12.2,2019-12-31 16:58:34,"Hi, +Forest aims to help users stay focused on what they're doing and beat phone addiction. If you have any suggestions or questions, feel free to let us know! :) +- Forest",2020-01-17 05:14:53,most_relevant,cc.forestapp +Prabhu Meena,https://lh3.googleusercontent.com/-a1csNUFpA_s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO_ZXiKgsZ98Xb2YVqeiqjxk3Zn_A/photo.jpg,It worked for me properly only 2 to 3 days now it doesn't track my focused time most of the time I am using Samsung's m30s phone and I use it offline I don't have internet access all the time . Please fix my issue otherwise it is totally waste of money.,1,1,4.11.2,2019-11-23 09:00:24,"Hi, +Please update Forest to the latest version (4.13.1) and see if it solves the problem. +If you continue to experience issues, please reach us at android.support@forestapp.cc. Thank you! +- Forest",2020-02-11 09:30:43,most_relevant,cc.forestapp +Merin Ann,https://lh3.googleusercontent.com/a-/AOh14Gi6o-zWAAk1pHolv7woumKowwlSZzAWNEB2sy8Rjgc,"Definitely not worth downloading. The app keeps crashing. Does not record the time focused properly and hinders with functioning of the other apps. No point in buying the premium version either, a total waste of money. Latest update is just not upto the mark. Customizing anything usually results in the app crashing.",1,90,4.12.2,2019-12-19 04:34:13,"Hi, +Fix for the crashes is available in the Google Play Store (4.13.0). Please update the app as soon as possible to continue your focusing routine. +- Forest",2020-01-26 01:34:04,most_relevant,cc.forestapp +Gaurav Rewaliya,https://lh3.googleusercontent.com/-kckpXv3DUH4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP5UVhzDnurfW9gx1nq2LbZhNc7Kg/photo.jpg,Few years later I love this app Because it is best for focus and i give 5star rating but Now After update it stop working I can't plant (facing many problem to place a plant) I updated new version but the bug is still there And their is no option for backup my progress offline or in sd card storage,1,1,4.11.4,2019-11-28 06:52:28,"Hi, +Could you please update Forest to the latest version (4.13.0) and see if it solves the problem? +If you continue to experience issues, please reach us at android.support@forestapp.cc. Thank you! +- Forest",2020-01-28 17:45:06,most_relevant,cc.forestapp +Shannon Medlock,https://lh3.googleusercontent.com/-3vtgnHT3GEw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOucwXrtvbTDnuicyAHLXr2GAqyzw/photo.jpg,I loved this app until I paid for the premium version. Now it won't let me purchase any new trees and I don't have the option to earn double points. This was so much better when it was free. Please fix the issues!,1,1,4.11.1,2019-11-13 17:30:07,,,most_relevant,cc.forestapp +Sarah Sh,https://lh3.googleusercontent.com/-dYYaFM_R7qo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNVJTT2jkIL5mOL0MybIWu93ZG1OQ/photo.jpg,"However I found it a helpful app helping me to stay focused on my projects, I am disappointed!!! How could you just double or even triple the price of the trees through an update? 👎👎👎 that wasn't not fair!!!!",1,1,4.12.2,2019-12-30 08:01:25,"Hi, +We're sorry for the unpleasant experience. A new pricing mechanism was introduced in our recent updates. While he prices of some trees have increased, those of the rest have decreased - some plants only cost 300 coins now. You can earn coins faster by completing longer sessions or unlocking achievements. :)",2020-01-17 05:25:57,most_relevant,cc.forestapp +Calliope Jackalope,https://lh3.googleusercontent.com/a-/AOh14Gj9WshJXzIve88qTaUqaRYaXOAozcYvTZFNsKGsBQ,The is no default free tree. There are trees for tokens but you gain tokens by succesfully growing trees but you can only have an initial growable tree by buying one.,1,0,4.12.2,2020-01-13 21:09:10,"Hi, +Ceder and Bush are default plants that can be planted for free. Please tap the tree image at the centre of the main screen to switch tree species. :) +- Forest",2020-01-15 13:34:11,most_relevant,cc.forestapp +meow meow,https://lh3.googleusercontent.com/a-/AOh14GiizZP0CucxGyWixINtBXWUbuiOgg6n6A_AlHwm4g,"It doesn't let me use it, it keeps saying forest has stopped",1,0,4.13.0,2020-01-28 01:20:18,"Hi, +We have relayed this issue to our developer team and we are working on it. Sorry for any inconvenience caused. Please update the app as soon as a new version is out as this issue may be fixed there.",2020-02-05 18:01:53,most_relevant,cc.forestapp +Meh Toons,https://lh3.googleusercontent.com/a-/AOh14Gjyg14WoCQn09Jk90l42jKuoF0rdPUTdUaw8Kutzw,"The app still doesn't work well. I can still go back and use other apps... When I press the homescreen button, last time it didn't work and I couldn't use other social medias. Now, the tree grows while I use the app...",1,8,4.11.1,2019-11-12 08:52:08,,,most_relevant,cc.forestapp +Ayse Sevde Yildiz,https://lh3.googleusercontent.com/a-/AOh14GgV4BGZKOguqtzGDFtjheGAp199XrvXcI-qnYi8,"It was the best app I've ever used until the last update. I can't plant the tree even though I click ""Plant"" it starts at first but then stops counting time. I'm so sad...",1,2,4.11.2,2019-11-19 10:25:32,"Hello, +This issue has been resolved in the latest version. Please update to the latest version and see if the problem is solved. +Thank you and sorry for the inconvenience.",2019-12-01 15:30:44,most_relevant,cc.forestapp +Angel,https://lh3.googleusercontent.com/a-/AOh14GheN-F3mLm8PWNCAxzRcFBOBCTodcKXSvAIg1By4Q,"There is something wrong with the app. When the time was up, the application would crash and no tree would be planted. It used to work before. It's too bad the app isny working well now.",1,0,4.11.2,2019-11-28 22:47:47,"Hi, +Could you please update Forest to the latest version (4.13.0) and see if it solves the problem? +If you continue to experience issues, please reach us at android.support@forestapp.cc. Thank you! +- Forest",2020-01-28 17:44:05,most_relevant,cc.forestapp +At risk,https://lh3.googleusercontent.com/a-/AOh14GhigKri0k9tl8QSzR_7helV3OC_m2jOrsekF6u2,"I was aiming for a 30 day streak lately. Unfortunately, as I pressed the plant button, I wasn't able to plant. I kept pressing the button but it wasn't responding. 😭 This shattered my record.",1,0,4.11.5,2019-12-05 18:35:54,"Hello, +This issue has been resolved in the latest version. Please update the app and we'd be glad if you give us a positive review when the problem is solved. :) +If the issue persists, please email us at android.support@forestapp.cc. Thank you! +- Forest",2020-01-20 17:31:53,most_relevant,cc.forestapp +Samantha Rose,https://lh3.googleusercontent.com/a-/AOh14GiBWPZhpuUNBisLoBVvp5vOPJIONV3WP_7awtIVow,"i really need help with the app but all is in mandarin when i tried to get in my account. when the app is updated, i cannot get in the app so i had to reinstall it then when i tried to log in, it said i hv to pay for the premium when in fact, i've already paid for the premium",1,1,4.12.2,2020-01-02 05:07:44,"Hi, +Please make sure you have Google Play updated and logged in your Google Play with only the Google account you originally used to install Forest, then go to the ""Pro Version"" in the Settings page, and your Pro upgrade should be restored automatically. +If the issue remains, please email us at android.support@forestapp.cc. +- Forest",2020-01-21 19:42:35,most_relevant,cc.forestapp +ProfessorDuck 429,https://lh3.googleusercontent.com/a-/AOh14GimZOLPvjo1niovAN1jyKgHEnUNbFQcbekLq1gQYeI,"The app used to perfectly work before the new update. Now it needs internet connection to work and even if it's working, I can still use the applications. Please remove the bugs I procrastinated too much today 😭😭😭",1,0,4.11.1,2019-11-20 18:39:01,"Hi, +Could you please update Forest to the latest version (4.11.4) and see if it solves the problem? Thank you.",2019-12-01 15:22:34,most_relevant,cc.forestapp +Quinn Johnson,https://lh3.googleusercontent.com/-eXAT-uYFPZA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNH0vKsgD40Nm-XZhjqPvQZsa77ZA/photo.jpg,"At first I really enjoyed this app but over time every update to the app has only served to break features, make it more disorganized, and never adding anything new of value just more problems.",1,1,4.12.0,2019-12-13 19:48:43,"Hi, +Is there anything we can help you with? Feel free to contact us at android.support@forestapp.cc specifying the issues you have encountered. We are more than glad to assist you with your focus journey! :) +- Forest",2019-12-27 12:57:01,most_relevant,cc.forestapp +fatema khatun,https://lh3.googleusercontent.com/a-/AOh14Gg7fUIIAzY-VABa8djngQ4_A9fDBgiTTWETY2y7,i can't open the app.it's showing it's not working,1,0,4.13.0,2020-02-05 17:43:51,"Hi, +We have relayed this issue to our developer team and we are working on it. Sorry for any inconvenience caused. Please update the app as soon as a new version is out as this issue may be fixed there.",2020-02-05 18:09:56,most_relevant,cc.forestapp +alina ariffin,https://lh3.googleusercontent.com/a-/AOh14Gh_IslQAEt7CFOWfockVERY2zgKAjLEAMPjFnqc69M,This app concept and idea is really good but it does not work well. I paid already but it does not function. I even ask the pic(person in charge) but she took forever to reply,1,1,4.11.1,2019-11-15 13:44:18,,,most_relevant,cc.forestapp +Tiffany Ann Lo,https://lh3.googleusercontent.com/a-/AOh14Gh-2nojiL3mnl1OVQnUpNFspO4HrrQY2kUe0IKSGw,"It doesn't notify me when the time is up, unless I open my phone and check it voluntary. This totally defeats the purpose of me not having to open my phone when I don't need to. Hope you guys could fix this issue.",1,1,4.11.4,2019-12-03 01:44:33,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problem to android.support@forestapp.cc? We will investigate the problem further. +- Forest",2019-12-27 13:31:09,most_relevant,cc.forestapp +Lawrence s,https://lh3.googleusercontent.com/-07S8jMZgYHA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN2Lmi5ig9B2ueSYls42yG8rcqwMg/photo.jpg,"The privacy policy is just ludacris. Especially that all personal and private data (vids + pics and the rest) is also collected for the appmakers own ""interests"". 😳😳😳",1,0,4.12.2,2020-01-14 09:44:23,"Hi, +User's privacy matters significantly to us. Most permissions required or suggested by Forest are for the app to run properly and detect usage of the device. +If you still have concerns, please contact us at android.support@forestapp.cc. +- Forest",2020-01-15 13:32:28,most_relevant,cc.forestapp +judi abott,https://lh3.googleusercontent.com/a-/AOh14GhQ9m9w19Qe1Kc7FzLfVTGf3sIkd6pLJPcGM9Bl,I can't activate notification for complete focus time,1,0,4.15.0,2020-04-02 12:24:53,"Hi there, some of our Forest Friends may mute their phone while studying or working. Therefore, may you help us check if you drop into this little trap. Feel free to let us know if the problem remains. Have a great week ahead! - Forest",2020-04-06 18:58:00,most_relevant,cc.forestapp +Hyder Ali,https://lh3.googleusercontent.com/a-/AOh14GhsRvw0RAys847MkK6VdkeXYMEOt4Z5jOtHYsGBvA,Real tress can be planted using paid version of the app... So why should I download this free fake version?,1,0,4.14.2,2020-03-12 10:43:16,"Hello, +Allow us to explain why the difference exists: +First of all, most Android users aren't used to spending money on apps. Secondly, Android apps can be cracked and distributed easily. If we made Forest a paid app, many pirated versions would be found in the store. +We hope this explanation helps. Thank you for your feedback. - Forest",2020-03-14 05:16:10,most_relevant,cc.forestapp +Elif Zehra Pelitli,https://lh3.googleusercontent.com/-9wu_Tl4G5sE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM0wFaEk5I-22n4v-TnBe4fC0oYTw/photo.jpg,"It didn't let me watch the video to double the coins, and it said i reached the limit of watching an ad for doubling the coins even though I couldn't watch any ads and didn't get my doubled coins at the end.",1,0,4.12.2,2019-12-20 18:14:40,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problem to android.support@forestapp.cc? We will investigate the problem further. +- Forest",2019-12-27 12:30:00,most_relevant,cc.forestapp +ABHAY KUMAR,https://lh3.googleusercontent.com/a-/AOh14GjVturRkoevUKwtxkVUX0Gcax6b6JQjpgR6aB9a,"it shows adds which kills my time. i mean , this app does not serve its purpose.",1,0,4.15.0,2020-04-06 01:58:33,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problem to android.support@forestapp.cc? We will investigate the problem further. +- Forest",2020-04-06 18:19:59,newest,cc.forestapp +Khan Ashraf,https://lh3.googleusercontent.com/a-/AOh14GhsNmWsEI0HWe_QfsWmF1lnli0anCfVihYyQ60s,waste of time,1,0,4.15.0,2020-04-05 21:48:38,"Hi, +Forest aims to help users stay focused on what they're doing and beat phone addiction. You'll receive coins for every tree you plant successfully, and you can unlock more tree species or plant real trees on Earth with the coins. +Feel free to let us know if you have further feedback. :) +- Forest",2020-04-06 14:39:36,newest,cc.forestapp +Joie Wong,https://lh3.googleusercontent.com/-rgx92WJY7sk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPQmh1iNK2HwZoUP1D_nFWEfgbHbw/photo.jpg,Went for pro for the whitelist yet i still cant off my phone or visit the internet when i need to,1,0,,2020-04-05 13:54:09,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problem to android.support@forestapp.cc? We will investigate the problem further. +- Forest",2020-04-06 18:25:25,newest,cc.forestapp +Eduardo Munoz,https://lh3.googleusercontent.com/-aB4WmFw4yRs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMnHLAfkv4JtSILLU4Mou5z5CpE-A/photo.jpg,"When group-planting only host's timer starts. Asked friends to purchase the app, however each time we try to plant together and start the timer, only host's countdown begins. The other people in the room get stuck on ""waiting for the host to start..."" message.",1,1,4.15.0,2020-04-05 06:33:27,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problem to android.support@forestapp.cc? We will investigate the problem further. +- Forest",2020-04-06 18:28:59,newest,cc.forestapp +SHOOTER SID,https://lh3.googleusercontent.com/a-/AOh14GgwhNArRQJ3akUn9rlK9va-12JsxBmGDP6yhCSN7A,"FALTU! Required money for everthing, even for sign up. Don't install , waste of time.",1,0,,2020-04-05 02:53:15,"Hi, +By purchasing the Pro version, you can plant real trees on Earth, create an account and save your data, customize your whitelist, manage your own tags and view the detailed statistics of your time distribution, track your daily phone usage, plant, share and compete with friends, unlock achievements, and earn extra rewards! -Forest",2020-04-06 18:30:01,newest,cc.forestapp +Gimantha Athukorala,https://lh3.googleusercontent.com/-K93fW9V5y1k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMeJd628R27RrowQG6wd8Rh0zvJDg/photo.jpg,Good,1,0,4.15.0,2020-04-03 21:20:02,,,newest,cc.forestapp +udin eno,https://lh3.googleusercontent.com/-sql3loL8XM8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN21R8bFLMI1Dfrs86h6zeJcxiPMA/photo.jpg,Don't bother downloading because even whitelisting requires payment And its all separated payment so this app just want to grab money. Trash.,1,0,,2020-04-03 13:04:29,"Hi, +By purchasing the Pro version, you can plant real trees on Earth, create an account and save your data, customize your whitelist, manage your own tags and view the detailed statistics of your time distribution, track your daily phone usage, plant, share and compete with friends, unlock achievements, and earn extra rewards! -Forest",2020-04-06 18:45:44,newest,cc.forestapp +judi abott,https://lh3.googleusercontent.com/a-/AOh14GhQ9m9w19Qe1Kc7FzLfVTGf3sIkd6pLJPcGM9Bl,I can't activate notification for complete focus time,1,0,4.15.0,2020-04-02 12:24:53,"Hi there, some of our Forest Friends may mute their phone while studying or working. Therefore, may you help us check if you drop into this little trap. Feel free to let us know if the problem remains. Have a great week ahead! - Forest",2020-04-06 18:58:00,newest,cc.forestapp +Shaun Fernandez,https://lh3.googleusercontent.com/a-/AOh14Gi9ggcZygifUNApNrq0x1tg4Pco_2a3DVExF54W,This is good app,1,0,4.15.0,2020-04-02 09:15:02,"Hi there, please feel free to let us know the problems. It is our pleasure to make Forest the better platform. - Forest",2020-04-06 18:59:19,newest,cc.forestapp +Kashish Joshi,https://lh3.googleusercontent.com/-mrTx0JsdTwU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOFNddaEYDqy54bf8DZFLMwfgjNlA/photo.jpg,In appropriate app,1,0,,2020-04-02 09:03:41,"Hi there, please feel free to let us know the problems. It is our pleasure to make Forest the better platform. - Forest",2020-04-06 18:59:24,newest,cc.forestapp +Naruchi Uzumaki,https://lh3.googleusercontent.com/a-/AOh14GibH4085cUuo5QgtpnOb6FZUDGv0ZcvtWi55ijr6Q,"This app is amazing but now it just keeeeeps crashing idk why, I tried reinstalling it but it didnt work. Please fix this 😭",1,0,,2020-04-02 08:30:43,"Hi, +Sorry for any inconvenience caused. Please turn off the automatic update in the Samsung app settings for Forest, and reinstall the latest version of Forest from Google Play. Thank you! - Forest",2020-04-06 18:59:59,newest,cc.forestapp +Krishnagiri Revathi,https://lh3.googleusercontent.com/a-/AOh14GgeKWbBV6HHNiO7npLUgE0rL_Wrs4QeroYaxeqoow,This app doesnt open at all.,1,0,,2020-04-01 20:37:00,"Hi, +The Vivo system has an error by downloading the correct app version. Please turn off the automatic update in the Vivo app settings for Forest, and reinstall the latest version of Forest from Google Play. Thank you! - Forest",2020-04-06 19:01:52,newest,cc.forestapp +Mandira Gupta,https://lh3.googleusercontent.com/a-/AOh14GinoaATVDPE6ywPnNczZLrBEMjZsAmllPfOX0TUEQ,Keeps crashing...pathetic,1,0,,2020-04-01 07:05:29,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problem to android.support@forestapp.cc? We will investigate the problem further. +- Forest",2020-04-06 19:05:23,newest,cc.forestapp +Berivan A,https://lh3.googleusercontent.com/-hqv6Q7lRRDE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNhqb4lpPIBmplsdhfb1TaVDeiaPA/photo.jpg,Good,1,0,4.15.0,2020-04-01 06:35:42,"Hi there, please feel free to let us know the problems. It is our pleasure to make Forest the better platform. - Forest",2020-04-06 19:06:27,newest,cc.forestapp +simon,https://lh3.googleusercontent.com/-cPPEnW1e07I/AAAAAAAAAAI/AAAAAAAAAac/AAKWJJPHTIJedKhV5J7snBYrnESS0aQUFw/photo.jpg,I have purchased pro version. I plant a tree for an hour and come after an hour to see the forest destroyed. It has happened more than 3 times. I even left the phone on the app itself. Kindly fix this. When you don't get to see the reward after 3 hours of productive time it really gets irritating and makes me think why did I even purchase this app. Kindly help.,1,42,4.15.0,2020-04-01 03:31:25,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problem to android.support@forestapp.cc? We will investigate the problem further. +- Forest",2020-04-06 19:07:28,newest,cc.forestapp +anupam patro,https://lh3.googleusercontent.com/a-/AOh14GiOINkT08pSZKeky-ld4ylkDnctM8AMGGvNM6lsIA,Sometimes app keeps on crashing.....and i have to reinstall to get it back,1,0,,2020-03-31 06:39:16,,,newest,cc.forestapp +Carolina Barrera,https://lh3.googleusercontent.com/a-/AOh14Ghx1j4NIBvuAyC73UFwUqKaIr71qEPgDNPoY5op,Quiero cancelar mi suscripción porque pensé que sólo se pagaba de una vez y de contado pero me la están cobrando mensualmente en 24 cuotas que no acepté. No hay información sobre cómo darse de baja??,1,0,,2020-03-31 05:09:24,,,newest,cc.forestapp +yaseen javad,https://lh3.googleusercontent.com/a-/AOh14GgoNThsgWtYpz4BQB4G1z_z08PT0Wh-I_5k-gac,It keeps crashing!!!,1,0,,2020-03-30 08:09:15,,,newest,cc.forestapp +Jing Ren Lim,https://lh3.googleusercontent.com/-AUlpqwSkDNs/AAAAAAAAAAI/AAAAAAAAALY/AAKWJJMCDQjsNiZFbnW5nsY9AB4LbbVCaA/photo.jpg,I cant uninstall this completely.There is this package installer uninstalling forest for days and still running.I am using samsung s8 if that helps.,1,0,,2020-03-30 06:05:14,,,newest,cc.forestapp +APNA STUDIO,https://lh3.googleusercontent.com/a-/AOh14Gg7Y-8QwBuzego_uDbYWs8freIdimaqGmeWdvGDIg,"Worst , battery consuming app",1,0,4.9.6,2020-03-30 04:46:13,,,newest,cc.forestapp +Nitin Dighe,https://lh3.googleusercontent.com/a-/AOh14GjEGHhAMRhtTSoCIKJh5zMkXGdlSjXVbUjYXiHEmA,This app keep on crashing in my device. Fedup of this app.,1,0,4.15.0,2020-03-29 21:00:10,,,newest,cc.forestapp +amira ayad,https://lh3.googleusercontent.com/-P_X5sB-nbN8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO4-wJO3HbIgdXQWGxLoPTN2N0cvA/photo.jpg,This app isn't even that good I downloaded it and i feel like it kinda threatens people with tree and says if you leave your wasting a tree we aren't even helping a tree it is just a silly app.,1,0,,2020-03-29 17:57:35,,,newest,cc.forestapp +rae- sun,https://lh3.googleusercontent.com/a-/AOh14GjaMVkGJW1t6ozkgQoOuwwTra4pZ67fZ-3ArrCUpw,App does not work.,1,0,4.15.0,2020-03-29 16:34:11,,,newest,cc.forestapp +bangtan rocks,https://lh3.googleusercontent.com/a-/AOh14GiW4CDrnsOWgYRCwM_s_EzK13hLWgyRuK5siQu7,Only paid one is good.. otherwise not so useful -_-,1,0,,2020-03-29 14:46:33,,,newest,cc.forestapp +Lévi Ackermàn,https://lh3.googleusercontent.com/a-/AOh14GjMn-1hrvzNB7uSxtsFDrKHY2qijhe1_R1Gibu5VQ,Ok,1,0,4.15.0,2020-03-29 14:34:58,,,newest,cc.forestapp +Narahari P,https://lh3.googleusercontent.com/-4-50NKtbpq0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNz9VKIpbW8kTlfexASo1HnoQ1IRw/photo.jpg,I can't download this app😤😰😭😩😖😞😿🙀😤😠😡😵😳,1,0,,2020-03-29 14:08:31,,,newest,cc.forestapp +Adrian Casaña,https://lh3.googleusercontent.com/a-/AOh14GjMvb-Yck1jCWtzD_c5b03czKA1H8ZWZOIQ0_A6IQ,"1) Tips on how to study efficiently and effectively. 2) Before planting a tree, add a button wherein you should finalize the tag that is set. 3) If the tag is changed DURING the planting process, it should reflect separately the time spent by the previous tag as well as that of the new tag so that the overall distribution is at its peak accuracy. Will put 5 stars afterwards.",1,1,4.15.0,2020-03-28 12:51:45,,,newest,cc.forestapp +Maryam Shams,https://lh3.googleusercontent.com/-9A8cg63t3lg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNTbtnC9AdunbQzUvr7KA5MvLQvhQ/photo.jpg,"I had paid once for this app and had login to it. Now i have another mobile and want to use my acount on this device, but this app asket to pay first before login. Should i pay each time i change my device?",1,0,4.15.0,2020-03-28 10:16:42,,,newest,cc.forestapp +Far zana,https://lh3.googleusercontent.com/a-/AOh14Gg0rUustvhxyaYzONOJXBN4y8OWR_GMttoRE0_Xag,"At first, it was great then the second time i used it. It didnt work. So yeah. Too bad. Because it really did work and give me motivation to do my work.",1,0,,2020-03-27 13:49:36,,,newest,cc.forestapp +dylan lobo,https://lh3.googleusercontent.com/a-/AOh14GgqJebDdEGD16p_fQOvOEOhOWAalRbF5PjhF_FhTw,You should probably let us view our monthly and yearly progress without premium,1,0,,2020-03-27 09:29:05,,,newest,cc.forestapp +tanu yaduvanshi,https://lh3.googleusercontent.com/-eZJyQ8i179o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN1TVbMQYkNB27kMywmW3_l-Xs49A/photo.jpg,My app keeps stopping and then I loose my points.,1,0,4.15.0,2020-03-27 04:16:08,,,newest,cc.forestapp +Kalpana Singh,https://lh3.googleusercontent.com/a-/AOh14GjNU0AFZ0p3WZWn4M70_ttVv7YyaeASDEpJ39uh,The old version was good and interesting but in the latest version it needs money for unlocking each and everything,1,1,4.15.0,2020-03-26 17:44:21,,,newest,cc.forestapp +Siddharth Kolte,https://lh3.googleusercontent.com/a-/AOh14GgwrELhlacKf6nZsprfgFVAIXgTDhBR7LO4SRul8A,"Not working in Samsung phones , though I bought a premium app",1,1,,2020-03-26 12:55:17,,,newest,cc.forestapp +lovaraju P,https://lh3.googleusercontent.com/a-/AOh14GiGD1fLrMdLUWwCj7HIjoMvb05_4QAVzPa6Rc3uqDg,Nice,1,0,4.14.3,2020-03-26 07:45:24,,,newest,cc.forestapp +Zaid cxhdfs,https://lh3.googleusercontent.com/-RlnMqSATBPw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOLLdTnrBuFHPPcX9cB-FZmITDI3Q/photo.jpg,I am on a Sony Xperia Xz premium Android 8.0.0 and the app when I move out of the app and use others does not wither the try thus spoiling the point. Yes all my notifications and permissions are on. Please help so I can actually have incentive growing the forest. There is no crisis notification when I move out of it or onto other apps.,1,1,4.15.0,2020-03-25 11:48:46,,,newest,cc.forestapp +Trần Phú Nguyễn,https://lh3.googleusercontent.com/a-/AOh14Ghtofr6xmrRy4N54hkIkgQFgGWidRZBz9Pxr6im,"I can't upgrade to pro version. Anytime I hit the Unlock button, the app will say ""some error happened (6). Please try again later.""",1,1,4.15.0,2020-03-25 04:38:42,,,newest,cc.forestapp +Václav Pavlíček,https://lh3.googleusercontent.com/a-/AOh14GiUR35LGUOswfe1GmJ-rnKqqF8On1TG5p9WtMZznOE,"Synchronization does not work since last update with Chrome extension. I think in year 2020 when there are services such as Firebase this should be normal, however, it is not.",1,1,4.14.3,2020-03-24 09:34:59,,,newest,cc.forestapp +samad king07,https://lh3.googleusercontent.com/a-/AOh14GiWb4vHEGG2kti1xeWAGiFUd5P3EQxPWWn_tbp5,Nnuj,1,0,,2020-03-24 08:14:09,,,newest,cc.forestapp +Seenaja P,https://lh3.googleusercontent.com/-qm7sE4CFJz4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNN4pvEwEa48-cMpb5AoT37jSVYBw/photo.jpg,Good,1,0,,2020-03-23 18:27:36,,,newest,cc.forestapp +Urvashi Kolhe,https://lh3.googleusercontent.com/-qLl35Bb2bjs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPKKPdcDpQuCzdkwGpmadVlwbxJQw/photo.jpg,"It is not opening after the update. When I click on it, it says forest keeps stopping",1,0,,2020-03-23 11:42:37,,,newest,cc.forestapp +Sharanya Ms,https://lh3.googleusercontent.com/-IkR_kEKwlhQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOeF_cItayUCLlyboYVDvF6bE6bNw/photo.jpg,its isnt responding . it wont work,1,0,4.14.3,2020-03-23 06:28:07,,,newest,cc.forestapp +Ammar GG,https://lh3.googleusercontent.com/a-/AOh14GjyHQzCfxw_na03yEk2YLipaJGyra0pdtSFA27g,it's not good for you when u r busy self distancing lmfao,1,0,4.14.3,2020-03-22 16:12:46,,,newest,cc.forestapp +Saral Prakash Srivastava,https://lh3.googleusercontent.com/a-/AOh14GigOmsoMbFuM0yrmLxQ_Iv3D252oxG4Ex-j1AnLOw,Worst app. It crashes Everytime u click on it. What to do All my seeds will be gone if I uninstall it. But this isn't my prob so why should I pay for it. FIX IT. I WANT MY FOREST BACK!!!!!!!!!!!,1,0,,2020-03-21 05:32:04,,,newest,cc.forestapp +Taylor Tee Hung Piao,https://lh3.googleusercontent.com/a-/AOh14GjCgjvHFBmaFgvW_5MUQv87L7eh0a2dYkB18C_0_w,I used to love this app but it always crashes. Now I can't even open this app.,1,0,4.8.6,2020-03-20 14:18:01,"Hi there, please update to our latest version (4.15.0). We have fixed some problems. If the problem still remains, please contact us via our in-app feedback system! Thank you and sorry for the inconvenience. - Forest",2020-04-06 14:00:35,newest,cc.forestapp +Ling Hua Chai,https://lh3.googleusercontent.com/-toMREuh8RFM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPUGOauBF_PJwcf-neKDfN7KSNAxg/photo.jpg,"sometimes it doesnt count the money inside I felt so frustrated, because my effort doesn't convert into money",1,0,,2020-03-20 07:46:11,,,newest,cc.forestapp +hey itsHope,https://lh3.googleusercontent.com/-wwIMLCZ1pWE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOfjcuOpp6SudhQdy7H1ZIJnbGhhw/photo.jpg,I dont understand anything,1,0,,2020-03-19 21:06:14,"Hi there, +Is there anything I can assist you?",2020-04-06 14:04:15,newest,cc.forestapp +Anand Dixit,https://lh3.googleusercontent.com/a-/AOh14GhPJ_baCTtZFA3YTzaFMeTZ0B-TpchYJJY5P7PHrZc,Not able to go for pro as the Japanese page pops up and i am not understanding anything.,1,0,,2020-03-19 09:41:17,,,newest,cc.forestapp +T.A. Peace,https://lh3.googleusercontent.com/a-/AOh14GgSa900XfMI5tpT8bQ1_txt24zUp-5VH1gvGGs_sQ,Imo this app is completely useless and you are better off locking yourself in a room with a clock. The whole forest aspect is a scam and all the trees are super tedious to obtain depending on one's study needs. And to pay premium to plnt real trees is a feel good way to buyg their product and it takes 3 days of studying to plant a tree. Yes I paid premium. I use ecosia and I planted over 400 trees web surfing. The sounds are useless too as you can get tons of sounds on other app effortlessly.,1,0,,2020-03-18 23:08:19,,,newest,cc.forestapp +Surekha Mahajan,https://lh3.googleusercontent.com/-vrYKkBtZYYc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMk_pjMccCgfaonN3rCbVAML6sqhQ/photo.jpg,Nise,1,0,,2020-03-18 10:17:01,,,newest,cc.forestapp +Rhea Steensma,https://lh3.googleusercontent.com/a-/AOh14GhjMG01uUlzyg6aXd0-OY8OP6NOJHHDlklB_W_C9Q,"I love this app, but why does the timer not seem to support landscape mode? Give stars otherwise 💪",1,0,4.14.3,2020-03-18 10:13:54,"Hello, +Thank you for your feedback. We will forward your suggestion to our team.",2020-04-06 13:56:17,newest,cc.forestapp +malay nash,https://lh3.googleusercontent.com/a-/AOh14GiOBnKU_iMX0KhYsaA4cmWelzh-2fI5eJIIsJQc,"Cool concept, but sync doesn't work, and the desktop add-on is half baked. I wish the developer would be responsive to my emails as well.",1,0,4.14.3,2020-03-17 23:10:35,"Please contact us via our in-app feedback system! To visit our in-app feedback system, please go to Settings and enter our FAQ first. Once there, please tap on the top-right icon and you should be able to contact us. Thank you and sorry for the inconvenience.",2020-04-06 13:52:43,newest,cc.forestapp +Ahiya Ahmed,https://lh3.googleusercontent.com/-lkTWCJQ7_gE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNgr65n2sOcudFaz7nblbXkCkUfmA/photo.jpg,I hate to say but ur app sucks. It automatically stops and deletes a tree or seed score. It hangs and Even crashes so many times. I can't even contact you for support. I spend 600 s from 1146 s left with 546 which got automatically deducted to 200. I mean how on Earth this is happening.,1,0,4.14.2,2020-03-17 15:25:08,"Please contact us via our in-app feedback system or please send the details or the screenshots of the problem to android.support@forestapp.cc. We will investigate the problem further. +- Forest",2020-04-06 13:50:26,newest,cc.forestapp +Nikolaus Tobian,https://lh3.googleusercontent.com/a-/AOh14GhCnSaydDCP0fikhNs-fs6F-Yyf8VkjKdINI077Bg,"Updated to android 10, makes this app could allow me to go to other app. Pls fix this bug",1,0,4.14.3,2020-03-16 15:40:17,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2019-12-27 13:26:53,newest,cc.forestapp +Shraddha Kashyap,https://lh3.googleusercontent.com/a-/AOh14Gjdlivkc8UOnnHRZuHgntmvRjM2sBRhvQnFre24,I downloaded the app and it worked fine only once....the second time I tried to open the app....it stops by itself.... I tired uninstalling and installing again.....the same thing happened again.... this is the 4th time I had installed the app....it worked fine once and again has just stopped working.....it wont even open.,1,0,,2020-03-16 11:22:57,Please contact us via our in-app feedback system to enable solve the problems efficiently! Thank you and sorry for the inconvenience. - Forest,2020-04-06 13:40:29,newest,cc.forestapp +Aanchal Dutta,https://lh3.googleusercontent.com/a-/AOh14Gjt1m1uLY-beEtuo-ezkHmZp62yavtw-q-lNI6yvQ,The app suddenly stops working on my phone,1,0,,2020-03-16 05:49:15,Please contact us via our in-app feedback system to enable solve the problems efficiently! Thank you and sorry for the inconvenience. - Forest,2020-04-06 13:38:22,newest,cc.forestapp +upeksha Situbandara.,https://lh3.googleusercontent.com/-wbpWsGF6nEk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN8DcL_Yzr981qKG2X91fdEFoVa6g/photo.jpg,Very productive app,1,0,4.14.2,2020-03-15 14:08:42,,,newest,cc.forestapp +Giả Bảo Ngọc,https://lh3.googleusercontent.com/a-/AOh14GiqbdQSH1azhli2du5kI21jyu7WpKk8k1X8eSOe,Kicks me out everytime i use it. Now i regret installing the new version. I also don't want to uninstall as I don't think I have backup. Help?,1,0,4.14.2,2020-03-15 11:46:13,,,newest,cc.forestapp +sonia dang,https://lh3.googleusercontent.com/-lZWvY4xMNOk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMVp-Fp1APtxr5QpoTalYTRZIvdMQ/photo.jpg,The app crashed when i raised the time limit to 3 hrs and listened to the forest sound while studying. After that i wasn't even able to open the app again. Need assistance Dev.,1,0,,2020-03-14 15:12:24,,,newest,cc.forestapp +Prasanna Vedantha Desikan,https://lh3.googleusercontent.com/a-/AOh14GjxvUv9QAAvpe4ruTvbO_jpFuj7kXaXojjZGKEiK6A,It would be better to add a comment on what exactly the time spent for every time we turn the timer on. Now it crash and never open in my new Samsung galaxy S10 lite. Uninstalling it......,1,0,4.14.2,2020-03-14 03:22:56,"Hi, +Sorry for any inconvenience caused. Please turn off the automatic update in the Samsung app settings for Forest, and reinstall the latest version of Forest from Google Play. Thank you! - Forest",2020-03-14 04:30:18,newest,cc.forestapp +Rahul Niranjan,https://lh3.googleusercontent.com/-OdrWgzdO0k0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOTHjv-t_7Wd3946QR-i1xEhoib0A/photo.jpg,It's so nice & very productive,1,0,,2020-03-13 09:55:19,"Hi, +Thank you for the rating! Don't hesitate to give us a positive review if you enjoy the app. :) +- Forest",2020-03-14 04:45:31,newest,cc.forestapp +D Ryandi,https://lh3.googleusercontent.com/a-/AOh14GjNLASO6l2DzgCwRJT4ETJnknwo-z1bRD3JwSV0aw,"I just buy the premium but, the app always crashed can't be open",1,0,,2020-03-13 03:41:12,"Hi, +The Vivo system has an error by downloading the correct app version. Please turn off the automatic update in the Vivo app settings for Forest, and reinstall the latest version of Forest from Google Play. Thank you! - Forest",2020-03-14 04:48:28,newest,cc.forestapp +Favour Nduagu,https://lh3.googleusercontent.com/-kPbebhHPJEk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNeSljgpgiF164sXrKR-mZSsTPEkw/photo.jpg,My tree dies without me leaving the app ever since the new update,1,0,4.14.2,2020-03-12 21:59:05,Please contact us via our in-app feedback system to enable solve the problems efficiently! Thank you and sorry for the inconvenience. - Forest,2020-03-14 05:02:00,newest,cc.forestapp +Hyder Ali,https://lh3.googleusercontent.com/a-/AOh14GhsRvw0RAys847MkK6VdkeXYMEOt4Z5jOtHYsGBvA,Real tress can be planted using paid version of the app... So why should I download this free fake version?,1,0,4.14.2,2020-03-12 10:43:16,"Hello, +Allow us to explain why the difference exists: +First of all, most Android users aren't used to spending money on apps. Secondly, Android apps can be cracked and distributed easily. If we made Forest a paid app, many pirated versions would be found in the store. +We hope this explanation helps. Thank you for your feedback. - Forest",2020-03-14 05:16:10,newest,cc.forestapp +Oas Goel,https://lh3.googleusercontent.com/a-/AOh14GjW4-uR9kp5qggaoi13dRgcUmkPluCp1uD0b3pZPg,Drains a heck lot of battery,1,0,,2020-03-12 06:04:07,"Hi, +Thank you for your feedback. - Forest",2020-03-14 05:26:16,newest,cc.forestapp +Hannah Marie,https://lh3.googleusercontent.com/a-/AOh14GjyYjYGugA_RJLMihNDzlrbY9pQoHKUl6CTBNX4,used it once and cant use it again cus it crashes,1,0,,2020-03-11 13:05:03,"Hi, +The Vivo system has an error in downloading the correct app version. Please turn off the automatic update in the Vivo app settings for Forest, and reinstall the latest version of Forest from Google Play. Thank you! - Forest",2020-03-11 14:09:55,newest,cc.forestapp +Shashvat Baghel,https://lh3.googleusercontent.com/a-/AOh14Gh75TSpUIlS9nPVowriiPa7aHhy7yWoW1Hz0uOo,Very laggy,1,0,,2020-03-11 10:43:45,"Hi, please feel free to let us know the problems inside the Forest app. It is our pleasure to provide our users with a better platform. - Forest",2020-03-11 14:12:02,newest,cc.forestapp +divyapatel arts,https://lh3.googleusercontent.com/a-/AOh14GgQ8_GCLJQjW63ewgt5bS9F0P8FUW7P7scxZ1rC,Good,1,0,4.14.2,2020-03-11 04:50:04,"Hi, please feel free to let us know the problems inside the Forest app. It is our pleasure to provide our users with a better platform. - Forest",2020-03-11 14:12:07,newest,cc.forestapp +akaheadlesschicken,https://lh3.googleusercontent.com/-2a1yQv1g250/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNnYyZuAoL7Sr3QBKOq8sxPtkldqw/photo.jpg,"This is a really smart way to keep you off your phone and motivated to work. And I would love to use this app all day everyday but it needs a pause button desperately. Life is full of things that pop up out the blue and in its current state you loose all progress or get rewarded for doing nothing. Please, please, please add an optional pause button. There are already a bunch of optional thing to tweak it please add this. I would go Pro in a heart beat and it would become my top app.",1,32,4.14.2,2020-03-11 00:24:18,"Hi, +Thank you for the suggestion! We'll let our team know about your feedback and see if we can work on it in the future. 💪- Forest",2020-03-11 14:15:12,newest,cc.forestapp +Alex Nguyen,https://lh3.googleusercontent.com/a-/AOh14Gie0NCSHoK9Ppsg5FBxUhrPSeBSClAHYbfSb2g3c2c,"It's useful. I wasn't sure how good it'd be at keeping me focused, but it really does help--and it shows me how much I use my phone. Also, the gardens are quite pretty. I would like more realistic varieties of plants and for it to not be so expensive to plant real trees, though. Seems fitting to be able to plant trees in real life with every tree you plant. I'd be much more willing to recommend this app to people if I could plant a real tree with every full tree I plant in the app.",1,33,4.14.2,2020-03-11 00:08:42,"Hi, +Since the cost of planting real trees is covered by the company, complications might arise when users plant too many real trees; the cost can also easily exceed the app's revenue. Therefore, the price to plant a real tree requires a certain amount of focus time to reach. You can gain coins faster by unlocking achievements. :) +- Forest",2020-01-28 17:45:55,newest,cc.forestapp +Añîmésh Güptã,https://lh3.googleusercontent.com/-hxY8Ie3JNVU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMc012lyJl7bCGJIWXzbSL5WMrPtA/photo.jpg,Y Bhko,1,0,4.14.2,2020-03-10 12:17:31,"Hi, please feel free to let us know the problems inside the Forest app. It is our pleasure to provide our users with a better platform. - Forest",2020-03-11 15:08:05,newest,cc.forestapp +Luka Supukovic,https://lh3.googleusercontent.com/-ZcmzkNqfG2c/AAAAAAAAAAI/AAAAAAAAAOw/AAKWJJMi1uQ7RohW-Qu6UKZoAkUgwTLVEA/photo.jpg,The timer doesn't work while screen is off. I do not get any notifications that timer is up.,1,0,3.18.2,2020-03-09 15:23:44,"Hi there, we are sorry for the inconvenience. We only have the notification bumps out when the tree is well-planted by far. Here is a suggestion for you. You can use the alarm app on your phone instead. Hope it will work. Have a nice day! -Forest",2020-03-14 05:35:54,newest,cc.forestapp +snowy jay,https://lh3.googleusercontent.com/a-/AOh14GjLkMBW-xV0GxIqLI1oElxhliCXZslWlJWAjW9Y,This sucks I thought u could plant trees by just playing it and spending you're time on it but nohh you need to pay for it I'm not saying for you to change it but it just sucks,1,0,4.14.1,2020-03-08 10:00:26,,,newest,cc.forestapp +Ira Mepani,https://lh3.googleusercontent.com/-VhGidH8lf8s/AAAAAAAAAAI/AAAAAAAAHi8/AAKWJJOM3oCaMMD0ylWBfw6vR6DOfAHarw/photo.jpg,I am a premiun user. Installed it yesterday. It refuses to open now and i feel like i have wasted my money.,1,0,,2020-03-08 05:01:15,,,newest,cc.forestapp +Chirag Patel,https://lh3.googleusercontent.com/a-/AOh14GhQwdXLzw_paYuvWKQg7lsIQhsW1qz0HWASPpgjQWs,"I purchased the pro version in my motorola g5 plus , than uninstalled it, now I can't even get that purchase back! I understand it happening between two different devices, but I'm still using same device. Please help with it",1,1,4.14.1,2020-03-05 16:53:11,"Hi, +Please make sure you're logged in to your Google Play with only the Google account you originally used to install Forest, then go to the ""Pro Version"" in the Settings page, and your Pro upgrade should be restored automatically, which will then enable you to log in. +If the issue remains, please email us at android.support@forestapp.cc. +- Forest",2020-03-14 05:29:22,newest,cc.forestapp +Ojaswee Kesharwanee,https://lh3.googleusercontent.com/a-/AOh14Gir8ZWvzss2_V9PHPlgc1Fz4EYSF1XnWd0NMq_Aqw,"Despite having given all the access required, it just doesn't work. Wanted to use the app but just couldn't because the tree doesn't die and it doesn't stop me from using other apps. So the purpose is defeated. Uninstalling sadly.",1,3,4.14.1,2020-03-05 09:11:09,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2020-03-14 05:30:48,newest,cc.forestapp +Esther Molina,https://lh3.googleusercontent.com/a-/AOh14GhlQ3zRyeWtZLpQPaUcLWSaWv5UaNQojk3dcq1n0K0,"I paid for the pro version and next day the data disappeared. I installed the app again and it is no pro any more and the coins and trees had disappeared. Can you please fix that? I did an export of the data and I have it on my msil, but I don't know what to do. Can you please help?",1,0,,2020-03-04 10:12:50,"Please contact us via our in-app feedback system so we can assist you further and see if it's possible to recover your data. :) +- Forest",2020-03-14 05:42:06,newest,cc.forestapp +Karina Kreitzer,https://lh3.googleusercontent.com/a-/AOh14Gghxj7v1WylDSgLPmdvNYa2Iyw8pnDbteLEB7FRXQ,Kept crashing,1,0,,2020-03-04 04:53:44,"Hi, +Sorry for any inconvenience caused. Please turn off the automatic update in the Samsung app settings for Forest, and reinstall the latest version of Forest from Google Play. Thank you! - Forest",2020-03-14 05:49:26,newest,cc.forestapp +Ananya Yadav Agra,https://lh3.googleusercontent.com/-UCcolvLszio/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP-YjLtvqc6paePHUih_Wyp1r9gUA/photo.jpg,Forest store is not working,1,0,4.14.0,2020-03-04 03:32:09,"Hi there, please update to our latest version (4.14.3). We have fixed some problems. If the problem still remains, please contact us via our in-app feedback system! Thank you and sorry for the inconvenience. - Forest",2020-03-17 05:48:26,newest,cc.forestapp +Gagarin Rout,https://lh3.googleusercontent.com/a-/AOh14GhAM8_vmgy2qJL9F7OpLN07R7uBlm-S9S7sqfgbgg,Useless.,1,0,,2020-03-03 02:46:13,,,newest,cc.forestapp +Shiva and Kiran Kurikala,https://lh3.googleusercontent.com/-vBDlcrWzXIQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNGJDabbsFKn_Y-ZccbEgM83xXs0g/photo.jpg,Wff,1,0,4.13.1,2020-03-02 14:41:26,,,newest,cc.forestapp +Rebekah Kruse,https://lh3.googleusercontent.com/a-/AOh14GgeD9gcy1zaGS04iWtjOvteQIe4yBtqWvQPJm1y_Q,"Its a good idea, but an app like this shouldn't lock a whitelist behind a paywall. I've already read the responses from the devs on the other reviews so I understand why it is but that doesn't change my review. I listen to music and use flashcard apps/dictionary apps/art references and my gallery on my phone when doing what I needed this app for. It's useless if it lacks that basic functionality. Will not pay for something that should be included in the free version.",1,0,,2020-03-02 13:57:52,,,newest,cc.forestapp +Anusha Anu,https://lh3.googleusercontent.com/-A3lBBq_KITw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNVe4fMRyAl8jCkD1lJiW9tOEUMdw/photo.jpg,Used to love this app a lot...but in recent times its get crashing on my mobile a lot..disturbing I already send the details to the given gmail id..but my problem is not solved,1,1,,2020-03-02 13:44:20,"Hi, +Vivo phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-02-29 18:07:10,newest,cc.forestapp +Kratika Thakur,https://lh3.googleusercontent.com/a-/AOh14GhtTkO1SqH_TNCe-etnrENK4uc2iW_UzStPhzie,The app keeps crashing.. I paid for the pro version but the problem hasn't resolved,1,0,,2020-03-02 09:23:10,,,newest,cc.forestapp +Bithika Choudhury,https://lh3.googleusercontent.com/-bgyPWOxaj0I/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPxMHKAjNGbAxsbxSUVMmfQTmcyKQ/photo.jpg,Nice,1,0,,2020-03-02 09:03:56,,,newest,cc.forestapp +Rishmika Chandrasena,https://lh3.googleusercontent.com/-bOQABw02ZO4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPeEQCDsVOr_eOrDJgfl021SRufxQ/photo.jpg,Great app ! I love this !!,1,0,4.14.1,2020-03-01 16:32:22,,,newest,cc.forestapp +Kamalkoli Majumdar,https://lh3.googleusercontent.com/a-/AOh14Gg2T5eHWV-dHRdq7SnX5-jCy2bCnrFuWqzVDHkHqw,"Stopped working, is no longer opening on my phone. I had set the timer and left it alone. Terrible",1,0,,2020-03-01 12:43:20,,,newest,cc.forestapp +Tannya Seth,https://lh3.googleusercontent.com/a-/AOh14Giuu5T4pXskoHNp7GDcCH0P4ZrWtqElWIMPM3ZH,App keeps crashing,1,0,,2020-02-29 14:27:37,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problem to android.support@forestapp.cc? We will investigate the problem further. +- Forest",2020-02-29 17:56:37,newest,cc.forestapp +Martin Cueto,https://lh3.googleusercontent.com/a-/AOh14Gid2SfmEoHYYF8wBg-uS6TJ2khEFjahY6o_4IfxBho,The tree store does not work.... Please fix Other than that great app does what it intends to do.,1,0,4.14.0,2020-02-29 14:16:17,"Hi, +Sorry to hear about the trouble. Our support engineers are currently working on this issue and we shall fix it ASAP. +For further assistance, contact our customer support at android.support@forestapp.cc :) +- Forest",2020-02-29 17:59:21,newest,cc.forestapp +Talking Shiv,https://lh3.googleusercontent.com/a-/AOh14Gi_SnbCD0aZj5QF8hurd_pSWFmBXXXlsgHnMC-tPw,I bought pro version and paid twice. Still haven't been delivered the pro features.,1,0,4.14.1,2020-02-29 12:58:23,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problem to android.support@forestapp.cc? We will investigate the problem further. +- Forest",2020-02-29 18:00:05,newest,cc.forestapp +shrikant patil,https://lh3.googleusercontent.com/-6AvQzeo40l8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNANi70mRrDrpLMJ-K0880uykbZcA/photo.jpg,This app keeps stopping everytime i have to reinstall it to use though i have pro version and the problem still persists even i have coomplained about this long before,1,0,,2020-02-28 18:49:20,"Hi, +That doesn't sound good! Please get in touch with our support team for further assistance regarding this issue: android.support@forestapp.cc +Thank you in advance for your support! +- Forest",2020-02-29 18:36:57,newest,cc.forestapp +Mwape,https://lh3.googleusercontent.com/a-/AOh14Ggxk2b1810qTh80QyZQGofEYWSrhP_TQ76OcD-z418,"When I first downloaded the app it worked seamlessly, but once I upgraded to the Pro version it began to lag and slow down. I can't access my timeline, store or achievements anymore and it's slow run time is making the app so tedious to use. It's becoming an awful app for me",1,5,4.14.0,2020-02-28 16:30:08,"Hi, +Sorry to hear about the trouble. Our support engineers are currently working on this issue and we shall fix it ASAP. +For further assistance, contact our customer support at android.support@forestapp.cc :) +- Forest",2020-02-29 18:15:47,newest,cc.forestapp +Anil Indoriya,https://lh3.googleusercontent.com/a-/AOh14GgNPg65nq6pUa3V3HQyVGfApXovE3JJvHMlY5pMlQ,Some time it's automatic stopped and not work properly,1,0,,2020-02-28 16:18:58,"Hi, +Realme phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-02-29 18:16:05,newest,cc.forestapp +전시현,https://lh3.googleusercontent.com/a-/AOh14GhyyN38RH7BpikMkxJxbcJFfUQ_vKSYyMLyAl-u,"I don't understand why do I have to turn on the screen when I grow up the tree. When my screen turns off because of inactivity for 10 minutes, tree dies again. I installed this app to focus on my work (not my phone) but this app keeps requiring me to turn on the phone. It's paradoxical..",1,0,,2020-02-28 05:56:10,"Hi, +That doesn't sound good! Please get in touch with our support team for further assistance regarding this issue: android.support@forestapp.cc +Thank you in advance for your support! +- Forest",2020-02-29 18:16:29,newest,cc.forestapp +Amritha Sundar,https://lh3.googleusercontent.com/a-/AOh14GgxwsMTpJnYgu88M1KnYggLPEBHbLDpSdV9CojrEw,I used to use it all the time before. But now it just stops working all the time! Even after uninstalling and downloading a billion times.,1,0,4.10.4,2020-02-28 03:47:00,"Hi, +Looks like you're on an outdated version of the app. Please update Forest to the latest version (4.14.0) and see if it solves the problem. +If you continue to experience issues, please reach us at android.support@forestapp.cc. Thank you! +- Forest",2020-02-28 15:57:55,newest,cc.forestapp +Joseph Stalin,https://lh3.googleusercontent.com/a-/AOh14GgoiI6a3e-GxA-qbJhjJX6SlieDTpXNSzOnE0rI,"Good concept, but whenever I open the shop it says error code 668. I tryed redownloading and it didn't work.",1,0,4.14.0,2020-02-28 00:29:41,"Hi, +Sorry to hear this is happening. Could you please send us screenshots related to this issue at android.support@forestapp.cc? We’ll fix it asap. Thank you for your patience. +- Forest",2020-02-28 16:04:58,newest,cc.forestapp +SOONGIL PARK,https://lh3.googleusercontent.com/a-/AOh14GhOJs61D1EhEaSphQxZw4MAUQu3P5mpUUZODbeBeg,Confusing,1,0,,2020-02-27 14:49:45,"Hi, +Is there anything we can help you with? Feel free to contact us at android.support@forestapp.cc specifying the issues you have encountered. We are more than glad to assist you with your focus journey! :) +- Forest",2020-02-28 16:13:16,newest,cc.forestapp +labyrinnthine,https://lh3.googleusercontent.com/a-/AOh14GgNYmFtdkPfBBComXbgRtnYeeK2jNRc_XjySz_Mqg,Can't install the app,1,0,,2020-02-27 12:41:39,"Hi, +Sorry for the inconvenience. As app developers, we don't interfere with the downloading process which is dealt by Google Play. Please inquire at the official Google Play for assistance. +- Forest",2020-02-29 18:16:36,newest,cc.forestapp +Chan Jessica,https://lh3.googleusercontent.com/-BfDxLUDZ_DQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPIQiwF5_ZnrNcJIBOv134RSTikaw/photo.jpg,"Sometimes the app couldn't plant the tree, and couldn't help to calculate my study time correctly.",1,0,,2020-02-27 04:54:25,"Hi, +That doesn't sound good! Please get in touch with our support team for further assistance regarding this issue: android.support@forestapp.cc +Thank you in advance for your support! +- Forest",2020-02-29 20:30:13,newest,cc.forestapp +Tushar Pandey,https://lh3.googleusercontent.com/a-/AOh14Gh6mYa96MvsbVladQk-m7RsW4oGld5vR9-wP3yJ5w,can someone tell me why to display a freaking tree on the screen ot requires a 73 megabytes package. Shady AF.,1,0,,2020-02-25 10:51:35,"Hi, +We are sorry that you aren't satisfied with our app. We would love a change to clarify any concerns you have about it. Please feel free to reach us at android.support@forestapp.cc. We're happy to help. +- Forest",2020-02-29 20:37:58,newest,cc.forestapp +Anindya,https://lh3.googleusercontent.com/a-/AOh14Gi6bEdhcGvxpsjFaP1iG2pDe0xMXInL6CVX1v5M-w,"They are greedy as hell, app size and ram management is very poor, won't let you use anything unless u pay for, no trial or anything...",1,0,,2020-02-25 04:20:10,"Hi, +Forest is free to download and use. As independent developers, we don't take any investment from venture capitalist. and thus we have to strive hard for the operation of Forest. To provide better and stable service and for the long-term product plan, we need to put some features in the Pro version. We kindly ask for your understanding. +- Forest",2020-02-29 20:38:51,newest,cc.forestapp +Marty M,https://lh3.googleusercontent.com/-LvDjJVZfN7w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNac_9oBTnFS4NHQXftV-ULSK2Fpw/photo.jpg,"Syncing doesn't work. That was the whole point of upgrading to the Pro version. I log most of my time in the Firefox browser plugin, and it never shows up in the app. I also lost my account. My account wasn't authenticating, so I logged out. When I tried to log back in, it didn't recognize my email (even using Forgot Password). I ended up creating a new account with the same email I know I used before, losing all of my coins. You guys should look into any backend issues with syncing and accounts. Thanks.",2,32,4.14.3,2020-03-24 18:36:37,,,most_relevant,cc.forestapp +Parinidhi Pathak,https://lh3.googleusercontent.com/a-/AOh14Gj7mues0xMxg8JZN0ZHbvXSI1ER6uw9tozRmqRRyg,"This app is causing me a lot of trouble.... whenever I close the app and open it again, the app says that forest isn't working....so I have to delete and download it again and use it 10 times a day.....and also I have paid premium membership. I have an android phone",2,2,4.15.0,2020-03-30 07:36:30,,,most_relevant,cc.forestapp +Satveer K,https://lh3.googleusercontent.com/-EeTLQ6yORoc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO_wl9bEzarvWlDqfhr0kJcZuDaFQ/photo.jpg,"Not sure what the point is when you can still access any app without interrupting your trees as long as you leave this running in the background? Note: the ""lock forest to stay in foreground"" option is selected",2,0,4.15.0,2020-03-26 14:22:21,,,most_relevant,cc.forestapp +Jordan D'Souza,https://lh3.googleusercontent.com/-XL7D498I210/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOLjJlf4i7pVrjrKIQ7DGl5OwW1GA/photo.jpg,"Great app to keep focused but too many glitches as you can tell from other reviews. For me it has crashed in the passed. Currently the problem is that the vibration alarm doesn't come on when I'm done my timer, so it's literally failing at it's secondary job, to keep time of your session (1st job is to keep your phone away from you during your study session). Because of the glitch, I have missed a bus a couple times b/c the timer didn't ring. I am displeased. Also the new updates seem unoriginal",2,0,4.13.0,2020-03-07 21:12:14,,,most_relevant,cc.forestapp +Jashandeep Chadha,https://lh3.googleusercontent.com/a-/AOh14GjG1C1nV7jIlb_A5PUWXeP9GmuWvBe0HPdT3QgMOw,"Update: I did all the steps.. still not working... It is getting frustrating 😓 I really love this app. But off late it just keeps crashing. Can anybody help? Updated: Thanks for the reply! There was no auto update option in my phone settings. So, I have disabled auto update in google play. Will it work?",2,0,4.14.2,2020-03-31 03:47:42,"Hi, +Sorry for any inconvenience caused. Please turn off the automatic update in the Samsung app settings for Forest, and reinstall the latest version of Forest from Google Play. Thank you! - Forest",2020-03-14 05:56:51,most_relevant,cc.forestapp +Ravyn Benson,https://lh3.googleusercontent.com/a-/AOh14GgRtSgNjql0e7kPKMQAGGi-4MdCIc6oomNT0PTpDQ,"It's motivating, but pro mode is a disappointment. Now rather than being able to watch an ad for double coins at the end of a session I earn the same base coins with the option to pay real money for increased coin earning. I already paid for pro mode! And pro mode feels entirely necessary for the white listing feature. Without it even apps like a music player or calculator, that are sometimes required to be used while you are focusing, will kill your tree. I feel ripped off.",2,15,4.13.0,2020-02-06 15:29:00,"Hello, +As independent developers, we don't take any investment from venture capitalist. and thus we have to strive hard for the operation of Forest. In the Pro version, you can still enable ads for rewards in the Settings page. +- Forest",2020-02-08 03:16:25,most_relevant,cc.forestapp +Seth Nielsen,https://lh3.googleusercontent.com/a-/AOh14GhCgytQ9mHMzWOXM1pVgP0ogL3N-uHkGG-e3WHeG-U,"It's an interesting idea, but this app missed some extremely important features, namely: a landscape mode, as well as a custom notification sound. Why? Those are extremely easy features to add! My use case is placing my phone on a stand in landscape mode so I can charge it while at work. I want a custom notification sound at work, and I want to be able to watch the timer go down without the screen stuck in portrait. Also, I keep the screen on, and the app disses me because I have the app open.",2,10,4.13.0,2020-02-08 21:21:43,"Hi, +Thank you for the feedback. You can change the notification sound for Forest in your device settings. We will consider adding support for a horizontal mode. If you have further suggestions or questions, please send us a ticket at android.support@forestapp.cc. +- Forest",2020-02-11 09:18:54,most_relevant,cc.forestapp +Conchúr Ó hÓgáin,https://lh3.googleusercontent.com/a-/AOh14Gic_aHcB7yR_S76Bj72yhZ311PSY05gGxjorRMr,"I really love this app, but I can't find any way to make it work on my new (Huawei Y7) phone! I've followed all the instructions in the FAQ and tutorials online, but my trees still continue to grow regardless of whatever other apps I'm using. I hope this compatibility issue is possible to fix and that it gets fixed soon, because I absolutely love this app otherwise.",2,8,4.13.1,2020-02-25 14:53:21,"Hi, +That doesn't sound good! Please get in touch with our support team for further assistance regarding this issue: android.support@forestapp.cc +Thank you in advance for your support! +- Forest",2020-02-29 20:36:40,most_relevant,cc.forestapp +Namit Sethi,https://lh3.googleusercontent.com/-nnhEh-W_qx4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP78MuzL597AJnziNuDt5i-7pYVuw/photo.jpg,"Confused I planted a tree but instead of killing the tree, i can just leave it running in the background, and the tree still grows",2,0,4.15.0,2020-03-27 09:47:41,,,most_relevant,cc.forestapp +Santanu kumar Dash,https://lh3.googleusercontent.com/a-/AOh14GhW9fl9PWEfOp1dSPvALUu33QwA2HKs8rn47bXoVg,Nice app but I want to unlock the whitelist feature but it's not working . Please look to it as I want to unlock the whitelist feature for free .,2,0,4.15.0,2020-04-02 10:33:15,"Hello, +We are deeply sorry for the inconvenience. The whitelist feature is only available for Pro version users at the moment. If you wish to access it, we recommend that you purchase the Pro version and you'll have a lot of great features! Thank you. - Forest",2020-04-06 18:58:41,most_relevant,cc.forestapp +Cath ;,https://lh3.googleusercontent.com/a-/AOh14GiYijzdizsJfibUBYTPEPTQSRC9pjTuqEsvcvU5ww,"Despite logging out of all my google accounts and restaring my phone, I still can't restore my premium account.",2,0,4.14.3,2020-03-24 10:18:24,,,most_relevant,cc.forestapp +Abhinn Verma,https://lh3.googleusercontent.com/a-/AOh14GiIFjB1LxfU1GMp8ajmOiiT9d0eUvGJ0v7zPz5T5oI,Good app. Sadly it onlt worked for a day. Now it crashes instantly.,2,0,4.15.0,2020-04-03 20:29:01,"Hi, +Sorry for any inconvenience caused. Please turn off the automatic update in the Samsung app settings for Forest, and reinstall the latest version of Forest from Google Play. Thank you! - Forest",2020-04-06 18:42:00,most_relevant,cc.forestapp +Joy Mumo,https://lh3.googleusercontent.com/a-/AOh14GixLH5p1QNDbbe4qaPc2xXlz6uXu09A2RQDg_da_Q,Keeps hanging even after you actually pay money for the premium version.,2,0,4.15.0,2020-03-29 10:29:14,,,most_relevant,cc.forestapp +Ashley Breaks,https://lh3.googleusercontent.com/a-/AOh14Gj9ocE5vu75IOmkxrbYaI5k7Fm_phgZui5-kMi8uQ,"Such a waste of such a great app. Would have given it five stars if it didn't constantly crash, causing it to either not open once time's up unless I force close (losing my tree) or not notifying me in the first place as it crashed halfway through (and again losing my tree). I hope this can be fixed in the near future because I'm not willing on giving up on this app this soon",2,17,4.12.3,2020-01-17 15:33:31,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problem to android.support@forestapp.cc? We will investigate the problem further. +- Forest",2020-01-18 20:18:37,most_relevant,cc.forestapp +king stratton,https://lh3.googleusercontent.com/a-/AOh14GjGVDYOPBrpjeKsnQCes0-eVZOJ0P99bFmVfK4q,The app won't open anymore and before that i couldn't log into my account. Pls sort out! One suggestion I would like to make is the option to arrange the trees and bushes the way we want. It's a good app just struggling to get it to work.,2,0,4.13.0,2020-01-27 13:48:53,"Hi, +We have relayed this issue to our developer team and we are working on it. Sorry for any inconvenience caused. Please update the app as soon as a new version is out as this issue may be fixed there.",2020-02-05 18:01:45,most_relevant,cc.forestapp +Isha Singh,https://lh3.googleusercontent.com/a-/AOh14GiGNfaXhGz9WJVICqc4aka9ooz7tjeCg4eA3tWg,"Not worth! When i use other apps it keeps the timer on. What's the reason behind it god knows! I can't even get other species of plant as bcoz as soon as i try to do so..... It shows 'The forest app has stopped' and just after a second if i reopen the app then except for this function of get other species, other every function i can perform.",2,6,4.13.0,2020-01-26 15:35:57,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2020-01-26 16:37:54,most_relevant,cc.forestapp +Charisse Abiera,https://lh3.googleusercontent.com/-R_eF7bETLZM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPcxNcsYHBXVgjnbrcH_d8wPBwjVA/photo.jpg,Used to really love this app and it really helped me start working until I found out that none of my trees die when I switch apps. Tried all the instructions in the FAQs section of their website but nothing worked. Great idea but super disappointed it doesn't work in my phone.,2,24,4.13.1,2020-02-18 10:37:43,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2020-02-19 16:19:26,most_relevant,cc.forestapp +barta cristian,https://lh3.googleusercontent.com/-LPk7kwIj210/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO5iABYcfvNjCKUyhldk2Er1RLnNg/photo.jpg,"I just bought the pro version, great app but some menus fail to load, achievements, store and so on just load continously, fixing this would be great. I reinstalled the app but it did nothing. Also random menus sometimes fail to open completely.",2,2,4.14.0,2020-02-28 06:51:44,"Hi, +Sorry to hear this is happening. Could you please send us screenshots related to this issue at android.support@forestapp.cc? We’ll fix it asap. Thank you for your patience. +- Forest",2020-02-28 15:52:46,most_relevant,cc.forestapp +Squirrel Ninja,https://lh3.googleusercontent.com/a-/AOh14GhrsxyLcsDpKzliJLUMobuLIuogXNrrQjIgEJm2Ow,"Cool concept but an app like this requires too much focus of its own which only pulls attention away from your intended project. Maybe it would be better with a more comprehensive tutorial but I doubt it. I prefer something straightforward, like Screen Time.",2,0,4.14.1,2020-03-02 15:17:43,,,most_relevant,cc.forestapp +Lynn Doe,https://lh3.googleusercontent.com/a-/AOh14GgFUuVCoa-QHp7ty9nqAxWh6vHHszJedW2LcJAFQg,"It was working fine until recently, I bought new bush but when I have successfully planted (it told me it was successful) I saw it planted the last tree I had chosen on previous study session and 4 out of 7 trees were dead (even tho it said I planted 7 successful trees). The notification also doesn't work",2,35,4.13.1,2020-02-17 20:35:44,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problem to android.support@forestapp.cc? We will investigate the problem further. +- Forest",2020-02-19 16:30:15,most_relevant,cc.forestapp +Amin M,https://lh3.googleusercontent.com/-AbwRWgU0FOU/AAAAAAAAAAI/AAAAAAAAAGA/AAKWJJO8XR3SL0VxHYrjhtQB_Jld4OjBCw/photo.jpg,"First, thanks to the forestapp team for making this brilliant app. Second, in Iran we cannot pay for the Pro version. Please find a solution to this problem. :(",2,0,4.13.0,2020-01-28 05:48:45,"Hi, +Sorry to hear you're unable to unlock the Pro version. We have enabled all countries that Google Play allows to make in-app purchases to buy our Pro version. Yet as app developers, we don't interfere with payments dealt by Google. If you're still unable to get the Pro version, please inquire at Google Play for further assistance. +- Forest",2020-01-28 17:36:36,most_relevant,cc.forestapp +Wini N,https://lh3.googleusercontent.com/-ssvm52wGHX0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPFNFL8YcdFSz3xXEsaMM71If0Wjw/photo.jpg,"I used to really love this app, but lately it won't notify me when the timer is up. It's hard to keep track of how much you're working",2,0,4.14.2,2020-03-14 03:10:23,"Hello, +Could you please check if you have kept your screen on when you are planting? (This is possibly the reason for no notifications.) Please contact us via the in-app system if the problem remains. Thank you. - Forest",2020-03-14 04:33:43,most_relevant,cc.forestapp +Dmitry Bogdanov,https://lh3.googleusercontent.com/-uz26orNwvis/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPsnG-dNGYBuhQGpM5cMeA04DvlPg/photo.jpg,"It submits data to Facebook (found this via reviewing my Off-Facebook Activity). Please, explain what is being shared. Uninstalling. Update. Why Forest should send ""basic"" user data to Facebook in the first place without an explicit consent? Correct me if I am wrong and you do provide a disclaimer on user data. Not all of the user base would want to be discoverable by ""Pro"" users.",2,0,4.13.0,2020-02-12 14:02:26,"Hi, +As previously explained, Forest does NOT send any data to Facebook. Pro users can only see their Facebook friends who have 1) connected their Forest account to Facebook AND 2) allowed FB to share their friend list with Forest. Please reach us at android.support@forestapp.cc if you have other concerns so we can answer in further detail. +- Forest",2020-02-13 07:53:36,most_relevant,cc.forestapp +A H,https://lh3.googleusercontent.com/-P0xAf8fF0Nk/AAAAAAAAAAI/AAAAAAAADgA/AAKWJJOJ9wc49Y-lYSSfBRECJ2iiNbbp1g/photo.jpg,Please give us a way of disabling the red notification dot. It serves no purpose if I can't tell what it's for. Get rid of it or make it more clear what it's indicating. UX should never be an afterthought.,2,0,4.14.2,2020-03-16 04:59:28,"Hi, +Could you please manually sync your data in the Settings page and try to re-log in and see if it solves the problem? +To log out, please tap your username in the Account section of the Settings page, enter your profile and scroll down to the bottom where the ""Log out"" option is. Thank you!",2020-04-06 13:37:35,most_relevant,cc.forestapp +kookie kookeen,https://lh3.googleusercontent.com/a-/AOh14Ght_76r0Ant77bzhCC7Yl1zZJzrgrHHS9yuBJ77zw,"I really love this. But when I want to use it for second time, this apps crashed. I've uninstalled for many times but it still the same. Please do something",2,0,4.14.1,2020-03-01 08:51:30,,,most_relevant,cc.forestapp +Raghad Munir,https://lh3.googleusercontent.com/a-/AOh14GhThyPYlDh8QmN9uGmaWWLpWH3S0b12yLh_dQvp,"So it was good until yesterday .. Whenever I tap on the store it keeps refreshing and never opens, I can't unlock any tree or even check them out. I sent a picture . Thank you for the quick response.",2,1,4.14.0,2020-02-28 16:09:02,"Hi, +Sorry to hear this is happening. Could you please send us screenshots related to this issue at android.support@forestapp.cc? We’ll fix it asap. Thank you for your patience. +- Forest",2020-02-28 15:41:45,most_relevant,cc.forestapp +AMY LUPTON,https://lh3.googleusercontent.com/-gZXuDcovVVw/AAAAAAAAAAI/AAAAAAAAOAk/AAKWJJMtAzoNRza1hmWPZB6uiyyghNcqFA/photo.jpg,I couldn't restore any of my previous planted trees as the app got uninstalled due to an android technical problem. Very frustrating that I lost those records. Please advise how to restore the history.,2,0,4.13.0,2020-01-25 15:22:37,"Hi, +Unfortunately your data can't be saved on the free version of the app. If you're interested in getting the Pro version to restore part of your data, email us at android.support@forestapp.cc. +If you're a Pro user, contact us via our in-app feedback system so we can assist you further and see if it's possible to recover your data. :) +- Forest",2020-01-25 21:33:31,most_relevant,cc.forestapp +Lakshmi V,https://lh3.googleusercontent.com/a-/AOh14GgqTWmYoULqD7h6WsQYGa74JAkA8Bp6zM8ZqezImA,"I'm a pro user, worked great initially but it is not opening and continuously stopping. Please fix this asap.",2,0,4.14.1,2020-03-06 05:53:27,"Hi, +Could you send us the exact steps to reproduce your issue at android.support@forestapp.cc? Sorry for the trouble.",2020-02-12 18:40:58,most_relevant,cc.forestapp +ANU sharma,https://lh3.googleusercontent.com/a-/AOh14GibCD0VDhOM5fNFl78PxP-hawMqcPrqu6iUWoCXGA,Your app was gud but when i did reset my phone and install this again app doesn't work properly i can do whatever i want it doesn't protect me to other apps... If i use other apps while tree is growing they don't die... Your app is really useless,2,1,4.13.0,2020-01-25 02:57:53,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2020-01-25 21:40:25,most_relevant,cc.forestapp +Dahlia Claudine May Perral,https://lh3.googleusercontent.com/a-/AOh14GiXTunjp8kCD1Jg-EdPPGTnPdFGvFyJTGV2EecyRA,Waa supposed to try premium but my payment won't push through. It keeps saying that I have the wrong google password when in fact I inputed the correct one.,2,0,4.13.1,2020-02-12 07:50:58,"Hi, +Sorry for the inconvenience. As app developers, we don't interfere with payments that are dealt by Google Play. Please inquire at the official Google Play for assistance. +- Forest",2020-02-12 18:41:54,most_relevant,cc.forestapp +thiz bee,https://lh3.googleusercontent.com/a-/AOh14GijqpSTYQYXCa8PoglMbHOl04woBM9THXAXaNzuQg,"I like this app, but its useless. If i go on a different app, it just gives me a warning and carries on. Would be better if there was some sort of consequence for using other apps.",2,0,4.14.2,2020-03-14 13:22:51,,,most_relevant,cc.forestapp +Harsh Kumar,https://lh3.googleusercontent.com/a-/AOh14Ghg0TMMiv53ZxJ_zyHJr1vZolMpgVOHb4gP3vANzw,The sad thing is that it didn't allow to sync data. It requires pro version to be purchased,2,0,4.13.0,2020-02-01 02:20:34,"Hi, +We are sorry for the inconvenience. As independent developers, we don't take any investment from venture capitalist. and thus we have to strive hard for the operation of Forest. To provide better and stable service and for the long-term product plan, we need to put some features in the Pro version. We kindly ask for your understanding. +- Forest",2020-02-01 15:46:32,most_relevant,cc.forestapp +Ved Kapur,https://lh3.googleusercontent.com/a-/AOh14Ghpq1r6VWd5HkRC9iuCbU1bSyv_FAX5tv0_aElh,I find the concept of this app absolutely stupid I don't think people are gonna care about if a virtual plant dies if u use an app and the only thing it does is give u a notification as an incentive. What the app should do is whenever someone opens an app forest should open and display over the app this will prevent others from casually using other apps while their work is in progress.,2,0,4.13.1,2020-02-21 13:58:21,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2020-02-29 18:34:28,most_relevant,cc.forestapp +Melissa Pike,https://lh3.googleusercontent.com/a-/AOh14GgJHhfKdn0DKBo_P8dwUxZdAKRK_2WwSEHhjB9vYvY,This has helped me so much ❤️ I love the app but I swear my coins disappear?!? Anyone else having this issue?,2,0,4.14.1,2020-03-05 17:12:42,,,most_relevant,cc.forestapp +Fiona Morales,https://lh3.googleusercontent.com/a-/AOh14GgPvRFYDXe7Dh7AeCJEtu11fZcA2scEx0sjxFga,Updated to the latest version and the store would not load anymore plus my trees planted for the day does not record anymore,2,0,4.14.0,2020-02-28 16:20:54,"Hi, +Sorry to hear about the trouble. Our support engineers are currently working on this issue and we shall fix it ASAP. +For further assistance, contact our customer support at android.support@forestapp.cc :) +- Forest",2020-02-29 18:15:51,most_relevant,cc.forestapp +Yvette Tee,https://lh3.googleusercontent.com/a-/AOh14Gjz7jMn1tPNPwCgw6PwqetXNoVFjMApBXXa9i5okms,Cannot create new tags. Even deleted a few to test if it was because I had reached an undeclared quota,2,0,4.14.2,2020-03-10 23:11:42,"Please contact us via our in-app feedback system! To visit our in-app feedback system, please go to Settings and enter our FAQ first. Once there, please tap on the top-right icon and you should be able to contact us. Thank you and sorry for the inconvenience. - Forest",2020-03-11 14:15:59,most_relevant,cc.forestapp +oppo sum,https://lh3.googleusercontent.com/-kxyCNIaKSrk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOv6x_u9Uuqxtv51Lo4u7IRj8uiEw/photo.jpg,Confusing and what they don't tell you before you download is that you have to pay for mostly all the features,2,0,4.14.2,2020-03-07 03:54:30,,,most_relevant,cc.forestapp +Blaire,https://lh3.googleusercontent.com/-w2jHx9huW2M/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMOl79pGdFWgsx73v2zp2Z0rYrESQ/photo.jpg,Had been using this app without glitches for quite a while now but the last update prevents me from opening it anymore :(,2,0,4.12.3,2020-01-20 14:06:33,"Hello, +Sorry for the inconvenience. This issue is expected to be fixed in the next version. Thank you for the feedback! :)",2020-01-20 17:00:27,most_relevant,cc.forestapp +Danny Wilkins,https://lh3.googleusercontent.com/-PtDcPUxt08A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMN39q8xyHo69Day93fI49dDJUSjg/photo.jpg,This app is just impossible to use without the whitelist functionality which got removed from the free version. Great shame.,2,0,4.13.0,2020-02-14 08:24:54,"Hi, +We are sorry for the inconvenience. As independent developers, we don't take any investment from venture capitalist. and thus we have to strive hard for the operation of Forest. To provide better and stable service and for the long-term product plan, we need to put some features in the Pro version. We kindly ask for your understanding. +- Forest",2020-02-15 17:31:56,most_relevant,cc.forestapp +ShutThe7Up,https://lh3.googleusercontent.com/a-/AOh14GigYb32AIpmcKEgN0JRzv5bN91CBAkIjVeghzYLjw,"After I bought a new tree or switch from the regular one, none of my trees die when I switch apps....this is disappointing",2,0,4.13.1,2020-02-25 03:57:46,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2020-02-29 20:39:06,most_relevant,cc.forestapp +Uditnarayan Mandal,https://lh3.googleusercontent.com/a-/AOh14GjJz10g8E4gpfkUslyUgG9gGgM_wARoJRSRunjHQg,I purchased it but it still showing i dont have premium account. The money is debited from my account but i haven't get premium app. Please consider this.,2,0,4.12.3,2020-01-18 23:06:06,"Hi, +Sorry for the inconvenience. Please get in touch with our support team for further assistance regarding this issue: android.support@forestapp.cc. We will investigate the problem further. +- Forest",2020-01-20 17:13:33,most_relevant,cc.forestapp +Brajendra Kumar,https://lh3.googleusercontent.com/-OF8fO74N4_o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPS2YHBWBESjhTfkmELuhsBi-TRJQ/photo.jpg,Few days after downloading it shows that forest app can't open or open app again .,2,0,4.12.3,2020-01-19 07:43:04,"Hi, +Samsung phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-01-20 17:11:12,most_relevant,cc.forestapp +K. SENSEI,https://lh3.googleusercontent.com/-dNZir6bqSKU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNttNqZMVXkuzTFFZ7YDBQM6jtlXQ/photo.jpg,I like the options available but for some reason I can still go into other apps when I am planting. Only after I go back into the app does it give me the notification. Could I get some help?,2,0,4.13.0,2020-01-28 09:00:55,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2020-01-28 17:31:58,most_relevant,cc.forestapp +Ayesha Asif,https://lh3.googleusercontent.com/a-/AOh14Gg3pNVqXpmxdsnmUd3niV7gonu_rgqmgZBNpPpdBg,The main purpose of this app is to not allow us to open other apps like social media. However when I accessed other apps after pressing the home button I could use them(note:my wifi was off)The app was running in the background while i could use my phone completely.Please fix it. And a suggestion would be to put a feature to select some apps we want to access while doing our work(other than calls) like 'notes'. I need some apps while I study(like I keep important notes I need while I study),2,2,4.12.1,2020-01-10 20:15:43,"Hi, +Sorry for the trouble. Please follow the instructions in the link below and see if it helps. +https://forestapp.cc/faq/whitelist_notification/ + +If you upgrade to the Pro version, you'll get access to the whitelist feature which allows you to use certain apps during planting sessions. + +Contact us at: android.support@forestapp.cc +- Forest",2020-01-15 13:56:23,most_relevant,cc.forestapp +Kasturi Patra,https://lh3.googleusercontent.com/a-/AOh14GhfVTmH5aTBRmE_yx7KNRCWwXPofXyToUOGNhXGNEA,Update: The app crashes everyday and I have to reinstall it and customize my settings everyday. I have a premium account but still this happens. Please help! This app is life transforming. I've been using it everyday for four to five hours and I'm getting so much more done. I love it! The only issue is that it crashes frequently and I need to keep uninstalling it and then reinstalling it. It'd be great if the developers looked into that.,2,0,4.12.2,2020-01-16 01:45:46,"Hi, +Could you please contact us via the in-app feedback system so that we can investigate the problem further? Thank you and sorry for any inconvenience caused.",2020-01-17 05:01:32,most_relevant,cc.forestapp +Joshua Yeoman,https://lh3.googleusercontent.com/a-/AOh14GglBjCmog3D800R3l0_A-HB4cQsWk0OKN4PnLyN,Good app but once you pay for premium you get half the amount of coins as you're no longer able to watch ads for double coins. You'd assume you just get double coins as standard after paying. It also kills trees when you get a phone call even if you dont answer it which is frustrating,2,0,4.12.2,2020-01-18 12:17:01,"Hello, +In the Pro version, you can still enable ads for rewards in the Settings page. +You can also add phone calls to your whitelist to prevent your trees from dying in the future. + +Feel free to contact us in-app if you have further questions or suggestions. We'd be glad if you give us a positive feedback after the problems are solved. :) +- Forest",2020-01-18 20:11:21,most_relevant,cc.forestapp +LEMONIZER.,https://lh3.googleusercontent.com/a-/AOh14GhRngW-PxotYv9vKavefErmRo3h4O5twCui_qEc,For some weird reason the app (timer) stopped working after a few months of installing the app. I used to use it everyday but now all I can do is uninstall it. it's kinda weird how this is an editors choice app. I would give this a five star if this was fixed. and it would be much better if this was not a timer. I would much more prefer if you can add a start button and when you finished studying you can just stop it instead. you can't really estimate the time it takes for you to study.,2,13,4.11.3,2019-11-27 21:00:42,"Hi, +Could you please update Forest to the latest version (4.11.4) and see if it solves the problem? Thank you.",2019-12-01 14:52:49,most_relevant,cc.forestapp +곰,https://lh3.googleusercontent.com/a-/AOh14Gh3LNhhDPJA3RwZ6l2kTxWQwsrvCuAxvXyOe5ab,I can't even enter the shop :( I want to get more trees but the app just keeps loading...,2,0,4.14.0,2020-02-28 13:40:07,"Hi, +Sorry to hear this is happening. Could you please send us screenshots related to this issue at android.support@forestapp.cc? We’ll fix it asap. Thank you for your patience. +- Forest",2020-02-28 15:38:53,most_relevant,cc.forestapp +Vasim Mansuri,https://lh3.googleusercontent.com/a-/AOh14GgwV_pCOhjmb_coxnp77Vju_aUiUwNqxpRN16wKvQ,App has so many problems. I started experiencing them once I paid for the pro version. No one has responded me back from the support to solve my issues. Some issues are as below. 1. Not fully supporting the app whitelist which is a big obstacle in working. 2. Not counting the exceeded time even after setting it up again and again. 3. Took so long to log in after reinstallation as I tried that to solve the above mentioned issues. My advice : Don't pay for this app till these issues are resolved,2,6,4.11.5,2019-12-10 12:06:02,"Hi, +Could you please update Forest to the latest version (4.12.3) and see if it solves the problem? +Feel free to contact us via our in-app feedback system if you have further questions or suggestions! :) +- Forest",2020-01-20 17:19:50,most_relevant,cc.forestapp +P. Flores,https://lh3.googleusercontent.com/a-/AOh14GiYUWivkUB81IKKQNUPnfOgRLrXTqtbw2Di8DLXng,"I loved this app for a long time, however since an update early in the year the app keeps killing my tree randomly part way through the timer despite me not unlocking or sometimes even touching my phone. I contacted the dev and gave it 6 months in hopes it would be resolved, but unfortunately it looks like this app isn't for me anymore. I hope it works better on your phone! When it works it's great!",2,7,4.12.1,2019-12-18 22:37:05,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problem to android.support@forestapp.cc? We will investigate the problem further. +- Forest",2019-12-27 12:40:21,most_relevant,cc.forestapp +Ross Littlefair,https://lh3.googleusercontent.com/-14QPNEmfG_k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOI5eh1hajZ8byjs12h9bVIDbF4-w/photo.jpg,"Good concept but simply doesn't work, I can still use every single app without any intrusion, the tree doesn't even die when I close the app and restart it, totally broken",2,2,4.12.2,2020-01-10 05:09:48,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2020-01-15 14:40:04,most_relevant,cc.forestapp +Quinlan Carlos-Shanley,https://lh3.googleusercontent.com/a-/AOh14GiYlLBw_Nr5x3EdL9lObOpWgRKR8_PGeVHavjW0sU0,The idea is better than the execution. Buying things from the store requires you to create an account in their app rather than using the play store account. Creating an account requires you to enter a birthday which uses a horrible calendar form that requires you to arrow-over every month in every year until you get to your birthday. I'm not doing that... The sound turns off randomly (before the end of the session). Switching to another app doesn't trigger in session warning consistently.,2,0,4.11.3,2019-11-26 22:56:41,"Hi, +Making purchases in the in-app store only costs virtual coins, so it isn't necessary to connect to a Google account. +Please contact us via the in-app feedback system so that we can further assist you with the sound issue and tree withering. Thank you! +- Forest",2019-12-01 15:03:45,most_relevant,cc.forestapp +Leah Figeys,https://lh3.googleusercontent.com/-opGMBi3zcW8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN2nGQaxTtgQ7QEEMBEv8w2gN6SkQ/photo.jpg,"I purchased the premium version and now I can't buy new plants, errors keep happening and I would like to go back to the free version without loosing my forest. I have the newest version so it should be so glitchy. Once it's fixed it will get 5 stars.",2,2,4.11.4,2019-12-03 02:29:52,"Hi, +Could you please contact us via the in-app feedback system so that we can investigate the problem further? Thank you and sorry for any inconvenience caused.",2019-12-27 13:30:44,most_relevant,cc.forestapp +Charlirak,https://lh3.googleusercontent.com/-nv7WQhSw4cU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJODhtV1sUDNeLJM0KeO1EPIzyIZJg/photo.jpg,"I re-installed this app last week and it's been great but recently it won't plant the tree when I press PLANT. It shows the countdown in notifications, but the actual app keeps showing the Planting screen with nothing happening, which kinda defeats the purpose of the app.",2,0,4.11.3,2019-11-28 10:48:23,"Hi, +Could you please update Forest to the latest version (4.13.0) and see if it solves the problem? +If you continue to experience issues, please reach us at android.support@forestapp.cc. Thank you! +- Forest",2020-01-28 17:44:50,most_relevant,cc.forestapp +Gala Ivanovic,https://lh3.googleusercontent.com/-xWXlx5gxTqw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOyfqUTmO-4cn8eVkN-iZG1cufbTA/photo.jpg,It lets me get out of app and my tree is still growing. It doesnt prevent me from using phone,2,0,4.12.3,2020-01-20 21:06:33,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2020-01-21 19:41:01,most_relevant,cc.forestapp +Byakugan Princess Hinata Uzumaki,https://lh3.googleusercontent.com/a-/AOh14GhQDvfm18faZq5bi0KhMvdCgGQnvfperPTFDwCLsQ,"It's good really helpful but I dunno why suddenly stopped working, that buttons are not working, my all coins gone Bcz I have to uninstall and reinstall again and again , 2 days it works well then I dunno why doesn't work properly...please correct this problem I'm really dissapointed 😭",2,6,4.11.1,2019-11-13 12:36:08,,,most_relevant,cc.forestapp +Srikrushna Mishra,https://lh3.googleusercontent.com/a-/AOh14GhtOmRzJYPAaQP4ssa3QGu2eDX0Tn_AnasZEp0K,Well.. it worked perfectly fine for 2 days ... now it freezes after the vibration during completion of time.. The record of work also failed to register after it force closes itself... example : Today i have studied like 4hours constantly and it only registered 60mins of work.. rest of the time it freezed right after the completion.. uninstalling such a huge app...,2,51,4.11.2,2019-11-21 11:41:22,"Hi, +Your app is an outdated version. Please update Forest to the latest version (4.13.1). +If you continue to experience issues, please reach us at android.support@forestapp.cc. Thank you! +- Forest",2020-02-12 18:50:20,most_relevant,cc.forestapp +A M,https://lh3.googleusercontent.com/-B8XcIaYeyk4/AAAAAAAAAAI/AAAAAAAAUm8/AAKWJJM4kpLS00oM8DkoneRJXNFTKe8ibg/photo.jpg,"While the concept is good, the app doesn't work. In my case the app doesn't detect if I open other apps so my tree keeps growing even if I open other apps. Also I noticed that I would reach for my phone more after installing the app. It may work for others but not for me.",2,72,4.11.1,2019-11-13 15:13:16,,,most_relevant,cc.forestapp +Leilah k,https://lh3.googleusercontent.com/-1TWaHAIdD9s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPKMnBKSclvuSfryBf7G-wDw7BpLw/photo.jpg,"As much as I love the concept and I really do want to use it, the app doesn't log my times. I'll plant, and study, then when I come back (and my tree is supposed to be done growing) it'll just start up like nothing happened. I've had an empty forest for two days now.",2,1,4.11.2,2019-11-22 12:39:02,"Hi, +Please update Forest to the latest version (4.13.1) and see if it solves the problem. +If you continue to experience issues, please reach us at android.support@forestapp.cc. Thank you! +- Forest",2020-02-11 09:32:44,most_relevant,cc.forestapp +Nathania Murray,https://lh3.googleusercontent.com/a-/AOh14GjlusIZ90vgEjU7vjW6juxGY3WNDCp2UHMijHQp-A,"I used it twice so far, and I really like it, except from today I havnt been able to open it, it just keeps closing everytime I try to open it.",2,0,4.12.2,2020-01-14 13:24:30,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problem to android.support@forestapp.cc? We will investigate the problem further. +- Forest",2020-01-15 13:27:34,most_relevant,cc.forestapp +Maruf Hasan Hira,https://lh3.googleusercontent.com/a-/AOh14GitirpjydAzTIpe-hRlOlvy-kI5NyBmDiF1_6Kx5g,"I just LOVE this app sooo much. It helps me a llot in focusing on my studies. But many times it crasehes at the very last second. I've lost millions of trees, re-installed and reported thousand times but unfortunately no improvement.",2,0,4.11.2,2019-11-27 11:42:45,"Hi, +Could you please update Forest to the latest version (4.11.4) and see if it solves the problem? Thank you.",2019-12-01 14:58:54,most_relevant,cc.forestapp +ryan fisch,https://lh3.googleusercontent.com/a-/AOh14GhznJRcSLa0Yb2jL72WXnhwweKb3pXQSahXGCDxKw,I have a lg k30 phone and after an update the app no longer kills trees when I try and open another app. This happens if the whitelist is on or off and if advance detecion is on or off. If this gets fix then this app deserves the 4.6 overall rating that is has.,2,0,4.12.1,2019-12-19 02:09:07,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2019-12-27 12:39:51,most_relevant,cc.forestapp +Ruchita Srivastava,https://lh3.googleusercontent.com/a-/AOh14GjrcUIUlS1yGUTSPCe0xN3DmC94fj8wPNkEVNHAJw,This is the 10th or 11th time that I installed this app after uninstalling as it keeps crashing all the time.. application is very helpful to focus on work/study except that it doesn't work properly. I am just fed up of reinstalling this app everytime.,2,57,4.12.2,2020-01-02 09:51:50,"Hi, +Samsung phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-01-20 17:17:22,most_relevant,cc.forestapp +Can K,https://lh3.googleusercontent.com/-Jt1Dlq4dXtY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOMNyh_UYFF7as6uOMsbath_kwKwA/photo.jpg,"Hi, I really love this app so I bought the Pro version. However, when I click on the button to sign up nothing shows up. I was hoping someone could help me with this issue to correct it.",2,0,4.12.1,2019-12-18 16:51:26,"Hi, +Could you please contact us via the in-app feedback system so that we can investigate the problem further? Thank you and sorry for any inconvenience caused.",2019-12-27 12:42:19,most_relevant,cc.forestapp +Sylvia Leung,https://lh3.googleusercontent.com/a-/AOh14GhTK12fTGqaL2pvvCYJ_zUltdrhqAWQZ99c-HWk8A,The app stop responding for many days already! It is disturbing that it stops after 5 secs whenever i open the app - STILL STOPPING,2,0,4.12.2,2020-02-11 12:59:13,"Hi, +Your app is an outdated version. Please update Forest to the latest version (4.13.1). +If you continue to experience issues, please reach us at android.support@forestapp.cc. +- Forest",2020-02-12 19:28:49,most_relevant,cc.forestapp +Andrey Morozov,https://lh3.googleusercontent.com/a-/AOh14GjUkmYTB-sGhUDOIbGkUORrgWHetm6P_2lF8VlCnw,"The new ''double reward"" feature is very upsetting and cheapening. The whole point of this app is to help you focus and reduce phone distraction, not barage you with ads for developer profit",2,1,4.11.1,2019-11-15 19:34:20,,,most_relevant,cc.forestapp +Eduardo Moya,https://lh3.googleusercontent.com/a-/AOh14Gg-je18RN9xL3_a_fr7uXahazwt1jiCWWYcokyQ_D8,"I don't like the new update. Now trees for 25 min are worth the same as trees for 10. It does not seem fair at all. Also, the trees at the store are now more expensive. I don't like the update at all.",2,0,4.12.1,2019-12-15 12:53:48,"Hi, +We're sorry for the unpleasant experience. A new pricing mechanism was introduced in our recent updates. While the prices of some trees have increased, those of the rest have decreased - some plants only cost 300 coins now. You can earn coins faster by completing longer sessions or unlocking achievements. :)",2020-01-18 20:50:13,most_relevant,cc.forestapp +Nikolas Pimbos,https://lh3.googleusercontent.com/-ksu6URGYvuU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPshwnT6s0vRnwJpgF8RxH884XqpA/photo.jpg,App was perfect for me untill the last update where I lost ALL of my coins. I had almost 600 and now I have 0. Hence the 2 stars. Otherwise great app,2,0,4.12.0,2019-12-13 18:13:42,"Hi, +Sorry for the inconvenience. The problem is fixed now. Please update to the latest version (4.12.2) to see if it helps. If it works, don't forget to give us a positive review. :)",2019-12-27 12:59:01,most_relevant,cc.forestapp +kate pzlr,https://lh3.googleusercontent.com/-BgBsZFgMFYU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO-3lHbuvIQlAbgH0w_Bg8I-MIRzQ/photo.jpg,I cannot log into the application somehow. Please help me!!,2,0,4.13.0,2020-01-28 21:22:38,"Hi, +Please get in touch with our support team for further assistance regarding this issue: android.support@forestapp.cc",2020-01-29 16:52:05,most_relevant,cc.forestapp +MTee S,https://lh3.googleusercontent.com/-YS38SxD1Scg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMaCmtcv--1ozfpoU1W5rIgQjNHsw/photo.jpg,"Why s the app keeping shut down a sound all time? Even i paid for it already, still got this problem. Please fix it, i love this app.",2,0,4.12.2,2019-12-27 17:42:51,"Hi, +Sorry for the trouble. Please adjust the ""Ringtone mode"" in the Settings page to the way you wish to be notified during planting sessions. Thank you!",2020-01-22 17:35:45,most_relevant,cc.forestapp +Amy Carter,https://lh3.googleusercontent.com/-BtWVrUojtRg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMQKse63OGR8YsI0Pg0kKa1kigthQ/photo.jpg,"I changed the settings like it asked (allowed the permissions to let it stop me from coming off the app) but it doesn't work :/ allowed me to go on a different app then when going back on, the tree was still alive",2,3,4.12.2,2019-12-29 18:51:30,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2020-01-17 05:29:48,most_relevant,cc.forestapp +Lee Wen xing,https://lh3.googleusercontent.com/-wpekxVJwSFM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOj3CAbqw61j9Td7ZPPXEEqe8TTew/photo.jpg,"The app keeps crashing and hanging. Recently, after I am done with the entire duration, no coins could be accumulated",2,0,4.11.2,2019-11-22 13:50:22,"Hi, +Please update Forest to the latest version (4.13.1) and see if it solves the problem. +If you continue to experience issues, please reach us at android.support@forestapp.cc. Thank you! +- Forest",2020-02-11 09:32:37,most_relevant,cc.forestapp +priyanka pinky,https://lh3.googleusercontent.com/-jkNQYVWj9X8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM2bgXT9Wko4yc64-7Y_csSRYsa_A/photo.jpg,The app is not working well. It's not all recording the duration. It stops responding every time i use it,2,0,4.11.2,2019-12-24 10:14:32,"Hi, +Could you please update Forest to the latest version (4.12.2) and see if it solves the problem? Thank you.",2019-12-25 15:01:25,most_relevant,cc.forestapp +Diana Costin,https://lh3.googleusercontent.com/a-/AOh14GiAeYDfxLqBeKgAX61Km8z5kxegbjVy8LUpTWdTcRk,"I love this app, but since the last update I can't use it properly, it doesn't respond and has lags. Please solve this problem within the next update.",2,0,4.11.1,2019-11-10 16:07:08,,,most_relevant,cc.forestapp +warriors & weirdos,https://lh3.googleusercontent.com/a-/AOh14GgGgKFwSpa-YGVMEzcdFXyID8KIZ29tutenkW-gkg,so i paid for the premium version but the thing is that i cannot sign up when i go to the settings as nothing shows up. hope you can fix this.,2,0,4.11.4,2019-11-30 17:13:30,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problem to android.support@forestapp.cc? We will investigate the problem further. +- Forest",2019-12-01 14:45:20,most_relevant,cc.forestapp +Ayush Kashyap,https://lh3.googleusercontent.com/-bdYtP9DO7nw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNA5k-PVpd0by2_yf0RWbGrLgve0A/photo.jpg,Guys it is troubling me a lot recently...after every day it stops working..and I have tried reinstalling the app many time but serves no help..kindly fix it..,2,0,4.11.5,2019-12-09 10:47:59,"Hi, +Could you please update Forest to the latest version (4.12.2) and see if it solves the problem? Thank you.",2019-12-27 13:14:48,most_relevant,cc.forestapp +Matthew Losey,https://lh3.googleusercontent.com/a-/AOh14GjXLwWn0RajZETdTNIkXjHY_YmLIPMs_kAI_z3m,Love this app but it needs to stop crashing constantly after every update! Figure it out and I'll change the review,2,0,4.11.5,2019-12-11 18:49:44,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problem to android.support@forestapp.cc? We will investigate the problem further. +- Forest",2020-01-18 21:03:35,most_relevant,cc.forestapp +Lourens Strydom,https://lh3.googleusercontent.com/a-/AOh14GjrpKiiNIbz0enPXSA7NFNzwzOfe3Hes06e1ZXSUQ,Loved it but...its freezing and wond even start the clock when i push it after 160 hours of usage in total,2,0,4.11.1,2019-11-15 09:19:40,,,most_relevant,cc.forestapp +Anton Vilkhov,https://lh3.googleusercontent.com/a-/AOh14GhOEKhD7cuqDEfpo8O0vR_Xwu3kJ2HeaPMMGhawLg,Great app but since the last update time runs out and nothing happens.,2,0,4.11.2,2019-11-24 09:41:53,"Hi, +Could you please update Forest to the latest version (4.11.4) and see if it solves the problem? Thank you.",2019-12-01 15:12:45,most_relevant,cc.forestapp +Seethalakshmi Rajeev,https://lh3.googleusercontent.com/-ZDGtXWqCWxI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMzZhi4ypM9A-zcLNbaNrFRufN9Ug/photo.jpg,"Getting stuck after a day Or two. Have to reinstall everytime, because I liked the concept of this app. Poor execution",2,1,4.11.1,2019-11-16 07:29:05,"Hi, +Redmi phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-02-19 19:31:53,most_relevant,cc.forestapp +Rajarajan Krishnamoorthy,https://lh3.googleusercontent.com/a-/AOh14GgHOP_7ApWkLelnr1F-uogRQxISDPkfAVwSwddR,Unable to open the app after a days of installing it.. I need to reinstall once again to make it work...,2,0,4.12.1,2019-12-17 01:12:23,"Hi, +Samsung phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-01-26 16:58:37,most_relevant,cc.forestapp +Ridhima Bhayana,https://lh3.googleusercontent.com/a-/AOh14Gi2Iv43G7KTOOeMfhRzH1z6oroDa_IDgYlKGbypXg,Earlier it was great. But now keeps crashing,2,0,4.12.2,2020-02-17 08:24:37,"Hi, +Your app is outdated. Please update Forest to the latest version (4.13.1) and see if it solves the problem. +If you continue to experience issues, please reach us at android.support@forestapp.cc. Thank you! +- Forest",2020-02-19 16:33:46,most_relevant,cc.forestapp +Ghozy,https://lh3.googleusercontent.com/a-/AOh14Gimj9GZxupLwWQwUaptOeTSWhJEc0PbNC8W1suzhw,"The Idea is brilliant but the apps do not work on my phones, I changed the apps to another apps and forest keep growing :( pls fix this",2,0,4.11.1,2019-11-15 18:46:25,,,most_relevant,cc.forestapp +Iskander Alibayev,https://lh3.googleusercontent.com/a-/AOh14GgSODwCZi8pu77Kf13QX2V5q7X7N6AyTScGOuOE,The new update is terrible. Why trees cost so much now? Where is the option to get double coins by watching advertisement?,2,0,4.12.1,2019-12-15 18:06:22,"Hi, +Sorry for the trouble. A new pricing mechanism was introduced in our recent updates. While the prices of some trees have increased, those of the rest have decreased - some plants only cost 300 coins now. You can earn coins faster by completing longer sessions or unlocking achievements. +The ""Rewarded ad"" option is in the Settings as always. :)",2020-01-18 20:49:30,most_relevant,cc.forestapp +Joshua Santos,https://lh3.googleusercontent.com/a-/AOh14GgHXuO_trB5Z_9vL8Vic3MtlACYJA9ZxFQGs1PH2Q,Good application but keeps crashing after trying to double rewards.,2,0,4.11.5,2019-12-10 04:36:53,"Hi, +Could you please update Forest to the latest version (4.12.3) and see if it solves the problem? Thank you.",2020-01-20 17:20:35,most_relevant,cc.forestapp +alia heras,https://lh3.googleusercontent.com/a-/AOh14GhqVvJ-SyanBBXrxWnVKf16vkkqI3SfcWzdUDhJOA,It's alright but like then it gets annoying bc you can't set the timer and if you need to check smt on internet it won't let you,2,0,4.11.3,2019-11-28 06:35:25,"Hi, +Could you please update Forest to the latest version (4.13.0) and see if it solves the problem? +If you continue to experience issues, please reach us at android.support@forestapp.cc. Thank you! +- Forest",2020-01-28 17:45:09,most_relevant,cc.forestapp +Joel Malissa,https://lh3.googleusercontent.com/a-/AOh14GjMhemGcEsXxNJZ6BTg7Iv4fFNiDTmt8jB-E3R-ybg,"Great app, but deleted it because I don't like the new Santa hat icon Edit: added a star because they replied and reverted the icon",2,0,4.11.4,2020-01-26 04:19:46,"Hi, +Thank you for the updated review. How can we get more stars? If you would like to give us more information on why you aren’t satisfied with our app, get in touch with us at android.support@forestapp.cc so we can try to improve our app. :) +- Forest",2020-01-26 17:02:33,most_relevant,cc.forestapp +farnaz beladian,https://lh3.googleusercontent.com/-qH_t4OLH2n4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOjWd0q-zuvXB0uUxYLt3PEH_Wauw/photo.jpg,It doesn't work for me in few days. I plant trees but the time doesn't work. Please help me I don't want to uninstall the app.,2,0,4.11.4,2019-12-02 06:21:13,"Hi, +Could you please update Forest to the latest version (4.13.0) and see if it solves the problem? +If you continue to experience issues, please reach us at android.support@forestapp.cc. Thank you! +- Forest",2020-01-26 00:58:53,most_relevant,cc.forestapp +Sara maheen,https://lh3.googleusercontent.com/a-/AOh14GhgRYIvzv_4DIT3ArXDiTClM92MENozpM-FmExM,I like this app.This is a wonderful app.I can focus on my studies because of this app,2,0,4.13.1,2020-02-28 13:37:52,"Hi, +Thank you for the rating! Don't hesitate to give us a positive review if you enjoy the app. :) +- Forest",2020-02-28 15:39:21,most_relevant,cc.forestapp +Roxanne Dack,https://lh3.googleusercontent.com/-dt5Qde0dBQI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPS_CwB8o5H6wvzs06FPTvha2AgSA/photo.jpg,Love the app but it crashes often and then your trees don't grow,2,0,4.11.2,2019-11-22 12:01:14,"Hi, +Please update Forest to the latest version (4.13.1) and see if it solves the problem. +If you continue to experience issues, please reach us at android.support@forestapp.cc. Thank you! +- Forest",2020-02-11 09:32:47,most_relevant,cc.forestapp +Amy Lu,https://lh3.googleusercontent.com/a-/AOh14GgrZfG9onLD-JSb4JIh_M5GADobrivThiEdwOPLEA,"So for some reason now I can exit the app without killing the tree, which defeats the whole purpose of this app.",2,0,4.11.5,2019-12-04 23:07:41,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2020-01-20 18:04:18,most_relevant,cc.forestapp +Vanshika Agarwal,https://lh3.googleusercontent.com/-YP7Ay3tf4fI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOyd09wP2ROBVC67_IyqlJHVwJk3g/photo.jpg,App is having some problem.after certain time it stops accepting timers,2,0,4.11.5,2019-12-03 06:29:04,"Hi, +Sorry for the inconvenience. The problem is fixed now. Please update to the latest version (4.12.2) to see if it helps. If it works, don't forget to give us a positive review. :)",2019-12-27 13:29:19,most_relevant,cc.forestapp +Shaktisinh Chudasama,https://lh3.googleusercontent.com/a-/AOh14GhBhner8bU7vlTKlXtTRy09SaLt2CRP0q7oXBG7cg,Hi! I have mailed you in detail about the problem I am facing on my Moto G5 Plus. I hope it will be resolved.,2,2,4.11.4,2019-11-29 17:59:52,"Hi, +Could you please update Forest to the latest version (4.13.0) and see if it solves the problem? +If you continue to experience issues, please reach us at android.support@forestapp.cc. Thank you! +- Forest",2020-01-28 17:56:54,most_relevant,cc.forestapp +Shahid Mohtram,https://lh3.googleusercontent.com/-_qAKlO1upno/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPEhApt4lPxykeICEzAzKOj67dQxA/photo.jpg,I loved the concept but i study from my phone so whenever I am opening my downloaded files it's killing my tree...,2,1,4.11.3,2019-11-26 08:03:28,"Hi, +If you upgrade to the Pro version, you'll get access to the whitelist feature which allows you to use apps that you've whitelisted during planting sessions. We hope you consider. Thank you!",2020-01-28 17:46:54,most_relevant,cc.forestapp +sepideh shirvani,https://lh3.googleusercontent.com/-XTyCxR5H5YA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPGOmWtPAiXoxx04fSmnIoGMXJDgQ/photo.jpg,"Since I've updated the app, it doesn't record my working hours! And also it stops and freezes every time I check it! Should I uninstall it? :-(",2,0,4.11.2,2019-11-24 20:07:30,"Hello, +This issue has been resolved in the latest version (4.11.4). Please update to the latest version and see if the problem is solved. +Thank you and sorry for the inconvenience.",2019-12-01 15:07:18,most_relevant,cc.forestapp +Vaibhav Verma,https://lh3.googleusercontent.com/a-/AOh14GiXpT-QwouylZDMBFIUNlwSDXpF0rOXr28EkCYNUQ,Aftre update not run property please!! Fix it!! 😠😠😠😠😠,2,0,4.12.1,2019-12-27 15:54:43,"Hi, +Could you please update Forest to the latest version (4.13.0) and see if it solves the problem? +If you continue to experience issues, please reach us at android.support@forestapp.cc. Thank you! +- Forest",2020-01-26 16:45:05,most_relevant,cc.forestapp +Saurabh kr,https://lh3.googleusercontent.com/a-/AOh14Gg_na1m7TJMYV3CDJ4VQR20PG1RgqTF3oQujt2GIw,Everything is good but... the tree does'nt die if i press the home button nd now my sub concious mind knows this which makes this app kimda useless for me.,2,0,4.11.5,2019-12-07 08:50:42,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2019-12-27 13:22:00,most_relevant,cc.forestapp +Michalina,https://lh3.googleusercontent.com/a-/AOh14GhE6oWKb3vFZp0KnhtfGCnrnXwQSPn34ITyQ8Et9A,I can't cancel my subscription! How can I do that?,2,0,4.13.1,2020-02-16 14:45:48,"Hi, +The free version of Forest is completely free of charge to download and use. The Pro version is a one-time purchase, meaning you're not charged on a regular basis, so there's no need to unsubscribe. Thank you!",2020-02-16 15:00:44,most_relevant,cc.forestapp +Tina Truong,https://lh3.googleusercontent.com/a-/AOh14Ggm1r7-jhcqjRKXTd1tZxdJ1ll9xllAS77ctjaA3w,The newest version doesn't keep my record.,2,0,4.11.2,2019-11-24 20:57:23,"Hi, +Please update Forest to the latest version (4.13.0) and see if it solves the problem. +If you continue to experience issues, please reach us at android.support@forestapp.cc. Thank you! +- Forest",2020-02-08 03:26:14,most_relevant,cc.forestapp +wong polly,https://lh3.googleusercontent.com/a-/AOh14Gix4Yn55f4AT5WC494a1jlxaRQQoTN---vb5h33,there is a bug of my forest😢when I use home botton the picture back to homepage and I still can use my phone,2,0,4.12.2,2019-12-29 02:15:10,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2020-01-17 05:31:31,most_relevant,cc.forestapp +Vash Anthra,https://lh3.googleusercontent.com/-k4k4J8aEsIg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOvUGvf75fkAe4H5GjLR8raTUujrw/photo.jpg,"I could'nt open the app. It says ""unfortunately forest has stopped working""",2,0,,2020-04-06 13:47:20,"Hi, +Sorry for any inconvenience caused. Please turn off the automatic update in the Samsung app settings for Forest, and reinstall the latest version of Forest from Google Play. Thank you! - Forest",2020-04-06 18:09:25,newest,cc.forestapp +Mohsin Khursheed,https://lh3.googleusercontent.com/a-/AOh14GhNkvNj9w6nrhneAgBUmge6m3O_NzvtuoNMV6grmA,"After paying for the pro version it went all good for a few days and now it doesn't even open it says ""forest keeps stoping"" i tried clearing the cache but nothing.",2,0,4.8.3,2020-04-06 01:24:17,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problem to android.support@forestapp.cc? We will investigate the problem further. +- Forest",2020-04-06 18:20:11,newest,cc.forestapp +Abhinn Verma,https://lh3.googleusercontent.com/a-/AOh14GiIFjB1LxfU1GMp8ajmOiiT9d0eUvGJ0v7zPz5T5oI,Good app. Sadly it onlt worked for a day. Now it crashes instantly.,2,0,4.15.0,2020-04-03 20:29:01,"Hi, +Sorry for any inconvenience caused. Please turn off the automatic update in the Samsung app settings for Forest, and reinstall the latest version of Forest from Google Play. Thank you! - Forest",2020-04-06 18:42:00,newest,cc.forestapp +ken john,https://lh3.googleusercontent.com/a-/AOh14GinGhR-UUXghywVWAP_UT_4MCYIlwmEgZTCSh53,"For the first week of using it, everything was okay but suddenly all of my progress were gone. It was frustrating. And when I tried to use it again, the plant does not change with time. For example, when I adjusted the time to 1 hr, the plant is still a bush. I tried the max time but the plant is still a bush. So I uninstalled it. But it is still a good app.",2,0,,2020-04-02 13:26:48,"Hi, +Unfortunately your data can't be saved on the free version of the app. +If you're a Pro user, please contact us via our in-app feedback system so we can assist you further and see if it's possible to recover your data. :) +- Forest",2020-04-06 18:57:28,newest,cc.forestapp +Santanu kumar Dash,https://lh3.googleusercontent.com/a-/AOh14GhW9fl9PWEfOp1dSPvALUu33QwA2HKs8rn47bXoVg,Nice app but I want to unlock the whitelist feature but it's not working . Please look to it as I want to unlock the whitelist feature for free .,2,0,4.15.0,2020-04-02 10:33:15,"Hello, +We are deeply sorry for the inconvenience. The whitelist feature is only available for Pro version users at the moment. If you wish to access it, we recommend that you purchase the Pro version and you'll have a lot of great features! Thank you. - Forest",2020-04-06 18:58:41,newest,cc.forestapp +Preeti S,https://lh3.googleusercontent.com/-I4V9BsiI-UI/AAAAAAAAAAI/AAAAAAAAAQU/AAKWJJNfrCdM3oREQWvM-DQuyPCelvQwqw/photo.jpg,Plz share instructions on how to use on oneplus. Trees don't wither even after leaving the app,2,0,4.15.0,2020-04-02 07:01:56,"Hi, +Could you please go to System setting > Security > Other security access > Usage data access, and enable permission for Forest? Thank you. -Forest",2020-04-06 19:00:29,newest,cc.forestapp +Hasitha G,https://lh3.googleusercontent.com/-kz2WbqLr3k4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN3CnaRRzDB6SegwRmzrB4Ly92XBg/photo.jpg,I used to love this app but I have bought a new phone and whenever I open the app it crashes and doesn't open. I've already uninstalled the app and installed it number of times but still the problem exists. Please look into it ASAP!,2,5,3.10.5,2020-04-01 06:36:09,"Hi, +Sorry for any inconvenience caused. Please turn off the automatic update in the Samsung app settings for Forest, and reinstall the latest version of Forest from Google Play. Thank you! - Forest",2020-04-06 19:06:16,newest,cc.forestapp +Salma Sharifa Harfi,https://lh3.googleusercontent.com/a-/AOh14Gjk4qr8xRsegnR7iZfWuWyhHT_RTh_4UOPqKmCm,"Dissapointing. In some few days, it can' t be open. I already download it for two tines and nothing change. Please fix this one!😓",2,0,,2020-04-01 05:59:09,"Hi, +The Vivo system has an error by downloading the correct app version. Please turn off the automatic update in the Vivo app settings for Forest, and reinstall the latest version of Forest from Google Play. Thank you! - Forest",2020-04-06 19:06:34,newest,cc.forestapp +Jashandeep Chadha,https://lh3.googleusercontent.com/a-/AOh14GjG1C1nV7jIlb_A5PUWXeP9GmuWvBe0HPdT3QgMOw,"Update: I did all the steps.. still not working... It is getting frustrating 😓 I really love this app. But off late it just keeps crashing. Can anybody help? Updated: Thanks for the reply! There was no auto update option in my phone settings. So, I have disabled auto update in google play. Will it work?",2,0,4.14.2,2020-03-31 03:47:42,"Hi, +Sorry for any inconvenience caused. Please turn off the automatic update in the Samsung app settings for Forest, and reinstall the latest version of Forest from Google Play. Thank you! - Forest",2020-03-14 05:56:51,newest,cc.forestapp +Bluebird Azurite,https://lh3.googleusercontent.com/-2lIGV47L0eo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNVRL2GfdXaaJDVzeCJtrPDn5KjUw/photo.jpg,Please fix the whitelist bug. Instagram isn't included in my whitelist however I can still open it without this app stopping me like it used to.,2,0,,2020-03-31 03:08:37,,,newest,cc.forestapp +Parinidhi Pathak,https://lh3.googleusercontent.com/a-/AOh14Gj7mues0xMxg8JZN0ZHbvXSI1ER6uw9tozRmqRRyg,"This app is causing me a lot of trouble.... whenever I close the app and open it again, the app says that forest isn't working....so I have to delete and download it again and use it 10 times a day.....and also I have paid premium membership. I have an android phone",2,2,4.15.0,2020-03-30 07:36:30,,,newest,cc.forestapp +Indana Fiersy,https://lh3.googleusercontent.com/a-/AOh14GieSqkzmRO4yV4oCjUWN56ap9vPuqW4QsfNXGTkgw,"The app keeps crashing after 1 use, i had to reinstall so many times. I like the app so please fix it!",2,0,,2020-03-30 02:37:52,,,newest,cc.forestapp +Yanakorn meeruk,https://lh3.googleusercontent.com/a-/AOh14GigBzju8D5Qc-QuyYy7xILdzh_7pINIy_E3qBEBnQ,Great 👏👏,2,0,4.12.1,2020-03-29 15:15:51,,,newest,cc.forestapp +Joy Mumo,https://lh3.googleusercontent.com/a-/AOh14GixLH5p1QNDbbe4qaPc2xXlz6uXu09A2RQDg_da_Q,Keeps hanging even after you actually pay money for the premium version.,2,0,4.15.0,2020-03-29 10:29:14,,,newest,cc.forestapp +Nick Evans,https://lh3.googleusercontent.com/a-/AOh14GiKVCGJu7TurhvHs2gerTTzgaRfYZhVPYaPni561Q,Needed too many permissions before I could test it out so just uninstalled.,2,0,,2020-03-28 12:43:41,,,newest,cc.forestapp +Maliha Khan,https://lh3.googleusercontent.com/a-/AOh14Gi4HG6oNer_k5jmKp62m2Q05HeW3ElUNpPbdRHgPA,I downloaded the update but still it isnt working. I worked for a day and then stopped,2,0,,2020-03-28 09:51:02,"Hi, +Please update Forest to the latest version (4.13.1) and see if it solves the problem. +If you continue to experience issues, please reach us at android.support@forestapp.cc. Thank you! +- Forest",2020-02-16 15:05:15,newest,cc.forestapp +Namit Sethi,https://lh3.googleusercontent.com/-nnhEh-W_qx4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP78MuzL597AJnziNuDt5i-7pYVuw/photo.jpg,"Confused I planted a tree but instead of killing the tree, i can just leave it running in the background, and the tree still grows",2,0,4.15.0,2020-03-27 09:47:41,,,newest,cc.forestapp +Rocky Bullwinkle,https://lh3.googleusercontent.com/-MlQtdV005PI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO1-IsGYL2-uU7ZJmH98-d3N1EmEA/photo.jpg,Kind of boring,2,0,,2020-03-27 08:34:26,,,newest,cc.forestapp +Shrey Shantanu,https://lh3.googleusercontent.com/a-/AOh14GhEi2C4W87WwsLtaFnCfpCFgnLXggA5uDlvKqMtvg,All of my records get deleted automatically.,2,0,4.7.1,2020-03-26 20:12:18,,,newest,cc.forestapp +Satveer K,https://lh3.googleusercontent.com/-EeTLQ6yORoc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO_wl9bEzarvWlDqfhr0kJcZuDaFQ/photo.jpg,"Not sure what the point is when you can still access any app without interrupting your trees as long as you leave this running in the background? Note: the ""lock forest to stay in foreground"" option is selected",2,0,4.15.0,2020-03-26 14:22:21,,,newest,cc.forestapp +Marty M,https://lh3.googleusercontent.com/-LvDjJVZfN7w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNac_9oBTnFS4NHQXftV-ULSK2Fpw/photo.jpg,"Syncing doesn't work. That was the whole point of upgrading to the Pro version. I log most of my time in the Firefox browser plugin, and it never shows up in the app. I also lost my account. My account wasn't authenticating, so I logged out. When I tried to log back in, it didn't recognize my email (even using Forgot Password). I ended up creating a new account with the same email I know I used before, losing all of my coins. You guys should look into any backend issues with syncing and accounts. Thanks.",2,32,4.14.3,2020-03-24 18:36:37,,,newest,cc.forestapp +Eve Ang,https://lh3.googleusercontent.com/a-/AOh14GjiS1Q1uEyP_zC4CZnamfS5SgROtEi6lkjJjDgvZQ,"Good concept but it does nor work, i can still access youtube and go out of the app but the idea is very interesting, has potential to be an amazing, just the main point of downloading the app malfunctions.",2,0,,2020-03-24 13:02:11,,,newest,cc.forestapp +Cath ;,https://lh3.googleusercontent.com/a-/AOh14GiYijzdizsJfibUBYTPEPTQSRC9pjTuqEsvcvU5ww,"Despite logging out of all my google accounts and restaring my phone, I still can't restore my premium account.",2,0,4.14.3,2020-03-24 10:18:24,,,newest,cc.forestapp +Mawaddah Nabil,https://lh3.googleusercontent.com/a-/AOh14GjnmmaAs_HyltkX3m4n8NHlceZol0Ly3dwf6Rk4tOg,"i want to love this app but lately after once i open this app, then the second time i want to open it, it just doesnt open i dont know why, so i need to keep uninstall and reinstall back and it annoyed me",2,0,,2020-03-23 13:28:49,,,newest,cc.forestapp +Mphakamisi Masuku,https://lh3.googleusercontent.com/a-/AOh14GiJDhsuxBGNrHw0K_ODPpQxt7M2U0_jpAgCoT85,"Study bunny is better, and this app blocks you from the premium features. Let alone the thought of buying more dull features in this dull app. Meh",2,0,,2020-03-20 14:31:02,,,newest,cc.forestapp +Hani Awwad,https://lh3.googleusercontent.com/-4kuDPAQRQFQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPqI2Fu9z5K4_D7f0uEjegY_qNvJQ/photo.jpg,Too much advertisement. Not motivating nor relaxing,2,0,,2020-03-19 13:57:48,"Hello, +Sorry for the inconvenience. + +You can consider purchasing the Pro version to enjoy the app without ads. +There are additional features in the Pro version, like syncing between different devices and even planting real trees in Africa +. +Feel free to contact us if you have further questions. :)",2020-04-06 14:07:49,newest,cc.forestapp +Kriti Binani,https://lh3.googleusercontent.com/a-/AOh14GiadcDcGH-ITD95n-zdS-E-bqM0BEhWHVBxzuFbEA,Very disappointed. It kept crashing. I installed it back twice but it would delete previous trees. I loved the concept but these app didn't work for me,2,0,,2020-03-18 19:35:14,"Please contact us via our in-app feedback system! + +To visit our in-app feedback system, please go to Settings and enter our FAQ first. + +Once there, please tap on the top-right icon and you should be able to contact us. Thank you and sorry for the inconvenience.",2020-04-06 14:11:28,newest,cc.forestapp +vishal das,https://lh3.googleusercontent.com/a-/AOh14Gh2Ge20OfKKKxf3PkOKwybV15dOefkYSc2WW4a4Bg,The app is crashing and not working . plz help. -XDAOfficial . Edit: Now I can't even sign in !! All settings are in Mandarin !!!,2,0,,2020-03-17 06:48:06,"Hi, +That doesn't sound good! Please get in touch with our support team for further assistance regarding this issue: android.support@forestapp.cc +Thank you in advance for your support! +- Forest",2020-02-29 18:24:31,newest,cc.forestapp +A H,https://lh3.googleusercontent.com/-P0xAf8fF0Nk/AAAAAAAAAAI/AAAAAAAADgA/AAKWJJOJ9wc49Y-lYSSfBRECJ2iiNbbp1g/photo.jpg,Please give us a way of disabling the red notification dot. It serves no purpose if I can't tell what it's for. Get rid of it or make it more clear what it's indicating. UX should never be an afterthought.,2,0,4.14.2,2020-03-16 04:59:28,"Hi, +Could you please manually sync your data in the Settings page and try to re-log in and see if it solves the problem? +To log out, please tap your username in the Account section of the Settings page, enter your profile and scroll down to the bottom where the ""Log out"" option is. Thank you!",2020-04-06 13:37:35,newest,cc.forestapp +thiz bee,https://lh3.googleusercontent.com/a-/AOh14GijqpSTYQYXCa8PoglMbHOl04woBM9THXAXaNzuQg,"I like this app, but its useless. If i go on a different app, it just gives me a warning and carries on. Would be better if there was some sort of consequence for using other apps.",2,0,4.14.2,2020-03-14 13:22:51,,,newest,cc.forestapp +Wini N,https://lh3.googleusercontent.com/-ssvm52wGHX0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPFNFL8YcdFSz3xXEsaMM71If0Wjw/photo.jpg,"I used to really love this app, but lately it won't notify me when the timer is up. It's hard to keep track of how much you're working",2,0,4.14.2,2020-03-14 03:10:23,"Hello, +Could you please check if you have kept your screen on when you are planting? (This is possibly the reason for no notifications.) Please contact us via the in-app system if the problem remains. Thank you. - Forest",2020-03-14 04:33:43,newest,cc.forestapp +Penny Wong,https://lh3.googleusercontent.com/a-/AOh14Gjn2OlreXDpdEZCJvtlDBM9D62jw7HuYkJbLwvX_g,It is a good apps but I can't open it since the second times. It showed it had frequently crashed. I need to uninstall everytime,2,0,,2020-03-12 05:07:18,"Hi, +Could you please provide us with your phone model, Android version as well as Forest version number? Thank you and sorry for the inconvenience. - Forest",2020-03-14 05:27:06,newest,cc.forestapp +Yvette Tee,https://lh3.googleusercontent.com/a-/AOh14Gjz7jMn1tPNPwCgw6PwqetXNoVFjMApBXXa9i5okms,Cannot create new tags. Even deleted a few to test if it was because I had reached an undeclared quota,2,0,4.14.2,2020-03-10 23:11:42,"Please contact us via our in-app feedback system! To visit our in-app feedback system, please go to Settings and enter our FAQ first. Once there, please tap on the top-right icon and you should be able to contact us. Thank you and sorry for the inconvenience. - Forest",2020-03-11 14:15:59,newest,cc.forestapp +Jordan D'Souza,https://lh3.googleusercontent.com/-XL7D498I210/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOLjJlf4i7pVrjrKIQ7DGl5OwW1GA/photo.jpg,"Great app to keep focused but too many glitches as you can tell from other reviews. For me it has crashed in the passed. Currently the problem is that the vibration alarm doesn't come on when I'm done my timer, so it's literally failing at it's secondary job, to keep time of your session (1st job is to keep your phone away from you during your study session). Because of the glitch, I have missed a bus a couple times b/c the timer didn't ring. I am displeased. Also the new updates seem unoriginal",2,0,4.13.0,2020-03-07 21:12:14,,,newest,cc.forestapp +Parinitha P,https://lh3.googleusercontent.com/a-/AOh14GiWorJamHNrcFftp50T-xvT17Ug4vOymAslPOpQUQ,"It was a great app but after a couple of days it crashed and stopped working so I had to uninstall it. I'm reinstalling it, let's see if it happens again.",2,0,,2020-03-07 15:37:15,,,newest,cc.forestapp +oppo sum,https://lh3.googleusercontent.com/-kxyCNIaKSrk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOv6x_u9Uuqxtv51Lo4u7IRj8uiEw/photo.jpg,Confusing and what they don't tell you before you download is that you have to pay for mostly all the features,2,0,4.14.2,2020-03-07 03:54:30,,,newest,cc.forestapp +bunny jungkook,https://lh3.googleusercontent.com/-nWTR-WgMDXE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOJBi-jqmLlVown6zsgcJ67AaJ3hg/photo.jpg,I installed it and used it only once..After tht i cant open it..please help me i really want to use it bcs i've already purchase for premium and i dont want my money to go on waste,2,0,4.10.7,2020-03-07 02:28:00,,,newest,cc.forestapp +Lakshmi V,https://lh3.googleusercontent.com/a-/AOh14GgqTWmYoULqD7h6WsQYGa74JAkA8Bp6zM8ZqezImA,"I'm a pro user, worked great initially but it is not opening and continuously stopping. Please fix this asap.",2,0,4.14.1,2020-03-06 05:53:27,"Hi, +Could you send us the exact steps to reproduce your issue at android.support@forestapp.cc? Sorry for the trouble.",2020-02-12 18:40:58,newest,cc.forestapp +Melissa Pike,https://lh3.googleusercontent.com/a-/AOh14GgJHhfKdn0DKBo_P8dwUxZdAKRK_2WwSEHhjB9vYvY,This has helped me so much ❤️ I love the app but I swear my coins disappear?!? Anyone else having this issue?,2,0,4.14.1,2020-03-05 17:12:42,,,newest,cc.forestapp +Yuxu Niu,https://lh3.googleusercontent.com/a-/AOh14GhcSkM-g939cgkgNZ8YL-OVfTxxOCvWiXbqnec_hg,Crash crash crash always*,2,0,,2020-03-05 09:37:06,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problem to android.support@forestapp.cc? We will investigate the problem further. +- Forest",2020-03-14 05:30:36,newest,cc.forestapp +Alahni Bradford,https://lh3.googleusercontent.com/-cFHUTYyO3Us/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNKzDB_eTGVzTeYT3G8F26JJQ4H0A/photo.jpg,"Pretty good app. The thing I don't like about it is that you can't leave the app or it will reset your progress. I use my phone for homework a lot, so this made it inconvenient to use. So far I've had better success using pomodoro timers instead. Maybe make it where you can whitelist certain apps so that you can use them?",2,0,,2020-03-03 04:09:18,,,newest,cc.forestapp +Squirrel Ninja,https://lh3.googleusercontent.com/a-/AOh14GhrsxyLcsDpKzliJLUMobuLIuogXNrrQjIgEJm2Ow,"Cool concept but an app like this requires too much focus of its own which only pulls attention away from your intended project. Maybe it would be better with a more comprehensive tutorial but I doubt it. I prefer something straightforward, like Screen Time.",2,0,4.14.1,2020-03-02 15:17:43,,,newest,cc.forestapp +Dhanvi,https://lh3.googleusercontent.com/a-/AOh14GgtGMgPkQmtRMriu6YufxU31v8NL2G9A281LwooCLc,"Hi, I just purchased the pro version for this app but it seems to be crashing.",2,0,,2020-03-01 08:58:22,,,newest,cc.forestapp +kookie kookeen,https://lh3.googleusercontent.com/a-/AOh14Ght_76r0Ant77bzhCC7Yl1zZJzrgrHHS9yuBJ77zw,"I really love this. But when I want to use it for second time, this apps crashed. I've uninstalled for many times but it still the same. Please do something",2,0,4.14.1,2020-03-01 08:51:30,,,newest,cc.forestapp +Sumu Sumu,https://lh3.googleusercontent.com/-eTHMHT2Z4vw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPepH0uRulsw-sleT38WLfsuymGqQ/photo.jpg,Good,2,0,,2020-03-01 04:31:14,,,newest,cc.forestapp +Fiona Morales,https://lh3.googleusercontent.com/a-/AOh14GgPvRFYDXe7Dh7AeCJEtu11fZcA2scEx0sjxFga,Updated to the latest version and the store would not load anymore plus my trees planted for the day does not record anymore,2,0,4.14.0,2020-02-28 16:20:54,"Hi, +Sorry to hear about the trouble. Our support engineers are currently working on this issue and we shall fix it ASAP. +For further assistance, contact our customer support at android.support@forestapp.cc :) +- Forest",2020-02-29 18:15:51,newest,cc.forestapp +Raghad Munir,https://lh3.googleusercontent.com/a-/AOh14GhThyPYlDh8QmN9uGmaWWLpWH3S0b12yLh_dQvp,"So it was good until yesterday .. Whenever I tap on the store it keeps refreshing and never opens, I can't unlock any tree or even check them out. I sent a picture . Thank you for the quick response.",2,1,4.14.0,2020-02-28 16:09:02,"Hi, +Sorry to hear this is happening. Could you please send us screenshots related to this issue at android.support@forestapp.cc? We’ll fix it asap. Thank you for your patience. +- Forest",2020-02-28 15:41:45,newest,cc.forestapp +곰,https://lh3.googleusercontent.com/a-/AOh14Gh3LNhhDPJA3RwZ6l2kTxWQwsrvCuAxvXyOe5ab,I can't even enter the shop :( I want to get more trees but the app just keeps loading...,2,0,4.14.0,2020-02-28 13:40:07,"Hi, +Sorry to hear this is happening. Could you please send us screenshots related to this issue at android.support@forestapp.cc? We’ll fix it asap. Thank you for your patience. +- Forest",2020-02-28 15:38:53,newest,cc.forestapp +Sara maheen,https://lh3.googleusercontent.com/a-/AOh14GhgRYIvzv_4DIT3ArXDiTClM92MENozpM-FmExM,I like this app.This is a wonderful app.I can focus on my studies because of this app,2,0,4.13.1,2020-02-28 13:37:52,"Hi, +Thank you for the rating! Don't hesitate to give us a positive review if you enjoy the app. :) +- Forest",2020-02-28 15:39:21,newest,cc.forestapp +barta cristian,https://lh3.googleusercontent.com/-LPk7kwIj210/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO5iABYcfvNjCKUyhldk2Er1RLnNg/photo.jpg,"I just bought the pro version, great app but some menus fail to load, achievements, store and so on just load continously, fixing this would be great. I reinstalled the app but it did nothing. Also random menus sometimes fail to open completely.",2,2,4.14.0,2020-02-28 06:51:44,"Hi, +Sorry to hear this is happening. Could you please send us screenshots related to this issue at android.support@forestapp.cc? We’ll fix it asap. Thank you for your patience. +- Forest",2020-02-28 15:52:46,newest,cc.forestapp +Bhumika Sharma,https://lh3.googleusercontent.com/-WbMmgHGYmp0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJORIuzZKbQ7xbBIcfEWDsg15DPIqA/photo.jpg,It does not stop you to open YouTube so it's not that good for me .........................,2,0,4.8.5,2020-02-26 15:44:47,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2020-02-29 20:31:26,newest,cc.forestapp +PokeMMO ToneZ,https://lh3.googleusercontent.com/a-/AOh14Gjy6UTLS4bjsygrfMpRTfl-BjEnZvrlWjQwixMS2A,"Do you wish to NOT be a retard? Well... too bad. Simply owning this app means you acknowledge how useless you are to life and should, instead of uninstalling the app, uninstall yourself irl. 2 stars because the app is not entirely useless. It signals to others that you're a complete moron with no social capabilities.",2,0,,2020-02-26 08:33:49,"Hi, +Is there anything we can help you with? Feel free to contact us at android.support@forestapp.cc specifying the issues you have encountered. We are more than glad to assist you with your focus journey! :) +- Forest",2020-02-29 20:32:21,newest,cc.forestapp +Minnu Abraham,https://lh3.googleusercontent.com/a-/AOh14GiGOB7VDj3U-XMizuDhAKr3CpmvWRCldKsUY5hp,"I really like this app..and helped a lot on mobile usage..but after unlocking 3 or 4 tree species, the app wont open ...the same happened after installing the second time",2,0,,2020-02-25 15:04:29,"Hi, +Vivo phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-02-29 20:36:22,newest,cc.forestapp +Conchúr Ó hÓgáin,https://lh3.googleusercontent.com/a-/AOh14Gic_aHcB7yR_S76Bj72yhZ311PSY05gGxjorRMr,"I really love this app, but I can't find any way to make it work on my new (Huawei Y7) phone! I've followed all the instructions in the FAQ and tutorials online, but my trees still continue to grow regardless of whatever other apps I'm using. I hope this compatibility issue is possible to fix and that it gets fixed soon, because I absolutely love this app otherwise.",2,8,4.13.1,2020-02-25 14:53:21,"Hi, +That doesn't sound good! Please get in touch with our support team for further assistance regarding this issue: android.support@forestapp.cc +Thank you in advance for your support! +- Forest",2020-02-29 20:36:40,newest,cc.forestapp +ShutThe7Up,https://lh3.googleusercontent.com/a-/AOh14GigYb32AIpmcKEgN0JRzv5bN91CBAkIjVeghzYLjw,"After I bought a new tree or switch from the regular one, none of my trees die when I switch apps....this is disappointing",2,0,4.13.1,2020-02-25 03:57:46,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2020-02-29 20:39:06,newest,cc.forestapp +Nasala Shakya,https://lh3.googleusercontent.com/a-/AOh14Ghy2N6gpojxx4vSEe0VqHYzlkm713mLYU-Q3oxe1g,Love the concept but always keeps crashing... Please do something about it!,2,1,,2020-02-24 08:16:48,"Hi, +Vivo phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-02-29 18:21:44,newest,cc.forestapp +Ved Kapur,https://lh3.googleusercontent.com/a-/AOh14Ghpq1r6VWd5HkRC9iuCbU1bSyv_FAX5tv0_aElh,I find the concept of this app absolutely stupid I don't think people are gonna care about if a virtual plant dies if u use an app and the only thing it does is give u a notification as an incentive. What the app should do is whenever someone opens an app forest should open and display over the app this will prevent others from casually using other apps while their work is in progress.,2,0,4.13.1,2020-02-21 13:58:21,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2020-02-29 18:34:28,newest,cc.forestapp +aqbar_ 281,https://lh3.googleusercontent.com/a-/AOh14GjZlkXl27b63HOIxv6Y0ZXHmtu-CdGcPjXGAaXh,"Why its suddenly requesting to access my phone location information? I didnt see any concern for this app to access location information.. And when i rejected, the app wont launch at all.. Keep sending me to my homescreen.. Dev better have an explanation b4 i do something as im a forest pro user.. I didnt pay to have fishy app here.. Replying to u dev: how im gonna do that if i cant even open it?? bcs i will never give my location access to u",2,0,,2020-02-20 11:32:30,"Hi, +Oppo phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-02-29 20:05:19,newest,cc.forestapp +Chloe S,https://lh3.googleusercontent.com/-oY_9WYChGzA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPJ7uWWEJsoZeIPdz03ttt2UjblDA/photo.jpg,my app keeps kicking me off after i open it,2,0,,2020-02-18 11:10:46,"Hi, +Oppo phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-02-19 16:19:11,newest,cc.forestapp +Charisse Abiera,https://lh3.googleusercontent.com/-R_eF7bETLZM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPcxNcsYHBXVgjnbrcH_d8wPBwjVA/photo.jpg,Used to really love this app and it really helped me start working until I found out that none of my trees die when I switch apps. Tried all the instructions in the FAQs section of their website but nothing worked. Great idea but super disappointed it doesn't work in my phone.,2,24,4.13.1,2020-02-18 10:37:43,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2020-02-19 16:19:26,newest,cc.forestapp +Lynn Doe,https://lh3.googleusercontent.com/a-/AOh14GgFUuVCoa-QHp7ty9nqAxWh6vHHszJedW2LcJAFQg,"It was working fine until recently, I bought new bush but when I have successfully planted (it told me it was successful) I saw it planted the last tree I had chosen on previous study session and 4 out of 7 trees were dead (even tho it said I planted 7 successful trees). The notification also doesn't work",2,35,4.13.1,2020-02-17 20:35:44,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problem to android.support@forestapp.cc? We will investigate the problem further. +- Forest",2020-02-19 16:30:15,newest,cc.forestapp +Veraljn _,https://lh3.googleusercontent.com/a-/AOh14Ggycy9it2zniLs3V8JTzDB8HUBEcB4-0YOLxagQ,"It is a great app, allows you to stay focused and not use your phone. But once I update the lastest version of the app and bought the premium pass, the app keeps on crashing. My phone is Android version 9.",2,0,,2020-02-17 11:31:38,"Hi, +Vivo phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-02-19 16:32:41,newest,cc.forestapp +Ridhima Bhayana,https://lh3.googleusercontent.com/a-/AOh14Gi2Iv43G7KTOOeMfhRzH1z6oroDa_IDgYlKGbypXg,Earlier it was great. But now keeps crashing,2,0,4.12.2,2020-02-17 08:24:37,"Hi, +Your app is outdated. Please update Forest to the latest version (4.13.1) and see if it solves the problem. +If you continue to experience issues, please reach us at android.support@forestapp.cc. Thank you! +- Forest",2020-02-19 16:33:46,newest,cc.forestapp +Michalina,https://lh3.googleusercontent.com/a-/AOh14GhE6oWKb3vFZp0KnhtfGCnrnXwQSPn34ITyQ8Et9A,I can't cancel my subscription! How can I do that?,2,0,4.13.1,2020-02-16 14:45:48,"Hi, +The free version of Forest is completely free of charge to download and use. The Pro version is a one-time purchase, meaning you're not charged on a regular basis, so there's no need to unsubscribe. Thank you!",2020-02-16 15:00:44,newest,cc.forestapp +Danny Wilkins,https://lh3.googleusercontent.com/-PtDcPUxt08A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMN39q8xyHo69Day93fI49dDJUSjg/photo.jpg,This app is just impossible to use without the whitelist functionality which got removed from the free version. Great shame.,2,0,4.13.0,2020-02-14 08:24:54,"Hi, +We are sorry for the inconvenience. As independent developers, we don't take any investment from venture capitalist. and thus we have to strive hard for the operation of Forest. To provide better and stable service and for the long-term product plan, we need to put some features in the Pro version. We kindly ask for your understanding. +- Forest",2020-02-15 17:31:56,newest,cc.forestapp +Rupesh Ganguli,https://lh3.googleusercontent.com/a-/AOh14GiWGkdg77W1-HkZyd6mS4ksLhQ6ShcJJN3tItvwUw,Initially app was working nicely but now since last 15 days its not working at all i tried its not opening at all i tried uninstalling and then restalling but same problem app is not opening at all,2,0,,2020-02-13 08:16:05,"Hi, +Vivo phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-02-15 17:42:46,newest,cc.forestapp +Dmitry Bogdanov,https://lh3.googleusercontent.com/-uz26orNwvis/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPsnG-dNGYBuhQGpM5cMeA04DvlPg/photo.jpg,"It submits data to Facebook (found this via reviewing my Off-Facebook Activity). Please, explain what is being shared. Uninstalling. Update. Why Forest should send ""basic"" user data to Facebook in the first place without an explicit consent? Correct me if I am wrong and you do provide a disclaimer on user data. Not all of the user base would want to be discoverable by ""Pro"" users.",2,0,4.13.0,2020-02-12 14:02:26,"Hi, +As previously explained, Forest does NOT send any data to Facebook. Pro users can only see their Facebook friends who have 1) connected their Forest account to Facebook AND 2) allowed FB to share their friend list with Forest. Please reach us at android.support@forestapp.cc if you have other concerns so we can answer in further detail. +- Forest",2020-02-13 07:53:36,newest,cc.forestapp +Dahlia Claudine May Perral,https://lh3.googleusercontent.com/a-/AOh14GiXTunjp8kCD1Jg-EdPPGTnPdFGvFyJTGV2EecyRA,Waa supposed to try premium but my payment won't push through. It keeps saying that I have the wrong google password when in fact I inputed the correct one.,2,0,4.13.1,2020-02-12 07:50:58,"Hi, +Sorry for the inconvenience. As app developers, we don't interfere with payments that are dealt by Google Play. Please inquire at the official Google Play for assistance. +- Forest",2020-02-12 18:41:54,newest,cc.forestapp +Sourabh Luniya,https://lh3.googleusercontent.com/a-/AOh14Gibbh_RZh0FZT0lZhlGC6Ww2f0tw8j_3Fe_-TlHCw,"I don't know why,but the app isn't supporting my phone.It was good till 2 days and later on it stopped responding.But I do appreciate the thought you have put behind it.",2,0,,2020-02-11 16:07:47,"Hi, +Could you send us the exact steps to reproduce your issue at android.support@forestapp.cc? Sorry for the trouble.",2020-02-12 18:45:03,newest,cc.forestapp +Sylvia Leung,https://lh3.googleusercontent.com/a-/AOh14GhTK12fTGqaL2pvvCYJ_zUltdrhqAWQZ99c-HWk8A,The app stop responding for many days already! It is disturbing that it stops after 5 secs whenever i open the app - STILL STOPPING,2,0,4.12.2,2020-02-11 12:59:13,"Hi, +Your app is an outdated version. Please update Forest to the latest version (4.13.1). +If you continue to experience issues, please reach us at android.support@forestapp.cc. +- Forest",2020-02-12 19:28:49,newest,cc.forestapp +Michael Bagtas,https://lh3.googleusercontent.com/-H8AmIjzzJ28/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO-4Isv3wU6EpxI9JEsaE3s-2WKAQ/photo.jpg,It's okay,2,0,,2020-02-10 12:41:07,"Hi, +Thank you for the rating! Don't hesitate to give us a positive review if you enjoy the app. :) +- Forest",2020-02-11 08:51:22,newest,cc.forestapp +Seth Nielsen,https://lh3.googleusercontent.com/a-/AOh14GhCgytQ9mHMzWOXM1pVgP0ogL3N-uHkGG-e3WHeG-U,"It's an interesting idea, but this app missed some extremely important features, namely: a landscape mode, as well as a custom notification sound. Why? Those are extremely easy features to add! My use case is placing my phone on a stand in landscape mode so I can charge it while at work. I want a custom notification sound at work, and I want to be able to watch the timer go down without the screen stuck in portrait. Also, I keep the screen on, and the app disses me because I have the app open.",2,10,4.13.0,2020-02-08 21:21:43,"Hi, +Thank you for the feedback. You can change the notification sound for Forest in your device settings. We will consider adding support for a horizontal mode. If you have further suggestions or questions, please send us a ticket at android.support@forestapp.cc. +- Forest",2020-02-11 09:18:54,newest,cc.forestapp +Ravyn Benson,https://lh3.googleusercontent.com/a-/AOh14GgRtSgNjql0e7kPKMQAGGi-4MdCIc6oomNT0PTpDQ,"It's motivating, but pro mode is a disappointment. Now rather than being able to watch an ad for double coins at the end of a session I earn the same base coins with the option to pay real money for increased coin earning. I already paid for pro mode! And pro mode feels entirely necessary for the white listing feature. Without it even apps like a music player or calculator, that are sometimes required to be used while you are focusing, will kill your tree. I feel ripped off.",2,15,4.13.0,2020-02-06 15:29:00,"Hello, +As independent developers, we don't take any investment from venture capitalist. and thus we have to strive hard for the operation of Forest. In the Pro version, you can still enable ads for rewards in the Settings page. +- Forest",2020-02-08 03:16:25,newest,cc.forestapp +Dr. Dumpling,https://lh3.googleusercontent.com/-4ObZQDDtxeo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNO5Cwr8bjcrjih9ZSiI1Npif5KLg/photo.jpg,I wish they had a chart on where we could see the other participant's timing...this could inspire us .,2,0,,2020-02-04 18:43:10,"Hi, +We are delighted to inform that this feature has been implemented. In the Pro version, users have access to friend's and global rankings, and they can find new planting partners there as well! :) +- Forest",2020-02-05 17:47:12,newest,cc.forestapp +CHILSON H. ZERDA,https://lh3.googleusercontent.com/-gMt_TF5m-ps/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMt8ffcj-ATFw9vQ8L0idUNAhCPYQ/photo.jpg,"Updated: I did not download the app elsewhere, the chinese language came out after i cleared the data of the app because of the crashes. It came back to normal after reinstalling it. Another update: the app crashes again after it, there is really something wrong with your app here",2,0,3.4.1,2020-02-02 16:09:15,"Hi, +Realme phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-02-05 17:38:07,newest,cc.forestapp +Life Journey Of Z,https://lh3.googleusercontent.com/a-/AOh14Gji13W46mc0o6zgcmbUZizRgUPfvlNQ13amLcARUw,"It is good app but when I update it, it stopped working",2,0,,2020-02-02 15:18:41,"Hi, +We have relayed this issue to our developer team and we are working on it. Sorry for any inconvenience caused. Please update the app as soon as a new version is out as this issue may be fixed there.",2020-02-05 18:05:53,newest,cc.forestapp +Sudev Alampalli,https://lh3.googleusercontent.com/-TvY1-eXu9Ck/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPgpxKuTj95NgoLYj_7b7s3XB6Www/photo.jpg,I had the app for the past two years. I opened it after around a fortnight and it did not open. It just kept crashing. I tried re-installing the app but it still kept creashing. But it was an awesome app when it used to work.,2,0,4.13.0,2020-02-02 11:58:24,"Hi, +We have relayed this issue to our developer team and we are working on it. Sorry for any inconvenience caused. Please update the app as soon as a new version is out as this issue may be fixed there.",2020-02-05 18:04:56,newest,cc.forestapp +shivanshi sharma,https://lh3.googleusercontent.com/a-/AOh14GhuPbql3JVLVVHtygyhQCgqBGooj2Sp8oW178iWHw,The app is good but it automatically exits after a while and just doesn't open after.I have to uninstall and reinstall again and again. It gets tiring after a while.,2,1,,2020-02-02 09:34:46,"Hi, +Vivo phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-02-05 18:04:37,newest,cc.forestapp +mohadese pourhosseini,https://lh3.googleusercontent.com/-p_fefMrmZLI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO8C79fuWB9zbUlxsM8gRnADVUjRg/photo.jpg,"When my phone is ringing, although I didn't answer,my tree is killed,what should I do???also voice call or video call in what s app cause the kill the trees",2,0,4.13.0,2020-02-01 09:43:22,"Hello, +We are sorry for the inconvenience. If you wish to answer calls during planting sessions, we recommend that you upgrade to our Pro version, which gives you access to the whitelist feature that allows you to add apps you wish to use while planting. We hope you consider. Thank you! :)",2020-02-01 15:44:14,newest,cc.forestapp +Roselyn 05,https://lh3.googleusercontent.com/a-/AOh14Giw9prod4MBx6guS25rAdIycDFrm0NXUJN5_1NCQA,"When i first installed it, it was working perfectly fine. But the next day after that, I can't even open the app anymore.",2,0,,2020-02-01 07:03:46,"Hi, +Vivo phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-02-01 15:44:41,newest,cc.forestapp +Harsh Kumar,https://lh3.googleusercontent.com/a-/AOh14Ghg0TMMiv53ZxJ_zyHJr1vZolMpgVOHb4gP3vANzw,The sad thing is that it didn't allow to sync data. It requires pro version to be purchased,2,0,4.13.0,2020-02-01 02:20:34,"Hi, +We are sorry for the inconvenience. As independent developers, we don't take any investment from venture capitalist. and thus we have to strive hard for the operation of Forest. To provide better and stable service and for the long-term product plan, we need to put some features in the Pro version. We kindly ask for your understanding. +- Forest",2020-02-01 15:46:32,newest,cc.forestapp +chilehead craig,https://lh3.googleusercontent.com/a-/AOh14Ggw_pUOC7Oa7cxwL9_tve1W7pqEQdss-EAcAuvRIg,"""Price"" went up with latest update. Don't update until you buy all the trees you want! (Example, bear paw now 2000 coins).",2,0,4.13.0,2020-01-31 13:44:07,"Hi, +We're sorry for the unpleasant experience. A new pricing mechanism was introduced in our recent updates. While the prices of some trees have increased, those of the rest have decreased - some plants only cost 300 coins now. You can earn coins faster by completing longer sessions or unlocking achievements. :)",2020-02-01 15:47:41,newest,cc.forestapp +naren0105,https://lh3.googleusercontent.com/a-/AOh14GiGWoCAUgfZWXEf85c4rnKVPskKDNkRWsJnINZTCg,Keeps clossing,2,0,,2020-01-30 08:54:55,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problem to android.support@forestapp.cc? We will investigate the problem further. +- Forest",2020-01-30 15:19:00,newest,cc.forestapp +Banana Johnson,https://lh3.googleusercontent.com/a-/AOh14GhtNfPNvCH8Qj44YWStfl5hiSNYHjs8TfKldn56,It crashes upon opening after I updated it.,2,0,,2020-01-30 03:58:44,"Hi, +Realme phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-01-30 15:20:13,newest,cc.forestapp +kate pzlr,https://lh3.googleusercontent.com/-BgBsZFgMFYU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO-3lHbuvIQlAbgH0w_Bg8I-MIRzQ/photo.jpg,I cannot log into the application somehow. Please help me!!,2,0,4.13.0,2020-01-28 21:22:38,"Hi, +Please get in touch with our support team for further assistance regarding this issue: android.support@forestapp.cc",2020-01-29 16:52:05,newest,cc.forestapp +K. SENSEI,https://lh3.googleusercontent.com/-dNZir6bqSKU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNttNqZMVXkuzTFFZ7YDBQM6jtlXQ/photo.jpg,I like the options available but for some reason I can still go into other apps when I am planting. Only after I go back into the app does it give me the notification. Could I get some help?,2,0,4.13.0,2020-01-28 09:00:55,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2020-01-28 17:31:58,newest,cc.forestapp +Amin M,https://lh3.googleusercontent.com/-AbwRWgU0FOU/AAAAAAAAAAI/AAAAAAAAAGA/AAKWJJO8XR3SL0VxHYrjhtQB_Jld4OjBCw/photo.jpg,"First, thanks to the forestapp team for making this brilliant app. Second, in Iran we cannot pay for the Pro version. Please find a solution to this problem. :(",2,0,4.13.0,2020-01-28 05:48:45,"Hi, +Sorry to hear you're unable to unlock the Pro version. We have enabled all countries that Google Play allows to make in-app purchases to buy our Pro version. Yet as app developers, we don't interfere with payments dealt by Google. If you're still unable to get the Pro version, please inquire at Google Play for further assistance. +- Forest",2020-01-28 17:36:36,newest,cc.forestapp +king stratton,https://lh3.googleusercontent.com/a-/AOh14GjGVDYOPBrpjeKsnQCes0-eVZOJ0P99bFmVfK4q,The app won't open anymore and before that i couldn't log into my account. Pls sort out! One suggestion I would like to make is the option to arrange the trees and bushes the way we want. It's a good app just struggling to get it to work.,2,0,4.13.0,2020-01-27 13:48:53,"Hi, +We have relayed this issue to our developer team and we are working on it. Sorry for any inconvenience caused. Please update the app as soon as a new version is out as this issue may be fixed there.",2020-02-05 18:01:45,newest,cc.forestapp +Reet Kang,https://lh3.googleusercontent.com/--B6vYNUAT-Q/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOc5mhIxSYx79Jdf58OvCjLNhGv4g/photo.jpg,Worst app ever. After updating app its not even opening. How am i suppose to use ot now? Initially as i started using it was ver good but it got bad after updation! What's the matter with it?,2,0,,2020-01-27 09:45:58,"Hi, +Vivo phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-01-28 17:41:29,newest,cc.forestapp +Diya Soni,https://lh3.googleusercontent.com/-OpJmKRYkzR8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOTLh6wxRLCfCUShSTk8al53fcDDg/photo.jpg,The app is very good but for some day when i click on plant the app stops working,2,0,,2020-01-27 05:13:22,"Hi, +Could you please update Forest to the latest version (4.13.0) and see if it solves the problem? +If you continue to experience issues, please reach us at android.support@forestapp.cc. Thank you! +- Forest",2020-01-28 17:42:25,newest,cc.forestapp +Isha Singh,https://lh3.googleusercontent.com/a-/AOh14GiGNfaXhGz9WJVICqc4aka9ooz7tjeCg4eA3tWg,"Not worth! When i use other apps it keeps the timer on. What's the reason behind it god knows! I can't even get other species of plant as bcoz as soon as i try to do so..... It shows 'The forest app has stopped' and just after a second if i reopen the app then except for this function of get other species, other every function i can perform.",2,6,4.13.0,2020-01-26 15:35:57,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2020-01-26 16:37:54,newest,cc.forestapp +Mamatha t,https://lh3.googleusercontent.com/-WM4Ng3sjVYs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMDGQMdZde3jjvZFw3RaP0gu1l-gQ/photo.jpg,This app is not getting opened pls look after this,2,0,4.13.0,2020-01-26 14:25:42,"Hi, +We have relayed this issue to our developer team and we are working on it. Sorry for any inconvenience caused. Please update the app as soon as a new version is out as this issue may be fixed there.",2020-02-05 18:01:03,newest,cc.forestapp +alxynah,https://lh3.googleusercontent.com/a-/AOh14GiXc9BrGHOVxQpZbAyvvEUvlUwrn6ua1MHrGDe9lw,keeps crashing,2,0,4.9.7,2020-01-26 11:49:47,"Hi, +Vivo phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-01-26 16:36:28,newest,cc.forestapp +Shaszyapr 256,https://lh3.googleusercontent.com/-hLx_U8fijJs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOplEBtFqa5POILKjdAvMwj-eM7vA/photo.jpg,Aneh masa pas masuk ke apk nya malah keluar_-,2,0,,2020-01-26 05:28:29,"Hi, +Is there anything we can help you with? Feel free to contact us at android.support@forestapp.cc specifying the issues you have encountered. We are more than glad to assist you with your focus journey! :) +- Forest",2020-01-26 16:39:07,newest,cc.forestapp +Joel Malissa,https://lh3.googleusercontent.com/a-/AOh14GjMhemGcEsXxNJZ6BTg7Iv4fFNiDTmt8jB-E3R-ybg,"Great app, but deleted it because I don't like the new Santa hat icon Edit: added a star because they replied and reverted the icon",2,0,4.11.4,2020-01-26 04:19:46,"Hi, +Thank you for the updated review. How can we get more stars? If you would like to give us more information on why you aren’t satisfied with our app, get in touch with us at android.support@forestapp.cc so we can try to improve our app. :) +- Forest",2020-01-26 17:02:33,newest,cc.forestapp +AMY LUPTON,https://lh3.googleusercontent.com/-gZXuDcovVVw/AAAAAAAAAAI/AAAAAAAAOAk/AAKWJJMtAzoNRza1hmWPZB6uiyyghNcqFA/photo.jpg,I couldn't restore any of my previous planted trees as the app got uninstalled due to an android technical problem. Very frustrating that I lost those records. Please advise how to restore the history.,2,0,4.13.0,2020-01-25 15:22:37,"Hi, +Unfortunately your data can't be saved on the free version of the app. If you're interested in getting the Pro version to restore part of your data, email us at android.support@forestapp.cc. +If you're a Pro user, contact us via our in-app feedback system so we can assist you further and see if it's possible to recover your data. :) +- Forest",2020-01-25 21:33:31,newest,cc.forestapp +ANU sharma,https://lh3.googleusercontent.com/a-/AOh14GibCD0VDhOM5fNFl78PxP-hawMqcPrqu6iUWoCXGA,Your app was gud but when i did reset my phone and install this again app doesn't work properly i can do whatever i want it doesn't protect me to other apps... If i use other apps while tree is growing they don't die... Your app is really useless,2,1,4.13.0,2020-01-25 02:57:53,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2020-01-25 21:40:25,newest,cc.forestapp +Hiya Bhatia,https://lh3.googleusercontent.com/a-/AOh14GiCjW7mccZc9WdC8ShomsdQcnmZAG0-MfVJFkusQg,"This app is fine but after sometime it won't open and I don't know why. Besides this problem, it works amazing. I would have given it 5 stars but I'm giving it 2 just because of the problem...",2,0,,2020-01-25 02:54:10,"Hi, +Samsung phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-01-25 21:40:37,newest,cc.forestapp +Ahmed Basha,https://lh3.googleusercontent.com/a-/AOh14GgMl6QtYnJmcOY2xW-6N2ZIRYb5O9vVZW19dzof-hQ,This app is good but it works only once or twice a day and then crashes a lot.Need to reinstall it to work again. Please fix this bug.Else i would have given 5 stars,2,1,,2020-01-24 17:30:13,"Hi, +Samsung phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-01-25 21:42:53,newest,cc.forestapp +Kulsoom Islam,https://lh3.googleusercontent.com/a-/AOh14GhF6efKYXqJKgJV5FcTqIu4N2LnpdzlKGwd5gwN4Q,One day I kinda broke my tree and after that it told that If you want your tree to remain nice watch a viedo,2,0,4.8.7,2020-01-24 11:49:13,"Hi, +Could you please update Forest to the latest version (4.13.0) and see if it solves the problem? +If you continue to experience issues, please reach us at android.support@forestapp.cc. Thank you! +- Forest",2020-01-25 21:44:38,newest,cc.forestapp +Cintia Cs,https://lh3.googleusercontent.com/a-/AOh14GiGgVw0_1WEOQ48pcJICsI15GBtwWvXJroXzTT-hg,"Well I like the app and it truly helps me stay focused, combined with some time restriction methods it's good (although those ones are short times plus breaks), achievements are boring and not good enough, they try to make you pay for extra, but the app itself is not exciting enough to pay, the achievements are not really worth it and it's hard to unlock new trees even with pro version. No new campaigns are launched & collecting coins is not an easily achievable task, too hard to get new trees.",3,14,4.15.0,2020-04-02 15:54:21,"Hi, +Thank you for the feedback. As Forest aims to help users beat phone addiction, you can do anything you want and eventually get beautiful trees as long as you don't use your phone for two hours. +We understand that it's hard to work two hours straight, but feel free to take a break! Simply stay away from your phone. :) +- Forest",2020-04-06 18:56:58,most_relevant,cc.forestapp +{s h r i m p i e },https://lh3.googleusercontent.com/a-/AOh14GjMYImQKmm2IPwMseBRPJMqvyPjjL2u1nILtRtJ,"This app is amazing but after one day when I try to open it, it will just go back to my phone home screen. When I uninstall it then install it again, it will work but I will lose my forest and after a day it won't work again. Please fix this issue, I really love this app besides that issue I'm facing.",3,1,4.15.0,2020-04-03 07:39:13,"Hi, +The Vivo system has an error by downloading the correct app version. Please turn off the automatic update in the Vivo app settings for Forest, and reinstall the latest version of Forest from Google Play. Thank you! - Forest",2020-04-06 18:50:19,most_relevant,cc.forestapp +Bee Romeo,https://lh3.googleusercontent.com/a-/AOh14Gi3hGdy6nc8rzKMHi2DvS24ArQwCKKd57PHR85e7Q,"It's really motivating and would be perfect but it doesn't notif if your phone is locked. You'll only know that the time is done when you check the app, only then does it vibrate and notify you. I've followed all the instructions but it still doesn't properly notif when locked. Have to look for a new app :(",3,1,4.14.3,2020-03-31 23:49:13,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problem to android.support@forestapp.cc? We will investigate the problem further. +- Forest",2020-04-06 19:07:36,most_relevant,cc.forestapp +Kirigaya Kazuto,https://lh3.googleusercontent.com/-9DEnNTYoYbI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOmsuTpv7a638zKhPO4xSmh4haaGg/photo.jpg,"Reduced one star because there is a pro version..5 stars rated when there is another pros version?? It cant be, right? Reduced for another star because i suggest that you should have a 'pause session', check it out from the study bunny.",3,1,4.15.0,2020-04-01 15:22:00,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problem to android.support@forestapp.cc? We will investigate the problem further. +- Forest",2020-04-06 19:02:24,most_relevant,cc.forestapp +Aryasree Das,https://lh3.googleusercontent.com/a-/AOh14GiTU_AtLaxhpIMeF8MeYlX3kom2ZhG41iNrNx52nw,"The app is really good, but after some time it keeps stopping! I reinstalled it two times and the third time also, the problem persists. I was forced to uninstall it finally.",3,1,4.14.3,2020-03-26 05:43:44,,,most_relevant,cc.forestapp +dharani moka,https://lh3.googleusercontent.com/a-/AOh14Gh7skVn1RuBF7-wB2gXj4mUgJMXST1khWo8wx_J,"It is a very good app for staying focused while studying, but the problem I'm facing now is that the music keeps stopping at random intervals and I have to unlock the phone to keep the music playing. Please look into this otherwise it's a great app.",3,0,4.14.3,2020-03-21 11:17:37,,,most_relevant,cc.forestapp +Zahra Paran,https://lh3.googleusercontent.com/a-/AOh14GjqkA6ZKCHIPqXUR1ybPYxys6cvPdejbFdVnNf4,This app used to be brilliant. It then began to function regardless of whether you were using your phone or not- essentially just becoming a basic timer. And then now the timer fails and kills trees when youre not using your phone. I just planted a tree only for it to die 20 seconds after when my phone locked.,3,16,4.14.3,2020-03-20 01:18:37,,,most_relevant,cc.forestapp +Mimi Vanchhawng,https://lh3.googleusercontent.com/a-/AOh14GhpABT5Lbsq7nBxYjkx_vMQAAaWiAIT_0SH7Te9Sw,"Helps me stop touching my phone It helps me stop touching my phone. However, there is not much thrill in planting the tree. You cannot select where the tree is going to grow, and eventhough there are number of other trees, it cost so much and earn so little from planting it makes it so boring. It can get quite dissapointing",3,6,4.14.3,2020-03-21 04:23:49,,,most_relevant,cc.forestapp +Jocelyn Nelson,https://lh3.googleusercontent.com/-NBz490NYVS8/AAAAAAAAAAI/AAAAAAAANbA/AAKWJJNLTocxO1guPofeZ5D8LOboCQw05Q/photo.jpg,"Generally a useful app, I've found using a visual reminder to stay focused has helped and working toward unlocking new plants was fun. I found the recent increase in cost to unlock plants demotivating and I've been using the app less since it happened.",3,2,4.14.3,2020-03-16 15:32:58,,,most_relevant,cc.forestapp +prashant g,https://lh3.googleusercontent.com/-5q8a9tYmlis/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMJQCM5v0NFSXqYU4BFxlk4f8auVg/photo.jpg,I have a moto e 1st gen and I updated forest app using Google play. Result. Forest app gets a crash everytime i try to use it. Fix the bug. It runs Android kitkat.,3,0,4.15.0,2020-03-25 11:48:21,,,most_relevant,cc.forestapp +MULTIFANDOM HUMMEL,https://lh3.googleusercontent.com/a-/AOh14Gi69AgdKEigZP1DSTBK0M4f0mLxwH0KlSBYxnTTDA,"It's really cute and motivating. But what I'm missing, would be an option to set a tree to be planted at a specific time.",3,0,4.14.3,2020-03-25 15:25:47,,,most_relevant,cc.forestapp +ag,https://lh3.googleusercontent.com/a-/AOh14GiY90Ya6rqBX3P1hcUA41PLtKT8W_kP9tJsVEDKYA,I love this app but I wish free users could do more without a membership. Like at least they could be able to see the leaderboard... ://,3,0,4.15.0,2020-04-03 09:53:03,"Hi, +We understand your point, but as a start-up, we require assets to keep the company running smoothly. It is after much consideration that we decided to put certain functions in the Pro version. +Forest is a one-time purchase. You'll gain access to all the features once you unlock the Pro version. We hope you consider. Thank you! +- Forest",2020-04-06 18:47:49,most_relevant,cc.forestapp +Vianka Jauregui,https://lh3.googleusercontent.com/a-/AOh14GjhrEeBGsD5IVeYTsK676xpbdvKabAm8SAHNlMfBA,"This app is great! I've used it for a year now, but I find that the app was preferable prior to the update. I really don't like that the plant only changes or ""evolves"" with at least 60 minutes. Now it feels like anything under that does not matter. If I focus for 10 minutes or 50 minutes makes no difference in the app, which is a little demotivating. Please consider changing this. Other than that, phenomenal app.",3,10,4.12.3,2020-01-17 03:55:49,"Hi there, +Thank you for the feedback. In the past, trees also only changed with 60 minutes at minimum, and bushes could only be planted under 20 minutes. We'll make sure to forward your suggestion to our team nonetheless. :) +- Forest",2020-01-17 04:48:41,most_relevant,cc.forestapp +Lyra Lazarus,https://lh3.googleusercontent.com/-9r4mOX1fJsE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMCZT_AmFgvbmUdQCSxV1BafRAqwQ/photo.jpg,"Works great on the phone but had trouble multi-tasking on my tablet. The tablet version doesn't let me open a language learning app (or similar apps for that matter) without sending a warning message and killing my tree, not fun to use when you can't do what you set out to do. Such a shame. EDIT: Thanks for the response, I reinstalled it and tried again but the app whitelist is now only with premium in the current version. :(",3,148,4.12.3,2020-01-15 20:23:36,"Hi, +We are sorry for the inconvenience. As independent developers, we don't take any investment from venture capitalist. and thus we have to strive hard for the operation of Forest. To provide better and stable service and for the long-term product plan, we need to put some features in the Pro version. We kindly ask for your understanding. +- Forest",2020-01-26 01:16:41,most_relevant,cc.forestapp +Tiffany M,https://lh3.googleusercontent.com/a-/AOh14GiQqppteLExzVgxWL6g3nX2WzaWlBg5H5QuNJ62,"This app has been very helpful in the past. I haven't enjoyed the most recent update, though. Hence the 3 stars. If I close the forest app so it's not an open tab, it doesn't send me back to the forest anymore. I haven't changed any permissions, it's all exactly the same. It allows me to bypass the system, which isn't helpful at ALL. Please figure it out with the next update. I would like my forest app back",3,4,4.13.0,2020-01-29 09:44:56,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2020-01-29 16:50:57,most_relevant,cc.forestapp +Rizia Akhtar,https://lh3.googleusercontent.com/a-/AOh14GgN3UMNnsIp2fw04wKVgzPi2N-7Jvuxa_mx6AvU,"The app is very good, but it keep crashing from time to time and I have to reinstall the app. Please look into this",3,0,4.15.0,2020-03-30 03:44:30,,,most_relevant,cc.forestapp +Vijayant Chauhan,https://lh3.googleusercontent.com/-_blK7vQ0Qos/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPqJFPFYgIh8MuApCW0DD2_lKb_fw/photo.jpg,"Please help!! The app keeps crashing after some automatic update. It refuses to open after the crash. Have to reinstall it everytime until it crashes again. Have done this the 6th time. Being a pro user I get to sign in and retrieve the data, but still loses lot of time and momentum doing all this installing and reinstalling thing after each crash. BTW Amazing app helped me focus and have goals in life!",3,5,4.13.0,2020-01-22 17:31:57,"Hi, +Samsung phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-01-26 16:44:05,most_relevant,cc.forestapp +Santiago Czop,https://lh3.googleusercontent.com/a-/AOh14GjT4-AHklI0bpFd2Ko7eTDdFNm3SHqIckWPRfgT0Q,"The app idea is great on itself. However, there are too many options blocked behind the pro version which one would think are basic: whitelist and exporting the progress (changing phones makes all the progress be lost). Moreover, although not essential, some free achievements would also be nice, even if they don't give any coins. I'm willing to change my rating if I see any of those changes, since like I said, the app is quite good already (free version feels like less than a free trial...)",3,3,4.12.3,2020-01-17 01:24:48,"Hi there, +Forest is really happy that you like our ideas. +In the meanwhile, we are sorry for the inconvenience. As independent developers, we don't take any investment from venture capitalists. In order to provide better and stable services, we have our Pro version. Thank you in advance for your kindly understandings. - Forest",2020-01-17 08:05:41,most_relevant,cc.forestapp +Rhea Chen,https://lh3.googleusercontent.com/a-/AOh14GiuMxd1pTOJUNdo0HwZ2-Mi42g4Yq8rHnc-38d0eg,"Amazing app!😍 I love the concept of combining productivity and rewards together. The feeling of satisfaction and joy is just thrilling after your time is up and you successfully planted a cute tree. Only thing that isn't working for me is that the page for buying trees isn't loading. I can't see the trees I want to buy and there's an error whenever I want to buy a sound. To sum it up, I CAN'T BUY TREES OR SOUNDS. Please fix this bug as I want to unlock more trees.",3,39,4.14.0,2020-02-28 09:54:11,"Hi, +Sorry to hear this is happening. Could you please send us screenshots related to this issue at android.support@forestapp.cc? We’ll fix it asap. Thank you for your patience. +- Forest",2020-02-28 15:45:06,most_relevant,cc.forestapp +mohamed adam,https://lh3.googleusercontent.com/-EAvMLewBFrU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPkq2ZU84c1irafVXslXJrGgmGYRQ/photo.jpg,"The fact that the app does not let you use other studying apps that you have on your phone or google to find information is a bit annoying. Currently the only way to get around this is to collect all the information you need before turning on the app, but, that opens you up to distractions and wasting time.I feel like this app is specifically designed for reading purposes only, since I can sometimes finish homework before the timer runs out but the only way to stop the app is to kill the tree.",3,55,4.13.1,2020-02-26 12:50:20,"Hi, +If you upgrade to the Pro version, you'll get access to the whitelist feature which allows you to use apps that you've whitelisted during planting sessions. We hope you consider. Thank you!",2020-02-29 20:32:09,most_relevant,cc.forestapp +CANDACE YUEN,https://lh3.googleusercontent.com/-WtIqnEAom7Y/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM3hhssmoq9GCRonUt1LF1cC6Xylg/photo.jpg,"I'm a premium user and I've bought it for about 3 weeks now. However, I've realized lately that although the timer records the amount if time I've focused, the app doesnt record nor update my data, for example in the friends page it always says that I've focused for 0 minutes when in reality it's a couple hundred minutes already. Please try to fix this problem. Thank you!",3,71,4.14.1,2020-03-03 09:02:27,,,most_relevant,cc.forestapp +Jonathon Baker,https://lh3.googleusercontent.com/a-/AOh14GgU-ioiUC4OnZDrYjCvuD_p_biT2CClH7aQM4Y_Pw,"This app was very helpful up until the last update where they inexplicably took away the ""Lock Forest to Stay in Foreground"" feature. As of right now it's basically useless, but the support staff is great and said they were hoping to bring back the feature! So other than that it would be 5-stars. Don't change the feature that keeps people off their phones",3,77,4.14.1,2020-03-05 18:41:24,,,most_relevant,cc.forestapp +Lee,https://lh3.googleusercontent.com/a-/AOh14GiZIJAotCMz2tDPx9Rlm343CY7l_opMcz-93ws9384,"I kinda miss the old system where time-specific trees styles were the thing. Now you can pick anything after focusing for 10 minutes. It actually takes away incentive to study / focus longer. Nitpick 1: the bracketed (week) has no space after the day, example Monday(week), instead of Monday (Week). Nitpick 2: sharing. It would be nice to share more than just an image of the forest. Perhaps some tree stats? Much like there is underneath the forest itself.",3,20,4.14.0,2020-03-03 21:34:26,"Hi, +Thank you for the suggestion! We'll let our team know about your feedback. -Forest",2020-03-14 05:53:55,most_relevant,cc.forestapp +Nam Eric Doan,https://lh3.googleusercontent.com/a-/AOh14Gjg4IGP8AVNfKTxOAJGyUgAMZi4RUSTJmodb07uXAQ,"I do enjoy this app, but it looks and functions terribly on anything but a mobile aspect ratio. I'm attempting to use this for ChromeOS, on a Pixelbook, but the app is unable to run in windowed mode or resize in landscape mode properly. I am also a pro-user, but the app lacks pro functions. There is no pause feature to be found on either the Android or Chrome extension and deleting records costs an additional 60 coins.",3,34,4.14.0,2020-02-27 21:55:11,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problem to android.support@forestapp.cc? We'd be happy to help!. +- Forest",2020-02-28 16:10:18,most_relevant,cc.forestapp +Diamond Coursey,https://lh3.googleusercontent.com/-LkM1tDMTs9Y/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN5mvTU3WMA-z7Upmzfc-2iPYozDg/photo.jpg,"I've been using this app for a long time and I love it! However, recently, it has been weirdly buggy and my trees die from things like ""Samsung Health"" as well as Snapchat notifications! Even when I don't even look at them, the notifications kill the tree!",3,3,4.14.2,2020-03-12 08:40:54,"Please enables the ""Advanced notification detection"" option on the Settings page. +If the app automatically starts, please add it to your whitelist. +Thank you and we apologize for any inconvenience caused. - Forest",2020-03-14 05:21:43,most_relevant,cc.forestapp +Amanda Percival,https://lh3.googleusercontent.com/a-/AOh14Gii9pYu0s3UUnP9Xk5Ek1BxRwyTkqbxVmM2sR--iQ,I have been using forest since 2017 and had collected over 3000 coins. Unfortunately my phone got stolen and I had to buy a new one. Now when I reinstalled the app it's saying that I need to start collecting again and to log in I need a premium account which I have never had. How can I get my points back? Thank you.,3,0,4.13.0,2020-01-26 12:09:47,"Hi, +Unfortunately your data can't be saved on the free version of the app. Sorry for the inconvenience caused. +If you wish to be able to save and sync your data, please take the Pro version into consideration. +Feel free to email us at android.support@forestapp.cc if you have additional questions about using Forest. :) +- Forest",2020-01-26 16:36:18,most_relevant,cc.forestapp +grace,https://lh3.googleusercontent.com/a-/AOh14GiEvK9t2otZz_22-XaC4p2Vu_C55IEGpI8A_k31lg,"I like the app and it works to improve my productivity, but the notifications almost never show up and the whitelist mode doesn't work sometimes. I wish there was a way to change the ground color for the day/week/month, and it's quite annoying that the flowers are as big as trees.",3,8,4.13.1,2020-02-25 16:39:44,"Hi, +Could you please contact us via the in-app feedback system so that we can investigate the problems further? Thank you for your suggestions and sorry for any inconvenience caused.",2020-02-29 20:35:53,most_relevant,cc.forestapp +Angel Isoc,https://lh3.googleusercontent.com/a-/AOh14GgVNmI8347s9AqFlTw9YETpdD8Srxt-Tniy0Y9K,"This app is really good but I have a major issue with it. It helps you focus, not to get distracted but sometimes I need to a calculator or google or a dictionary I can't because my tree will die!! So I need to exit the app(the tree is still growing) and then I can access google or what not please let the app access certain apps if possible.",3,1,4.12.3,2020-01-18 09:34:31,"Hi, +If you upgrade to the Pro version, you'll get access to the whitelist feature which allows you to use apps that you've whitelisted during planting sessions. We hope you consider. Thank you!",2020-01-18 20:12:36,most_relevant,cc.forestapp +dana,https://lh3.googleusercontent.com/a-/AOh14Ggdqv3nGE6Z2KEQwJqItcfKLHjgj7iIpyb8sk8COA,"i found a way around this app. i always do this, and for the longest time, forest was the app that kept me truly focused cause i dont want my trees dead, but then i found out that if i remove the app from the background while a tree is planting, i can use all phone features & id still get the tree and coins by the end of the time i put. now im just planting trees to gain coins so i can plant actual trees. can this be fixed? i really love the app.",3,6,4.13.1,2020-02-16 17:20:19,"Hi, +Thank you for the feedback. Apps can't run when closed (like swiping up to clear them from recently used apps). Please enable the ""Wither the tree when Forest is closed"" option in Forest's Settings page so that your trees will die once you close Forest. Thank you! +- Forest",2020-02-19 16:37:59,most_relevant,cc.forestapp +Cheryl Tata,https://lh3.googleusercontent.com/a-/AOh14GjC4SH_E1NAC9gU3gahIrZ5GXSnTnABkqBb1kgw4g,"When the screen goes off and you on your phone but did not press into an app, the tree will be killed and waste your efforts. A lot of features are also locked and only premium which doesn't help with productivity. The Achievements sector of the app cannot be seen and the tress dies without reasons",3,1,4.14.1,2020-03-14 08:28:05,"Hi, +Would you please make sure you have turned off the ""Wither the tree when Forest is closed"" option in the Settings? Please turn it off to see if it helps. +Feel free to contact us again if you have any other questions or suggestions.",2020-04-06 13:28:15,most_relevant,cc.forestapp +Nima Iranmanesh,https://lh3.googleusercontent.com/a-/AOh14GiIKwvZu6A_3FifqkGqz6Azi7JMTQutWD8AqddsoA,"Right after installing, I noticed that whitelisting apps is such an important and basic feature which you made available only for premium users. This is such a ridiculous decision for a ""google play editor's choice app"" that im not even gonna bother trying your app any more than 1 minute. - Update: No it's unacceptable that your development team didn't predict the flow of new installations and didn't include any kind of trial period, but fine i'll up my rating to 3 neutral.",3,4,4.13.0,2020-01-26 12:23:30,"Hi, +We are sorry for the inconvenience. As independent developers, we don't take any investment from venture capitalist. and thus we have to strive hard for the operation of Forest. To provide better and stable service and for the long-term product plan, we need to put some features in the Pro version. We kindly ask for your understanding. +- Forest",2020-01-25 21:34:02,most_relevant,cc.forestapp +V. I. V. I,https://lh3.googleusercontent.com/a-/AOh14Gi9T1mxZfCOkMBBYVbmMvElGUuQTmOPrKU8b2aGDg,"I am kind of sad that we are not able to choose where to put the tree on the terraine :( other than that, the app seems great!! Also would be interesting to have the actual forest overview as a widget on your display 💪",3,0,4.14.2,2020-03-15 13:21:49,"Hi, +Thank you for the suggestion! We'll let our team know about your feedback and see if we can work on it in the future. 💪",2020-03-14 04:58:33,most_relevant,cc.forestapp +Tatiana Zarta,https://lh3.googleusercontent.com/-0p4wBmJQQ-I/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOonv3BVGNIclgZd1zpayEWdn96sw/photo.jpg,"I like the app and the idea. I don't know if it's only me but since the app is working in the background all the time and it's a requirement from the app, the battery consumption is quite high. Is there a way of fixing it? The app is already running with locked screen, it is automatically locked. Thanks!",3,20,4.13.1,2020-02-16 14:11:14,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problem to android.support@forestapp.cc? We will investigate the problem further. +- Forest",2020-02-16 14:54:00,most_relevant,cc.forestapp +"Barrera, Gabrielle Louise",https://lh3.googleusercontent.com/a-/AOh14GgWI-LvkfESTfMZYvaMiJdjqMir9oodYPNyNMIwdg,I love love love the app and ever since I bought the Pro version I've had it running in the background and was still able to access other apps I use for studying. The problem is... I can't access the store where you can buy various different trees. So all I'm stuck with are the defaults and the Wisteria tree I redeemed. Five stars if you can fix this problem.,3,19,4.14.0,2020-02-29 23:59:59,,,most_relevant,cc.forestapp +Kimberly Enriquez,https://lh3.googleusercontent.com/a-/AOh14GjY1U8_cnpakPSxVwsqEOSwEEmWYtdc4Dp-QlEx,"It helps tho, but I can't access premium account even if I had enough load credits in my phone network.",3,0,4.14.3,2020-03-22 19:36:13,,,most_relevant,cc.forestapp +Kylle Elizaia Laurena,https://lh3.googleusercontent.com/-aYsYcX1LwCg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPo_xTxQpqRGyyWudGmGu7-yNaDIg/photo.jpg,It really helps in focusing but there is this premium thing so I cannot do many stuff. I think you have to pay or get the premium thing to plant trees in real life but I like how there's this different kind of trees and stuff like it has music!!,3,0,4.13.0,2020-01-23 08:20:37,"Hi, +We are sorry for the inconvenience. As independent developers, we don't take any investment from venture capitalist. and thus we have to strive hard for the operation of Forest. To provide better and stable service and for the long-term product plan, we need to put some features in the Pro version. We kindly ask for your understanding. +- Forest",2020-01-26 16:40:59,most_relevant,cc.forestapp +Saurabh Prajapati,https://lh3.googleusercontent.com/a-/AOh14GhGeIW1Wwxag_jC6YsJ0EPJmbXd-Vnv-qPOvdM4,"This app is good, but it will be extra good if the developer put an option to continous timing for focus. I believe there should not be any kind of limit like 10 min. Remove it or give an option to set custom time in hour and minute.",3,0,4.13.0,2020-02-03 07:44:51,"Hello, +Thank you for your feedback. We will forward your suggestion to our team.",2020-01-28 17:39:55,most_relevant,cc.forestapp +Atharva Dabre,https://lh3.googleusercontent.com/a-/AOh14Gi8NkUBFf1XbLPn9BAS4h-MboPIf_bMj7ehP3XEig,"Great , but why I'm able to open and prolong operate any app immediately after assigning timer . Then after using 3 to 4 apps, "" forest "" gets to know that I'm using other apps and reminds me about my distraction....... So late!! Please fix this problem otherwise it's a great application for Controling phone distraction.",3,0,4.13.0,2020-02-14 11:41:33,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2020-02-15 17:30:12,most_relevant,cc.forestapp +Akansha Singh,https://lh3.googleusercontent.com/-65BaQIynI_g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOfuoQ_54ZRz5xBzCF5_EkrzKnGiQ/photo.jpg,"I like this app but I give only 3 stars because I am unable to bye new plants , whenever I go to Store to bye new plants it always load , loading never stops and , so I was always unsuccessful to bye new plants. Please make any solution for this problem so then I can give you 5 stars",3,1,4.14.1,2020-02-29 12:28:50,"Hi, +Sorry to hear about the trouble. Our support engineers are currently working on this issue and we shall fix it ASAP. +For further assistance, contact our customer support at android.support@forestapp.cc :) +- Forest",2020-02-29 18:00:16,most_relevant,cc.forestapp +Shraddha Chatterjee,https://lh3.googleusercontent.com/a-/AOh14GiNjd0fvTptXFlNGRDhFMlqo_DHWVi0-x8PRwDm2A,"The app works only if you do not press ""Clear All Apps"" while the App runs. The moment you clear, you can shuffle between other apps and use it as long as you dont reopen the Forest App. The app starts running again, once you open it and it blocks other apps. This needs to be fixed!",3,3,4.14.0,2020-02-29 11:08:36,"Hi, +Thank you for the feedback. Apps can't work when closed, so Forest would not be able to detect usage of your device once you quit it. Please turn on the ""Wither the tree when Forest is closed"" option in the Settings so that your trees will wither when you close the app. Thank you. +- Forest",2020-02-29 18:02:32,most_relevant,cc.forestapp +momo peach,https://lh3.googleusercontent.com/a-/AOh14GiesfFLQo9r3O1bpFFtkG6h4vf6oyCFy7-Eh04e,"I like this app, but recently it keep crashes, I have already update to the latest version and it still keeps doing that, I can't even open the app... Please help. Thank you.",3,0,4.13.0,2020-03-20 05:17:40,"Please contact us via our in-app feedback system! + +To visit our in-app feedback system, please go to Settings and enter our FAQ first. + +Once there, please tap on the top-right icon and you should be able to contact us. Thank you and sorry for the inconvenience.",2020-04-06 14:03:38,most_relevant,cc.forestapp +Mina Miao,https://lh3.googleusercontent.com/a-/AOh14GiUUlnrK1eAJMxLpQocOnbGLhuGbh6Vau6pm3mx9w,"Honestly, this app is not so bad but, everytime I check other apps, my tree doesn't die, except if I close all the cards of my phone. However, I think it's a very good app to stop to use too much your mobile phone, but I'd like more changes.",3,0,4.13.1,2020-02-12 20:44:01,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2020-02-13 08:06:53,most_relevant,cc.forestapp +Magda,https://lh3.googleusercontent.com/a-/AOh14Ggv8EKlvjTuJJxn_wzxMQ9sqQpUClcwcWyWDaAM3GQ,"It's ok but new trees are way too expensive, and only few change their form with the time passing. You can also pay with app-coins to buy sounds which are available all over the internet, including other apps. I would love for the developers to add new features tho!",3,0,4.14.1,2020-03-01 16:31:16,,,most_relevant,cc.forestapp +AN L,https://lh3.googleusercontent.com/-0U2LOuL0k6c/AAAAAAAAAAI/AAAAAAAABBs/AAKWJJNSWDheGCJW4um1SEQTU6U6MnwNKw/photo.jpg,"Not able to show the notification after the time is up. Also, it is not able to function well on counting the exceeded time or shown incorrectly. It would be of great help if you could fix the problems. Thank you:)",3,0,4.14.1,2020-03-05 05:58:18,"Hi, +Thank you for the report and sorry about the woes with notifications. We understand it’s a crucial feature and would like to look into what’s causing the trouble. Can you drop us a line to android.support@forestapp.cc? Thank you.",2020-03-14 05:31:48,most_relevant,cc.forestapp +Tiffany StarRays,https://lh3.googleusercontent.com/a-/AOh14GjfEV2fmF_tiLNL3bfffhcShF9D5rixsAqvvYkxRA,I wanted to ask if we receive any coins if we plant trees for a long period of time. Because when I planted a tree for 2 hours I didn't receive any coins. Is this intentional or a bug?,3,0,4.13.0,2020-03-18 10:32:28,"Hi, +Oppo phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-01-30 15:20:03,most_relevant,cc.forestapp +Krishnendu Laha,https://lh3.googleusercontent.com/a-/AOh14GghETns2L674B_7N5QV0jcf45PdKa_7H6jJpj6agms,"It's really a great app and good concept to cure phone addiction. But I've some ideas for making it more interesting. Introduce forest customization options- like a real forest. Add animals, Cascades etc. Anyway great work guys!",3,0,4.13.1,2020-02-27 12:59:00,"Hello, +Thank you for your feedback. We will forward your suggestion to our team. :)",2020-02-28 16:18:24,most_relevant,cc.forestapp +Crystal Francis,https://lh3.googleusercontent.com/a-/AOh14GjxNJyTN5CiRcDom0_wUkRyiNipP6E8loLQvqNzfQ,I would love to buy trees but even though I have the coins I get told I don't have enough. That is rather frustrating. But it is great to set goals and make it so you can not be distracted by texts and emails.,3,1,4.14.1,2020-02-29 22:57:24,,,most_relevant,cc.forestapp +Diah Hardiani,https://lh3.googleusercontent.com/a-/AOh14GhdFEGiDJa3vLcz5HAl5FNzF5ZabFxWR8kOBIzL6w,"This app really helpful to focus on your task. Before I update forest for the last version, the tree always dies if I open other apps. But, after I updated the tree is still growing although I open other apps",3,0,4.13.1,2020-02-21 03:16:08,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2020-02-29 18:35:36,most_relevant,cc.forestapp +Xx Xx,https://lh3.googleusercontent.com/a-/AOh14GjXvFMQJHpU6LjQQ-EpOBgpSAPN_ktCvAl0YgDszA,Bought premium version of the app but the whitelist fuction not working well as the tree isn't be killed when i use app i'm not supposed to,3,0,4.15.0,2020-04-03 00:17:35,"Hi, +Could you please go to System setting > Security > Other security access > Usage data access, and enable permission for Forest? Thank you. -Forest",2020-04-06 18:52:08,most_relevant,cc.forestapp +Jamie Jon Andrew,https://lh3.googleusercontent.com/a-/AOh14GhFVZ3zKU4hw-YfwZUfDhTPsbXQDb4Y9zbxv5_Y,"Originally had it at 5 stars but every time I study now my friends list is completely innacurate. It won't show the correct amount of hours I've studied for on my friends list, e.g. today I've done 70 minutes but it comes up as 20. Very annoying.",3,1,4.14.1,2020-03-01 15:36:16,,,most_relevant,cc.forestapp +Ole Didrik,https://lh3.googleusercontent.com/-NhUBAUU2100/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPh55IN2ex1l5I2YrDXs_ZlsRns4w/photo.jpg,"Interrupting buzzing. The app makes a buzzing noise while I use it. First one long silence, interrupted by a buzz, short silence, then buzz before a long silence",3,0,4.13.0,2020-02-11 19:30:07,"Hi, +Could you send us the exact steps to reproduce your issue at android.support@forestapp.cc? Sorry for the trouble.",2020-02-12 18:44:23,most_relevant,cc.forestapp +Sammy Ho,https://lh3.googleusercontent.com/-J9Vzu_kJfc8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMz0H3vBi4h0fV52Zqtz2R2IQE93w/photo.jpg,"Hey i've been using it pretty good. But today when i played the forest rain and locked my phone, the white noice ( 🤔 ) didn't work. Like it has some problem. 🤔",3,0,4.13.1,2020-02-23 14:21:35,"Hi, +That doesn't sound good! Please get in touch with our support team for further assistance regarding this issue: android.support@forestapp.cc +Thank you in advance for your support! +- Forest",2020-02-29 18:23:30,most_relevant,cc.forestapp +roisin cowans,https://lh3.googleusercontent.com/a-/AOh14GjkNLXq4IIyE95Z3C2VxXtpZQp0-jvESN9HPeEWPA,"I really like the paid version of the app, the only request i would have is I use this app for pomodoro (25 min bursts) during the work week and I miss having the full tree image. Is there a settings option to change this?",3,0,4.14.1,2020-03-09 08:51:41,"Hi there, we are sorry for the inconvenience. We only have the notification bumps out when the tree is well-planted by far. Here is a suggestion for you. You can use the alarm app on your phone instead. Hope it will work. Have a nice day!",2020-03-14 05:39:36,most_relevant,cc.forestapp +figaro 198,https://lh3.googleusercontent.com/a-/AOh14GjhdxNru7ZKXosFdy4cLE83aiyWIQHOTAwbP-uJ7Q,good idea and work i would like to give it 5 stars if you solve my problem im using asus zenfone 3 max and app not able to detect my usage of other apps and plant never withers even if i close the app i give every permission it demands but it still continues im pro version user by the way,3,1,4.13.0,2020-01-24 20:32:34,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please contact us via the in-app feedback system. +- Forest",2020-01-25 21:42:17,most_relevant,cc.forestapp +polly pligina,https://lh3.googleusercontent.com/a-/AOh14GgI8BpRO4y68BVYb1fb48imacXv26IxPsQuCa-k6A,there are some bugs in the latest version that i haven't had before. it's always lagging and nothing is loading in the app.,3,0,4.13.0,2020-02-03 20:51:09,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problem to android.support@forestapp.cc? We will investigate the problem further. +- Forest",2020-02-05 17:53:57,most_relevant,cc.forestapp +Srinidhi P M,https://lh3.googleusercontent.com/a-/AOh14GiJwcOLb04S2ifRVskpLsJCPHONzv5P8GK1srEVoJY,"The app keeps crashing every day, and wouldn't open. Every morning I got to reinstall it and log in again... What's wrong...",3,1,4.13.1,2020-02-25 03:59:13,"Hi, +Vivo phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-02-29 20:38:56,most_relevant,cc.forestapp +Crystal Vivs,https://lh3.googleusercontent.com/a-/AOh14GhWRzKYoUF_XRH0kwcYSXd_c5bAdGjy6jlCSooENA,"I can say this is a nice app! I often see this app on so many study videos. But i just start to use this app now and when i plant the tree, i can still open other apps and the tree didn't die...please help",3,0,4.14.1,2020-03-05 10:33:30,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2020-03-14 05:30:08,most_relevant,cc.forestapp +Alon Nachshon,https://lh3.googleusercontent.com/a-/AOh14Gipit0SOI1rYMEO1LoFmpAvM8FWf9xSVMGTWPXA3g,"Note 10 plus - buffering issues. Timeline feature and The Coin ""+"" sign cause the app to go into buffer mode. So those features eventually are unavailable.",3,0,4.14.0,2020-02-28 14:17:14,"Hi, +Sorry to hear this is happening. Could you please send us screenshots related to this issue at android.support@forestapp.cc? We’ll fix it asap. Thank you for your patience. +- Forest",2020-02-28 15:37:52,most_relevant,cc.forestapp +April Artist,https://lh3.googleusercontent.com/a-/AOh14Gg1P1i9G_dDZphuVhjYHyn4Vm8NaYBpxprvKd_fPw,"I love using forest as a timer when I study, however there is the ethical issue that you can't plant real trees unless you have premium. This really frustrates me because they took an opportunity to help the environment and turned it into an opportunity to make money. I understand that they need the money from buying premium to plant the trees, but it feels like they are making people feel guilty in order to sell premium to them. Thank you for the response, I appreciate you taking the time.",3,1,4.13.0,2020-01-21 20:00:27,"Hi, +The cost to plant real trees is completely covered by the company. Users only have to spend in-app virtual coins. The feature is exclusive for Pro users because complications might arise when users plant too many real trees; the cost can also easily exceed the app's revenue. We hope you understand. :) +- Forest",2020-01-17 05:36:33,most_relevant,cc.forestapp +William De La Hoz Meyer,https://lh3.googleusercontent.com/a-/AOh14GgRE0BGOFk_95dGL6w_egHlqHP7bcjVzUVq7Y-m,"The guide to take the notifications off literally just shows for vivo, oppo (I don't even know what these are), Huawei and Xiaomi phones, there's no guide for simply Android or iPhone",3,0,4.13.0,2020-02-11 00:00:39,"Hi, +As mobile devices from many different brands run on Android, their settings vary from brand to brand and so we need to separate the instructions by brands. iOS devices don't generally need much change in settings. +If you can't find the instructions for your device, please reach us at android.support@forestapp.cc. Thank you! +- Forest",2020-02-11 08:47:37,most_relevant,cc.forestapp +Hana Luh,https://lh3.googleusercontent.com/a-/AOh14Ghx7hL-yTzj4S5RKjSGpWntgHyuXZL4M3JOeTkw,"The app doesn't prevent me from using the unnecessary apps :( the app did, but idk suddenly it doesn't anymore, even the help doesn't help bc it only shows for vivo, oppo, huawei and xiaomi.. where's samsung? I hope you repair this asap :) thx",3,41,4.12.3,2020-01-15 19:17:08,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2020-01-17 05:02:06,most_relevant,cc.forestapp +Maddison DeTate,https://lh3.googleusercontent.com/a-/AOh14GhrqX-qqH7LkLzeUtdk1aj4YmO77K7nXhYcCRTu2Q,"I love this app so far, but I cannot access the store to buy more trees and plants? Which is a huge bummer, I love all the special little guys that need to be unlocked.",3,1,4.14.0,2020-02-29 03:57:28,"Hi, +Sorry to hear about the trouble. Our support engineers are currently working on this issue and we shall fix it ASAP. +For further assistance, contact our customer support at android.support@forestapp.cc :) +- Forest",2020-02-29 18:10:50,most_relevant,cc.forestapp +Sneha Chaudhari,https://lh3.googleusercontent.com/-YtWMyS1uXO0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPiRz9mgNPf7Y3gYidBca3uwM0oew/photo.jpg,Initially the app worked really well but now it is not opening and I dnt know what to do. I also tried clearing the data bt the issue still remains.,3,0,4.13.0,2020-01-23 11:23:03,"Hi, +Samsung phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-01-26 16:40:32,most_relevant,cc.forestapp +Saritha Balakrishna,https://lh3.googleusercontent.com/-94g9i_dAQQo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOcOQkfFNCRlIlxq1IJZo9hr9oxIQ/photo.jpg,Kindly add daily focus time feature when we open monthly or yearly focus.daily focus time is available in many free pomodoro apps.i dono why it is npt available even in paid version.,3,0,4.13.1,2020-03-18 19:13:14,,,most_relevant,cc.forestapp +Alisha,https://lh3.googleusercontent.com/a-/AOh14GjgKwK20Gc35dNscaXoFw5C0qSPJ5DlYR5F7lhbEw,"I've used this app before and I like it. The only issue is there are no breaks, it's kind of difficult to study and have no breaks.",3,0,4.12.3,2020-01-18 08:38:19,"Hi, +Thank you for the feedback. We have a break feature - after you finish planting a tree, tap the clock icon to set a break time. After the break time is over, Forest will notify you and remind you to start focusing again. :) +- Forest",2020-01-18 20:13:13,most_relevant,cc.forestapp +Esther Ying Qian Kueh,https://lh3.googleusercontent.com/a-/AOh14GiR1rKVQc-zRVbvXOYJCspHfCXG2lr65nQhLbBZ,I'm using the premium version.Recently it stop updating the total time focused by itself when comparing with other friends.,3,0,4.14.1,2020-02-29 14:28:52,"Hi, +Could you please contact us via the in-app feedback system so that we can investigate the problem further? Thank you and sorry for any inconvenience caused.",2020-02-29 17:56:33,most_relevant,cc.forestapp +Sherif Morris,https://lh3.googleusercontent.com/a-/AOh14Gi3wzPY3d7X5L_PafAGTcfpF8osxCFJvu90axdkhQ,Phone/computer sync could be improved. Also doesn't have a timer for your rest between pomodoros.,3,0,4.13.0,2020-01-22 13:13:41,"Hi, +It's already possible to sync between different devices in the Pro version! +We have a break feature - after you finish planting a tree, tap the clock icon to set a break time. After the break time is over, Forest will notify you and remind you to start focusing again. :) +- Forest",2020-01-22 16:41:50,most_relevant,cc.forestapp +bagi Kalyani,https://lh3.googleusercontent.com/a-/AOh14GjQDwfrxsU8mr_bWAs4PLwMqSJIUEhuTAggjgpSSA,After unlocking the tree with sufficient coins the tree is not changing and irt remains fixed in green colour,3,0,4.14.2,2020-03-17 06:16:39,"Hi, +Could you please manually sync your data in the Settings page and try to re-log in and see if it solves the problem?",2020-04-06 13:46:40,most_relevant,cc.forestapp +liam sweeney,https://lh3.googleusercontent.com/-H758p4c9EE4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPea6Pc4UratafqgoJebXQLbhmBqA/photo.jpg,Great concept. Store doesn't open though it needs fixing.,3,0,4.14.0,2020-02-29 21:05:09,,,most_relevant,cc.forestapp +wyatt m,https://lh3.googleusercontent.com/a-/AOh14GgqEjHYUndjgm1urVwr7aH2TyUFNfK_xr-L9DKNeQ,"I really like the idea of this app, however you'rer not allowed to use lot of useful features unless you pay! and that's upsetting :/l",3,0,4.14.1,2020-03-01 18:59:06,,,most_relevant,cc.forestapp +Njd K,https://lh3.googleusercontent.com/a-/AOh14GhM2MZK7Hf1Qmjxb75U1_tZBqjLbffZQciSVg5J,"I missed the old tiny tree that was at before for 10 minutes of focusing, I truely missed it 💔",3,0,4.13.1,2020-02-22 09:39:51,"Hello, +Thank you for your feedback. We will forward it to our team. :)",2020-02-29 18:32:43,most_relevant,cc.forestapp +Alana Higgins,https://lh3.googleusercontent.com/a-/AOh14Gi0vLDbrtpXSsGqDomW7-LGDg6gP80L5K1WJaWo2Q,I allowed it to do everything possible and it didn't tell me to give in my email. So now I can't play the game because an email wasn't sent to me. 😠😠😠,3,0,4.13.0,2020-01-30 07:28:02,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problem to android.support@forestapp.cc? We will investigate the problem further. +- Forest",2020-01-30 15:19:49,most_relevant,cc.forestapp +TANUJA SHARMA,https://lh3.googleusercontent.com/-7PMjNPWCvGk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMPFvY_S-oqTf1HwrVkApammNuRow/photo.jpg,good..but i can't plant another type of trees😑 i unlock trees but it can't be planted,3,0,4.13.0,2020-02-08 07:46:17,"Hi, +Could you send us the exact steps to reproduce your issue at android.support@forestapp.cc? Sorry for the trouble.",2020-02-11 09:20:54,most_relevant,cc.forestapp +Arfa Khan,https://lh3.googleusercontent.com/a-/AOh14GicVc7ialQ9U0jmxUPmk-4dbkItxDfeC4_o2fsN,They need money for whitelist and great feature which is not good.. Although its great app,3,0,4.14.2,2020-03-09 04:27:33,"Hi, +We are sorry for the inconvenience. As independent developers, we don't take any investment from venture capitalist. and thus we have to strive hard for the operation of Forest. To provide better and stable service and for the long-term product plan, we need to put some features in the Pro version. We kindly ask for your understanding. +- Forest",2020-03-14 05:23:10,most_relevant,cc.forestapp +Mary020207,https://lh3.googleusercontent.com/a-/AOh14GhPUytZ-2e7IFh-kRJ88O_Sq5HkvCnSBO6-nO8THSo,"It's such a great app, but I can't receive any notifications of planting reminder",3,0,4.13.0,2020-01-31 02:33:32,"Hi, +Please get in touch with our support team for further assistance regarding this issue: android.support@forestapp.cc",2020-02-01 15:52:33,most_relevant,cc.forestapp +Jessmin Teo,https://lh3.googleusercontent.com/a-/AOh14Ggfy21uErta9Vit6peTE_sBcowZxf-YqNmliPs1cQ,After the new update i cannot plant the new tree (real tree),3,0,4.14.0,2020-02-28 14:20:11,"Hi, +Sorry to hear this is happening. Could you please send us screenshots related to this issue at android.support@forestapp.cc? We’ll fix it asap. Thank you for your patience. +- Forest",2020-02-28 15:37:02,most_relevant,cc.forestapp +Elizabeth Danielson,https://lh3.googleusercontent.com/a-/AOh14GhRiVOeBoIrYap3CJSjaw9vHPEXUClKv9QLfffHnA,"Great, I just wish I can move it to another device with out having to by it again",3,0,4.14.3,2020-03-27 09:04:41,,,most_relevant,cc.forestapp +navneet singh rathore,https://lh3.googleusercontent.com/-CozyvKiQt6w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNMNj5fXQDyZE_HZrWGlQjn_BYX4w/photo.jpg,This one is very beautiful but its tree texture is not beautiful.,3,0,4.13.1,2020-02-25 16:33:34,"Hello, +Thank you for your feedback. We will forward it to our team.",2020-02-29 20:36:12,most_relevant,cc.forestapp +shir nizan,https://lh3.googleusercontent.com/-uLyRqQv1rT4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMUnF7JuPeaKO9ga6xd4rcadxE2Iw/photo.jpg,"Hi, I liked the concept very much, unfortunately the design really bothered me: the different trees are not in the same drawing style and they don't fit together... Just hated seeing them next to each other.",3,0,4.11.1,2020-03-19 11:34:06,,,most_relevant,cc.forestapp +Aria Worth,https://lh3.googleusercontent.com/a-/AOh14GgorQotebbNqsFPMQI-PmQ14t131i2mNIcA6AxVkA,"Too many features are premium and that's kinda annoying, still like the app though",3,0,4.13.0,2020-01-31 12:28:47,"Hi, +We are sorry for the inconvenience. As independent developers, we don't take any investment from venture capitalist. and thus we have to strive hard for the operation of Forest. To provide better and stable service and for the long-term product plan, we need to put some features in the Pro version. We kindly ask for your understanding. +- Forest",2020-02-01 15:49:34,most_relevant,cc.forestapp +Dua Sattar,https://lh3.googleusercontent.com/a-/AOh14Gi7GogRbPjNhvvgE_Q6GVBwuz1Q-WHloayDwo7q,It allows me to leave the app. I have a Techno phone. How do i fix this? Sleeptown works perfectly though.,3,0,4.13.1,2020-02-21 13:21:35,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2020-02-29 18:34:36,most_relevant,cc.forestapp +Elizabeth Emond,https://lh3.googleusercontent.com/a-/AOh14GhCeYIbdA062N62k7R6Znt0BFuw9sgkLRHYxbZwgQ,"I like the concept... But it don't work. :( I am able to go on Facebook even if the tree is growing! Even now, I have a tree growing as I type. I really like the idea... but it don't work (on my phone).",3,1,4.12.2,2020-01-09 18:47:25,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2020-01-15 14:40:27,most_relevant,cc.forestapp +Sanskriti verma,https://lh3.googleusercontent.com/-D0owKFibD0w/AAAAAAAAAAI/AAAAAAAAM9Y/AAKWJJOjLatEQ7X9ugYnkxfXSUDlTjQITw/photo.jpg,I enrolled myself in beta version and gained almost 1000 coins. But after sometime the app stopped working properly! The start button won't work or the estimated time was almost 3 times. The I left the beta version and reinstalled the application. It's working fine now but I lost all the coin count and now I am back to square one! I was so upset! I love this application though! But please fix these bugs guys!,3,1,4.11.4,2019-12-01 13:02:44,"Hi, +Unfortunately your data can't be saved on the free version of the app, so uninstalling the app would clear all your data. Sorry for the inconvenience. +- Forest",2019-12-01 14:32:21,most_relevant,cc.forestapp +Elya Rahimi,https://lh3.googleusercontent.com/a-/AOh14Gg6QJVQ1wdr4etV5r2LCpuxngNaZIBo95mbEc3D,"I wish I could use whitelist for free, because I live in Iran and can't pay for it",3,0,4.13.1,2020-02-26 13:41:25,"Hi, +We are sorry for the inconvenience. As independent developers, we don't take any investment from venture capitalist. and thus we have to strive hard for the operation of Forest. To provide better and stable service and for the long-term product plan, we need to put some features in the Pro version. We kindly ask for your understanding. +- Forest",2020-02-29 20:31:51,most_relevant,cc.forestapp +cass bong,https://lh3.googleusercontent.com/-01m6Bre5djQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMnlbOpe8v63G_N_1ZmnR4RYaP2tA/photo.jpg,"after the latest update, there seems to be some problem with this app. sometimes, when i try to press the button 'plant', nothing happens, not even when i click on the 'three stripes' button then a notification will be sent telling me that the app has stopped working. after reopening the app a few times, the problem persisted. plus, after the update, sometimes i can't write description about the tree that has been planted.the sunflower i planted was shown in the notification, but not in the app.",3,17,4.11.1,2019-11-17 14:12:28,"Hi, +Please update Forest to the latest version (4.13.1) and see if it solves the problem. +If you continue to experience issues, please reach us at android.support@forestapp.cc. Thank you! +- Forest",2020-02-15 17:43:04,most_relevant,cc.forestapp +Hannah,https://lh3.googleusercontent.com/a-/AOh14GiuL8lHbVMavb_lziQOlXJiLwavpISMWsRckA4j5A,"I like this app, but despite all attempts following your steps, the notification is still not working. It used to work just fine, but for some reason, I'm guessing after an update, it will not notify me that the time is up until I press my phone's powers button, meaning I am having to come back to my phone every so often to check if my time is up, which contradicts this apps purpose. I'm sometimes going 20 minutes over time - so much for pomadoro! Please fix this issue!",3,219,4.11.4,2019-11-28 17:04:37,"Hi, +Could you please update Forest to the latest version (4.13.0) and see if it solves the problem? +If you continue to experience issues, please reach us at android.support@forestapp.cc. Thank you! +- Forest",2020-01-28 17:44:27,most_relevant,cc.forestapp +Savitha Ravindra Bhat,https://lh3.googleusercontent.com/-khG0rVjEcwM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMqH4N7U65dKlNxkEvBGGGlKSTGcQ/photo.jpg,"After I grow a plant, when it gives the option of double reward by watching a video, I click on double reward. And it shows a video which I watch also, after that the screen goes black, nothing happens, and I had to close it, when I try to open again ,it says forest app is not responding.And when I click OK for that, and open the app, it opens, but with only half reward, there is no double reward given , even after I watch the advertisement video, what kind of cheating is this? Please fix it.",3,5,4.11.5,2019-12-07 06:16:39,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problem to android.support@forestapp.cc? We will investigate the problem further. +- Forest",2019-12-27 13:22:27,most_relevant,cc.forestapp +Nichole,https://lh3.googleusercontent.com/a-/AOh14GjvByyFanuZQzGJEy2AzD81qeGSkClGEKqC8Wc_-A,"I have recently upgrade the app to the Pro version, and I've got to say that while I enjoy the concept of Forest through keeping the tree alive, since the upgrade the app keeps crashing😭!!! When I go to the store to unlock a new tree it come up with an 'error' message and when I want to plant a new tree once the timer is up, I need to restart the app. I didn't experience any problems as such before hand, and while this app is up-to-date I'm not sure why I'm experiencing this problem (???)",3,106,4.11.1,2019-11-16 15:08:55,"Hi, +Please update Forest to the latest version (4.13.1) and see if it solves the problem. +If you continue to experience issues, please reach us in-app. Thank you! +- Forest",2020-02-16 15:13:39,most_relevant,cc.forestapp +Edmund Chew,https://lh3.googleusercontent.com/a-/AOh14GgQ-Nkd2_smpwEOu07HDW9EWpb6QM4Cyv7LJCU2,Font too small,3,0,4.14.3,2020-03-25 01:35:27,,,most_relevant,cc.forestapp +Mobina Yousefi,https://lh3.googleusercontent.com/-6ajbTz12BbU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNQU6TgTxcSP5Dfd0mYE-OftgdyuQ/photo.jpg,"Thanks forest its a really great app. But, sometimes when I am not connected to the internet it doesn't work. When I want to plan and push the button, nothing changes. And this really bothers me cuz i love this app and its a really crazy problem that I want you to fix it. Tnx again",3,0,4.11.5,2019-12-15 04:16:23,"Hello, +This issue has been resolved in the latest version. Please update the app and we'd be glad if you give us a positive review when the problem is solved. :) +If the issue persists, please email us at android.support@forestapp.cc. Thank you! +- Forest",2020-01-18 20:56:13,most_relevant,cc.forestapp +Bloodbath Pantomime,https://lh3.googleusercontent.com/-lWVOYUeUA3U/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPaZaN8pF_Vj1NEoeMzHOyVMAdjyw/photo.jpg,"Whilst being engaging with its currency system, in how you have to work to personalise your experience, I do have some quarrels. One of these being the similarities in structure between this app and others such as Grammarly. I understand that this is an advertising matter, however it seems to have stolen the feature to double your reward From watching an advert. This I find, encourages both laziness and the dulling of the experience as it feels repetitive. Less help would give more work for us.",3,1,4.11.3,2019-11-26 21:03:07,"Hello, +Thank you for your feedback. We will forward your suggestion to our team.",2019-12-01 15:05:38,most_relevant,cc.forestapp +Jessica O'Dowd,https://lh3.googleusercontent.com/a-/AOh14GjlQoBJVDnrNN-OWJGkrTa4H7fEerXGqYhKDD1kxg,"The app itself is a great concept and it works wonderfully. But the fact that you have to pay actual money to help plant real trees is what made me uninstall it altogether. This just adds to the idea that helping the earth isn't accessible to everyone, which it needs to be. End of discussion. Overall the app is a great concept if you just want to plant fake trees yo help you focus.",3,4,4.12.2,2020-01-04 00:22:59,"Hello, +To plant real trees, we partner with the organization Trees for the Future; we give them our donations to plant real trees across five countries in Africa. Please refer to the post on our official Facebook page if you wish to know more about our trip to Africa: https://www.facebook.com/forestapp.cc/posts/1726695590717934 +- Forest",2020-01-30 09:05:13,most_relevant,cc.forestapp +Dewi Puspita D,https://lh3.googleusercontent.com/a-/AOh14GhuusZQHoXJ19nyCsaJLeiTUYHtvjpV2TV_TDDS,"Hello Forest, i interest with this app to stay focus. It work when i press back button and app will warn, but there's some problems with other buttons: Forest don't detect when i press home button & task button, so i can open other app and my tree is still growing. Hope u can fix this or tell us why we still can press other buttons? Thanks",3,2,4.11.1,2019-11-15 10:09:00,,,most_relevant,cc.forestapp +Natasha Dennis,https://lh3.googleusercontent.com/a-/AOh14GgrCsLuUnZtD6M_kShgamjr-MJtEWLlLeOJ-sd66g,"I have the pro version. Its almost perfect, but, there needs to be an automatic option, for a tree to automatically start planting at a certain time. For someone with distraction issues, like me, the notifications aren't enough, and they're inconsistent",3,0,4.11.5,2019-12-11 01:58:28,"Hello, +Thank you for the suggestion, we will forward your idea to our internal team. Let us know if you have other questions or suggestions. Thanks again and have a nice day! :)",2020-01-18 21:10:29,most_relevant,cc.forestapp +Deepthi D.C,https://lh3.googleusercontent.com/a-/AOh14GgJaHC_2DobhykaCNCCtKKJjFtKwEZKP3lbJRJJ9w,This app is absolutely amazing and helps a lot during exams but after a while it starts crashing and I lose the previous history and the trees I get using the coins.That is really disappointing. This has happened more than thrice. Kindly look Into it. Other than that it really does keep one focused.,3,2,4.12.2,2019-12-30 02:45:32,"Hi, +Samsung phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-01-17 05:28:38,most_relevant,cc.forestapp +Diane Verrochi,https://lh3.googleusercontent.com/a-/AOh14Ghi-2PMl3H1DX4FtLFD5ShukEk6kY6o0cgMhr5Xxw,"Overall, I enjoy this app. However, I just needed to call 911, and the app made me confirm more than once if I really wanted to kill the tree before I could make the call. There should be an emergency-kill-without-question button or option or something, because that is not safe.",3,1,4.11.5,2019-12-16 02:41:32,"Hello, +Thank you for your feedback. We understand the need and will forward your suggestion to our team. :)",2020-01-18 20:45:14,most_relevant,cc.forestapp +Shubham Malviya,https://lh3.googleusercontent.com/a-/AOh14GgfZSivpQWvzDCvdKzVuYKKGKO96_q3V3FMCfXUqg,Whitelist apps feature should be available without buying pro. In todays world we necessarily need some apps while studying or working. The app would be useless if we can't use those apps. So I request you to make available whitelist apps feature to the non pro version. I would have given 5 stars if the feature was available for non pro users.,3,1,4.11.5,2019-12-06 06:14:27,"Hi, +We are sorry for the inconvenience. As independent developers, we don't take any investment from venture capitalist. and thus we have to strive hard for the operation of Forest. To provide better and stable service and for the long-term product plan, we need to put some features in the Pro version. We kindly ask for your understanding. +- Forest",2020-01-20 17:26:54,most_relevant,cc.forestapp +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Only works fine when app is on screen, which means I can't press home button or switch apps while I wait for my tree to finish. It is mildly irritating because I use other apps to study. But still, thank you for this app, it motivates you to be productive by rewarding you cute/cool trees!",3,4,4.11.0,2019-11-06 11:40:18,"Hi, +Thank you for the update. Don't hesitate to give us a positive feedback if the problem has been resolved! +- Forest",2019-11-06 10:21:51,most_relevant,cc.forestapp +Kristina Greenland,https://lh3.googleusercontent.com/a-/AOh14Ggzfb1zXgQSXamtqSngrHElJRPOC0Qf4y75DlQGrg,Achievements are not loading anymore,3,0,4.13.0,2020-02-08 01:43:02,"Hi, +Could you please contact us via the in-app feedback system so that we can investigate the problem further? Thank you and sorry for any inconvenience caused.",2020-02-11 09:21:20,most_relevant,cc.forestapp +Shiba 7,https://lh3.googleusercontent.com/-SIL-9hz7rho/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOqsMoThsOGWteYwLJhcbyfpYTmiQ/photo.jpg,it was very useful at first helping to focus on things; but recently after the new update it looks like the app is crashed. suddenly stops working while i'm in the app and not working any more! hope you guys fix it soon.,3,0,4.11.5,2019-12-07 19:37:03,"Hi, +Could you please update Forest to the latest version (4.12.2) and see if it solves the problem? Thank you.",2019-12-27 13:19:45,most_relevant,cc.forestapp +Gaurav Sharma,https://lh3.googleusercontent.com/-oZNqI-6gfNg/AAAAAAAAAAI/AAAAAAAAADU/AAKWJJNzoSjFngHbvTnUSplfHjU56zKxNQ/photo.jpg,Good app... But once I swipe the application from recent applications the purpose of the application fails. Following which I can access all the applications without effecting my forest. Also an option to arrange my trees would be really nice to see.,3,0,4.11.1,2019-11-18 13:38:25,"Hi, +Thanks for the feedback. Forest can't work when you quit the app (by swiping it to remove it from recently used apps). Please turn on the ""Wither the tree when Forest is closed"" option in the Settings so your tree will die when you quit the app. +We will pass your suggestion along to our internal team. Thanks again! :) +- Forest",2020-02-13 08:35:12,most_relevant,cc.forestapp +LALIT WALIA,https://lh3.googleusercontent.com/a-/AOh14GigjO05vSSKHeEYOzoKh4VhVbIVZqv2PhZecqnIrw,"One of the best app for focussing and productivity. The coin system motivates me to go for more sessions. But the app freezes everytime after udimg it for few days. Please, solve this as soon as possible.",3,0,4.11.1,2019-11-17 03:39:20,"Hi, +Please update Forest to the latest version (4.13.1) and see if it solves the problem. +If you continue to experience issues, please reach us at android.support@forestapp.cc. Thank you! +- Forest",2020-02-16 15:05:42,most_relevant,cc.forestapp +Tarakmt Deasy,https://lh3.googleusercontent.com/-9HRu_8jli4A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPoBSe3oJIYf2Dz59r5GHOGbpM9vQ/photo.jpg,"this was useful so i decided to unlock the pro version. but after paying, i couldn't unlock it and it kept saying that there's a problem. i tried all th solutions listed but it still did not resolve it. i would like a refund please",3,0,4.11.5,2019-12-08 09:58:50,"Hi, +Could you please update Forest to the latest version (4.12.2) and see if it solves the problem? Thank you.",2019-12-27 13:18:09,most_relevant,cc.forestapp +Muhammad Khairulanam Rafiq,https://lh3.googleusercontent.com/-S14OEdSY5X4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNQgfBBtadT8lOLfYQj9YlNEZ_yNw/photo.jpg,"Its a cool app but im afraid it doesnt all too well on my huawei p9 leica, it doesnt kill the plant when I switch apps, rendering the whole experience pointless, I followed all the setup instructions and forums but it still didnt work : (",3,0,4.11.5,2019-12-07 09:07:51,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2019-12-27 13:21:54,most_relevant,cc.forestapp +Sonali Shah,https://lh3.googleusercontent.com/a-/AOh14GipnCXNpWrhF7tiN0u5AWNPVBHl44DTkHloRTXJ,"It's great app, very much helpful to focusing but now it's not as its stopped all the time from 2 days even for 15 min time and bcoz of this I didn't get any tree and from beginning I loss many trees which worth atleast 150 points which demotivated meso pls fix this problem",3,0,4.11.2,2019-12-05 12:26:41,"Hi, +Redmi phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-01-20 17:32:41,most_relevant,cc.forestapp +Mikey Gill,https://lh3.googleusercontent.com/a-/AOh14Gg8w9-jtxheXUFlx3yBmOvvntnpgD5m_prkiBHx,"I'm disappointed that it requires the wifi to be on for it to start a timer. So I have to put wifi on, start a timer, then turn it off, and it's so inconvenient. Otherwise it's a nice app",3,1,4.11.1,2019-11-10 20:41:09,,,most_relevant,cc.forestapp +Chicken_Flavored_Noodles,https://lh3.googleusercontent.com/a-/AOh14GhhcPrCimqRmB-BoRIQo2n8i0Sp99dY9ASsr0jYjw,"Nice idea, but the problem is that i tried to see what happens if i close the app and use other stuff like games, it said that the tree would wither, but when i come back after playing the tree is still growing. Is this normal?",3,0,4.11.1,2019-11-10 21:08:27,,,most_relevant,cc.forestapp +Kajal Sahu,https://lh3.googleusercontent.com/a-/AOh14GjeJ699s_O6mpsbTPYPiOV6upmJqBhg18KcPzHEew,"The whitelist feature doesn't seems to be working, otherwise there is not a thing wrong with this app. It's absolutely amazing, so helpful and motivating...",3,0,4.11.5,2019-12-07 16:22:14,"Hi, +Could you please update Forest to the latest version (4.12.2) and see if it solves the problem? Thank you.",2019-12-27 13:20:11,most_relevant,cc.forestapp +omi quelsie,https://lh3.googleusercontent.com/a-/AOh14GjnRG5QqVKKTjBbgUe3VXZgptfQPcy6H7imtzAl,it crashes everytime i open it whenever i go one day without using it,3,0,4.13.0,2020-01-26 13:19:23,"Hi, +Oppo phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-01-26 16:33:52,most_relevant,cc.forestapp +Elham Jafari,https://lh3.googleusercontent.com/a-/AOh14GhNgvecHFSqr9-rRftAQ5w8IDAYy5X_m5KNzSckfQ,"Good app but too many bugs. The app crashes when you want to buy a new type of trees recently. I was unable to switch between tree types as well. My android is updated, I have Pixel 2 that never had problem with other apps.",3,0,4.11.1,2019-11-07 18:05:23,,,most_relevant,cc.forestapp +Teal Kirkland Porter Todoroki,https://lh3.googleusercontent.com/a-/AOh14Ghvu9d7CiYcNsmQp5-vbP7prXlkwtt5n81vPrZCTVY,"I completely understand how this app would be very helpful, but I downloaded it so I could focus while doing my work. I need to access Google docs to be able complete my task, but when I tried to use it, it told me that I would have to kill my tree before I could. This is my only problem.",3,0,4.11.4,2019-12-01 21:58:20,"Hi, +If you upgrade to the Pro version, you'll get access to the whitelist feature which allows you to use apps that you've whitelisted during planting sessions. We hope you consider. Thank you!",2020-01-26 01:00:33,most_relevant,cc.forestapp +Garrett Luong,https://lh3.googleusercontent.com/a-/AOh14Gj9kMoeOtofMoG-BgRFBQh-Dn9gZoOslZijuL8v,"While it's actually increased my productivity, it would sometimes just crash for no reason, killing the tree. This is honestly pretty annoying. My device is a Samsung Galaxy Note 4.",3,1,4.11.5,2019-12-04 13:03:27,"Hi, +Could you please update Forest to the latest version (4.13.0) and see if it solves the problem? +If you continue to experience issues, please reach us at android.support@forestapp.cc. Thank you! +- Forest",2020-01-26 00:55:19,most_relevant,cc.forestapp +Shelby Tourney,https://lh3.googleusercontent.com/-Syt5_kA4oL8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPEcxTuUoUWqnJXJBel1HNET4kZ6A/photo.jpg,"Great app, I really wish it had a break or timeout button for when I need to check a message or whatnot instead of making me kill the tree, but overall great app.",3,0,4.12.1,2019-12-17 02:37:23,"Hello, +Thank you for your feedback. We will forward your suggestion to our team.",2020-01-26 16:48:56,most_relevant,cc.forestapp +Farnaam Samadi,https://lh3.googleusercontent.com/a-/AOh14GjXNSdAm3Yh2WCF-d5cLJ0_7vJfF8yRN5s8o4lU8w,"I like your app, but the free version is very restricted. Please at least add achievements and custom tags to free version. By the way great app.",3,1,4.11.1,2019-11-10 02:59:20,,,most_relevant,cc.forestapp +Martine Bakke,https://lh3.googleusercontent.com/-_MxKzn5JFiI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMdKqGoWK28r2uLzPKygVMYCBl4xg/photo.jpg,"It's amazing and it helps me so much when writing, but these days it keeps crashing all the time :(",3,0,4.11.1,2019-11-18 01:44:32,"Hi, +Please update Forest to the latest version and see if it solves the problem. +If you continue to experience issues, please reach us at android.support@forestapp.cc. Thank you! +- Forest",2020-02-13 08:38:42,most_relevant,cc.forestapp +Shumpei Mizokami,https://lh3.googleusercontent.com/-fHiFVsUTPOk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMFDEFnkcevfkrbsMAbB9FtaU68qA/photo.jpg,Basically I satisfied with this app but I can't change trees even though I unlock the new trees.(I'm using an android phone) Please fix this bug immediately.,3,3,4.11.0,2019-11-06 13:28:56,,,most_relevant,cc.forestapp +J Fly,https://lh3.googleusercontent.com/-r9aF8yk29bA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPOSwMvD0uniZydEWUe-sUsBFk6YA/photo.jpg,The new update causes forest to freeze leaving no choice but to exit the app. But doing so erases the exited session. Please fix this asap.,3,0,4.11.2,2019-11-20 12:52:37,"Hi, +Could you please update Forest to the latest version (4.11.4) and see if it solves the problem? Thank you.",2019-12-01 15:24:25,most_relevant,cc.forestapp +Maratha Warrior,https://lh3.googleusercontent.com/a-/AOh14GiwvdyeDlOkFcEUO6nBf3uMqQ6tD10sHx3WNwmVMw,"Every time I click the plant button, it don't works, and I have to try it many times and the tree is planted",3,0,4.11.5,2019-12-03 12:25:25,"Hi, +Sorry for the inconvenience. The problem is fixed now. Please update to the latest version (4.12.2) to see if it helps. If it works, don't forget to give us a positive review. :)",2019-12-27 13:27:40,most_relevant,cc.forestapp +Chinh Nguyễn,https://lh3.googleusercontent.com/a-/AOh14Gh90O-hEKDNeuzPIOcih4WwMd1_y9Cm948OlqJx,"After it was updated, i can't open this app, it don't work and i have to reinstall it because i still love this app. But that isn't comfortable. Hope you guys can fix it",3,0,4.12.1,2019-12-15 08:37:27,"Hi, +Oppo phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-01-18 20:51:31,most_relevant,cc.forestapp +Aayush Bhansali,https://lh3.googleusercontent.com/a-/AOh14GgZ-d4RJcuXzAkdcYtkuczPpn0HidBbdieDl7wxAg,When planting tree with exceeded timer count on ... The tree doesn't get planted even after the set time ! Please fix this.,3,0,4.11.2,2019-11-28 05:47:07,"Hi, +Thank you for reporting the issue and sorry for the inconvenience. Our team shall look into the problem further. +If you encounter other issues, please reach us at android.support@forestapp.cc. +- Forest",2019-12-01 14:50:31,most_relevant,cc.forestapp +Adriana,https://lh3.googleusercontent.com/a-/AOh14GjtqSqck60MxZni-bPNJ2Y4AVn7OC3h0sBMObWx,"It was a very nice app until it started lagging so much... Just planted a two hours tree and the app deleted it, as if I had done nothing...",3,0,4.11.2,2019-11-25 17:05:42,"Hi, +Could you please update Forest to the latest version (4.13.0) and see if it solves the problem? +If you continue to experience issues, please reach us at android.support@forestapp.cc. Thank you! +- Forest",2020-01-28 17:49:02,most_relevant,cc.forestapp +rishma dua,https://lh3.googleusercontent.com/a-/AOh14Gg99uqGwLyGxD8OTToWtR5Je4I_oLuOY9nYIBjH,"The app isn't working properly. It keeps getting stuck and the notification ""app not responding"" keeps popping up.",3,0,4.11.2,2019-12-02 10:22:33,"Hi, +Could you please update Forest to the latest version (4.13.0) and see if it solves the problem? +If you continue to experience issues, please reach us at android.support@forestapp.cc. Thank you! +- Forest",2020-01-26 00:56:31,most_relevant,cc.forestapp +Diya Rachel Anumone,https://lh3.googleusercontent.com/a-/AOh14GjfUkWdHV_HLnV3PcO83R_QSidt1upWYwFME5y1dQ,It is an extremely good app. But it keeps crashing. Have installed it for the 3rd time in 2 days.,3,0,4.12.2,2020-01-03 15:20:56,"Hi, please make sure you have updated to our latest version (4.13.0) Also, please turn on ""Automatically send crash report"" in the Forest Settings page. Thank you. - Forest",2020-01-30 09:11:02,most_relevant,cc.forestapp +Darija Mefailovski Stanojevic,https://lh3.googleusercontent.com/-uz0y7kdY5YI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMgVnAH-cTlL9IZpFWbUIkVyNIZqw/photo.jpg,The app does not work. I can use my phone freely but it seems like a great app. Also there is no instructions for LG phones.,3,0,4.11.4,2019-11-28 22:13:54,"Hi, +Could you please update Forest to the latest version (4.13.0) and see if it solves the problem? +If you continue to experience issues, please reach us at android.support@forestapp.cc. Thank you! +- Forest",2020-01-28 17:44:10,most_relevant,cc.forestapp +Lilly mld,https://lh3.googleusercontent.com/a-/AOh14GgK36dqPpl6NZ6TjZ0SeBk6SpB2LgaSuFhJ59Lx,It's really good but I think Forest should add more sturdy music because it can really help.,3,0,4.12.1,2019-12-22 15:21:09,"Hello, +Thank you for your feedback. We will forward your suggestion to our team.",2019-12-25 15:13:09,most_relevant,cc.forestapp +SUCHITA BHOIR,https://lh3.googleusercontent.com/a-/AOh14Gi7aoBoCkmrtdNLWirXGIXmOPiiwgnWPQG0I4t_Kg,I loved using this app but now it is not working at all*I can't sign in even after paying!!,3,0,4.11.1,2019-11-19 07:34:18,"Hi, +Could you please update Forest to the latest version and see if it solves the problem? Thank you.",2019-12-01 15:31:04,most_relevant,cc.forestapp +Raj Gada,https://lh3.googleusercontent.com/-2EQGfDTaV9M/AAAAAAAAAAI/AAAAAAAALlo/AAKWJJMTZlrPlLaHlTFxZ-FovLPAkAzdWw/photo.jpg,"No webapp, No integration with other services (google task, calendar....), can't pause/stop the current pomodoro",3,1,4.11.1,2019-11-16 07:54:29,"Hello, +Thank you for your feedback. We will forward your suggestions to our team and continue introducing new features! :)",2020-02-19 19:31:43,most_relevant,cc.forestapp +Faezeh Mohtasham,https://lh3.googleusercontent.com/a-/AOh14GhaveTmGAlyPIznKIuFuJqcNSVkgkuC1uf94VlBwg,"When I tap the ""plant"" button it does not shows the timer page and seems not to start.",3,0,4.11.3,2019-11-26 09:26:50,"Hi, +Could you please update Forest to the latest version (4.13.0) and see if it solves the problem? +If you continue to experience issues, please reach us at android.support@forestapp.cc. Thank you! +- Forest",2020-01-28 17:46:28,most_relevant,cc.forestapp +Giulia Lazzaroni,https://lh3.googleusercontent.com/-0UsuNT4RQXM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNpx2xDDmwibwLB8EkdfqssNQuyiQ/photo.jpg,"It's a very nice app, but they doubled (if not even more) the price of the most part of the threes",3,0,4.12.2,2019-12-31 16:09:50,"Hi, +A new pricing mechanism was introduced in our recent updates. The prices of some trees have increased, while those of the rest have decreased - some plants only cost 300 coins now. You can earn coins faster by completing longer sessions or unlocking achievements. Sorry for any inconvenience caused.",2020-01-17 05:15:39,most_relevant,cc.forestapp +Danyang Chen,https://lh3.googleusercontent.com/-RhlIMDexkgk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPmEnNeT8tH96qDTaoojji6Cy-q4g/photo.jpg,"I have bought once, and uninstalled, but this time I installed it again and had to pay twice.",3,0,4.12.2,2020-01-03 14:19:29,"Hi, +Please make sure you're logged in to your Google Play with only the Google account you originally used to install Forest, then go to the ""Pro Version"" in the Settings page, and your Pro upgrade should be restored automatically, which will then enable you to log in. +If the issue remains, please email us at android.support@forestapp.cc. +- Forest",2020-01-30 09:11:22,most_relevant,cc.forestapp +Nurzhan Abdukarimov,https://lh3.googleusercontent.com/a-/AOh14GhR-hxUjQnYj68q7Qr2viLHV_cXkOvEE2aboaqRNg,The app keeps crashing and I lost all the progress after reinstalling it (I have the paid version),3,0,4.11.1,2019-11-19 15:30:27,"Hi, +Could you please contact us via the in-app feedback system so that we can investigate the problem further? Thank you and sorry for any inconvenience caused.",2019-12-01 15:29:28,most_relevant,cc.forestapp +Pangri Teron,https://lh3.googleusercontent.com/a-/AOh14GhpxKfrugvqNiG--vVd2Y_iXuYU6l63XXGEIM5cBg,"The app size is too heavy.. I would expect a lighter and storage friendly productive app of such,as a better alternative if it is improvised",3,0,4.12.2,2020-01-06 00:17:25,"Hi, +Most of the storage is taken up by images and ambient sounds. Thank you for the feedback. :)",2020-01-15 14:15:22,most_relevant,cc.forestapp +Carlen Wirth,https://lh3.googleusercontent.com/-yXuO1hJhVqM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM33-laVXv_zKaZWtvzoeFUUvputQ/photo.jpg,It doesn't work. I can still use my blacklisted apps while the tree is growing.,3,0,4.12.2,2019-12-31 19:27:56,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2020-01-22 17:33:03,most_relevant,cc.forestapp +Ellie 9,https://lh3.googleusercontent.com/-jb5NIPzMEmQ/AAAAAAAAAAI/AAAAAAAAACk/AAKWJJPDKzoeGW0F0RbQCen_BUDZLfEvNw/photo.jpg,This app is amazing. It would be better if the app was able to be used without internet though.,3,0,4.11.1,2019-11-15 19:26:39,,,most_relevant,cc.forestapp +Saheli Karmakar,https://lh3.googleusercontent.com/a-/AOh14Ghea6ojL24ozevNimD894pE-vxM56GLbUwx9Amk,It hangs.. in my phone.. doesn't work.. cant understand..what the hell is happening with this app..after using more than 2times....fix it plz,3,0,4.11.4,2019-12-07 12:24:21,"Hi, +Could you please update Forest to the latest version (4.12.2) and see if it solves the problem? Thank you.",2019-12-27 13:21:04,most_relevant,cc.forestapp +Zuzanna M.,https://lh3.googleusercontent.com/-dT81KvcdBZg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMUCVJTrdiIG7hlry1oBh-jFec1Eg/photo.jpg,I dont get any notification when the timer runs out. Please help.,3,0,4.12.2,2020-01-09 11:37:47,"Hi, +Sorry for the inconvenience. Could you please send the details of the problem to android.support@forestapp.cc? We will investigate the problem further. +- Forest",2020-01-15 14:40:49,most_relevant,cc.forestapp +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,The app is crashing after I tap the plant button. Please do something about it :(,3,0,4.11.1,2019-11-16 15:08:07,"Hi, +Please update Forest to the latest version (4.13.1) and see if it solves the problem. +If you continue to experience issues, please reach us at android.support@forestapp.cc. Thank you! +- Forest",2020-02-16 15:13:42,most_relevant,cc.forestapp +Basak Kumkumoglu,https://lh3.googleusercontent.com/-scVSiB6seaw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNHLrvFMdQQva9KVOrh50iVgx5O9w/photo.jpg,"It's very disappointing that real tree planting is a premium service. If it was a free option, I would use this app almost 7/24 and you would win so much ad money, right?",3,1,4.11.1,2019-11-13 21:44:27,,,most_relevant,cc.forestapp +jay shee,https://lh3.googleusercontent.com/-PWw_gX3Qyhs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOdNL6QYbsVmjeUsvtU6ZrBl9--RA/photo.jpg,I'm unable to double my coins ..it is frustrating..,3,0,4.12.2,2020-01-08 07:34:52,"Hi, +Could you please update Forest to the latest version (4.12.3) and see if it solves the problem? Thank you.",2020-01-15 14:48:55,most_relevant,cc.forestapp +Mallapureddi Satyanarayana,https://lh3.googleusercontent.com/-orfC1aa3gTI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPlWavlRltDQFue4No9FJXrjJlunw/photo.jpg,Good please remove purchase or keep a pin while the time of purchase.good nice to focus.,3,0,4.11.1,2019-11-17 12:45:49,"Hi, +We are sorry for the inconvenience. As independent developers, we don't take any investment from venture capitalist. and thus we have to strive hard for the operation of Forest. To provide better and stable service and for the long-term product plan, we need to put some features in the Pro version. We kindly ask for your understanding. +- Forest",2020-02-15 17:43:52,most_relevant,cc.forestapp +Kevin Yang,https://lh3.googleusercontent.com/a-/AOh14GimgsCtZh_BS9rOa0wID-y_k3TD46hpysjyG3Ic,"I need help, the tree does not die if I leave the app. Maybe because I have a Razer phone 2?",3,0,4.13.0,2020-02-09 19:53:14,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2020-02-11 09:01:04,most_relevant,cc.forestapp +Arush Bansal,https://lh3.googleusercontent.com/-CkItIeeaQtc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOHbqBQIbcCnsn1LT73TVWD5hdcZw/photo.jpg,App was great but now the system crashes when in press plant,3,0,4.11.1,2019-11-17 12:24:15,"Hi, +Please update Forest to the latest version (4.13.1) and see if it solves the problem. +If you continue to experience issues, please reach us at android.support@forestapp.cc. Thank you! +- Forest",2020-02-15 17:44:54,most_relevant,cc.forestapp +MD.Mehedi Hasan Fahad,https://lh3.googleusercontent.com/a-/AOh14GgcHjfWRy67uqdWJEz9cAPTuWMzKK6_yMA61yhajw,Why doesn't it turns off my message notification,3,0,4.14.3,2020-03-24 03:51:14,,,most_relevant,cc.forestapp +Sooyeon Kim,https://lh3.googleusercontent.com/a-/AOh14GhSNB6iUT_gLkNkEhWgSVqlMxGckrQP1r5l8apN,"I purchased the pro version but i changed my phone, so the app says that i have to purchase to log in. What should I do?",3,0,4.13.0,2020-02-06 15:22:24,"Hi, +Please make sure you're logged in to your Google Play with only the Google account you originally used to install Forest, then go to the ""Pro Version"" in the Settings page, and your Pro upgrade should be restored automatically, which will then enable you to log in. +If the issue remains, please email us at android.support@forestapp.cc. +- Forest",2020-02-08 03:16:39,most_relevant,cc.forestapp +Sneha Salvatore,https://lh3.googleusercontent.com/a-/AOh14GggxA0kcpozJP4ncAGFaiY8625iT03SExK6Fumk-A,the app again crashed after updating... its not even responding,3,0,4.11.1,2019-12-04 16:53:10,"Hi, +Fix for the crashes is available in the Google Play Store (4.13.0). Please update the app as soon as possible to continue your focusing routine. +- Forest",2020-01-26 01:35:10,most_relevant,cc.forestapp +Eliana Rush,https://lh3.googleusercontent.com/-sHuK3ZM305A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNS0Asus4AvUijnjKSPvQiODyzsxg/photo.jpg,The photos that described what the app was about made it seem like the whitelist was just part of the app. Edit: What??? What kind of a responce is that?,3,0,4.14.3,2020-03-18 00:45:39,"Hi there, please feel free to let us know the problems. It is our pleasure to make Forest the better platform. - Forest",2020-03-14 05:33:03,most_relevant,cc.forestapp +Naveen R,https://lh3.googleusercontent.com/a-/AOh14GhxMaA-RfYddYk80LYi0DZfZOuYyjAp1oWUAt5hfHY,"After new update, the app is crashing! :(",3,0,4.11.1,2019-11-09 08:53:05,,,most_relevant,cc.forestapp +Frederic Piedboeuf,https://lh3.googleusercontent.com/a-/AOh14GjMAtpjgt_Ey1wiuaJ8zV3_XxoQPO4A1LC9-2cJ,was really great but lately it has been killing my trees even though I'm not touching my phone at all. It's kind of discouraging to come back after two hours of work and see that you now only have dead trees in your forest...,3,0,4.11.2,2019-11-21 14:46:01,"Hi, +Please update Forest to the latest version (4.13.1) and see if it solves the problem. +If you continue to experience issues, please reach us at android.support@forestapp.cc. Thank you! +- Forest",2020-02-11 09:11:21,most_relevant,cc.forestapp +Ashish Patel,https://lh3.googleusercontent.com/a-/AOh14GjpdTmxLlaOKb0cQK5LNZ9eM91hce3jBN429-aN_A,After recently updation this app is not proper working.. Please solve this issue.,3,1,4.11.1,2019-11-13 03:55:55,,,most_relevant,cc.forestapp +Somayeh Ahmadi,https://lh3.googleusercontent.com/a-/AOh14GiI0tSs0mABv3IDc3Hd5GcLbvvlu0AlB0QcVn7eOg,It's perfect but always hanging.,3,0,4.11.5,2019-12-16 04:48:15,"Hi, +Could you please update Forest to the latest version (4.12.3) and see if it solves the problem? Thank you.",2020-01-18 20:44:32,most_relevant,cc.forestapp +Bhavya Sen,https://lh3.googleusercontent.com/a-/AOh14Ggo0pbslzcb8sFm9daraFKJ-BkE6-Y_FrCWR-7xnQ,The only problem I have is that a lot of content in the app including the information and payment gateway regarding premium version is not in English. If I can't understand the terms and conditions or whatever I am clicking how will get the correct information about the purchase. Kindly provide all information regarding pro version in complete English 'ONLY'.,3,0,,2020-03-21 01:49:09,,,most_relevant,cc.forestapp +aditya rawat,https://lh3.googleusercontent.com/-gb9tAg4Xc-M/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNJOsUJ6NrwLkG-AMO-SiaMerSf6w/photo.jpg,"Good concept, works fine , helps to avoid phone addiction. But the problem with this app is that it crashes everytime when updated. Several times I installed and then uninstalled it. That led to loss of data and time. Tried your way , not available in my device. Problem still persists.",3,0,4.8.4,2020-03-21 12:28:44,"Hi, +Sorry for any inconvenience caused. Please turn off the automatic update in the Samsung app settings for Forest, and reinstall the latest version of Forest from Google Play. +Before you unload the app, please remember to synchronize manually to avoid losing data. Thank you! - Forest",2020-03-11 15:12:01,most_relevant,cc.forestapp +Alex Brinson,https://lh3.googleusercontent.com/-ajYL2wU42bU/AAAAAAAAAAI/AAAAAAAAAEY/AAKWJJPNB1acd06s4koxXQ1yJj-BenHNJg/photo.jpg,"I like the idea, but does no one else have serious concerns about privacy? Yes, the required permission to monitor your usage of other apps seems reasonably well-motivated by the stated purpose of classifying your phone usage as focused vs unfocused phone. But on further consideration, that' actually a ton of information to sign away in exchange for growing some digital trees. I'll just stick to a simple timed alarm until I see some assurance that our usage data isn't being sold to 3rd parties.",3,0,,2020-03-28 07:02:12,,,most_relevant,cc.forestapp +Davina Eddy,https://lh3.googleusercontent.com/a-/AOh14GhCf2fwt_BAf5LZvhQpXjtigAw-Y1AwNZTUwTi-qrM,"This was a great app for productivity but it was initially difficult to navigate through. Once I figured it out it still took a bit of time to set up and keep track to. If you've used baby of these, this interface is beautiful but it takes some time getting used to the input and progress.",3,0,,2020-03-30 17:37:09,,,most_relevant,cc.forestapp +Amina Felkaoui,https://lh3.googleusercontent.com/-7JG27qbUSnk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN3zklZkl87JTtbZ2Ur0JIQYzwvEw/photo.jpg,"Love the app, but I used to enjoy when the forest filled up and the trees merged together, I wish they could bring that back; cuz I do a lot of my work in bursts of 10-25mins and I never get the chance to get the elaborate plants from the longer time requiremnents. I took my review down to 3 stars because the plants are more expensive now which means there is less incentive to grow trees and save money because the goal of buying a new plant seems out of reach",3,0,,2020-01-08 18:15:55,"Hi, +Thank you for the feedback. While the prices of some plants are higher, those of the rest are lower. +You can get coins faster by completing longer planting sessions, unlocking achievements, or watching an ad to double your reward. +- Forest",2020-01-15 14:46:13,most_relevant,cc.forestapp +Kia Caballero,https://lh3.googleusercontent.com/-uJtEXpOqRzU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN774Lk7iuqyxTsuBV-FBYzaSFnJQ/photo.jpg,"The app is very nice but it keeps crashing. Please fix this I don't want to uninstall this app it helps me soooo much. After 2 days of downloading this app, when I open it it will take me to my home page. It wouldn't function. I have to clear the data and restart for it to function again. Please fix this immediately. Thank you.",3,0,,2020-01-07 10:48:37,"Hi, +Realme phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-01-15 14:07:44,most_relevant,cc.forestapp +taravat M,https://lh3.googleusercontent.com/-RmIqzFm5WhI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNbnKkI3z4QFJtmd_KHWook1QPaWA/photo.jpg,it is really different and essential idea But unfortunatly In my phone you can come out of the app without destroying your tree,3,0,4.11.5,2019-12-09 01:43:17,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2019-12-27 13:15:50,most_relevant,cc.forestapp +Okti Dinasakti,https://lh3.googleusercontent.com/a-/AOh14GgHj59KfzlXygTiAhYN5YuagTkU6CDNVTkx_vd_hXE,"Good app, however I have upgraded to pro version yet after twice usage now i can not open forest at all. This issue also happen before i update forest. I thought upgrading to pro will prevent from this issue (editted) Hi.. I have sent an email to the address you mention. The mail suggest me to disable the auto update, uninstall then reinstall the app. I have done it all, for two days it was okay, yet today i can not open the app anymore. Just like before. The app is keep crashing.",3,0,,2020-02-19 07:35:45,"Hi, +Vivo phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-02-13 08:02:38,most_relevant,cc.forestapp +Tryggvi Þór Skarphéðinsson,https://lh3.googleusercontent.com/a-/AOh14GjHDzRpgAUygkqLvTIGYSm8IiIWz-rJIwopcIqojQ,I really like the idea of this app but it doesn't function well for me. I'm a musician and I tried using it for practise but I had to use an metronome in the phone and then the tree always dies. I wish it was possible to let it grow without having to look at it all the time . Maybe also a pomodoro function?,3,0,,2020-03-03 10:25:58,,,most_relevant,cc.forestapp +Nacchan's Playground,https://lh3.googleusercontent.com/a-/AOh14Ghr5QYYx4t4tRaq-1LaSWFvyAyhc5SrCjLcOPYOew,"I like the idea of this app. I already purchase the Pro Version. BUT, some blacklisted app still unable to wither the tree when I open it from notification, such as Line and WhatsApp. Also, when I opened game, there is no floating banner that warn me to go back to the Forest app.",3,0,,2020-04-04 06:54:33,"Hi there, the whitelist is for you to add in the app that you may use while studying. It enables your trees won't wither. - Forest",2020-04-06 18:40:20,most_relevant,cc.forestapp +Mohakash Roy,https://lh3.googleusercontent.com/a-/AOh14GhgrTXJv7k47dKzX2-s095yXPPgkSf2yYNapAXK7w,"App friezes when changing plant offline,fix needed",3,0,4.11.1,2019-11-15 07:48:47,,,most_relevant,cc.forestapp +shandy samararathne,https://lh3.googleusercontent.com/a-/AOh14GjMDpSIRFknf6Xvr5BxvC17IG-q8YPD04izMAKPvQ,Love it! I have enough coins but I still can't purchase trees.is it only for the premium package?,3,0,4.12.0,2020-01-06 08:49:06,"Hi, +Could you please update Forest to the latest version (4.12.3), restart the app and see if it solves the problem? Thank you.",2020-01-15 14:13:05,most_relevant,cc.forestapp +Maya Ella,https://lh3.googleusercontent.com/a-/AOh14Gjo8ZTfZL1_MMExL0qcNu1stv7ssvNmty0ve-XQgg,"Great, but doesn't work offline",3,0,4.11.4,2019-12-01 12:22:54,"Hi, +Thank you for reporting the issue and sorry for the inconvenience. Our team shall look into the problem further. +If you encounter other issues, please reach us at android.support@forestapp.cc. +- Forest",2019-12-01 14:32:39,most_relevant,cc.forestapp +Ambika Sadhu,https://lh3.googleusercontent.com/-NASN0-OeHPE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMLr7IsVx3bTXuU-ykELlM_rJB_ow/photo.jpg,"The app is excellent in it's working. However, it crashes frequently, making me uninstall and reinstall it. Typically I think it happens if I open the app after a few days, without closing it properly ( forcing it to go in the background).",3,0,,2020-02-11 09:12:37,"Hi, +Samsung phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-02-12 18:46:53,most_relevant,cc.forestapp +Artistic_blue_wolf Artistic_blue_wolf,https://lh3.googleusercontent.com/a-/AOh14GjvgACMn01FTZTSaP4_QyQdR7bLX7Mt4UaUrbEx,It is amazing app. It was working great a week ago but i don't know why from this week it doesn't count the time properly for example if i studied 4hours+ it only shows 1hour. But overall i really like to study when i use this app. I hope they fix the bug soon.,3,0,,2020-02-22 08:01:31,"Hi, +Please update Forest to the latest version (4.14.1) and see if it solves the problem. +If you continue to experience issues, please reach us at android.support@forestapp.cc. Thank you! +- Forest",2020-02-29 18:33:11,most_relevant,cc.forestapp +sonika pal,https://lh3.googleusercontent.com/-na_vL9MzBc0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNaGdVX0kxvNQH_7B_3RsJKpGfceQ/photo.jpg,Please add pause provision in the app for long time study so thay actual focus can be counted .,3,0,4.12.2,2020-01-04 10:28:23,"Hello, +Thank you for your feedback. We will forward your suggestion to our team.",2020-01-17 05:12:26,most_relevant,cc.forestapp +Alvaro Serrahima,https://lh3.googleusercontent.com/a-/AOh14GjIzX76xOFfXq9RoqC2_A52ETbH8XLBw2r-3DNWGA,"I think the idea is pretty good but the app doesnt work too well. It used to show me an alert whenever I opened a game or instagram but now it doesnt so I just start loosing time. Also, it should be conected to the computer extension so I dont have to keep track of two different trees. There's a lot of room for improval so please make the app better. I still use it though but it could be so much better if it worked properly.",3,0,,2019-12-17 14:33:07,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2019-12-25 15:20:20,most_relevant,cc.forestapp +Donny Pie,https://lh3.googleusercontent.com/a-/AOh14GgRK4Cb6r8d2H1OvkHx_qbokTDNT6nOaFIrVrFoSg,"This is a good app for forming habits. However, it is missing important functions that you'll need. For one, this is primarily a countdown timer app. It only counts down for a specified time. It would be better if I could have a stopwatch feature. I want to use this app for times I'm working out. Also, the minimum time allowed is 10 minutes. They should change this. Either way, I uninstalled. Ads suck too.",3,0,,2019-12-21 17:40:59,"Hi, +Thank you for your feedback, we'll keep improving our services. :)",2019-12-25 15:17:21,most_relevant,cc.forestapp +Isha Jayshree,https://lh3.googleusercontent.com/a-/AOh14Ghq-FH5tF8to5hWEVY21iBpwgdMJlD3EpT6dIX0RTc,It helps me stay away from my phone for a limit of time and that developed a feeling of productivity in me,3,0,4.12.1,2019-12-16 16:29:14,"Hi, +Thank you for the rating! Don't hesitate to give us a positive review if you enjoy the app. :) +- Forest",2020-01-26 16:59:58,most_relevant,cc.forestapp +MilkySmite,https://lh3.googleusercontent.com/a-/AOh14GjQR-mKjdMNKGe36KF4RdpPy664a_uB3u5PzPTJ,It was great for 1 day! I cant open it! A waste of time! I need to uninstall and download it again for it to work for just 1 freaking day! Dont download!,3,0,,2020-03-15 04:35:10,,,most_relevant,cc.forestapp +QueerJamie,https://lh3.googleusercontent.com/a-/AOh14GiE7Xv35KxDp6WwpcV0EA7J1a1BJU7ND5JiE014ow,Even though I love it whenever I am doing tasks I like to do I cant play the atmosphere binaural app or the Spotify app and I always play music when I do tasks. And also I I would like naming the task feature as a way to track it. Another suggestion would be if I do more than I expected time wise going over to get more water for the extra time.,3,0,,2019-11-04 18:35:50,"Hi, +Thank you for the feedback. We recommend that you upgrade to the Pro version which has a whitelist feature that allows you to access certain apps. Please turn on the ""Counting exceeded time"" feature in the Settings to count the extra time you spend away from your phone and to get more coins. Thank you. +- Forest",2019-11-06 09:01:29,most_relevant,cc.forestapp +shikha gupta,https://lh3.googleusercontent.com/a-/AOh14GjhIgBp8qfr-ykfqDCCss8p8QY-i0JtJTEP3C24-Q,"It is mostly a boost to your own motivation... If you are not motivated enough, it ain't gonna work for you... There is nothing to stop you from using phone otherwise even while the tree continues to grow... Plus growing a tree as it does, is no real game or any incentive for that matter... Completing a painting or part of quest with every focused duration would have been so much better...",3,1,4.10.7,2019-11-07 11:54:01,,,most_relevant,cc.forestapp +Grimmjow Jaggerjaquez,https://lh3.googleusercontent.com/a-/AOh14Gjw3BHBtTy1x8QNgs9g7n7dgIsD8VtZd84awWgj,Hi I enjoyed the app but now it's crashing each time I try to open it and I have to reinstall it. I wouldn't mind of it was the first time but this is like the fourth time it's happening. Mind looking into it?,3,0,,2020-02-04 01:16:21,"Hi, +Oppo phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-02-05 17:53:03,most_relevant,cc.forestapp +Rebekah Robbins,https://lh3.googleusercontent.com/-VL1Vb0KgsjI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPAbQBAR6PWNgsPr_0Dq4e65qVrHA/photo.jpg,"Love the app, but I just purchased the pro version and my Generate Your Personal Flower event gift won't appear in the trees I can use. It says I still need to purchase it, but then I can't purchase it either because the store saya I already have.",3,0,,2020-03-02 18:58:21,,,most_relevant,cc.forestapp +cryptkeeper,https://lh3.googleusercontent.com/a-/AOh14GihlJy7CBwIuEjmJ4YNfBal9gQB9VodGpQvjLuoMDo,"I love the concept of the app BUT it needs a big update to change the interface, which makes it difficult for the user to interact with the app in a fun way. I bought the premium version and because i REALLY want to like this app and I think the real forest thing is really cool, I'll continue using it for a while. But seriously guys, please improve your app.",3,1,4.10.7,2019-10-20 22:20:03,"Hello, +Thank you for your feedback. We will forward your suggestion to our team and keep improving our services. +- Forest",2019-10-28 15:54:26,most_relevant,cc.forestapp +Pascale Worreth,https://lh3.googleusercontent.com/-_JCoeqGOD-Q/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOa-5FvZVet8JthRSp-5eBdQ-8LXg/photo.jpg,"I had the free version and enjoyed it but since I have bought the Premium version, I have not been able to buy new trees ! A message reads ""push-plantboost-token error : 404 (or 422)"" and it remains on the screen even if I leave Forest !!! Not glad about that really... :-(((",3,2,4.10.7,2019-11-03 14:37:40,"Hi, +Could you please contact us via the in-app feedback system so that we can investigate the problem further? Thank you and sorry for any inconvenience caused. +- Forest",2019-11-06 09:05:33,most_relevant,cc.forestapp +Kaustubh D,https://lh3.googleusercontent.com/-J5wpTsP7PgQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOpW_CVwqGST3HLsvhFz0LihmqENw/photo.jpg,Great app. Gives me the motivation to do the work and have a little garden of my own. But lately it doesnt want to start. Crashes as soon as i click on it. Please do something.,3,0,,2020-02-09 11:13:06,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problem to android.support@forestapp.cc? We will investigate the problem further. +- Forest",2020-02-11 09:09:46,most_relevant,cc.forestapp +Jenita James,https://lh3.googleusercontent.com/a-/AOh14GhjcHcxQ1GxVfZzsjqJj3EvksBdRMtI6b1FKuqb,"It's a good app, but it keeps crashing.. When I use the app after a week's time, it doesn't open. I've had to reinstall it multiple times Please fix it",3,0,,2020-02-14 18:52:50,"Hi, +Vivo phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-02-15 17:28:59,most_relevant,cc.forestapp +Kimione,https://lh3.googleusercontent.com/a-/AOh14GjgX7Rygmcv72KaConSWGUh8_jwDI99WU8dRz3g4g,"There's some problem with the newest version. The app doesn't blacklist other apps anymore. Apart from that, this is a good app. Provides motivation to stay focussed. Edit on 2019/11/17 Please fix the new bugs. The app is crashing everytime I'm planting a tree after installing the new update.",3,0,,2019-11-17 04:59:25,"Hi, +Fix for the crashes is available in the Google Play Store (4.13.0). Please update the app as soon as possible to continue your focusing routine.",2020-01-26 01:44:50,most_relevant,cc.forestapp +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Great pomodorro -like method for staying on task with a built in reward. Whitelisting was free at first, they should've kept it free and added* other desireable features they could've offered at a price.",3,0,,2020-03-02 22:47:50,,,most_relevant,cc.forestapp +Sadia Eshrat,https://lh3.googleusercontent.com/-pcFju5IuQDs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPNrut-7dMVgDQMgCpgwVcTjKjv1w/photo.jpg,This app is a very playful app. I use this app as a game. But I have faced some problems using this app. I can use other apps (phone based app/given by phone authority) while 'FOREST' app is active in the background. But on some apps (the apps I have installed by myself ) the forest app does its job. When I get into other apps the tree I have planted on FOREST app should have died but the forest app is not working on phone based app/given by phone authority.,3,0,4.10.4,2019-10-09 04:44:51,,,most_relevant,cc.forestapp +Jabrea Rodriguez,https://lh3.googleusercontent.com/a-/AOh14GhfnWKXqTVc_CtOAkGYb0NKHXx94htb_tsjj0MM8Q,This app really is a great idea but for those who dont care about a little digital plant like me it really isnt going to be affective because they wont care if the plant dies. Im going to try to download it again so i can have a little more discipline but other than that i think it is really nice.,3,0,,2019-11-27 00:31:50,"Hi, +Thank you for your feedback. We'll keep improving our services.",2019-12-01 15:00:56,most_relevant,cc.forestapp +Saurav Chaudhary,https://lh3.googleusercontent.com/a-/AOh14Ghy8THcIIiNZBwUbHn8AZAe1U8q64-sAalsjJp8wZQ,No Doubt This is a Great App but it is now causing errors. App Crashes all the time when i completed my first session of Study. Now I am Facing very much Problem.Kindly work on this issue,3,0,,2020-01-11 17:20:10,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problem to android.support@forestapp.cc? We will investigate the problem further. +- Forest",2020-01-15 13:48:35,most_relevant,cc.forestapp +Meenakshi Singh,https://lh3.googleusercontent.com/-M_IqWwr3bUo/AAAAAAAAAAI/AAAAAAAAEck/AAKWJJOVRBBgGR63InwZuPc0GV3tJFYQnA/photo.jpg,"Its refusing to open on a daily basis now, downloading it over and over is not fun. Any suggestions ? Forest has really helped me in keeping distractions to a minimum and maintaining focus. Update: I'm still facing the same issue 😩. Help a girl out.",3,0,4.10.4,2020-02-26 04:57:35,"Hi, +Could you please update Forest to the latest version (4.12.3) and see if it solves the problem? Thank you.",2020-01-15 14:48:43,most_relevant,cc.forestapp +Divyansh Expert,https://lh3.googleusercontent.com/a-/AOh14GgvjU2l9BMqM9UrLViQQbH9VT2h-c-xNUkndMErXA,"I really loved the app but after using it once, it does not launch and keeps crashing. I have tried reinstalling but it only works the first time I open it , then later I can't open it(keeps crashing). I use a Samsung M30 , if that helps.",3,0,,2019-12-21 13:51:31,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problem to android.support@forestapp.cc? We will investigate the problem further. +- Forest",2019-12-25 15:18:15,most_relevant,cc.forestapp +Miyu Kouzuki,https://lh3.googleusercontent.com/a-/AOh14Gh3CM6Fld-h3cdYLN4yGsQy7BJJ2M0K_LfYU0wC3Q,the app is good. but ive few complains. sometimes i need to use the web browser but i cant open it since it would wither my tree. so thats a hassle. and also make 1 tree for one hour.,3,0,,2020-02-27 07:57:12,"Hi, +If you upgrade to the Pro version, you'll get access to the whitelist feature which allows you to use apps that you've whitelisted during planting sessions. We hope you consider. Thank you!",2020-02-29 20:29:30,most_relevant,cc.forestapp +Sam Munoz,https://lh3.googleusercontent.com/a-/AOh14GjaisDYCmOtapb5LCgpkuTJK4-gzC4hRj4HXMEOkw,"Hey, I downloaded the app and paid for the premium because I saw a memo in a box. It said if I ""unlocked premium"" I'd get 7000 coins... Which I have yet to see in my app balance. I only have 116 coins and it is asking me to pay more to receive any coins. What gives? 🤔",3,0,4.10.7,2019-10-31 17:41:02,"Hi, +You will gain 7000 coins from the achievements as you grow to unlock them. No additional payment is required. +If you are still experiencing troubles, please contact us in-app. Thank you! +- Forest",2019-11-06 10:30:01,most_relevant,cc.forestapp +PBkitty kitty,https://lh3.googleusercontent.com/a-/AOh14GhSV_PWMw81Mv9-er1KyGilJkTDXgkIar3BWYNRug,Ever since the new update that came out today I have not been able to use forest. Every time I try opening the app is says forest has stopped. Is there any way to fix this?,3,0,4.9.5,2020-01-21 19:14:31,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problem to android.support@forestapp.cc? We will investigate the problem further. +- Forest",2020-01-21 19:37:38,most_relevant,cc.forestapp +Aalia mustafa,https://lh3.googleusercontent.com/a-/AOh14Gjm5T-HVT6PhZPsx4Idm6_kSwbPXDUORghGKXf7,It was working well but after sometime it was experiencing crashes and won't open.. really disappointed..but still I am downloading it again hope it'll not do the same,3,0,,2020-02-09 05:55:57,"Hi, +Vivo phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-02-11 09:14:10,most_relevant,cc.forestapp +hamna aami,https://lh3.googleusercontent.com/a-/AOh14GgNbtR6CLgGojURBMmy_D7Y6w_zc8-lKQw1hf4jOA,"When we install this app and use for the first time,it works perfectly.But next day when you try to open this app,it gets stopped.i tried multiple of time and no improvmnt",3,0,,2020-02-13 05:51:15,"Hi, +Samsung phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-02-13 08:06:21,most_relevant,cc.forestapp +bhawna shraddha,https://lh3.googleusercontent.com/a-/AOh14GiitLNxf_AD8cUIr0fo4uPIZfaYbzCbERxIDW_6Fw,The app keeps stopping repeatedly. It would be helpful if the same is resolved.,3,0,,2020-04-04 06:33:26,"Hi, +Sorry for any inconvenience caused. Please turn off the automatic update in the Samsung app settings for Forest, and reinstall the latest version of Forest from Google Play. Thank you! - Forest",2020-04-06 18:40:32,most_relevant,cc.forestapp +Angeline Ang,https://lh3.googleusercontent.com/a-/AOh14GiDm9GqylUnw5iKFI5iodAnU4ew6ZnODeanztL1,"Hi there, this app really helps me a lot in keeping myself focused and restraining myself for overusing my phone. But right after updating the app, I was unable to open the app again, please fix this problem as soon as possible, thanks!",3,0,,2019-11-24 16:18:48,"Hi, +Vivo phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2019-12-01 15:08:52,most_relevant,cc.forestapp +Varshini Kogali,https://lh3.googleusercontent.com/-t76ZbkQnNIQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP2WUJ-Rdo2Mq558eFkx4ZI7BakKA/photo.jpg,Awesome helps me to stay focused and doesn't let me to open any other app while studying :)) but after using sometimes I can't open the app only i even restart my phone but it is not working :( 😥😫,3,0,,2020-02-12 15:54:43,"Hi, +Have you contacted our support team as previously suggested? If not, please send us a ticket at android.support@forestapp.cc so we can help you further. +- Forest",2020-02-12 18:52:00,most_relevant,cc.forestapp +Madhura Garge,https://lh3.googleusercontent.com/-n-GBXuE-VLs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPc8fp2PwJEwOAijMOv6z4xeJ0ZoA/photo.jpg,I love the concert... And it helps me for studies ...but it works good for a day... When I open it on the next day.... It crashes again and again.... Please fixed it.....it helps me for studies....,3,0,,2020-01-14 02:51:35,"Hi, +Vivo phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-01-15 13:33:00,most_relevant,cc.forestapp +mimidorika,https://lh3.googleusercontent.com/a-/AOh14GgZLbFjHufO01sg62sqFTiWbVug2d_bKDaN-8CamQ,"it keeps crashing just when i paid premium! Devs pls help me. i really wanna use this app. As soon as i open it, it crashes and end abruptly. i am hoping for your quick response. Thank you",3,0,,2020-01-22 03:53:06,"Hi, +Oppo phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-01-22 16:47:21,most_relevant,cc.forestapp +Verbena Bezbaruah,https://lh3.googleusercontent.com/a-/AOh14Ght2zmz4of5xoEiTo1Jt58CbcfHQKVWbl8aiHeCeg,"It worked amazing for the first few months and then I decided to go premium. After using it for a couple of months, I started experiencing problems like it just freezes and doesn't respond. Please fix it",3,0,4.8.7,2019-11-25 15:12:50,"Hi, +Please update Forest to the latest version (4.13.0) and see if it solves the problem. +If you continue to experience issues, please reach us at android.support@forestapp.cc. Thank you! +- Forest",2020-02-05 17:59:22,most_relevant,cc.forestapp +Leonardo Rodrigues da Silva,https://lh3.googleusercontent.com/a-/AOh14GgIhYEkyyDvCDMlUTiGOiPEFpB0XxvtrFGK9qDRjDU,"The idea is great, but it doesn't help me with my goals. The thing is: i have to use it on silent and facedown, so others notifications (and lights) don't bother me. Here lies the problem: when the time runs out, the app doesn't vibrate... Cause of that i have to constantly check the hour, which is not good at all for me. I'm using a galaxy s7. Edit- See, that's the prob. I did everything in the answer, except turn off the silent mode... As i said, there's no use for me if i have to do that! Tks anyway.",3,0,4.4,2018-10-19 16:44:59,"Hi, + +Please check if you : + +1) Turn on Notification in the Forest settings page +2) Allow Forest to send notification in your phone settings +3) Turn off the Do Not Disturb Mode +4) Turn off the Silent Mode or allow vibration during Silent Mode + +If you have done the above and still receive no notification, please contact us. +Thank you! :) - Forest",2018-10-19 16:38:58,most_relevant,cc.forestapp +Samantha T,https://lh3.googleusercontent.com/a-/AOh14GiCkINtT-SjDLv4hYSX67mMonYszo21WQRoGYCQ3Q,"So it's a good app. Two things: 1. Sometimes I'll get back on after a really long session and my tree will have died for no reason. When I check the button that tells you, it's just a random app that I hadn't opened that day. Its happened several times and it makes me really sad so please fix this. 2. I can't get the app to let me access any other apps. Sometimes I will use it for homework so I don't get side tracked but I can't open a calculator without sacrificing the life of my tree. I wish you could select apps that would be okay to stay on. Please fix these two things and I will give you 5 stars for sure!!!",3,0,4.6.5,2018-12-07 04:21:42,"Hi, + +Sorry for your inconvenience. + +First of all, please try turning on the ""Advanced Notification Detection"" feature in the settings page. +Secondly, you could consider the whitelist feature in Pro version, which could prevent your tree from dying. + +Feel free to contact us if you have further questions. :) - Forest",2018-12-07 08:27:30,most_relevant,cc.forestapp +Ian Freda Hariyanto,https://lh3.googleusercontent.com/a-/AOh14GilTSYBYMVu8ipgZpxCM5ZcclMMZe4iaBSM-C0sug,"I genuinely think it is great, but I feel like there are still a lot of features that still can be improved. One of them is the whitelist feature. I bought the premium version in app, but I am not satisfied with it. The reason for that is the whitelist give to much leniency when planting trees. I plant the trees for various different reasons such as studying, excersising, relaxing, etc. However, I need some apps to be available in certain activity while unavailable in others. My suggestion is to apply different whitelists for different tags of activities. This will surely help me to be less distracted by other apps during a certain activity. I hope this improvement will be made and if so, I will gladly changed my ratings of the app.",3,3,4.3.1,2018-09-23 11:50:23,"Hello, + +Thank you for your feedback. +We will forward your suggestions to our team. + +Feel free to contact us if you have further questions. :) - Forest",2018-09-24 05:09:27,most_relevant,cc.forestapp +Anish Murthy,https://lh3.googleusercontent.com/a-/AOh14GgvIxXzqOcDXQ4vhx-PAeL2DsdfiJazqvWphxlwAEo,"The app is absolutely amazing, but with the loss of the whitelist feature, I can't set apps to be allowed to switch to. I do *not* want to pay extra for a feature that used to be free. Especially since I use my phone for most tasks through the day and I like having the ability to allow those apps to be opened workout killing the tree. Also, the tree dies when you get a call now, or when replying to notifications, which I used to be able to fix with the whitelist, but I'm just left with a ton of withered trees now.",3,2,4.6.5,2018-12-03 16:04:41,"Hello, + +Sorry for the inconvenience. +Could you try enabling the Advanced Notification Detection feature in the settings page of Forest and see if that helps? + +Feel free to contact us if you have further questions. :) - Forest",2018-12-05 15:19:04,most_relevant,cc.forestapp +Pena Lloyd,https://lh3.googleusercontent.com/-1Aqp--R1IFg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPCNaliBswnLjPqu7QjGaCFvCoVFQ/photo.jpg,Its only been one hour and it is working so far done one hour of work and did not touch my phone only time will tell lol,3,0,4.15.0,2020-04-06 04:25:49,"Hi there, please feel free to let us know the problems. It is our pleasure to make Forest the better platform. - Forest",2020-04-06 18:18:26,newest,cc.forestapp +Варвара Постриган,https://lh3.googleusercontent.com/a-/AOh14GjwOib1DjvXzwtVPmO34hHeOAqx8l7YrVvNduwr0l0,It's cool but now I can't use other apps as I used to. So i have to delete the app cause i always use many different apps while studying. That's sad,3,0,4.15.0,2020-04-05 12:29:46,"Hi, +By purchasing the Pro version, you can plant real trees on Earth, create an account and save your data, customize your whitelist, manage your own tags and view the detailed statistics of your time distribution, track your daily phone usage, plant, share and compete with friends, unlock achievements, and earn extra rewards! -Forest",2020-04-06 18:27:12,newest,cc.forestapp +Prasad Prasad,https://lh3.googleusercontent.com/-O8PZ9FZfFqs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNgEWg5ptBZ-apLF6wkETqXPT3U6Q/photo.jpg,Can't load,3,0,,2020-04-04 11:12:18,"Hi, +Sorry for any inconvenience caused. Please turn off the automatic update in the Samsung app settings for Forest, and reinstall the latest version of Forest from Google Play. Thank you! - Forest",2020-04-06 18:38:15,newest,cc.forestapp +Nacchan's Playground,https://lh3.googleusercontent.com/a-/AOh14Ghr5QYYx4t4tRaq-1LaSWFvyAyhc5SrCjLcOPYOew,"I like the idea of this app. I already purchase the Pro Version. BUT, some blacklisted app still unable to wither the tree when I open it from notification, such as Line and WhatsApp. Also, when I opened game, there is no floating banner that warn me to go back to the Forest app.",3,0,,2020-04-04 06:54:33,"Hi there, the whitelist is for you to add in the app that you may use while studying. It enables your trees won't wither. - Forest",2020-04-06 18:40:20,newest,cc.forestapp +bhawna shraddha,https://lh3.googleusercontent.com/a-/AOh14GiitLNxf_AD8cUIr0fo4uPIZfaYbzCbERxIDW_6Fw,The app keeps stopping repeatedly. It would be helpful if the same is resolved.,3,0,,2020-04-04 06:33:26,"Hi, +Sorry for any inconvenience caused. Please turn off the automatic update in the Samsung app settings for Forest, and reinstall the latest version of Forest from Google Play. Thank you! - Forest",2020-04-06 18:40:32,newest,cc.forestapp +Cindy lan,https://lh3.googleusercontent.com/a-/AOh14GiLvdBmBeQBPac-pnlgyVutWDcd88baJjyfieH-Ww,Good,3,0,4.15.0,2020-04-03 13:31:50,"Hi there, please feel free to let us know the problems. It is our pleasure to make Forest the better platform. - Forest",2020-04-06 18:45:24,newest,cc.forestapp +Natasa Koutsogiannaki,https://lh3.googleusercontent.com/a-/AOh14Gh_rN1KviDH0gOwiXca7--VoeFnhdwXtr3af0nluWU,good,3,0,4.15.0,2020-04-03 12:57:55,"Hi there, please feel free to let us know the problems. It is our pleasure to make Forest the better platform. - Forest",2020-04-06 18:45:58,newest,cc.forestapp +Kowsi Bu,https://lh3.googleusercontent.com/a-/AOh14GjZ-F_E-hPN4AA4Lwl9L0zwjP2-2XmhUZPxT2j0jw,When i actually use chrome to study coz i downloaded books,3,0,4.15.0,2020-04-03 12:22:21,"Hi there, please feel free to let us know the problems. It is our pleasure to make Forest the better platform. - Forest",2020-04-06 18:46:07,newest,cc.forestapp +ag,https://lh3.googleusercontent.com/a-/AOh14GiY90Ya6rqBX3P1hcUA41PLtKT8W_kP9tJsVEDKYA,I love this app but I wish free users could do more without a membership. Like at least they could be able to see the leaderboard... ://,3,0,4.15.0,2020-04-03 09:53:03,"Hi, +We understand your point, but as a start-up, we require assets to keep the company running smoothly. It is after much consideration that we decided to put certain functions in the Pro version. +Forest is a one-time purchase. You'll gain access to all the features once you unlock the Pro version. We hope you consider. Thank you! +- Forest",2020-04-06 18:47:49,newest,cc.forestapp +sindhusha d,https://lh3.googleusercontent.com/a-/AOh14GgEEEVuFPFQpYlaFQc7-y7OjeLD7NZ0ZZWb5vixg3E,The app keeps stopping and crashes suddenly. I dont unders why.,3,0,,2020-04-03 08:35:11,"Hi, +Sorry for any inconvenience caused. Please turn off the automatic update in the Samsung app settings for Forest, and reinstall the latest version of Forest from Google Play. Thank you! - Forest",2020-04-06 18:49:43,newest,cc.forestapp +{s h r i m p i e },https://lh3.googleusercontent.com/a-/AOh14GjMYImQKmm2IPwMseBRPJMqvyPjjL2u1nILtRtJ,"This app is amazing but after one day when I try to open it, it will just go back to my phone home screen. When I uninstall it then install it again, it will work but I will lose my forest and after a day it won't work again. Please fix this issue, I really love this app besides that issue I'm facing.",3,1,4.15.0,2020-04-03 07:39:13,"Hi, +The Vivo system has an error by downloading the correct app version. Please turn off the automatic update in the Vivo app settings for Forest, and reinstall the latest version of Forest from Google Play. Thank you! - Forest",2020-04-06 18:50:19,newest,cc.forestapp +Xx Xx,https://lh3.googleusercontent.com/a-/AOh14GjXvFMQJHpU6LjQQ-EpOBgpSAPN_ktCvAl0YgDszA,Bought premium version of the app but the whitelist fuction not working well as the tree isn't be killed when i use app i'm not supposed to,3,0,4.15.0,2020-04-03 00:17:35,"Hi, +Could you please go to System setting > Security > Other security access > Usage data access, and enable permission for Forest? Thank you. -Forest",2020-04-06 18:52:08,newest,cc.forestapp +Cintia Cs,https://lh3.googleusercontent.com/a-/AOh14GiGgVw0_1WEOQ48pcJICsI15GBtwWvXJroXzTT-hg,"Well I like the app and it truly helps me stay focused, combined with some time restriction methods it's good (although those ones are short times plus breaks), achievements are boring and not good enough, they try to make you pay for extra, but the app itself is not exciting enough to pay, the achievements are not really worth it and it's hard to unlock new trees even with pro version. No new campaigns are launched & collecting coins is not an easily achievable task, too hard to get new trees.",3,14,4.15.0,2020-04-02 15:54:21,"Hi, +Thank you for the feedback. As Forest aims to help users beat phone addiction, you can do anything you want and eventually get beautiful trees as long as you don't use your phone for two hours. +We understand that it's hard to work two hours straight, but feel free to take a break! Simply stay away from your phone. :) +- Forest",2020-04-06 18:56:58,newest,cc.forestapp +Kirigaya Kazuto,https://lh3.googleusercontent.com/-9DEnNTYoYbI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOmsuTpv7a638zKhPO4xSmh4haaGg/photo.jpg,"Reduced one star because there is a pro version..5 stars rated when there is another pros version?? It cant be, right? Reduced for another star because i suggest that you should have a 'pause session', check it out from the study bunny.",3,1,4.15.0,2020-04-01 15:22:00,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problem to android.support@forestapp.cc? We will investigate the problem further. +- Forest",2020-04-06 19:02:24,newest,cc.forestapp +Mubashra Sajid,https://lh3.googleusercontent.com/a-/AOh14Gj3xs2z580PQrtKIizcCIqzD2NW1VeQ72sqMrTBXA,It keeps crashing on my phone . Pleas do something about it,3,0,,2020-04-01 13:34:15,"Hi, +Sorry for any inconvenience caused. Please turn off the automatic update in the Samsung app settings for Forest, and reinstall the latest version of Forest from Google Play. Thank you! - Forest",2020-04-06 19:04:19,newest,cc.forestapp +Michelle S,https://lh3.googleusercontent.com/a-/AOh14Gi6GPE9K_0InTGniGgPcCFDKiAfpTo0XhISy63V,Please add group feature! :) Not growing trees with friends but like a study group that shows everyone who is currently studying with you on the screen...,3,0,,2020-04-01 06:54:08,"Hi, +Thank you for the suggestion! We'll let our team know about your feedback and see if we can work on it in the future. 💪-Forest",2020-04-06 19:05:44,newest,cc.forestapp +Bee Romeo,https://lh3.googleusercontent.com/a-/AOh14Gi3hGdy6nc8rzKMHi2DvS24ArQwCKKd57PHR85e7Q,"It's really motivating and would be perfect but it doesn't notif if your phone is locked. You'll only know that the time is done when you check the app, only then does it vibrate and notify you. I've followed all the instructions but it still doesn't properly notif when locked. Have to look for a new app :(",3,1,4.14.3,2020-03-31 23:49:13,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problem to android.support@forestapp.cc? We will investigate the problem further. +- Forest",2020-04-06 19:07:36,newest,cc.forestapp +მართა მოლიანი,https://lh3.googleusercontent.com/-GBuS0nplTmo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNrx-vL_EUC9ck4i_C9O0_CMP_NbQ/photo.jpg,So great😍,3,0,4.13.0,2020-03-31 10:12:39,,,newest,cc.forestapp +Davina Eddy,https://lh3.googleusercontent.com/a-/AOh14GhCf2fwt_BAf5LZvhQpXjtigAw-Y1AwNZTUwTi-qrM,"This was a great app for productivity but it was initially difficult to navigate through. Once I figured it out it still took a bit of time to set up and keep track to. If you've used baby of these, this interface is beautiful but it takes some time getting used to the input and progress.",3,0,,2020-03-30 17:37:09,,,newest,cc.forestapp +Mahima Seth,https://lh3.googleusercontent.com/-KOzzfcMzkiI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOEMeyRFigouSImhCBaQDFhpiaENQ/photo.jpg,"Run time exception, can't use the app.",3,0,,2020-03-30 11:35:16,,,newest,cc.forestapp +Rizia Akhtar,https://lh3.googleusercontent.com/a-/AOh14GgN3UMNnsIp2fw04wKVgzPi2N-7Jvuxa_mx6AvU,"The app is very good, but it keep crashing from time to time and I have to reinstall the app. Please look into this",3,0,4.15.0,2020-03-30 03:44:30,,,newest,cc.forestapp +Anilubho Mua,https://lh3.googleusercontent.com/a-/AOh14Gi67HupDTWSHgZSm97wOfKpxaWYK_KsgMS25lN2,Kinda good,3,0,4.15.0,2020-03-29 17:57:12,,,newest,cc.forestapp +Sita Ram,https://lh3.googleusercontent.com/a-/AOh14GjVZ2MWE3_545BB4pmZsmltrt2wBm2yL4a94gs7Rw,Nice app but can't pay,3,0,,2020-03-29 02:55:28,,,newest,cc.forestapp +Plengleela,https://lh3.googleusercontent.com/a-/AOh14GgNV2BxnnfZShSS4EpupwIBL3LNfWw5_JAVMrXLcw,It might be great if i can join online room by not type a code maybe i can found a new friend who has focus time like me.,3,0,4.15.0,2020-03-28 16:46:25,,,newest,cc.forestapp +Alex Brinson,https://lh3.googleusercontent.com/-ajYL2wU42bU/AAAAAAAAAAI/AAAAAAAAAEY/AAKWJJPNB1acd06s4koxXQ1yJj-BenHNJg/photo.jpg,"I like the idea, but does no one else have serious concerns about privacy? Yes, the required permission to monitor your usage of other apps seems reasonably well-motivated by the stated purpose of classifying your phone usage as focused vs unfocused phone. But on further consideration, that' actually a ton of information to sign away in exchange for growing some digital trees. I'll just stick to a simple timed alarm until I see some assurance that our usage data isn't being sold to 3rd parties.",3,0,,2020-03-28 07:02:12,,,newest,cc.forestapp +Carmen Westhuizen,https://lh3.googleusercontent.com/a-/AOh14GhhNpyFzQh4_hhI0sWnltVfBPNqkOTbkEI439u3,I just want a star coral6,3,0,4.15.0,2020-03-27 17:56:47,,,newest,cc.forestapp +Srabonti Chattopadhyay,https://lh3.googleusercontent.com/a-/AOh14GhIS5arElI1gWlP5SOPnDm2gPW64HkkfP-x4ebe,"Cute,😍",3,0,4.15.0,2020-03-27 17:06:11,,,newest,cc.forestapp +Elizabeth Danielson,https://lh3.googleusercontent.com/a-/AOh14GhRiVOeBoIrYap3CJSjaw9vHPEXUClKv9QLfffHnA,"Great, I just wish I can move it to another device with out having to by it again",3,0,4.14.3,2020-03-27 09:04:41,,,newest,cc.forestapp +Easy Solutions,https://lh3.googleusercontent.com/a-/AOh14GiZ5IuGAShvtfHv4zmPiv_y8cAVf-af0xG3w6U,I am pro user please add more music,3,0,4.14.3,2020-03-26 17:59:00,,,newest,cc.forestapp +elli,https://lh3.googleusercontent.com/a-/AOh14Gg8FiA8T75_0JIlLW4TePckj17Exgq7WSpuJHIE,So far cool! Great app,3,0,4.15.0,2020-03-26 16:21:30,,,newest,cc.forestapp +Aryasree Das,https://lh3.googleusercontent.com/a-/AOh14GiTU_AtLaxhpIMeF8MeYlX3kom2ZhG41iNrNx52nw,"The app is really good, but after some time it keeps stopping! I reinstalled it two times and the third time also, the problem persists. I was forced to uninstall it finally.",3,1,4.14.3,2020-03-26 05:43:44,,,newest,cc.forestapp +MULTIFANDOM HUMMEL,https://lh3.googleusercontent.com/a-/AOh14Gi69AgdKEigZP1DSTBK0M4f0mLxwH0KlSBYxnTTDA,"It's really cute and motivating. But what I'm missing, would be an option to set a tree to be planted at a specific time.",3,0,4.14.3,2020-03-25 15:25:47,,,newest,cc.forestapp +prashant g,https://lh3.googleusercontent.com/-5q8a9tYmlis/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMJQCM5v0NFSXqYU4BFxlk4f8auVg/photo.jpg,I have a moto e 1st gen and I updated forest app using Google play. Result. Forest app gets a crash everytime i try to use it. Fix the bug. It runs Android kitkat.,3,0,4.15.0,2020-03-25 11:48:21,,,newest,cc.forestapp +Edmund Chew,https://lh3.googleusercontent.com/a-/AOh14GgQ-Nkd2_smpwEOu07HDW9EWpb6QM4Cyv7LJCU2,Font too small,3,0,4.14.3,2020-03-25 01:35:27,,,newest,cc.forestapp +yeoh von cheng,https://lh3.googleusercontent.com/a-/AOh14Gh4VAQYUFIpivDTZiq7VJ2gk5XpZF5zcuAsSPKqpA,Love it!,3,0,4.14.3,2020-03-24 12:41:15,,,newest,cc.forestapp +Krishan Murari Gaur,https://lh3.googleusercontent.com/a-/AOh14GiFWerutwKlGh5SJOp3NyKdDblppOVmIKa1pIZn,Yas,3,0,,2020-03-24 10:14:19,,,newest,cc.forestapp +MD.Mehedi Hasan Fahad,https://lh3.googleusercontent.com/a-/AOh14GgcHjfWRy67uqdWJEz9cAPTuWMzKK6_yMA61yhajw,Why doesn't it turns off my message notification,3,0,4.14.3,2020-03-24 03:51:14,,,newest,cc.forestapp +Aletta Syasyah,https://lh3.googleusercontent.com/a-/AOh14GiNaw3I4j_asbz4CVk26DkR0iNaAMIyx5uQftBudg,"the app keep crashing, i reinstalled twice and still crash. one day after installed it won't open",3,0,,2020-03-23 03:52:42,,,newest,cc.forestapp +Kimberly Enriquez,https://lh3.googleusercontent.com/a-/AOh14GjY1U8_cnpakPSxVwsqEOSwEEmWYtdc4Dp-QlEx,"It helps tho, but I can't access premium account even if I had enough load credits in my phone network.",3,0,4.14.3,2020-03-22 19:36:13,,,newest,cc.forestapp +FgrB,https://lh3.googleusercontent.com/-FnZz8NUIbmc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPdqmWAlerVAkv8uqZl10MzUgux4w/photo.jpg,please fix the crash.,3,0,,2020-03-22 05:27:22,,,newest,cc.forestapp +aditya rawat,https://lh3.googleusercontent.com/-gb9tAg4Xc-M/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNJOsUJ6NrwLkG-AMO-SiaMerSf6w/photo.jpg,"Good concept, works fine , helps to avoid phone addiction. But the problem with this app is that it crashes everytime when updated. Several times I installed and then uninstalled it. That led to loss of data and time. Tried your way , not available in my device. Problem still persists.",3,0,4.8.4,2020-03-21 12:28:44,"Hi, +Sorry for any inconvenience caused. Please turn off the automatic update in the Samsung app settings for Forest, and reinstall the latest version of Forest from Google Play. +Before you unload the app, please remember to synchronize manually to avoid losing data. Thank you! - Forest",2020-03-11 15:12:01,newest,cc.forestapp +dharani moka,https://lh3.googleusercontent.com/a-/AOh14Gh7skVn1RuBF7-wB2gXj4mUgJMXST1khWo8wx_J,"It is a very good app for staying focused while studying, but the problem I'm facing now is that the music keeps stopping at random intervals and I have to unlock the phone to keep the music playing. Please look into this otherwise it's a great app.",3,0,4.14.3,2020-03-21 11:17:37,,,newest,cc.forestapp +Mimi Vanchhawng,https://lh3.googleusercontent.com/a-/AOh14GhpABT5Lbsq7nBxYjkx_vMQAAaWiAIT_0SH7Te9Sw,"Helps me stop touching my phone It helps me stop touching my phone. However, there is not much thrill in planting the tree. You cannot select where the tree is going to grow, and eventhough there are number of other trees, it cost so much and earn so little from planting it makes it so boring. It can get quite dissapointing",3,6,4.14.3,2020-03-21 04:23:49,,,newest,cc.forestapp +Bhavya Sen,https://lh3.googleusercontent.com/a-/AOh14Ggo0pbslzcb8sFm9daraFKJ-BkE6-Y_FrCWR-7xnQ,The only problem I have is that a lot of content in the app including the information and payment gateway regarding premium version is not in English. If I can't understand the terms and conditions or whatever I am clicking how will get the correct information about the purchase. Kindly provide all information regarding pro version in complete English 'ONLY'.,3,0,,2020-03-21 01:49:09,,,newest,cc.forestapp +momo peach,https://lh3.googleusercontent.com/a-/AOh14GiesfFLQo9r3O1bpFFtkG6h4vf6oyCFy7-Eh04e,"I like this app, but recently it keep crashes, I have already update to the latest version and it still keeps doing that, I can't even open the app... Please help. Thank you.",3,0,4.13.0,2020-03-20 05:17:40,"Please contact us via our in-app feedback system! + +To visit our in-app feedback system, please go to Settings and enter our FAQ first. + +Once there, please tap on the top-right icon and you should be able to contact us. Thank you and sorry for the inconvenience.",2020-04-06 14:03:38,newest,cc.forestapp +Zahra Paran,https://lh3.googleusercontent.com/a-/AOh14GjqkA6ZKCHIPqXUR1ybPYxys6cvPdejbFdVnNf4,This app used to be brilliant. It then began to function regardless of whether you were using your phone or not- essentially just becoming a basic timer. And then now the timer fails and kills trees when youre not using your phone. I just planted a tree only for it to die 20 seconds after when my phone locked.,3,16,4.14.3,2020-03-20 01:18:37,,,newest,cc.forestapp +shir nizan,https://lh3.googleusercontent.com/-uLyRqQv1rT4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMUnF7JuPeaKO9ga6xd4rcadxE2Iw/photo.jpg,"Hi, I liked the concept very much, unfortunately the design really bothered me: the different trees are not in the same drawing style and they don't fit together... Just hated seeing them next to each other.",3,0,4.11.1,2020-03-19 11:34:06,,,newest,cc.forestapp +Lin Yixiu,https://lh3.googleusercontent.com/a-/AOh14GiSQAJ7f5XtBNLcrdRyTB5Tgbzf0Mxpsg26PoPlTg,"Great app as it really helped me to focus on my schoolwork. However, lately my tree has been killed by calendar alerts though I have not switched to other apps while the tree is growing. I have turned on the Advanced detection option within the setting of the app but the problem still exists.",3,3,4.14.2,2020-03-19 04:16:38,"Hi, + +Sorry for the inconvenience. + +For the first problem, could you please contact us via our in-app feedback system? +For the second one, could you please manually sync your data by clicking ""Sync"" in the account section on the settings page? If the problem still exists, please contact us again. + +Thank you! :) - Forest",2018-08-26 03:56:16,newest,cc.forestapp +Jacky,https://lh3.googleusercontent.com/a-/AOh14GiQfVKIzxPS1aMlxn-JOswCHUH61o8-n8Wp2-NX9MI,"Please make the Android navigation bar match the app. The area with the back, home, recents buttons on non samsung phones.",3,0,,2020-03-19 00:17:14,,,newest,cc.forestapp +Saritha Balakrishna,https://lh3.googleusercontent.com/-94g9i_dAQQo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOcOQkfFNCRlIlxq1IJZo9hr9oxIQ/photo.jpg,Kindly add daily focus time feature when we open monthly or yearly focus.daily focus time is available in many free pomodoro apps.i dono why it is npt available even in paid version.,3,0,4.13.1,2020-03-18 19:13:14,,,newest,cc.forestapp +Kushal Shah,https://lh3.googleusercontent.com/a-/AOh14GgHBwMgjEa38hMavy5mCSnicwde168PZpVay-I6Sg,"This app keeps crashing on my Samsung Galaxy S8, kindly fix this bug because otherwise i love the app and the idea, it really helps me with me being productive",3,0,,2020-03-18 14:46:23,"Please contact us via our in-app feedback system! + +To visit our in-app feedback system, please go to Settings and enter our FAQ first. + +Once there, please tap on the top-right icon and you should be able to contact us. Thank you and sorry for the inconvenience.",2020-04-06 14:12:26,newest,cc.forestapp +Yagnesh Prajapati,https://lh3.googleusercontent.com/-GZG4y_ile-4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNthZeubgWjPBAEab1T_Ho1cHF9SA/photo.jpg,is not simple. difficult to use. try to make easyyyyyy.,3,0,,2020-03-18 12:45:45,,,newest,cc.forestapp +Tiffany StarRays,https://lh3.googleusercontent.com/a-/AOh14GjfEV2fmF_tiLNL3bfffhcShF9D5rixsAqvvYkxRA,I wanted to ask if we receive any coins if we plant trees for a long period of time. Because when I planted a tree for 2 hours I didn't receive any coins. Is this intentional or a bug?,3,0,4.13.0,2020-03-18 10:32:28,"Hi, +Oppo phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-01-30 15:20:03,newest,cc.forestapp +Eliana Rush,https://lh3.googleusercontent.com/-sHuK3ZM305A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNS0Asus4AvUijnjKSPvQiODyzsxg/photo.jpg,The photos that described what the app was about made it seem like the whitelist was just part of the app. Edit: What??? What kind of a responce is that?,3,0,4.14.3,2020-03-18 00:45:39,"Hi there, please feel free to let us know the problems. It is our pleasure to make Forest the better platform. - Forest",2020-03-14 05:33:03,newest,cc.forestapp +Kyparissi Marialena,https://lh3.googleusercontent.com/-qLyOIjrhI1o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPwOQetITM24pHzKc5Byh0ZjvaNqg/photo.jpg,Nog that bad,3,0,,2020-03-17 22:06:04,,,newest,cc.forestapp +rafeeque -,https://lh3.googleusercontent.com/-RG3X-zTs3h8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPfrS1faeNUz4yE4SUj-CA8YeVjwA/photo.jpg,This is a good app,3,0,4.14.3,2020-03-17 16:25:03,,,newest,cc.forestapp +bagi Kalyani,https://lh3.googleusercontent.com/a-/AOh14GjQDwfrxsU8mr_bWAs4PLwMqSJIUEhuTAggjgpSSA,After unlocking the tree with sufficient coins the tree is not changing and irt remains fixed in green colour,3,0,4.14.2,2020-03-17 06:16:39,"Hi, +Could you please manually sync your data in the Settings page and try to re-log in and see if it solves the problem?",2020-04-06 13:46:40,newest,cc.forestapp +Jocelyn Nelson,https://lh3.googleusercontent.com/-NBz490NYVS8/AAAAAAAAAAI/AAAAAAAANbA/AAKWJJNLTocxO1guPofeZ5D8LOboCQw05Q/photo.jpg,"Generally a useful app, I've found using a visual reminder to stay focused has helped and working toward unlocking new plants was fun. I found the recent increase in cost to unlock plants demotivating and I've been using the app less since it happened.",3,2,4.14.3,2020-03-16 15:32:58,,,newest,cc.forestapp +V. I. V. I,https://lh3.googleusercontent.com/a-/AOh14Gi9T1mxZfCOkMBBYVbmMvElGUuQTmOPrKU8b2aGDg,"I am kind of sad that we are not able to choose where to put the tree on the terraine :( other than that, the app seems great!! Also would be interesting to have the actual forest overview as a widget on your display 💪",3,0,4.14.2,2020-03-15 13:21:49,"Hi, +Thank you for the suggestion! We'll let our team know about your feedback and see if we can work on it in the future. 💪",2020-03-14 04:58:33,newest,cc.forestapp +MilkySmite,https://lh3.googleusercontent.com/a-/AOh14GjQR-mKjdMNKGe36KF4RdpPy664a_uB3u5PzPTJ,It was great for 1 day! I cant open it! A waste of time! I need to uninstall and download it again for it to work for just 1 freaking day! Dont download!,3,0,,2020-03-15 04:35:10,,,newest,cc.forestapp +Cheryl Tata,https://lh3.googleusercontent.com/a-/AOh14GjC4SH_E1NAC9gU3gahIrZ5GXSnTnABkqBb1kgw4g,"When the screen goes off and you on your phone but did not press into an app, the tree will be killed and waste your efforts. A lot of features are also locked and only premium which doesn't help with productivity. The Achievements sector of the app cannot be seen and the tress dies without reasons",3,1,4.14.1,2020-03-14 08:28:05,"Hi, +Would you please make sure you have turned off the ""Wither the tree when Forest is closed"" option in the Settings? Please turn it off to see if it helps. +Feel free to contact us again if you have any other questions or suggestions.",2020-04-06 13:28:15,newest,cc.forestapp +Negin Mohseni,https://lh3.googleusercontent.com/a-/AOh14GhBZTX3sUM7pu5m4zfzvc_KLUc28_1PUXntTxMrZg,Most of the trees and species are not cute enough,3,0,4.14.2,2020-03-12 18:05:03,"Hi, +We'll let our team know about your feedback and make an effort. 💪- Forest",2020-03-14 05:07:10,newest,cc.forestapp +Tuzka debian,https://lh3.googleusercontent.com/-XzhiGeJa8OI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP7QyB0MXzu1tlRD2ioHFfPut2e0A/photo.jpg,"I had my progress save on another phone, is there no way to get it transferred to my new one?",3,0,4.14.2,2020-03-12 11:47:19,"Hi, +Unfortunately, your data can't be saved on the free version of the app. +If you're a Pro user, please contact us via our in-app feedback system so we can assist you further and see if it's possible to recover your data. :) +- Forest",2020-03-14 05:10:53,newest,cc.forestapp +Diamond Coursey,https://lh3.googleusercontent.com/-LkM1tDMTs9Y/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN5mvTU3WMA-z7Upmzfc-2iPYozDg/photo.jpg,"I've been using this app for a long time and I love it! However, recently, it has been weirdly buggy and my trees die from things like ""Samsung Health"" as well as Snapchat notifications! Even when I don't even look at them, the notifications kill the tree!",3,3,4.14.2,2020-03-12 08:40:54,"Please enables the ""Advanced notification detection"" option on the Settings page. +If the app automatically starts, please add it to your whitelist. +Thank you and we apologize for any inconvenience caused. - Forest",2020-03-14 05:21:43,newest,cc.forestapp +cute dreamer,https://lh3.googleusercontent.com/a-/AOh14Gij98yeLUagZ-y5CXCifb_8lS8fBcdbERkWT0ml,Very nice,3,0,4.10.4,2020-03-12 07:01:57,"Hi, +Thank you for the rating! Don't hesitate to give us a positive review if you enjoy the app. :) +- Forest",2020-03-14 05:22:38,newest,cc.forestapp +mark. acs_,https://lh3.googleusercontent.com/a-/AOh14GhH7hscxBFE--N160mXEdl5Rwdq0OSsd8o0MUdicQ,How to name the tree that Ive plant?,3,0,4.14.2,2020-03-11 03:02:57,"Hi there, we are sorry that by far we do not have this function. However, you can go to settings and Tags to name your trees whether is planting while working or sporting situation. - Forest",2020-03-11 14:14:40,newest,cc.forestapp +Raider TM,https://lh3.googleusercontent.com/a-/AOh14Gg7rO97XKTrdEQMb3xQqxYOHkvah_KpF_Dlc4O-mw,Era pra poder criar conta e salvar o progresso mesmo sem pagar :(,3,0,,2020-03-09 13:09:18,"Hi, +Unfortunately, your data can't be saved on the free version of the app. +If you're a Pro user, please contact us via our in-app feedback system so we can assist you further and see if it's possible to recover your data. :) +- Forest",2020-03-14 05:36:40,newest,cc.forestapp +roisin cowans,https://lh3.googleusercontent.com/a-/AOh14GjkNLXq4IIyE95Z3C2VxXtpZQp0-jvESN9HPeEWPA,"I really like the paid version of the app, the only request i would have is I use this app for pomodoro (25 min bursts) during the work week and I miss having the full tree image. Is there a settings option to change this?",3,0,4.14.1,2020-03-09 08:51:41,"Hi there, we are sorry for the inconvenience. We only have the notification bumps out when the tree is well-planted by far. Here is a suggestion for you. You can use the alarm app on your phone instead. Hope it will work. Have a nice day!",2020-03-14 05:39:36,newest,cc.forestapp +Arfa Khan,https://lh3.googleusercontent.com/a-/AOh14GicVc7ialQ9U0jmxUPmk-4dbkItxDfeC4_o2fsN,They need money for whitelist and great feature which is not good.. Although its great app,3,0,4.14.2,2020-03-09 04:27:33,"Hi, +We are sorry for the inconvenience. As independent developers, we don't take any investment from venture capitalist. and thus we have to strive hard for the operation of Forest. To provide better and stable service and for the long-term product plan, we need to put some features in the Pro version. We kindly ask for your understanding. +- Forest",2020-03-14 05:23:10,newest,cc.forestapp +denise lim,https://lh3.googleusercontent.com/a-/AOh14GipNrPOkEWksCtAlvS_6ofHKQxYKG1wyTcW0ajH,nice,3,0,4.14.2,2020-03-08 12:52:42,,,newest,cc.forestapp +Mustafa,https://lh3.googleusercontent.com/a-/AOh14GgB_yBktmNtHcJBKXFOs0NGePkrBQICYGOzxnp7ig,Why is it so unstable?!,3,0,,2020-03-07 10:55:36,,,newest,cc.forestapp +Elvis Chu,https://lh3.googleusercontent.com/-lWkH4Mpo51w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOX9hxdanWpAczEZiutG62b3uG6fw/photo.jpg,Nice idea,3,0,4.14.1,2020-03-06 06:46:24,,,newest,cc.forestapp +Jonathon Baker,https://lh3.googleusercontent.com/a-/AOh14GgU-ioiUC4OnZDrYjCvuD_p_biT2CClH7aQM4Y_Pw,"This app was very helpful up until the last update where they inexplicably took away the ""Lock Forest to Stay in Foreground"" feature. As of right now it's basically useless, but the support staff is great and said they were hoping to bring back the feature! So other than that it would be 5-stars. Don't change the feature that keeps people off their phones",3,77,4.14.1,2020-03-05 18:41:24,,,newest,cc.forestapp +Crystal Vivs,https://lh3.googleusercontent.com/a-/AOh14GhWRzKYoUF_XRH0kwcYSXd_c5bAdGjy6jlCSooENA,"I can say this is a nice app! I often see this app on so many study videos. But i just start to use this app now and when i plant the tree, i can still open other apps and the tree didn't die...please help",3,0,4.14.1,2020-03-05 10:33:30,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2020-03-14 05:30:08,newest,cc.forestapp +Gabrielle Chwalik,https://lh3.googleusercontent.com/--kATwmArsrw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPL9hmMEWL2_AzMJWnkoyee5FtJ5A/photo.jpg,"I really like this app! However, it doesn't force keep the trees growing in the foreground anymore, unless you give the app access to almost everything on your phone (you basically have to give it root access, and even then it's not guaranteed to work). The security risk isn't worth it to me :(",3,2,4.14.1,2020-03-05 07:28:32,"Hi, + +Sorry to hear this is happening. + +Please provide us the details and the screenshots of the problem via our in-app feedback system. We could investigate this issue further. + +Thank you! :) - Forest",2018-09-05 15:38:18,newest,cc.forestapp +AN L,https://lh3.googleusercontent.com/-0U2LOuL0k6c/AAAAAAAAAAI/AAAAAAAABBs/AAKWJJNSWDheGCJW4um1SEQTU6U6MnwNKw/photo.jpg,"Not able to show the notification after the time is up. Also, it is not able to function well on counting the exceeded time or shown incorrectly. It would be of great help if you could fix the problems. Thank you:)",3,0,4.14.1,2020-03-05 05:58:18,"Hi, +Thank you for the report and sorry about the woes with notifications. We understand it’s a crucial feature and would like to look into what’s causing the trouble. Can you drop us a line to android.support@forestapp.cc? Thank you.",2020-03-14 05:31:48,newest,cc.forestapp +sharon chase,https://lh3.googleusercontent.com/a-/AOh14GgS0tlDQoXhmpfoUITPucu0U4FcGITUtuj-mak-,I hope that they could have an alarm after the rest session ends,3,0,,2020-03-05 04:14:34,"Hi, +We do - could you send us a ticket at android.support@forestapp.cc together with your phone model, Android OS version and Forest version number so we can check why you aren't receiving a notification? Thank you. +- Forest",2020-03-14 05:35:33,newest,cc.forestapp +Isabel Mialdea Castillo,https://lh3.googleusercontent.com/a-/AOh14GjjMQvz2JjHptYa83SbnA7lguUg_OpDURxfBYpprQ,"Todo bien, pero los anuncios nunca me deja verlos, y cuando lo intento varias veces dice que he excedido el limite aun sin haber visto ninguno. Eso me molesta mucho y más aún habiendo pagado por la aplicación.",3,1,4.14.0,2020-03-04 16:50:00,"Hello, +Sorry for the trouble. Unfortunately we don't have the right to interfere with ads as they are managed by the third-party advertising platform. We kindly ask for your understanding. +- Forest",2020-03-14 05:39:08,newest,cc.forestapp +Lachlan Wilson,https://lh3.googleusercontent.com/-SVgoW3XMtEI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNtFoKWyWE3jBGNuTudMuIWJdZyFA/photo.jpg,Good,3,0,4.14.1,2020-03-04 12:57:53,"Hi there, please feel free to let us know the problems. It is our pleasure to make Forest the better platform. - Forest",2020-03-14 05:39:54,newest,cc.forestapp +Toukka Pilvi,https://lh3.googleusercontent.com/-G1MW1R6fQG0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMSEc6eJJGH4mIKEmsCwVpZry78Uw/photo.jpg,Why did u guys eliminate the bushes? Now for 10 min u get a tree which doesn't motivate me to focus for 25min anymore.,3,0,,2020-03-04 11:49:59,"Hi, +The difference in length of planting time has been eliminated and all plants, including both bushes and trees, can be planted anywhere from 10 minutes to 180 minutes. You'll now get 4 bushes of the same look or 4 trees at different growth stages when you set the timer over 120 minutes. :) +- Forest",2020-03-14 05:41:22,newest,cc.forestapp +Lee,https://lh3.googleusercontent.com/a-/AOh14GiZIJAotCMz2tDPx9Rlm343CY7l_opMcz-93ws9384,"I kinda miss the old system where time-specific trees styles were the thing. Now you can pick anything after focusing for 10 minutes. It actually takes away incentive to study / focus longer. Nitpick 1: the bracketed (week) has no space after the day, example Monday(week), instead of Monday (Week). Nitpick 2: sharing. It would be nice to share more than just an image of the forest. Perhaps some tree stats? Much like there is underneath the forest itself.",3,20,4.14.0,2020-03-03 21:34:26,"Hi, +Thank you for the suggestion! We'll let our team know about your feedback. -Forest",2020-03-14 05:53:55,newest,cc.forestapp +Khushi Gupta,https://lh3.googleusercontent.com/-QMbqFy_Fpps/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNBV2cVcAqDSc9RJm6i733XstRHBQ/photo.jpg,It is not working,3,0,,2020-03-03 16:03:57,"Hi there, please feel free to let us know the problems. It is our pleasure to make Forest the better platform. - Forest",2020-03-14 05:56:38,newest,cc.forestapp +Tryggvi Þór Skarphéðinsson,https://lh3.googleusercontent.com/a-/AOh14GjHDzRpgAUygkqLvTIGYSm8IiIWz-rJIwopcIqojQ,I really like the idea of this app but it doesn't function well for me. I'm a musician and I tried using it for practise but I had to use an metronome in the phone and then the tree always dies. I wish it was possible to let it grow without having to look at it all the time . Maybe also a pomodoro function?,3,0,,2020-03-03 10:25:58,,,newest,cc.forestapp +CANDACE YUEN,https://lh3.googleusercontent.com/-WtIqnEAom7Y/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM3hhssmoq9GCRonUt1LF1cC6Xylg/photo.jpg,"I'm a premium user and I've bought it for about 3 weeks now. However, I've realized lately that although the timer records the amount if time I've focused, the app doesnt record nor update my data, for example in the friends page it always says that I've focused for 0 minutes when in reality it's a couple hundred minutes already. Please try to fix this problem. Thank you!",3,71,4.14.1,2020-03-03 09:02:27,,,newest,cc.forestapp +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Great pomodorro -like method for staying on task with a built in reward. Whitelisting was free at first, they should've kept it free and added* other desireable features they could've offered at a price.",3,0,,2020-03-02 22:47:50,,,newest,cc.forestapp +Rebekah Robbins,https://lh3.googleusercontent.com/-VL1Vb0KgsjI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPAbQBAR6PWNgsPr_0Dq4e65qVrHA/photo.jpg,"Love the app, but I just purchased the pro version and my Generate Your Personal Flower event gift won't appear in the trees I can use. It says I still need to purchase it, but then I can't purchase it either because the store saya I already have.",3,0,,2020-03-02 18:58:21,,,newest,cc.forestapp +wyatt m,https://lh3.googleusercontent.com/a-/AOh14GgqEjHYUndjgm1urVwr7aH2TyUFNfK_xr-L9DKNeQ,"I really like the idea of this app, however you'rer not allowed to use lot of useful features unless you pay! and that's upsetting :/l",3,0,4.14.1,2020-03-01 18:59:06,,,newest,cc.forestapp +Magda,https://lh3.googleusercontent.com/a-/AOh14Ggv8EKlvjTuJJxn_wzxMQ9sqQpUClcwcWyWDaAM3GQ,"It's ok but new trees are way too expensive, and only few change their form with the time passing. You can also pay with app-coins to buy sounds which are available all over the internet, including other apps. I would love for the developers to add new features tho!",3,0,4.14.1,2020-03-01 16:31:16,,,newest,cc.forestapp +Jamie Jon Andrew,https://lh3.googleusercontent.com/a-/AOh14GhFVZ3zKU4hw-YfwZUfDhTPsbXQDb4Y9zbxv5_Y,"Originally had it at 5 stars but every time I study now my friends list is completely innacurate. It won't show the correct amount of hours I've studied for on my friends list, e.g. today I've done 70 minutes but it comes up as 20. Very annoying.",3,1,4.14.1,2020-03-01 15:36:16,,,newest,cc.forestapp +Snehlata Jaiswal,https://lh3.googleusercontent.com/-Wq4_GezNZ7U/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOHkZcvA6po7OjdOhZkTxGsSR4G8g/photo.jpg,Good,3,0,4.14.0,2020-03-01 09:14:11,,,newest,cc.forestapp +Hrik Roy,https://lh3.googleusercontent.com/a-/AOh14Ghor_wmXffYLlmu_qlQZND9czmYqR_6Web0HntwzA,Its crashes all the time so help me in this case,3,0,,2020-03-01 02:17:01,,,newest,cc.forestapp +"Barrera, Gabrielle Louise",https://lh3.googleusercontent.com/a-/AOh14GgWI-LvkfESTfMZYvaMiJdjqMir9oodYPNyNMIwdg,I love love love the app and ever since I bought the Pro version I've had it running in the background and was still able to access other apps I use for studying. The problem is... I can't access the store where you can buy various different trees. So all I'm stuck with are the defaults and the Wisteria tree I redeemed. Five stars if you can fix this problem.,3,19,4.14.0,2020-02-29 23:59:59,,,newest,cc.forestapp +Crystal Francis,https://lh3.googleusercontent.com/a-/AOh14GjxNJyTN5CiRcDom0_wUkRyiNipP6E8loLQvqNzfQ,I would love to buy trees but even though I have the coins I get told I don't have enough. That is rather frustrating. But it is great to set goals and make it so you can not be distracted by texts and emails.,3,1,4.14.1,2020-02-29 22:57:24,,,newest,cc.forestapp +liam sweeney,https://lh3.googleusercontent.com/-H758p4c9EE4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPea6Pc4UratafqgoJebXQLbhmBqA/photo.jpg,Great concept. Store doesn't open though it needs fixing.,3,0,4.14.0,2020-02-29 21:05:09,,,newest,cc.forestapp +Esther Ying Qian Kueh,https://lh3.googleusercontent.com/a-/AOh14GiR1rKVQc-zRVbvXOYJCspHfCXG2lr65nQhLbBZ,I'm using the premium version.Recently it stop updating the total time focused by itself when comparing with other friends.,3,0,4.14.1,2020-02-29 14:28:52,"Hi, +Could you please contact us via the in-app feedback system so that we can investigate the problem further? Thank you and sorry for any inconvenience caused.",2020-02-29 17:56:33,newest,cc.forestapp +Akansha Singh,https://lh3.googleusercontent.com/-65BaQIynI_g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOfuoQ_54ZRz5xBzCF5_EkrzKnGiQ/photo.jpg,"I like this app but I give only 3 stars because I am unable to bye new plants , whenever I go to Store to bye new plants it always load , loading never stops and , so I was always unsuccessful to bye new plants. Please make any solution for this problem so then I can give you 5 stars",3,1,4.14.1,2020-02-29 12:28:50,"Hi, +Sorry to hear about the trouble. Our support engineers are currently working on this issue and we shall fix it ASAP. +For further assistance, contact our customer support at android.support@forestapp.cc :) +- Forest",2020-02-29 18:00:16,newest,cc.forestapp +Shraddha Chatterjee,https://lh3.googleusercontent.com/a-/AOh14GiNjd0fvTptXFlNGRDhFMlqo_DHWVi0-x8PRwDm2A,"The app works only if you do not press ""Clear All Apps"" while the App runs. The moment you clear, you can shuffle between other apps and use it as long as you dont reopen the Forest App. The app starts running again, once you open it and it blocks other apps. This needs to be fixed!",3,3,4.14.0,2020-02-29 11:08:36,"Hi, +Thank you for the feedback. Apps can't work when closed, so Forest would not be able to detect usage of your device once you quit it. Please turn on the ""Wither the tree when Forest is closed"" option in the Settings so that your trees will wither when you close the app. Thank you. +- Forest",2020-02-29 18:02:32,newest,cc.forestapp +Maddison DeTate,https://lh3.googleusercontent.com/a-/AOh14GhrqX-qqH7LkLzeUtdk1aj4YmO77K7nXhYcCRTu2Q,"I love this app so far, but I cannot access the store to buy more trees and plants? Which is a huge bummer, I love all the special little guys that need to be unlocked.",3,1,4.14.0,2020-02-29 03:57:28,"Hi, +Sorry to hear about the trouble. Our support engineers are currently working on this issue and we shall fix it ASAP. +For further assistance, contact our customer support at android.support@forestapp.cc :) +- Forest",2020-02-29 18:10:50,newest,cc.forestapp +Jessmin Teo,https://lh3.googleusercontent.com/a-/AOh14Ggfy21uErta9Vit6peTE_sBcowZxf-YqNmliPs1cQ,After the new update i cannot plant the new tree (real tree),3,0,4.14.0,2020-02-28 14:20:11,"Hi, +Sorry to hear this is happening. Could you please send us screenshots related to this issue at android.support@forestapp.cc? We’ll fix it asap. Thank you for your patience. +- Forest",2020-02-28 15:37:02,newest,cc.forestapp +Alon Nachshon,https://lh3.googleusercontent.com/a-/AOh14Gipit0SOI1rYMEO1LoFmpAvM8FWf9xSVMGTWPXA3g,"Note 10 plus - buffering issues. Timeline feature and The Coin ""+"" sign cause the app to go into buffer mode. So those features eventually are unavailable.",3,0,4.14.0,2020-02-28 14:17:14,"Hi, +Sorry to hear this is happening. Could you please send us screenshots related to this issue at android.support@forestapp.cc? We’ll fix it asap. Thank you for your patience. +- Forest",2020-02-28 15:37:52,newest,cc.forestapp +Rhea Chen,https://lh3.googleusercontent.com/a-/AOh14GiuMxd1pTOJUNdo0HwZ2-Mi42g4Yq8rHnc-38d0eg,"Amazing app!😍 I love the concept of combining productivity and rewards together. The feeling of satisfaction and joy is just thrilling after your time is up and you successfully planted a cute tree. Only thing that isn't working for me is that the page for buying trees isn't loading. I can't see the trees I want to buy and there's an error whenever I want to buy a sound. To sum it up, I CAN'T BUY TREES OR SOUNDS. Please fix this bug as I want to unlock more trees.",3,39,4.14.0,2020-02-28 09:54:11,"Hi, +Sorry to hear this is happening. Could you please send us screenshots related to this issue at android.support@forestapp.cc? We’ll fix it asap. Thank you for your patience. +- Forest",2020-02-28 15:45:06,newest,cc.forestapp +Nam Eric Doan,https://lh3.googleusercontent.com/a-/AOh14Gjg4IGP8AVNfKTxOAJGyUgAMZi4RUSTJmodb07uXAQ,"I do enjoy this app, but it looks and functions terribly on anything but a mobile aspect ratio. I'm attempting to use this for ChromeOS, on a Pixelbook, but the app is unable to run in windowed mode or resize in landscape mode properly. I am also a pro-user, but the app lacks pro functions. There is no pause feature to be found on either the Android or Chrome extension and deleting records costs an additional 60 coins.",3,34,4.14.0,2020-02-27 21:55:11,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problem to android.support@forestapp.cc? We'd be happy to help!. +- Forest",2020-02-28 16:10:18,newest,cc.forestapp +Krishnendu Laha,https://lh3.googleusercontent.com/a-/AOh14GghETns2L674B_7N5QV0jcf45PdKa_7H6jJpj6agms,"It's really a great app and good concept to cure phone addiction. But I've some ideas for making it more interesting. Introduce forest customization options- like a real forest. Add animals, Cascades etc. Anyway great work guys!",3,0,4.13.1,2020-02-27 12:59:00,"Hello, +Thank you for your feedback. We will forward your suggestion to our team. :)",2020-02-28 16:18:24,newest,cc.forestapp +Bhanu Priya,https://lh3.googleusercontent.com/a-/AOh14GjtP-y5LmznaPUhfav4iIjk0kk_YtrNmqHf4h7W2A,Frequent crashes.,3,0,,2020-02-27 08:35:32,"Hi, +Vivo phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-02-29 20:28:56,newest,cc.forestapp +Miyu Kouzuki,https://lh3.googleusercontent.com/a-/AOh14Gh3CM6Fld-h3cdYLN4yGsQy7BJJ2M0K_LfYU0wC3Q,the app is good. but ive few complains. sometimes i need to use the web browser but i cant open it since it would wither my tree. so thats a hassle. and also make 1 tree for one hour.,3,0,,2020-02-27 07:57:12,"Hi, +If you upgrade to the Pro version, you'll get access to the whitelist feature which allows you to use apps that you've whitelisted during planting sessions. We hope you consider. Thank you!",2020-02-29 20:29:30,newest,cc.forestapp +Elya Rahimi,https://lh3.googleusercontent.com/a-/AOh14Gg6QJVQ1wdr4etV5r2LCpuxngNaZIBo95mbEc3D,"I wish I could use whitelist for free, because I live in Iran and can't pay for it",3,0,4.13.1,2020-02-26 13:41:25,"Hi, +We are sorry for the inconvenience. As independent developers, we don't take any investment from venture capitalist. and thus we have to strive hard for the operation of Forest. To provide better and stable service and for the long-term product plan, we need to put some features in the Pro version. We kindly ask for your understanding. +- Forest",2020-02-29 20:31:51,newest,cc.forestapp +mohamed adam,https://lh3.googleusercontent.com/-EAvMLewBFrU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPkq2ZU84c1irafVXslXJrGgmGYRQ/photo.jpg,"The fact that the app does not let you use other studying apps that you have on your phone or google to find information is a bit annoying. Currently the only way to get around this is to collect all the information you need before turning on the app, but, that opens you up to distractions and wasting time.I feel like this app is specifically designed for reading purposes only, since I can sometimes finish homework before the timer runs out but the only way to stop the app is to kill the tree.",3,55,4.13.1,2020-02-26 12:50:20,"Hi, +If you upgrade to the Pro version, you'll get access to the whitelist feature which allows you to use apps that you've whitelisted during planting sessions. We hope you consider. Thank you!",2020-02-29 20:32:09,newest,cc.forestapp +Meenakshi Singh,https://lh3.googleusercontent.com/-M_IqWwr3bUo/AAAAAAAAAAI/AAAAAAAAEck/AAKWJJOVRBBgGR63InwZuPc0GV3tJFYQnA/photo.jpg,"Its refusing to open on a daily basis now, downloading it over and over is not fun. Any suggestions ? Forest has really helped me in keeping distractions to a minimum and maintaining focus. Update: I'm still facing the same issue 😩. Help a girl out.",3,0,4.10.4,2020-02-26 04:57:35,"Hi, +Could you please update Forest to the latest version (4.12.3) and see if it solves the problem? Thank you.",2020-01-15 14:48:43,newest,cc.forestapp +Deevena Diviti,https://lh3.googleusercontent.com/-eVK7lWlefK8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPNqvIJABUMjgQqXzznA9AfdO6TLg/photo.jpg,Initially I use without hesitation. But gradually it's getting worst,3,0,,2020-02-26 03:11:51,"Hi, +If you would like to give us more information on why you aren’t satisfied with our app, get in touch with us so we can try to improve our app: android.support@forestapp.cc",2020-02-29 20:32:33,newest,cc.forestapp +Anastasia Munteanu,https://lh3.googleusercontent.com/-j0YxqZV6hpw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNEyNUYdOuoJUxbwA6uoKCYI-IaKA/photo.jpg,Very cool and helps a lot,3,0,4.13.1,2020-02-25 17:04:59,"Hi, +Thank you for the rating! Don't hesitate to give us a positive review if you enjoy the app. :) +- Forest",2020-02-29 20:35:25,newest,cc.forestapp +grace,https://lh3.googleusercontent.com/a-/AOh14GiEvK9t2otZz_22-XaC4p2Vu_C55IEGpI8A_k31lg,"I like the app and it works to improve my productivity, but the notifications almost never show up and the whitelist mode doesn't work sometimes. I wish there was a way to change the ground color for the day/week/month, and it's quite annoying that the flowers are as big as trees.",3,8,4.13.1,2020-02-25 16:39:44,"Hi, +Could you please contact us via the in-app feedback system so that we can investigate the problems further? Thank you for your suggestions and sorry for any inconvenience caused.",2020-02-29 20:35:53,newest,cc.forestapp +navneet singh rathore,https://lh3.googleusercontent.com/-CozyvKiQt6w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNMNj5fXQDyZE_HZrWGlQjn_BYX4w/photo.jpg,This one is very beautiful but its tree texture is not beautiful.,3,0,4.13.1,2020-02-25 16:33:34,"Hello, +Thank you for your feedback. We will forward it to our team.",2020-02-29 20:36:12,newest,cc.forestapp +Srinidhi P M,https://lh3.googleusercontent.com/a-/AOh14GiJwcOLb04S2ifRVskpLsJCPHONzv5P8GK1srEVoJY,"The app keeps crashing every day, and wouldn't open. Every morning I got to reinstall it and log in again... What's wrong...",3,1,4.13.1,2020-02-25 03:59:13,"Hi, +Vivo phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-02-29 20:38:56,newest,cc.forestapp +Sammy Ho,https://lh3.googleusercontent.com/-J9Vzu_kJfc8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMz0H3vBi4h0fV52Zqtz2R2IQE93w/photo.jpg,"Hey i've been using it pretty good. But today when i played the forest rain and locked my phone, the white noice ( 🤔 ) didn't work. Like it has some problem. 🤔",3,0,4.13.1,2020-02-23 14:21:35,"Hi, +That doesn't sound good! Please get in touch with our support team for further assistance regarding this issue: android.support@forestapp.cc +Thank you in advance for your support! +- Forest",2020-02-29 18:23:30,newest,cc.forestapp +Aditya Chaurasia,https://lh3.googleusercontent.com/-EVjo7Pd1lHM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPfnunbx5GVMq70PJjFlYan4m9fCQ/photo.jpg,Nice,3,0,4.13.1,2020-02-23 06:04:27,"Hi, +Thank you for the rating! Don't hesitate to give us a positive review if you enjoy the app. :) +- Forest",2020-02-29 18:29:36,newest,cc.forestapp +Варвара Бажукова,https://lh3.googleusercontent.com/a-/AOh14GjGrYeh9fn4FNO4WDmk0vTyces3gz7cgz5raUzN80I,Приложение поиграться на неделю максимум. Геймификация очень слабая. Покупать платную версию не рекомендую,3,0,4.13.1,2020-02-23 04:47:29,"Hi, +Redmi phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-02-29 18:29:56,newest,cc.forestapp +Njd K,https://lh3.googleusercontent.com/a-/AOh14GhM2MZK7Hf1Qmjxb75U1_tZBqjLbffZQciSVg5J,"I missed the old tiny tree that was at before for 10 minutes of focusing, I truely missed it 💔",3,0,4.13.1,2020-02-22 09:39:51,"Hello, +Thank you for your feedback. We will forward it to our team. :)",2020-02-29 18:32:43,newest,cc.forestapp +Artistic_blue_wolf Artistic_blue_wolf,https://lh3.googleusercontent.com/a-/AOh14GjvgACMn01FTZTSaP4_QyQdR7bLX7Mt4UaUrbEx,It is amazing app. It was working great a week ago but i don't know why from this week it doesn't count the time properly for example if i studied 4hours+ it only shows 1hour. But overall i really like to study when i use this app. I hope they fix the bug soon.,3,0,,2020-02-22 08:01:31,"Hi, +Please update Forest to the latest version (4.14.1) and see if it solves the problem. +If you continue to experience issues, please reach us at android.support@forestapp.cc. Thank you! +- Forest",2020-02-29 18:33:11,newest,cc.forestapp +karma wins,https://lh3.googleusercontent.com/a-/AOh14GhTDivFBid3L-RLt-oHkRBEUrCXJi_mbPcLoQAzEg,The app is lagging too much never happened before and when I try to plant it's not planting,3,0,,2020-02-22 01:41:02,"Hi, +That doesn't sound good! Please get in touch with our support team for further assistance regarding this issue: android.support@forestapp.cc +Thank you in advance for your support! +- Forest",2020-02-29 18:32:55,newest,cc.forestapp +Dua Sattar,https://lh3.googleusercontent.com/a-/AOh14Gi7GogRbPjNhvvgE_Q6GVBwuz1Q-WHloayDwo7q,It allows me to leave the app. I have a Techno phone. How do i fix this? Sleeptown works perfectly though.,3,0,4.13.1,2020-02-21 13:21:35,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2020-02-29 18:34:36,newest,cc.forestapp +Diah Hardiani,https://lh3.googleusercontent.com/a-/AOh14GhdFEGiDJa3vLcz5HAl5FNzF5ZabFxWR8kOBIzL6w,"This app really helpful to focus on your task. Before I update forest for the last version, the tree always dies if I open other apps. But, after I updated the tree is still growing although I open other apps",3,0,4.13.1,2020-02-21 03:16:08,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2020-02-29 18:35:36,newest,cc.forestapp +Rana Riaz,https://lh3.googleusercontent.com/--ctjwwCftUg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMvBeDWuISBziMe0xP1ksI22Hl25A/photo.jpg,Not bad,3,0,4.12.2,2020-02-20 09:28:37,,,newest,cc.forestapp +Okti Dinasakti,https://lh3.googleusercontent.com/a-/AOh14GgHj59KfzlXygTiAhYN5YuagTkU6CDNVTkx_vd_hXE,"Good app, however I have upgraded to pro version yet after twice usage now i can not open forest at all. This issue also happen before i update forest. I thought upgrading to pro will prevent from this issue (editted) Hi.. I have sent an email to the address you mention. The mail suggest me to disable the auto update, uninstall then reinstall the app. I have done it all, for two days it was okay, yet today i can not open the app anymore. Just like before. The app is keep crashing.",3,0,,2020-02-19 07:35:45,"Hi, +Vivo phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-02-13 08:02:38,newest,cc.forestapp +govind parashar,https://lh3.googleusercontent.com/-_4RkcP_WN7k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN7RIga-JrP8IBMN3mUsv7ajAjn3Q/photo.jpg,Good Cool,3,0,4.13.1,2020-02-19 07:00:49,"Hi, +Thank you for the rating! Don't hesitate to give us a positive review if you enjoy the app. :) +- Forest",2020-02-19 16:15:42,newest,cc.forestapp +Mayank Tripathi,https://lh3.googleusercontent.com/a-/AOh14Gg7dPXh19Ithgl65ODuRe2OAEoHSbCXHdGKBpHb,Good,3,0,4.13.1,2020-02-18 14:09:36,"Hi, +Thank you for the rating! Don't hesitate to give us a positive review if you enjoy the app. :) +- Forest",2020-02-19 16:19:00,newest,cc.forestapp +Jim Johnson•HF,https://lh3.googleusercontent.com/a-/AOh14GjqChQlq0Xbgn1RDBRcg-XA6SIZH30ihadu6EuJfw,"Hey,the idea is very good,but why don't you let me sync my phrases?And I can't login in other phones It reminded me to buy....",3,0,,2020-02-18 03:36:08,"Hi, +Please make sure you're logged in to your Google Play with only the Google account you originally used to install Forest, then go to the ""Pro Version"" in the Settings page, and your Pro upgrade should be restored automatically, which will then enable you to log in. +If the issue remains, please email us at android.support@forestapp.cc. +- Forest",2020-02-19 16:28:40,newest,cc.forestapp +Arya Edlund,https://lh3.googleusercontent.com/a-/AOh14Gh4K4x1J9rFqVl5O1_MnnPXQoLIovYCC2AFShIr,Want it to not let me do anything on my phone,3,0,4.13.1,2020-02-17 23:56:19,"Hi, +If you're able to access other apps during planting sessions, please follow the instructions in the link below: +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2020-02-19 16:29:23,newest,cc.forestapp +anya M,https://lh3.googleusercontent.com/a-/AOh14Gjh-WFqAXzM6eIH75HXDKD_Y_8j9DL-I6e2sSUE5w,Let me try it first,3,0,4.13.1,2020-02-17 14:22:51,"Hi, +Thank you for the rating! Don't hesitate to give us a positive review if you enjoy the app. :) +- Forest",2020-02-19 16:32:14,newest,cc.forestapp +dana,https://lh3.googleusercontent.com/a-/AOh14Ggdqv3nGE6Z2KEQwJqItcfKLHjgj7iIpyb8sk8COA,"i found a way around this app. i always do this, and for the longest time, forest was the app that kept me truly focused cause i dont want my trees dead, but then i found out that if i remove the app from the background while a tree is planting, i can use all phone features & id still get the tree and coins by the end of the time i put. now im just planting trees to gain coins so i can plant actual trees. can this be fixed? i really love the app.",3,6,4.13.1,2020-02-16 17:20:19,"Hi, +Thank you for the feedback. Apps can't run when closed (like swiping up to clear them from recently used apps). Please enable the ""Wither the tree when Forest is closed"" option in Forest's Settings page so that your trees will die once you close Forest. Thank you! +- Forest",2020-02-19 16:37:59,newest,cc.forestapp +Lukas,https://lh3.googleusercontent.com/-3fVplaUID4A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOY1qOI7m9BPibzY_iZdid6k8q-Qw/photo.jpg,Geht nicht mehr,3,0,4.13.1,2020-02-16 15:55:57,"Hi there, +If you would like to give us more information on why you aren’t satisfied with our app, get in touch with us so we can try to improve our app: android.support@forestapp.cc",2020-02-16 15:14:30,newest,cc.forestapp +Tatiana Zarta,https://lh3.googleusercontent.com/-0p4wBmJQQ-I/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOonv3BVGNIclgZd1zpayEWdn96sw/photo.jpg,"I like the app and the idea. I don't know if it's only me but since the app is working in the background all the time and it's a requirement from the app, the battery consumption is quite high. Is there a way of fixing it? The app is already running with locked screen, it is automatically locked. Thanks!",3,20,4.13.1,2020-02-16 14:11:14,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problem to android.support@forestapp.cc? We will investigate the problem further. +- Forest",2020-02-16 14:54:00,newest,cc.forestapp +Yogesh Mishra,https://lh3.googleusercontent.com/-thD0HAie1zE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO27QC503nnLhDXBP7zGp7dRXmWxQ/photo.jpg,Best app,3,0,4.13.1,2020-02-14 21:15:13,"Hi, +Thank you for the rating! Don't hesitate to give us a positive review if you enjoy the app. :) +- Forest",2020-02-15 17:28:52,newest,cc.forestapp +Jenita James,https://lh3.googleusercontent.com/a-/AOh14GhjcHcxQ1GxVfZzsjqJj3EvksBdRMtI6b1FKuqb,"It's a good app, but it keeps crashing.. When I use the app after a week's time, it doesn't open. I've had to reinstall it multiple times Please fix it",3,0,,2020-02-14 18:52:50,"Hi, +Vivo phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-02-15 17:28:59,newest,cc.forestapp +Atharva Dabre,https://lh3.googleusercontent.com/a-/AOh14Gi8NkUBFf1XbLPn9BAS4h-MboPIf_bMj7ehP3XEig,"Great , but why I'm able to open and prolong operate any app immediately after assigning timer . Then after using 3 to 4 apps, "" forest "" gets to know that I'm using other apps and reminds me about my distraction....... So late!! Please fix this problem otherwise it's a great application for Controling phone distraction.",3,0,4.13.0,2020-02-14 11:41:33,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2020-02-15 17:30:12,newest,cc.forestapp +KEZIA ARC,https://lh3.googleusercontent.com/a-/AOh14GiNpv0VlmTjcrbDT7ajn2G-ZxzHMW6HupnGTVgUkg,Its a good app but it stopped working on my phone and i have already paid the amount what to do ?,3,0,4.2,2020-02-13 20:16:04,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problem to android.support@forestapp.cc? We will investigate the problem further. +- Forest",2020-02-15 17:32:22,newest,cc.forestapp +kirthana nagarajan,https://lh3.googleusercontent.com/a-/AOh14Git3hZOWqWXIIXb_RaI_pS436RLZbmZRxbSqKth3Q,Why does it require access to photos and media?,3,1,,2020-02-13 17:24:01,"Hi, +Photos & media is a permission on Android that may be named ""external storage"" or ""SDcard storage"" etc. depending on the device. It's for uploading profile photos and sharing images like your forest or achievements. An image has to be saved in the device first before it can be shared/sent, hence the storage permission. Hope this helps. :)",2020-02-19 19:30:55,newest,cc.forestapp +hamna aami,https://lh3.googleusercontent.com/a-/AOh14GgNbtR6CLgGojURBMmy_D7Y6w_zc8-lKQw1hf4jOA,"When we install this app and use for the first time,it works perfectly.But next day when you try to open this app,it gets stopped.i tried multiple of time and no improvmnt",3,0,,2020-02-13 05:51:15,"Hi, +Samsung phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-02-13 08:06:21,newest,cc.forestapp +Mina Miao,https://lh3.googleusercontent.com/a-/AOh14GiUUlnrK1eAJMxLpQocOnbGLhuGbh6Vau6pm3mx9w,"Honestly, this app is not so bad but, everytime I check other apps, my tree doesn't die, except if I close all the cards of my phone. However, I think it's a very good app to stop to use too much your mobile phone, but I'd like more changes.",3,0,4.13.1,2020-02-12 20:44:01,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2020-02-13 08:06:53,newest,cc.forestapp +Varshini Kogali,https://lh3.googleusercontent.com/-t76ZbkQnNIQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP2WUJ-Rdo2Mq558eFkx4ZI7BakKA/photo.jpg,Awesome helps me to stay focused and doesn't let me to open any other app while studying :)) but after using sometimes I can't open the app only i even restart my phone but it is not working :( 😥😫,3,0,,2020-02-12 15:54:43,"Hi, +Have you contacted our support team as previously suggested? If not, please send us a ticket at android.support@forestapp.cc so we can help you further. +- Forest",2020-02-12 18:52:00,newest,cc.forestapp +Ashish kumar,https://lh3.googleusercontent.com/a-/AOh14GgUwARCSW3VynR7N1-mhUGEjvId5fHO9o90YFyIgXo,Good,3,0,4.13.0,2020-02-11 21:01:56,"Hi, +Thank you for the rating! Don't hesitate to give us a positive review if you enjoy the app. :) +- Forest",2020-02-12 18:42:53,newest,cc.forestapp +Ole Didrik,https://lh3.googleusercontent.com/-NhUBAUU2100/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPh55IN2ex1l5I2YrDXs_ZlsRns4w/photo.jpg,"Interrupting buzzing. The app makes a buzzing noise while I use it. First one long silence, interrupted by a buzz, short silence, then buzz before a long silence",3,0,4.13.0,2020-02-11 19:30:07,"Hi, +Could you send us the exact steps to reproduce your issue at android.support@forestapp.cc? Sorry for the trouble.",2020-02-12 18:44:23,newest,cc.forestapp +Medha Satheesh,https://lh3.googleusercontent.com/a-/AOh14Gi1LoAgl4PK0DbuP9r8kgHoGJ1f4TXchH82IKRfMw,Love it,3,0,4.13.0,2020-02-11 18:05:45,"Hi, +Thank you for the rating! Don't hesitate to give us a positive review if you enjoy the app. :) +- Forest",2020-02-12 18:44:29,newest,cc.forestapp +Ambika Sadhu,https://lh3.googleusercontent.com/-NASN0-OeHPE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMLr7IsVx3bTXuU-ykELlM_rJB_ow/photo.jpg,"The app is excellent in it's working. However, it crashes frequently, making me uninstall and reinstall it. Typically I think it happens if I open the app after a few days, without closing it properly ( forcing it to go in the background).",3,0,,2020-02-11 09:12:37,"Hi, +Samsung phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-02-12 18:46:53,newest,cc.forestapp +Thet Hmuu,https://lh3.googleusercontent.com/a-/AOh14GjoP2-2nEv9uF7NYitZFDd6MZXrbcgc0SO3huHksw,Force Stopped when a plant completed on Mi8Lite.,3,0,,2020-02-11 04:41:21,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problem to android.support@forestapp.cc? We will investigate the problem further. +- Forest",2020-02-11 08:39:47,newest,cc.forestapp +William De La Hoz Meyer,https://lh3.googleusercontent.com/a-/AOh14GgRE0BGOFk_95dGL6w_egHlqHP7bcjVzUVq7Y-m,"The guide to take the notifications off literally just shows for vivo, oppo (I don't even know what these are), Huawei and Xiaomi phones, there's no guide for simply Android or iPhone",3,0,4.13.0,2020-02-11 00:00:39,"Hi, +As mobile devices from many different brands run on Android, their settings vary from brand to brand and so we need to separate the instructions by brands. iOS devices don't generally need much change in settings. +If you can't find the instructions for your device, please reach us at android.support@forestapp.cc. Thank you! +- Forest",2020-02-11 08:47:37,newest,cc.forestapp +Kevin Yang,https://lh3.googleusercontent.com/a-/AOh14GimgsCtZh_BS9rOa0wID-y_k3TD46hpysjyG3Ic,"I need help, the tree does not die if I leave the app. Maybe because I have a Razer phone 2?",3,0,4.13.0,2020-02-09 19:53:14,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2020-02-11 09:01:04,newest,cc.forestapp +Angelica Faye Duro,https://lh3.googleusercontent.com/a-/AOh14Ggq6WCSPb57P4LTEJuhgIxh_fM0nC7IoIr9Mncqmg,It always crashh,3,0,,2020-02-09 12:58:57,"Hi, +Vivo phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-02-11 09:06:50,newest,cc.forestapp +Kaustubh D,https://lh3.googleusercontent.com/-J5wpTsP7PgQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOpW_CVwqGST3HLsvhFz0LihmqENw/photo.jpg,Great app. Gives me the motivation to do the work and have a little garden of my own. But lately it doesnt want to start. Crashes as soon as i click on it. Please do something.,3,0,,2020-02-09 11:13:06,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problem to android.support@forestapp.cc? We will investigate the problem further. +- Forest",2020-02-11 09:09:46,newest,cc.forestapp +games tech,https://lh3.googleusercontent.com/a-/AOh14GhGNM14d1qjFFIgoQCgZkwWmKaXBrwspLBfE7CliNM,Even though the app is good enough but it isnt free when i started the timer it was asking me too pay😢😢,3,0,,2020-02-09 11:10:54,"Hi, +It's completely free to plant trees and earn coins. Could you send us the exact steps to reproduce your issue at android.support@forestapp.cc? Sorry for the trouble. +- Forest",2020-02-11 09:09:35,newest,cc.forestapp +Aalia mustafa,https://lh3.googleusercontent.com/a-/AOh14Gjm5T-HVT6PhZPsx4Idm6_kSwbPXDUORghGKXf7,It was working well but after sometime it was experiencing crashes and won't open.. really disappointed..but still I am downloading it again hope it'll not do the same,3,0,,2020-02-09 05:55:57,"Hi, +Vivo phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-02-11 09:14:10,newest,cc.forestapp +TANUJA SHARMA,https://lh3.googleusercontent.com/-7PMjNPWCvGk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMPFvY_S-oqTf1HwrVkApammNuRow/photo.jpg,good..but i can't plant another type of trees😑 i unlock trees but it can't be planted,3,0,4.13.0,2020-02-08 07:46:17,"Hi, +Could you send us the exact steps to reproduce your issue at android.support@forestapp.cc? Sorry for the trouble.",2020-02-11 09:20:54,newest,cc.forestapp +Dixita Rathod.,https://lh3.googleusercontent.com/-5iilRL05DuE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNj_ePu2zhLfx6k-bpMcVGWtGJdMw/photo.jpg,Good application,3,0,4.8.6,2020-02-08 07:02:33,"Hi, +Thank you for the rating! Don't hesitate to give us a positive review if you enjoy the app. :) +- Forest",2020-02-11 09:21:04,newest,cc.forestapp +Kristina Greenland,https://lh3.googleusercontent.com/a-/AOh14Ggzfb1zXgQSXamtqSngrHElJRPOC0Qf4y75DlQGrg,Achievements are not loading anymore,3,0,4.13.0,2020-02-08 01:43:02,"Hi, +Could you please contact us via the in-app feedback system so that we can investigate the problem further? Thank you and sorry for any inconvenience caused.",2020-02-11 09:21:20,newest,cc.forestapp +Deepak Dey,https://lh3.googleusercontent.com/-7Jp6Mynjtpg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNZ8bXPXBBMzwWjO4rhrNpkVh_23g/photo.jpg,Ummmm the app still runs even if i open another app!!!,3,0,4.12.2,2020-02-07 04:50:20,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2020-02-08 03:11:08,newest,cc.forestapp +Rohith Narayanan,https://lh3.googleusercontent.com/a-/AOh14GhtVIvpr87kLIZh0Pg1gf4x_pEp8MAwJAEB0N1FNw,Helpful,3,0,4.13.0,2020-02-07 01:03:24,"Hi, +Thank you for the rating! Don't hesitate to give us a positive review if you enjoy the app. :) +- Forest",2020-02-08 03:11:26,newest,cc.forestapp +GAGAN DEEP SINGH,https://lh3.googleusercontent.com/a-/AOh14GjfLZkQzjnQcIebpp1m-cuD1BgYtkl3C_zMMP00IME,It is a good app.,3,0,,2020-02-06 20:35:12,"Hi, +Thank you for the rating! Don't hesitate to give us a positive review if you enjoy the app. :) +- Forest",2020-02-08 03:12:28,newest,cc.forestapp +Sooyeon Kim,https://lh3.googleusercontent.com/a-/AOh14GhSNB6iUT_gLkNkEhWgSVqlMxGckrQP1r5l8apN,"I purchased the pro version but i changed my phone, so the app says that i have to purchase to log in. What should I do?",3,0,4.13.0,2020-02-06 15:22:24,"Hi, +Please make sure you're logged in to your Google Play with only the Google account you originally used to install Forest, then go to the ""Pro Version"" in the Settings page, and your Pro upgrade should be restored automatically, which will then enable you to log in. +If the issue remains, please email us at android.support@forestapp.cc. +- Forest",2020-02-08 03:16:39,newest,cc.forestapp +Dianti Wulandari,https://lh3.googleusercontent.com/a-/AOh14GikeEtWR_2UKKhDIQev8nXgNVgkCZ3GQ6GCozctxg,can you add more than 2 hours?,3,0,4.11.5,2020-02-05 07:09:40,"Hi, +Please update Forest to the latest version, then navigate to Forest's Settings > Advanced settings > Planting time limit extended up to 3 hours. Thank you!",2020-02-05 17:43:57,newest,cc.forestapp +Grimmjow Jaggerjaquez,https://lh3.googleusercontent.com/a-/AOh14Gjw3BHBtTy1x8QNgs9g7n7dgIsD8VtZd84awWgj,Hi I enjoyed the app but now it's crashing each time I try to open it and I have to reinstall it. I wouldn't mind of it was the first time but this is like the fourth time it's happening. Mind looking into it?,3,0,,2020-02-04 01:16:21,"Hi, +Oppo phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-02-05 17:53:03,newest,cc.forestapp +polly pligina,https://lh3.googleusercontent.com/a-/AOh14GgI8BpRO4y68BVYb1fb48imacXv26IxPsQuCa-k6A,there are some bugs in the latest version that i haven't had before. it's always lagging and nothing is loading in the app.,3,0,4.13.0,2020-02-03 20:51:09,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problem to android.support@forestapp.cc? We will investigate the problem further. +- Forest",2020-02-05 17:53:57,newest,cc.forestapp +Aniket Saxena,https://lh3.googleusercontent.com/a-/AOh14GhX7z_f63WHKI-g3f2nJHBWiT15Ym7ekWVsJZlHnA,The app is amazing...but my leave the app feature is not working cause i want whenever i leave the app the tree should wither... But that's not happening..... Help!,3,0,,2020-02-03 14:15:42,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2020-02-05 17:56:26,newest,cc.forestapp +Saurabh Prajapati,https://lh3.googleusercontent.com/a-/AOh14GhGeIW1Wwxag_jC6YsJ0EPJmbXd-Vnv-qPOvdM4,"This app is good, but it will be extra good if the developer put an option to continous timing for focus. I believe there should not be any kind of limit like 10 min. Remove it or give an option to set custom time in hour and minute.",3,0,4.13.0,2020-02-03 07:44:51,"Hello, +Thank you for your feedback. We will forward your suggestion to our team.",2020-01-28 17:39:55,newest,cc.forestapp +ruben bothma,https://lh3.googleusercontent.com/a-/AOh14Gh2yKUtMRcbcSULbQn9MkrjJLSlMrOh5GvFs-07RQ,Ok,3,0,4.13.0,2020-02-02 13:49:18,"Hi, +Thank you for the rating! Don't hesitate to give us a positive review if you enjoy the app. :) +- Forest",2020-02-05 18:05:04,newest,cc.forestapp +Aria Worth,https://lh3.googleusercontent.com/a-/AOh14GgorQotebbNqsFPMQI-PmQ14t131i2mNIcA6AxVkA,"Too many features are premium and that's kinda annoying, still like the app though",3,0,4.13.0,2020-01-31 12:28:47,"Hi, +We are sorry for the inconvenience. As independent developers, we don't take any investment from venture capitalist. and thus we have to strive hard for the operation of Forest. To provide better and stable service and for the long-term product plan, we need to put some features in the Pro version. We kindly ask for your understanding. +- Forest",2020-02-01 15:49:34,newest,cc.forestapp +Ramya Duggirala,https://lh3.googleusercontent.com/a-/AOh14Gj0iK3VVO9fzAKjFfznM_brgetKPW1f5lbFjLmqdA,There's a bug that makes the app crash in the newest update. Please fix this ASAP!,3,0,,2020-01-31 12:15:33,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problem to android.support@forestapp.cc? We will investigate the problem further. +- Forest",2020-02-01 15:49:41,newest,cc.forestapp +Mary020207,https://lh3.googleusercontent.com/a-/AOh14GhPUytZ-2e7IFh-kRJ88O_Sq5HkvCnSBO6-nO8THSo,"It's such a great app, but I can't receive any notifications of planting reminder",3,0,4.13.0,2020-01-31 02:33:32,"Hi, +Please get in touch with our support team for further assistance regarding this issue: android.support@forestapp.cc",2020-02-01 15:52:33,newest,cc.forestapp +grace ready,https://lh3.googleusercontent.com/a-/AOh14GhWOtm5aPE3wEHgBK4uakXiJ8mQhICxfWYENsdz,Good,3,0,4.13.0,2020-01-30 08:41:55,"Hi, +Thank you for the rating! Don't hesitate to give us a positive review if you enjoy the app. :) +- Forest",2020-01-30 15:19:08,newest,cc.forestapp +Alana Higgins,https://lh3.googleusercontent.com/a-/AOh14Gi0vLDbrtpXSsGqDomW7-LGDg6gP80L5K1WJaWo2Q,I allowed it to do everything possible and it didn't tell me to give in my email. So now I can't play the game because an email wasn't sent to me. 😠😠😠,3,0,4.13.0,2020-01-30 07:28:02,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problem to android.support@forestapp.cc? We will investigate the problem further. +- Forest",2020-01-30 15:19:49,newest,cc.forestapp +Aashita Semwal,https://lh3.googleusercontent.com/-rXOp9Fd3pRY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPN89jShfef-NB-X_N3oOnysvk3TQ/photo.jpg,Very nice,3,0,4.13.0,2020-01-29 15:03:08,"Hi, +Thank you for the rating! Don't hesitate to give us a positive review if you enjoy the app. :) +- Forest",2020-01-29 16:43:39,newest,cc.forestapp +Tiffany M,https://lh3.googleusercontent.com/a-/AOh14GiQqppteLExzVgxWL6g3nX2WzaWlBg5H5QuNJ62,"This app has been very helpful in the past. I haven't enjoyed the most recent update, though. Hence the 3 stars. If I close the forest app so it's not an open tab, it doesn't send me back to the forest anymore. I haven't changed any permissions, it's all exactly the same. It allows me to bypass the system, which isn't helpful at ALL. Please figure it out with the next update. I would like my forest app back",3,4,4.13.0,2020-01-29 09:44:56,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2020-01-29 16:50:57,newest,cc.forestapp +Arnav Goyal,https://lh3.googleusercontent.com/a-/AOh14GiLQLHmcrS5u4BGaoUzlqEwrUNtU_ox_novPxIM6w,Doesn't do anything until you take the premium membership,3,0,,2020-01-28 17:59:09,"Hi, +We are sorry for the inconvenience. As independent developers, we don't take any investment from venture capitalist. and thus we have to strive hard for the operation of Forest. To provide better and stable service and for the long-term product plan, we need to put some features in the Pro version. We kindly ask for your understanding. +- Forest",2020-01-28 17:57:08,newest,cc.forestapp +Uwu Jinnie,https://lh3.googleusercontent.com/a-/AOh14GgCggSUaGx6uFjysh8tHMiyV9zaPQ6H0CQKcYg5HQ,Ok,3,0,4.13.0,2020-01-28 06:18:15,"Hi, +Thank you for the rating! Don't hesitate to give us a positive review if you enjoy the app. :) +- Forest",2020-01-28 17:33:32,newest,cc.forestapp +Pah som,https://lh3.googleusercontent.com/a-/AOh14GgcLCCub4GT7YFMWSFjUjG91ClvWA4kQLuOr2umGTo,เป็นapp ที่ทำให้มีสมาธิในการอ่านหนังสือมากขึ้นแต่แอพเด้งบ่อย อยากให้ปรับปรุงและพัฒนาต่อนะคะ,3,0,,2020-01-26 16:32:22,"Hi, +Vivo phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-01-28 17:53:22,newest,cc.forestapp +omi quelsie,https://lh3.googleusercontent.com/a-/AOh14GjnRG5QqVKKTjBbgUe3VXZgptfQPcy6H7imtzAl,it crashes everytime i open it whenever i go one day without using it,3,0,4.13.0,2020-01-26 13:19:23,"Hi, +Oppo phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-01-26 16:33:52,newest,cc.forestapp +Nima Iranmanesh,https://lh3.googleusercontent.com/a-/AOh14GiIKwvZu6A_3FifqkGqz6Azi7JMTQutWD8AqddsoA,"Right after installing, I noticed that whitelisting apps is such an important and basic feature which you made available only for premium users. This is such a ridiculous decision for a ""google play editor's choice app"" that im not even gonna bother trying your app any more than 1 minute. - Update: No it's unacceptable that your development team didn't predict the flow of new installations and didn't include any kind of trial period, but fine i'll up my rating to 3 neutral.",3,4,4.13.0,2020-01-26 12:23:30,"Hi, +We are sorry for the inconvenience. As independent developers, we don't take any investment from venture capitalist. and thus we have to strive hard for the operation of Forest. To provide better and stable service and for the long-term product plan, we need to put some features in the Pro version. We kindly ask for your understanding. +- Forest",2020-01-25 21:34:02,newest,cc.forestapp +Amanda Percival,https://lh3.googleusercontent.com/a-/AOh14Gii9pYu0s3UUnP9Xk5Ek1BxRwyTkqbxVmM2sR--iQ,I have been using forest since 2017 and had collected over 3000 coins. Unfortunately my phone got stolen and I had to buy a new one. Now when I reinstalled the app it's saying that I need to start collecting again and to log in I need a premium account which I have never had. How can I get my points back? Thank you.,3,0,4.13.0,2020-01-26 12:09:47,"Hi, +Unfortunately your data can't be saved on the free version of the app. Sorry for the inconvenience caused. +If you wish to be able to save and sync your data, please take the Pro version into consideration. +Feel free to email us at android.support@forestapp.cc if you have additional questions about using Forest. :) +- Forest",2020-01-26 16:36:18,newest,cc.forestapp +Nicholas Charles,https://lh3.googleusercontent.com/-dr9p2ulpVXE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP4N2Su92nX3CGk93dl5q9usxPG6Q/photo.jpg,Kept on crashing. Have been installing and uninstalling a few times and still kept crashing.,3,0,,2020-01-25 13:35:59,"Hi, +Reralme phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-01-25 21:34:24,newest,cc.forestapp +figaro 198,https://lh3.googleusercontent.com/a-/AOh14GjhdxNru7ZKXosFdy4cLE83aiyWIQHOTAwbP-uJ7Q,good idea and work i would like to give it 5 stars if you solve my problem im using asus zenfone 3 max and app not able to detect my usage of other apps and plant never withers even if i close the app i give every permission it demands but it still continues im pro version user by the way,3,1,4.13.0,2020-01-24 20:32:34,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please contact us via the in-app feedback system. +- Forest",2020-01-25 21:42:17,newest,cc.forestapp +Siti Nur K,https://lh3.googleusercontent.com/a-/AOh14GjWZsKtq-tcce-3dloMsEYQz_-W9xiCv0Rx18314g,"Tbh I like this app, when I installed for first time but now this app always force close😪",3,0,,2020-01-24 02:50:21,"Hi, +Vivo phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-01-25 21:49:19,newest,cc.forestapp +Iten Tarik,https://lh3.googleusercontent.com/a-/AOh14GgmBzfh788qpsM4Uffbz-iYXDsE0ArNd93MpAO_qQ,Real🎉ly good,3,0,4.13.0,2020-01-23 20:11:12,"Hi, +Thank you for the rating! Don't hesitate to give us a positive review if you enjoy the app. :) +- Forest",2020-01-25 21:50:13,newest,cc.forestapp +Sneha Chaudhari,https://lh3.googleusercontent.com/-YtWMyS1uXO0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPiRz9mgNPf7Y3gYidBca3uwM0oew/photo.jpg,Initially the app worked really well but now it is not opening and I dnt know what to do. I also tried clearing the data bt the issue still remains.,3,0,4.13.0,2020-01-23 11:23:03,"Hi, +Samsung phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-01-26 16:40:32,newest,cc.forestapp +Kylle Elizaia Laurena,https://lh3.googleusercontent.com/-aYsYcX1LwCg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPo_xTxQpqRGyyWudGmGu7-yNaDIg/photo.jpg,It really helps in focusing but there is this premium thing so I cannot do many stuff. I think you have to pay or get the premium thing to plant trees in real life but I like how there's this different kind of trees and stuff like it has music!!,3,0,4.13.0,2020-01-23 08:20:37,"Hi, +We are sorry for the inconvenience. As independent developers, we don't take any investment from venture capitalist. and thus we have to strive hard for the operation of Forest. To provide better and stable service and for the long-term product plan, we need to put some features in the Pro version. We kindly ask for your understanding. +- Forest",2020-01-26 16:40:59,newest,cc.forestapp +Vijayant Chauhan,https://lh3.googleusercontent.com/-_blK7vQ0Qos/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPqJFPFYgIh8MuApCW0DD2_lKb_fw/photo.jpg,"Please help!! The app keeps crashing after some automatic update. It refuses to open after the crash. Have to reinstall it everytime until it crashes again. Have done this the 6th time. Being a pro user I get to sign in and retrieve the data, but still loses lot of time and momentum doing all this installing and reinstalling thing after each crash. BTW Amazing app helped me focus and have goals in life!",3,5,4.13.0,2020-01-22 17:31:57,"Hi, +Samsung phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-01-26 16:44:05,newest,cc.forestapp +Sherif Morris,https://lh3.googleusercontent.com/a-/AOh14Gi3wzPY3d7X5L_PafAGTcfpF8osxCFJvu90axdkhQ,Phone/computer sync could be improved. Also doesn't have a timer for your rest between pomodoros.,3,0,4.13.0,2020-01-22 13:13:41,"Hi, +It's already possible to sync between different devices in the Pro version! +We have a break feature - after you finish planting a tree, tap the clock icon to set a break time. After the break time is over, Forest will notify you and remind you to start focusing again. :) +- Forest",2020-01-22 16:41:50,newest,cc.forestapp +mimidorika,https://lh3.googleusercontent.com/a-/AOh14GgZLbFjHufO01sg62sqFTiWbVug2d_bKDaN-8CamQ,"it keeps crashing just when i paid premium! Devs pls help me. i really wanna use this app. As soon as i open it, it crashes and end abruptly. i am hoping for your quick response. Thank you",3,0,,2020-01-22 03:53:06,"Hi, +Oppo phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-01-22 16:47:21,newest,cc.forestapp +April Artist,https://lh3.googleusercontent.com/a-/AOh14Gg1P1i9G_dDZphuVhjYHyn4Vm8NaYBpxprvKd_fPw,"I love using forest as a timer when I study, however there is the ethical issue that you can't plant real trees unless you have premium. This really frustrates me because they took an opportunity to help the environment and turned it into an opportunity to make money. I understand that they need the money from buying premium to plant the trees, but it feels like they are making people feel guilty in order to sell premium to them. Thank you for the response, I appreciate you taking the time.",3,1,4.13.0,2020-01-21 20:00:27,"Hi, +The cost to plant real trees is completely covered by the company. Users only have to spend in-app virtual coins. The feature is exclusive for Pro users because complications might arise when users plant too many real trees; the cost can also easily exceed the app's revenue. We hope you understand. :) +- Forest",2020-01-17 05:36:33,newest,cc.forestapp +PBkitty kitty,https://lh3.googleusercontent.com/a-/AOh14GhSV_PWMw81Mv9-er1KyGilJkTDXgkIar3BWYNRug,Ever since the new update that came out today I have not been able to use forest. Every time I try opening the app is says forest has stopped. Is there any way to fix this?,3,0,4.9.5,2020-01-21 19:14:31,"Hi, +Sorry for the inconvenience. Could you please send the details or the screenshots of the problem to android.support@forestapp.cc? We will investigate the problem further. +- Forest",2020-01-21 19:37:38,newest,cc.forestapp +Shiv Baghel,https://lh3.googleusercontent.com/a-/AOh14GjCVtPedb_I5J1uE7jbuEwrDk-6yHC7gI0fWuUv,How to equip those new purchased trees??????,3,0,4.13.0,2020-01-21 17:55:45,"Hi, +You can switch tree species by tapping on the tree image inside the yellow circle located at the center of the home screen. Thank you!",2020-01-21 19:38:12,newest,cc.forestapp +Natália,https://lh3.googleusercontent.com/a-/AOh14Gh86h2lmGUILI-z47wjwWxyT2E119CI0s_Xig_QlQ,Good!,3,0,4.12.3,2020-01-21 16:53:11,"Hi, +Thank you for the rating! Don't hesitate to give us a positive review if you enjoy the app. :) +- Forest",2020-01-21 19:38:19,newest,cc.forestapp +Charlotte Stokes,https://lh3.googleusercontent.com/-WlFQcgfjdYs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP2I_2Y8daqCNlvCp3XbuhuMqjZmg/photo.jpg,"Love the app!! But since the update, it closes every time i try to access the store",3,1,,2020-01-21 12:32:27,"Hello, +This issue has been resolved in the latest version (4.13.0). Please update the app and we'd be glad if you give us a positive review when the problem is solved. :) +If the issue persists, please email us at android.support@forestapp.cc. Thank you! +- Forest",2020-01-21 19:39:08,newest,cc.forestapp +Isro Abi,https://lh3.googleusercontent.com/-SAuyvgJTRpI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOsHRlO7RLo8ja3WsrGq8tnb1GBZw/photo.jpg,Can improve if u can add to do list,3,0,4.12.3,2020-01-21 08:37:06,"Hi, +Thank you for the feedback. We have another app called WaterDo dedicated to to-do list. As always, it's free to download and use. Feel free to give it a go! It's available in the Google Play Store. :) +- Forest",2020-01-22 17:29:05,newest,cc.forestapp +gayan SANJEEWA,https://lh3.googleusercontent.com/a-/AOh14Gjz8vE9H20X8m3NudPEHcpmEp8GB4EpudqKdvFiVw,Nice,3,0,4.12.3,2020-01-20 04:49:13,"Hi, +Thank you for the rating! Don't hesitate to give us a positive review if you enjoy the app. :) +- Forest",2020-01-20 17:03:25,newest,cc.forestapp +rose ranjan,https://lh3.googleusercontent.com/-E4MxiCKl7Ic/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM2y80wWrG6ge3MSK8PhU2TFtjIcg/photo.jpg,Helps me to stay focused ♡,3,0,4.12.2,2020-01-20 00:24:31,"Hi, +Thank you for the rating! Don't hesitate to give us a positive review if you enjoy the app. :) +- Forest",2020-01-20 17:03:33,newest,cc.forestapp +Shushmita Saboor,https://lh3.googleusercontent.com/a-/AOh14GhJlLpNP1hs95tiXWSmJORtMvZ_fr451Y6rLssw,If i leave the app nothing happened. 🤷‍♀️,3,0,,2020-01-19 12:10:49,"Hi, +We are really sorry for the inconvenience. Some Android devices could not operate efficiently with Forest. +Could you follow the instructions in the link below and see if it helps? +https://forestapp.cc/faq/whitelist_notification/ + +If the issue remains, please send the details of the problem to android.support@forestapp.cc. +- Forest",2020-01-20 17:09:46,newest,cc.forestapp +Tan Jacqueline,https://lh3.googleusercontent.com/-kQcmayClMB0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPVKM-ivGrEaj1s-zKBhV2Y8DrG1g/photo.jpg,It's good but App keep crushing after exit from the app and I reenter 😭,3,0,,2020-01-19 05:05:26,"Hi, +Vivo phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-01-20 17:11:17,newest,cc.forestapp +Angel Isoc,https://lh3.googleusercontent.com/a-/AOh14GgVNmI8347s9AqFlTw9YETpdD8Srxt-Tniy0Y9K,"This app is really good but I have a major issue with it. It helps you focus, not to get distracted but sometimes I need to a calculator or google or a dictionary I can't because my tree will die!! So I need to exit the app(the tree is still growing) and then I can access google or what not please let the app access certain apps if possible.",3,1,4.12.3,2020-01-18 09:34:31,"Hi, +If you upgrade to the Pro version, you'll get access to the whitelist feature which allows you to use apps that you've whitelisted during planting sessions. We hope you consider. Thank you!",2020-01-18 20:12:36,newest,cc.forestapp +Alisha,https://lh3.googleusercontent.com/a-/AOh14GjgKwK20Gc35dNscaXoFw5C0qSPJ5DlYR5F7lhbEw,"I've used this app before and I like it. The only issue is there are no breaks, it's kind of difficult to study and have no breaks.",3,0,4.12.3,2020-01-18 08:38:19,"Hi, +Thank you for the feedback. We have a break feature - after you finish planting a tree, tap the clock icon to set a break time. After the break time is over, Forest will notify you and remind you to start focusing again. :) +- Forest",2020-01-18 20:13:13,newest,cc.forestapp +Princess Johannalou Miranda,https://lh3.googleusercontent.com/a-/AOh14GisDiUCpoEVCXMvvv7wLfAeX5s-y-9SdnqSDnVDug,"perfect to temporarily ""forget"" my phone",3,0,4.12.3,2020-01-18 04:34:14,"Hi, +Thank you for your support! Don't hesitate to give us a positive review if you enjoy the app. :) +- Forest",2020-01-18 20:16:16,newest,cc.forestapp +Vianka Jauregui,https://lh3.googleusercontent.com/a-/AOh14GjhrEeBGsD5IVeYTsK676xpbdvKabAm8SAHNlMfBA,"This app is great! I've used it for a year now, but I find that the app was preferable prior to the update. I really don't like that the plant only changes or ""evolves"" with at least 60 minutes. Now it feels like anything under that does not matter. If I focus for 10 minutes or 50 minutes makes no difference in the app, which is a little demotivating. Please consider changing this. Other than that, phenomenal app.",3,10,4.12.3,2020-01-17 03:55:49,"Hi there, +Thank you for the feedback. In the past, trees also only changed with 60 minutes at minimum, and bushes could only be planted under 20 minutes. We'll make sure to forward your suggestion to our team nonetheless. :) +- Forest",2020-01-17 04:48:41,newest,cc.forestapp +Santiago Czop,https://lh3.googleusercontent.com/a-/AOh14GjT4-AHklI0bpFd2Ko7eTDdFNm3SHqIckWPRfgT0Q,"The app idea is great on itself. However, there are too many options blocked behind the pro version which one would think are basic: whitelist and exporting the progress (changing phones makes all the progress be lost). Moreover, although not essential, some free achievements would also be nice, even if they don't give any coins. I'm willing to change my rating if I see any of those changes, since like I said, the app is quite good already (free version feels like less than a free trial...)",3,3,4.12.3,2020-01-17 01:24:48,"Hi there, +Forest is really happy that you like our ideas. +In the meanwhile, we are sorry for the inconvenience. As independent developers, we don't take any investment from venture capitalists. In order to provide better and stable services, we have our Pro version. Thank you in advance for your kindly understandings. - Forest",2020-01-17 08:05:41,newest,cc.forestapp +Thea Natvig,https://lh3.googleusercontent.com/a-/AOh14GgkuyF8iqgGUqdooOn1_1z5UTukgP4n7ddJ-EyxxQ,"I love this app so much, I've had it for almost a week and I've only found one bad thing about it. It's absolutely adorable and it's helped me stay off my phone and make it fun to do so. The problem I've had is that when I get video chat requests from Instagram my trees die but I fixed it by muting video chat requests. Overall it's super fun :)",4,50,4.15.0,2020-03-27 02:57:33,,,most_relevant,cc.forestapp +hlya h,https://lh3.googleusercontent.com/a-/AOh14GjMvv5R5C31IQmSDblMEU_DEihjLSGzouimADcz,"I like this app and i use it everyday for studying and reaching the amount of time i wanna stay focused on my works that need to be done, everything is great but i really wish there were an option for us to choose the apps that we need during doing our works and tasks,i've study apps and websites i need to use but i can't because of this limit,therefore i won't plant trees, i wish you could give us options about the apps we wanna use and the ones we don't.It's rly a problem. please fix this! Tnx",4,6,4.15.0,2020-03-27 17:36:37,,,most_relevant,cc.forestapp +Guy Montag,https://lh3.googleusercontent.com/-_ChhuDFQ6-8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOqDdI8Q-uNLI3h_5tYqLriCiQQow/photo.jpg,"After the latest update, the forest has been removed. Coin count and tree purchase history is up-to-date, but the entire forest is gone. Synchronization does not fix the issue. I did not reinstall app as per the in-app warning not to. What the hell? Update: after two weeks issue was fixed",4,4,4.15.0,2020-03-26 12:23:58,,,most_relevant,cc.forestapp +⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻,https://lh3.googleusercontent.com/a-/AOh14Gi7x_6eSInA9nWF-4_IRtkryxj3TuyZ9tDvxydRYw,"Really helpful app, but there's one problem. You can leave the app by clicking the home button and your tree keeps growing while you do other stuff on your phone, which means it doesn't really prevent you from leaving the app. Hope this is fixed because I really like this!",4,0,4.14.3,2020-03-24 12:00:19,,,most_relevant,cc.forestapp +Cody Pallin,https://lh3.googleusercontent.com/a-/AOh14GiBIkHdE_D06_lldmPaLQ1WKf7szDua06t3w_WiFg,"A beautiful app but.. I would love an option where you dont have to set a time, you just put it on and watch the trees grow as you work and come back to your phone an hour or two hours, whenever youre done! I also found that trees die if I dont come back fast enough after my timer expires? Like if I set my timer for 1 hour and I come back in 2 Ill find the tree died, thats weird, is that a bug on my end? Beautiful app guys, I love it but those things above would have me using it more!",4,111,4.15.0,2020-03-28 03:26:17,,,most_relevant,cc.forestapp +Shrinivas Rao,https://lh3.googleusercontent.com/-i90CPMdquYM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPBp2Wh5LboGpf74MPUDaLUXrLbxA/photo.jpg,its a really good app and it motivates me to get my work done!!! thank you so much for making this app!!! the only problem is that yu have to pay for the whitelist because there are times when i need to surf the web while doing my work and i can't do that so maybe you could remive whitelist from premium? its a great app but sometimes i can't work with it due to the premium . Thanks once again for the great app!!!,4,256,4.14.3,2020-03-20 07:12:32,,,most_relevant,cc.forestapp +Nicolas Henderson,https://lh3.googleusercontent.com/a-/AOh14GhWXWv4W07kocBm5WI-oo3HdzoxiYnd7_yNlvKgOg,"I love the app! It's a great way to stay focused, especially with all the quarantining going on. However, I have one issue with this app: the ambient noises you can play don't loop properly, and become glitchy if you let them play for too long.",4,0,4.15.0,2020-03-29 19:00:06,,,most_relevant,cc.forestapp +Jan Bouček,https://lh3.googleusercontent.com/a-/AOh14GjMu4hTAv1ga-Wpe40bb_LkszspE02Got3Guk6x7Q,"The app idea is great, but the actual app is kinda slow and a bit confusing to get around. The concept is very simple, yet the user interface is way too complex and has many features that I bet nobody really uses. Less buttons, more trees.",4,1,4.15.0,2020-04-02 14:21:08,,,most_relevant,cc.forestapp +Abhijith Uthaman,https://lh3.googleusercontent.com/a-/AOh14GiOzQaeM0wUPME-pkb2Dllb1r7kRYKPqy3kU3XXbw,"The app is good.. But we can overide this by changing the system time manually to future.. Ideally after turning on the time the app shouldn't hv allowed to change the screen, even to home screen or settings screen.. Then this could have been perfect. But android system may not allow to do so..",4,2,4.15.0,2020-03-26 15:26:51,,,most_relevant,cc.forestapp +Saha Anto,https://lh3.googleusercontent.com/a-/AOh14GjUCCEvfjlMeNr1-Q3XwEffl0G4bw4sxaf7j3NY,"I am quite liking this app.I could stay more focused than before.But o flaw that i met in this app is that U cannot pause the time. People may have to do something else or something important but then they have to give up and go to that work which results in whithering of one plant. Maybe you could provide a pause button but also take a note that if anyone hits press and opens any other app,it should automatically stop. Please keep that in mind.",4,161,4.14.3,2020-03-21 05:57:53,,,most_relevant,cc.forestapp +nourhan alex,https://lh3.googleusercontent.com/a-/AOh14GgptYTaRes-8yvZMQHEfx_U26Inr9JacM_fscWq,"I really like this app especially the natural noises. it makes me feel so calm..but for some reason even though I made the app ""on"" in the settings it still asks me to do so...it's nothing really...REALLY RECOMMEND IT.",4,0,4.14.3,2020-03-21 13:17:10,,,most_relevant,cc.forestapp +Raveena Deshmukh,https://lh3.googleusercontent.com/a-/AOh14GjRZLOnUp6u_Lu6VWvlY0OFLehc0A32iUStM5TVVg,I love this app a lot but it keeps closing everytime I try to use it after a couple of inactive days. It have to keep uninstalling and installing it. Please fix this problem soon!! I really enjoy this app!,4,0,4.15.0,2020-04-03 00:41:19,,,most_relevant,cc.forestapp +Buţu Eduard Pavel,https://lh3.googleusercontent.com/-u4lvLJvRynU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPiYNzilul3nuZdAGRRlFUwz6OSjw/photo.jpg,This app is really usefull but i didn't figure so far how to set the app to wiyher my trees whenever i exit it/ use other apps while planting. I saw a set of instructions but nine were helpful for the Samsung device i posses. I need to say i really except an answer that can help me solve my problem,4,0,4.15.0,2020-04-02 00:03:24,,,most_relevant,cc.forestapp +Liz Dahlström,https://lh3.googleusercontent.com/-1sC-WkuiZxE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOxppv4C5Zv5jwE0wTFTr8BAZ0vRA/photo.jpg,"This app is cute and a great option to just setting a timer when working/studying. However, several times I have gotten a wilted tree just because some other app sent me notifications when I myself did not touch my phone. :(",4,0,4.14.3,2020-03-23 14:05:21,,,most_relevant,cc.forestapp +zoey x,https://lh3.googleusercontent.com/a-/AOh14Gjf86z1H0xR1Mw2zyHr8XJahWEDnyx5gVuyANIrXA,"Very good app the only thing is that the minimum time is ten minutes and a lot of times I want to concentrate for five minutes. Otherwise, really cute and it works correctly.",4,0,4.15.0,2020-03-30 17:21:07,,,most_relevant,cc.forestapp +LunarPix Randomizer,https://lh3.googleusercontent.com/a-/AOh14GhfK_Z_NEclmLx7sDAyHLtGPW3jrp9xtkI4ucZt,"I love the app so I decided to install it again to keep up with school work, it works amazing but my screen is very dark, my phone brightness is all the way up but the app isnt bright but instead very dark. This has never happened before. How do I fix this?",4,0,4.15.0,2020-03-28 13:13:22,,,most_relevant,cc.forestapp +yash parkhunda,https://lh3.googleusercontent.com/a-/AOh14GiE_WUnqhisz6gt0V7N6DN4A5j4GcvXALnbU2NdAA,i am using pro version and its pretty well organised applicatiom among its competitors. but my suggestion is that please make a significant difference in tree for varioua time period. for example most of tree looks same at evry time period,4,0,4.15.0,2020-03-30 10:13:24,,,most_relevant,cc.forestapp +S M,https://lh3.googleusercontent.com/a-/AOh14GikCfjkSidZRLAHruZoSAVNaeIsEiHaKwGU7UyX,"the app is good but in the over view section , even though i have focused for 45 minutes or some hour straight , it always show the data as 2 different phases. example-》45minutes=21minute then 24 minute.",4,0,4.14.3,2020-03-25 03:02:00,,,most_relevant,cc.forestapp +english businessman,https://lh3.googleusercontent.com/a-/AOh14GhJlgTT8z3oOtb4oBvwReo2F-zvymiT-rvBz9Xs,"The app concept is so great.It drives people to work on.but there is an issue when i try to remove withered trees.I click on watch ad to remove,then it opens an ad but suddenly disappears the ad and it doesn't remove my wethered trees.",4,0,4.14.3,2020-03-24 18:08:03,,,most_relevant,cc.forestapp +Roberto Hinojosa,https://lh3.googleusercontent.com/a-/AOh14GibOjowfL1DC9pBMYILHLcNiv386kpIhwNiBx3EZw,"It's a good app, but has some errors, if a close the app, a can use every app of my phone for example, it will be more fun if one can interactore with the forest play with it or change the form idk.",4,0,4.15.0,2020-03-31 20:19:54,,,most_relevant,cc.forestapp +Blergh McBlergh,https://lh3.googleusercontent.com/-XX7YEF_AJNY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNCNIEbFPv1t1SXGGvepq8gOwyaTQ/photo.jpg,"Very good app for focus, has helped me on more than one occasion. I will say though, the audio it plays, if you choose to play it, sometimes glitches out on my Galaxy S9. It will sometimes just shut off and refuse to play even when my volume is on and the sound option is on. Otherwise though, its a very good focus app, great for people like me who get easily distracted by their phones.",4,0,4.13.0,2020-04-03 15:11:43,,,most_relevant,cc.forestapp +Tyler Jessee,https://lh3.googleusercontent.com/-HOB6KzvRpPE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNVjqhIRy6z6NB12pOWgpUIu1ngIw/photo.jpg,Forest is a gamification of the pomodoro technique. It's more helpful than other pomodoro-type apps. The vibration notification is too long and loud. Otherwise an excellent app.,4,0,4.15.0,2020-04-02 19:29:44,,,most_relevant,cc.forestapp +Pavitra Ravi,https://lh3.googleusercontent.com/a-/AOh14GjR9QLxVyrUFZ8cJKexQI0VMWkxB-JLDV84eYxcWA,This is a great app...helps me a lot...but I have 2 problems: 1.the app doesn't give notifications on time when the time is up.....it used to give proper notifications before...but for the past 2 weeks it doesn't sound on time. 2. another problem is that I'm not getting the coins I earned ! Sometimes when the notification doesn't come (as described above) I don't get any coins and the timer resets itself without awarding me my coins. I request you to fix these 2 problems as soon as possible !,4,0,4.13.1,2020-03-26 08:25:50,,,most_relevant,cc.forestapp +Emanuel,https://lh3.googleusercontent.com/a-/AOh14GjMN2FvR0ZlJsPaxnDLxq14t_cUQBKhgu68_lFypA,"I really love the app! But I have one suggestion though, I hope you make the trees animated so users can have a better experience and enjoy their forest more! Nevertheless, this app is 💣",4,0,4.14.3,2020-03-26 14:38:19,,,most_relevant,cc.forestapp +Mr Green,https://lh3.googleusercontent.com/a-/AOh14GgFI9EUguS7Zy2oUvLA9sMAy_l6Oox2HWlb8_gGbQ,Best Pomodoro app. There's only two things that I'd wish they included. 1.) I wish they allowed portrait mode so I can have my phone propped up sideways. 2.) Could you guys please allow this app to take up the WHOLE screen so I don't get distracted by notification icons or the time?,4,0,4.14.3,2020-03-25 16:28:47,,,most_relevant,cc.forestapp +Afshan Allauddin,https://lh3.googleusercontent.com/-sbbHk8QeJdw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJODMl16csjWZV6VQ0Dzyl66l1u6FQ/photo.jpg,My mother was saying your maximum time limit was two hours with the phone.but I always did more. This app allowed me to stay focused on something else really recommend it.,4,0,4.15.0,2020-03-28 10:05:49,,,most_relevant,cc.forestapp +Ofal rabbani,https://lh3.googleusercontent.com/a-/AOh14GhykpaJHc4XrYfl4wHyiqVzhRI_xh3nxosfdetO6g,A great way to keep myself focused. I enjoy the different tree options and seeing the forests i grow every day. Good way to measure my producticity levels too.,4,0,4.15.0,2020-03-27 00:35:08,,,most_relevant,cc.forestapp +toussaint anderson,https://lh3.googleusercontent.com/a-/AOh14Gi7NfXN860Z-cE6LMGE4xSbKOrrQ-cKSUz765Hvgg,"The idea is great. I've used it many times to stay focused and stay on task. I enjoy the fact that you can write lil bios of on your trees. However, the app would be tremendously more useful if I were able to restrict certain apps for a period of time rather than not using my phone at all. I still want to use certain apps, like music and reading apps, rather than not having access to my phone at all.",4,110,4.14.2,2020-03-09 22:48:53,,,most_relevant,cc.forestapp +Дмитрий Савельев,https://lh3.googleusercontent.com/-EzS2-WVQU_c/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPxaD0L9qvKikEfl4jqznHwTobF5w/photo.jpg,"Nothing is ideal, but this app helped me to write a song and make my own project. It's funny, that same time I grow a beautiful garden. Thanks)",4,0,4.14.3,2020-04-03 08:10:24,,,most_relevant,cc.forestapp +S S,https://lh3.googleusercontent.com/a-/AOh14Gi97yCWJtnX3LZj4cQdP51h7ul1da4L1Z249D64knw,"Okay I think it's kinda working now but the only one suggestion. I'm not sure if it's like this on every phone or just mine, but I remember the old version used to automatically bring you back to the growing tree as soon as you attempt to open an app, but now it only send notification preview to the notification bar instead. If the developer did change it, I wish they would bring the old style back. I need a bit of forcing lol",4,11,4.12.3,2020-01-19 06:12:32,"Hello, +Sorry for the inconvenience. The redirecting function is removed from devices running on Android 10 because of changes in the new Android system.​ Now you'll receive a warning notice instead when accessing other apps. We'll keep seeking a way around this. Thank you for the feedback. :) +- Forest​",2020-01-20 16:50:21,most_relevant,cc.forestapp +Shatha Ghassan,https://lh3.googleusercontent.com/a-/AOh14GiJ11dW5vPx10D31DHEWxrsLtUzsdw4AUZZZRapRA,"It is really a useful app and I liked it, But I have a proplem that my tree doesn't die when I leave the app. It actually blocks me from using apps, but when I remove it from the background (tapping the right button and remove it by scrolling up), I can open any app and forest stops working. What I want exacly is to make my tree die when I leave forest and never be able to use apps when I try to do so during focusing time. Please tell me if there is any solution for this and thank you so much.",4,3,4.13.0,2020-01-28 10:10:17,,,most_relevant,cc.forestapp +Kai Ten,https://lh3.googleusercontent.com/a-/AOh14GhC_W0rao-btTusUcMCeSe4sPsewkA0ak8GrY3J5Q,"It's good overall. It has a variety of cute options for trees. I had some issues with an alarm I'd forgotten about going off from another app & causing a tree to die unless I watched an ad. It takes a long time to get enough coins to buy other trees. There isn't a formula available to estimate how long it would take. Discouraging. I liked the idea that was posted about having animals get drawn to healthy forests over time. I wanted pro several times, but don't trust myself with whitelist.",4,89,4.13.1,2020-02-13 09:01:59,,,most_relevant,cc.forestapp +Dr. Monica Mehrotra,https://lh3.googleusercontent.com/a-/AOh14GjKOzP_dHFlI-nUJHnBi3sbSa6qtyHDSqnJTFZe,I had a great experience but i gave 4 stars because the time is only for 25 minutes and again we have to open our phone to set a new timer and get distracted.. The best thing abt this app is that it has very relaxing sounds that help us to focus and concentrate on anything which we do ... I would be really happy if u increase the timer to 1 or 2 hrs ... Thanks,4,21,4.14.2,2020-03-19 07:18:23,,,most_relevant,cc.forestapp +Celestite Icewing,https://lh3.googleusercontent.com/a-/AOh14Ggf19cIpX4wiskyzuTvKaZX5c0E9pAnGKcMLn53mw,"I love this app so much! It helps me stay focused and on task while I'm in class and at home studying. I recommend this for any student struggling to put down the phone and focus on school! The reward system is amazing and I can wait to unlock more plants as i progress. As a nature lover, I live for the idea of helping out the REAL life environment aswell, which is an amazing feature of this app. The only down side is that it sometimes crashes, which is frustrating but I can get past that.",4,111,4.14.1,2020-03-03 02:51:31,,,most_relevant,cc.forestapp +Maria Konda,https://lh3.googleusercontent.com/a-/AOh14GhVT8OxTJTDkZDV9DHxzfBu80UQwUrdA-x_P_AW,It's a great concept to get work done or take a break from the phone. It would be nice if there was an option to time yourself and grow a tree while doing work on the phone itself like working on Google Docs for instance... If the app allows you to identify some work apps and use only those while the tree grows.,4,16,4.14.2,2020-03-09 13:34:25,,,most_relevant,cc.forestapp +Jewel Ahn,https://lh3.googleusercontent.com/a-/AOh14GjNpxp3ZeqshYxkVwwsrsnye4y91ynnbvRAcy5OKA,"Thanks for the tech support! The app wasn't working properly before, but now it runs fine. The only probkem is that when I press the home button, the tree doesn't die and the ambient sounds still play like the app is still open. But it's fine because the tree will die if I go into any another app.",4,19,4.14.2,2020-03-14 15:48:46,"Hi, +Please go to your phone's System setting > Apps > tap the menu button in the top-right corner > Special access. +In the ""Special access"" page, tap ""Optimize battery usage"" and turn off ""Battery optimization"" for Forest. Also, find ""Usage data access"" and turn on the permission for Forest. +Hope this helps. Thank you! - Forest",2020-03-14 04:59:41,most_relevant,cc.forestapp +Tiana Jasmin,https://lh3.googleusercontent.com/a-/AOh14GgxU41hSXkfLuhcpfjb5w68kvdv025vkIeHALPE,"It's not a bad concept at all, and I'm happy it helps in real life too... but I was excited for the whitelist feature and it's only available for purchase. Most of the work I do involves other apps so I wont use it often at all. For those who don't need other apps it's a great thing to have. I'll use it when I'm reading, doing homework that's not online, etc. Just wish I could do more.",4,4,4.13.1,2020-02-27 02:02:27,"Hi, +We understand your point, but as a start-up, we require assets to keep the company running smoothly. It is after much consideration that we decided to put certain functions to the Pro version. +Forest is a one-time purchase. You'll gain access to all the features once you unlock the Pro version. We hope you consider. Thank you! :) +- Forest",2019-09-29 13:50:37,most_relevant,cc.forestapp +Lien Lepee,https://lh3.googleusercontent.com/a-/AOh14GjzO7MzIVDH-a-2kxVU7BtNtR5ZbzY_BC1UuehC,"I love this app! It helps me to stay focused while studying, or to not use my phone when I'm around other people.",4,0,4.14.3,2020-03-19 16:59:14,,,most_relevant,cc.forestapp +Elizabeth Flores,https://lh3.googleusercontent.com/a-/AOh14GganlQd_EbqKyrw-4pfKCpeXxShinh9J6r_PNhd,Kinda wish price tiers weren't so high but that's not that big of a deal. I guess premium is better but I can't get that at the moment so eh. Actually I do have one complaint. I don't think syncing forest from the chrome extention to your phone should require the premium version. That's just me though,4,20,4.14.0,2020-02-27 11:54:16,,,most_relevant,cc.forestapp +Neeraj Krishna,https://lh3.googleusercontent.com/a-/AOh14GhvqzvCUUjLUjQkhNQV7k92xho5KPM_WCSglRxi,"Was great earlier,but stopped functioning after the update!! I guess it is not compatible with some android devices. This is really bad.People out there are shifting to an alternative app called Focus Plant. Would really appreciate if all devices are supported.Edit: working now-For those whos tree is not dying,go to settings and disable the option-Lock forest to stay in foreground.Developer pls note.",4,1,4.13.0,2020-01-29 06:20:45,"Hi, +Samsung phones require certain steps in order to have Forest run smoothly. Could you please send the details of the problem to android.support@forestapp.cc? We will guide you through the steps. +- Forest",2020-01-25 21:45:15,most_relevant,cc.forestapp +Kylie Sanders,https://lh3.googleusercontent.com/a-/AOh14Gh_UOQgfmP0vDIgZUzrXwWgxb4YkWziL9C1ZWIalg,"It is an app with a good concept in mind. Only have to spend $1 to start putting your time to planting real trees. The downside is that you have a limit of planting only 5 trees. After I reached my limit, I started to lose motivation to use the app just to plant virtual trees.",4,5,4.14.2,2020-03-12 15:34:13,,,most_relevant,cc.forestapp +P I P S C H T I C K,https://lh3.googleusercontent.com/a-/AOh14GgY5lVzOSLdp0fI4UYbjEai_AbTEKeLYzL_uhDTHQ,"Honestly L O V E this app already and I've only had it for, like, 30 minutes but there seems to be a small bug after the timer finishes. I don't know if it's intentional but the pop up that gives you coins just keeps... Popping up? I get 10 coins, I press ""okay"" then another pop up comes, giving me another 10 coins. It doesn't end until I have to remove the app from my history. Despite that this is an AMAZING app for studying ❤️",4,0,4.13.0,2020-01-30 14:22:26,,,most_relevant,cc.forestapp +Haniya Jamshed,https://lh3.googleusercontent.com/a-/AOh14GiTSOSq5Mkpp0degdc-00aOmgHT5vLi5zYucJ4R,"I love this app very much but I've been having trouble recently with it. After a single use, it keeps shutting off by itself. Apparently, it shows me an error that I've not downloaded the latest version of it even though I have and even after deleting and reinstalling it back, it keeps glitching. I don't know what to do D:",4,0,4.13.0,2020-02-03 12:02:42,,,most_relevant,cc.forestapp +Prisha :D,https://lh3.googleusercontent.com/a-/AOh14GidBznNRcMr6X_yEjksaAa4zCEVz4tv_gHjvBsFgw,"Amazing app, keeps me off my phone when I need to be productive, but, it's been having some glitches lately. I've been trying to open it and it just opens itself and closes again. It only works if I uninstall it and then install it again. Hope to see this issue fixed.",4,0,4.13.0,2020-02-09 06:14:54,,,most_relevant,cc.forestapp +M Z,https://lh3.googleusercontent.com/-EI1PZ8KPBgE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN-swJWvaRKmZQgUiZnGUSq15PY-w/photo.jpg,"I really like the idea and it does help me with staying focused, but reminder notifications don't always pop up. It's also a bit slow at times when loading a new screen, and some screens look a bit dated but it's fine. Anyways I love the feature of being able to plant real trees, I'm looking forward to plant one!",4,27,4.13.1,2020-02-14 01:23:01,,,most_relevant,cc.forestapp +Candy,https://lh3.googleusercontent.com/a-/AOh14GhDTcpY4-U8oL5ToK1V_SBcS-0Bm9DJn0Etrqdfbq8,It's a great app to stay focused but sometimes I use my phone to go on Google or use Google translate or dictionary and other things that I need to do my work. I think the app should let us choose which apps can be an exception because phones are sometimes very important in doing our work. Restrict only games and social media.,4,24,4.14.1,2020-02-29 20:38:06,,,most_relevant,cc.forestapp +Mimi,https://lh3.googleusercontent.com/a-/AOh14GjunKvxDNyc3cNSZZRMZm8vvJdMDHpIG9pAn7XDgg,"I love this app ❤️! I would, however, like if you could add something more to make the app feel even more polished and more peaceful. For instance: animals that wonder around your forest and the healthier the forest the more animals come or you could move your trees and add rivers. Worth the $2.00 for premium. Very good for big groups to focus. I love the store and the fact that you can buy different trees to grow, get different sounds, and music.",4,12,4.13.0,2020-02-12 16:35:19,,,most_relevant,cc.forestapp +Clayton Summers,https://lh3.googleusercontent.com/a-/AOh14GhcFd3z_mt9OyANqr4_WuKI74chOjYAsvyAtBIYjA,"Overall I love the app but with the most recent update I'm experiencing an issue where it appears trees cost more coins than they display. For instance, I cannot purchase a 600 coin tree with 673 coins because I don't have enough coins. Also last night I had 1272 coins and bought a 600 coin tree, bringing my balance down to 501. If this could be fixed, I'd love to go to 5 stars. I literally use this app all the time.",4,272,4.14.1,2020-02-29 16:00:55,,,most_relevant,cc.forestapp +Lina Mohsen,https://lh3.googleusercontent.com/a-/AOh14GjmDOq2YkS1i8Vs3uAOmcTxkyGOWeRkvOsY0tsGOLs,Really great tool helps me to know what do I spend my most time doing and I strongly recommend it to everyone. It would be a better experience if they could add a feature to give me the freedom to organize my own forest and change the way my trees are put,4,0,4.14.2,2020-03-18 13:35:32,,,most_relevant,cc.forestapp +Self_taught _artist,https://lh3.googleusercontent.com/a-/AOh14GhrQnP6fVmWbKo5N1JLLY29egiOzXIzXGDzYeBIX_Y,"Its a Productive app.Helps me to have my focus off the phone.The concept of planting variety of plants and trees eventually having a beautiful virtual forest of yours(I'm using the free version) is outstanding.Not to mention the ambient sound feature(not explored yet).I'm happy to find this app. Suggestions : Add more varieties of plants,trees & decoratives in the store.Also, add animals in the store, it will bestow in users the idea of having wildlife in their virtual forest. Thank you",4,7,4.14.1,2020-03-02 05:03:05,,,most_relevant,cc.forestapp +Kath Cheasty,https://lh3.googleusercontent.com/-KvZ4w5oqYX8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMxWtabiTfBbxWT3augPZVgCR25sg/photo.jpg,"It really helps me being productive, but maybe you could make it more worth it to continue after the time has ran out? Like get more money or a medal or something because personally i feel like doing more than you planned should be rewarded.",4,0,4.14.3,2020-03-23 11:17:17,,,most_relevant,cc.forestapp +Ellen Liang,https://lh3.googleusercontent.com/a-/AOh14GgZlUgFHIzOZP2GOS2AlfgDcH-_DjehXK6BF6hUSQ,"3/5 cool idea, but way too many adds - opposite of making someone ""focus"" Edit 4.5/5 (after purchasing pro v) Pretty good. I wish there was a way to adjust the time goal to be something else other than 25 min. Or instead of trees being different at 60 min, 1.5 hrs. Etc. Some trees shld be diff at 40 min, 50 min etc.",4,7,4.13.0,2020-01-22 00:28:27,,,most_relevant,cc.forestapp +Natasha Ning,https://lh3.googleusercontent.com/a-/AOh14GhlPGnvUnzwc8sdZm8YJ9-CZ-Ne2-qeHgqn3ln-,Hello! I love the app as the tree is cute and creative. However my tree doesn't die when i press the homescreen button for forest. It doesn't die when i leave the app and go to another app. What i want is the tree to die when i leave the app so that i can increase my focus and productivity in doing work. Help please?,4,0,4.13.0,2020-02-11 04:57:55,,,most_relevant,cc.forestapp +OvenCake,https://lh3.googleusercontent.com/a-/AOh14GivPVfehF9AUPOuKBMpYR7QCyx7D4S6Yuyh1Zzm,"The app is awesome. Really wish you could tag and name trees before you plant them. That would be a nice quality-of-life change. Also, if you could make the app more compatible for chromebooks, that would be nice too. Chromebooks are excellent work computers and I need a good working app on it. I really hope forest can work in the future.",4,10,4.13.1,2020-02-13 03:42:31,,,most_relevant,cc.forestapp +Mew 방탄소년단 Luv,https://lh3.googleusercontent.com/a-/AOh14GgcQpOPpofKrLMEbmFL18v2zQ-p39PNOHaHelspbw,"Awesome app, really. Especially for students managing their time. My friend actually introduced it to me and I would be glad that we could view each others' profil without using the Pro thing. Like, we can remain focuse TOGETHER even if we don't live near each other.",4,1,4.13.0,2020-02-06 14:15:45,,,most_relevant,cc.forestapp +Anjani Raj,https://lh3.googleusercontent.com/a-/AOh14GjbOPwXgfmLON6wH2tWomlWX6B-QSDL2qdF9Qh6yFk,"I'd assume the preferred behavior is for user to focus for longer periods than shorter periods. But the rewards are exact opposite, I 6 coins for two 10 minute sessions but only 5 for one 20 minute session. Your point system must change.",4,0,4.14.2,2020-03-14 17:07:58,,,most_relevant,cc.forestapp +Scarlett Cross,https://lh3.googleusercontent.com/a-/AOh14Gjvq0e1XuXAwklhPM2oN9ena0cvdCLyYoKpRZrv,I love the white noise feature. It helps me stay focused on the task at hand.,4,0,4.15.0,2020-03-29 19:31:20,,,most_relevant,cc.forestapp +Moaz Ikhlas,https://lh3.googleusercontent.com/a-/AOh14Gi_R_3EhX_foGCbI8xoDb4_PanO83-EQNCgP7zmlA,"I really love this app! It has really nice plants and gives you rewards too! The only thing that I don't like is that now when you exit the forest app, it doesn't force you to come back. Last year, in 2019, I experienced that when I exited the app, it would force me to come back. Pls fix this",4,14,4.13.1,2020-02-23 04:12:31,,,most_relevant,cc.forestapp +Raven Dachiana,https://lh3.googleusercontent.com/a-/AOh14GiIXhNcMTk0lqWtTxl_zd1U7KnAX8rkEeuNy7ZH3w,"I love what this app is doing and what they are attempting to achieve but at times when I try and double my coins, it does not get added to the overall total. It's a small thing but I hate watching adds just to not receive the reward. 🤷",4,0,4.12.3,2020-01-20 12:49:09,,,most_relevant,cc.forestapp +elif x,https://lh3.googleusercontent.com/a-/AOh14GhlLUgmh3AXRn32UDiY-NBTkCdiVAHU4kflGALxXw,This app is very helpful for me to cut back from Phubing and spend time staying focused for as long as I wish. There's only the problem of the crashing of this app oftentimes. Please do fix it. And thank you♥️.,4,0,4.14.2,2020-03-08 06:32:17,,,most_relevant,cc.forestapp +Tory Rivelli,https://lh3.googleusercontent.com/-NEyWSpwMO68/AAAAAAAAAAI/AAAAAAAAH-k/AAKWJJP_OX9JFaDVQES_KsUaOezc3jqZrQ/photo.jpg,"I've had this app for a while and I love it. But after the last update it hasn't notified me that my time is up. The tree is planted but my phone doesn't go off. All the notifications it could have are turned on, so I don't know why this is. Help, please?",4,2,4.13.1,2020-02-16 13:53:40,,,most_relevant,cc.forestapp +Christina Hood,https://lh3.googleusercontent.com/a-/AOh14GgFxxiVUmfKy1bS4kVhJGstGfXi84mKk-K2eWa-,"I really like the app, it has really helped me focus on study and work without distraction. I love unlocking new trees from the coins you earn, but I wish there were a little less expensive. Overall a really great free app!",4,0,4.13.1,2020-02-22 03:46:36,,,most_relevant,cc.forestapp +Raakhee Sharma,https://lh3.googleusercontent.com/a-/AOh14GhYs0BRBvNFMVnlQ4PccStATLK9O_M_wE3COU5qvw,This app is a bit laggy sometimes but overall I have gotten alot of help from this app especially during my exams. It helps you stay focused. As the name suggests you have to build a forest and the more focused you are the bigger your forest gets. It is a really fun app.,4,1,4.14.1,2020-03-02 17:49:54,,,most_relevant,cc.forestapp +Froste Bite,https://lh3.googleusercontent.com/a-/AOh14GgBEijgCPQqf_Irrl6pgPvX6jA3AzwkQyvsYV9QrQ,Really great! I have trouble staying focused on my studies but this had me studying uninterrupted for hours on end. I live all the great designs but I just wish there was more options for the start up pack for the trees and the ambiance music but overall brilliant!,4,0,4.14.2,2020-03-11 03:27:54,,,most_relevant,cc.forestapp +Adhara Hodgson,https://lh3.googleusercontent.com/-sNv-2tAT7HQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOLjNetcToS0Ypn9m55UkXqdk8ukw/photo.jpg,"Love this app, it helps me stay focused. Easy to use and also love seeing my forest!",4,0,4.14.3,2020-03-19 18:54:17,,,most_relevant,cc.forestapp +Lolita James,https://lh3.googleusercontent.com/-47TBVxHvUtI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMdo3NXSkWXSOdrpdWswW1n5u8GdQ/photo.jpg,"I use it a lot and it really helps with my concentration. The timer is slightly slower than actual time though, so if you want to know the exact time you worked for check your clock before and after",4,1,4.14.2,2020-03-08 09:38:35,,,most_relevant,cc.forestapp +Yash Arodiya,https://lh3.googleusercontent.com/a-/AOh14Gj7e8mxTYNkXJ9rdLOKIEx7F4qYBOawnlI7_JWI,I love this app.... It helped me improve my lifestyle.... Nd made me a better more mature version of myself... The only gripe is that plz allow us to whitelist some apps.... Like I know it's there in the premium version but at least allow like two three apps to be whitelisted.... That would help us so much,4,2,4.13.0,2020-01-28 13:13:49,,,most_relevant,cc.forestapp +Anya Goyenka,https://lh3.googleusercontent.com/a-/AOh14GhdGdzt4VlomuOx8NDkxeWKoIGkyhYSuxCI9QOy,I really loved it as I studied my plant would grow just the problem was that if I wanted to unlock a package of grow real trees or get knowlage about trees I had to purchase it that is why I have a problem in the app. Well if the app is for studying then why are you have made a purchase deal I don't think this is fair. 😊pls try to get rid of this purchase,4,2,4.13.1,2020-02-25 14:13:59,,,most_relevant,cc.forestapp +Lily,https://lh3.googleusercontent.com/a-/AOh14Gjce41YhIniVxgUPdwp28IvF1HiQ2_B22ESOoYyDhw,"Amazing app! I just wish that non-premium members could have an account so we could save our forests that we've already planted over the years, the trees we bought, and the coins we have/had.",4,0,4.12.3,2020-01-17 23:23:35,,,most_relevant,cc.forestapp +Gabrielle Newbery,https://lh3.googleusercontent.com/a-/AOh14Gh1jC1g5yChRVSgDNrPI31sdMM6UL6x9TTdQEEhgw,"Love this app so much!! It's helped me so much over Th years to get University work and school work down, but I do wish that trees didn't cost as much :(",4,0,4.15.0,2020-04-04 02:54:40,,,most_relevant,cc.forestapp +Helen Wilson,https://lh3.googleusercontent.com/a-/AOh14GjXyqIFXe3bZ1DSfoXN5e2LQAyf2oZd4tab0K82NA,"Easy to use, effective and fun. Can't afford the premium though",4,0,4.14.3,2020-03-26 05:27:22,,,most_relevant,cc.forestapp +Aprajita Singh,https://lh3.googleusercontent.com/a-/AOh14Gj7lZX1qAuAUPxuETQ9CB3tTMsgAT23PbyrG6f0IQ,It's a really good app if you're trying to focus on somethingband it's definitely helping me with my studies for final. The satisfaction after you see that the timers up is awesome and works great if you use the reward system for focusing.,4,11,4.13.1,2020-02-12 16:00:36,,,most_relevant,cc.forestapp +Abhigyan Das,https://lh3.googleusercontent.com/a-/AOh14Gg1vS0ShvYZjlyE1dZuttbcdV1HvoMAFHGb6aY0sA,Very innovative concept. It does what it claims to do reasonably well-help you focus. Implementation could be better though. Few very essential features are behind paywall despite the app having ads.,4,0,4.13.1,2020-02-22 05:56:39,,,most_relevant,cc.forestapp +Gwyn Maritana,https://lh3.googleusercontent.com/a-/AOh14GjzF4g6Z6bVafh1Dz49RKBhZRd92NtkR99YYYY8yg,"i really like this app, it helps me focus with my tasks and study, but hope you get rid of the messenger pop ups, i could still get notifications and able to view it without losing a plant. but overall i love it.",4,0,4.13.1,2020-02-24 02:01:54,,,most_relevant,cc.forestapp +some one some person,https://lh3.googleusercontent.com/a-/AOh14GhLCP7jH-xpV7xL_8c1OkIMh83vbvDxM5pKQt8y,It would be much better if there was an option letting you categorize some apps as exceptions . For example I'm studying and then I need to use my dictionary but I can't cause If I want to do it I have to give up which is a bit annoying,4,1,4.13.1,2020-02-20 17:18:24,,,most_relevant,cc.forestapp +Arturo Gtz,https://lh3.googleusercontent.com/-2NTBxCqYS90/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPb2cNKmwlrxIStXs2UyFY9EzQf0g/photo.jpg,Really nice. I just this to get ready in the morning and to focus at work. I've not been late since i started and I'm loving it. I don't like that you can't turn the vibrate off,4,0,4.13.0,2020-01-21 16:04:42,,,most_relevant,cc.forestapp +Daniel Ebenezer,https://lh3.googleusercontent.com/a-/AOh14Gj_b-TKu3fw-0_IXHUytWcKG94PO-8sXb9ZgjQQ5Q,"Nice app! But almost everything from the menu needs a premium verson to use it. At least keep the friends section as a free section, so people will get other people involved in this.",4,0,4.13.0,2020-02-11 04:37:21,,,most_relevant,cc.forestapp +Debi Ores,https://lh3.googleusercontent.com/a-/AOh14GgEpoiSfwcGH6P_KGXCK4oPXikGWywvfaO4rctAQA,"Great but latest update has bugs. Despite having enough coins, when I try to purchase the new weeping willow I keep getting an error saying I don't have enough coins.",4,0,4.14.0,2020-02-28 20:04:34,,,most_relevant,cc.forestapp +Esmond Low,https://lh3.googleusercontent.com/-wLYeQEFSGxw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNZBGII-4ISHGPASiwCfLL_6qshyg/photo.jpg,So far it is good. But however i hate it when it still lags,4,0,4.15.0,2020-03-27 05:16:57,,,most_relevant,cc.forestapp +Blubb Fish,https://lh3.googleusercontent.com/-Q1fynNGIAfc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOXea5VR9U9_U4mDhlzf5y_l6dreg/photo.jpg,"great help when you need to stay focused and shouldn't touch your phone 😉 Since the last update, I can't access the shop anymore. It keeps loading and loading...",4,1,4.14.0,2020-02-27 07:56:48,,,most_relevant,cc.forestapp +Israella C.,https://lh3.googleusercontent.com/a-/AOh14GjAxpb6hoYigogs3jcWAQawzs9zxEUCZRljRN_sADo,"Sad that I lost all my progress when I uninstalled and reinstalled the app. Also, I always get Error Code 2 when trying to get double coins from viewing the ad.",4,0,4.13.1,2020-02-22 22:06:16,,,most_relevant,cc.forestapp +Zobiya Ameen,https://lh3.googleusercontent.com/a-/AOh14GjWCJKF2zkc7pvxrPYLDsXJlxm5xSlgn9oMBFCK,It's a nice applications but it should also have a button for completing before time. Give up then ends up killing the tree and hence loss of progress of the forest.,4,0,4.14.1,2020-03-06 00:59:31,,,most_relevant,cc.forestapp +Huini Chong,https://lh3.googleusercontent.com/-pkwlMRkrKqc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMJDWJx6bZAXhbzAlp9qW4QeHObZA/photo.jpg,"Interesting.... I think... Not yet try. Coming here clicking rate, and unlock a tree.",4,0,4.14.3,2020-03-19 04:43:19,,,most_relevant,cc.forestapp +Ignatius Francus,https://lh3.googleusercontent.com/a-/AOh14GjzKViZYSNxE8QRZBRvsOL3mXgtu64iNQHePR57CA,"Very fun and a good way to stay focused. I do recommend this app. The sounds come broken sometimes, it should be fixed.",4,0,4.13.0,2020-01-25 03:05:19,,,most_relevant,cc.forestapp +jishnu pavithran,https://lh3.googleusercontent.com/a-/AOh14GjHe-f0cbxYFF20uMx9B2FR0SfBatGoHwnoQaKG6g,Great App But I still need a feature that the app should have a custom notification sound selection option so that I can know that notification has come from this app.,4,0,4.14.1,2020-03-19 06:27:21,,,most_relevant,cc.forestapp +Lynne Pearson,https://lh3.googleusercontent.com/-93yeelDKPyw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNAdNPgVk1s-wWEoPXMjNIVlvoz_A/photo.jpg,"Its a really good app that has helped to motivate me to revise, i just wish that you could plant real trees without having to purchase forest premium, i also like the design of the app and how easy it is to use",4,0,4.13.0,2020-02-13 21:09:20,,,most_relevant,cc.forestapp +Rainbows And Sprinkles,https://lh3.googleusercontent.com/-tIEotugdsSI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPajhnpmA8qvjDEbD9AHopZjMaJMQ/photo.jpg,It's a great app. I use it when I'm trying to study and it helped me a lot but whenever I want to search something from Google I can't. Please don't get me wrong. Giving 4 stars,4,0,4.13.0,2020-02-01 06:20:44,,,most_relevant,cc.forestapp +Chaymaa AbdelHady,https://lh3.googleusercontent.com/-IaNsDut5DBI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMjbWjpoYMPuvTJ_2sg9g7r8BTQuw/photo.jpg,"It's very good but I'm upset I can't open dictionary, calendar, gallery or even listen to. music on mobile. Please check this out. OK for social media but all no 😔",4,0,4.13.1,2020-02-28 16:30:47,,,most_relevant,cc.forestapp +Hannah Case,https://lh3.googleusercontent.com/a-/AOh14GhP1x0vuMoP7Hg5uGa93nyKw8dHZx0oEujtycnTRg,Such an amazing app! Really helps me focus and keep myself on track with my assignments! Only con is buying coins but you can save them up over time!,4,1,4.13.1,2020-02-20 00:51:49,,,most_relevant,cc.forestapp +Chloe Rogers,https://lh3.googleusercontent.com/-jvSRCNeS9gg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNU-bFly3Xw0yhzrrNRUCuYX9aNCQ/photo.jpg,I love the app and ended up buying pro because I wanted to save my coins to plant a real tree. Why is there no option to watch an advert to double coins on Pro version?,4,0,4.12.3,2020-01-15 17:11:53,,,most_relevant,cc.forestapp +Chris Lane,https://lh3.googleusercontent.com/-Ewm5svte1kk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO7NUiCgS843UetW5RE60oW_bPYKw/photo.jpg,Excellent look and feel. I will change my score to 5 if you add a homescreen widget to observe our forest. Thank you.,4,0,4.14.3,2020-03-20 18:26:20,,,most_relevant,cc.forestapp +Victoria A,https://lh3.googleusercontent.com/a-/AOh14GhUhRdIGXFeL1CwFFbao9bI7w0UxxdQhjlxRcYOXg,This app is very helpful However I had bought this app on my apple device and just recently swapped to android and now if I want the full version of this app i have to re-purchase it to get all the facilities,4,0,4.13.0,2020-01-26 12:59:17,,,most_relevant,cc.forestapp +강서아,https://lh3.googleusercontent.com/a-/AOh14Gipvpa316plJc6R2wfGuP_GNy_6raRXB6MLQWC33g,This app is awesome though it hangs most of tge time after I finish growing a tree. But in overall I love it. And I hope this app will have more features in the future,4,0,4.13.1,2020-02-15 17:12:01,,,most_relevant,cc.forestapp +Heyloo there,https://lh3.googleusercontent.com/a-/AOh14Gi9Gr7bnCJEps1mKKW-hq-S00rY5gRtJ6fLL-7t4Q,Really cute app and I love it. But I wish there was a feature where you can pause the timer? Take a short break then resume studying. It'll be really nice,4,5,4.13.0,2020-02-02 10:51:46,"Hello, +Thank you for your feedback. We will forward your suggestion to our team.",2020-02-05 17:38:27,most_relevant,cc.forestapp +alciel Mathews,https://lh3.googleusercontent.com/-9IexT19aYGQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM-xYitqJVaxgnoEslbtDMqffwR7A/photo.jpg,It was better before all the pay for features. I use it while studying and it's very helpful,4,1,4.14.2,2020-03-16 19:36:56,,,most_relevant,cc.forestapp +Sarah Fink,https://lh3.googleusercontent.com/-whTpxKUgV9E/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN3_PMEjvFOlwZrYqlGMG7bfVxF4w/photo.jpg,I like this app. You think that the hours spent in class and the potential to acquire a college degree would be enough... but it is not.. only the idea of growing a virtual forest will keep me off my damn phone.,4,0,4.13.0,2020-01-21 16:41:50,,,most_relevant,cc.forestapp +Ellie Strong,https://lh3.googleusercontent.com/a-/AOh14Gjx9Gqwoa-RQrmHbBkByX1XSOYj57zK57GxbMsjxg,"I think this app is great, only problem is, it's very easy to close out of the app without the timer stopping and your plant dying.",4,0,4.13.0,2020-01-29 20:55:18,,,most_relevant,cc.forestapp +senal boteju,https://lh3.googleusercontent.com/a-/AOh14Ggn7-6CVPb-puMSKwjptas8Qy5W0uqLoicJP9c5Zw,It really helps me for studying and keeps me in focus. I also likes to grow many trees in my forest so I study by keeping the timer on and at the end I have studied than I thought and many beautiful trees are too grown.,4,0,4.15.0,2020-03-27 06:21:32,,,most_relevant,cc.forestapp +Francesca Mitchel Ofilada,https://lh3.googleusercontent.com/-bI5vO2s6IQE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPHKZjEHsG4CVjG_ACWy5TUubKpNg/photo.jpg,Very helpful for getting things done. I wish there were more white noise options but otherwise very cool,4,0,4.12.3,2020-01-28 03:24:01,,,most_relevant,cc.forestapp +tee koike,https://lh3.googleusercontent.com/a-/AOh14Ggxi5PnKC6O5U6wj1ekh5zPcB462gkqByw7tIlcIg,"love it!! so helpful, works really well and is super cute. i just wish the different trees cost less coins",4,0,4.13.0,2020-02-02 15:36:53,,,most_relevant,cc.forestapp +sangameswara1234,https://lh3.googleusercontent.com/-zDYDGIn_Cv4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMUk2RkvdVDK0m5Q9MlYNFRTqOMDg/photo.jpg,Wonderful app... I am really able to concentrate more now. A must try app for someone who loses focus easily.,4,0,4.9,2020-04-06 17:11:38,,,newest,cc.forestapp +ALKA_ LINE,https://lh3.googleusercontent.com/a-/AOh14Gh8ytzqG_Khdbhl-TTuJcgwIXEK8wXkAWGEQpO2qA,its a pretty great app with lots of stuff do.It actually helps.I just love it and use it everyday,4,0,4.15.0,2020-04-06 14:05:47,,,newest,cc.forestapp +papa mochi,https://lh3.googleusercontent.com/a-/AOh14Gjh-Zkf55PRafeAjUVJ3NaLhTtipE2wWvHqR0BW,I just download this app and it was so cool and helpful. It helps me to stay focus and use my time wisely..,4,0,4.15.0,2020-04-06 13:57:49,,,newest,cc.forestapp +angela,https://lh3.googleusercontent.com/a-/AOh14GjolD2Bv5gojqcoAtPBESKK_2dwFK3YZsnJRh6C2w,it's good,4,0,4.15.0,2020-04-06 13:09:57,,,newest,cc.forestapp +shubhangi pundir,https://lh3.googleusercontent.com/-ZFRyhAbl0ds/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNj3oh6ATJWQOoFhGCasNNqG1E6Pg/photo.jpg,Beautiful plants,4,0,4.15.0,2020-04-06 13:05:51,,,newest,cc.forestapp +Cara R,https://lh3.googleusercontent.com/-OZAOpkgwQCw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPVb-JQS3BuPqZlqDb1JbmW584Fhw/photo.jpg,I like that they have incorporated a lot of different plants to choose from💚,4,0,4.15.0,2020-04-06 12:10:01,,,newest,cc.forestapp +Lene Nel,https://lh3.googleusercontent.com/-AGQeNrDCgK0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOQ8yAauMMdRGDyX43V4tPGZgfz-g/photo.jpg,"I tried to download this app, but it says not enough space.When I download any other app it installs the app immediately. I don't understand it.",4,0,,2020-04-06 08:52:16,,,newest,cc.forestapp +mars9390,https://lh3.googleusercontent.com/a-/AOh14Gh053M8QvQ_Lj0tLVzwTqRq0qzyaetRoLrUB4xPKA,"I wish there was an overnight option. I would also like if there was something to grow on a larger scale. Like wonders of the world from sleepy town. Except it would be geared towards nature. Like growing the Savannah or a swamp or a rainforest. I think it gets old too quickly. ""Okay I grew four trees these past two hours""...again. I think it could be bigger and better. Give me some themes, Give me a world to build.",4,0,4.15.0,2020-04-06 03:28:35,,,newest,cc.forestapp +Lay Pyay,https://lh3.googleusercontent.com/a-/AOh14GhMuOvVKbeYAK4pkM0zXz9dRzhmdi8ecAot0N6F1g,App is so cute <3,4,0,4.15.0,2020-04-04 17:44:41,,,newest,cc.forestapp +Moumita Sarkar,https://lh3.googleusercontent.com/a-/AOh14GgbmwaSMh_vPxHeJEPQsnLcMjczc5ocHZBxK-HkxA,awesome application,4,0,4.15.0,2020-04-04 17:11:37,,,newest,cc.forestapp +magical melody,https://lh3.googleusercontent.com/-IQDImoaA4Pk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP0NLM1ampmyhuL6bQeyXXqRYoWEg/photo.jpg,Amazing app,4,0,4.15.0,2020-04-04 15:16:32,,,newest,cc.forestapp +Emily Michelle,https://lh3.googleusercontent.com/a-/AOh14GhgJJyXjUecTCnZyFszh61JgCCTnft9FCsWm_H3uQ,So far I am enjoying it,4,0,4.15.0,2020-04-04 15:00:14,,,newest,cc.forestapp +Ganesh Bandaru,https://lh3.googleusercontent.com/-ILC58Waw530/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPsKcJUU8ZaCkfeXcBK9Zuz5BdIeg/photo.jpg,Nice,4,0,4.15.0,2020-04-04 04:35:53,,,newest,cc.forestapp +Gabrielle Newbery,https://lh3.googleusercontent.com/a-/AOh14Gh1jC1g5yChRVSgDNrPI31sdMM6UL6x9TTdQEEhgw,"Love this app so much!! It's helped me so much over Th years to get University work and school work down, but I do wish that trees didn't cost as much :(",4,0,4.15.0,2020-04-04 02:54:40,,,newest,cc.forestapp +Eduardo Herrera,https://lh3.googleusercontent.com/a-/AOh14GhozoFHF1yxMwegqlc893insDQHfLn7itTXUA5XyA,Me gusta Es para quitar el vicio,4,0,4.15.0,2020-04-03 20:02:48,,,newest,cc.forestapp +Ramesh Dabas,https://lh3.googleusercontent.com/-Ul6aIUlagng/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM0_7QK1MGfIYEL9g-Tle-6N42elw/photo.jpg,Nice app but pls include better sounds,4,0,4.15.0,2020-04-03 19:01:30,,,newest,cc.forestapp +scarlette cinderella,https://lh3.googleusercontent.com/a-/AOh14Gg-Tj7DqDZlJJGJQIMT0a_fifz5ssZN3e8vKii8,Awesome 👍,4,0,,2020-04-03 16:45:21,,,newest,cc.forestapp +Blergh McBlergh,https://lh3.googleusercontent.com/-XX7YEF_AJNY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNCNIEbFPv1t1SXGGvepq8gOwyaTQ/photo.jpg,"Very good app for focus, has helped me on more than one occasion. I will say though, the audio it plays, if you choose to play it, sometimes glitches out on my Galaxy S9. It will sometimes just shut off and refuse to play even when my volume is on and the sound option is on. Otherwise though, its a very good focus app, great for people like me who get easily distracted by their phones.",4,0,4.13.0,2020-04-03 15:11:43,,,newest,cc.forestapp +Vivek Ramawat,https://lh3.googleusercontent.com/a-/AOh14GhLzogNug6YOQrXx5SJriEMleF95EUV-kEQIUxn3g,Amazing app for students😲😲😲,4,0,,2020-04-03 09:15:23,,,newest,cc.forestapp +Дмитрий Савельев,https://lh3.googleusercontent.com/-EzS2-WVQU_c/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPxaD0L9qvKikEfl4jqznHwTobF5w/photo.jpg,"Nothing is ideal, but this app helped me to write a song and make my own project. It's funny, that same time I grow a beautiful garden. Thanks)",4,0,4.14.3,2020-04-03 08:10:24,,,newest,cc.forestapp +Maya Kensinger,https://lh3.googleusercontent.com/a-/AOh14Ghlf9-ZfKQG4m_CY4qTLBgCG_ml7xddRcVIREkuWQQ,For when I keep touching my phone!,4,0,4.15.0,2020-04-03 04:34:55,,,newest,cc.forestapp +Pierre-Elie balsan,https://lh3.googleusercontent.com/a-/AOh14Gjdvz1s9-v86p2kH88vjOZKYnJ1LJWvBaoe-PVA,Great app,4,0,4.15.0,2020-04-03 01:29:36,,,newest,cc.forestapp +Raveena Deshmukh,https://lh3.googleusercontent.com/a-/AOh14GjRZLOnUp6u_Lu6VWvlY0OFLehc0A32iUStM5TVVg,I love this app a lot but it keeps closing everytime I try to use it after a couple of inactive days. It have to keep uninstalling and installing it. Please fix this problem soon!! I really enjoy this app!,4,0,4.15.0,2020-04-03 00:41:19,,,newest,cc.forestapp +Tyler Jessee,https://lh3.googleusercontent.com/-HOB6KzvRpPE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNVjqhIRy6z6NB12pOWgpUIu1ngIw/photo.jpg,Forest is a gamification of the pomodoro technique. It's more helpful than other pomodoro-type apps. The vibration notification is too long and loud. Otherwise an excellent app.,4,0,4.15.0,2020-04-02 19:29:44,,,newest,cc.forestapp +nimmi ulvishewa,https://lh3.googleusercontent.com/-SAMbZ_F6Tik/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPD1TPtXfhuXZbS8gKqBJqHloaFiA/photo.jpg,Good app.Useful for studies.Well done guys.Buddha also taught to love the nature.As buddhist Ial appreciate this,4,0,4.15.0,2020-04-02 15:28:24,,,newest,cc.forestapp +Jan Bouček,https://lh3.googleusercontent.com/a-/AOh14GjMu4hTAv1ga-Wpe40bb_LkszspE02Got3Guk6x7Q,"The app idea is great, but the actual app is kinda slow and a bit confusing to get around. The concept is very simple, yet the user interface is way too complex and has many features that I bet nobody really uses. Less buttons, more trees.",4,1,4.15.0,2020-04-02 14:21:08,,,newest,cc.forestapp +GISELLE MARITZ,https://lh3.googleusercontent.com/a-/AOh14Gh8iCFFFBIfEav3ujaIZwLG0Wiq5P1qkckpxQNzeQ,I love this app it really helps me stay focused ...,4,0,4.15.0,2020-04-02 12:51:42,,,newest,cc.forestapp +Parnian Zia,https://lh3.googleusercontent.com/-nx5kbAQPonU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOavn2DSceJw5_w5llmIbDzTzoZ5g/photo.jpg,Good,4,0,4.15.0,2020-04-02 06:24:40,,,newest,cc.forestapp +Archana Sreejith,https://lh3.googleusercontent.com/a-/AOh14GhVVqQFe9tZDArxUs1L_ZywFY2PQ8cMe_AE0lWxyg,I love this app. It gives me purpose to keep on focusing. One suggestion: can we have full screen/ zoomed view of the forest??,4,0,,2020-04-02 02:01:35,,,newest,cc.forestapp +Buţu Eduard Pavel,https://lh3.googleusercontent.com/-u4lvLJvRynU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPiYNzilul3nuZdAGRRlFUwz6OSjw/photo.jpg,This app is really usefull but i didn't figure so far how to set the app to wiyher my trees whenever i exit it/ use other apps while planting. I saw a set of instructions but nine were helpful for the Samsung device i posses. I need to say i really except an answer that can help me solve my problem,4,0,4.15.0,2020-04-02 00:03:24,,,newest,cc.forestapp +Tee,https://lh3.googleusercontent.com/a-/AOh14Gjgtd3D7W2IYVdh3mRYoxPe-_cNnWuBLBTRnayS5A,Upgrades are really hard to afford,4,0,4.14.1,2020-04-01 23:47:30,,,newest,cc.forestapp +Simone Vincent,https://lh3.googleusercontent.com/-KhyLRUh6fCc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMJ-4ryWjyr87sgbAtqK0ZJgW-Xzw/photo.jpg,Fun way to keep away from your phone!,4,0,4.15.0,2020-04-01 23:12:48,,,newest,cc.forestapp +Brothers & Co,https://lh3.googleusercontent.com/a-/AOh14Gim-aG09eUK7Q4c4giqUZsxZyt2OLyIyT6RclT9,Very good app to focus,4,0,4.14.3,2020-04-01 21:09:28,,,newest,cc.forestapp +sony priya valluru,https://lh3.googleusercontent.com/-ThVbyFBzlKQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPSGYluPxgpsesNkCbEpZ61AtqNTQ/photo.jpg,Useful,4,0,4.15.0,2020-04-01 16:17:00,,,newest,cc.forestapp +sai nishitha,https://lh3.googleusercontent.com/-VrMsCjZEJwY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP8wpHEoj16SjBTyHxHDKCUXdSRCQ/photo.jpg,💖,4,0,4.15.0,2020-04-01 15:50:57,,,newest,cc.forestapp +Ayoelii _,https://lh3.googleusercontent.com/a-/AOh14GhIuK5Fvq4Dmcatqbclwi3K0yQxkV2xxZt9BaIWtDY,I love this,4,0,4.14.2,2020-04-01 13:27:03,,,newest,cc.forestapp +Koo Jia Wei,https://lh3.googleusercontent.com/a-/AOh14GiHw3M18Dymn8sJUrauHncmfmTO58sFK7ebqqR5nA,希望可以开放一个正向计时的功能就好了,4,0,4.15.0,2020-04-01 13:16:38,,,newest,cc.forestapp +Roberto Hinojosa,https://lh3.googleusercontent.com/a-/AOh14GibOjowfL1DC9pBMYILHLcNiv386kpIhwNiBx3EZw,"It's a good app, but has some errors, if a close the app, a can use every app of my phone for example, it will be more fun if one can interactore with the forest play with it or change the form idk.",4,0,4.15.0,2020-03-31 20:19:54,,,newest,cc.forestapp +zoey x,https://lh3.googleusercontent.com/a-/AOh14Gjf86z1H0xR1Mw2zyHr8XJahWEDnyx5gVuyANIrXA,"Very good app the only thing is that the minimum time is ten minutes and a lot of times I want to concentrate for five minutes. Otherwise, really cute and it works correctly.",4,0,4.15.0,2020-03-30 17:21:07,,,newest,cc.forestapp +sibling siglos,https://lh3.googleusercontent.com/-Gq7V2yNY3rc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMQh2Bz24J7P6y5zTiFJxm_EQz2gg/photo.jpg,Good,4,0,4.15.0,2020-03-30 13:11:54,,,newest,cc.forestapp +Jojo whateva,https://lh3.googleusercontent.com/-ff15PevWTLU/AAAAAAAAAAI/AAAAAAAAABI/AAKWJJPOOJT9_5ACuoLsMetu06bO4S3cvA/photo.jpg,Really good.....i cannot believe my eyes ...my eyes😏😂,4,0,,2020-03-30 13:10:42,,,newest,cc.forestapp +yash parkhunda,https://lh3.googleusercontent.com/a-/AOh14GiE_WUnqhisz6gt0V7N6DN4A5j4GcvXALnbU2NdAA,i am using pro version and its pretty well organised applicatiom among its competitors. but my suggestion is that please make a significant difference in tree for varioua time period. for example most of tree looks same at evry time period,4,0,4.15.0,2020-03-30 10:13:24,,,newest,cc.forestapp +Radha krishna,https://lh3.googleusercontent.com/a-/AOh14GjDrK7xnowMnXqOlFa-Dg7HzNPOsgHN_0l3K5wz-A,Very useful app helps you stay focused 🙂🙂👍,4,0,4.15.0,2020-03-30 10:00:37,,,newest,cc.forestapp +Marineth Gonzales,https://lh3.googleusercontent.com/a-/AOh14GhysICJrXO1X4mUUTBUrTbn12WtcHsrKejsquRt0w,I think its cute.,4,0,,2020-03-30 09:02:46,,,newest,cc.forestapp +José B. Alarcón,https://lh3.googleusercontent.com/a-/AOh14Gj6gSs5vBpUlDnaysDBaQsEj1kDqU4FhYgMdd-y,Muy buena app. Estoy apunto de comprar la versión plus de lo buena qué es.,4,0,4.15.0,2020-03-30 01:45:13,,,newest,cc.forestapp +Fiona Moloa,https://lh3.googleusercontent.com/-QZBEG8hBPHU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNLp2sr-rytabkR0-1SpTF0LjMj4g/photo.jpg,Noice,4,0,4.15.0,2020-03-29 22:49:30,,,newest,cc.forestapp +Lauryn Walker,https://lh3.googleusercontent.com/a-/AOh14GiUW76jKhr4V3k6yQ-kP92uUdCyUQ9fAihh-QaMqQ,Reall well,4,0,4.15.0,2020-03-29 20:24:28,,,newest,cc.forestapp +Scarlett Cross,https://lh3.googleusercontent.com/a-/AOh14Gjvq0e1XuXAwklhPM2oN9ena0cvdCLyYoKpRZrv,I love the white noise feature. It helps me stay focused on the task at hand.,4,0,4.15.0,2020-03-29 19:31:20,,,newest,cc.forestapp +Nicolas Henderson,https://lh3.googleusercontent.com/a-/AOh14GhWXWv4W07kocBm5WI-oo3HdzoxiYnd7_yNlvKgOg,"I love the app! It's a great way to stay focused, especially with all the quarantining going on. However, I have one issue with this app: the ambient noises you can play don't loop properly, and become glitchy if you let them play for too long.",4,0,4.15.0,2020-03-29 19:00:06,,,newest,cc.forestapp +You Never Walk Alone A.R.M.Y Army taetae95,https://lh3.googleusercontent.com/a-/AOh14GgAQufzObJ6a9wbVOOHOi9xDnCnX2clrJXg3q_uGw,This app is so good,4,0,4.15.0,2020-03-29 11:21:28,,,newest,cc.forestapp +Bushara Tazmiya,https://lh3.googleusercontent.com/-l3QLp0OY64k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPQNyFz_PSBI4ZHGbR-bw7j_MgMIw/photo.jpg,Fantastic,4,0,4.15.0,2020-03-29 09:01:07,,,newest,cc.forestapp +Mahdia Rahman,https://lh3.googleusercontent.com/a-/AOh14GiolOjeXKzhiJH6Xmj6xtu5i97DTPQpThZO70xj,Great app to be focused,4,0,4.15.0,2020-03-29 08:00:15,,,newest,cc.forestapp +Sweety Nadar,https://lh3.googleusercontent.com/-fRVIFacvOOU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMwsPLws1urdhcoWiU2ckB5ykmQDA/photo.jpg,nice,4,0,4.15.0,2020-03-29 06:31:59,,,newest,cc.forestapp +LunarPix Randomizer,https://lh3.googleusercontent.com/a-/AOh14GhfK_Z_NEclmLx7sDAyHLtGPW3jrp9xtkI4ucZt,"I love the app so I decided to install it again to keep up with school work, it works amazing but my screen is very dark, my phone brightness is all the way up but the app isnt bright but instead very dark. This has never happened before. How do I fix this?",4,0,4.15.0,2020-03-28 13:13:22,,,newest,cc.forestapp +Hayley Collins,https://lh3.googleusercontent.com/-o9VB_XnAEEo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMj6jdFwYePJEB7Y0jsSn9VUMc6bw/photo.jpg,The app keeps crashing whenever i don't use the app for a few days. I have to uninstall and then install again for it to work normally.,4,0,4.12.2,2020-03-28 11:39:44,,,newest,cc.forestapp +Afshan Allauddin,https://lh3.googleusercontent.com/-sbbHk8QeJdw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJODMl16csjWZV6VQ0Dzyl66l1u6FQ/photo.jpg,My mother was saying your maximum time limit was two hours with the phone.but I always did more. This app allowed me to stay focused on something else really recommend it.,4,0,4.15.0,2020-03-28 10:05:49,,,newest,cc.forestapp +Cody Pallin,https://lh3.googleusercontent.com/a-/AOh14GiBIkHdE_D06_lldmPaLQ1WKf7szDua06t3w_WiFg,"A beautiful app but.. I would love an option where you dont have to set a time, you just put it on and watch the trees grow as you work and come back to your phone an hour or two hours, whenever youre done! I also found that trees die if I dont come back fast enough after my timer expires? Like if I set my timer for 1 hour and I come back in 2 Ill find the tree died, thats weird, is that a bug on my end? Beautiful app guys, I love it but those things above would have me using it more!",4,111,4.15.0,2020-03-28 03:26:17,,,newest,cc.forestapp +hlya h,https://lh3.googleusercontent.com/a-/AOh14GjMvv5R5C31IQmSDblMEU_DEihjLSGzouimADcz,"I like this app and i use it everyday for studying and reaching the amount of time i wanna stay focused on my works that need to be done, everything is great but i really wish there were an option for us to choose the apps that we need during doing our works and tasks,i've study apps and websites i need to use but i can't because of this limit,therefore i won't plant trees, i wish you could give us options about the apps we wanna use and the ones we don't.It's rly a problem. please fix this! Tnx",4,6,4.15.0,2020-03-27 17:36:37,,,newest,cc.forestapp +Toby Rickard,https://lh3.googleusercontent.com/-QAZVqMAn2LM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPD-tCXqXtNcddWiEdl8gdDfynB5Q/photo.jpg,Decent mate,4,0,4.14.3,2020-03-27 15:27:05,,,newest,cc.forestapp +Habib Simon,https://lh3.googleusercontent.com/-HmsvX2xCUTw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP7oSwGAy1esdAn8OMrgDL_mqZD8Q/photo.jpg,Good apps but can be add more features,4,0,4.14.3,2020-03-27 14:30:01,,,newest,cc.forestapp +Leiyl m,https://lh3.googleusercontent.com/-5dl9lWRUYaw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO4zMNc_FMMLrtgGpHlc93Ehllttw/photo.jpg,This was a very useful app to make me stop using my gadgets but right now i tried to download it but i can't i think its because my tablet is not android 7 and up can you please support those gadgets if this is the problem? I really want to use it again :),4,0,,2020-03-27 13:48:06,,,newest,cc.forestapp +Ahmed Youssuf,https://lh3.googleusercontent.com/-thwHsbLYIck/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMXN82EBoC3UlBfIjivWIDtQuGO7Q/photo.jpg,Amazing,4,0,4.15.0,2020-03-27 10:25:17,,,newest,cc.forestapp +TheBd brad,https://lh3.googleusercontent.com/a-/AOh14GhKYwOS4L53ReW-a1otRcv-04ZHryPcb78WBEv2,helpfull.,4,0,4.15.0,2020-03-27 08:57:57,,,newest,cc.forestapp +Diksha Patil,https://lh3.googleusercontent.com/a-/AOh14GgJlw50whqQk05FA6YNSw5eOBOLs8PIwr2SP2Q7,This app is so amazing!!!!,4,0,4.15.0,2020-03-27 07:32:38,,,newest,cc.forestapp +Arman Ehsani,https://lh3.googleusercontent.com/-nZ6pZQAcskA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP4lHOsOjeAOAgTT2Pbx65rbu0s3Q/photo.jpg,it will helo you to stay focused,4,0,4.15.0,2020-03-27 07:21:08,,,newest,cc.forestapp +senal boteju,https://lh3.googleusercontent.com/a-/AOh14Ggn7-6CVPb-puMSKwjptas8Qy5W0uqLoicJP9c5Zw,It really helps me for studying and keeps me in focus. I also likes to grow many trees in my forest so I study by keeping the timer on and at the end I have studied than I thought and many beautiful trees are too grown.,4,0,4.15.0,2020-03-27 06:21:32,,,newest,cc.forestapp +Esmond Low,https://lh3.googleusercontent.com/-wLYeQEFSGxw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNZBGII-4ISHGPASiwCfLL_6qshyg/photo.jpg,So far it is good. But however i hate it when it still lags,4,0,4.15.0,2020-03-27 05:16:57,,,newest,cc.forestapp +Thea Natvig,https://lh3.googleusercontent.com/a-/AOh14GgkuyF8iqgGUqdooOn1_1z5UTukgP4n7ddJ-EyxxQ,"I love this app so much, I've had it for almost a week and I've only found one bad thing about it. It's absolutely adorable and it's helped me stay off my phone and make it fun to do so. The problem I've had is that when I get video chat requests from Instagram my trees die but I fixed it by muting video chat requests. Overall it's super fun :)",4,50,4.15.0,2020-03-27 02:57:33,,,newest,cc.forestapp +baby chetan,https://lh3.googleusercontent.com/-mOiPIEROfRY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOxUyn_tJj_dkMMKMFr2xQtDqnSUA/photo.jpg,its nice to when u r responsible for ur mistake (off the track ur tree breaks ) gives guilt of wasting time on phone,4,0,4.15.0,2020-03-27 00:41:34,,,newest,cc.forestapp +Ofal rabbani,https://lh3.googleusercontent.com/a-/AOh14GhykpaJHc4XrYfl4wHyiqVzhRI_xh3nxosfdetO6g,A great way to keep myself focused. I enjoy the different tree options and seeing the forests i grow every day. Good way to measure my producticity levels too.,4,0,4.15.0,2020-03-27 00:35:08,,,newest,cc.forestapp +Diana Isabel Ramirez Zavala,https://lh3.googleusercontent.com/a-/AOh14GjBm0-q9Af4ap6F8hBNdZeXw86LVFsA8WEwMLOogg,Good,4,0,4.15.0,2020-03-26 22:52:27,,,newest,cc.forestapp +Abhijith Uthaman,https://lh3.googleusercontent.com/a-/AOh14GiOzQaeM0wUPME-pkb2Dllb1r7kRYKPqy3kU3XXbw,"The app is good.. But we can overide this by changing the system time manually to future.. Ideally after turning on the time the app shouldn't hv allowed to change the screen, even to home screen or settings screen.. Then this could have been perfect. But android system may not allow to do so..",4,2,4.15.0,2020-03-26 15:26:51,,,newest,cc.forestapp +Zoe,https://lh3.googleusercontent.com/a-/AOh14GiDhgog-JvxbivCS2ZDmSV9G3m_y7EBzeq_A_yAiA,It helps me stay focused. Wish you could allow certain apps that you need to use,4,0,4.15.0,2020-03-26 15:03:03,,,newest,cc.forestapp +Emanuel,https://lh3.googleusercontent.com/a-/AOh14GjMN2FvR0ZlJsPaxnDLxq14t_cUQBKhgu68_lFypA,"I really love the app! But I have one suggestion though, I hope you make the trees animated so users can have a better experience and enjoy their forest more! Nevertheless, this app is 💣",4,0,4.14.3,2020-03-26 14:38:19,,,newest,cc.forestapp +Bora Kara,https://lh3.googleusercontent.com/-umZevnonnFM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOeb0YpRuGDKeLRy-HZoL1KjF8b_Q/photo.jpg,perfect,4,0,4.15.0,2020-03-26 13:04:11,,,newest,cc.forestapp +Guy Montag,https://lh3.googleusercontent.com/-_ChhuDFQ6-8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOqDdI8Q-uNLI3h_5tYqLriCiQQow/photo.jpg,"After the latest update, the forest has been removed. Coin count and tree purchase history is up-to-date, but the entire forest is gone. Synchronization does not fix the issue. I did not reinstall app as per the in-app warning not to. What the hell? Update: after two weeks issue was fixed",4,4,4.15.0,2020-03-26 12:23:58,,,newest,cc.forestapp +Stephen Jones,https://lh3.googleusercontent.com/a-/AOh14GhwJVJME8IG0P37ZDFIXIDWe0ZR46cPB8h3C-Cb,Good app,4,0,,2020-03-26 11:34:48,,,newest,cc.forestapp +mowlanica billa,https://lh3.googleusercontent.com/-OZ5ZeTMp1og/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM7ex0nIAgL5QTJrii7TmHGXTfiiQ/photo.jpg,I love the app so much...It has improved my productivity but recently it has stopped opening..I have tried uninstalling and reinstalling the app but still it isn't working...Please try to resolve the issue at the earliest.,4,0,4.7.4,2020-03-26 10:41:15,,,newest,cc.forestapp +Abhinav Nain,https://lh3.googleusercontent.com/a-/AOh14Gj5m2i4N3sd_vwk-4mErRCwWVgqmWF_m7oGJbfWBQ,The statistics section needs some work,4,0,4.15.0,2020-03-26 10:35:06,,,newest,cc.forestapp +Pavitra Ravi,https://lh3.googleusercontent.com/a-/AOh14GjR9QLxVyrUFZ8cJKexQI0VMWkxB-JLDV84eYxcWA,This is a great app...helps me a lot...but I have 2 problems: 1.the app doesn't give notifications on time when the time is up.....it used to give proper notifications before...but for the past 2 weeks it doesn't sound on time. 2. another problem is that I'm not getting the coins I earned ! Sometimes when the notification doesn't come (as described above) I don't get any coins and the timer resets itself without awarding me my coins. I request you to fix these 2 problems as soon as possible !,4,0,4.13.1,2020-03-26 08:25:50,,,newest,cc.forestapp +martha kwon,https://lh3.googleusercontent.com/-5NTPxd0Yg3o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP0Km0t8gTovxU-m_Od6oh0JNFIdA/photo.jpg,"It's relaxing, makes me focused and increased my productivity so well. I just wish that the trees won't cost so much coins. Also, it would be so helpful if the whitelist is also available for free version users, maybe by varying the number of apps allowed in the whitelist to make it still worth buying the premium version. Otherwise it's awesome, thank you for this app!",4,0,,2020-03-26 06:56:50,,,newest,cc.forestapp +Priyanka Choudhary,https://lh3.googleusercontent.com/-T5tCd7SiivA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNBMWp-XLn4fa7xUIFJchzXfFrJOQ/photo.jpg,Good,4,0,4.14.3,2020-03-26 05:56:14,,,newest,cc.forestapp +Helen Wilson,https://lh3.googleusercontent.com/a-/AOh14GjXyqIFXe3bZ1DSfoXN5e2LQAyf2oZd4tab0K82NA,"Easy to use, effective and fun. Can't afford the premium though",4,0,4.14.3,2020-03-26 05:27:22,,,newest,cc.forestapp +Sonia Ahmed,https://lh3.googleusercontent.com/a-/AOh14Gi7IXXkFGYDMQlQeRg-zZgeB5SFREofn-gOvXrG,Love it 🎄,4,0,4.14.3,2020-03-25 17:36:50,,,newest,cc.forestapp +Mr Green,https://lh3.googleusercontent.com/a-/AOh14GgFI9EUguS7Zy2oUvLA9sMAy_l6Oox2HWlb8_gGbQ,Best Pomodoro app. There's only two things that I'd wish they included. 1.) I wish they allowed portrait mode so I can have my phone propped up sideways. 2.) Could you guys please allow this app to take up the WHOLE screen so I don't get distracted by notification icons or the time?,4,0,4.14.3,2020-03-25 16:28:47,,,newest,cc.forestapp +Pengguna Media,https://lh3.googleusercontent.com/a-/AOh14GicUx6JPg4sI_c8F4_UamqTiQ-VlpGSkDuy51Gn,Good,4,0,4.15.0,2020-03-25 14:04:06,,,newest,cc.forestapp +Farid Balouch,https://lh3.googleusercontent.com/-Z1Ita6YmUCY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMsIKseEA781FJcjt8Q4mxjDg62mw/photo.jpg,4 zzZ z z zZ Z,4,0,4.15.0,2020-03-25 11:29:03,,,newest,cc.forestapp +Rajesh Patil,https://lh3.googleusercontent.com/a-/AOh14Gi-jkByCJZeGeXKImJ1Df2raceM1ivHm0-WNtQ-bA,😗😛😛,4,0,4.14.3,2020-03-25 10:37:50,,,newest,cc.forestapp +Shiv Narayan,https://lh3.googleusercontent.com/-78KbvFls8mQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOIViDSxONITW8kNPF0IYhr1eXK6A/photo.jpg,Great experience,4,0,,2020-03-25 10:13:21,,,newest,cc.forestapp +S M,https://lh3.googleusercontent.com/a-/AOh14GikCfjkSidZRLAHruZoSAVNaeIsEiHaKwGU7UyX,"the app is good but in the over view section , even though i have focused for 45 minutes or some hour straight , it always show the data as 2 different phases. example-》45minutes=21minute then 24 minute.",4,0,4.14.3,2020-03-25 03:02:00,,,newest,cc.forestapp +english businessman,https://lh3.googleusercontent.com/a-/AOh14GhJlgTT8z3oOtb4oBvwReo2F-zvymiT-rvBz9Xs,"The app concept is so great.It drives people to work on.but there is an issue when i try to remove withered trees.I click on watch ad to remove,then it opens an ad but suddenly disappears the ad and it doesn't remove my wethered trees.",4,0,4.14.3,2020-03-24 18:08:03,,,newest,cc.forestapp +Ala Almumin,https://lh3.googleusercontent.com/a-/AOh14GjGJZiRqV34NsiSa3E_cGtgEmGGglNME_MsUwdw8g,"Great idea, but missing something and feels incomplete.",4,0,,2020-03-24 17:17:37,,,newest,cc.forestapp +⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻,https://lh3.googleusercontent.com/a-/AOh14Gi7x_6eSInA9nWF-4_IRtkryxj3TuyZ9tDvxydRYw,"Really helpful app, but there's one problem. You can leave the app by clicking the home button and your tree keeps growing while you do other stuff on your phone, which means it doesn't really prevent you from leaving the app. Hope this is fixed because I really like this!",4,0,4.14.3,2020-03-24 12:00:19,,,newest,cc.forestapp +Glenna Chin,https://lh3.googleusercontent.com/a-/AOh14Gj65dzJ-EoSYzjROPtm2R5T-pZ47rRiWDhYnaiJQg,This app is amazing to help me focus and study and do assignments. I have brought the pro version but it wouldn't allow me to sync the trees I have planted on my laptop to my phone. It would be amazing if they could fix it!,4,0,4.14.3,2020-03-24 01:59:30,,,newest,cc.forestapp +Laissa Da Veiga Lustosa,https://lh3.googleusercontent.com/a-/AOh14GhN2-g27vTAQss3lueGwTm-KwGz9EpzvA111jOAMI8,Helps me to stay focused,4,0,4.14.3,2020-03-24 00:27:08,,,newest,cc.forestapp +JING JING,https://lh3.googleusercontent.com/-tE-JE8zlZSY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOIBWBfGfHvw0vfXs6AlZHjua9jmQ/photo.jpg,good design. hope the plant real trees is a true story!,4,2,4.14.3,2020-03-23 23:41:24,,,newest,cc.forestapp +Brenna Rose,https://lh3.googleusercontent.com/a-/AOh14Giz7eSKi1qts-oVVYspcrBfeyWggCSfjglfcwxQQw,"Good at keeping me focused,",4,0,4.14.3,2020-03-23 21:11:40,,,newest,cc.forestapp +Yash Khelkar,https://lh3.googleusercontent.com/a-/AOh14GjZ5zglntb1SrGUmfvbupyQCZsSoSaR-qTwaEP9dPs,Good,4,0,4.14.3,2020-03-23 17:13:13,,,newest,cc.forestapp +Hayley H,https://lh3.googleusercontent.com/-xppjMENiWxM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPvmyLVNI2cJ-UhIrrIlz0ZA772yA/photo.jpg,Cute,4,0,4.14.3,2020-03-23 15:46:53,,,newest,cc.forestapp +Liz Dahlström,https://lh3.googleusercontent.com/-1sC-WkuiZxE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOxppv4C5Zv5jwE0wTFTr8BAZ0vRA/photo.jpg,"This app is cute and a great option to just setting a timer when working/studying. However, several times I have gotten a wilted tree just because some other app sent me notifications when I myself did not touch my phone. :(",4,0,4.14.3,2020-03-23 14:05:21,,,newest,cc.forestapp +AS99 gaming,https://lh3.googleusercontent.com/a-/AOh14GhuavqsxJyRe3TSMn3CwtrXZ1fvpPtBShekIcffVQ,Amazing I love how it has a game element to it. When I use it to keep me focused and of my phone it is a real help and I get all my school work done on time! I can also get excited when I have enough coins to buy a new plant!! I am saving up for the dog one. If anyone is in need of something to get them of their phone so they can concentrate on school I'd reccomend this app!!😊😊😁 from Amber,5,70,4.15.0,2020-03-30 08:24:34,,,most_relevant,cc.forestapp +Marissa King,https://lh3.googleusercontent.com/-iu7VCvYzVG4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPflNbg135Z6KJKJJS6DPKtxmK7bA/photo.jpg,"Overall, it's pretty fantastic. Planting flowers and trees - and not wanting them to die - is good motivation to Accomplish Things without the phone. Sometimes there's an issue with notifications cancelling the timer, but that doesn't happen as often anymore. Looking forward to seeing what new plants show up in the app next! And the customer support team are great about replying if you have issues transitioning to a new phone.",5,41,4.15.0,2020-03-27 00:44:24,,,most_relevant,cc.forestapp +CL Leung,https://lh3.googleusercontent.com/a-/AOh14GgN_l_Yh0mtD9mZSILS3FjdOebOOM1PYpoNtuPiIQ,"Very good app! It is really soothing and motivating to see trees growing in my forest, and there is a suprising variety of plants. The free version is already awesome, but the cheap premium version is even better. Planting real trees sound magnificent and the white list function is very important to me. Suprisingly, no disruptive ads are found in both versions. Definitely recommend it!",5,43,4.15.0,2020-03-30 14:51:38,,,most_relevant,cc.forestapp +Sonu Puniya,https://lh3.googleusercontent.com/a-/AOh14GjIB_DQVVvjJNnx-v9jzqyD-cWg5_DvElf0bsE,"It really works!!.. I tried other apps like those that keep the phone locked. But ended up unlocking it more often,as a challenge. This one instead had my phone unlocked but it was nice to see the saplings bloom.. And whenever I peeked a look there was message like ""don't look here"" or ""focus"" as if I was being watched.. So it kept me from using the phone and I was able to concentrate. Really liked the app... Highly recommended.. Would recommend to all. 😁",5,51,4.14.3,2020-03-24 07:05:35,,,most_relevant,cc.forestapp +Rock Living,https://lh3.googleusercontent.com/a-/AOh14GhZoDze6VtsHcmpUjdt3izrUbRM5T504Pj2kHnL,This app is really good because i dont get distacted as much bc i dont want my plant to die so i stay off my phone. It also helps as i want to unlock more plants so i stay on the apo longer (work longer) to earn more coins to get more plant. Would recomend if you find your self on tik tok or social media when you are suppose to be working/doing school. This is really helping out this quartine Thanks!,5,1,4.15.0,2020-03-29 17:17:40,,,most_relevant,cc.forestapp +Sophia Curet,https://lh3.googleusercontent.com/a-/AOh14GjiB76abY9Apwddmb9P82EhrVmD8Q5sF5YIDEmI_g,"This is an amazing app, it has helped me focus so much and even has a real world impact, but only if you use pro version. I completely understand the need for a pro version, without it you wouldn't be able to do the things you do with the app, and I wish it wasn't there, but that's not my call to make. It's an amazing app and I highly recommend",5,13,4.15.0,2020-03-26 16:10:36,,,most_relevant,cc.forestapp +Riona Carrington,https://lh3.googleusercontent.com/-FV3qoHb1RsA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOucbhsULd9qozjMCskzV4njXePTA/photo.jpg,This app is great for staying on task. The interface allows you to leave and access your documents while still allowing you to have your focus timer on. This app is so Awesome!! I genuinely love this app. I hope that more people would download and experience its greatness.,5,0,4.15.0,2020-03-31 21:24:11,,,most_relevant,cc.forestapp +Lorenzo D.,https://lh3.googleusercontent.com/-Tn2bTvi5slQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM3gGrRjLXPsSZ_3B3u8KW4PsSkrQ/photo.jpg,Amazing . It really helps to focus on important tasks rather than wasting time on useless apps . A huge plus ( in my opinion ) is the fact that when you upgrade to PRO you can plant real trees only using coins you've collected in the game .,5,0,4.15.0,2020-04-01 08:51:35,,,most_relevant,cc.forestapp +Ada Macovei,https://lh3.googleusercontent.com/a-/AOh14Ggluh3y_ecl2iT1jCUuaRgIIWC4GipwEIyRFQTYsA,"I really love the app, I use it a lot while studying but it doesn't notify me when the time's up. I installed it twice and I followed the instructions about notification access and stuff but it still doesn't work. I also have the last version of the app so I don't think that's the problem. What can I do? Update: seems to work now! Thanks!",5,58,4.14.3,2020-03-17 17:01:40,"Hi there, please update to our latest version (4.14.3). We have fixed some problems. If the problem still remains, please contact us via our in-app feedback system! Thank you and sorry for the inconvenience. - Forest",2020-03-17 05:44:23,most_relevant,cc.forestapp +Becklyn Joy,https://lh3.googleusercontent.com/a-/AOh14GicVY_bX3cmoazlGXY2PIKACM_qOCxnevHNuRZMlQ,"This app really helps me even if I'm not studying or hanging out with friends! I like that you have too set a time for how long you want to do things, but I wish that if you wanted to leave the end the time you would have a withered tree in your forest. Other then that, I think the app is awesome!",5,0,4.15.0,2020-03-31 17:24:48,,,most_relevant,cc.forestapp +Katy Nicholson,https://lh3.googleusercontent.com/a-/AOh14GiyafhU4O6nuMTGZqYOFeS_SBUfZSgxtIpsAvGO,"This app is so simple yet effective. I've been using it on and off for five years now, and I always seem to come back to it when I really need to focus. There are a couple of hiccups with the app but I've still given it five stars as these don't really take away from how great it is.",5,0,4.15.0,2020-04-04 20:53:54,,,most_relevant,cc.forestapp +Madison Swineford,https://lh3.googleusercontent.com/-PfpRZ-D9D-Y/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMCBDDhPBI6Bz-06ruwc4cNuvXKaw/photo.jpg,I absolutely love this app. It definitely helps me stay on track with my all of my home school home work due the COVID 19. It helps me stay off other apps because I definitely dont want my tree to die. Overall this is my new most important app because of me being such a procrastinator. I surely recommend for people like me who easily get of track a lot.,5,6,4.14.3,2020-03-23 14:20:05,,,most_relevant,cc.forestapp +Sharon P,https://lh3.googleusercontent.com/-i_qb7jNKGtk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMP1Dvo9B25-GlLZYcOiNbBCJtFDA/photo.jpg,"Love it. Great app to get off your phone. Please extend optional time of focus past 3hrs, create more trees and plants in the future, as well as allow users to plant more than 5 real trees. Great app! Just some helpful suggestions from someone who loves it!",5,3,4.14.3,2020-03-18 16:45:14,,,most_relevant,cc.forestapp +compile com,https://lh3.googleusercontent.com/-vtOiNsqLQTk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPTfzWxei8pmSjiT6W2Egf3aUIlDg/photo.jpg,I love this app but the only problem is that I am not able to buy trees at all. When I click on th tree I want to purchase there is a pop up saying that the app crashed Added later : I did that before but it did not work and now I have 2531 seeds and it's kinda nice to look at all the seeds and now I am satisfied with my 3 plants. Thisappissuitableformytabletplaystoresaidthat'swhyit'snotworkingformebutihaveuseditinmydadsphineandworksamazinglyirecommenditforsureiamwritingwithoutspacecozofwordlimi,5,78,4.14.3,2020-03-17 17:39:17,"Hi, +Sorry for any inconvenience caused. Please turn off the automatic update in the Samsung app settings for Forest, and reinstall the latest version of Forest from Google Play. Thank you! - Forest",2020-03-11 15:10:46,most_relevant,cc.forestapp +Sayan Dutta,https://lh3.googleusercontent.com/a-/AOh14GhCPHEzNRrRPwd6YkNy_MqryLe7aWitULIUpymY,"I have been in and out of this app many a times. It was all my fluctuating mind, not the app. The app is super special. I bought the pro version this time and opt to stick to it forever. Best wishes for the developers♥️.",5,0,4.15.0,2020-04-03 06:22:39,,,most_relevant,cc.forestapp +Val D-B,https://lh3.googleusercontent.com/a-/AOh14GjeaLqunaT8DOeNenL4MnYYFQLV2ltLYUmrh6DC,Great app! I joined a group chat and we all work together at the same time! It's a lot more motivating than studying alone. I love the idea that we can help plant real tress too! What an excellent cause! I love the idea of painting a virtual forest too!,5,14,4.14.3,2020-03-18 03:05:49,,,most_relevant,cc.forestapp +C_2783,https://lh3.googleusercontent.com/a-/AOh14GgMHx4s02ypZGIaOkK4hLl371C6BY-cH-H1r2mj,"It is a great app. The only problem i have is the fact that there is no option for an specific time (like for example 36 minutes, etc) that would make this app immensely better",5,0,4.14.3,2020-03-24 22:46:09,,,most_relevant,cc.forestapp +Kayeldoubleyou,https://lh3.googleusercontent.com/a-/AOh14Gjwhtd3hu5kpC7qcDncEbKCu443IS_fWU2L7me0,"This is honestly the best app to help stay focused. You can choose the amount of time you want to study or do homework for, and it honestly works. You feel the need to let the tree grow. I 100% recommend this to anyone who wants to stay focused.",5,0,4.14.3,2020-03-23 10:23:37,,,most_relevant,cc.forestapp +Jay Agrawal,https://lh3.googleusercontent.com/-F4Joa8fHI2U/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPyq5_LEOp5j0KIp0HC1v-UdTaRrg/photo.jpg,Great app for doing work. It will keep you focused and it really works. Just try it if you dont believe. Great work team. You guys created a marvelous app which worth 5/5.,5,0,4.15.0,2020-03-29 16:27:24,,,most_relevant,cc.forestapp +Sharmeen,https://lh3.googleusercontent.com/a-/AOh14GgD1T-xzB7fTBY9y6y5nw_j_JFMs4BGsTYIPRqyWQ,"I love the concept of this app. As a nature lover, I think it's perfect for me. It allows me to remain motivated and focused on my studies, and knowing that one can plant real trees a while after using this app warms my heart! Great work.",5,1,4.14.3,2020-03-16 14:36:15,,,most_relevant,cc.forestapp +Lou Blackwood,https://lh3.googleusercontent.com/a-/AOh14GjLGqHfGwjZUv7oRRNYrp2rLQtqdtT6H_Jt8iMWeQ,Forest is such a great App to help you focus and motivate you to concentrate and stay off your phone! I'm currently saving up to spend my coins for a real tree! :) I love that concept so so much!,5,0,4.14.3,2020-03-20 12:47:45,,,most_relevant,cc.forestapp +Amelia Bonita,https://lh3.googleusercontent.com/-CXU5KR80Seo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOYqyE404NgRX2bKAb60a9Dh14tKQ/photo.jpg,"Perfect app, has really helped me focus on college work or even getting off my phone for a break. Only thing I could ask for would be more options for the sounds/ambiance tab.",5,0,4.15.0,2020-04-01 13:17:09,,,most_relevant,cc.forestapp +Eve Richardson,https://lh3.googleusercontent.com/a-/AOh14Gi96zcyKucDYnblDSBGL7SMTtP7HAKUHmbjqwmbjqc,"Great app for revising and studying, it really helps you to stay focused 😁 growing trees to keep you focused is a lovely concept and I love the sounds you can play in the background",5,0,4.14.3,2020-03-24 09:40:07,,,most_relevant,cc.forestapp +Mrs. Amandeep Kaur,https://lh3.googleusercontent.com/a-/AOh14GiqgahWSUiLnRhokZRf-gA9uwgSb8hFqPWna-V5dA,Very motivation app. It encourages you to grow more and more tree. I was looking for this kind of app from long time. Before I used to skip a day but now I would love to grow at a least a tree in my forest(app). With help of this forest I can study. Thanks,5,0,4.15.0,2020-03-31 04:02:43,,,most_relevant,cc.forestapp +Morgan Beckendorf,https://lh3.googleusercontent.com/a-/AOh14GhC961pwo_yvmrKhBFqNPR_NG1BKW4nrDQL7xC5,This app definitely helps me to be more focused when studying and making sure that you aren't on your phone. I also think it's a great concept to make your own Forest by doing so.,5,0,4.14.3,2020-03-20 16:14:23,,,most_relevant,cc.forestapp +XxMoonlight_ MoonxX,https://lh3.googleusercontent.com/a-/AOh14GioOtlZr6DI0ePZ4QZG7iePZOBVDu5XrG4SsFXW,This is the best app ever!.... it helps me manage my time when im doing my online homework and not get distracted!! I tend to procrastinate a lot of times so i know for a fact this app is the best,5,0,4.15.0,2020-03-29 19:42:25,,,most_relevant,cc.forestapp +Maddie Rader,https://lh3.googleusercontent.com/-NhN_objWSNQ/AAAAAAAAAAI/AAAAAAAAAMQ/AAKWJJMBjUUnnJS_CBk0JQzydRdt4vImfg/photo.jpg,This app is so cool! It really helps me to motivate my self and I love the sounds it does in the background! Highly reccomend!,5,0,4.14.3,2020-03-18 15:51:42,,,most_relevant,cc.forestapp +Peter Goodwin,https://lh3.googleusercontent.com/a-/AOh14Gg3aX4DM6T2Oj1piXS3gf8iI4x8PcFJ2Jp4rneud1M,Love it! Very simple clean interface and satisfying sounds and colors make this app soothing and beneficial to (not) use!,5,0,4.15.0,2020-04-02 04:15:46,,,most_relevant,cc.forestapp +OgNibba,https://lh3.googleusercontent.com/a-/AOh14GgXsFdz1eC8F0mziDQMaFpptfic_tJO6TZsDiIR,"Very good app and it's very calming really helps me learn how to let go, and spend less time on my phone.",5,0,4.14.3,2020-03-19 13:36:58,,,most_relevant,cc.forestapp +Mansi Suryawanshi,https://lh3.googleusercontent.com/a-/AOh14Gh4Erfci2mesIq2TchP_4qFC1Q1iK3l4C8fMbdZ-A,"Great app. Keeps statistics of your day, month and year in a compact form.",5,0,4.14.3,2020-03-24 12:01:45,,,most_relevant,cc.forestapp +Sian Smith,https://lh3.googleusercontent.com/a-/AOh14GgLG_oA2OVOF-vPmtEMZxvePFODIkL5gsmI8-8_,"I found this app to be pretty useful. Whenever I need to get something done, I go onto this app, and plant a tree or bush. I recommended this to a few of my friends, and they're enjoying it too!",5,0,4.14.3,2020-03-22 18:11:39,,,most_relevant,cc.forestapp +Oriana Salazar,https://lh3.googleusercontent.com/a-/AOh14GhcBC8J9SMcFn-D4jHWI9C0TydOyyEhstHtBurZ0Q,"Love this app to stay off my phone while working, it really helps in only using the phone if it's really necessary. It's super motivating to watch your forest grow",5,0,4.14.3,2020-03-17 10:36:04,,,most_relevant,cc.forestapp +Kenyon Prater,https://lh3.googleusercontent.com/-ERgAmG0b-4k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNrkb07ITarwNInLqvJB0c4s-F9Yg/photo.jpg,"Forest is cute, unobtrusive, and has genuinely helped me in the transition from checking my phone to doing work. A neat option is the ability to allow certain apps (eg, Spotify to change music)",5,0,4.14.3,2020-03-21 02:01:12,,,most_relevant,cc.forestapp +Renee Robbins,https://lh3.googleusercontent.com/a-/AOh14Ghmp1MSqJ5usopqwwW0h1dtt5KlTY_1AcBgJUEezw,"I really enjoy this app! It's a fun, satisfying way to keep track of time (and stay off my phone for a while!)",5,0,4.15.0,2020-04-03 21:54:30,,,most_relevant,cc.forestapp +Raresh C.,https://lh3.googleusercontent.com/a-/AOh14GgIRLwoTxKAUoOBeq2xDfF-JmC1HMPyId0iT2-jvQ,Great app! Just having it on your home screen helps you stay focused because you want to use it every time you see it.,5,0,4.14.3,2020-03-18 17:33:00,,,most_relevant,cc.forestapp +Celestine Adelmant,https://lh3.googleusercontent.com/-hfARhT9n05c/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPrvYygP_TfA5_DPqiEDE9l8uUW2w/photo.jpg,"Great app for staying focused, good way to track your time spent working in a more fun and engaging way",5,0,4.15.0,2020-03-30 11:31:09,,,most_relevant,cc.forestapp +Macarony Pizza,https://lh3.googleusercontent.com/a-/AOh14Gh7HYe3Tu63sQYbcSt-GSXxDJeGuaKIeQfXNJnd7g,"I've tried plenty of pomodoro-esque apps and this one is the standout. Planting trees actually keeps me interested in focusing longer without distracting me from my work. I bought the premium upgrade months ago and haven't looked back. My one suggestion would be to work in break times. Typical pomodoro is work 25 mins, break for 5, work again, etc. Maybe have a popup asking if I want a 5 min break every 25 mins, a popup that can easily be ignored if I want to continue working instead.",5,8,4.13.0,2020-01-31 18:42:45,,,most_relevant,cc.forestapp +Mint Coofey,https://lh3.googleusercontent.com/a-/AOh14Gg5ZBn4bd-cC-eP-r44diAS7r8AOkNjhftayqdY,"Love it! Gotten through a bunch of essays with this app. I love it actually let's your phone play music, which I always turn on before starting the timer. I do have one complaint, and it is a small one though- I think there should be breaks during the timer. I've needed to use the restroom a lot during studies, and I feel guilty because I'm wasting time. So I think there should be a 5 minutes break option. Maybe you're only allowed to use it once or twice per tree, depending on the time it took",5,35,4.13.1,2020-02-27 06:12:56,,,most_relevant,cc.forestapp +Abilash S,https://lh3.googleusercontent.com/a-/AOh14GjO0PaKORfP5iwrSW6Z93yDbFjzlLseLP69tJyB,"I have used this app before and it's really awesome, it helps me with giving a challenge for focusing on my work and studies for the time I desire. I enjoy growing trees and creating a forest while studying. This app is the best for focusing , with its whitelist feature I can even listen to music or talk to someone without destroying my tree. I love this app, thank you for this.",5,7,4.14.2,2020-03-11 02:34:28,,,most_relevant,cc.forestapp +Adonay Ganzasabwa,https://lh3.googleusercontent.com/a-/AOh14Giy3ionVl7vDFrIlqCw_oIe3o5mFJ2RVWn0t-LFRA,"Everytime that I finished a session it freezes. I sent you a feedback with the system log. Please try to fix the issue otherwise, it's a great app that keeps you focused but please do it ASAP. UPDATE: I've updated Forest but still the same issue. See Feedback with System Logs Jan 5th, 2020: No issues for the moment Update 1.5: Working fine back to 5 stars",5,13,4.14.2,2020-03-10 08:10:59,"Hi, +Fix for the crashes is available in the Google Play Store (4.13.0). Please update the app as soon as possible to continue your focusing routine. +- Forest",2020-01-26 01:35:17,most_relevant,cc.forestapp +Gabriel Chaheen,https://lh3.googleusercontent.com/a-/AOh14GiGPMR7Rd0dp2aELQWQWcKaZSwVxVzW6K-zjE1KgA,"This works like a Pomodoro style of focusing. But with a little fun thing, very nice.",5,0,4.15.0,2020-04-03 13:03:02,,,most_relevant,cc.forestapp +Emily Teune,https://lh3.googleusercontent.com/a-/AOh14GgWpsaX4SsgERL7PWJ0GI_Y_v2YXC0fbniXi60Z,This is great for studying. It's a fun insensive to turn your phone off! It has really helped with online school in isolation.,5,0,4.15.0,2020-04-02 04:38:29,,,most_relevant,cc.forestapp +*gay screeches in the background*,https://lh3.googleusercontent.com/a-/AOh14GiU-9CDTTC5_NRXl9t8mhTKHhdNpANSnZJ0MQRd,"the app is great and i honestly love it, until recently. now when i want to plant a tree, the app stops, unless i'm connected to the internet. also when i successfully plant a tree while using the app offline, the tree doesn't save and the app stops. please fix this as soon as possible and i will rate this 5 stars!!! edit: wow, after the new update the app doesn't stop, but you can't plant a tree, online nor offline. congrats. edit: it's fixed!!",5,50,4.13.0,2020-01-28 18:28:46,"Hi, +Could you please update Forest to the latest version (4.13.0) and see if it solves the problem? +If you continue to experience issues, please reach us at android.support@forestapp.cc. Thank you! +- Forest",2020-01-28 17:47:18,most_relevant,cc.forestapp +Schi-Lee Smith,https://lh3.googleusercontent.com/a-/AOh14GjdaVfkYaW7FC6PP8isZYy3NjSUo0qccZsSw5a6cS8,"I am very bad at just starting something and staying with it for a decent amount of time, or at least enough to get it done. This really really helps me in that aspect because I can set reminders, I got the fancy version, that will ping at me whenever I want them to to tell me to work on stuff. Also, every time I look at my little baby tree growing, I kno ""okay I just have this much longer and then I can take a break"" and honestly that is helping me. It is very cute, and user-friendly. 10 / 10",5,174,4.13.1,2020-02-24 09:11:26,,,most_relevant,cc.forestapp +Gareth Iguasnia,https://lh3.googleusercontent.com/-e5423mu9378/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPuEdUaMFgwIE0Xti4CUNr8HjXXsw/photo.jpg,Easy to use and works seamlessly. It has helped me stay on track with my studies and even to take breaks timely breaks. The incentives are fun and interesting enough to keep me wanting to plant trees. I particularly enjoy labelling the trees as I can then export the data and see how many hours I have been working on different things. It gives me the freedom to write up my own things in python to analyse that data and plan better for the next week.,5,97,4.13.0,2020-01-21 14:42:15,,,most_relevant,cc.forestapp +Rebecca Collins,https://lh3.googleusercontent.com/a-/AOh14GhdxvaI4aedaU0zht_mY45foLG4Xo50afSrC8UaaYg,"Simple to use, feels like I'm ""doing something"" by planting a tree and setting my phone down. I've gotten my 5-year-old to sit still and watch the plant ""grow"" for over 20 minutes... We like saving enough coins to plant real trees! The new limited edition trees are exciting to watch for and try to earn, but it's nice that you can buy them later too. Pretty art, fun app, AND plants real trees!? I love this app.",5,85,4.13.0,2020-01-31 19:04:34,,,most_relevant,cc.forestapp +Leyla Bozer,https://lh3.googleusercontent.com/a-/AOh14Gi3v1zMhHF0mc39FhYHG7NJ2ZcwrSQNq0cO6wU2jw,"I love Forest! It was the first app in which I paid for the premium version, and it was so worth it! It is very cute, motivational, and easy to use. The only suggestion I have for future updates is for the user to be able to customize plant placement. Thank you Forest developers! Update: I have been using Forest for about 6 months now and still love it. I just want to say how much I appreciate the Forest team listening to feedback and providing amazing customer support. Thank you!",5,144,4.13.0,2020-02-03 20:10:05,,,most_relevant,cc.forestapp +Julia J.,https://lh3.googleusercontent.com/a-/AOh14GgnFTyoMnxwUYQto9MCinmOGJxHRHy8xMugZrdfNmo,"An excellent app for everyone who struggles focusing on anything. Planting trees and preventing them from dying, then having a whole, beautiful forest is motivating. There's a global ranking refreshing each week, so you can compete with other players. You may even plant with your friends if you want. There are multiple tree species, updated quite often which makes the game just more exciting. I found paying for the premium version worth it.",5,77,4.12.3,2020-01-21 07:22:02,,,most_relevant,cc.forestapp +Riannie Bonajos,https://lh3.googleusercontent.com/a-/AOh14Gj7bFjzOE3Eaqo6oRjcNxTSykxOQcVoXR8tSxwDEg,"Helped me stay focused! Usually when I study I always have my phone around and i keep getting distracted by my phone(twitter, yt etc.) i have an upcoming exam this week and I decided to stay focus so I downloaded this app! Its great and it really works! The first time i tried to give up i was so sad to kill a tree so i try to focus! I really recommend this app especially for my fellow students! (also excuse my grammar because english is not my first language :)) )",5,5,4.12.3,2020-01-17 13:08:29,,,most_relevant,cc.forestapp +Lex Rosenberg,https://lh3.googleusercontent.com/a-/AOh14GjVD4_gr89uYpE-1G9zvEXnxLd9fwwWW2eZIT9wRw,"Recommended this by two work friends to help keep focused as we read long sometimes boring documents - works so great! I feel really motivated to keep reading and stay off my phone. Even for things the app doesn't track (like not chatting to co-workers) I feel more guilty/conscious of concentrating when the app is running and growing my tree, so I have cut down on chat with coworkers and stuff too.",5,4,4.13.0,2020-02-04 08:15:04,,,most_relevant,cc.forestapp +Alex Truitt,https://lh3.googleusercontent.com/a-/AOh14GjMzI2pUr_uloizAsirj2VRfey0t9Em89dk-T_oFQ,This app really helps me when working on school at home.(We've been doing a lot of that bc of COVID-19) I really suggest this app! Hint: if you want a free tree from the store order them from least coins to greatest,5,0,4.14.3,2020-03-23 22:29:43,,,most_relevant,cc.forestapp +Jason Walker,https://lh3.googleusercontent.com/-elIJ1FpvNSw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPW6yU7kxtExLGu-OIHXay5dr3c2Q/photo.jpg,"Really nice and relaxing app, I like the relaxing forest noises that play while the tree is growing))",5,0,4.15.0,2020-03-27 16:05:17,,,most_relevant,cc.forestapp +Haley Moriarity,https://lh3.googleusercontent.com/a-/AOh14GjsoTVG8bEXYuOA265YqKy6yEmQ5yZ8vwgtI1QJrA,Super helpful app! I get so invested in making sure my plants don't die and it really helps,5,0,4.15.0,2020-03-27 16:54:17,,,most_relevant,cc.forestapp +Hajar Saif,https://lh3.googleusercontent.com/a-/AOh14GhfCdWv0Sfl5brXCVkB6hKtGDHUH8TiLsUS1xn_Xuo,I love how I can keep track how long I focus and on what. It's also really rewarding to see your forest grow,5,0,4.15.0,2020-03-31 09:26:56,,,most_relevant,cc.forestapp +Sam Romero,https://lh3.googleusercontent.com/a-/AOh14Gh9I_3DAntPT6rRNd90jTBDPhQ0t8ZzjR_Er1dH,"Really helpful for making me stay focused on studying, I think the guilt of killing a plant is very motivational. However there was a weird bug, during finals week I was using this app for hours straight but then it suddenly stopped working. When I click the plant button, nothing happens. I left it alone for awhile and its okay now but I wonder why it happened. I also really like the store and think its very motivational.",5,1,4.12.3,2020-01-20 10:26:46,,,most_relevant,cc.forestapp +Anna Browne Ribeiro,https://lh3.googleusercontent.com/-xJJzSGJ8Zvo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPsNW9JEW4mh-0Vz25XiybEzc3uBw/photo.jpg,"I love this app! It helps me to stay focused on my work or whatever other tasks I've set for myself, and helps me track time on those tasks. I like the whitelist feature so that I can use apps on my phone that are necessary for work while growing a tree. And I love plants! So keeping them alive is a real incentive. Thank you for creating it!",5,8,4.13.0,2020-01-30 18:23:07,,,most_relevant,cc.forestapp +Addison McGuire,https://lh3.googleusercontent.com/-TpS0dy82I7s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM31Kqd-Wa9mkRTYtzwkyglmeFfkQ/photo.jpg,"Love this app!! It helps to keep me focused while studying. You get really invested in planting your trees and seeing them live, which is a good deterrent from checking social media and texts. I enjoy how you can work towards new types of plants and get some variety in your forest. I definitely recommend to anyone looking for a little push with no (real) consequences to stay focused.",5,3,4.12.3,2020-01-15 19:54:00,,,most_relevant,cc.forestapp +Cassidy Warner,https://lh3.googleusercontent.com/-y97Y0MXbVVU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNAHGwKFPqvhkaV3g-swbvAooluuw/photo.jpg,"It's silly to think that something so simple helps me to focus, but so it is! The ritual of planting a tree and then not doing anything else until it's finished growing has been very beneficial for my self-motivated work. And I love looking back on my forest to see a visual representation of my hard work.",5,4,4.13.0,2020-01-29 08:46:38,,,most_relevant,cc.forestapp +beaniiex,https://lh3.googleusercontent.com/a-/AOh14Gg0JFfnLyjiChZqqQm8nWbWMab_-clIAyyDGAtw,This is just great!! I saw my favorite youtuber using this and I was like what the hell is she using that enables you so much facilities like you are bound6to stay focused. I literally searched for the name of this app and I finally found it. I am using it for 1 month now and it's the best..!!! ❤ but sometimes it just don't notifies me when the time is over and sometimes just keeps counting the time even when I m watching YouTube or instagram on my phone.,5,93,4.13.0,2020-02-14 16:40:36,,,most_relevant,cc.forestapp +Linda Gnongui,https://lh3.googleusercontent.com/a-/AOh14Gg272u-3AhHx16RIkuVDgGc-a_gT0jD6rYtNUlt,"Great incentive/nudge to be present during the activity/practice of your choice. A gentle way to reinforce mindful habits. If I know my tree is going to die because of lack of time or focus, I either clear more time if possible, schedule the task for a more appropriate time-slot or take a few deep breaths to center to why I chose to do this or is this something I really want to do in the first place. It's like a little promise to yourself before diving in.",5,6,4.13.0,2020-01-22 14:08:06,,,most_relevant,cc.forestapp +Katie Chiang,https://lh3.googleusercontent.com/a-/AOh14GjDK6HN9lC0cwa30ZZPr8S6DRqQ3eDg78amHc_a,"Cute app that helps me stay focused. It's customizability makes it really great, so I can tell it what apps are and aren't okay for me to use. Like if I'm doing work and I NEED to check my email for something related to what I'm doing, I can take my email app off of the black list Also it's kinda nice to plant a real tree every once and a while the focus rewards. If you're struggling to tame your time on your phone during times you should be focusing, the free version is worth a try.",5,26,4.13.0,2020-01-25 16:21:01,,,most_relevant,cc.forestapp +Lucas Monk,https://lh3.googleusercontent.com/-FhR0bSFpDKU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN8pz6T9XBeu0sQQs0AQdl9RHNv3w/photo.jpg,"This app is wonderful, but I am having problems with the things linking to the network. I have a good internet and have tried restarting the app several times, however I can't seem to connect to the shop for my in game currency and the real forest things. It says unable to connect, I'm just saying this in case, I'll check with support",5,35,4.14.1,2020-03-01 17:16:17,,,most_relevant,cc.forestapp +Emma D,https://lh3.googleusercontent.com/a-/AOh14GiJDL4dWsTgTozmzV05zfAsN-7NbMUjPsugd13M,I love this app. I really struggle to concentrate when I have a pile of papers to mark or some other boring stack of work and Forest helps me to stay off my phone for reasonable stretches of time. Like I really care about my virtual forest and don't want to kill any trees so scrolling insta is just not worth it.,5,3,4.14.2,2020-03-15 18:12:23,,,most_relevant,cc.forestapp +ki pz,https://lh3.googleusercontent.com/-P4LBEU3sly4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP_JTQ3eqqf0686Rq1th3XNQoB5hg/photo.jpg,"This app has been helping me maintain As in all of my classes! I have ADHD so I find it hard to stay focused, but this app has been a lifesaver. I hope to see more achievements added in the future. Thank you forest team for making an app that actually helps people on a daily basis! You guys rock!",5,0,4.13.0,2020-01-22 22:51:34,,,most_relevant,cc.forestapp +Briana Dugger,https://lh3.googleusercontent.com/-zThopgXOD9w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOEWDCW8foPybOIK5TL1l9i5v21HA/photo.jpg,"Thus far, I'm enjoying this app. I feel absolutely motivated in completing a task; and, staying on track. Even, when I feel like getting off track, I'm reminded of the growth that's manifesting between my tree and myself. Thank you from the bottom of my heart for the best app ever. Looking forward to additional features!",5,1,4.13.0,2020-01-28 16:11:18,,,most_relevant,cc.forestapp +Hannah Booth,https://lh3.googleusercontent.com/-B9T1lBXLv30/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNEbjmuETsDDjcLUHGMNhoMadz8LQ/photo.jpg,"Awesome app! Used it before, but downloaded again to help me focus while studying at home during social distancing.",5,0,4.14.3,2020-03-18 15:01:34,,,most_relevant,cc.forestapp +Justin Newton,https://lh3.googleusercontent.com/a-/AOh14Gip0BirNg2xYGkdgDLbNgYPMFsVnJDPsX9Hj1ye8u4,"This app has greatly helped me in creating better study habits and eliminating procrastination (I'm a high school senior for reference). Part of the reason is because, rather than simply completely blocking usage of apps, it allows you to choose to break your streak, forcing you to actually consider the consequences of procrastinating. My only gripe is that I feel like the ability to whitelist apps should be free (although it is only around $3, which isn't bad). I'd recommend it to anyone.",5,0,4.13.0,2020-01-22 01:42:55,,,most_relevant,cc.forestapp +Michelle Allen,https://lh3.googleusercontent.com/-QTip7FdtxJ8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOj3MfMs-aVpkDngRqGGyC5BxD-Sg/photo.jpg,"Simple to use, and surprisingly motivational. Graphics are cute, and though I don't use the music due to hearing loss, there's a good selection. Love the tracking feature, enabling you to SEE your focus-time for the day, week, month, etc.",5,0,4.13.0,2020-01-22 16:27:46,,,most_relevant,cc.forestapp +Hope Willcutts,https://lh3.googleusercontent.com/-knQICAr067g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMrTsKR-qRocAe29PsbR4cr4_s3aQ/photo.jpg,"Got this when I realized I got most distracted from my work by looking at my phone. Really helps me focus when I need to. I didn't want one of those apps that completely locks down your phone in case I actually needed to use it for something important, but I don't want to kill my trees for unimportant stuff. Also I like that they have a variety of trees that you have to work to get. It makes me more motivated to use the app. I hope they add more season-themed trees (snow covered would be cool!)",5,95,4.12.3,2020-01-17 00:42:17,"Hi Forest Friend, +Thank you for your feedback and a great idea for the seasonal trees and scenes.😎 +"" Stay focused with Forest. Let's be more productive."" +We would be happier if you bring more Forest Friends to explore the Adventure in Forest with you and us! - Forest 😊",2020-01-17 08:11:23,most_relevant,cc.forestapp +Caoimhe Roddy,https://lh3.googleusercontent.com/a-/AOh14GgLHvjL6bqWU8Ca-rU5j96evUFsC5OPwP65L_rCkQ,"I really love this app, I love challenging myself as I have a very bad phone habit and will lose hours staring at my phone. Devs, my trees die when an alarm goes off on my phone - super frustrating when I'm just picking it up to turn the alarm off. Maybe that can be an exception?",5,1,4.13.0,2020-01-21 08:02:26,,,most_relevant,cc.forestapp +v mae,https://lh3.googleusercontent.com/a-/AOh14GjtLXBgDL4BSytu1A8VLTohvGNtilN5PaoOnspckw,"it's a wonderful app to help you focus more on your work or studies. you can select a time of how long you want to focus (you can choose from 10m to 2h) while doing that you also have a wide range of options available of all kinds of trees and bushes! the more time you select the more coins you get rewarded and with those coins you can buy new trees or bushes. i have bought the premium version for €1,99 which isn't much at all and because i have it i can personalise the app blacklist!",5,20,4.13.0,2020-01-28 07:27:51,,,most_relevant,cc.forestapp +Jade G,https://lh3.googleusercontent.com/a-/AOh14Gi_G1FECyOmzOaRmmPCRNYed0nvd-RImIV_zIGPxA,It's honestly very useful when studying or working by myself. It keeps me accountable for how much work I get done. Whenever I'm working and I don't like what I'm doing or it's hard or I cant focus or whatever I always try to distract myself from my phone so this is helpful. 10/10. Also the little trees are cute. I like to do a lot of short times so I can build up a forest instead of just one big tree,5,1,4.13.0,2020-02-02 05:36:34,,,most_relevant,cc.forestapp +Bishal Ghosh,https://lh3.googleusercontent.com/a-/AOh14GivZbDQofiPJwnYdX56VgejA26P40Cl0PDU7Z7VPA,This app is too good it is helping me and futher it will to be staying focused at a particular thing for a particular period of time,5,0,4.14.3,2020-03-24 06:48:47,,,most_relevant,cc.forestapp +Aubrey Bhrawardhana,https://lh3.googleusercontent.com/a-/AOh14Gj7i1irjGN4sIhfUyV2moiCsB79Nyi_iDY5nDU2BA,A really cute app! Great for keeping track of your focus.,5,0,4.15.0,2020-03-29 15:00:58,,,most_relevant,cc.forestapp +Hailey Barber,https://lh3.googleusercontent.com/a-/AOh14Gj1vZdHnW93S2vlk2ZOLhdlsStgWZipP1WTNVQs,"I have been using this app for years. I get really hooked on committing to longer focus times just to unlock the full potential of the trees offered (there are different aspects to the tree with different amounts of study time, ie less than 60mins, greater than 60mins, and a special one for 2 hours of focus, plus bushes). As someone with ADHD (and OCD, which may explain my obsession with this app), studying wouldn't be the same without Forest! 🌲",5,2,4.13.0,2020-01-24 15:26:22,,,most_relevant,cc.forestapp +Seth Adams,https://lh3.googleusercontent.com/a-/AOh14GihIaogVTJoEP5NSGAH4X1D42aXVnVwycuZ5aOz4g,"I actually use this app for practicing flute and it helps so much. I have tried using normal timers but i usually end up and just pause it saying ill come back later and never do it but with this i can set a timer and it keeps me off my other phone apps and keeps me seated since i cant really pause the timer. And its also really nice to see my progress throughout the week for practicing with all the trees that ive planted. Overall really nice app, i highly recommend it!!!",5,4,4.13.0,2020-01-28 21:19:37,,,most_relevant,cc.forestapp +Rebecca Shin,https://lh3.googleusercontent.com/a-/AOh14Ggw9nZED5PlILQ1LiGeTwvojfgQgM9UoEmMSd451Ws,I love this app. The pro version helps me stay focused no matter where I go :),5,0,4.14.3,2020-03-22 22:53:45,,,most_relevant,cc.forestapp +Amy Blair,https://lh3.googleusercontent.com/a-/AOh14GitucZeHgkv_WuxIFUpl5XqCiqZDLVNWavQSP_XRA,"This app is literally saving my grades! Just an idea for a different way of using, maybe add an option where you put your phone down and it just plants a randon tree and when you pick your phone back up you can see what tree is planted or how many you got? Its just sometimes i need to focus but i dont know how long for and then i either kill the tree or feel i could have planted for longer with more coins?",5,0,4.12.3,2020-01-15 23:49:48,,,most_relevant,cc.forestapp +Juliana Tuck,https://lh3.googleusercontent.com/-WPVWd4d6z2w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP1eacQyiZAcll1JMPK-pz2zR2sUg/photo.jpg,"Love it! This app has really helped me stay focused on my school work, and I feel really good that my points are going towards planting a real tree. The rate of reward is low enough to make it a challenge, but high enough to make it satisfying. Very cool, especially for a free app.",5,0,4.13.0,2020-01-27 02:17:09,,,most_relevant,cc.forestapp +Aisha Piller,https://lh3.googleusercontent.com/a-/AOh14Gg04VDt6ym0N0vFOoSsob9trnTv3SBclOeqff2_pQ,"I couldn't open the app after I installed it. Reinstalled game, tried again and still doesn't work. Edit: Thank you for fixing the problem I re-downloaded the app and it works perfectly. It's very fun to pass time with this app and I'm also really happy that you can listen to music on this app too while watching the tree(s) grow.",5,3,4.14.1,2020-03-04 04:37:39,"Hi, +We have relayed this issue to our developer team and we are working on it. Sorry for any inconvenience caused. Please update the app as soon as a new version is out as this issue may be fixed there.",2020-02-05 17:50:54,most_relevant,cc.forestapp +Priyanka Gorai,https://lh3.googleusercontent.com/a-/AOh14Gg8tp304GvwlEzVw24kdTbfEHxBNPXpjtltitMr,"The app is amazing. One feature or suggestion I would like to suggest would be to start planting a tree at some given time as set by the user everyday and restrict the user from using other apps opened at the same time and if he still uses other apps he would hv to wither the tree. 😊 Otherwise, kudos to your team. You people are doing amazing. Loving it totally ❤️",5,2,4.13.0,2020-01-28 18:10:13,,,most_relevant,cc.forestapp +Oika Jong,https://lh3.googleusercontent.com/a-/AOh14GiNJxYwj-bE-YlILpLZpLIfxLPj9ohpRl8WCbW9sg,I enjoyed using this app to stay focus. The sense of achievement for getting the trees planted keeps me motivated.,5,0,4.14.3,2020-03-20 15:31:09,,,most_relevant,cc.forestapp +Beth Burnett,https://lh3.googleusercontent.com/-5zTJAFH5IME/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNcENYhsyRxz4JmiZWlwuB5zVqmzw/photo.jpg,I've used this app multiple times over the years. It helps me stay away from my phone so that I can get tasks done. My love for a virtual tree far out weighs my urges to check social media and my blog. My grades in college and the cleanliness of my home thanks this app.,5,0,4.13.0,2020-01-25 15:47:01,,,most_relevant,cc.forestapp +Harshashri Ramesh,https://lh3.googleusercontent.com/a-/AOh14Gi8nhGO81pdkaFl4SCIiwTMsm82ZCDRxe25yWntFzg,"The app works once and the second time i try to open it, it just refuses to open! I have redownloaded the app many times but this problem continues. Other than that, I really enjoy this app. Edit: I have sent the problems on the said email. Edit: they did respond and the app works fine now :) excellent customer service!",5,2,4.13.1,2020-02-15 11:23:19,"Hi, +We typically reply within 1-2 work days. If you don't hear from us after 2 days, you may consider your email has gone missing. Please reach us again at android.support@forestapp.cc. +- Forest",2020-02-12 19:35:45,most_relevant,cc.forestapp +Timothy Lutaaya Martyn,https://lh3.googleusercontent.com/a-/AOh14GgQOx_rsJ1-3zLKdCifJXnrMPzjAweUlWeMEGvsQg,"I like the app because it's just as it is described. It is very easy to adjust times for focus, tree species to plant, and the motivational messages that are showed keep me going forward. I don't the fact that the trees and music are both too expensive. other than that, not really any challenge",5,10,4.13.1,2020-02-21 11:55:10,,,most_relevant,cc.forestapp +Jeezus Cheezus,https://lh3.googleusercontent.com/a-/AOh14Ghe4hOLB1bB-KOKw8YA2LsRn6oPQGyj0abG__Ph0w,"This app has really helped me focus on my school work. As times are now with the e learning situation, it's done wonders for me!",5,0,4.14.3,2020-03-22 18:47:40,,,most_relevant,cc.forestapp +Declan Fitch-Woolford,https://lh3.googleusercontent.com/a-/AOh14GgL4K-Bp4lUCQ0XzUu6KXK78ez46vujrImrZCtA,"Fantastic app, it helped me develop a good study habit of remaining focussed and taking positive breaks in moderation.",5,0,4.15.0,2020-03-29 02:19:11,,,most_relevant,cc.forestapp +Lucas Salas,https://lh3.googleusercontent.com/a-/AOh14Gh_xdZDw_J48HwACi12l1pPavH1uvjBLtDe-gPh9A,"Great for productivity if you use it right. You really need to respect the timer if you want it to actually work. 4 stars because I'd like to see room breaks implemente, since right now you have to do your own break and restart the room.",5,3,4.13.0,2020-02-14 02:18:44,,,most_relevant,cc.forestapp +Isik Kayhan,https://lh3.googleusercontent.com/a-/AOh14Gi9aWIyR6gtfbLqQtict-ZvnvfS0pGOe1PuOwJx,"Initially I thought this would be another app I get and forget about in a week. Not at all, this app is working great for me. I started planning and recording everything. It is keeping me accountable for my focus. It may sound stupid but it is fantastic.",5,1,4.13.0,2020-02-14 16:42:43,,,most_relevant,cc.forestapp +stxphanix,https://lh3.googleusercontent.com/a-/AOh14GhZLFWKUw0DSdVrl1fiOiwuOvtw72y-QIzfXaFEJg,I love it! Keeps me focused and the store items are so cue,5,0,4.14.3,2020-03-20 23:33:50,,,most_relevant,cc.forestapp +Abbi D'Angelo,https://lh3.googleusercontent.com/a-/AOh14GjInQ5Xvk3_A2DCIf83G2JFUUtus0XuMPtQbKAb_A,A simple app to help you put the phone down and feel accomplished!,5,0,4.15.0,2020-04-02 13:40:37,,,most_relevant,cc.forestapp +kapil raheja,https://lh3.googleusercontent.com/a-/AOh14GgFzC9zHokSKF7qgMkxbZ-hliG-igCNH4gQpp8u9g,Nice app and good for my focus skills And it also helps me to build my focus skills. I am very happy about that because I love this it will allow you to stay focused on your work instead of checking your phone after every interval of time. I appreciate the people downloading the app you should download this app surely.,5,1,4.13.0,2020-02-07 16:19:42,,,most_relevant,cc.forestapp +Madison Walters,https://lh3.googleusercontent.com/-gpYpXWV_9mU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM34BNtL1L74quZSvEagWK8gauJ1Q/photo.jpg,This game is a great way to get things done. I love the idea of not being able o leave the app or your tree will die. I consider this a great tool as I am homeschooled.,5,0,4.15.0,2020-03-30 03:16:24,,,most_relevant,cc.forestapp +Goldstar Lazerbeam,https://lh3.googleusercontent.com/a-/AOh14GiRNe2Froku1L0B7_PpDCWqL0wtMC7LfwqJsxN6,"Simple, yet effective. Pro version is cheap and awesome:)",5,0,4.15.0,2020-04-01 22:30:04,,,most_relevant,cc.forestapp +Hanna Gracielle Wong,https://lh3.googleusercontent.com/-Lpi1_RaFs1Q/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO1ygbIcj4r2nVw_QMKDmrj_n42vA/photo.jpg,Great app! It really helped me to be productive throughout the day!,5,0,4.15.0,2020-04-04 19:37:55,,,most_relevant,cc.forestapp +Khaled El_dawakhly,https://lh3.googleusercontent.com/-KN2b2fmp6a0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNpMCVEAgbCIXK66xjVERtMaxYkUg/photo.jpg,"Great app using the pomodoro technique for focusing on missions. The only thing I feel could be improved is allowing certain app to work (using setting) Fir example I take online coarses on my phone, and it would have been appreciated if the app wasn't considered to kill the tree",5,0,4.12.3,2020-01-18 13:01:25,,,most_relevant,cc.forestapp +Adelina D,https://lh3.googleusercontent.com/a-/AOh14GjmXxXPSw0CWi6_yYSNkVSmbEIn4PZLMRQCIJ7vQg,Its AWESOME 1) download it to manage time 2) time hw 3) stay on track with every day activities 4) easy tolook back on *ORGANIZED* time plots to help manage day to day activities! It's easy to use and is organized with minimal work (you can also use time coins to plant real trees),5,1,4.13.0,2020-01-27 02:12:30,,,most_relevant,cc.forestapp +Markelle,https://lh3.googleusercontent.com/a-/AOh14GiKDUjWa3XqdfdnkN9udvS7n6NJKCQGd9xjHp3OQw,"This app has helped me stay off my phone at work. Instead of randomly looking at my phone and getting distracted, I will plant a tree to grow for an hour and when the hour is over I look at my phone for 5 minutes then plant another tree. I get so much more work done because I have a reason to not get distracted.",5,0,4.13.0,2020-02-11 13:51:46,,,most_relevant,cc.forestapp +T Pinez,https://lh3.googleusercontent.com/-fe4eaXlb3ps/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM9CG7PGDbch0q3IoLPvvUcQyzv3w/photo.jpg,"Ever since the update to at a Whitelist to allow me to use my phone apps such as Google Docs , Notepad, Duolingo, etc. It's been a lot more wonderful of an experience as someone who doesn't always have access to a laptop/computer for homework. Love planting real trees but I do love the updates that come with more variety of our own forests so that I can have weekly themes. Can't wait to see more flowers as well, my suggestion is a colorful bunch of Lilies! Honeysuckles would be adorable too.",5,0,4.13.0,2020-01-26 04:56:51,,,most_relevant,cc.forestapp +Diana Paola de Monserrath Sanchez-Jacinto,https://lh3.googleusercontent.com/a-/AOh14GiFhK1fW2AjLEq2FlGlZYtaefGr1-UHhBfCZpPtqg,"This app is awesome I get distracted so easily, but once I set a timer I stay focused. I will try and reach my phone when my homework gets hard but then the plant growing reminded me to get back to work, afterwards you feel proud! I recomend this for teen students or procrastinators.",5,0,4.13.0,2020-02-12 00:59:04,,,most_relevant,cc.forestapp +Martine Holquist,https://lh3.googleusercontent.com/-Md2pe0IXXJ0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPQdBC0asL0K81ZXpyF5q2k3zPltg/photo.jpg,Honestly great for helping me focus while working from home. I use it to stop myself from binging news and to manage time using pomodoro method,5,0,4.15.0,2020-04-06 19:40:03,,,newest,cc.forestapp +Mateo Filip,https://lh3.googleusercontent.com/a-/AOh14Gj6o6emLuWCxdsRI8I3vyRwSfMtCmlt3_BIxeno7A,"The app is totally spectacular, the best of them all.",5,0,4.15.0,2020-04-06 19:38:07,,,newest,cc.forestapp +דוד קמחי,https://lh3.googleusercontent.com/a-/AOh14GjiGOHnStoekOSlPAuNk5P3PMvNH3imvbHPbydZPg,Great app,5,0,4.15.0,2020-04-06 19:33:55,,,newest,cc.forestapp +Anshi Music,https://lh3.googleusercontent.com/a-/AOh14GhWfZ8r2PwkBUaU_1lbTQgCG1liQAswzUkcUZ7H,Good app for Students,5,0,,2020-04-06 19:07:31,,,newest,cc.forestapp +Lily Soupart,https://lh3.googleusercontent.com/-9UtrqFlyybY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPmCz_VIJ3Q2dI5lrpxp_iGNuCVHg/photo.jpg,"This is truley an amazing app. It helps me study, clean, and workout without being tempted to get on my phone. I suggest silencing your phone while using this app so you arent tempted to kill your tree. Thank you for this app and keep up the good work!!",5,0,4.14.3,2020-04-06 18:32:18,,,newest,cc.forestapp +Becca Ross,https://lh3.googleusercontent.com/a-/AOh14GgM4UEDNpRVw2X0J_wqj31Kf0CLF4Va4ZQR1m4-Gg,"I recommend this app to all of my friends for studying! In addition to the focus help, it motivates me to get more done and to challenge myself in new ways! I especially like seeing a whole forest for a day, month, etc. Sadly, there was no way to transfer my plants when I got a new phone, so I am having to unlock plants again.",5,0,4.15.0,2020-04-06 18:05:18,,,newest,cc.forestapp +Cuauhtemoc Peranda,https://lh3.googleusercontent.com/a-/AOh14GitqLaKWSxnI3mm4q-8anBo5z7_1a4V5Vcqv5dRGw,Love making tge earth green,5,0,4.15.0,2020-04-06 17:33:21,,,newest,cc.forestapp +Andrew Miller,https://lh3.googleusercontent.com/-ODcCCDZm3lw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO5wNPdGOQioeySy9tUNynETkUG-A/photo.jpg,My only complaint was that I purchased the app thinking that I could always use the in app currency to plant real world trees. It only allows you to plant 5 but otherwise it's a useful app.,5,0,4.15.0,2020-04-06 17:14:36,,,newest,cc.forestapp +Kara Jones,https://lh3.googleusercontent.com/a-/AOh14GguQ5iaqa_EqLgpZ55ur-EYlN_JHKBvnx89Ts6eaQ,This is an amazing app that helps the environment and helps you stay off your phone. So really its a win win,5,0,4.15.0,2020-04-06 16:38:02,,,newest,cc.forestapp +Adam Krzysztofik,https://lh3.googleusercontent.com/-Vs4zcHYxg9Y/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMJvCeA1wHz9U7a1zcFcPU4JepuBQ/photo.jpg,Its great,5,0,4.15.0,2020-04-06 16:27:34,,,newest,cc.forestapp +Hosna Ghahremani,https://lh3.googleusercontent.com/a-/AOh14Ghy5nusRLNdEDex7NVa0NyYgU8PM5PhNex24IBBzQ,Perfect,5,0,4.15.0,2020-04-06 16:22:45,,,newest,cc.forestapp +Kaion Hadinata,https://lh3.googleusercontent.com/a-/AOh14GhMuTecEGR1IJDZzfN5tEE6npg8BhInxbAH-Jwvow,perfect app its make not depress,5,0,4.15.0,2020-04-06 15:42:42,,,newest,cc.forestapp +Nutcha 5316,https://lh3.googleusercontent.com/-GVZZkKrTH7w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN8xrqWqHzUiof597k51_eIxi532g/photo.jpg,It very cute!!! Best app for me when I'm reading.,5,0,4.15.0,2020-04-06 15:39:14,,,newest,cc.forestapp +Sachin Singh,https://lh3.googleusercontent.com/a-/AOh14GgWCzPUD1P9EJCDvBR3MPWgI7rNMfbSHqgtR_AtOG8,"its a beautiful app. i loved it. just one suggestion when someone calls on whatsapp, the tree withers.",5,0,,2020-04-06 14:40:18,,,newest,cc.forestapp +Karlie. Chalmers,https://lh3.googleusercontent.com/a-/AOh14Gh-LzRg2GAPQboyJUPX7rUDobHABuFPzlZHuKhE-w,Helps me! Used to use Pomodoro but the forest theme is nice and sort of mindful. I also use it for breaks from my phone,5,0,4.15.0,2020-04-06 14:35:35,,,newest,cc.forestapp +Anime Star*,https://lh3.googleusercontent.com/a-/AOh14GinUw8UQUWrFrkk9Np69ABsAs9vi0UrAyozcqYt2A,Awesome,5,0,4.15.0,2020-04-06 13:05:46,,,newest,cc.forestapp +Shivoh Cn,https://lh3.googleusercontent.com/a-/AOh14GgeJ4BD88zFK4iKeBhXE8RAR-yWuoXyYU1g958PmA,Love everything about this app ! ♥️,5,0,4.15.0,2020-04-06 12:52:23,,,newest,cc.forestapp +kaustubh shinde,https://lh3.googleusercontent.com/-ON5uaag-T0I/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPmp7nwEKLIk_q2sTfSkMZpNkeTog/photo.jpg,Thanks to all the creators of this app. You have made my life sorted. Love from India,5,0,4.15.0,2020-04-06 12:31:28,,,newest,cc.forestapp +Anna Senczyk,https://lh3.googleusercontent.com/-0US_AR2TK40/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO5WRbd47oYy9asFGbKqMXkWsVksA/photo.jpg,"Aplikacja godna polecenia, naprawdę pomaga ""odstawić"" telefon na dany czas i skoncentrować się na czynności, jaką wykonujemy. Polecam.",5,0,4.15.0,2020-04-06 12:25:00,,,newest,cc.forestapp +uhhyunjoo어현주,https://lh3.googleusercontent.com/-Ka-9c7I-xsI/AAAAAAAAAAI/AAAAAAAADVQ/AAKWJJPwXanyeOh8BRLj514D-yd72xdMBw/photo.jpg,love this app. It makes me focused on my work.,5,0,4.15.0,2020-04-06 12:15:00,,,newest,cc.forestapp +Rowan Fortune,https://lh3.googleusercontent.com/a-/AOh14Gh9d29y8dJCuQ3dz2QQxdpJ3mVQ2152Or31BeZv,Excellent app,5,0,4.15.0,2020-04-06 11:17:32,,,newest,cc.forestapp +Jakichaaan,https://lh3.googleusercontent.com/a-/AOh14GhvdkpRwhYd_os433FvJw7K7q7PvnkoxGrlM2WdAA,I love this app so much. Very helpful for someone with ADHD.,5,0,4.15.0,2020-04-06 11:02:32,,,newest,cc.forestapp +EHSAN FATTAHI,https://lh3.googleusercontent.com/-gpStppsyrNM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN-MrzXJ3XxJTcEnDEIsB-V3epMjA/photo.jpg,It's very good,5,0,,2020-04-06 10:24:20,,,newest,cc.forestapp +Ella S,https://lh3.googleusercontent.com/a-/AOh14GjpEib9Kci5nvYM-ZKH7X1FnfSHMFaToJMIRKqUMA,"UPDATE: changed to 5 stars due to the price changes in the store. The pop up ads are still a little annoying but it's still not too much of q problem. I love the variety in plants you can buy! It's a really cute app. Occasionally an ad would pop up outta nowhere but it's not too much of a problem. I think it'd be nice for the bushes to cost lower than the trees, due to them not needing as much time off to grow, but that's just my opinion. 😊",5,1,4.13.0,2020-04-06 09:12:44,,,newest,cc.forestapp +Gacha Blossom,https://lh3.googleusercontent.com/-nLJNCklEmJ4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPU_HWjOWdq6Vn3nh0r7PZ4d2Ah6g/photo.jpg,It is a great app for focusing on something with no distractions. Definitely recommended. 👌👌👌,5,0,4.15.0,2020-04-06 08:52:22,,,newest,cc.forestapp +HARSHIT JAIN,https://lh3.googleusercontent.com/a-/AOh14GjLu0TIxIMvVDqa8McsAF9KRKr03ycAtNoLqt6qAw,Phenomenal,5,0,4.15.0,2020-04-06 08:34:59,,,newest,cc.forestapp +ismahane belhadj,https://lh3.googleusercontent.com/-ZpLEePmqiiY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNlqhzEu1tsPzNNVJh2XHcRgt-Pxg/photo.jpg,Super,5,0,4.15.0,2020-04-06 07:50:21,,,newest,cc.forestapp +Aaliyah Faye De Leon,https://lh3.googleusercontent.com/a-/AOh14Gh8ZGW9tWJO4ymtJGhkF9yG4X_4Buybo1212-tv,"This game is so great it helps you to focus in planting your tree you can invite friends to plant trees and chat to them, actually this is not a game it is simple and educational. Pls download this game to save our environment. Go forest go!!!!",5,0,4.15.0,2020-04-06 07:03:22,,,newest,cc.forestapp +nuchita khopim,https://lh3.googleusercontent.com/-skKakU8tRNo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMlMJMb-iYrDuYQsrgX0dpL9go6UA/photo.jpg,Goodd,5,0,4.15.0,2020-04-06 06:46:33,,,newest,cc.forestapp +Teshan Prabuddika,https://lh3.googleusercontent.com/a-/AOh14GiceZUKgRx--mqnGGs5JYa3hfhYDGHA-yujmqp2,Its awesome time management base app,5,0,4.15.0,2020-04-06 04:43:48,,,newest,cc.forestapp +Anjali Brijwasi,https://lh3.googleusercontent.com/a-/AOh14GjixCsVIibVVPzp6Kj-UZxUU0xUbiuJudfm72KIEQ,Its a good app . I liked its all features,5,0,,2020-04-06 01:53:26,,,newest,cc.forestapp +Bella Sizemore,https://lh3.googleusercontent.com/a-/AOh14Gjf3ExsOTtzJZL9Nun5fd5xPpYwM_hiLRRkXPSF6ug,Works great!! Keeps me focused and off my phone!! I've tried many different apps like this before and deleted them because they didn't work how I wanted to or they put ads on my homescreen. But this is app doesn't do that and this is the best one around for sure!:),5,0,4.15.0,2020-04-05 23:38:29,,,newest,cc.forestapp +Mahtab Jnp,https://lh3.googleusercontent.com/-vRHOLhUKjpA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPS-uKHLoX2kYYJYTOSrhlvpsYnYQ/photo.jpg,It is amazing app,5,0,4.12.2,2020-04-05 23:36:20,,,newest,cc.forestapp +Mohammad Hosein Forghani,https://lh3.googleusercontent.com/a-/AOh14GhxjH0YLo92BrcJbAvQ9RwDPXib-JE_8djx22jqEw,Awesome app.,5,0,,2020-04-05 21:41:44,,,newest,cc.forestapp +Tulip Rose,https://lh3.googleusercontent.com/-WM95GZRuo7k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM11t90uCXNdpxYVKl7ybojUOGI_w/photo.jpg,Good,5,0,,2020-04-05 20:43:36,,,newest,cc.forestapp +Efie Lumanlan,https://lh3.googleusercontent.com/-6tVdsFr5Ht8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMPfG8Rrjv2v-TNHDlsqywLrU8X6g/photo.jpg,The best,5,0,4.15.0,2020-04-05 18:14:55,,,newest,cc.forestapp +Ryan abhista1,https://lh3.googleusercontent.com/a-/AOh14GhiYHKvNYfQKWBNM2bR_Y1H6x55C56_3yQ3naLmbA,"this so help me to get focus ,youu guys much download this app ,see you guys in department of civil engineering bandung institute of technology i'll be there 📌",5,0,4.15.0,2020-04-05 16:14:07,,,newest,cc.forestapp +متین گروسی,https://lh3.googleusercontent.com/-RcEdtLUqNqs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMYCmFSr9aPsoejBQb7ipHEI_u41Q/photo.jpg,It's great,5,0,4.15.0,2020-04-05 15:58:35,,,newest,cc.forestapp +Aadarsh Bandhu,https://lh3.googleusercontent.com/a-/AOh14GjK9yDUBB1F0EeqAnycYNhFfOzJJihBgkd2xvnO,Well done for those peple who made this one for me.,5,0,4.15.0,2020-04-05 14:42:29,,,newest,cc.forestapp +Annie Malone,https://lh3.googleusercontent.com/-Q8LMoqPRFmg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOE1Vedi7-lbCtrd1P559dxU3zbOQ/photo.jpg,Good,5,0,,2020-04-05 14:25:26,,,newest,cc.forestapp +Oscar Alejandro Córdoba Salgado,https://lh3.googleusercontent.com/a-/AOh14GgiWPEquAWTaiK_a02Uv-BD_3gjIRZwmMslVfgaig,Es muy útil para mantener las aplicaciones del celular cerradas mientras trabajas.,5,0,4.15.0,2020-04-05 13:33:11,,,newest,cc.forestapp +Sabur Khan,https://lh3.googleusercontent.com/a-/AOh14Gge92XKp7X_2kO3YrgknU4QKXclSSLWDRzZCM4mwA,Nice,5,0,4.15.0,2020-04-05 13:32:51,,,newest,cc.forestapp +XxCakeLoverXx Puppy,https://lh3.googleusercontent.com/-AIOw5Idzzb0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNBcRBL2dTWgf7Tw2nNvatE3sE23w/photo.jpg,Very useful Keeps me on track with my revision.,5,0,,2020-04-05 12:59:21,,,newest,cc.forestapp +Melody Shy Heart,https://lh3.googleusercontent.com/-0vvmtIbE0ag/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOiMNbtSIvNUz5iA411fX1M87rx-Q/photo.jpg,This is my favourite app!❤ the plants are so cute and it really makes me so motivated to study! I am also very happy with the tags ! :) But i have a question.. If i am going to change to a new phone but with the same SD card.. Will all my plants be gone?,5,0,4.10.7,2020-04-05 12:31:09,,,newest,cc.forestapp +فاطمه قاسم پور,https://lh3.googleusercontent.com/-Lo8bZQZ33dQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMuV3EYagv90D28LRdSeI5jKH5bbA/photo.jpg,Gooood,5,0,,2020-04-05 12:16:57,,,newest,cc.forestapp +amal Issellay,https://lh3.googleusercontent.com/-KMNh2jFLPC8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPEukAOuLvpaUWl-wMoOaMBdR8t-A/photo.jpg,The best idea,5,0,4.15.0,2020-04-05 12:03:29,,,newest,cc.forestapp +Mukul R,https://lh3.googleusercontent.com/a-/AOh14GiFOm_2anqy3RCJcBfzT7UnvlDUvOYXhBT0frqbow,Nice,5,0,4.15.0,2020-04-05 11:55:16,,,newest,cc.forestapp +Ker R,https://lh3.googleusercontent.com/a-/AOh14GhT1hjJvArjvcOP7wzJqWbqzFTCUoOmoMqCtjlq,It's a great app thank you for publishing it for free,5,0,4.15.0,2020-04-05 10:51:37,,,newest,cc.forestapp +Clifford Magnus Larsen,https://lh3.googleusercontent.com/a-/AOh14GiiW7_SAyqGHnK6hWtBpJsYLstjvGAlSl2uvUbs,Great way to stay motivated and focused on useful things!,5,0,4.15.0,2020-04-05 10:48:16,,,newest,cc.forestapp +Paige Craythorne,https://lh3.googleusercontent.com/-jzud91iiZ3w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMsb0lo9D4g5_LTSdjC7g7MPqDoYQ/photo.jpg,Helps me to focus and its fun to grow the forest. Once I started I found that my studying and sleep has gotten better,5,0,4.15.0,2020-04-05 09:42:25,,,newest,cc.forestapp +Vinay Tiwari,https://lh3.googleusercontent.com/-65Jg47EIRyo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMm4ZvSQw7C63yip5iPd2hzmONlZQ/photo.jpg,This is a great app. I love gardening and this app also explained me about different plants and also has a timer👏,5,0,,2020-04-05 08:32:06,,,newest,cc.forestapp +Sepideh Bakht,https://lh3.googleusercontent.com/a-/AOh14GheRobq9LJbcLKRMjh-l3TcBBefj7-4ve5D6Rfp4g,I love. It's fun. And also it makes me want to focus more. That's a pity I can't buy the premium version. Because my country is under sanctions.,5,0,4.15.0,2020-04-05 08:25:51,,,newest,cc.forestapp +Rumstine bossmode,https://lh3.googleusercontent.com/a-/AOh14GhVv4kw-hs2kIHrA6T8s6eVHGmQ0rjdAEad0_1K,"You receive satisfying rewards for staying off your phone, building positive reinforcement for off-screen time. It has an adjustable time scale which corresponds to the reward you receive, so it can be as convinient as you desire. I love it, it has really helped me so much with getting past hard work deadlines, and just focusing on certain tasks in general. 11/6 much recommended👍",5,0,4.15.0,2020-04-05 07:45:14,,,newest,cc.forestapp +bibika maharjan,https://lh3.googleusercontent.com/-VkYdKEInrMA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMq_Ocp50Nw27aVwoH14Mm8MfFpeg/photo.jpg,One of the best app to stay focused on your study. 😊😊,5,0,4.15.0,2020-04-05 07:14:15,,,newest,cc.forestapp +Pooja Sharma,https://lh3.googleusercontent.com/-G1GCistOECk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMaHm6wTgH-M5tBRI_gzdFAwh_iRw/photo.jpg,Its a good app for focusing in studies,5,0,4.15.0,2020-04-05 06:37:31,,,newest,cc.forestapp +Aditi Dey,https://lh3.googleusercontent.com/-UyLkzPnjrII/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJODR4R3ONS73WIEOOQROEMy8uCIPw/photo.jpg,Awesome app.... really helpful in increasing concentration.... soothing music helps you ignore all disturbances......your tree dies if you use any other app....so your phone is also no longer a disturbance.....This app is really good for doing deep work.,5,0,4.15.0,2020-04-05 05:18:59,,,newest,cc.forestapp +Marietta ramirez,https://lh3.googleusercontent.com/a-/AOh14GhEcWTNLQa0OFZWxzT9_xhE6bh1_dyBWmC-z6Vbow,This app is amazing!! It helps me stay focused on my tasks and definitely away from my phone! Love it and highly recommend,5,0,,2020-04-05 04:50:01,,,newest,cc.forestapp +Dylan gibson,https://lh3.googleusercontent.com/a-/AOh14GiaiFiETzQmG0WtQqa1vN7i-ISubIz2Quaz-G0sAQ,"Useful motivator to avoid phone usage, even on the free version. Very helpful.",5,0,4.15.0,2020-04-05 02:19:37,,,newest,cc.forestapp +Jesse Lynch,https://lh3.googleusercontent.com/-6DAxnkyCLAQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMq5M3S62diPt8R4Kkw_Umu5lPamw/photo.jpg,"Very simple, good for keeping you away from your phone. Also planting trees is the best for the environment because plants keep animals alive and animals keep plants going by herbivores eating plants then pooping out seeds and predators keep herbivores in check so they don't eat to many plants, it's a symbiotic relationship. Keep this up",5,0,4.15.0,2020-04-05 00:32:30,,,newest,cc.forestapp +Liz G,https://lh3.googleusercontent.com/-C_x373pnwPc/AAAAAAAAAAI/AAAAAAAAAsg/AAKWJJOnXDBmcLu9Wd8eIpW6H_2Ddr9d6Q/photo.jpg,So helpful! Been struggling to concentrate during the pandemic but this has actually managed to make me focus on assignments. Definitely considering an upgrade to premium,5,0,4.15.0,2020-04-04 22:42:09,,,newest,cc.forestapp +Arwaz Az,https://lh3.googleusercontent.com/a-/AOh14Gi9mkzsI7rwX3JUFbYP2m-fm-r45NZWlRW4T4kxmw,Good,5,0,4.15.0,2020-04-04 20:56:29,,,newest,cc.forestapp +Katy Nicholson,https://lh3.googleusercontent.com/a-/AOh14GiyafhU4O6nuMTGZqYOFeS_SBUfZSgxtIpsAvGO,"This app is so simple yet effective. I've been using it on and off for five years now, and I always seem to come back to it when I really need to focus. There are a couple of hiccups with the app but I've still given it five stars as these don't really take away from how great it is.",5,0,4.15.0,2020-04-04 20:53:54,,,newest,cc.forestapp +Shweta Kumari,https://lh3.googleusercontent.com/a-/AOh14GjhVhe17lV3UYnab-ZLeMmdpsUYJnMXUVOKTlrCpw,Awesome,5,0,4.14.2,2020-04-04 19:43:36,,,newest,cc.forestapp +Hanna Gracielle Wong,https://lh3.googleusercontent.com/-Lpi1_RaFs1Q/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO1ygbIcj4r2nVw_QMKDmrj_n42vA/photo.jpg,Great app! It really helped me to be productive throughout the day!,5,0,4.15.0,2020-04-04 19:37:55,,,newest,cc.forestapp +Noor Al Deen,https://lh3.googleusercontent.com/a-/AOh14Gi3hvnITJRIE6kCRJCuxPZhg5uR2R87bb2gCBZ71Vo,The best app in the world,5,0,,2020-04-04 18:39:28,,,newest,cc.forestapp +Fatima Riham,https://lh3.googleusercontent.com/-FQdvkJVIM_4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMCLSACU7CdVUrjRLwwYoK0fcB5ZA/photo.jpg,Good aplication ❤❤❤❤,5,0,4.15.0,2020-04-04 16:48:02,,,newest,cc.forestapp +Petya C,https://lh3.googleusercontent.com/a-/AOh14GisACKuGrzaYRI1i7Rc7eS_cYa1JdWQU6JMbDzK,Definitely download it its great,5,0,4.15.0,2020-04-04 16:47:12,,,newest,cc.forestapp +vkook army,https://lh3.googleusercontent.com/a-/AOh14GiJ0A14aJyaeglY415cXyLw2aVf6XE5Tr6kLrVf,It's an amazing app cuz it's rll helped me in studying,5,0,,2020-04-04 16:05:58,,,newest,cc.forestapp +meghana patil,https://lh3.googleusercontent.com/a-/AOh14GjLMa9WbwpcQ4mdvn8Hy3at7Fm8aIz8_MZq5jLt-Q,My love for nature and need for concentration has made this app the best choice while I work 💚😊,5,0,4.15.0,2020-04-04 16:05:30,,,newest,cc.forestapp +Raini Latimin,https://lh3.googleusercontent.com/-3OQa907J8X0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNQlVVBg1lexXs9MT6U6GRpS75Gtw/photo.jpg,This is the best app for me to stay focus,5,0,4.15.0,2020-04-04 16:00:17,,,newest,cc.forestapp +gigi zanardi,https://lh3.googleusercontent.com/a-/AOh14GgHPIMPqUYDZakEvOy1_bNuCE9GisS_bXUf-c3Qfw,Lovely and motivate me to study,5,0,4.15.0,2020-04-04 15:37:40,,,newest,cc.forestapp +Milan Saxena,https://lh3.googleusercontent.com/-TSPsJVFPk7E/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOegAn8pl-N1v6BLe4XbJU3hdDlqA/photo.jpg,Awesome experience,5,0,,2020-04-04 15:21:05,,,newest,cc.forestapp +Virginia Gold,https://lh3.googleusercontent.com/-KoHWe92lJ7s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNXnDJVRpFvfvmOoKmiAfFTkMCD1g/photo.jpg,Helps me to stay focused,5,0,4.15.0,2020-04-04 15:10:31,,,newest,cc.forestapp +Jeffey,https://lh3.googleusercontent.com/a-/AOh14GiU5c7QeU06_RDnSflte76guDKVAjwKq8tjjY0p,Its Great For People Who get distracted easily.,5,0,4.15.0,2020-04-04 14:49:15,,,newest,cc.forestapp +Fatinn 26,https://lh3.googleusercontent.com/a-/AOh14GippYJ0eMO6a55EozfDlcmkP-NTIYpqu4wwQ14Vqw,It's really a good apps. Help me with study and stay focused 🥰,5,0,4.15.0,2020-04-04 14:40:38,,,newest,cc.forestapp +Anjana Das,https://lh3.googleusercontent.com/-LjDhKXLTuiY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMxXz0-zRdD1lzlh_ABfLBPpxdLrg/photo.jpg,I love it ❤️,5,0,4.15.0,2020-04-04 13:33:01,,,newest,cc.forestapp +Ruby Joshi,https://lh3.googleusercontent.com/-bKnQFIFSNOo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOoNSIRY8DTCkSnkD8tJippkU_beg/photo.jpg,Issue solved after update. 5 stars. 😁,5,1,4.12.1,2020-04-04 13:15:59,"Hello, +This issue has been resolved in the latest version. Please update the app and we'd be glad if you give us a positive review when the problem is solved. :) +If the issue persists, please email us at android.support@forestapp.cc. Thank you! +- Forest",2020-01-18 21:08:03,newest,cc.forestapp +Sara Elgout,https://lh3.googleusercontent.com/a-/AOh14GgK6Fodxna9DEjb6LVxVhXPkdNImNjT_jDt1FITDQ,I love it !,5,0,4.15.0,2020-04-04 13:15:04,,,newest,cc.forestapp +IamaFool,https://lh3.googleusercontent.com/a-/AOh14GgonvrUpVUywOCc6dp-P8n2-S67t9zxfEcsLxH10Q,Like,5,0,,2020-04-04 12:45:27,,,newest,cc.forestapp +Andrea Popović,https://lh3.googleusercontent.com/a-/AOh14GikB_l_es-SLG8ib6AghGHnPKb7CsfVxtZ6I64sbA,No words! This app is fantastic! I keep my focus a lot more when I do my homework!,5,0,4.15.0,2020-04-04 12:29:41,,,newest,cc.forestapp +Sauhardha Kulshrestha,https://lh3.googleusercontent.com/a-/AOh14GgZn2qXVEXVZBVTEFMBYdvEodDej0N9K7sluQMX,Amazing,5,0,4.15.0,2020-04-04 12:27:12,,,newest,cc.forestapp +Eirene Omelia,https://lh3.googleusercontent.com/a-/AOh14Gi5dbIuD17f_noBd-Qp5pz0kZERXiJnJUORZ2CT,Very helpful,5,0,4.15.0,2020-04-04 10:45:28,,,newest,cc.forestapp +Fathia AM,https://lh3.googleusercontent.com/a-/AOh14GhFHsquxB3444OHiJy8zuPgQQU4ggJzEx3sPNhEbw,love it!,5,0,4.15.0,2020-04-04 09:45:25,,,newest,cc.forestapp +Hulan Nagwaan,https://lh3.googleusercontent.com/a-/AOh14GimQ257wOt28PGlzoDi2_QlfepRicJHdOCchzHo,Im so need it,5,0,,2020-04-04 08:48:52,,,newest,cc.forestapp +bug do google,https://lh3.googleusercontent.com/a-/AOh14GgAy38uhirDu4pZDeay3W9JukrVyA4vjDQYfVG2Fg,Muito interessante 👏,5,0,4.15.0,2020-04-04 07:23:44,,,newest,cc.forestapp +Aaliyah Davis,https://lh3.googleusercontent.com/a-/AOh14Gjj9uCRNTwfCHoPpC9tGyb2BG-XkGtgB4Iv_A__Rw,This app allows me to unplug and focus on whatever else I may have going on.,5,0,4.15.0,2020-04-04 07:20:35,,,newest,cc.forestapp +Alok Kumar Verma,https://lh3.googleusercontent.com/-F-Nnt9frS8Y/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMAK3pQINNlrWV_udc2ldage4k8vA/photo.jpg,"Great app Thank you so much and love u {Forest: Stay focoused} App developers because you do a great work for humanity, great application for students and other person who want to analysis your work time . i love app so much once i get a job i buy a pro version. Thank you developers.",5,0,,2020-04-04 07:01:36,,,newest,cc.forestapp +juhi vaishnav,https://lh3.googleusercontent.com/-_PSCHwGy8Q0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN5kwmqz_qY99rxjjRJm4Z6dQQ-fw/photo.jpg,Very nice app,5,0,4.15.0,2020-04-04 06:30:19,,,newest,cc.forestapp +Mim and Labs,https://lh3.googleusercontent.com/a-/AOh14Gjn7eQGhi_FfIbCLT7UwDCemT5pfVLJfhteZ8bt,Amazing app for staying focused 👌👌😉,5,0,,2020-04-04 06:03:09,,,newest,cc.forestapp +Jacob Andersen,https://lh3.googleusercontent.com/a-/AOh14Gi159SOt4u6vYIzq5x7AtnUaHNpZjGDx2z0EV0lsQ,Great app for focusing.,5,0,4.15.0,2020-04-04 03:58:34,,,newest,cc.forestapp +rahi kaipilyawar,https://lh3.googleusercontent.com/a-/AOh14GgAuehgYka_CZg5sWm-bVYzywaOi9xRX0hF3qlk6g,"Really good app, helps you focus",5,0,4.15.0,2020-04-04 03:10:46,,,newest,cc.forestapp +Sebastian ospina lopez,https://lh3.googleusercontent.com/a-/AOh14GiBIMWwWwDEiYah5hu21D6rJ_KTT48TEOuqIwhKng,Great game,5,0,4.15.0,2020-04-04 00:35:04,,,newest,cc.forestapp +Renee Robbins,https://lh3.googleusercontent.com/a-/AOh14Ghmp1MSqJ5usopqwwW0h1dtt5KlTY_1AcBgJUEezw,"I really enjoy this app! It's a fun, satisfying way to keep track of time (and stay off my phone for a while!)",5,0,4.15.0,2020-04-03 21:54:30,,,newest,cc.forestapp +rz zeus,https://lh3.googleusercontent.com/-WFe5f-6yQww/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOj6h3-PAp3vdIyVxbSk5Zb3LBqkQ/photo.jpg,very nice app for phone addicted .,5,0,4.15.0,2020-04-03 20:40:34,,,newest,cc.forestapp +Kaia Nelson,https://lh3.googleusercontent.com/a-/AOh14Gi5mOe1Qqd0V2zRiRtZLBRVi0t3eqgUCl6fX0P2,Makes studying easy!,5,0,4.15.0,2020-04-03 20:06:54,,,newest,cc.forestapp +bored b,https://lh3.googleusercontent.com/a-/AOh14Gg-NzDH3fevxHVX-rCmqnL0mK7oBoshnwKiMivp,"Nice app, but the cool stuff is locked for the membership",5,0,4.15.0,2020-04-03 18:20:44,,,newest,cc.forestapp +Taki Yashir,https://lh3.googleusercontent.com/a-/AOh14Gg7kqgUowVxx46GLJbLYcAwVhp9nGrwrMQAMQ32tw,very helpful...,5,0,4.15.0,2020-04-03 17:45:15,,,newest,cc.forestapp +Emma.S,https://lh3.googleusercontent.com/a-/AOh14GhGDQ3yM0WVSgdi_6j7-ZPGXFM3taYqfRUt8r14,VERY CALMING,5,0,4.15.0,2020-04-03 16:54:05,,,newest,cc.forestapp +Estante Perdida,https://lh3.googleusercontent.com/a-/AOh14GgX3-gS99EkPUGVMA1Zcw_3r0kWbjF4Vv4ByQ_ZrA,I love soo much !!!!!,5,0,4.15.0,2020-04-03 14:52:19,,,newest,cc.forestapp +Sunita Gupta,https://lh3.googleusercontent.com/-aujgmpi79Es/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMEMLsf728EMzpu_3wbcO5WngUvRg/photo.jpg,Great,5,0,,2020-04-03 14:52:02,,,newest,cc.forestapp +Juliet Dreamhunter,https://lh3.googleusercontent.com/a-/AOh14Gi47e0CrgHMBlpsivHny4nSeeNYIODdzXP9dfw7n48,"I just bought premium and realized I made a mistake right away! It told me to register to sync my data and I did. Sync option wouldn't do anything. I wasn't able to set a username because of some unknown error all the time. Then half the screen was empty and I decided it was a glitch and reinstalled it and now ALL MY DATA IS GONE! So stupid! I just paid 10 bucks to be able to create more than 5 habits and I lost everything! Don't recommend this app, so disappointed...",1,8,1.5.11,2020-04-02 17:08:27,,,most_relevant,com.oristats.habitbull +Godis Withus Vargas,https://lh3.googleusercontent.com/a-/AOh14GjDBXuFRuOlymttR4KWrJtfVycd_-B7l6aGP3ojuA,NOBODY USE THIS APP. Read all the forums. The app does not support the sync once you've bought premium. Everyone's saying the same. And the devs DO NOT RESPOND TO HELP REQUESTS. I have an error that makes me unable to sync due to a connection error though clearly I am connected to the internet. I am a premium user. The app is great but please help me with my problem. I'm tired of taking screenshots of all my pages every week as my remedy for the sync error.,1,54,1.5.11,2020-03-19 02:39:53,,,most_relevant,com.oristats.habitbull +Doreen Dune,https://lh3.googleusercontent.com/a-/AOh14GjaIAtDjOQcaAYlyZtVUSdUth5ErLCw3QX7q1-v,"Update 2020: sadly they didn't reach out to me despite me paying for premium version. Lost my account and no means of logging back in. Otherwise, the app is good especially the UI. Like this app but until recently I had to change phones and the database could not locate my email and the app changed names and logo so it's all confusing. If you could help me locate my account as I bought the premium version but couldnt log in to my account. Please help because I want to use this great app!",1,2,1.5.11,2020-04-01 11:43:33,,,most_relevant,com.oristats.habitbull +Ozair Khan,https://lh3.googleusercontent.com/a-/AOh14Gg-YCMMgz67BWYwFVlQGr796VeS6WJHWwRDbLCAi9Y,"App was good in past but not anymore, it has stopped sync and many bugs creeped in due to no maintenance and update since. As per details in app Page, last update was on 28th Jun 2018, but still it is the first thing that comes in results when I search for ""Habit"" 😲 I guess Google should stop advertising an app that is not managed since years.",1,0,1.5.11,2020-04-01 11:35:46,,,most_relevant,com.oristats.habitbull +Tejas Patel,https://lh3.googleusercontent.com/a-/AOh14GhXncJMBfwhfDRoW5jmsX4eJgT6Y8hSMPh0BZgDqu4,I have an error that makes me unable to sync due to a connection error though clearly I am connected to the internet. I am a premium user. The app is great but please help me with my problem. I'm tired of taking screenshots of all my pages every week as my remedy for the sync error.,1,0,1.5.11,2020-04-03 01:06:58,,,most_relevant,com.oristats.habitbull +Tim Sparrow,https://lh3.googleusercontent.com/a-/AOh14GjeD3sCXCQKEOoZuB5LfNsdetnRk40om-T9pn7JLA,"The app itself is great. I used it quite regularly a few years back but when I tried to use it again it seems that the 'new' owners don't acknowledge their 'lifetime' subscription. Sure hope my emails get more results besides ... /ignore kthnxbye Sent an email ... they said they opened a ticket and then ... crickets. Nice .. thanks, downgraded to",1,10,1.5.11,2020-03-23 17:39:58,,,most_relevant,com.oristats.habitbull +Amanda Nicholls,https://lh3.googleusercontent.com/-qBmIxds3zx0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMaSVxrV_9iPk69Sl6oyW2n_uw4kg/photo.jpg,"*Update* 11/02/20 USE AT YOUR OWN RISK! As expected, no contact from developers. App has not been updated since 2018. This app was great for a month until it kept freezing my phone. A de/reinstall has now lost all my data and looking at other users with this issue, it looks like it is lost forever because of the sync function never working and no contact from developers. Very upset and disappointed.",1,36,1.5.11,2020-02-11 12:00:11,,,most_relevant,com.oristats.habitbull +Dirk M,https://lh3.googleusercontent.com/a-/AOh14GibLiu4S9GRqOAAH09EnAatLmoui9u7HgIVn-_TbgM,"Updating my previous review. I recently hit the two year mark on one of my habits, yet the app only shows me of having 30 days. This is the same bug I reported last year. It appears that it does not recognize some of my habits over the New Year. I've reported this problem four times now and have never heard back from anyone. I'm giving up on this app, and suggest you do too. ""I've used this for a couple of years. There was a bug where one week of my tracking wasn't recognized by the app. This happened the week of New Years. I reached out to the developer five times about it and never heard back. Unfortunately, this has become an unreliable app for tracking.""",1,38,1.5.11,2020-02-06 03:52:22,,,most_relevant,com.oristats.habitbull +Matt Wall,https://lh3.googleusercontent.com/a-/AOh14Gg3HRnPtBx05zQwQu0D_vdqZ2x2GgbDC50YzbkfdA,"Update: dropped 5 star rating to 1star. App will not sync. I have it on Android and iPad,and neither one of them will sync to the server. App store shows 8 months since any updates. Would not have paid for premium if I knew it wasn't going to be maintained. Original review: I wanted to make something like this myself, but they've already done a great job. I feel more obligated to the daily habits I'm trying to build, and it's great that it tracks my completion streaks.",1,13,1.5.11,2020-03-05 08:01:30,,,most_relevant,com.oristats.habitbull +Louis Heath,https://lh3.googleusercontent.com/a-/AOh14GjiRjNs9AuULjlda44iHeObLvYxLiCdvYZ7Wunjbe4,"I paid for habitbull premium for the sync functionality, which fully does not work. I've tried reinstalling the app, reinstalling android, getting a new phone. No luck. Emailed habitbull a month ago and still no reply. If I want to take a backup I have to screenshot everything. not ideal Apart from this the app is decent. It's got a cute meme",1,11,1.5.11,2020-02-09 15:24:20,,,most_relevant,com.oristats.habitbull +G C,https://lh3.googleusercontent.com/a-/AOh14GjAY49ILYXWVWZ8O0eEs6R0t_E0vYzvaiP1VHMW,Paid for premium. Sync does not work. Publisher does not reply. Started reading reviews and found numerous people with the same problem. Going to try to get my money back. Nice app if you don't care about backups or syncing between devices or customer support. Switched to Goalify and finding them extremely responsive,1,10,,2020-02-06 15:06:06,,,most_relevant,com.oristats.habitbull +Afaque Palegar,https://lh3.googleusercontent.com/-zi1R4wklG_U/AAAAAAAAAAI/AAAAAAAADhg/AAKWJJO6-vdcxCvcR4JihM0wpubi1_mOfQ/photo.jpg,"I have been using the app from the last 3 years. I am a premium user. When trying to sign in a new device and sync, it's not syncing. I need my data. please help with this issue. Even after reaching to the support team tonnes of times no one is responding. So i am changing the rating from 3 to 1.",1,7,1.5.11,2020-02-17 18:43:14,,,most_relevant,com.oristats.habitbull +Paolo Moretti,https://lh3.googleusercontent.com/a-/AOh14GgjnsPhf5zYR_sYrmLvmc0RgnK-nCbGr70N4pxtVA,"The idea behind the app is good. Although, after paying for premium, the promised cloud sync does not work (several users mention the same issue). There is no way of backup the data either. I cannot see any feedback from devs here. Switched to a different app: ""Habits.""",1,5,1.5.11,2020-02-26 10:59:47,,,most_relevant,com.oristats.habitbull +Mihai Suteu,https://lh3.googleusercontent.com/-HzMjyKDqKkk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM4dSc4if9PHm6SBJpfAz_3x_2zKA/photo.jpg,"Decent, but premium features like Sync do not work, can't even reimport data you exported yourself. Had I realized this I would have never have bought the app, it's just false advertising. I now have to figure out how to port my data to another app where it won't be inevitably lost.",1,4,1.5.11,2020-02-15 17:04:02,,,most_relevant,com.oristats.habitbull +Adam Mason,https://lh3.googleusercontent.com/a-/AOh14GhSK2EcZgViNpQhsqYBwTCLo9_SqB8RtcVOSW8v1A,"Paid for the premium app last year, now there is no history of my email address ever being registered despite me having the confirmation emails from them when I first paid for it. Lots of complaints on here. Get one of the open source habit trackers & back it up yourself to cloud storage rather than spending money with devs who change the app name slightly & try to charge again. Seen this happen so many times.",1,16,1.5.11,2020-01-16 11:31:26,,,most_relevant,com.oristats.habitbull +Kishore Mukherjee,https://lh3.googleusercontent.com/a-/AOh14GgRPzSoLrxzcCeBBCA345ejlK_4HuOX85v1pdJLmA,"Don't install this app.This is forgery. I've used this app for more than 2 years when I changed my mobile phone I couldn't login when I logged in it says ""this email account is not in our database"" I have the mail to prove that I had had the account in the App.I mailed the company 4-5 times but there's no reply. 2 years of my habit data is lost.",1,5,1.5.11,2020-02-17 05:45:04,,,most_relevant,com.oristats.habitbull +michael corcoran,https://lh3.googleusercontent.com/-frKiOzYJ2xQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPJ5-Q3YaGAf2y4pKCOE-BAgCHUdw/photo.jpg,The Premium version of the App does not sync across multiple devices. I use an android phone and a chromebook and it still does not work. Don't bother with Premium.,1,0,1.5.11,2020-04-03 02:45:58,,,most_relevant,com.oristats.habitbull +Scott Jensen,https://lh3.googleusercontent.com/a-/AOh14GhHpOwyRCN5FKLSEMoAWmcJWfxZ0STyguPZgN2ugQ,"This was a great app but it hasn't been updated since 2018 and sadly it be can become unusable in an instant with no fixes in sight. I cannot recommend this app. I would try something similar maybe open sources, or with dev support",1,4,1.5.11,2020-01-29 00:56:54,,,most_relevant,com.oristats.habitbull +RZ apps,https://lh3.googleusercontent.com/-vUZFRutek9M/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPhkcZCWh-_Lt7k1BABKm5SNBNNpQ/photo.jpg,"Had accumulated 5 habits that lasted 17 days and counting (now using a different app.) This pathetic app that I paid premium for, would not sync. ""Check internet connection"" every damn time. I paid for the damn app, sadly probably past my refund day!",1,4,1.5.11,2020-01-08 02:19:31,,,most_relevant,com.oristats.habitbull +Anthony Vasquez - EndZz,https://lh3.googleusercontent.com/a-/AOh14GjNvXIoEv4Li0oBIWDO-2ZZ0ocYuOOf6VhYf8PEcYo,"DO NOT PURCHASE! The app works as it's supposed to, with exception for the added purchase features. I bought the app so it could sync up with multiple devices, that feature does not work despite following the FAQ as to why it might not work. I have tried their support ticket system which had an automated response, but they have yet to respond despite me trying multiple times to reach them and ask for assistance or a refund.",1,24,1.5.11,2019-11-07 17:26:51,,,most_relevant,com.oristats.habitbull +J H,https://lh3.googleusercontent.com/a-/AOh14GggparSDxww2JYUFbkFm5ixZCYIp438HnT8lhxrHA,The app hasn't synced for nearly 9 months despite being a premium user. The support team haven't acknowledged my email. It's a good concept but they've failed to make it work and don't provide customer support. Check other reviews. Go to play.google.store on a web browser. Select My Account and go to order history. Select the ... and it offers you an option to request a refund. That should get the developer to either repair it or take off the premium services it is falsely selling.,1,102,1.5.11,2019-12-04 08:02:56,,,most_relevant,com.oristats.habitbull +Tameka Norris,https://lh3.googleusercontent.com/-Y9hy0ofDraI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMmNEPEFH6Q1LLhLRQH0IZVV3xvCA/photo.jpg,"Sync DOES NOT work! I've tried multiple times to get it to work and my internet connection is just fine. Had to switch phones when my old phone died and can't get my old data back on the app because sync doesn't work. Also no way to import data. Great app if the feature worked or could import data, but rendered useless because of this. So if I switch phones or have to reset to factory standards, I lose everything. Paid quite a bit for this app just for this feature alone, but it DOES NOT work.",1,51,1.5.11,2019-11-17 18:16:26,,,most_relevant,com.oristats.habitbull +Z T,https://lh3.googleusercontent.com/a-/AOh14Gj9LwJEXWap4EHN8grct7PvZYjNkivQEiviGclYHsY,"The app itself gets the job done, but it will not sync and the developer is not responsive to questions. Don't waste your money with premium. You won't get what you pay for.",1,1,1.5.11,2020-02-10 06:08:41,,,most_relevant,com.oristats.habitbull +Alphaeus Tan,https://lh3.googleusercontent.com/a-/AOh14GjqoN_lzW5IFKy0yiYpkhK6MF3fbxMobzpq2gDXkw,"The widget and sync functions does not work on premium. I get the widget error telling me to log in but I already have and even reinstalled the app. Nothing works. Developer, please fix this.",1,1,1.5.11,2020-02-02 15:23:47,,,most_relevant,com.oristats.habitbull +dizM0nkey,https://lh3.googleusercontent.com/a-/AOh14Gh_ynpTrQhtRvq5pmiBM2Lub-6Jq649I8WOKo4Qrw,"This app claimed it was syncing to the cloud. When I lost everything on my phone and had to reinstall it, signed in, and tried to sync ... there was nothing. I have an open support case that nobody at Habitbull has responded to (#900271) Do not trust this app or whether it will backup your habit tracking data. Terrible customer service and fail of an app.",1,28,1.5.11,2019-10-17 05:40:15,,,most_relevant,com.oristats.habitbull +Megan Owen,https://lh3.googleusercontent.com/a-/AOh14GirdnZF9fKOcyMeLvdKP55y86LAyin106n99F78,Hyper masculine tone is very off-putting and irritating. Hint to developers: Women try to change habits too! At least give us the option of just having hints in our own words...,1,0,1.5.11,2020-01-17 13:09:59,,,most_relevant,com.oristats.habitbull +Lauren,https://lh3.googleusercontent.com/-D_kFFEi-uY4/AAAAAAAAAAI/AAAAAAAAkhA/AAKWJJOUvbvJK0SfU5ap0bV_QXqUkaHE1w/photo.jpg,After installing this app my phone received an increased amount of spam calls. After removing the app from my phone I received fewer spam calls. It might be a coincidence... But it might not be.,1,1,,2020-02-13 04:27:03,,,most_relevant,com.oristats.habitbull +Akshay Aradhya,https://lh3.googleusercontent.com/a-/AOh14GgHdX_XWZCaaxa4OytdIiosOIjwz5LzobbquxcqADA,"Pathetic. I was totally in love with this app until I changed my phone. I lost the phone, and when I installed the app in my new phone, everything was gone. My habits, data for last one year, every damn thing. And I have purchased premium of the highest cost. There's no way to restore my data or contact the devs. If you cannot save on JSON file of mine in your cloud, please explain why I should buy premium? There is a sync option in the app. Don't tell me I should have manually ""synced"" my stuff",1,6,1.5.11,2019-11-10 16:43:57,,,most_relevant,com.oristats.habitbull +Daniel Brock,https://lh3.googleusercontent.com/a-/AOh14Gi7eMsC5fDU7DqN4VvrcoiM_Fn5qH_0FKAM_u0g4A,"App no longer supported, data loss likely: Was a great app until I needed to migrate to a new phone. The sync feature never worked, and I lost months of habit data. I tried contacting the developer via the supplied email, but zero response. I used to recommend this app to many people, but I'm done with it.",1,27,1.5.11,2019-12-07 01:28:15,,,most_relevant,com.oristats.habitbull +Cretinous Martyr,https://lh3.googleusercontent.com/-4o8I5cFYM5E/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMLPmgg-qPHxL6B-2BDrxY1Bsg4sA/photo.jpg,"Very expensive for a simple app, and quite useless without buying the premium. Only tracks 5 habits? Lame. I can't believe this is the app advertised in the play store, and still has a high rating because it is garbage. Sounds like even if I bought premium it would be worthless for transferring data to a new phone as the app claims, I won't even risk it.",1,49,,2019-12-31 03:50:58,,,most_relevant,com.oristats.habitbull +MeToR 3609,https://lh3.googleusercontent.com/a-/AOh14GjrqdJ_2U1WR_Y5unzDUSMGc_7LYJTgL8QIci-RQQ,"Find a new app. Overall if you havent noticed, the dev's left this app. As of recently, the servers are dead. This means you cant make an account, forums are gone, motivation pictures gone, etc. Find a new app,",1,3,1.5.11,2020-02-22 05:21:09,,,most_relevant,com.oristats.habitbull +Saravana Bhavan,https://lh3.googleusercontent.com/a-/AOh14GjiBLZMZ4N7j6ax0Ip6O0H1ImcB0o_6T2ssvtyO,"After purchase, sync is not working. Then y sholud I purchase this app. Profile name is empty, while editing it says ""something went wrong"". And so on",1,0,1.5.11,2020-03-16 19:49:20,,,most_relevant,com.oristats.habitbull +mohammad AL-shahrani,https://lh3.googleusercontent.com/a-/AOh14GhckEYmpZlrJlSPL1fYFmgao-AVqQwecY3plN7W,I was enjoying this app and decided to buy the premium features. But they took the money and provided nothing at all. I tries contacting the developer via Email and no answer at all. Stay Away.,1,1,1.5.11,2020-02-18 06:56:04,,,most_relevant,com.oristats.habitbull +Pierpaolo Paparo,https://lh3.googleusercontent.com/-63dqjKXWQAM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMB4SjNyKCR-QiyGJ7Y9XHBVWykug/photo.jpg,"Don't buy the premium version of this app. Synching doesn't work. Stick with the free version, which would be 4 stars",1,0,,2020-03-21 22:33:12,,,most_relevant,com.oristats.habitbull +Prudence Kekana,https://lh3.googleusercontent.com/a-/AOh14GjwVZiSHcgwnnAjV_OvfLeAjVSo7t6K0qiGOpTkFQ,"I bought the premium version of this app and it doesn't work. The reminder does not function, which basically renders the app useless. I emailed the support team and I haven't gotten any response or acknowledgement of receipt. I want a refund. What a waste of my money",1,9,1.5.11,2019-11-04 04:55:28,,,most_relevant,com.oristats.habitbull +Neal Jack,https://lh3.googleusercontent.com/a-/AOh14Gi-nb6A9qFicwHoSfhWui585Gz7NpPQQaMl7Tyr2QU,"Developer is non-responsive. For some reason when downloading the app from the play store it associates with the incorrect Google account. I have verified I am downloading the app with my intended account, however it continually associates with the wrong account. It's not really a big deal, but I was planning to upgrade to premium with my play store credits. The account this app associates to does not have any.",1,24,,2019-12-28 19:02:01,,,most_relevant,com.oristats.habitbull +Lilia,https://lh3.googleusercontent.com/a-/AOh14GgeeGxg7eqmrZiK-RhfzeeY_P3IZ5ekiI9mZSjYPw,"Soooo disappointing. Had to find a substitute for my Habit Minder app when I moved to Android. Habit Tracker seemed. The interface is great, love the tracking graphs, but its reminders don't work consistently at all - which defeats the whole purpose!!! Really miss my Habit Minder and hope they make an android version soon.",1,1,1.5.11,2019-10-15 11:53:32,,,most_relevant,com.oristats.habitbull +Fahad Ali Khan,https://lh3.googleusercontent.com/a-/AOh14Gj8bLm5ii68Yk2d2pBd3xDfPU0TPhi2tr0VWAz1MA,"I bought premium and now I can't login to the app using Facebook. (and I can't login any other way) I get this message: ""Login Failed: You can't use Facebook to log into this app or website because there's an issue with its implementation of Facebook Login.""",1,5,1.5.11,2019-11-25 03:13:12,,,most_relevant,com.oristats.habitbull +Ryan Clark,https://lh3.googleusercontent.com/a-/AOh14GjmNkoIbRU8s5-qkVncZGB9uB9Ro47eXxPuhr1uDIg,"If you pay for premium, you won't actually get the premium services (as other reviewers have noted). Troubleshooting steps from their site don't work, and no one responds to the support email. Contact Google and they'll reject your refund request.",1,11,1.5.11,2019-12-10 03:58:43,,,most_relevant,com.oristats.habitbull +JD,https://lh3.googleusercontent.com/-ZXtDTqZAlkQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPqJKw1posFqQ9j6S_6iEdhL0c_mQ/photo.jpg,"Why are you counting inactive habits for the 5 habits total? It's ridiculous! There are many other apps that don't have this silly, cash grabbing limit.",1,1,1.5.11,2020-01-06 22:29:33,,,most_relevant,com.oristats.habitbull +Paulo Sequeira,https://lh3.googleusercontent.com/a-/AOh14GiRqAB_2iRxvYRb9TIr3X8dlEJAYsmL4ds38bLqXA,"App works but I got very disappointed after I purchased the premium features only to discover that sync between devices doesn't work, and that the app developer is completely unresponsive to my support requests, so I wasted my money and am not able to get a refund.",1,10,,2019-10-20 03:53:21,,,most_relevant,com.oristats.habitbull +Padmasree H,https://lh3.googleusercontent.com/a-/AOh14Ggb5y_Ji1FaKUhfQIsN032U9XA3H2xmY5Y0mcF-UrA,"It's not working properly, always fails to Remind, no more reminder notification, this feature suppose to work for free version, if the promise features in free version doesn't work how can I get confident to buy paid version , request team to fix this issue",1,3,1.5.11,2019-10-25 13:26:19,,,most_relevant,com.oristats.habitbull +sandeep kharat,https://lh3.googleusercontent.com/a-/AOh14GjUNbGrqOGy6-G6aXhYpQ1Vw0Kttdbzza3W14t1Eg,"The app is very good. Giving one star because, data sync doesn't work even for paid version. So if you change the phone, you lose all tracking history. And as others reviews are saying there is no service by developers.",1,2,1.5.11,2019-10-15 15:55:15,,,most_relevant,com.oristats.habitbull +Mark Carter,https://lh3.googleusercontent.com/a-/AOh14GjuGWyUoxR5ctzvhXh_3qAJ6cPG4fb824ldeahT,I bought the Premium version and it will not sync. I have snet numerous requests to support and have received no responses,1,0,1.5.11,2020-03-10 22:58:07,,,most_relevant,com.oristats.habitbull +Joshua Williams,https://lh3.googleusercontent.com/a-/AOh14GjULPgLnpFSO6PFR2LQg-26PbjfoPxYqw5QOd2s9Ow,"Paid for premium so I could sync between devices, but it doesn't work and customer service will not respond to my inquiries.",1,1,1.5.11,2020-01-27 20:34:48,,,most_relevant,com.oristats.habitbull +Siddhant Kumawat,https://lh3.googleusercontent.com/-PDkUSmnd-g4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNoiw4RS2znYSx0-GnWKUJmbSANuw/photo.jpg,It's been 1 week since I'm using the app. The reminder system worked fine for 1day and from next day the reminder system stopped functioning. Really disappointed. May be uninstalling the app after few days. Hope this helps.,1,0,1.5.11,2019-11-25 17:02:32,,,most_relevant,com.oristats.habitbull +Ava H,https://lh3.googleusercontent.com/-zyl5JJx5v6E/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP8CoG-ztqmdBIDPa0QGNaGu_c8FA/photo.jpg,"The reminders don't work. No noise. No vibration. I even bought premium to see if that would help. No luck. If I wanted a place to just mark my progress, I'd keep an Excel spreadsheet.",1,0,1.5.11,2019-11-07 12:19:16,,,most_relevant,com.oristats.habitbull +Fabrício Laboissiére Freitas,https://lh3.googleusercontent.com/a-/AOh14GgYQDF17WhYRbk7K4pb3Coatv0_jF65XsThCLVQ,The app was last updated on 2018. Looks like the devs abandoned it. I've been having trouble with reminders (a key feature of the app) but haven't heard back from the devs. :/,1,1,1.5.11,2019-10-13 13:29:41,,,most_relevant,com.oristats.habitbull +Andrew Martineau,https://lh3.googleusercontent.com/a-/AOh14GhVAI-vL6A0CMYt-29S0CgD4TCa2FgtoD3KmF0Gvg,"I like the app, but I don't like rating apps, and this one constantly nags you to do so with no option for it to stop. Even with the paid version, so 1 star for being annoying after I've given them my money",1,3,1.5.11,2020-01-02 05:53:57,,,most_relevant,com.oristats.habitbull +Kaustubh Juikar,https://lh3.googleusercontent.com/a-/AOh14GgIZ5PlLbwD3cgOmoOLmp90YIIl9Smqqvfd0FtlNw,awsome application.. i purched it.. but i just want notifation should be blinking on phone like alram clock .. plz add this type of features.. the thing diplys in notifaction should be flash on main screen From last 10 month it's not getting synchronising.. Plz do something @developer We paid for it,1,3,1.5.11,2019-12-31 06:09:11,,,most_relevant,com.oristats.habitbull +Paulo P,https://lh3.googleusercontent.com/-s9kjPiZtrJk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMqVhEUO_QLH1QuEOt9v47Fnymclg/photo.jpg,"2019/10/24 - revised from 5 to 1 star. App is dead. All my data gone. Never again trust an app you cannot export and organize your data, and to a universal format. Avoid as others said recently.",1,0,1.5.11,2019-10-24 21:26:40,,,most_relevant,com.oristats.habitbull +Nick LeBlanc,https://lh3.googleusercontent.com/a-/AOh14GghpgJcw0dPYzNFnhkMKTK7DDj0pWju1EHW61Ijd2I,"Broken! So far, not impressed. I bought this expecting multi-device sync and haven't seen it do that. It wouldn't even restore a backed up file after logging off then on.",1,3,1.5.11,2019-12-30 23:52:13,,,most_relevant,com.oristats.habitbull +ALi Landvatter,https://lh3.googleusercontent.com/a-/AOh14GjfMYNjp4gVWABKfwE-fyXWjmMM5ygwaTh8mIw9Fw,"Sync doesn't work. Paid for premium, had to get a new phone and it won't transfer. As other reviews say, it seems this app has been abandoned. Unfortunate because I liked it.",1,1,1.5.11,2019-11-20 20:54:47,,,most_relevant,com.oristats.habitbull +felix felices,https://lh3.googleusercontent.com/-6sMcQJgPBfk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMQdoN_gTAtw4Yeo5UVrVu_rWRcrQ/photo.jpg,"Unsupported. Doesnt contain sync feature. Wouldn't issue refund. To the makers and google, get on your hands and knees and repent to g*d",1,0,1.5.11,2020-01-07 16:29:27,,,most_relevant,com.oristats.habitbull +Ashwin,https://lh3.googleusercontent.com/-N_-OETwJuk0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPp20MbIAVt_c4gBL1zTZz4sbsSzw/photo.jpg,"Good app, but no updates even after sending few suggestions. What is the point in buying Paid version.",1,0,1.5.11,2020-01-27 04:41:47,,,most_relevant,com.oristats.habitbull +Serge Kurenkov,https://lh3.googleusercontent.com/a-/AOh14GhsayUTXf6S2Xjx49_9qBh-PQNIq-Y-p-nRr4OT,"Do not buy premium! Devs are not responsive and there is no way to reach them should you have any issues. Contacted them several times to transfer purchase to new phone, nobody responded.10$ wasted.",1,3,1.5.11,2019-11-13 21:50:34,,,most_relevant,com.oristats.habitbull +Suman Majumdar,https://lh3.googleusercontent.com/a-/AOh14GjzXx7k9vPGxVJkSHm8NQxdTgYvk6W1fFM48nMp,"App hasnt synced in 190 days. Won't let me log out. Still loads all my old data from last sync. Hasnt been updated since 2018, that should be the best clue. Dont buy!!",1,7,1.5.11,2019-12-26 14:23:50,,,most_relevant,com.oristats.habitbull +Asad Mahdi,https://lh3.googleusercontent.com/a-/AOh14Gg3cgkmIzBL_gryRe-iV9ZAqfORz7xRv6IhJ55FAA,"I have premium app, Sync is not working, No repply from developer. Just waist of money.",1,1,1.5.11,2020-03-07 04:49:02,,,most_relevant,com.oristats.habitbull +Fabian Junge,https://lh3.googleusercontent.com/a-/AOh14GhCAC5XsjWUc5eSz4MnpeMysEbY2LBZWwiiV8Ps1Q,"An app absolutely focused on my needs... that has broken. The sync function broke down about 3 or 4 months ago, it can export its data to .csv but not import it.",1,2,1.5.11,2019-11-21 14:12:02,,,most_relevant,com.oristats.habitbull +Mohamed El Aammari,https://lh3.googleusercontent.com/a-/AOh14GhRaJ7HojBRB2MqHEZ06TD6BBs2B0CXbuAXtv2jzJc,"do not use this app for tracking your habit for long time, you'll lose your data if you do t pay the premium membership. I've lost 3 months of daily tracking data of my habits.",1,0,1.5.11,2019-11-10 09:29:39,,,most_relevant,com.oristats.habitbull +Promise Emmanuel,https://lh3.googleusercontent.com/a-/AOh14GjdK-RcRjtvaz3Dx-bSEf2KxHILDKy28DRoBO1fBQ,"This app doesn't let me log in to my previous account. Once I skipped the initial registration page due to some network issues, I tried logging in but it only shows Sign Up or connect to Facebook which I definitely don't want to use. When I use my previous account on Sign up it tells me that the email is already taken. Please fix this issue.",1,4,1.5.11,2018-10-08 08:28:45,,,most_relevant,com.oristats.habitbull +Tijl C,https://lh3.googleusercontent.com/a-/AOh14Gjym7MPmyUGYKH2gkVM3DRIUjyhlB5do-kZYljXKSo,Like another commenter said. Just installed it on new phone and even though signed in it doesn't give my my paid for premium. Previous phone checked the sync and last sync was 128 days ago.,1,0,1.5.11,2019-11-18 14:48:26,,,most_relevant,com.oristats.habitbull +"Costa, H.T.",https://lh3.googleusercontent.com/-kMDBFvflHb0/AAAAAAAAAAI/AAAAAAAAYo4/AAKWJJPiOtl73tpmcJJPHxL6UBY1LFjiuw/photo.jpg,"The last update was more than a year ago and things started to stop working. The company that owns it seems to be a scam. It was a great app, I paid for it and got no support",1,0,1.5.11,2019-12-16 03:51:54,,,most_relevant,com.oristats.habitbull +Michael Szubrowski,https://lh3.googleusercontent.com/a-/AOh14GiXAwiwyLh0_jJi9UJQ_9cQjtiPQ-4RkAsQIVvk4So,This app would be great if they would just stop locking people out of premium. This has happened with several users for months and still not fixed. I got a new phone and can't use this app because login with Facebook won't transfer. This is my first one star review I ever gave an app and to say I am disappointed. Just use one of the many other habit trackers.,1,208,1.5.11,2018-11-28 01:08:22,,,most_relevant,com.oristats.habitbull +WISDOM LONGLIVE,https://lh3.googleusercontent.com/a-/AOh14GhXkznu11IeGjZoMBVxvdU7HYJAVYYP6AbD28O9TQ,"Horrific! They have stopped supporting the application. No replies, application is not working as sync is not functional anymore. Please don't buy it, it is a complete waste of money.",1,3,,2019-11-14 14:30:17,,,most_relevant,com.oristats.habitbull +Aditya Pareek,https://lh3.googleusercontent.com/a-/AOh14Gj9w8qooQNi4uL8y0QEJk1ekecf3kWFMt6JVZB8mg,Very poor customer support despite being a paid subscriber. Strongly recommend against this app. Not able to sync across devices and there was no response despite sending mails.,1,0,1.5.11,2019-11-29 09:05:07,,,most_relevant,com.oristats.habitbull +MaLcoLm Anderson,https://lh3.googleusercontent.com/a-/AOh14Gh6aum4tL23REFhGjDUIya09ZEBwcLmCoCigQQ60w,"2018-11-19 -it seems useful, but it crashes on my phone 3 - 15 times a day. 2019-04-13 - No update, this app would be great if it didn't crash just about every time I go to my home screen from *anywhere*. Also there have been no update, and no responses to the roughly 75 - 100 error logs that I have submitted. I paid $5.00 (US) for a ""life time subscription"" to the premium version. DO NOT SPEND YOUR MONEY !!!!!!",1,181,1.5.11,2019-04-13 19:49:03,,,most_relevant,com.oristats.habitbull +G,https://lh3.googleusercontent.com/-rx6Jw2EgE2M/AAAAAAAAAAI/AAAAAAAAAPU/AAKWJJM28HT31Jjjl9XnU6n6WASuG2SsOg/photo.jpg,"I paid for premium when transitioning to a new phone, and my history was transferred. I recently had to un+re-install the App for personal reasons and it does not recognise my account anymore. Creator contact has not responded to numerous courteous emails. EXTREMELY DISAPPOINTED. Wish I could get 3+ years of data back. I loved the App, and the App itself is 5 stars but will only rate 1 due to reasons above. Would change to 5 stars if resolved.",1,54,1.5.11,2019-03-26 08:25:17,,,most_relevant,com.oristats.habitbull +asad agha,https://lh3.googleusercontent.com/a-/AOh14Gh5eS_iwxIgWGlYGrPAQNdPiiMVYuc8XyLsQLjV,I purchased the app to make full use of it and add many habits with a reminder for each. But the reminder doesnt work at all. Initially for some habits it used to remind randomly but after a day of purchasing none of the reminders are working :( please solve my issue as i really wanted to use this app to its potential.,1,9,1.5.11,2018-11-24 10:39:21,,,most_relevant,com.oristats.habitbull +Isai Trejo,https://lh3.googleusercontent.com/a-/AOh14GjajZtNFHpwkJi1E9LZfGjzu7CZZ4Tf_NFMaRyqPw,"Bought the premium version; couldn't access my 100 habits. Emailed team; took many emails for them to address problem; asked to redownload app; all data deleted; problem was never solved; more emails to get money back; told that they are a ""small team""; worst experience with any app I've ever bought.",1,14,1.5.11,2018-11-27 07:22:15,,,most_relevant,com.oristats.habitbull +Ahmet Engin Ural,https://lh3.googleusercontent.com/a-/AOh14GjvkLjy8-RZpnMfgKLmr-RZCZ3jDybFRV8Xj4vINQ,"Unrecoverably crashed, reinstalled. Then the data partially gone. Pretty disappointed. No response from the devs. In hindsight this is an app that haven't released for more than a year, so could have been expected. Data is not critical of course (bunch of date markers), but it feels like all those habits disappeared with the data :/",1,15,1.5.11,2019-08-26 22:11:31,,,most_relevant,com.oristats.habitbull +Adrian Torrie,https://lh3.googleusercontent.com/a-/AOh14GiO6bnw5MOfJ_fXSvHgY4CtB3EDOulzfmCHeTaQEQ,Facebook login fails with an error from Facebook saying the login method hasn't bee implemented correctly.,1,1,1.5.11,2020-01-21 06:53:20,,,most_relevant,com.oristats.habitbull +Meldrey D,https://lh3.googleusercontent.com/a-/AOh14Gh9sX0hqiW1idI1AevrP1zWoSepIlm5EO5-ki-s,"This is the free version. The paid version is $7.99, the Platinum version is even more. You can only track 5 habits in the free version. Developers must be paid, but a lack of up front honesty makes this product undesirable. (I should charge for this.) Do not install. #doughymiddle",1,2,,2019-01-12 17:48:20,,,most_relevant,com.oristats.habitbull +Fahd Abdalaal,https://lh3.googleusercontent.com/a-/AOh14GhrR4uGd0spFmGQwjLGxSVi5jLlatZQqaB0B4fdLg,"App didn't sync at all !!! I lost almost 6 months and it turned out all users had the same issue and requested a refund, I need my money or solve it now this is cheating",1,1,1.5.11,2020-01-02 20:47:56,,,most_relevant,com.oristats.habitbull +George Istaliyanov,https://lh3.googleusercontent.com/a-/AOh14GjOzf0kTgMrkIPHOZWhvvSdSh-MxSdzbAHCRe0MQOw,"I bought the premium long ago. Unable to sync after resetting phone, lost data that I have tracked for over 2 years.",1,0,1.5.11,2019-10-09 09:55:49,,,most_relevant,com.oristats.habitbull +Rohan Sharma,https://lh3.googleusercontent.com/a-/AOh14Ggrn11_iuGjojayEZeIScvHdlBmI1bZkMkGuWYlhA,"Expensive, old and without any support. Also much better alternatives are available now.",1,1,1.5.11,2020-01-02 08:07:10,,,most_relevant,com.oristats.habitbull +Donald Gygi,https://lh3.googleusercontent.com/-f3W8McqWBXw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNEaNrHAPSN7O7BFhp1hepqCNsfMg/photo.jpg,"When it works it's great but after using it for a while and paying for the ability to export and sync data, all my data is gone. Every attempt to contact them goes unanswered and the last update was over a year ago. They're willing to take your money but not to update or support the software. Use this at your own risk.",1,5,1.5.11,2019-08-11 08:54:24,,,most_relevant,com.oristats.habitbull +Eugene Valentinov,https://lh3.googleusercontent.com/-qz9Y6fP14o4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPfDvjSH-Xh6-zZYlmiH-xaESL2Kg/photo.jpg,"Good app, appallingly bad support. Paid for premium and enjoyed the app for 2 years. Old phone died now can't restore the data on the new phone. The ligin is not recognized. Noone replying to the emails. So much for ""premium""... Quick googling reveals many people experience the same... Frustrating",1,11,1.5.11,2019-08-22 13:55:08,,,most_relevant,com.oristats.habitbull +June 47,https://lh3.googleusercontent.com/a-/AOh14Gi857IJj54hipPfVm9_8KTEC9msA5bEorHTDLaZXA,"Do not pay for the app. Sync doesn't work , they dont support the app but they are always ready to take your money.",1,1,1.5.11,2020-02-13 15:17:50,,,most_relevant,com.oristats.habitbull +S Hassan,https://lh3.googleusercontent.com/-gWBbcaE1woU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNR0jn009MWf_IoS5bZ3kH09ZeYcA/photo.jpg,"Purchased the premium, the app stops sending notifications after some days, I have to repeatedly open the app to get notifications, waste of money",1,0,1.5.11,2019-11-18 06:34:41,,,most_relevant,com.oristats.habitbull +Farid Sheikh,https://lh3.googleusercontent.com/-CXq6Vc1YK_E/AAAAAAAAAAI/AAAAAAAAASk/AAKWJJP24ot5f4I1YJbDMcvS1_GLuSRsLA/photo.jpg,"The problem I have is that if I set a habit to be every Monday and Wednesday, for example, and I follow it successfully for a few weeks. Then if I just want to change the days, it discards all my previous progress, which is stupid. I just changed the days and the app can't understand this.",1,0,,2018-12-14 18:14:46,,,most_relevant,com.oristats.habitbull +Shaun Struwig,https://lh3.googleusercontent.com/a-/AOh14GgO6U9p9xGIKw2TU4FUqFNu8aCduXTeEPQIFtaS,"It's a great app, used it for over a year happily. Even paid for it. Recently had to switch phones and when I reinstalled on my new phone the sync function doesn't work. Without sync i've lost all my data. Tried emailing the developers for support but they don't reply.",1,8,1.5.11,2019-08-03 07:01:06,,,most_relevant,com.oristats.habitbull +Philip Dash,https://lh3.googleusercontent.com/a-/AOh14GjmXapkK0qKH-iL463h16g5RFrxIPacHfXhdEbVSQ,Online sync is no longer working and last update was June 2018 which is more than a year. Is there a reason why I should continue using this app?,1,0,1.5.11,2020-01-05 20:23:32,,,most_relevant,com.oristats.habitbull +Zesty Z,https://lh3.googleusercontent.com/-ys1IBysSnck/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN7WTc7j1ufYXOfRANH7LCoUo6ziA/photo.jpg,"Excellent app, highly recommend, have been using this app since it was first getting established and was advertised on reddit. However I cant log on anymore :( I had access on my old phone and now on my new one it says my email address is not in the database! How can I get my access back? This is the only app I like!",1,1,1.5.11,2018-10-24 03:25:36,,,most_relevant,com.oristats.habitbull +drunkennewfie midget,https://lh3.googleusercontent.com/a-/AOh14Gg9V-S6YStfngPXKoVDxxXAN2JfBti2uNbyXzs,"has lost features over the years. back when i first used this years ago when it was called habit bull, i could set goals like, ""do this thing x times a week."" that doesn't appear to be an option anymore, so this app has become effectively useless.",1,0,1.5.11,2019-07-03 23:19:31,,,most_relevant,com.oristats.habitbull +Lee M,https://lh3.googleusercontent.com/a-/AOh14Gjmd2rGr241dMri36omaDagO4CEMzTjm8uowhoH2FU,"Purchased by premium, getting error can not sync. Emailed support, no response. Don't waste your time or money",1,0,1.5.11,2019-11-09 15:43:18,,,most_relevant,com.oristats.habitbull +Dan Olsen,https://lh3.googleusercontent.com/a-/AOh14GhrikNHKZ2GjMs9UgFHa9QbQqoGwmFo3dW1tZyFeA,I just paid for premium as I was told by the app developers that it would enable me to sync my data from my old android phone onto my new android phone. But it fails everytime I click 'sync'. I sent the developers my feedback but they won't get back to me.,1,2,,2018-12-03 23:50:43,,,most_relevant,com.oristats.habitbull +Kylee June,https://lh3.googleusercontent.com/a-/AOh14GiSWoGh56Mdr1BkpMmwE5Et8E2-3zqReovhjbxZ0A,not a bad app but the worst customer service and thw widgets dont work once you pay for premium! just use the free version. your more likely to succeed if you focus on less goals at one time anyhow! DONT BUY PREMIUM!! WHEN IT TURNS OUT IT DOESNT WORK YOU WONT BE ABLE TO GET A REFUND!,1,3,1.5.11,2019-06-26 03:29:44,,,most_relevant,com.oristats.habitbull +Nia Hughes,https://lh3.googleusercontent.com/a-/AOh14GhxFpFbBWhluVzZH4pskeZhFowsDdbs5lhzadOE7A,"Abandoned by the devs - hasn't been updated in over a year. Sync doesn't work at all, which was its main advantage over rival apps. Don't waste your time.",1,1,1.5.11,2020-01-03 21:24:44,,,most_relevant,com.oristats.habitbull +Luke Ball,https://lh3.googleusercontent.com/a-/AOh14Gjpedt1HVIaY4XiNkv_xoM3MnS0pjEuYaYCWrL8q80,Does not send notifications unless the app has been opened recently. Completely defeats the purpose of the reminders.,1,0,1.5.11,2019-10-24 11:57:58,,,most_relevant,com.oristats.habitbull +Leo Ifediba,https://lh3.googleusercontent.com/a-/AOh14Ggl732dopYSKhph42zDHaNIfzzVpd3Kj4lAjxQlrQ,"Below Expectation... I purchased this app based on glowing user reviews, created an account in order to sync across my devices, however I find that if I create a habit on one device it doesn't show up on my other device. This needs to be addressed immediately.",1,4,1.5.11,2019-03-07 22:39:41,,,most_relevant,com.oristats.habitbull +Shubhranshu Shekhar,https://lh3.googleusercontent.com/-vZLzxL8u1lw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOfFm91TjQQbiNAgEB_DOozRiyHBA/photo.jpg,"Hello Team, I bought the complete package in Feb 2015. However when I am trying to use HabitBull Premium + Extra, it says no account found in database. Can you please help me with this? Your support team is also not responding to the the ticket which i have raised earlier Support Ticket Opened [#388906]",1,3,1.5.11,2019-10-03 16:03:31,,,most_relevant,com.oristats.habitbull +Sebastián Riátiga,https://lh3.googleusercontent.com/a-/AOh14GiQfriebDjWbSbWARKYACecYDqq-PHq62_lV0AZ7g,"Don't buy the primium subscription, the app does not sync as it says. Also, support never answer.",1,2,1.5.11,2019-11-15 00:48:05,,,most_relevant,com.oristats.habitbull +Us Sid,https://lh3.googleusercontent.com/-9KkZUfaylEs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMJGsDI5o3Q-SG1wrmiyyXgzjzXjA/photo.jpg,Sync isn't working. No response to emails. No updates for ages.,1,1,1.5.11,2019-11-25 22:37:39,,,most_relevant,com.oristats.habitbull +Juan L. Rivera,https://lh3.googleusercontent.com/a-/AOh14Ggcw7fiPwqbqFDT6bTmdJVVLhhUeb0IBuSn2PpDPg,"Does not sync across my devices, which it claimed it does. Only reason I purchased. Looking for my refund.",1,0,1.5.11,2020-01-15 12:12:02,,,most_relevant,com.oristats.habitbull +Shreyas Panicker,https://lh3.googleusercontent.com/-jFqx4f-Y2fI/AAAAAAAAAAI/AAAAAAAAAJI/AAKWJJPB186uFXaqAm-IdZQIeB5cTAvNUA/photo.jpg,"Got hold of the Premium version with high expectations but was disappointed on getting to know that the habits created on a device is not appearing on another device with the same account. Going back to ""Loop"".",1,1,1.5.11,2019-08-16 05:57:45,,,most_relevant,com.oristats.habitbull +Ruben Blanco,https://lh3.googleusercontent.com/a-/AOh14Gic5iaBUAPUUPQfTZSirpudrXRKtKzVHPdyQeCUDQ,"I had and paid for the premium version back then when it was called ""Habit Bull"" I loved it but since now they changed to ""Habit Tracker"" I no longer have the premium add ons and they expect for me to pay again. No thanks.",1,3,1.5.11,2018-10-02 04:29:28,,,most_relevant,com.oristats.habitbull +Joshua Barker,https://lh3.googleusercontent.com/a-/AOh14GgbqWxQWfmwpcEwmWy1HTVyfjN2FvAaXsUbU7hSg5I,"Cash grab, and nothing more. Purchased the app a year ago but now due to an issue on the account being asked to pay for it again. Very disappointed and no response from seller. Last update was 1 year ago so as far as I am concerned the developer abondoned it.",1,7,1.5.11,2019-07-05 12:37:16,,,most_relevant,com.oristats.habitbull +Miss Possible,https://lh3.googleusercontent.com/a-/AOh14GiX_6yZJOdu6mo6qDrGcyQt_DCKdM2wsyfPPoYUSg,Does not log in. After 5 minites it's still trying to log itself in.,1,0,1.5.11,2020-01-10 01:38:38,,,most_relevant,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Can only track five habits without premium 🙄🙄 five habits I can just write down in a notebook instead of waiting my time with this app, I wanted to use it to build good habits for 2019 but I'm not gonna pay money to do something I can do with a pen and paper",1,0,1.5.11,2018-12-17 17:20:50,,,most_relevant,com.oristats.habitbull +Robin WC,https://lh3.googleusercontent.com/a-/AOh14Gg2ThL5EPU1clTsAZLxVmD2M06dxF-LfuwZShc7,Twice lost all data b/c wouldn't sync. Had over a year of data. Had premium and still didn't make a difference. Moving on. Just done. So upset!,1,0,1.5.11,2020-04-06 15:14:45,,,newest,com.oristats.habitbull +Gregory Bott,https://lh3.googleusercontent.com/a-/AOh14GjKpKAo3prPIPhW50Hf-vx24m3pG52qwZpzo-q0m2Q,"I love the app, but it won't sync.",1,0,1.5.11,2020-04-04 22:16:11,,,newest,com.oristats.habitbull +michael corcoran,https://lh3.googleusercontent.com/-frKiOzYJ2xQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPJ5-Q3YaGAf2y4pKCOE-BAgCHUdw/photo.jpg,The Premium version of the App does not sync across multiple devices. I use an android phone and a chromebook and it still does not work. Don't bother with Premium.,1,0,1.5.11,2020-04-03 02:45:58,,,newest,com.oristats.habitbull +Tejas Patel,https://lh3.googleusercontent.com/a-/AOh14GhXncJMBfwhfDRoW5jmsX4eJgT6Y8hSMPh0BZgDqu4,I have an error that makes me unable to sync due to a connection error though clearly I am connected to the internet. I am a premium user. The app is great but please help me with my problem. I'm tired of taking screenshots of all my pages every week as my remedy for the sync error.,1,0,1.5.11,2020-04-03 01:06:58,,,newest,com.oristats.habitbull +Juliet Dreamhunter,https://lh3.googleusercontent.com/a-/AOh14Gi47e0CrgHMBlpsivHny4nSeeNYIODdzXP9dfw7n48,"I just bought premium and realized I made a mistake right away! It told me to register to sync my data and I did. Sync option wouldn't do anything. I wasn't able to set a username because of some unknown error all the time. Then half the screen was empty and I decided it was a glitch and reinstalled it and now ALL MY DATA IS GONE! So stupid! I just paid 10 bucks to be able to create more than 5 habits and I lost everything! Don't recommend this app, so disappointed...",1,8,1.5.11,2020-04-02 17:08:27,,,newest,com.oristats.habitbull +Tina Nash,https://lh3.googleusercontent.com/a-/AOh14Gjc0A1mDjMv5LbHBk9Hq12SKxcKKyqXuJOuU03riA,Guess I can't use this app after paying for premium 😧,1,0,1.4.9,2020-04-02 04:25:48,,,newest,com.oristats.habitbull +Vadiraj Jambagi,https://lh3.googleusercontent.com/a-/AOh14GjM7gOV7-Uen2D8acysFlgkdtmly0KwNehYncX-lA,Reducing to one star because it is not possible either sync the data with cloud or backup locally inspite using the paid version and the developer is not bothered to rectify the issue,1,0,1.5.11,2020-04-01 12:17:38,,,newest,com.oristats.habitbull +Doreen Dune,https://lh3.googleusercontent.com/a-/AOh14GjaIAtDjOQcaAYlyZtVUSdUth5ErLCw3QX7q1-v,"Update 2020: sadly they didn't reach out to me despite me paying for premium version. Lost my account and no means of logging back in. Otherwise, the app is good especially the UI. Like this app but until recently I had to change phones and the database could not locate my email and the app changed names and logo so it's all confusing. If you could help me locate my account as I bought the premium version but couldnt log in to my account. Please help because I want to use this great app!",1,2,1.5.11,2020-04-01 11:43:33,,,newest,com.oristats.habitbull +Ozair Khan,https://lh3.googleusercontent.com/a-/AOh14Gg-YCMMgz67BWYwFVlQGr796VeS6WJHWwRDbLCAi9Y,"App was good in past but not anymore, it has stopped sync and many bugs creeped in due to no maintenance and update since. As per details in app Page, last update was on 28th Jun 2018, but still it is the first thing that comes in results when I search for ""Habit"" 😲 I guess Google should stop advertising an app that is not managed since years.",1,0,1.5.11,2020-04-01 11:35:46,,,newest,com.oristats.habitbull +Fathoni A. Musyaffa,https://lh3.googleusercontent.com/a-/AOh14Gii9CjBcj4b03RZ83qEuXc745NAE-amYRLrq9fYCQ,"Sync doesn't work despite having a lifetime premium account, as others have said.",1,1,1.5.11,2020-03-30 21:56:12,,,newest,com.oristats.habitbull +Enrico Furnari,https://lh3.googleusercontent.com/a-/AOh14GiZr4BBiFur4WCtCVedR3JhxMviypfBgePB5aa0OyU,"Used to be good, now support is gone and can't sync devices anymore. Pity",1,3,1.5.10,2020-03-25 08:01:37,,,newest,com.oristats.habitbull +Tim Sparrow,https://lh3.googleusercontent.com/a-/AOh14GjeD3sCXCQKEOoZuB5LfNsdetnRk40om-T9pn7JLA,"The app itself is great. I used it quite regularly a few years back but when I tried to use it again it seems that the 'new' owners don't acknowledge their 'lifetime' subscription. Sure hope my emails get more results besides ... /ignore kthnxbye Sent an email ... they said they opened a ticket and then ... crickets. Nice .. thanks, downgraded to",1,10,1.5.11,2020-03-23 17:39:58,,,newest,com.oristats.habitbull +melqui lolo,https://lh3.googleusercontent.com/-iJEEzfWFcAA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO0VMZUARkIReSmkMu6DnQ5U_YJgA/photo.jpg,Not updated anymore. Unstable,1,1,1.5.11,2020-03-22 05:38:40,,,newest,com.oristats.habitbull +Pierpaolo Paparo,https://lh3.googleusercontent.com/-63dqjKXWQAM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMB4SjNyKCR-QiyGJ7Y9XHBVWykug/photo.jpg,"Don't buy the premium version of this app. Synching doesn't work. Stick with the free version, which would be 4 stars",1,0,,2020-03-21 22:33:12,,,newest,com.oristats.habitbull +Godis Withus Vargas,https://lh3.googleusercontent.com/a-/AOh14GjDBXuFRuOlymttR4KWrJtfVycd_-B7l6aGP3ojuA,NOBODY USE THIS APP. Read all the forums. The app does not support the sync once you've bought premium. Everyone's saying the same. And the devs DO NOT RESPOND TO HELP REQUESTS. I have an error that makes me unable to sync due to a connection error though clearly I am connected to the internet. I am a premium user. The app is great but please help me with my problem. I'm tired of taking screenshots of all my pages every week as my remedy for the sync error.,1,54,1.5.11,2020-03-19 02:39:53,,,newest,com.oristats.habitbull +Andrii Maksymets,https://lh3.googleusercontent.com/a-/AOh14GgYXPdKlKHonPxb5acvZ8Zni-OD5SU0RW6_mgNWBQ,"Dear Developers, When syncing will be fixed? Thanks",1,0,1.5.11,2020-03-17 10:31:49,,,newest,com.oristats.habitbull +Saravana Bhavan,https://lh3.googleusercontent.com/a-/AOh14GjiBLZMZ4N7j6ax0Ip6O0H1ImcB0o_6T2ssvtyO,"After purchase, sync is not working. Then y sholud I purchase this app. Profile name is empty, while editing it says ""something went wrong"". And so on",1,0,1.5.11,2020-03-16 19:49:20,,,newest,com.oristats.habitbull +Dino Đanić,https://lh3.googleusercontent.com/a-/AOh14GhlbMx3jeX3IgraZxlS1gQ2Jv3o288Mz9oI48ks,Ugly ui jiss. Fb login dosent work.,1,0,,2020-03-12 08:04:56,,,newest,com.oristats.habitbull +Mark Carter,https://lh3.googleusercontent.com/a-/AOh14GjuGWyUoxR5ctzvhXh_3qAJ6cPG4fb824ldeahT,I bought the Premium version and it will not sync. I have snet numerous requests to support and have received no responses,1,0,1.5.11,2020-03-10 22:58:07,,,newest,com.oristats.habitbull +Hailey Ward,https://lh3.googleusercontent.com/a-/AOh14Ggt-2N6v8r6T6HhnCGtYd5FHxYthJfRCrcIA6v-tQ,"Used to be awesome, now I can't sync, log out or save changes made to habits. The quotes is stuck on same one. I have changed passwords, uninstalled and reinstalled, emailed your company and all but deleted app as it no longer keeps record. Please resolve .",1,1,1.5.11,2020-03-09 23:35:03,,,newest,com.oristats.habitbull +Alex Stransky,https://lh3.googleusercontent.com/a-/AOh14GjOA2C63RMPDlnPVgxMD53McDWygfhkZmPrV3o_pA,Spamming me to rate. Well here you go....,1,0,1.5.11,2020-03-09 11:54:08,,,newest,com.oristats.habitbull +Asad Mahdi,https://lh3.googleusercontent.com/a-/AOh14Gg3cgkmIzBL_gryRe-iV9ZAqfORz7xRv6IhJ55FAA,"I have premium app, Sync is not working, No repply from developer. Just waist of money.",1,1,1.5.11,2020-03-07 04:49:02,,,newest,com.oristats.habitbull +Matt Wall,https://lh3.googleusercontent.com/a-/AOh14Gg3HRnPtBx05zQwQu0D_vdqZ2x2GgbDC50YzbkfdA,"Update: dropped 5 star rating to 1star. App will not sync. I have it on Android and iPad,and neither one of them will sync to the server. App store shows 8 months since any updates. Would not have paid for premium if I knew it wasn't going to be maintained. Original review: I wanted to make something like this myself, but they've already done a great job. I feel more obligated to the daily habits I'm trying to build, and it's great that it tracks my completion streaks.",1,13,1.5.11,2020-03-05 08:01:30,,,newest,com.oristats.habitbull +nerd guy,https://lh3.googleusercontent.com/-nm0fKlGcHi0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNHNbQgiDL8w9ScM4oAOPK6LOT02Q/photo.jpg,App crashes,1,0,,2020-03-03 14:27:43,,,newest,com.oristats.habitbull +Steve Center,https://lh3.googleusercontent.com/a-/AOh14GjZH2NUxVS8qsjxIH9YlFIEuwDgTt16hiYcH08PEg,This app lost all my data. I would sync every day but when I had to reinstall and tried to sync-nothing. I had paid the money for premium but now it wants me to pay again.,1,0,1.3.6,2020-03-01 13:43:57,,,newest,com.oristats.habitbull +Paolo Moretti,https://lh3.googleusercontent.com/a-/AOh14GgjnsPhf5zYR_sYrmLvmc0RgnK-nCbGr70N4pxtVA,"The idea behind the app is good. Although, after paying for premium, the promised cloud sync does not work (several users mention the same issue). There is no way of backup the data either. I cannot see any feedback from devs here. Switched to a different app: ""Habits.""",1,5,1.5.11,2020-02-26 10:59:47,,,newest,com.oristats.habitbull +Shawn .G,https://lh3.googleusercontent.com/a-/AOh14GimB8JG8jdFoBKUorO3FRI4WLUd_QhLuP6euK_4zu4,"If it's a passion project I'd be willing to support the creator, but this seems to now be held by just a shell holding.",1,6,1.5.2,2020-02-22 21:52:28,,,newest,com.oristats.habitbull +Charles Zhu,https://lh3.googleusercontent.com/a-/AOh14GistQiLoz66BQa-D6ifV3uJdMmqpqiD_1BU-dLbPA,Premium does not work. False advertising!,1,1,1.5.11,2020-02-22 17:30:46,,,newest,com.oristats.habitbull +MeToR 3609,https://lh3.googleusercontent.com/a-/AOh14GjrqdJ_2U1WR_Y5unzDUSMGc_7LYJTgL8QIci-RQQ,"Find a new app. Overall if you havent noticed, the dev's left this app. As of recently, the servers are dead. This means you cant make an account, forums are gone, motivation pictures gone, etc. Find a new app,",1,3,1.5.11,2020-02-22 05:21:09,,,newest,com.oristats.habitbull +Daniel Ervin,https://lh3.googleusercontent.com/a-/AOh14GhdVr8SKDHvXaE00Aod8wotseXMwG8Ryg0TdK4cYA,How do i get a refund?,1,1,1.5.11,2020-02-20 19:16:41,,,newest,com.oristats.habitbull +mohammad AL-shahrani,https://lh3.googleusercontent.com/a-/AOh14GhckEYmpZlrJlSPL1fYFmgao-AVqQwecY3plN7W,I was enjoying this app and decided to buy the premium features. But they took the money and provided nothing at all. I tries contacting the developer via Email and no answer at all. Stay Away.,1,1,1.5.11,2020-02-18 06:56:04,,,newest,com.oristats.habitbull +Afaque Palegar,https://lh3.googleusercontent.com/-zi1R4wklG_U/AAAAAAAAAAI/AAAAAAAADhg/AAKWJJO6-vdcxCvcR4JihM0wpubi1_mOfQ/photo.jpg,"I have been using the app from the last 3 years. I am a premium user. When trying to sign in a new device and sync, it's not syncing. I need my data. please help with this issue. Even after reaching to the support team tonnes of times no one is responding. So i am changing the rating from 3 to 1.",1,7,1.5.11,2020-02-17 18:43:14,,,newest,com.oristats.habitbull +Alessandro Daniele,https://lh3.googleusercontent.com/a-/AOh14GjVWVIRix9jGXupCG1Pn8DrajD0AqnSx9wzgEg-Dg,Vorrei avere indietro i miei soldi visto che il login non funziona e che non sembra esistere un'assistenza tecnica. I want my money back since I cannot login,1,33,1.5.11,2020-02-17 15:35:27,,,newest,com.oristats.habitbull +Kishore Mukherjee,https://lh3.googleusercontent.com/a-/AOh14GgRPzSoLrxzcCeBBCA345ejlK_4HuOX85v1pdJLmA,"Don't install this app.This is forgery. I've used this app for more than 2 years when I changed my mobile phone I couldn't login when I logged in it says ""this email account is not in our database"" I have the mail to prove that I had had the account in the App.I mailed the company 4-5 times but there's no reply. 2 years of my habit data is lost.",1,5,1.5.11,2020-02-17 05:45:04,,,newest,com.oristats.habitbull +Mihai Suteu,https://lh3.googleusercontent.com/-HzMjyKDqKkk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM4dSc4if9PHm6SBJpfAz_3x_2zKA/photo.jpg,"Decent, but premium features like Sync do not work, can't even reimport data you exported yourself. Had I realized this I would have never have bought the app, it's just false advertising. I now have to figure out how to port my data to another app where it won't be inevitably lost.",1,4,1.5.11,2020-02-15 17:04:02,,,newest,com.oristats.habitbull +June 47,https://lh3.googleusercontent.com/a-/AOh14Gi857IJj54hipPfVm9_8KTEC9msA5bEorHTDLaZXA,"Do not pay for the app. Sync doesn't work , they dont support the app but they are always ready to take your money.",1,1,1.5.11,2020-02-13 15:17:50,,,newest,com.oristats.habitbull +Lauren,https://lh3.googleusercontent.com/-D_kFFEi-uY4/AAAAAAAAAAI/AAAAAAAAkhA/AAKWJJOUvbvJK0SfU5ap0bV_QXqUkaHE1w/photo.jpg,After installing this app my phone received an increased amount of spam calls. After removing the app from my phone I received fewer spam calls. It might be a coincidence... But it might not be.,1,1,,2020-02-13 04:27:03,,,newest,com.oristats.habitbull +Amanda Nicholls,https://lh3.googleusercontent.com/-qBmIxds3zx0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMaSVxrV_9iPk69Sl6oyW2n_uw4kg/photo.jpg,"*Update* 11/02/20 USE AT YOUR OWN RISK! As expected, no contact from developers. App has not been updated since 2018. This app was great for a month until it kept freezing my phone. A de/reinstall has now lost all my data and looking at other users with this issue, it looks like it is lost forever because of the sync function never working and no contact from developers. Very upset and disappointed.",1,36,1.5.11,2020-02-11 12:00:11,,,newest,com.oristats.habitbull +Z T,https://lh3.googleusercontent.com/a-/AOh14Gj9LwJEXWap4EHN8grct7PvZYjNkivQEiviGclYHsY,"The app itself gets the job done, but it will not sync and the developer is not responsive to questions. Don't waste your money with premium. You won't get what you pay for.",1,1,1.5.11,2020-02-10 06:08:41,,,newest,com.oristats.habitbull +Louis Heath,https://lh3.googleusercontent.com/a-/AOh14GjiRjNs9AuULjlda44iHeObLvYxLiCdvYZ7Wunjbe4,"I paid for habitbull premium for the sync functionality, which fully does not work. I've tried reinstalling the app, reinstalling android, getting a new phone. No luck. Emailed habitbull a month ago and still no reply. If I want to take a backup I have to screenshot everything. not ideal Apart from this the app is decent. It's got a cute meme",1,11,1.5.11,2020-02-09 15:24:20,,,newest,com.oristats.habitbull +Sina Montazeri,https://lh3.googleusercontent.com/-_Ll0AaDJ2N4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNSuS7j8kZYZ4XiIojv9GeDk4C-aQ/photo.jpg,"stealing in 2020: make an app, call it HabitBull, make people buy it, remove it from playstore, republish the same app with a different name.",1,0,1.2.8,2020-02-07 08:35:49,,,newest,com.oristats.habitbull +G C,https://lh3.googleusercontent.com/a-/AOh14GjAY49ILYXWVWZ8O0eEs6R0t_E0vYzvaiP1VHMW,Paid for premium. Sync does not work. Publisher does not reply. Started reading reviews and found numerous people with the same problem. Going to try to get my money back. Nice app if you don't care about backups or syncing between devices or customer support. Switched to Goalify and finding them extremely responsive,1,10,,2020-02-06 15:06:06,,,newest,com.oristats.habitbull +Dirk M,https://lh3.googleusercontent.com/a-/AOh14GibLiu4S9GRqOAAH09EnAatLmoui9u7HgIVn-_TbgM,"Updating my previous review. I recently hit the two year mark on one of my habits, yet the app only shows me of having 30 days. This is the same bug I reported last year. It appears that it does not recognize some of my habits over the New Year. I've reported this problem four times now and have never heard back from anyone. I'm giving up on this app, and suggest you do too. ""I've used this for a couple of years. There was a bug where one week of my tracking wasn't recognized by the app. This happened the week of New Years. I reached out to the developer five times about it and never heard back. Unfortunately, this has become an unreliable app for tracking.""",1,38,1.5.11,2020-02-06 03:52:22,,,newest,com.oristats.habitbull +Bharat M,https://lh3.googleusercontent.com/-KRSCaGaw3ac/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPvuMyBdDH1HkeSa_E7MWVx77sfzA/photo.jpg,This app doesnt sync data.,1,2,1.5.11,2020-02-04 14:06:14,,,newest,com.oristats.habitbull +Alphaeus Tan,https://lh3.googleusercontent.com/a-/AOh14GjqoN_lzW5IFKy0yiYpkhK6MF3fbxMobzpq2gDXkw,"The widget and sync functions does not work on premium. I get the widget error telling me to log in but I already have and even reinstalled the app. Nothing works. Developer, please fix this.",1,1,1.5.11,2020-02-02 15:23:47,,,newest,com.oristats.habitbull +Akasia S,https://lh3.googleusercontent.com/a-/AOh14GiH9spIPQNn24J3UYnGfJcONCWGzGFSJRahAjPg_Q,"No further improvement. UI is kinda suck, there are many better alternatives",1,0,1.4.4,2020-01-31 16:16:03,,,newest,com.oristats.habitbull +Scott Jensen,https://lh3.googleusercontent.com/a-/AOh14GhHpOwyRCN5FKLSEMoAWmcJWfxZ0STyguPZgN2ugQ,"This was a great app but it hasn't been updated since 2018 and sadly it be can become unusable in an instant with no fixes in sight. I cannot recommend this app. I would try something similar maybe open sources, or with dev support",1,4,1.5.11,2020-01-29 00:56:54,,,newest,com.oristats.habitbull +Joshua Williams,https://lh3.googleusercontent.com/a-/AOh14GjULPgLnpFSO6PFR2LQg-26PbjfoPxYqw5QOd2s9Ow,"Paid for premium so I could sync between devices, but it doesn't work and customer service will not respond to my inquiries.",1,1,1.5.11,2020-01-27 20:34:48,,,newest,com.oristats.habitbull +Luca Rossi,https://lh3.googleusercontent.com/a-/AOh14GggJyqrzHaHFpfYqFxcuQqV5vYlZogDRt_CNLANWw,"Paid premium, it doesn't sync at all. Costumer service unresponsive for a long time. Don't spend money on Premium, this app is dead, the last update was in 2018",1,2,1.5.11,2020-01-27 09:31:36,,,newest,com.oristats.habitbull +Ashwin,https://lh3.googleusercontent.com/-N_-OETwJuk0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPp20MbIAVt_c4gBL1zTZz4sbsSzw/photo.jpg,"Good app, but no updates even after sending few suggestions. What is the point in buying Paid version.",1,0,1.5.11,2020-01-27 04:41:47,,,newest,com.oristats.habitbull +Gunjan Kumar Sah,https://lh3.googleusercontent.com/a-/AOh14Gjs1S-QX9EA4FGm237N2aYDs1o1J62DQL0O67BCgw,Sync not working. Don't buy in-app purchase.,1,0,1.5.11,2020-01-23 05:45:43,,,newest,com.oristats.habitbull +Jennifer Bresnick,https://lh3.googleusercontent.com/a-/AOh14GiQpxiERgA0C1gvFWETZOZdRCbDiuSLNgVvvn_aVg,Paid for premium. Does not sync.,1,0,1.5.11,2020-01-23 02:16:33,,,newest,com.oristats.habitbull +Arman Grigoryan,https://lh3.googleusercontent.com/a-/AOh14GiBa453uBvpct28xLAJV7J1TeL9RnapYkOxxvhl5Q,Failed to connect to Facebook,1,0,,2020-01-21 16:48:29,,,newest,com.oristats.habitbull +Adrian Torrie,https://lh3.googleusercontent.com/a-/AOh14GiO6bnw5MOfJ_fXSvHgY4CtB3EDOulzfmCHeTaQEQ,Facebook login fails with an error from Facebook saying the login method hasn't bee implemented correctly.,1,1,1.5.11,2020-01-21 06:53:20,,,newest,com.oristats.habitbull +Ramya Rajiv,https://lh3.googleusercontent.com/-kh7V_NHyA44/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP7fED0DPAlkorGXsN1mqv2tJJgxQ/photo.jpg,Lost all my data when I moved to ios,1,0,1.5.11,2020-01-19 10:38:54,,,newest,com.oristats.habitbull +Megan Owen,https://lh3.googleusercontent.com/a-/AOh14GirdnZF9fKOcyMeLvdKP55y86LAyin106n99F78,Hyper masculine tone is very off-putting and irritating. Hint to developers: Women try to change habits too! At least give us the option of just having hints in our own words...,1,0,1.5.11,2020-01-17 13:09:59,,,newest,com.oristats.habitbull +Adam Mason,https://lh3.googleusercontent.com/a-/AOh14GhSK2EcZgViNpQhsqYBwTCLo9_SqB8RtcVOSW8v1A,"Paid for the premium app last year, now there is no history of my email address ever being registered despite me having the confirmation emails from them when I first paid for it. Lots of complaints on here. Get one of the open source habit trackers & back it up yourself to cloud storage rather than spending money with devs who change the app name slightly & try to charge again. Seen this happen so many times.",1,16,1.5.11,2020-01-16 11:31:26,,,newest,com.oristats.habitbull +Juan L. Rivera,https://lh3.googleusercontent.com/a-/AOh14Ggcw7fiPwqbqFDT6bTmdJVVLhhUeb0IBuSn2PpDPg,"Does not sync across my devices, which it claimed it does. Only reason I purchased. Looking for my refund.",1,0,1.5.11,2020-01-15 12:12:02,,,newest,com.oristats.habitbull +Huda Serhan,https://lh3.googleusercontent.com/a-/AOh14GiM3tEZjdNJiv-x87YFwrWtVuByORpRHk207EQNEKg,It's working anymore after paying for premium,1,0,1.5.11,2020-01-13 04:16:26,,,newest,com.oristats.habitbull +Miss Possible,https://lh3.googleusercontent.com/a-/AOh14GiX_6yZJOdu6mo6qDrGcyQt_DCKdM2wsyfPPoYUSg,Does not log in. After 5 minites it's still trying to log itself in.,1,0,1.5.11,2020-01-10 01:38:38,,,newest,com.oristats.habitbull +RZ apps,https://lh3.googleusercontent.com/-vUZFRutek9M/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPhkcZCWh-_Lt7k1BABKm5SNBNNpQ/photo.jpg,"Had accumulated 5 habits that lasted 17 days and counting (now using a different app.) This pathetic app that I paid premium for, would not sync. ""Check internet connection"" every damn time. I paid for the damn app, sadly probably past my refund day!",1,4,1.5.11,2020-01-08 02:19:31,,,newest,com.oristats.habitbull +felix felices,https://lh3.googleusercontent.com/-6sMcQJgPBfk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMQdoN_gTAtw4Yeo5UVrVu_rWRcrQ/photo.jpg,"Unsupported. Doesnt contain sync feature. Wouldn't issue refund. To the makers and google, get on your hands and knees and repent to g*d",1,0,1.5.11,2020-01-07 16:29:27,,,newest,com.oristats.habitbull +JD,https://lh3.googleusercontent.com/-ZXtDTqZAlkQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPqJKw1posFqQ9j6S_6iEdhL0c_mQ/photo.jpg,"Why are you counting inactive habits for the 5 habits total? It's ridiculous! There are many other apps that don't have this silly, cash grabbing limit.",1,1,1.5.11,2020-01-06 22:29:33,,,newest,com.oristats.habitbull +Philip Dash,https://lh3.googleusercontent.com/a-/AOh14GjmXapkK0qKH-iL463h16g5RFrxIPacHfXhdEbVSQ,Online sync is no longer working and last update was June 2018 which is more than a year. Is there a reason why I should continue using this app?,1,0,1.5.11,2020-01-05 20:23:32,,,newest,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"ABSOLUTELY DO NOT UPGRADE TO PREMIUM. It does not work. It does not sync. The developer does not respond. Google Play will not give a refund. The frees app is flexible. You can track yes/no and count per day habits. The count per day can be any criterion you want, minutes, calories, quantity.",1,1,1.5.11,2020-01-05 19:57:16,,,newest,com.oristats.habitbull +Mark S,https://lh3.googleusercontent.com/a-/AOh14GhanwPS-IW2hDCOAGaOT2lLOqEw1ccbyDTQcDYRgWM,"""High background usage"" Sorry, can't waste my battery spyware like this",1,0,1.5.11,2020-01-05 02:43:01,,,newest,com.oristats.habitbull +Fernando Salas,https://lh3.googleusercontent.com/a-/AOh14GiRnt3fCab7lKdbf9bgRtM3X9UlIrfIAthIZnsY4Q,"Very bad premium services, developers are not taking care of this app anymore",1,0,1.5.11,2020-01-04 23:43:53,,,newest,com.oristats.habitbull +arifin waluya,https://lh3.googleusercontent.com/a-/AOh14Ggy9i5q5KPzolbwl_nQMPCrLpmS-TERxMhu3TwxwA,Please ADD REMINDER 😭 or show me how to sett,1,0,1.5.11,2020-01-04 22:06:51,,,newest,com.oristats.habitbull +James Nwakanma,https://lh3.googleusercontent.com/a-/AOh14GjlQkYqmJnjJviEK0HX-u3pzYBHEll9LcTxyqVV2g,Lies! No multi-device syncing on premium,1,0,1.5.11,2020-01-04 17:19:46,,,newest,com.oristats.habitbull +Nia Hughes,https://lh3.googleusercontent.com/a-/AOh14GhxFpFbBWhluVzZH4pskeZhFowsDdbs5lhzadOE7A,"Abandoned by the devs - hasn't been updated in over a year. Sync doesn't work at all, which was its main advantage over rival apps. Don't waste your time.",1,1,1.5.11,2020-01-03 21:24:44,,,newest,com.oristats.habitbull +Marcus Animation,https://lh3.googleusercontent.com/a-/AOh14GjVCD9adsu1KAHHbWRtnhVVBGPeJZDmkRo1jVV2iw,Was really enjoying the app but now the widgets stopped working.,1,0,1.5.11,2020-01-03 17:14:38,,,newest,com.oristats.habitbull +Fahd Abdalaal,https://lh3.googleusercontent.com/a-/AOh14GhrR4uGd0spFmGQwjLGxSVi5jLlatZQqaB0B4fdLg,"App didn't sync at all !!! I lost almost 6 months and it turned out all users had the same issue and requested a refund, I need my money or solve it now this is cheating",1,1,1.5.11,2020-01-02 20:47:56,,,newest,com.oristats.habitbull +Connor Doherty,https://lh3.googleusercontent.com/a-/AOh14Gi01P_v_YblmA-M_nNCoTHyTLceT6rM3JFEKJznag,Premium subscription for such a simple app is greedy.,1,0,,2020-01-02 18:24:12,,,newest,com.oristats.habitbull +Rohan Sharma,https://lh3.googleusercontent.com/a-/AOh14Ggrn11_iuGjojayEZeIScvHdlBmI1bZkMkGuWYlhA,"Expensive, old and without any support. Also much better alternatives are available now.",1,1,1.5.11,2020-01-02 08:07:10,,,newest,com.oristats.habitbull +Andrew Martineau,https://lh3.googleusercontent.com/a-/AOh14GhVAI-vL6A0CMYt-29S0CgD4TCa2FgtoD3KmF0Gvg,"I like the app, but I don't like rating apps, and this one constantly nags you to do so with no option for it to stop. Even with the paid version, so 1 star for being annoying after I've given them my money",1,3,1.5.11,2020-01-02 05:53:57,,,newest,com.oristats.habitbull +Ic Rex,https://lh3.googleusercontent.com/a-/AOh14GhNvhqQKr12wv2bw21IPNsYqURAsxNWtcgOLNIiqQ,Files Lost Forver. No updates and broken,1,0,,2020-01-01 19:10:11,,,newest,com.oristats.habitbull +Kaustubh Juikar,https://lh3.googleusercontent.com/a-/AOh14GgIZ5PlLbwD3cgOmoOLmp90YIIl9Smqqvfd0FtlNw,awsome application.. i purched it.. but i just want notifation should be blinking on phone like alram clock .. plz add this type of features.. the thing diplys in notifaction should be flash on main screen From last 10 month it's not getting synchronising.. Plz do something @developer We paid for it,1,3,1.5.11,2019-12-31 06:09:11,,,newest,com.oristats.habitbull +Cretinous Martyr,https://lh3.googleusercontent.com/-4o8I5cFYM5E/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMLPmgg-qPHxL6B-2BDrxY1Bsg4sA/photo.jpg,"Very expensive for a simple app, and quite useless without buying the premium. Only tracks 5 habits? Lame. I can't believe this is the app advertised in the play store, and still has a high rating because it is garbage. Sounds like even if I bought premium it would be worthless for transferring data to a new phone as the app claims, I won't even risk it.",1,49,,2019-12-31 03:50:58,,,newest,com.oristats.habitbull +Nick LeBlanc,https://lh3.googleusercontent.com/a-/AOh14GghpgJcw0dPYzNFnhkMKTK7DDj0pWju1EHW61Ijd2I,"Broken! So far, not impressed. I bought this expecting multi-device sync and haven't seen it do that. It wouldn't even restore a backed up file after logging off then on.",1,3,1.5.11,2019-12-30 23:52:13,,,newest,com.oristats.habitbull +Neal Jack,https://lh3.googleusercontent.com/a-/AOh14Gi-nb6A9qFicwHoSfhWui585Gz7NpPQQaMl7Tyr2QU,"Developer is non-responsive. For some reason when downloading the app from the play store it associates with the incorrect Google account. I have verified I am downloading the app with my intended account, however it continually associates with the wrong account. It's not really a big deal, but I was planning to upgrade to premium with my play store credits. The account this app associates to does not have any.",1,24,,2019-12-28 19:02:01,,,newest,com.oristats.habitbull +Suman Majumdar,https://lh3.googleusercontent.com/a-/AOh14GjzXx7k9vPGxVJkSHm8NQxdTgYvk6W1fFM48nMp,"App hasnt synced in 190 days. Won't let me log out. Still loads all my old data from last sync. Hasnt been updated since 2018, that should be the best clue. Dont buy!!",1,7,1.5.11,2019-12-26 14:23:50,,,newest,com.oristats.habitbull +Veronica Gritto,https://lh3.googleusercontent.com/--kOidOU8vOI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPLdYWCEp54SyPMWAkMYyA2nbohVQ/photo.jpg,"I loved this app. I've been using it for years. Today I have updated it and mh2 premium account just vanished! Now it prompts me to buy Premium again. What happened? Could you help me please? After a few years and after the second time paying for a premium membership and after no one reacted to my complaint, my premium membership and all my data vanished again without any backup as promised. This happens everytime I buy a new phone. Very dissapointing. I will not fur sure buy a third premium!",1,0,1.5.11,2019-12-25 11:43:22,,,newest,com.oristats.habitbull +Gustavo Carvalho,https://lh3.googleusercontent.com/a-/AOh14GhYSRnroZoUe2bXyglSfd9Xty3Qn5-BLhnMLwS4_g,Only 5 habits,1,0,1.5.11,2019-12-21 10:43:54,,,newest,com.oristats.habitbull +Joe Kowalczyk,https://lh3.googleusercontent.com/a-/AOh14Gg-6QcMWBhUlM-P7UBrIEiqmWe1U4es4OpKmAP1FA,"No longer syncs, no longer supported, so no longer installed on my phone. Was a good app. Shame :-(",1,0,1.5.11,2019-12-19 21:07:44,,,newest,com.oristats.habitbull +Karam Murrar,https://lh3.googleusercontent.com/a-/AOh14GgKpi0k0tlJPjBXJb5b4JPlhbK6WdyYmWmR4i2t,Can't sign up with email!!,1,0,1.5.11,2019-12-19 18:26:58,,,newest,com.oristats.habitbull +Meghan Lee,https://lh3.googleusercontent.com/-haVnRfc_LiY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPZJ1Ib_rkmRWbKzi-4nHgI10RcYQ/photo.jpg,Will not let me register. Tried uninstalling and reinstalling. Tried both the email login and the Facebook login.,1,0,1.5.11,2019-12-18 21:08:56,,,newest,com.oristats.habitbull +Ragavan S K,https://lh3.googleusercontent.com/a-/AOh14GgquxLF2IIldxWeL_W3sCpsW8RGA_y3Pns6MyB6wg,Need more habit columns for free,1,0,1.5.11,2019-12-18 14:35:58,,,newest,com.oristats.habitbull +Mark Chuang,https://lh3.googleusercontent.com/a-/AOh14Gghol-SHzQsIHCS_2v-YL_VxwLLGZ8wEN_x_SnqFfk,No longer syncs.,1,0,1.5.11,2019-12-16 18:28:26,,,newest,com.oristats.habitbull +"Costa, H.T.",https://lh3.googleusercontent.com/-kMDBFvflHb0/AAAAAAAAAAI/AAAAAAAAYo4/AAKWJJPiOtl73tpmcJJPHxL6UBY1LFjiuw/photo.jpg,"The last update was more than a year ago and things started to stop working. The company that owns it seems to be a scam. It was a great app, I paid for it and got no support",1,0,1.5.11,2019-12-16 03:51:54,,,newest,com.oristats.habitbull +Sharath Narayan,https://lh3.googleusercontent.com/a-/AOh14GjLfATWdcoY9KJNu_HOsRcV6VxXTZHcZFN5uSxEQQ,Sync not working anymore,1,0,1.5.11,2019-12-14 05:27:25,,,newest,com.oristats.habitbull +Ryan Clark,https://lh3.googleusercontent.com/a-/AOh14GjmNkoIbRU8s5-qkVncZGB9uB9Ro47eXxPuhr1uDIg,"If you pay for premium, you won't actually get the premium services (as other reviewers have noted). Troubleshooting steps from their site don't work, and no one responds to the support email. Contact Google and they'll reject your refund request.",1,11,1.5.11,2019-12-10 03:58:43,,,newest,com.oristats.habitbull +Daniel Brock,https://lh3.googleusercontent.com/a-/AOh14Gi7eMsC5fDU7DqN4VvrcoiM_Fn5qH_0FKAM_u0g4A,"App no longer supported, data loss likely: Was a great app until I needed to migrate to a new phone. The sync feature never worked, and I lost months of habit data. I tried contacting the developer via the supplied email, but zero response. I used to recommend this app to many people, but I'm done with it.",1,27,1.5.11,2019-12-07 01:28:15,,,newest,com.oristats.habitbull +Anadi Chaturvedi,https://lh3.googleusercontent.com/a-/AOh14GhEVOKnfWSk-KmUEamh1_3TqAv9FaY5O7-l4bfM7A,I have paid for the premium features but the sync is not working. I mailed them but got no response,1,2,1.5.11,2019-12-05 03:06:30,,,newest,com.oristats.habitbull +J H,https://lh3.googleusercontent.com/a-/AOh14GggparSDxww2JYUFbkFm5ixZCYIp438HnT8lhxrHA,The app hasn't synced for nearly 9 months despite being a premium user. The support team haven't acknowledged my email. It's a good concept but they've failed to make it work and don't provide customer support. Check other reviews. Go to play.google.store on a web browser. Select My Account and go to order history. Select the ... and it offers you an option to request a refund. That should get the developer to either repair it or take off the premium services it is falsely selling.,1,102,1.5.11,2019-12-04 08:02:56,,,newest,com.oristats.habitbull +Ruchi Raj,https://lh3.googleusercontent.com/a-/AOh14GivpkH_NPgGTdgjpepEFHjMiPK5VKaktjYkTrnHcA,Only 5 habit you can update,1,0,,2019-11-29 18:14:45,,,newest,com.oristats.habitbull +Aditya Pareek,https://lh3.googleusercontent.com/a-/AOh14Gj9w8qooQNi4uL8y0QEJk1ekecf3kWFMt6JVZB8mg,Very poor customer support despite being a paid subscriber. Strongly recommend against this app. Not able to sync across devices and there was no response despite sending mails.,1,0,1.5.11,2019-11-29 09:05:07,,,newest,com.oristats.habitbull +Us Sid,https://lh3.googleusercontent.com/-9KkZUfaylEs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMJGsDI5o3Q-SG1wrmiyyXgzjzXjA/photo.jpg,Sync isn't working. No response to emails. No updates for ages.,1,1,1.5.11,2019-11-25 22:37:39,,,newest,com.oristats.habitbull +Siddhant Kumawat,https://lh3.googleusercontent.com/-PDkUSmnd-g4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNoiw4RS2znYSx0-GnWKUJmbSANuw/photo.jpg,It's been 1 week since I'm using the app. The reminder system worked fine for 1day and from next day the reminder system stopped functioning. Really disappointed. May be uninstalling the app after few days. Hope this helps.,1,0,1.5.11,2019-11-25 17:02:32,,,newest,com.oristats.habitbull +Fahad Ali Khan,https://lh3.googleusercontent.com/a-/AOh14Gj8bLm5ii68Yk2d2pBd3xDfPU0TPhi2tr0VWAz1MA,"I bought premium and now I can't login to the app using Facebook. (and I can't login any other way) I get this message: ""Login Failed: You can't use Facebook to log into this app or website because there's an issue with its implementation of Facebook Login.""",1,5,1.5.11,2019-11-25 03:13:12,,,newest,com.oristats.habitbull +Sean Gainford,https://lh3.googleusercontent.com/a-/AOh14Gjdfl3OgQZj34QOdK5oukwqmmevfhzlzVEwrPnW8A,"Gives a cheap buy once option for Android users but for Apple users a more expensive yearly subscription price, which is very discriminatory.",1,0,1.5.11,2019-11-23 12:28:18,,,newest,com.oristats.habitbull +Jonas Katauskis,https://lh3.googleusercontent.com/-4ElHqEnT2b4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM6x9BgoB8AmkKWgsi1WkcDpt2dmQ/photo.jpg,"very simple app to track your progress towards acquiring a habit, the only downside is that you can't sync the app as it says ""no internet connection"" when there absolutely is. Also, together with this bug all forums are no longer available as well as daily quotes, it's just gone. Previous rating was 5 stars, but with this bug continuing for half a year now I can only give 2 stars.",2,24,1.5.11,2020-03-13 05:20:57,,,most_relevant,com.oristats.habitbull +Vera H.,https://lh3.googleusercontent.com/a-/AOh14GiyYZZcqF2-B2HH32vZsS2C9xwtYpHiwlb2UhkWDpg,"I really like this app. Enough to purchase the premium a few years back, but the app didn't update to premium for me, and there was no response when I contacted the support. Seems like I'm not alone in this experience. Don't put your trust in the developers!",2,3,1.5.11,2020-01-25 22:20:01,,,most_relevant,com.oristats.habitbull +Austin Price,https://lh3.googleusercontent.com/a-/AOh14GgPtUwHiuvGM6RT8tvUZ1j9FORIoi-gra01UFMW,"Seems like it could be very helpful. Getting very frustrated with it always opening on monthly view even though I have weekly view selected in settings. Even tried switching it, but no matter what opens on monthly",2,1,1.5.11,2020-03-20 03:03:30,,,most_relevant,com.oristats.habitbull +Kamran Aslam,https://lh3.googleusercontent.com/-mJsRQqiZLiE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOQbZtUUxhp6qE_BN-CO6MYU45Oiw/photo.jpg,"Can't see new topics of discussion. Also can't add discussion topic even though I have excellent internet connection, Wi Fi or Data. Please fix. I have no connection issues with any of my other apps.",2,2,1.5.11,2020-02-25 08:54:51,,,most_relevant,com.oristats.habitbull +Damon Chang,https://lh3.googleusercontent.com/a-/AOh14GjU1Fmak6LTg3fCXjNGu4D2kBmU1x_HdND79pE5LQ,DO NOT BUY PREMIUM Version!! App stopped synching 7/27/2019 and is no longer supported. I got Premium to sync to new phone since I've been using the app for over a year and wanted to keep tracking. $10 wasted! Very disappointing because basic version is great - simple but fully functional and effective for tracking up to 5 habits. Good visuals and the ability to make notes. Premium = tracking >5 habits and syncing across devices but no more! Would be 4 stars if still supported and worked.,2,19,1.5.11,2019-11-10 07:41:38,,,most_relevant,com.oristats.habitbull +Travis Arrington,https://lh3.googleusercontent.com/a-/AOh14Gj5Wm1ymIn3Rj1VhuyJ-pQqUhgcMuuDzh3Tv8PFUA,"Customer support is completely unresponsive. I purchased the upgraded version and it doesn't sync as promised. There has been no help on FB, email, nada. Kinda sucks TBH. The app is nice. The Android widget is what makes it great. Plz fix the sync issue and I'll update my review if your customer support reaolves the matter and makes things right with me.",2,20,1.5.11,2019-12-28 20:11:39,,,most_relevant,com.oristats.habitbull +Matt Frederick,https://lh3.googleusercontent.com/a-/AOh14GjwNuaWiaoxfXRjqQEivs6wbF1bgeaPCUNWaa5ZDhk,"Widget freezes, app does not sync. I had a galaxy S7 edge and just got an S10+. App fails with both phones. Regret spending money on this.",2,0,1.5.11,2020-03-12 21:24:26,,,most_relevant,com.oristats.habitbull +Phillis N.,https://lh3.googleusercontent.com/-rBIJQyUIhoc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOow_eW1IolU18N5_Vc9bI8pOpTig/photo.jpg,"Great app in the beginning. But once you start skipping days, the notifications become insulting shaming words. For example, calling me a couch potato. Which I am not. So dumb. What expert would ever say that insults are motivational? Almost none. I'd rather use an app based on the principle of kindness, not shaming.",2,1,,2019-10-10 17:13:09,,,most_relevant,com.oristats.habitbull +Ryan S,https://lh3.googleusercontent.com/a-/AOh14GgzpVIXhMzDsBg2HzFnsTXvtJ0ACZPH67XrG_XfIg,Unable to import any data from the .csv file in cloud!!! No option to get any data back! Bought premium and im not happy. Beware!!!,2,0,1.5.11,2020-03-02 18:38:45,,,most_relevant,com.oristats.habitbull +RonJonae Felder,https://lh3.googleusercontent.com/-G2tnfw6TKn8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMmmkR7BItx8OoexuYBkk7mzuwcJA/photo.jpg,"While i can understand limiting somethings for premium only, i've never seen an app block widgets behind a pay wall and quite frankly this is only useful to me if I can keep track of things on the homescreen. Maybe I would have liked it but so far i havent used it because i keep forgetting its there.",2,1,,2019-11-05 08:42:24,,,most_relevant,com.oristats.habitbull +Laura Slade,https://lh3.googleusercontent.com/-94Fswwqqj4c/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPVjvIyRUL7SVsfDFWlgfzwazatgQ/photo.jpg,"Worked well for a few days and then just stopped sending reminders. The reminders would pop up if I opened the app myself but that's obviously not the point of a reminder. Also, froze a lot. Pretty much useless. When it worked, it was excellent.",2,5,,2019-12-18 19:50:02,,,most_relevant,com.oristats.habitbull +XxUltimateFoxesxX,https://lh3.googleusercontent.com/a-/AOh14Gg0irc6ss9iOnCPVegz6rf_os0c552ptZP8UH8naA,"The tracker itself is not bad but I set up a notification to remind me to do something and am not getting them. I already checked my settings, all is good. It's nice if you remember to go in and mark done but notifications are not working.",2,1,1.5.11,2020-01-02 22:32:08,,,most_relevant,com.oristats.habitbull +Michael Kish,https://lh3.googleusercontent.com/a-/AOh14GgdiJ9tCzKfZMr97mZUEOlVRuob8A1awOKR2Ouh2w,"Good design, simple and clear but with the option to dig down for more details. However, they don't respond to emails and haven't released an update in over a year. Seems like this project was abandoned.",2,0,1.5.11,2019-10-26 02:32:30,,,most_relevant,com.oristats.habitbull +Ron Togunov,https://lh3.googleusercontent.com/a-/AOh14Ggl4O6L99aXb-xndv728FAIiQnQx3r3egm98O0Kog,"Used to be a great app, but I've moved phones, but the sync did not work and all tracking data has been lost. Even after having paid $18 for premium. Very much a shame.",2,0,1.5.11,2019-11-16 05:15:24,,,most_relevant,com.oristats.habitbull +Jaco Pretorius,https://lh3.googleusercontent.com/a-/AOh14GiUv1ZDXmqIhOhqfK7p8h3kCjsE2K0CCvIjE-Mh4Q,Sync no longer works. Also app has been buggy lately - closes down and does not respond. I'm now using Loop Habit Tracker which is more stable.,2,0,,2020-02-15 19:42:27,,,most_relevant,com.oristats.habitbull +maggie1357,https://lh3.googleusercontent.com/-W1fucj9yofA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJObs4qu5NoVsE4X_150X3BkTxJ_9g/photo.jpg,"Can't choose when to start. I like setting goals/habits for advance dates once I'm done with one+. Also, you can't edit a habit/goal to start over, you have to delete and start new. Doesn't save your previous habits/goals to do again.",2,1,1.5.11,2020-01-02 14:44:28,,,most_relevant,com.oristats.habitbull +Rn Matsuda,https://lh3.googleusercontent.com/-YvEPevmvqQc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOPLHdx5M83jIzpcejALIIKurURvA/photo.jpg,The motivational messages are annoying. You can only track up to 5 habits in the free version but it is totally not worth paying for more. Good riddance. I suppo this kind of app is just not for me.,2,0,,2020-01-03 08:45:28,,,most_relevant,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I loved the app and purchased it to help my son keep up with studying. I paid for the premium account which indicates you can log in on multiple devices both iOS and Android. After setting it up on my phone, which was easy but took some time,when I tried logging onto my son's phone it didn't recognize the account. I contacted customer service but didn't hear back. It's a nice app, really like the features, so this was really disappointing. I could set it up again on his phone but without me being able to monitor on my phone it's not helpful. I still hope someone can help me fix this or I should get a refund for my purchase.",2,12,1.5.11,2018-11-18 14:18:32,,,most_relevant,com.oristats.habitbull +Dave,https://lh3.googleusercontent.com/a-/AOh14GihOWKpR-X9cd6uAYey7Ih4Jyc9BrdS7hdgJcbu3w,The app has stopped synching and cant get it working very frustrating. I paid for premium and no one replies to help resolve which is a real shame as the actual app when working is very good.,2,3,1.5.11,2019-11-21 04:51:54,,,most_relevant,com.oristats.habitbull +Chona @Vivaz,https://lh3.googleusercontent.com/-oJpT2hfrfqQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPX_JSBHneOeYmfdAQQHa0n-BcFTg/photo.jpg,"I liked the app and I purchased it. But I can't sync any data from old phone. And when logged out of the app, there is no way to login again except reinstall the app. So if anyone is fine with restart all the progress everytime you change phone, this app is for you. But since I like to keep my progress to the new phone, I am stop using this app and find another one.",2,15,1.5.11,2019-09-13 19:34:50,,,most_relevant,com.oristats.habitbull +Chris Holmes,https://lh3.googleusercontent.com/-tg9XOF_LS4w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOhZcr2W7Pjul9cNc6lK8l2radq2Q/photo.jpg,Reminders are not working. I have an Asus ZenFone 4 (shouldn't matter) and I have set the reminders multiple times with no success. I feel this is the most important part of this app as I need reminding in order to affectively create a habit. Any feedback would be greatly appreciated. My rating my change after feedback.,2,0,1.5.11,2019-02-01 15:21:50,,,most_relevant,com.oristats.habitbull +Rachael Coyne,https://lh3.googleusercontent.com/a-/AOh14GiYB88ITxCrS6V_QBren_vlCLgVojyWylnbIJo,"Good app but don't bother with premium. I bought premium for the ""powerful widgets"" and ability to track extra habits. Don't bother. The widgets are nothing special and if you read the tips section the developer even says it's best to only track a few habits at a time! After feeling ripped off I emailed the developer twice requesting a refund but have received no reply. Great free app but don't waste your money on premium.",2,12,1.5.11,2019-09-10 12:44:12,,,most_relevant,com.oristats.habitbull +Darren Randall,https://lh3.googleusercontent.com/-04AMt8uxFRw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOhC5Ci_1uhSu6xWfyv1RS7Levkqg/photo.jpg,Mixed great app but don't by premium. Won't work without play services and developer unresponsive,2,0,1.5.11,2020-01-10 13:05:48,,,most_relevant,com.oristats.habitbull +Håvard Andersen,https://lh3.googleusercontent.com/a-/AOh14GheGCH_TW7ovjt0Hq35b-alkr9lbkwX_C4FtaBF,"It's misleading to list data export as a reason to buy Premium, when it is not included with Premium. It would be great if you could change this to accurately describe your three tier pricing system. Additionally, the Platinum purchase option is currently showing me the full price even though it is advertising a 33% off. The greyed out full price is exactly the same as the 33% off price. Will give higher star review when these are fixed..",2,92,1.5.11,2019-01-30 09:27:46,,,most_relevant,com.oristats.habitbull +Luke Sullivan,https://lh3.googleusercontent.com/-Ww5WD5T0lzA/AAAAAAAAAAI/AAAAAAAADHc/AAKWJJOhqj-hl4fPKzECfAhruir00HpkNQ/photo.jpg,"After changing my email, I cannot use HabitBull's premium features. I have tried emailing support--no response--and finding a way to restore the purchase or even purchase it again, but no such luck. I am forever stuck with the app thinking I have pro, even though I do not. It's a shame, really, for what is otherwise a fantastic app.",2,6,1.5.11,2018-11-03 22:23:10,,,most_relevant,com.oristats.habitbull +Nick Andrews,https://lh3.googleusercontent.com/a-/AOh14GgHICjChgpobL19rofK7X-FibekfkIm1RJBqkJZMQ,"It seems like this app is no longer supported. I've paid for premium, but sync stopped working several months ago, and developers have not replied to a support request. So - on moving to a new phone - my habits and streaks are now lost. I can see from other reviews that this is a widely reported issue. I guess the app has now been abandoned.",2,278,1.5.11,2019-09-24 13:52:52,,,most_relevant,com.oristats.habitbull +Alia Mirza,https://lh3.googleusercontent.com/a-/AOh14GgE-3OHgBViE_dDSEFR9C7HcJq4cO5eIk31hgMd,"I upgraded to Pro after a couple of weeks & initially excited about the app. Having used it for a while now I'm starting to regret my purchase. There are some pros but more cons. It's buggy, doesn't sync well at all across devices, the UI is very cluttered, the forum needs serious updating, a search tool for eg. The last update was ages ago, given how pricey this is you'd think the developers would make it worth it but they seem to have disappeared!",2,176,1.5.11,2019-06-22 17:11:05,,,most_relevant,com.oristats.habitbull +Caitlin Wu,https://lh3.googleusercontent.com/a-/AOh14GgAGdVpdIYStecFuy0LPXROFBK4Id375df9tU7f,"Unable to log in, unable to create a new account or link to facebook",2,1,1.5.11,2020-02-23 07:26:13,,,most_relevant,com.oristats.habitbull +Matt M,https://lh3.googleusercontent.com/-XcEWsAOXlos/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOFdCv6ulKISJpENFJeZ1vhfYRuTg/photo.jpg,"I like how the app has options to write notes/journals for each day. It gives you the option to reflect on how you stuck to your habits. Most other apps don't have this feature. That said, I'm rating the app two stars because the notifications don't work for me. I have set times for reminders throughout the day, but the app sends me random notifications (reminders) when I don't want them. And on other days, no notifications at all. No app updates from the developer in over a year either.",2,4,1.5.11,2019-09-17 03:08:01,,,most_relevant,com.oristats.habitbull +Ajai Shankar,https://lh3.googleusercontent.com/-6ovCiV-_0ro/AAAAAAAAAAI/AAAAAAAAJ3Q/AAKWJJO7IOyUUjhdn7unXT7FzjPUryN8zQ/photo.jpg,"The app is good to use overall. Except, as a number of other folks have said, it does not sync. And there is no response from the developer on this issue. Annoying to have paid for an app that claimed the sync feature, when it doesn't actually work. What that means is you lose all history every time you change the phone.",2,18,1.5.11,2019-09-30 00:20:44,,,most_relevant,com.oristats.habitbull +Abigail Wigley,https://lh3.googleusercontent.com/a-/AOh14Gia9cU6W--4x3l5lk9Gtb1aCxpT7LAw6AMfamGFwg,"I had my phone switched off one day at the time my reminder usually pops up. Ever since then I've not got notifications at all, no matter if I try reset them or whatever. Kinda annoying because the calendar app on my phone has also stopped giving notifications lately so I keep forgetting to take my medication.",2,2,1.5.11,2019-03-02 01:28:42,,,most_relevant,com.oristats.habitbull +Mariah Angele,https://lh3.googleusercontent.com/a-/AOh14GjgRsFXSKSu9FsCEQOoiGW6XCpvSE54mFcDZj6uAA,I love the ease of the application and the setup. I don't like that the way they send you reminders that are sometimes rude or shame-based. it doesn't make me want to try any harder when I get scolded for not fulfilling my goals. positive encouragement as the best way.,2,0,1.5.11,2019-03-16 03:21:31,,,most_relevant,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I love that you can chose x amount of days a week to complete a habit, other apps force you to commit to specific days, the flexibility in this app helps me succeed, what I hate about this app is it fails to get my habit completion-for example I did my workout for the day but still receive repeated notices to do said workout for that day. way to drain any joy out of an accomplishment habitbull!",2,9,1.5.11,2019-03-28 22:40:55,,,most_relevant,com.oristats.habitbull +Rachelle Gwin,https://lh3.googleusercontent.com/a-/AOh14GhnxwG6fduKdNtQ1s4hYWPRIdBcnxx0UEHR3_if,"I love this app, but my premium service doesn't seem to follow me. I sent multiple emails to get it resolved however I'm only getting autogenerated response emails.",2,0,,2019-12-07 11:57:29,,,most_relevant,com.oristats.habitbull +DNA3e8,https://lh3.googleusercontent.com/a-/AOh14Gh7yHbdCPs8ZikX7QLZEeNNLteg7HcIp2XyRa_j,I was testing this to replace Fabulous. So far the notifications are not persistent enough. Fabulous is able to wake me up in the morning.,2,0,1.5.11,2019-11-10 19:32:16,,,most_relevant,com.oristats.habitbull +Vikas A,https://lh3.googleusercontent.com/-eW5dUPe4IAs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO5t5ptQn95i6TDrwArPbD7E0bZYQ/photo.jpg,"Hello Habitbull team, I need to check all features in premium version so can you give me access to premium version for 2 days so that I can try all features and check if the feature that I need is present or not and then buy premium version.",2,0,1.5.11,2020-01-27 05:27:19,,,most_relevant,com.oristats.habitbull +Kyle Smith,https://lh3.googleusercontent.com/a-/AOh14Ggidf5zb99g7hX1Z196dFS3OvGaMIAQIsh1zqNnJQ,"This would be great if it didn't require me to mark negatives. in other words, it requires me to mark everyday I did NOT do something, such as smoke a cigarette or drink alcohol. This is overly cumbersome over time and is going to cause me to stop using the app because I don't want to have to check everything that DIDN'T happen. This could be much better if it assumes I didn't drink or smoke if I didn't make any mark for that day. Or at least give me the option to do it this way.",2,5,1.5.11,2019-05-19 20:30:07,,,most_relevant,com.oristats.habitbull +Daniel Yoshizawa,https://lh3.googleusercontent.com/-IakXGyAEziQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNAIuPQoLYsctvqQ-13MAmf2lWrhw/photo.jpg,"Too much configuration, not very intuitive, I'm looking for something simple that only counts something for the day, not to set goals, reminders, notes, and all that overload of information that keep jumping from screen to screen, not looking for enterprise app just for personal use.",2,3,1.5.11,2019-04-05 14:31:26,,,most_relevant,com.oristats.habitbull +Josh Yuter,https://lh3.googleusercontent.com/a-/AOh14GiTae-hyk-zxLPxKyVe9-_QSRkDVCtXqllpk5Bh_YY,"App is very good for what it is, but the sync feature stopped working for me. The FAQ says it's due to a rooted phone but this happened twice on non-rooted phones. HabitBull offers no support to fix. 2 stars bec it works standalone, but if you need syncing know there's a risk of permanent failure.",2,6,1.5.11,2019-08-07 17:07:40,,,most_relevant,com.oristats.habitbull +Robert Czyzewski,https://lh3.googleusercontent.com/-3INmnyL6bko/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOoKY9huOmeE3xEnIMUHBZj929Hhw/photo.jpg,Claims syncing but it always fails to sync. Lost all data when got new phone. Donwgrading to two stars.,2,0,1.5.11,2019-10-23 16:23:45,,,most_relevant,com.oristats.habitbull +Erica Magallon,https://lh3.googleusercontent.com/-qQU7XMDw_4s/AAAAAAAAAAI/AAAAAAAACMM/AAKWJJO_85q5eSYlDme7WbNW8rbq3n3llA/photo.jpg,Having trouble syncing on new device; says there is no internet connection but my connection is strong.,2,0,1.5.11,2019-11-08 07:59:11,,,most_relevant,com.oristats.habitbull +Setsuna Mudou,https://lh3.googleusercontent.com/a-/AOh14GjJU93LTfkPfQKvdAAymIV719ZMAWukgEwooJe94w,"Can't sync!! I paid to have the ability to make more tasks, but that's about all it's good for.",2,0,1.5.11,2019-12-12 21:12:58,,,most_relevant,com.oristats.habitbull +Patrick Tritschler,https://lh3.googleusercontent.com/a-/AOh14GiXDs2bmVYPORwhfBgxlV83E43HCT5lg5WxKPin36M,Love and use the app BUT sync feature does not work and my attempts at eliciting support from customer service have gone unanswered which is disappointing.,2,1,1.5.11,2019-12-22 17:01:42,,,most_relevant,com.oristats.habitbull +Jessica Mehring,https://lh3.googleusercontent.com/a-/AOh14GgcGDZRUt0V7_ZpHdqOYmn9zJritQC3-HI5lV3RTJM,"Fine for tracking, but the reminders stop working after a couple of weeks (this has happened with every new habit I've set up, and I have a premium account) and the developer doesn't respond to support requests.",2,0,1.5.11,2019-01-05 04:27:06,,,most_relevant,com.oristats.habitbull +VINAYAK MAGDUM,https://lh3.googleusercontent.com/a-/AOh14GjAthnazCqPpXCrMmCfVfH0VJr3MnM757sAd6MxIA,I like the overall app. It is the best. But even after setting the reminder for my habits. I do not receive any notification or reminder. I have checked with my notification settings for this app and it is turned on.,2,0,1.5.11,2018-10-09 19:29:54,,,most_relevant,com.oristats.habitbull +Laura Foster-May,https://lh3.googleusercontent.com/a-/AOh14Gh2Xzi4f7zXihNNSMYquPbpFqXPQLHsyvIQQ2MlUg,"I like that it allows specific habits, I don't like that it does not give proper percentages of how much you've done your habits. after using it about a month i deleted it, because even though i was doing almost every habit 100%, it kept giving me <50%. it was demoralizing.",2,0,1.5.11,2019-07-31 11:11:01,,,most_relevant,com.oristats.habitbull +Clifford Erasmus,https://lh3.googleusercontent.com/-6TTktig66_8/AAAAAAAAAAI/AAAAAAAABi4/AAKWJJOj_6NbuabfkEpVjYzQWUPxNEpfGw/photo.jpg,"Syncing devices doesn't work, even after reading and applying suggestions in the FAQ of the website...",2,0,1.5.11,2019-11-01 13:32:49,,,most_relevant,com.oristats.habitbull +Alexei Gubin,https://lh3.googleusercontent.com/-If5Jhc6mjKc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMPiowdzZ88D-Zix1vpJbFAlyQnWw/photo.jpg,"I would not recommend this app bc of an essential flaw in design - it doesn't allow you to just type in habit, instead it quizzes you. So, a simple act of just typing what you'd like to do turns into this crazy and overly complicated thing.",2,8,1.5.11,2018-12-07 15:46:02,,,most_relevant,com.oristats.habitbull +talal alshehri,https://lh3.googleusercontent.com/-T7H_pqoFGmM/AAAAAAAAAAI/AAAAAAAABWg/AAKWJJO897GX2e0dXSJVyL0kFxZ9D0TTvA/photo.jpg,I bought the premium. And I can't sync the data between my devices.,2,0,1.5.11,2019-11-02 20:02:38,,,most_relevant,com.oristats.habitbull +Wayan Adhi,https://lh3.googleusercontent.com/a-/AOh14GjFDAnH60PmHVLu3YlAJRvxlLMOksMN0laZn0AY,"I'm changing the rating into two stars because the sync feature which previously work fine has no longer work. Looking at the last update I feel like the developer had abandoned this apps, which is quite sad considering this usef to be the best apps on building habit.",2,13,1.5.11,2019-08-23 00:33:56,,,most_relevant,com.oristats.habitbull +Devon Gillespie,https://lh3.googleusercontent.com/-QyaDBm3deeo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOa8piPihLQfP_WY4xCGFu2wgB_-A/photo.jpg,"Worked really well, however the widgets work for a day then won't respond unless removed and re-added. . . Eevveerryy day. won't remember to actually use it without the widgets, so its useless now. not worth paying extra.",2,0,1.5.11,2019-07-03 19:47:35,,,most_relevant,com.oristats.habitbull +Maka Hansen,https://lh3.googleusercontent.com/a-/AOh14Ght_RpeACz8rmr2_9788lCytGK0cEz5hWJ6HOiX_7s,Used to be my favorite app! Changed phones and it doesn't recognize my premium purchase. I've been emailing for support for two months with no response. So disappointed.,2,5,1.5.11,2019-04-14 17:58:51,,,most_relevant,com.oristats.habitbull +Алексей Ивасечко,https://lh3.googleusercontent.com/a-/AOh14GgNMA2-y67nVvhmxmcTwW2eXem10al_aZkr-zr2fg,"Password reset is broken, cannot transfer it to a new cell phone. Think twice before buying this app. The habit-related side is good, however - this is why I bought it.",2,2,,2019-03-31 17:15:43,,,most_relevant,com.oristats.habitbull +Rushil Paul,https://lh3.googleusercontent.com/a-/AOh14GjThDDZa6uYECKgTPUjlqgIN83EbnMldriAU9ptcA,Loading takes too long and reminders don't work.,2,0,1.5.11,2020-02-23 08:06:32,,,most_relevant,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Had annoyances with the UI, the font was too big for me and I couldn't see a lot of things at once. And for all its gimmicks, it's really just a simple app.",2,0,1.5.11,2018-09-16 14:55:26,,,most_relevant,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Love the app. Would love a version for Windows/Chrome to use on PC. Also I bought a premium version and now when I opened the app after 4 months it has reset itself to the non-premium version.,2,1,,2018-11-17 01:42:36,,,most_relevant,com.oristats.habitbull +Robert Adams,https://lh3.googleusercontent.com/a-/AOh14GiKaI6v5yYY56dN-WHZOcILAWXaXfEz1cN4DD2M,"Really? $8 for a habit tracker? There are other apps that do the same thing for far less money. I don't mind paying for apps, but this seems like price gouging. Oh, and it's $10 if you want the ability to export your data!",2,1,1.5.11,2019-09-29 20:09:28,,,most_relevant,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Free version allows only up to 5 habits to be added, but app description doesn't mention it. Had to spend an hour setting up habits then uninstall the app and find a new one.",2,0,1.5.11,2018-12-06 14:19:31,,,most_relevant,com.oristats.habitbull +Kenisha Daily,https://lh3.googleusercontent.com/a-/AOh14GjvApq2h56hZQ82_GEiXFspt8J0LQAjiRKaYgT8Hg,it's not worth the premium. I tried to get a refund because it wasn't what I thought it would be and no one has contacted me. They claim to read every single email but can't reply to a paid customer. I will be deleting this app and regretting the $8 purchase,2,18,1.5.11,2019-04-30 14:53:32,,,most_relevant,com.oristats.habitbull +Daniel Maldonado,https://lh3.googleusercontent.com/a-/AOh14GjR_TFw-QUu_Aho3EO7yVHKlbObfJqcGsNQKnYe3Ng,"I buy the platinum app, but the reminders doesn't work!!! Please fix it! . It's a great app but the reminders are very important to me.",2,0,1.5.11,2018-10-17 02:43:14,,,most_relevant,com.oristats.habitbull +Rob Mrshman,https://lh3.googleusercontent.com/-tccUFTLYqxQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPyIe_TkFwKSmL_JQwZmdLl17SJaQ/photo.jpg,Works OK on Galaxy note 8 but constant crash notifications. Can't even log on to the tablet version let alone sync accounts. In the end all data lost and so am I.,2,0,1.5.11,2018-10-06 10:36:12,,,most_relevant,com.oristats.habitbull +J O',https://lh3.googleusercontent.com/a-/AOh14GgXAY29f6-zirL3wTXI6HDfOtDzgkPCjd7YYQ9slw,"Widget Request: please could you add a feature that pushes undone tasks to the top of the widget? Or an option that removes done tasks from the widget. Good job on the app otheriwise, I'll repurchase if you can add this, love the snooze function.",2,0,1.5.11,2019-01-14 11:55:43,,,most_relevant,com.oristats.habitbull +Aakash Kumar,https://lh3.googleusercontent.com/a-/AOh14GgWup4zJ8wpWHFE3240FeBhoa7W5mo08domnuOkqw,I m just very lazy enough to use this app plus this app is not based on concept of habit building.Let's see how habbit is built u do task u get reward but here for sake of reward u only get Dots connected in pattern that's not motivating instead u can give some offers as reward.,2,0,1.5.11,2019-07-15 04:54:56,,,most_relevant,com.oristats.habitbull +Lifa Morean,https://lh3.googleusercontent.com/a-/AOh14GhqTMfFZ8jHi6bVYLbjiHYrw6jktO1D9psVoXQuHA,Paid for this years ago and used it on another device. Now I have a new phone and when I'm trying to login it says my email address is not in the database.,2,0,1.5.11,2018-11-14 10:08:16,,,most_relevant,com.oristats.habitbull +Gil Michelini,https://lh3.googleusercontent.com/a-/AOh14Gigke-9_DMTFNM_6YaEVTcai1dPtKIF6BaB4SKP-r0,Worked well but I uninstalled it. The water tracker randomly puts four digit numbers during the day. I found another app that met my needs.,2,0,,2019-01-02 00:00:05,,,most_relevant,com.oristats.habitbull +michelle lie,https://lh3.googleusercontent.com/-wKpG3Qrcuew/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOU2i3bocJIA2s5DZfEE15uAZn0AA/photo.jpg,"i like this app but one thing that i hate , why do i have to be member of premiums ( i mean why do i have to pay ? ) if i want to track up more than 5 habit ? this is a free app right ? please can you consider or change something about it",2,0,1.5.11,2019-05-28 15:01:07,,,most_relevant,com.oristats.habitbull +Gabriela Gabriel,https://lh3.googleusercontent.com/-XjejnCjbVx0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJORzwjLr7l0p8Lhdh3x_CRNydlfxA/photo.jpg,The moderation of the discussion bards in the app leaves something to be desired. Needs better moderation.,2,0,1.5.11,2020-02-17 19:30:22,,,most_relevant,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Started off really well but has stopped working properly now. Great shame as it has a lot of promise.,2,0,1.5.11,2019-02-27 20:35:18,,,most_relevant,com.oristats.habitbull +Hiwa Jalal,https://lh3.googleusercontent.com/a-/AOh14Gj6gtKFBnwS6_-9DZKIxr5WuahdrntVKE3cn9Rj7A,"The app is constantly loading and you can't even record your habits, and reminders don't work also, having just 5 habits free is bad too.",2,0,1.5.11,2019-09-22 18:38:00,,,most_relevant,com.oristats.habitbull +Erin Buckley,https://lh3.googleusercontent.com/-iNfJmW4x4KA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPin1IzozK0WN4-P_LEFg6JbcxOQg/photo.jpg,none of the notifications work. other people in the forums teport similar problems bht no fix. the app is nice but it isnt nearly as functional without notifications,2,0,1.5.11,2018-12-27 19:58:46,,,most_relevant,com.oristats.habitbull +Emppu Jurvanen,https://lh3.googleusercontent.com/-uCwfSLuT7gw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPBgmJK2WgU95gL3Fru9GRzGsK2XA/photo.jpg,"Free version gives only 5 habits, there are far clearer and better trackers available for free.",2,0,1.5.11,2019-01-08 09:40:04,,,most_relevant,com.oristats.habitbull +Nina Webb,https://lh3.googleusercontent.com/a-/AOh14GjZ-k4R3T6hUcno3_NiiBt6axYAnYAp7hSUEKfr,Only 5 free without telling users upfront that you will have to PAY for more. Always about the money. Sorry I wasted time on setting this up.,2,0,,2018-09-30 21:45:02,,,most_relevant,com.oristats.habitbull +Katie Edden,https://lh3.googleusercontent.com/-2OSYyAeIm7U/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMLOimhMGjia9jCvyYoEL_-0D4JRQ/photo.jpg,"great app but waaay to complicated, deleted it and replaced with a different simpler app. interface looks cool though.",2,0,1.5.11,2019-02-06 15:41:08,,,most_relevant,com.oristats.habitbull +Elaine McGregor,https://lh3.googleusercontent.com/-zrcPXU98AM4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPW0VtyxkHoj3II_abo7b48FaHb_w/photo.jpg,"bought premium version, didn't get upgrade, sent proof of payment, still no response. not good",2,0,1.5.11,2019-05-14 21:25:47,,,most_relevant,com.oristats.habitbull +Greg Smith,https://lh3.googleusercontent.com/-HcVDGP_ukDU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPh3_fAJyI2hBiAnq6WgDOhkxFpfQ/photo.jpg,I don't like the layout at all. I want it to be much more simple and quick to edit my daily tasks.,2,0,1.5.11,2018-12-06 00:20:06,,,most_relevant,com.oristats.habitbull +Audrey Bradshaw,https://lh3.googleusercontent.com/a-/AOh14Gh4te-4b6GwzVGdluFSX8AptThO80p53-Kkfda3,I liked the app until it told me I could only have 5 goals. :(,2,0,,2020-01-01 18:33:42,,,most_relevant,com.oristats.habitbull +Anurag Mangalore,https://lh3.googleusercontent.com/a-/AOh14GhLMrII_Uh8BL8LzU6AD8yMzcyrw__0qbKJdaG-qA,I've set a reminder for me to drink water... It doesn't remind at all!!!,2,0,1.5.11,2019-10-17 15:45:22,,,most_relevant,com.oristats.habitbull +Pedro Santos,https://lh3.googleusercontent.com/-Hs2v7-WAK8Q/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOqUSb8rsZGYbIScMB9gEvJe5aIOg/photo.jpg,"Too expensive and without paying, there's no backup. There's free apps that do the same thing.",2,0,1.5.11,2019-01-25 07:14:01,,,most_relevant,com.oristats.habitbull +Mindaugas Lukošius,https://lh3.googleusercontent.com/a-/AOh14Gg3P_9fSakUpwufaM9A-sMcnnFYLCyhktFtN7_xi_Y,Two stars because facebook login is not fixed for an year. Is this application still supported by the dev team?,2,0,1.5.11,2019-01-24 08:43:00,,,most_relevant,com.oristats.habitbull +David Potter,https://lh3.googleusercontent.com/a-/AOh14GjJWE4gpf1GydyKlpadAljv5BkOcy4vuyPOpNzT7TY,"free version is all you need, paid version is overpriced and a waste of google credits",2,0,1.5.11,2019-03-23 00:34:24,,,most_relevant,com.oristats.habitbull +Antoni Roszak,https://lh3.googleusercontent.com/a-/AOh14GiMX_eZqv51uY1Hhy5LTB9H90MNFCvuEnaNzTNclXo,Too much fluff. Difficult to see the actual progress.,2,0,,2019-11-04 06:15:34,,,most_relevant,com.oristats.habitbull +Indira Sondhi,https://lh3.googleusercontent.com/a-/AOh14GiKdNIH4uUHX2p230_8dnCIw6F23YKZ-MV4Cnc6DQ,the layout was good but it only lets you track 5 habits for free,2,0,,2019-05-12 21:19:11,,,most_relevant,com.oristats.habitbull +Victor Mendonça,https://lh3.googleusercontent.com/a-/AOh14GiWYZ9W3A61fPHQEu2FH2AsaZTEUZ5hVcw92zWwOzY,Only 5 items on free version. Would be nice to have that clear so I don't have to waste my time and give out my email.,2,0,1.5.11,2019-12-23 15:25:39,,,most_relevant,com.oristats.habitbull +F-z zz,https://lh3.googleusercontent.com/-4D4mECfmDKw/AAAAAAAAAAI/AAAAAAAAACw/AAKWJJM9dE1oZcNoJViLm_fAJsixjyN-bw/photo.jpg,"well, It is good and motivational, but I don't get notifications for the reminder. Moreover, you have to pay for the widget",2,0,,2019-04-29 18:46:31,,,most_relevant,com.oristats.habitbull +Nikesh Naik,https://lh3.googleusercontent.com/a-/AOh14Giq6yOWAGQk3ftL7tMG_-dYksBO_Qpg5ZbcWsor7w,Paid widget feature!!!!! One thing that downplays all other.,2,0,1.5.11,2019-09-20 08:27:56,,,most_relevant,com.oristats.habitbull +Duane Nicholls,https://lh3.googleusercontent.com/-CQqGkHK21V4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO1I5QVxXZPo7thd_iKz-_GaJV_tQ/photo.jpg,not a bad app but DONT pay for the premium. The widgets dont work!!,2,0,1.5.11,2019-08-13 17:11:08,,,most_relevant,com.oristats.habitbull +user name,https://lh3.googleusercontent.com/-ZDFQ2sV1Mq0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOLUb8_OH5MlOcV6_YPaE-BXNxX7Q/photo.jpg,Free version only supports 5 habits which is basically nothing,2,0,,2018-10-03 08:15:26,,,most_relevant,com.oristats.habitbull +Nam Phan,https://lh3.googleusercontent.com/a-/AOh14GglixjUEQgobt3HbBt5VIvLi9RzzxlOvGGyjqtO,All my habits ended on 29/12/2019. It was not linked to 30/12/2019. I dunno why?,2,1,1.5.11,2020-01-01 08:37:12,,,most_relevant,com.oristats.habitbull +mohamed gaber,https://lh3.googleusercontent.com/-dfYqAq5-vGg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO9xHNheXRru2WH1rIY1vBXvITbaA/photo.jpg,"The motivation pics stopped at some level and dont want to be changed, pls solve this issue",2,0,1.5.11,2018-12-05 13:56:42,,,most_relevant,com.oristats.habitbull +Nova Albiston,https://lh3.googleusercontent.com/a-/AOh14Ghs_XhPw7nHSxVQppkq_SfWaRBAka7tvHhHpBvo3w,"only a few habits for free, not worth paying for",2,0,,2019-01-10 20:55:16,,,most_relevant,com.oristats.habitbull +Vincent Albertsson,https://lh3.googleusercontent.com/a-/AOh14GgXYMprZ67BsXYtHMICsGil3U1-tXmj08Fz8m9KvQ,It stops sending notifications randomly.,2,0,1.5.11,2018-11-13 13:41:19,,,most_relevant,com.oristats.habitbull +vikas,https://lh3.googleusercontent.com/-83zsFn6vcRU/AAAAAAAAAAI/AAAAAAAAWEc/AAKWJJP1YnXMRgQJsJHHEMjl5TlPyzC_8A/photo.jpg,unable to register via manual and via fb,2,0,1.5.11,2019-08-03 18:32:01,,,most_relevant,com.oristats.habitbull +Bilal Hamid,https://lh3.googleusercontent.com/a-/AOh14GhpWFOEKwmJltFXZYqw_ve_LEb0VvqBPrlJTRsffA,It is completely failing on reminders!,2,0,1.5.11,2019-06-26 00:32:23,,,most_relevant,com.oristats.habitbull +Grayson Hieb,https://lh3.googleusercontent.com/-0bgZU8xS52U/AAAAAAAAAAI/AAAAAAAApn4/AAKWJJNFJn7XZAk_XwTX2LDGk-Yw5e7KTg/photo.jpg,Crashes on sign in on my Pixel 2 XL,2,0,1.5.11,2019-02-17 19:25:40,,,most_relevant,com.oristats.habitbull +Aileen Clare,https://lh3.googleusercontent.com/a-/AOh14GgbTw1Y6yI3_PpDNhOeJBlkvIvc_mvf-giK8p0Q,"I could not figure out how to set reminders. And I did NOT want to ""register""",2,0,,2019-03-31 19:03:17,,,most_relevant,com.oristats.habitbull +Adam Cruickshank,https://lh3.googleusercontent.com/a-/AOh14GhBf7Ghrs2ESTT2yQGujIIlh_9UElY_kxkWAP1HXQ,the app requires premium membership to use the widget. defeats the point for me,2,0,,2019-07-17 22:11:07,,,most_relevant,com.oristats.habitbull +Cristian Vlades,https://lh3.googleusercontent.com/a-/AOh14GgJHrWzbWDaRd4h_kedPSfgIJ1xYAji170g-wyVS8U,useless! you need a premium account to use Widgets,2,0,1.5.11,2019-03-04 13:40:45,,,most_relevant,com.oristats.habitbull +mohamed saied,https://lh3.googleusercontent.com/a-/AOh14GisrsPq65hWNHJIda9mPHEwKlg6hUg-gT5roSk9,please add a feature that make me add a friend to the habit such as habit competition app😥 i can't live without this feature,2,0,,2019-08-20 08:00:45,,,most_relevant,com.oristats.habitbull +Arvin Yu,https://lh3.googleusercontent.com/a-/AOh14GhgTg2sLJvC4gIOxLqb_FzaYUYubOPmQY95wSKt4g,Cannot sync. What is going on?,2,0,1.5.11,2019-08-26 19:04:39,,,most_relevant,com.oristats.habitbull +Felix L,https://lh3.googleusercontent.com/a-/AOh14GggTzaplRFoxkWW1T10S1DN3PQraHpzS403Xk99RA,couldn't login with Facebook,2,0,1.5.11,2019-07-03 05:10:22,,,most_relevant,com.oristats.habitbull +jake london,https://lh3.googleusercontent.com/a-/AOh14Gid9yvEpMuzjkYvMWAVCQQ52emfsor-DHOv4gEuyw,"Edit: Initially gave it 4.5 stars. The app itself still works fine, but the sync stopped working about a year ago. That's the main reason I paid for the premium version. I messaged the developer about it and never heard back. Wonder if it's been abandoned by the developer?",2,2,1.5.11,2020-03-26 23:39:01,,,newest,com.oristats.habitbull +Austin Price,https://lh3.googleusercontent.com/a-/AOh14GgPtUwHiuvGM6RT8tvUZ1j9FORIoi-gra01UFMW,"Seems like it could be very helpful. Getting very frustrated with it always opening on monthly view even though I have weekly view selected in settings. Even tried switching it, but no matter what opens on monthly",2,1,1.5.11,2020-03-20 03:03:30,,,newest,com.oristats.habitbull +Christopher Inman,https://lh3.googleusercontent.com/a-/AOh14GjgL90XTUDSYKzROXc3ktjNhwJTwj2lc6oGen7WZA,"I liked it when I first got it several years ago. But after installing it on several devices, I found it does not sync with the other instances of it. After getting no response from their support desk, I uninstalled the three apps from the three devices and reinstalled them using my google account in case I had not logged in with the same account on all. The three new instantiations do not sync. The help desk is non-existent. The idea is good but the app is defective.",2,1,1.5.11,2020-03-19 00:28:00,,,newest,com.oristats.habitbull +Jonas Katauskis,https://lh3.googleusercontent.com/-4ElHqEnT2b4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM6x9BgoB8AmkKWgsi1WkcDpt2dmQ/photo.jpg,"very simple app to track your progress towards acquiring a habit, the only downside is that you can't sync the app as it says ""no internet connection"" when there absolutely is. Also, together with this bug all forums are no longer available as well as daily quotes, it's just gone. Previous rating was 5 stars, but with this bug continuing for half a year now I can only give 2 stars.",2,24,1.5.11,2020-03-13 05:20:57,,,newest,com.oristats.habitbull +Matt Frederick,https://lh3.googleusercontent.com/a-/AOh14GjwNuaWiaoxfXRjqQEivs6wbF1bgeaPCUNWaa5ZDhk,"Widget freezes, app does not sync. I had a galaxy S7 edge and just got an S10+. App fails with both phones. Regret spending money on this.",2,0,1.5.11,2020-03-12 21:24:26,,,newest,com.oristats.habitbull +Ryan S,https://lh3.googleusercontent.com/a-/AOh14GgzpVIXhMzDsBg2HzFnsTXvtJ0ACZPH67XrG_XfIg,Unable to import any data from the .csv file in cloud!!! No option to get any data back! Bought premium and im not happy. Beware!!!,2,0,1.5.11,2020-03-02 18:38:45,,,newest,com.oristats.habitbull +Kamran Aslam,https://lh3.googleusercontent.com/-mJsRQqiZLiE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOQbZtUUxhp6qE_BN-CO6MYU45Oiw/photo.jpg,"Can't see new topics of discussion. Also can't add discussion topic even though I have excellent internet connection, Wi Fi or Data. Please fix. I have no connection issues with any of my other apps.",2,2,1.5.11,2020-02-25 08:54:51,,,newest,com.oristats.habitbull +Rushil Paul,https://lh3.googleusercontent.com/a-/AOh14GjThDDZa6uYECKgTPUjlqgIN83EbnMldriAU9ptcA,Loading takes too long and reminders don't work.,2,0,1.5.11,2020-02-23 08:06:32,,,newest,com.oristats.habitbull +Caitlin Wu,https://lh3.googleusercontent.com/a-/AOh14GgAGdVpdIYStecFuy0LPXROFBK4Id375df9tU7f,"Unable to log in, unable to create a new account or link to facebook",2,1,1.5.11,2020-02-23 07:26:13,,,newest,com.oristats.habitbull +Gabriela Gabriel,https://lh3.googleusercontent.com/-XjejnCjbVx0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJORzwjLr7l0p8Lhdh3x_CRNydlfxA/photo.jpg,The moderation of the discussion bards in the app leaves something to be desired. Needs better moderation.,2,0,1.5.11,2020-02-17 19:30:22,,,newest,com.oristats.habitbull +Jaco Pretorius,https://lh3.googleusercontent.com/a-/AOh14GiUv1ZDXmqIhOhqfK7p8h3kCjsE2K0CCvIjE-Mh4Q,Sync no longer works. Also app has been buggy lately - closes down and does not respond. I'm now using Loop Habit Tracker which is more stable.,2,0,,2020-02-15 19:42:27,,,newest,com.oristats.habitbull +Vikas A,https://lh3.googleusercontent.com/-eW5dUPe4IAs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO5t5ptQn95i6TDrwArPbD7E0bZYQ/photo.jpg,"Hello Habitbull team, I need to check all features in premium version so can you give me access to premium version for 2 days so that I can try all features and check if the feature that I need is present or not and then buy premium version.",2,0,1.5.11,2020-01-27 05:27:19,,,newest,com.oristats.habitbull +Oleksa Skorokhoda,https://lh3.googleusercontent.com/a-/AOh14GjS-7c-ACSJHUdoBS_ol1XAhZkNdhIGiFFrCTdejw,"I've been using this app for more than 5 years, it was great. But currently I changed my phone and found out that syncing doesn't work anymore :( It says something like ""no internet connection"". So at the end I have to use another app.",2,0,1.5.11,2020-01-26 08:17:16,,,newest,com.oristats.habitbull +Vera H.,https://lh3.googleusercontent.com/a-/AOh14GiyYZZcqF2-B2HH32vZsS2C9xwtYpHiwlb2UhkWDpg,"I really like this app. Enough to purchase the premium a few years back, but the app didn't update to premium for me, and there was no response when I contacted the support. Seems like I'm not alone in this experience. Don't put your trust in the developers!",2,3,1.5.11,2020-01-25 22:20:01,,,newest,com.oristats.habitbull +Darren Randall,https://lh3.googleusercontent.com/-04AMt8uxFRw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOhC5Ci_1uhSu6xWfyv1RS7Levkqg/photo.jpg,Mixed great app but don't by premium. Won't work without play services and developer unresponsive,2,0,1.5.11,2020-01-10 13:05:48,,,newest,com.oristats.habitbull +James Hill,https://lh3.googleusercontent.com/a-/AOh14GjyLBK59mCM1WmW7aYnO896zSQWrhgOsXP2IPCGsPQ,EDIT/UPDATE - Purchased premium. Sync doesn't work. A quick glance at developers FB/Twitter accounts shows that they have basically dropped off the face of the Earth (no activity since 2018). App hasn't received an update since 2018. My suggestion: pick an app that's still actively developed. Exactly what I have been looking for. Fantastic interface and thoughtful design. I'm hooked guys!,2,0,1.5.11,2020-01-07 00:17:51,,,newest,com.oristats.habitbull +Matt D,https://lh3.googleusercontent.com/-RCxEKPVnNnE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMKXFq5ME575pWjWsZpt8WL1ykAfQ/photo.jpg,"Worked fine for months, now it doesn't track habits the way I set them. It treats every day as its own success or failure regardless of how I have set it up. Going to have to uninstall and find a new habit tracking app.",2,0,1.5.11,2020-01-05 00:02:58,,,newest,com.oristats.habitbull +Rn Matsuda,https://lh3.googleusercontent.com/-YvEPevmvqQc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOPLHdx5M83jIzpcejALIIKurURvA/photo.jpg,The motivational messages are annoying. You can only track up to 5 habits in the free version but it is totally not worth paying for more. Good riddance. I suppo this kind of app is just not for me.,2,0,,2020-01-03 08:45:28,,,newest,com.oristats.habitbull +XxUltimateFoxesxX,https://lh3.googleusercontent.com/a-/AOh14Gg0irc6ss9iOnCPVegz6rf_os0c552ptZP8UH8naA,"The tracker itself is not bad but I set up a notification to remind me to do something and am not getting them. I already checked my settings, all is good. It's nice if you remember to go in and mark done but notifications are not working.",2,1,1.5.11,2020-01-02 22:32:08,,,newest,com.oristats.habitbull +maggie1357,https://lh3.googleusercontent.com/-W1fucj9yofA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJObs4qu5NoVsE4X_150X3BkTxJ_9g/photo.jpg,"Can't choose when to start. I like setting goals/habits for advance dates once I'm done with one+. Also, you can't edit a habit/goal to start over, you have to delete and start new. Doesn't save your previous habits/goals to do again.",2,1,1.5.11,2020-01-02 14:44:28,,,newest,com.oristats.habitbull +Audrey Bradshaw,https://lh3.googleusercontent.com/a-/AOh14Gh4te-4b6GwzVGdluFSX8AptThO80p53-Kkfda3,I liked the app until it told me I could only have 5 goals. :(,2,0,,2020-01-01 18:33:42,,,newest,com.oristats.habitbull +Nam Phan,https://lh3.googleusercontent.com/a-/AOh14GglixjUEQgobt3HbBt5VIvLi9RzzxlOvGGyjqtO,All my habits ended on 29/12/2019. It was not linked to 30/12/2019. I dunno why?,2,1,1.5.11,2020-01-01 08:37:12,,,newest,com.oristats.habitbull +Richard Warner,https://lh3.googleusercontent.com/a-/AOh14GhKxSERBFDJoECZuveXWMws56eTIKmF1LRN85_KVGs,"The *only* part of this app that doesn't impress me is the widgets, everything else is beautiful! Good visual layouts, simple quick tracking, but enough features to be flexible for different needs. UPDATE 12/30/2019: The app no longer syncs and does not import data. I've got a handy cvs export with 3,000+ lines of habit data, thank goodness, but can no longer reccomend the app if it requires manual input to restore data.",2,0,1.5.11,2019-12-30 23:03:33,,,newest,com.oristats.habitbull +Jake P,https://lh3.googleusercontent.com/a-/AOh14Ghxj_8h_sj02ddqh4qNrBbjGZId_NsfnyWLy4WF,"I had to buy this app because I need that larger widget to fit my needs, and you cannot test it out with the free version. Sadly, it's too buggy to be of any use, at least on the AIO Launcher. Still overall better than my last habits tracker, but I feel ripped off.",2,3,1.5.11,2019-12-29 14:02:33,,,newest,com.oristats.habitbull +Travis Arrington,https://lh3.googleusercontent.com/a-/AOh14Gj5Wm1ymIn3Rj1VhuyJ-pQqUhgcMuuDzh3Tv8PFUA,"Customer support is completely unresponsive. I purchased the upgraded version and it doesn't sync as promised. There has been no help on FB, email, nada. Kinda sucks TBH. The app is nice. The Android widget is what makes it great. Plz fix the sync issue and I'll update my review if your customer support reaolves the matter and makes things right with me.",2,20,1.5.11,2019-12-28 20:11:39,,,newest,com.oristats.habitbull +Victor Mendonça,https://lh3.googleusercontent.com/a-/AOh14GiWYZ9W3A61fPHQEu2FH2AsaZTEUZ5hVcw92zWwOzY,Only 5 items on free version. Would be nice to have that clear so I don't have to waste my time and give out my email.,2,0,1.5.11,2019-12-23 15:25:39,,,newest,com.oristats.habitbull +Patrick Tritschler,https://lh3.googleusercontent.com/a-/AOh14GiXDs2bmVYPORwhfBgxlV83E43HCT5lg5WxKPin36M,Love and use the app BUT sync feature does not work and my attempts at eliciting support from customer service have gone unanswered which is disappointing.,2,1,1.5.11,2019-12-22 17:01:42,,,newest,com.oristats.habitbull +Laura Slade,https://lh3.googleusercontent.com/-94Fswwqqj4c/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPVjvIyRUL7SVsfDFWlgfzwazatgQ/photo.jpg,"Worked well for a few days and then just stopped sending reminders. The reminders would pop up if I opened the app myself but that's obviously not the point of a reminder. Also, froze a lot. Pretty much useless. When it worked, it was excellent.",2,5,,2019-12-18 19:50:02,,,newest,com.oristats.habitbull +Setsuna Mudou,https://lh3.googleusercontent.com/a-/AOh14GjJU93LTfkPfQKvdAAymIV719ZMAWukgEwooJe94w,"Can't sync!! I paid to have the ability to make more tasks, but that's about all it's good for.",2,0,1.5.11,2019-12-12 21:12:58,,,newest,com.oristats.habitbull +Rachelle Gwin,https://lh3.googleusercontent.com/a-/AOh14GhnxwG6fduKdNtQ1s4hYWPRIdBcnxx0UEHR3_if,"I love this app, but my premium service doesn't seem to follow me. I sent multiple emails to get it resolved however I'm only getting autogenerated response emails.",2,0,,2019-12-07 11:57:29,,,newest,com.oristats.habitbull +Rocco Goff,https://lh3.googleusercontent.com/-MFthkFH5x6w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPD4Y45CsqJxmTW3KU9TNDjDn12vw/photo.jpg,"I really think the math is off on this. Logically it does NOT make sense that if you have a good day your percentage of success goes up by 1, but if you have a bad day it goes down 20%. That really defeats the point of motivation and self forgiveness.",2,0,1.5.11,2019-12-06 11:31:46,,,newest,com.oristats.habitbull +Dave,https://lh3.googleusercontent.com/a-/AOh14GihOWKpR-X9cd6uAYey7Ih4Jyc9BrdS7hdgJcbu3w,The app has stopped synching and cant get it working very frustrating. I paid for premium and no one replies to help resolve which is a real shame as the actual app when working is very good.,2,3,1.5.11,2019-11-21 04:51:54,,,newest,com.oristats.habitbull +Ron Togunov,https://lh3.googleusercontent.com/a-/AOh14Ggl4O6L99aXb-xndv728FAIiQnQx3r3egm98O0Kog,"Used to be a great app, but I've moved phones, but the sync did not work and all tracking data has been lost. Even after having paid $18 for premium. Very much a shame.",2,0,1.5.11,2019-11-16 05:15:24,,,newest,com.oristats.habitbull +DNA3e8,https://lh3.googleusercontent.com/a-/AOh14Gh7yHbdCPs8ZikX7QLZEeNNLteg7HcIp2XyRa_j,I was testing this to replace Fabulous. So far the notifications are not persistent enough. Fabulous is able to wake me up in the morning.,2,0,1.5.11,2019-11-10 19:32:16,,,newest,com.oristats.habitbull +Damon Chang,https://lh3.googleusercontent.com/a-/AOh14GjU1Fmak6LTg3fCXjNGu4D2kBmU1x_HdND79pE5LQ,DO NOT BUY PREMIUM Version!! App stopped synching 7/27/2019 and is no longer supported. I got Premium to sync to new phone since I've been using the app for over a year and wanted to keep tracking. $10 wasted! Very disappointing because basic version is great - simple but fully functional and effective for tracking up to 5 habits. Good visuals and the ability to make notes. Premium = tracking >5 habits and syncing across devices but no more! Would be 4 stars if still supported and worked.,2,19,1.5.11,2019-11-10 07:41:38,,,newest,com.oristats.habitbull +Erica Magallon,https://lh3.googleusercontent.com/-qQU7XMDw_4s/AAAAAAAAAAI/AAAAAAAACMM/AAKWJJO_85q5eSYlDme7WbNW8rbq3n3llA/photo.jpg,Having trouble syncing on new device; says there is no internet connection but my connection is strong.,2,0,1.5.11,2019-11-08 07:59:11,,,newest,com.oristats.habitbull +RonJonae Felder,https://lh3.googleusercontent.com/-G2tnfw6TKn8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMmmkR7BItx8OoexuYBkk7mzuwcJA/photo.jpg,"While i can understand limiting somethings for premium only, i've never seen an app block widgets behind a pay wall and quite frankly this is only useful to me if I can keep track of things on the homescreen. Maybe I would have liked it but so far i havent used it because i keep forgetting its there.",2,1,,2019-11-05 08:42:24,,,newest,com.oristats.habitbull +Antoni Roszak,https://lh3.googleusercontent.com/a-/AOh14GiMX_eZqv51uY1Hhy5LTB9H90MNFCvuEnaNzTNclXo,Too much fluff. Difficult to see the actual progress.,2,0,,2019-11-04 06:15:34,,,newest,com.oristats.habitbull +talal alshehri,https://lh3.googleusercontent.com/-T7H_pqoFGmM/AAAAAAAAAAI/AAAAAAAABWg/AAKWJJO897GX2e0dXSJVyL0kFxZ9D0TTvA/photo.jpg,I bought the premium. And I can't sync the data between my devices.,2,0,1.5.11,2019-11-02 20:02:38,,,newest,com.oristats.habitbull +Clifford Erasmus,https://lh3.googleusercontent.com/-6TTktig66_8/AAAAAAAAAAI/AAAAAAAABi4/AAKWJJOj_6NbuabfkEpVjYzQWUPxNEpfGw/photo.jpg,"Syncing devices doesn't work, even after reading and applying suggestions in the FAQ of the website...",2,0,1.5.11,2019-11-01 13:32:49,,,newest,com.oristats.habitbull +Michael Kish,https://lh3.googleusercontent.com/a-/AOh14GgdiJ9tCzKfZMr97mZUEOlVRuob8A1awOKR2Ouh2w,"Good design, simple and clear but with the option to dig down for more details. However, they don't respond to emails and haven't released an update in over a year. Seems like this project was abandoned.",2,0,1.5.11,2019-10-26 02:32:30,,,newest,com.oristats.habitbull +Robert Czyzewski,https://lh3.googleusercontent.com/-3INmnyL6bko/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOoKY9huOmeE3xEnIMUHBZj929Hhw/photo.jpg,Claims syncing but it always fails to sync. Lost all data when got new phone. Donwgrading to two stars.,2,0,1.5.11,2019-10-23 16:23:45,,,newest,com.oristats.habitbull +Anurag Mangalore,https://lh3.googleusercontent.com/a-/AOh14GhLMrII_Uh8BL8LzU6AD8yMzcyrw__0qbKJdaG-qA,I've set a reminder for me to drink water... It doesn't remind at all!!!,2,0,1.5.11,2019-10-17 15:45:22,,,newest,com.oristats.habitbull +Chris Osula,https://lh3.googleusercontent.com/-pNt2Gep0a50/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMBHVjWUhDk_B3tTF3NPOkff8Hs0Q/photo.jpg,"App hasn't been updated, can't sync, can't import habits, this was a good app, shame that I have to switch",2,0,1.5.11,2019-10-15 19:09:49,,,newest,com.oristats.habitbull +Phillis N.,https://lh3.googleusercontent.com/-rBIJQyUIhoc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOow_eW1IolU18N5_Vc9bI8pOpTig/photo.jpg,"Great app in the beginning. But once you start skipping days, the notifications become insulting shaming words. For example, calling me a couch potato. Which I am not. So dumb. What expert would ever say that insults are motivational? Almost none. I'd rather use an app based on the principle of kindness, not shaming.",2,1,,2019-10-10 17:13:09,,,newest,com.oristats.habitbull +Ajai Shankar,https://lh3.googleusercontent.com/-6ovCiV-_0ro/AAAAAAAAAAI/AAAAAAAAJ3Q/AAKWJJO7IOyUUjhdn7unXT7FzjPUryN8zQ/photo.jpg,"The app is good to use overall. Except, as a number of other folks have said, it does not sync. And there is no response from the developer on this issue. Annoying to have paid for an app that claimed the sync feature, when it doesn't actually work. What that means is you lose all history every time you change the phone.",2,18,1.5.11,2019-09-30 00:20:44,,,newest,com.oristats.habitbull +Robert Adams,https://lh3.googleusercontent.com/a-/AOh14GiKaI6v5yYY56dN-WHZOcILAWXaXfEz1cN4DD2M,"Really? $8 for a habit tracker? There are other apps that do the same thing for far less money. I don't mind paying for apps, but this seems like price gouging. Oh, and it's $10 if you want the ability to export your data!",2,1,1.5.11,2019-09-29 20:09:28,,,newest,com.oristats.habitbull +Nick Andrews,https://lh3.googleusercontent.com/a-/AOh14GgHICjChgpobL19rofK7X-FibekfkIm1RJBqkJZMQ,"It seems like this app is no longer supported. I've paid for premium, but sync stopped working several months ago, and developers have not replied to a support request. So - on moving to a new phone - my habits and streaks are now lost. I can see from other reviews that this is a widely reported issue. I guess the app has now been abandoned.",2,278,1.5.11,2019-09-24 13:52:52,,,newest,com.oristats.habitbull +Hiwa Jalal,https://lh3.googleusercontent.com/a-/AOh14Gj6gtKFBnwS6_-9DZKIxr5WuahdrntVKE3cn9Rj7A,"The app is constantly loading and you can't even record your habits, and reminders don't work also, having just 5 habits free is bad too.",2,0,1.5.11,2019-09-22 18:38:00,,,newest,com.oristats.habitbull +Nikesh Naik,https://lh3.googleusercontent.com/a-/AOh14Giq6yOWAGQk3ftL7tMG_-dYksBO_Qpg5ZbcWsor7w,Paid widget feature!!!!! One thing that downplays all other.,2,0,1.5.11,2019-09-20 08:27:56,,,newest,com.oristats.habitbull +Matt M,https://lh3.googleusercontent.com/-XcEWsAOXlos/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOFdCv6ulKISJpENFJeZ1vhfYRuTg/photo.jpg,"I like how the app has options to write notes/journals for each day. It gives you the option to reflect on how you stuck to your habits. Most other apps don't have this feature. That said, I'm rating the app two stars because the notifications don't work for me. I have set times for reminders throughout the day, but the app sends me random notifications (reminders) when I don't want them. And on other days, no notifications at all. No app updates from the developer in over a year either.",2,4,1.5.11,2019-09-17 03:08:01,,,newest,com.oristats.habitbull +Ivan,https://lh3.googleusercontent.com/a-/AOh14GjsAfX141hxmxgfS7BvQOmXmYEc1ynvS3K-kO3QIw,Does not sync,2,1,1.5.11,2019-09-15 16:57:28,,,newest,com.oristats.habitbull +Jeff Daniels,https://lh3.googleusercontent.com/a-/AOh14GgGnS9rB3FDFQQDahC35W1rt9cLlnLa2XRILX11Ng,worked okay for awhile. sync between devices no longer works and I have the paid for premium account. uninstalled on both devices. sync fails on both,2,0,1.5.11,2019-09-15 16:37:48,,,newest,com.oristats.habitbull +Chona @Vivaz,https://lh3.googleusercontent.com/-oJpT2hfrfqQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPX_JSBHneOeYmfdAQQHa0n-BcFTg/photo.jpg,"I liked the app and I purchased it. But I can't sync any data from old phone. And when logged out of the app, there is no way to login again except reinstall the app. So if anyone is fine with restart all the progress everytime you change phone, this app is for you. But since I like to keep my progress to the new phone, I am stop using this app and find another one.",2,15,1.5.11,2019-09-13 19:34:50,,,newest,com.oristats.habitbull +Jyotiprakash Mahto,https://lh3.googleusercontent.com/a-/AOh14GgCxb-jtuy9jE_-yPstLIhCo7mVFX5xcA8B9k6NQQ,No notification of Habit tracks,2,1,1.5.11,2019-09-13 08:27:22,,,newest,com.oristats.habitbull +Rachael Coyne,https://lh3.googleusercontent.com/a-/AOh14GiYB88ITxCrS6V_QBren_vlCLgVojyWylnbIJo,"Good app but don't bother with premium. I bought premium for the ""powerful widgets"" and ability to track extra habits. Don't bother. The widgets are nothing special and if you read the tips section the developer even says it's best to only track a few habits at a time! After feeling ripped off I emailed the developer twice requesting a refund but have received no reply. Great free app but don't waste your money on premium.",2,12,1.5.11,2019-09-10 12:44:12,,,newest,com.oristats.habitbull +Eliahu zabdiel Bentzion,https://lh3.googleusercontent.com/a-/AOh14Gh9dFlOf8bF21hwP-XxPkuotw51KcCwetL1RbTjpg,Desde hace unos meses no sirve la Sync ni me deja entrar a la cuenta,2,0,1.5.11,2019-09-08 08:50:22,,,newest,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Generalle good and easy to use. Unfortunately the sync/backup feature seems to be broken so I can't transfer habits to a different device. The CSV export is also useless, as theres bo way to open it in a different device.",2,2,1.5.11,2019-09-04 07:09:16,,,newest,com.oristats.habitbull +Arvin Yu,https://lh3.googleusercontent.com/a-/AOh14GhgTg2sLJvC4gIOxLqb_FzaYUYubOPmQY95wSKt4g,Cannot sync. What is going on?,2,0,1.5.11,2019-08-26 19:04:39,,,newest,com.oristats.habitbull +Martin Mari,https://lh3.googleusercontent.com/-8xIbmV66PII/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNCpMnACydQgPVQ0PEBgUG1jfsh-g/photo.jpg,The app doesn't really look like the screenshots. It's also quite outdated in design. If you don't mind paying for it then it gets the job done.,2,0,0.8.4,2019-08-23 08:07:17,,,newest,com.oristats.habitbull +Wayan Adhi,https://lh3.googleusercontent.com/a-/AOh14GjFDAnH60PmHVLu3YlAJRvxlLMOksMN0laZn0AY,"I'm changing the rating into two stars because the sync feature which previously work fine has no longer work. Looking at the last update I feel like the developer had abandoned this apps, which is quite sad considering this usef to be the best apps on building habit.",2,13,1.5.11,2019-08-23 00:33:56,,,newest,com.oristats.habitbull +Nema Ime,https://lh3.googleusercontent.com/-PtQoV_jAfAg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMoqT3LqNrbq9wvIQ8zsgGDlv9r3g/photo.jpg,"Slow updates, bugs",2,0,1.5.10,2019-08-21 01:50:00,,,newest,com.oristats.habitbull +mohamed saied,https://lh3.googleusercontent.com/a-/AOh14GisrsPq65hWNHJIda9mPHEwKlg6hUg-gT5roSk9,please add a feature that make me add a friend to the habit such as habit competition app😥 i can't live without this feature,2,0,,2019-08-20 08:00:45,,,newest,com.oristats.habitbull +Duane Nicholls,https://lh3.googleusercontent.com/-CQqGkHK21V4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO1I5QVxXZPo7thd_iKz-_GaJV_tQ/photo.jpg,not a bad app but DONT pay for the premium. The widgets dont work!!,2,0,1.5.11,2019-08-13 17:11:08,,,newest,com.oristats.habitbull +Josh Yuter,https://lh3.googleusercontent.com/a-/AOh14GiTae-hyk-zxLPxKyVe9-_QSRkDVCtXqllpk5Bh_YY,"App is very good for what it is, but the sync feature stopped working for me. The FAQ says it's due to a rooted phone but this happened twice on non-rooted phones. HabitBull offers no support to fix. 2 stars bec it works standalone, but if you need syncing know there's a risk of permanent failure.",2,6,1.5.11,2019-08-07 17:07:40,,,newest,com.oristats.habitbull +vikas,https://lh3.googleusercontent.com/-83zsFn6vcRU/AAAAAAAAAAI/AAAAAAAAWEc/AAKWJJP1YnXMRgQJsJHHEMjl5TlPyzC_8A/photo.jpg,unable to register via manual and via fb,2,0,1.5.11,2019-08-03 18:32:01,,,newest,com.oristats.habitbull +Laura Foster-May,https://lh3.googleusercontent.com/a-/AOh14Gh2Xzi4f7zXihNNSMYquPbpFqXPQLHsyvIQQ2MlUg,"I like that it allows specific habits, I don't like that it does not give proper percentages of how much you've done your habits. after using it about a month i deleted it, because even though i was doing almost every habit 100%, it kept giving me <50%. it was demoralizing.",2,0,1.5.11,2019-07-31 11:11:01,,,newest,com.oristats.habitbull +phoebe,https://lh3.googleusercontent.com/a-/AOh14Gh_uhMR_6s7FaOvqjSJeQh0yG3xidj6ul3FGJNtpw,A little too confusing.,2,0,1.5.11,2019-07-25 13:35:36,,,newest,com.oristats.habitbull +Keshab patra,https://lh3.googleusercontent.com/-j8K54-SEBJo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPDbeRZfp7pF63cRSu23jcdPt0Siw/photo.jpg,good,2,0,1.5.11,2019-07-18 15:39:28,,,newest,com.oristats.habitbull +Adam Cruickshank,https://lh3.googleusercontent.com/a-/AOh14GhBf7Ghrs2ESTT2yQGujIIlh_9UElY_kxkWAP1HXQ,the app requires premium membership to use the widget. defeats the point for me,2,0,,2019-07-17 22:11:07,,,newest,com.oristats.habitbull +Aakash Kumar,https://lh3.googleusercontent.com/a-/AOh14GgWup4zJ8wpWHFE3240FeBhoa7W5mo08domnuOkqw,I m just very lazy enough to use this app plus this app is not based on concept of habit building.Let's see how habbit is built u do task u get reward but here for sake of reward u only get Dots connected in pattern that's not motivating instead u can give some offers as reward.,2,0,1.5.11,2019-07-15 04:54:56,,,newest,com.oristats.habitbull +Devon Gillespie,https://lh3.googleusercontent.com/-QyaDBm3deeo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOa8piPihLQfP_WY4xCGFu2wgB_-A/photo.jpg,"Worked really well, however the widgets work for a day then won't respond unless removed and re-added. . . Eevveerryy day. won't remember to actually use it without the widgets, so its useless now. not worth paying extra.",2,0,1.5.11,2019-07-03 19:47:35,,,newest,com.oristats.habitbull +Felix L,https://lh3.googleusercontent.com/a-/AOh14GggTzaplRFoxkWW1T10S1DN3PQraHpzS403Xk99RA,couldn't login with Facebook,2,0,1.5.11,2019-07-03 05:10:22,,,newest,com.oristats.habitbull +Bilal Hamid,https://lh3.googleusercontent.com/a-/AOh14GhpWFOEKwmJltFXZYqw_ve_LEb0VvqBPrlJTRsffA,It is completely failing on reminders!,2,0,1.5.11,2019-06-26 00:32:23,,,newest,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I regret buying the premium version, a lot of money for only a minor update. I wish I could get a refund. Do not buy the premium version from the app, it doesn't worth your money",2,0,1.5.11,2019-06-22 22:42:05,,,newest,com.oristats.habitbull +Alia Mirza,https://lh3.googleusercontent.com/a-/AOh14GgE-3OHgBViE_dDSEFR9C7HcJq4cO5eIk31hgMd,"I upgraded to Pro after a couple of weeks & initially excited about the app. Having used it for a while now I'm starting to regret my purchase. There are some pros but more cons. It's buggy, doesn't sync well at all across devices, the UI is very cluttered, the forum needs serious updating, a search tool for eg. The last update was ages ago, given how pricey this is you'd think the developers would make it worth it but they seem to have disappeared!",2,176,1.5.11,2019-06-22 17:11:05,,,newest,com.oristats.habitbull +AAJ NAI HOGA,https://lh3.googleusercontent.com/-QfUmfjw8lZA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMrAPkKRspfWf1M6kJLpwWnfkQ3dw/photo.jpg,Please change the logo,2,0,1.5.11,2019-06-17 06:31:31,,,newest,com.oristats.habitbull +sbcontt,https://lh3.googleusercontent.com/a-/AOh14Gg_G8mRNDyqbEwYT8TRxis0RZCNE_eZLg5w5NIbOw,Terrible UI,2,0,,2019-06-09 16:02:53,,,newest,com.oristats.habitbull +michelle lie,https://lh3.googleusercontent.com/-wKpG3Qrcuew/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOU2i3bocJIA2s5DZfEE15uAZn0AA/photo.jpg,"i like this app but one thing that i hate , why do i have to be member of premiums ( i mean why do i have to pay ? ) if i want to track up more than 5 habit ? this is a free app right ? please can you consider or change something about it",2,0,1.5.11,2019-05-28 15:01:07,,,newest,com.oristats.habitbull +Kyle Smith,https://lh3.googleusercontent.com/a-/AOh14Ggidf5zb99g7hX1Z196dFS3OvGaMIAQIsh1zqNnJQ,"This would be great if it didn't require me to mark negatives. in other words, it requires me to mark everyday I did NOT do something, such as smoke a cigarette or drink alcohol. This is overly cumbersome over time and is going to cause me to stop using the app because I don't want to have to check everything that DIDN'T happen. This could be much better if it assumes I didn't drink or smoke if I didn't make any mark for that day. Or at least give me the option to do it this way.",2,5,1.5.11,2019-05-19 20:30:07,,,newest,com.oristats.habitbull +Elaine McGregor,https://lh3.googleusercontent.com/-zrcPXU98AM4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPW0VtyxkHoj3II_abo7b48FaHb_w/photo.jpg,"bought premium version, didn't get upgrade, sent proof of payment, still no response. not good",2,0,1.5.11,2019-05-14 21:25:47,,,newest,com.oristats.habitbull +Indira Sondhi,https://lh3.googleusercontent.com/a-/AOh14GiKdNIH4uUHX2p230_8dnCIw6F23YKZ-MV4Cnc6DQ,the layout was good but it only lets you track 5 habits for free,2,0,,2019-05-12 21:19:11,,,newest,com.oristats.habitbull +Kenisha Daily,https://lh3.googleusercontent.com/a-/AOh14GjvApq2h56hZQ82_GEiXFspt8J0LQAjiRKaYgT8Hg,it's not worth the premium. I tried to get a refund because it wasn't what I thought it would be and no one has contacted me. They claim to read every single email but can't reply to a paid customer. I will be deleting this app and regretting the $8 purchase,2,18,1.5.11,2019-04-30 14:53:32,,,newest,com.oristats.habitbull +F-z zz,https://lh3.googleusercontent.com/-4D4mECfmDKw/AAAAAAAAAAI/AAAAAAAAACw/AAKWJJM9dE1oZcNoJViLm_fAJsixjyN-bw/photo.jpg,"well, It is good and motivational, but I don't get notifications for the reminder. Moreover, you have to pay for the widget",2,0,,2019-04-29 18:46:31,,,newest,com.oristats.habitbull +Ritchie Joe,https://lh3.googleusercontent.com/a-/AOh14Gj-8XN3w4qX-OSbg4FdOMQF7xBIsC8EcvMhDtTi_Q,There needs to be an option on when the habit starts,2,0,,2019-04-29 17:44:00,,,newest,com.oristats.habitbull +Mswati Masina,https://lh3.googleusercontent.com/a-/AOh14GjT-BWVunCsxx2hdLhPajj4fQBVaoThdMicebVHFvQ,Awesome tracker yet it seems overpriced in my country way more more than the typical range of $5 its about $10 for me with tax included. Also I don't appreciate the greyed out price being the same as the 33% claimed discounted price very deceiving. Lastly the lack of support for a fingerprint access method is subpart for 2019.,2,1,1.5.11,2019-04-16 01:37:07,,,newest,com.oristats.habitbull +Maka Hansen,https://lh3.googleusercontent.com/a-/AOh14Ght_RpeACz8rmr2_9788lCytGK0cEz5hWJ6HOiX_7s,Used to be my favorite app! Changed phones and it doesn't recognize my premium purchase. I've been emailing for support for two months with no response. So disappointed.,2,5,1.5.11,2019-04-14 17:58:51,,,newest,com.oristats.habitbull +Daniel Yoshizawa,https://lh3.googleusercontent.com/-IakXGyAEziQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNAIuPQoLYsctvqQ-13MAmf2lWrhw/photo.jpg,"Too much configuration, not very intuitive, I'm looking for something simple that only counts something for the day, not to set goals, reminders, notes, and all that overload of information that keep jumping from screen to screen, not looking for enterprise app just for personal use.",2,3,1.5.11,2019-04-05 14:31:26,,,newest,com.oristats.habitbull +Aileen Clare,https://lh3.googleusercontent.com/a-/AOh14GgbTw1Y6yI3_PpDNhOeJBlkvIvc_mvf-giK8p0Q,"I could not figure out how to set reminders. And I did NOT want to ""register""",2,0,,2019-03-31 19:03:17,,,newest,com.oristats.habitbull +Алексей Ивасечко,https://lh3.googleusercontent.com/a-/AOh14GgNMA2-y67nVvhmxmcTwW2eXem10al_aZkr-zr2fg,"Password reset is broken, cannot transfer it to a new cell phone. Think twice before buying this app. The habit-related side is good, however - this is why I bought it.",2,2,,2019-03-31 17:15:43,,,newest,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I love that you can chose x amount of days a week to complete a habit, other apps force you to commit to specific days, the flexibility in this app helps me succeed, what I hate about this app is it fails to get my habit completion-for example I did my workout for the day but still receive repeated notices to do said workout for that day. way to drain any joy out of an accomplishment habitbull!",2,9,1.5.11,2019-03-28 22:40:55,,,newest,com.oristats.habitbull +David Potter,https://lh3.googleusercontent.com/a-/AOh14GjJWE4gpf1GydyKlpadAljv5BkOcy4vuyPOpNzT7TY,"free version is all you need, paid version is overpriced and a waste of google credits",2,0,1.5.11,2019-03-23 00:34:24,,,newest,com.oristats.habitbull +Mariah Angele,https://lh3.googleusercontent.com/a-/AOh14GjgRsFXSKSu9FsCEQOoiGW6XCpvSE54mFcDZj6uAA,I love the ease of the application and the setup. I don't like that the way they send you reminders that are sometimes rude or shame-based. it doesn't make me want to try any harder when I get scolded for not fulfilling my goals. positive encouragement as the best way.,2,0,1.5.11,2019-03-16 03:21:31,,,newest,com.oristats.habitbull +i Pro,https://lh3.googleusercontent.com/a-/AOh14Ghh0TjkVgg_f9Ap6xB9WKF_C1vQwSYokGTce2I7ng,I want to start my week with Saturday and it is not available! only can change between Sunday & Monday !,2,0,,2019-03-06 05:45:24,,,newest,com.oristats.habitbull +Cristian Vlades,https://lh3.googleusercontent.com/a-/AOh14GgJHrWzbWDaRd4h_kedPSfgIJ1xYAji170g-wyVS8U,useless! you need a premium account to use Widgets,2,0,1.5.11,2019-03-04 13:40:45,,,newest,com.oristats.habitbull +Abigail Wigley,https://lh3.googleusercontent.com/a-/AOh14Gia9cU6W--4x3l5lk9Gtb1aCxpT7LAw6AMfamGFwg,"I had my phone switched off one day at the time my reminder usually pops up. Ever since then I've not got notifications at all, no matter if I try reset them or whatever. Kinda annoying because the calendar app on my phone has also stopped giving notifications lately so I keep forgetting to take my medication.",2,2,1.5.11,2019-03-02 01:28:42,,,newest,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Started off really well but has stopped working properly now. Great shame as it has a lot of promise.,2,0,1.5.11,2019-02-27 20:35:18,,,newest,com.oristats.habitbull +Grayson Hieb,https://lh3.googleusercontent.com/-0bgZU8xS52U/AAAAAAAAAAI/AAAAAAAApn4/AAKWJJNFJn7XZAk_XwTX2LDGk-Yw5e7KTg/photo.jpg,Crashes on sign in on my Pixel 2 XL,2,0,1.5.11,2019-02-17 19:25:40,,,newest,com.oristats.habitbull +Ashfin Raseem,https://lh3.googleusercontent.com/a-/AOh14GjH-5j0pGvYB4OKGH1F9m444NKMd9LwS0VlVYi3tQ,stuck on setting up your account,2,0,,2019-02-07 16:26:54,,,newest,com.oristats.habitbull +Katie Edden,https://lh3.googleusercontent.com/-2OSYyAeIm7U/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMLOimhMGjia9jCvyYoEL_-0D4JRQ/photo.jpg,"great app but waaay to complicated, deleted it and replaced with a different simpler app. interface looks cool though.",2,0,1.5.11,2019-02-06 15:41:08,,,newest,com.oristats.habitbull +Amber,https://lh3.googleusercontent.com/a-/AOh14GhlwKBib075FnYn0KQy5DyqkhHvx4jZmCw0EQTpWP8,"Great app! Just can't justify spending $8 - $10 in order to track more than 5 habits when there are other apps out there I don't need to pay for to do so. I'm switching to Loop Habit Tracker. Can track as many habits as I want and back everything up, all while being entirely free. Plus it's really nice!",3,8,1.5.11,2020-03-23 18:45:14,,,most_relevant,com.oristats.habitbull +AJ,https://lh3.googleusercontent.com/-tge2at8C72k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMp8sJZ10sQoICl7tG-ZR3KYkNdbA/photo.jpg,"Could be a great app except that like another user said, it does not sync between devices when the description claims that it can. That's a big letdown for me because when used any other of my devices, and when I switched phones, I couldn't sync the app up with my data or any habits I've been tracking, even though I have the premium account. When attempting to sync It always says that there is no internet connection, but there always is. So I can't give it a full 5/5 rating, otherwise I might.",3,10,1.5.11,2020-03-20 06:52:47,,,most_relevant,com.oristats.habitbull +Jacob Keller,https://lh3.googleusercontent.com/a-/AOh14GhoCojSEFn1oIEBOp73-W8NH7M0m-5Y2Acuf6AC,"I actually really love this app. I used it to create some serious personal progress. I purchased the full app but when I bought a new phone, it wouldn't let me sign out of my old device and into my new device. I emailed support about it...crickets. Never heard from them. If they can put together a decent support team I would give the app a 5 for sure.",3,3,1.5.11,2020-03-09 05:30:56,,,most_relevant,com.oristats.habitbull +Teresa Allen,https://lh3.googleusercontent.com/a-/AOh14GjTkqopusKTvYTRZHcQ5CkGIn8a2_u7CP_6vz6IiA,"Great app so long as you only use the free version which only tracks 5 x habits. Used the free version for a couple of weeks then paid £9.49 for the platinum version so I could sync to other devices. Really disappointed that the sync option won't work, and software support is non existent. For an expensive app I would expect the developers to be as helpful as possible when a customer has an issue but they have completely ignored my request for help!",3,6,1.5.11,2020-01-26 19:59:05,,,most_relevant,com.oristats.habitbull +Rebecca Prince,https://lh3.googleusercontent.com/a-/AOh14GhtsP53UzqvACsHf4sRRyAwbQiiUWT4Tzsts4ka,I really like this app and find it useful for keeping me on track. Simple but effective. I used the free version for almost 2 years. At the end of the first year it reset and I lost all of my history. So before the end of the second year I bought the premium version and promptly lost all of my history again. I contacted support to see if they could help and got no response at all. I still recommend it for tracking your habits but don't expect to keep the info long term or get help if you need it,3,5,1.5.11,2020-01-20 12:30:49,,,most_relevant,com.oristats.habitbull +Allan,https://lh3.googleusercontent.com/-d7dcM4JCt0g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOa5AlxzYKmUFhhxGx9NMspmxCvHw/photo.jpg,"Can only track 5 habits, but there are discussion forums. Most of the forums have no activity going on, but there are still a few users to talk to. Often times the app no longer syncs me to them, just like right now. The quotes have been stuck, too. Developers no longer support this app. Do not buy the premium version, as you will NOT be able to sync across devices. There are no more updates or customer support. This could have been the absolute best habit tracking app. So much wasted potential.",3,26,1.5.11,2020-02-08 06:59:05,,,most_relevant,com.oristats.habitbull +Jorge Jedidiah Preble,https://lh3.googleusercontent.com/a-/AOh14GgP4BuzhWtllpbECQyVyPjf0gxSA2zR0Z7nE5cU6A,"Navigation needs work: you can only navigate with the many buttons in the app, the back button closes the app. Feature request: Has weekly and monthly report, would like a daily report to share with an accountability partner Also, would be great to generate report based on category.",3,0,1.5.11,2020-01-29 23:48:08,,,most_relevant,com.oristats.habitbull +Backlists,https://lh3.googleusercontent.com/-E81Yvuzx_Rg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP06G55EMM3ZC34yDRqgUnwDi3ZqA/photo.jpg,"The concept has had an extremely positive effect on my life. However I am experiencing bugs with the widgets, where exercises are disappearing. Restarting hasn't helped.",3,0,1.5.11,2020-03-22 23:46:59,,,most_relevant,com.oristats.habitbull +Toby Longhurst,https://lh3.googleusercontent.com/a-/AOh14GjGDDOl28TNlncvH2jIS9QGdsK4kStDBODKwdrznA,"I think the app is very good, has helped me to keep track of my habits. However I wish there was a function whereby you could postpone a habit for something out of your control i.e. not going to the gym because you're on holiday. This although a break from the habit doesn't feel like it should affect the moments when you are focused and in control of keeping the habit. Also how is the success percentage measured if you only have to do the habit a certain number of times a week?",3,2,1.5.11,2019-11-02 00:32:59,,,most_relevant,com.oristats.habitbull +Hart Traveller,https://lh3.googleusercontent.com/a-/AOh14Gi7EG_mmwoFsT3m5-q8Qd-52jlq-En2JwZmSAS76EQ,"This is a good app but the data analysis and visualization is fundamentally broken. The score and success percentage function in that they record the success values for the end of each day and then add that to the database. This means unfortunately that your success percentage never goes above your first day, when if you did the thing, you got 100%. As such, the visualizations are useless. A better solution would be to include rolling means of success percentage by x number of day intervals.",3,4,1.5.11,2020-01-04 18:11:54,,,most_relevant,com.oristats.habitbull +Bell Sivila,https://lh3.googleusercontent.com/a-/AOh14GjuV2HAbLCUH4XNByGlP-vjYdnPAdXjq1fvrMFqXZk,"I love this app, I bought the premium version last year and I still can't synchronize my data, I have to change my phone and I will lose all the data! Could you fix that?",3,0,1.5.11,2020-02-09 15:38:46,,,most_relevant,com.oristats.habitbull +PIYUSH KUMAR,https://lh3.googleusercontent.com/-sCW_G2sXavg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN6fknqSrUwwbArVLlACjM7jyQ3bw/photo.jpg,The app is good but the reminders for some of the habits are not working. I have bought the pro version.,3,0,1.5.11,2020-03-31 17:10:06,,,most_relevant,com.oristats.habitbull +Sasha,https://lh3.googleusercontent.com/a-/AOh14Gg3FSV8baLs0rLf4oQlWctU8JWHjLTImVbr4c3CcYg,The app is great. I wanted to use this app as a way to help me to creat a better habit and staying on track with certain things. For me the notifications don't work unles I open the app and by that point its like my reminders have passed.. other then that easy app to use and navigate.,3,0,1.5.11,2019-10-21 18:09:07,,,most_relevant,com.oristats.habitbull +Glenda Roundtree,https://lh3.googleusercontent.com/a-/AOh14GjvmFf9Wlu8aT6m6fGgRyYpklR_dPkHgdhgoihGMg,"I think it could be more user-friendly, but maybe I haven't explored it enough. It keeps asking for a rating maybe it will stop now.",3,0,1.5.11,2020-03-12 10:59:28,,,most_relevant,com.oristats.habitbull +Prasamsa Naidu,https://lh3.googleusercontent.com/-BUgmKwIz7SI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMg_1BmUqS7bNmmIoYDshbfl3nX3Q/photo.jpg,Went for the premium subscription without a doubt. Definitely benefitial to those to use it honestly. Edit: Everything's good but after changing phones I've suffered having to manually copy the same habit list because the sync function just doesn't work.,3,0,1.5.11,2019-10-28 10:03:55,,,most_relevant,com.oristats.habitbull +Lynelle Smith,https://lh3.googleusercontent.com/-fOvIfWBzenY/AAAAAAAAAAI/AAAAAAAAAJk/AAKWJJP8MqzNpY2WwAsKUday6Kc18aRHww/photo.jpg,I liked how I could customize everything but my linked google fit didnt update my steps (I had to input myself) and my notifications would only go off if I opened the app myself. Kind of defeats the purpose of linking and setting up notifications...,3,0,1.5.11,2019-10-30 18:58:10,,,most_relevant,com.oristats.habitbull +Brian Grimwood,https://lh3.googleusercontent.com/a-/AOh14Gh964AN-Gt8mld7CR311fA96D-Q3gMSQyliUGzKCyM,"Doesn't open in weekly view even though I have it set to do so. Color scheme could be more attractive, or a greater variety of colors provided to choose from. When you like or dislike a motivational quote, it disappears forever, so if you really like one you should never rate it! Community discussion forum is a nice concept, but there are no dates on the posts, so I have no idea how old they are. Otherwise it's a good tracking app.",3,0,1.5.11,2018-09-24 02:49:05,,,most_relevant,com.oristats.habitbull +John Gell,https://lh3.googleusercontent.com/a-/AOh14GjGLx36aEnr1Umuw2RD7aYgIgqGhKNszp5CG6gpaw,"its a great app in general, just want a couple of tweaks that would make using it more streamlined. The biggest thing is I have goals that increase incrementally every day, I would love to have a way to have a yes or no that shows that incremental adjustment. Also, when inputting numerically set goals, I want to be able to just start typing the number and have it replace the default 0.0 without placing the cursor and backspacing to enter a result. Still, the interface is otherwise great!",3,0,1.5.11,2019-01-02 11:59:54,,,most_relevant,com.oristats.habitbull +Rishikesh Ramjith,https://lh3.googleusercontent.com/a-/AOh14GiOzagtBDw_JT4uoPrYAg10Fj_uqF3eoJdJmosmZg,"The app itself is really great. However, if you are going to buy premium, please make an account first, then buy premium. I bought premium without an account and was fine until I switched phones. I couldn't buy premium again because the option had disappeared but I didn't have access to premium features. I had even emailed support about the issue and gave the invoice number from Google play store. No response. This is enough to make me not use the app again.",3,0,,2018-10-27 04:45:37,,,most_relevant,com.oristats.habitbull +Rusty Shackleford,https://lh3.googleusercontent.com/a-/AOh14GjR2YVtD2XpANwCcV5QU3cJpMME7JFbbVQy_NbePw,"It's easy enough to use as it is, but for a fully paid app, the graphs are incredibly lackluster and basically useless. All you get is some minuscule, measly bar graphs which are tiny...and get this, they don't even label the metric you're tracking as they are displayed in the order in which your goal list is. So unless you memorize that goal #7 is say exercise daily, you won't even know what you're looking at. Additionally, the streaks are glitchy as hell, and often times do not calculate correctly. Really wish they also had aggregate goals, for example grouping similar goals together and then tracking the success percent for the aggregate. Like say if you have multiple diet goals for no dairy, no gluten, and no sugar, it would be great to group those in the diet category and then see your success there overall and trending graphs. And come on, add some pie charts and the ability to look at graphs in intervals aside from a single month.",3,1,1.5.11,2018-12-13 19:40:16,,,most_relevant,com.oristats.habitbull +Karen Hennigan-Thompson,https://lh3.googleusercontent.com/a-/AOh14GiUNQF8EdN95PHD3VGWzl4WZPh_jYwYg0EsBO6MOw,"Great in a lot of ways, but a huge drawback is that you can't edit the start date or previous inactivated/activated dates for a habit. So, if you've been doing a habit for a few weeks before you add it to the program, you can't record those two weeks of success in the program. Or, if you intentionally stopped a habit for a time period, but didn't inactivate it during your chosen time off, your percentage is dragged down.",3,11,1.5.11,2019-03-05 23:17:24,,,most_relevant,com.oristats.habitbull +Divyanshu Kumar,https://lh3.googleusercontent.com/a-/AOh14GgEaaDgt25nvSaGrv1oQ1INyPh6bA2GJwlHMs9r,Not giving 5 stars because of the following reasons : 1. It's very annoying when you enter into a habit page and you swipe down to scroll down to see stats . But it switches to another habit page. Please fix this . It's counter intuitive. 2. No method to edit the habits online on PC or Mac . Limits the app to smart phones only. Otherwise it's a good app. Does what it is supposed to do.,3,4,1.5.11,2018-10-08 15:27:48,,,most_relevant,com.oristats.habitbull +Der Thalon,https://lh3.googleusercontent.com/-8afJ9dwKSAU/AAAAAAAAAAI/AAAAAAAAAPM/AAKWJJPjNn4Dj05pcWPicF04p6ygcnxLxg/photo.jpg,Probably a good app and way to track your new habits but not being able to make a widget without a premium account is ridiculous.,3,0,,2020-02-04 00:31:23,,,most_relevant,com.oristats.habitbull +Laura Marie,https://lh3.googleusercontent.com/a-/AOh14Gg_mRrIw5aYmushemE2AtFlGXwj217KOdX8MSCPtA,"If you delete the app or transfer phones, you will lose everything! All past progress is gone and you can not get it back. You also can never use that login info again. Just keep that in mind. Also if you set your habit/goal for example twice a week, you'll still get reminders everyday. No options to change it to only notify when goal needs to be completed.",3,26,1.5.11,2019-04-08 17:18:21,,,most_relevant,com.oristats.habitbull +Make Change Mentoring,https://lh3.googleusercontent.com/a-/AOh14GgIftTgCcO3wG_iwGqSCOVMMWZNZIOOcJLF91OL,"love the tracking, love the accountability. I use the widget, but I dont like that you can't split habits into ""profile"" type structures. for example, an ""AM"" Routine list of check offs, and a ""PM"" Routine. maybe those and a list of habits you just want to complete daily at any time. that would be a game changer for me. I've considered other apps because of that one missing feature. I dont like how the widget groups every single habit Into one list. I want to split habits up between multiple.",3,0,,2018-12-22 20:32:13,,,most_relevant,com.oristats.habitbull +Chanel B,https://lh3.googleusercontent.com/a-/AOh14Gh51k3dJtDVhR3OlCViOFypBOi-f5YXHJa4n6Ooig,"Please fix app, cannot refresh once again for the second time !! Topics & Pic Quote",3,0,1.5.11,2020-02-14 12:20:01,,,most_relevant,com.oristats.habitbull +Ariana Dalmau,https://lh3.googleusercontent.com/a-/AOh14GiR9fmTkbw9Rz8tVHne_eMEdN1nSnb_kMr0ZxzzXA,"Overall I love this app and find it very useful. My main issue is sometimes my reminders don't pop up? Which is kind of irritating considering I use it to remember my birth control. When it doesn't remind me, I'll often completely forget to take it or remember a few hours after when I'm supposed to take it. Like I said, love this app and use it to track when I go to the gym or remembering my pills. Just wish my reminders would work :(",3,0,1.5.11,2019-03-15 01:24:53,,,most_relevant,com.oristats.habitbull +Pi Farah,https://lh3.googleusercontent.com/-mKvgEx7JpLk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOZ65_XuIjxVMnjtTlsdM0JY-2Cgw/photo.jpg,best habit tracker ✓ edit- can you guys fix the overall habitbull score graph? It's not accurate- always trending down no matter what.,3,0,1.5.11,2020-02-18 00:04:52,,,most_relevant,com.oristats.habitbull +Tony Monk II,https://lh3.googleusercontent.com/a-/AOh14GgoZw0Kmg9I6AZrSYzl9DLTsHVZIRCtCFdai2LjjmA,It was decent but I remember having to tap so many times just to get it to record your progress. Not very streamlined.,3,0,1.5.11,2019-11-24 03:05:13,,,most_relevant,com.oristats.habitbull +Senthilkumar S Kathiresan,https://lh3.googleusercontent.com/a-/AOh14GjM4yHMiwbns38IkKf2l_XYpIX7Riu6rp0mbxg477M,I bought the paid verison. It does help us track the habits with simple yes or no questions and by answering with numbers. But habits aren't as simple as it is... we need other methods to track habits like options to enter time. If I want to develop a habit of waking up by 7.. it shouldn't be a yes or no question... I should be able to enter the time track it over the month.,3,2,1.5.11,2019-06-20 13:50:59,,,most_relevant,com.oristats.habitbull +James Meads,https://lh3.googleusercontent.com/a-/AOh14GgH9ssr38p3VC563hHsSivXs7fieColBGXQn9u50A,"I like this app and what it can do and am pleased with its functionality. However, having paid for the premium version, I find it annoying beyond belief that I get pop-ups every 2 weeks asking me to leave a review. So, developers, I've left one but you've lost 1.5 stars for spamming me with these requests. This shouldn't happen in a paid app without any opportunity to turn off these notifications.",3,14,1.5.11,2019-08-06 06:53:52,,,most_relevant,com.oristats.habitbull +R Lavender,https://lh3.googleusercontent.com/a-/AOh14GjkaDO9pCz_n6763qFCWv01u3ZqvxLrirthk12N,it’s a great app and works great. helps me keep track of whether or not I took pills or did excercises or not. However it lacks the feature of ”multiple times a day” So if for instance a person was trying to create a habit to do something twice in one day. this app won't help since you can only click that you did it once. Does anybody know if thier is an app that has this feature?,3,2,,2019-06-20 21:31:07,,,most_relevant,com.oristats.habitbull +Naveen Drall,https://lh3.googleusercontent.com/-5lSm_9j0uPw/AAAAAAAAAAI/AAAAAAAADO0/AAKWJJMKI16zaitISWT96vV39FCLJr8zxw/photo.jpg,"habit syncing not working on paid version. app is great, but after phone resets and all my habits data of 2 months is lost. And the app is showing i don't have a internet connection even though i am writing this review on same internet connection. But other than that app works great , the widget is great and i use it daily.",3,10,1.5.11,2019-10-01 19:06:33,,,most_relevant,com.oristats.habitbull +Samantha Austin,https://lh3.googleusercontent.com/a-/AOh14GjtnF_PcuILVFZoiiRfSWni5SnoavdDMEk-NlRsqQ,"So far it's not flexible enough for me. Also, there needs to be an option to remove 'general discussion ' from the dash board. There seems to be a startling number of people with goals surrounding masturbation and porn and I just don't need to see that when I'm trying to inspire myself to play more music. I'm going with the stars as a benefit of the doubt as I haven't given it much time but I can't see me using this.",3,9,1.5.11,2019-08-15 21:25:20,,,most_relevant,com.oristats.habitbull +Kipkirui Abednego,https://lh3.googleusercontent.com/a-/AOh14GjPagDB0HCEcQMDsWhJGijZjHMlpfUBSUL3t776cQ,The interface is intuitive. I am giving a three because my online data did not sync when I upgraded.,3,0,1.5.11,2019-12-01 06:18:58,,,most_relevant,com.oristats.habitbull +Will Fordham,https://lh3.googleusercontent.com/a-/AOh14Gi8vXJLTO4JCl2TDWegqsH-VfrpPcEDofUyzXn3rg,"Great format and tracking. £7 seems excessive for upgrade feature to use as a widget... Also, people have a form of spirituality rather than a religion: can that not be reflected in the app too, for inclusivity? Removing forum comments would be a great option: an unnecessary distraction.",3,0,1.5.11,2019-06-09 16:37:04,,,most_relevant,com.oristats.habitbull +Michele Leyenaar,https://lh3.googleusercontent.com/a-/AOh14GgK7nrcpTG224jsS6Ee8ZcWNpHm5jWwOL_yIfcZ,Good app but faulty notifications. The notifications and reminders were working perfectly but they only work now if I open the app. By that point it's too late. I need the reminders to work to be effective. I purchased the full version.,3,0,1.5.11,2019-07-23 20:41:11,,,most_relevant,com.oristats.habitbull +Rigel75,https://lh3.googleusercontent.com/a-/AOh14Giqa5qd8Co8ONQMm6E7tF69WPx1soKQj8CIGsnhfZo,This habit tracker is fairly good in its own right but there are ways it can be improved a lot. Perhaps it can be more specific. Perhaps it can become more addictive with certain rewards for teaching certain goals.,3,0,1.5.11,2019-03-15 10:59:24,,,most_relevant,com.oristats.habitbull +Gabe Manzanet,https://lh3.googleusercontent.com/a-/AOh14Gh_InrA4b-tQqK1BP9UU_SxkMjuObaHq5YjJZa5DQ,I keep getting a popup that habbitbull has stopped working. idk why it was even open in the first place but it is constantly annoying me. and i don't even see any of actual issues that the crash is causing besides the annoying popup. I've sent feedback a few times but no response,3,0,1.5.11,2019-01-08 21:51:18,,,most_relevant,com.oristats.habitbull +Kathryn Lounsbury,https://lh3.googleusercontent.com/a-/AOh14GgHuDdC0FraVVL9KDI02qAqFyIYg-Ugyz5J-p9_,Really enjoying this app but wish I could track more than 5 habits!!,3,0,1.5.11,2020-01-20 04:00:27,,,most_relevant,com.oristats.habitbull +Piotr Gorczycki,https://lh3.googleusercontent.com/a-/AOh14GiCRWV6UvPu6FlnVwweYO8Fc1HbgEufMXxWtgV6VA,"As great as this app is there is no way to turn off the annoying popups within it. 'rate us', 'congrats 10 days in a row' really? I can see the result. Please add an option to turn off all popups within the app.",3,0,1.5.11,2018-11-27 08:37:10,,,most_relevant,com.oristats.habitbull +Jithesh Mohan,https://lh3.googleusercontent.com/-X0fmfsPu6OQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPcBDMYeoEVSpsInYaMG2-PJjffcQ/photo.jpg,The Reminder option is not working....I have paid for premium to use the app to its full potential but Unfortunately....The basic feature of the app to remind you to stick to your schedule with respect to habits you creat dosent work....kindly help by resolving this issue... Color code Options are limited that can be assigmed to the newly added habit,3,0,1.5.11,2019-10-05 00:49:33,,,most_relevant,com.oristats.habitbull +Wade Kothandapany,https://lh3.googleusercontent.com/a-/AOh14GjGhTXs418f6ruoeBxU6o-2SYKuBWOBr2eC2RXUJQ,"Overall great app, but it never gives me notifications so it kind of defeats the purpose of having it.",3,0,1.5.11,2019-12-03 22:55:04,,,most_relevant,com.oristats.habitbull +Richard Todd Aguayo,https://lh3.googleusercontent.com/a-/AOh14GjVg_pk0cORcZqFD_PyZVVTorjdA_UfA-EeZwEMTg,"BULL: I've been using it for 2 weeks and it's okay, except for the fact that the widget doesn't work most of the time. I have to open the app directly to be able to list activities, which renders the widget useless. I paid for the upgrade which makes this issue all the more frustrating!",3,0,1.5.11,2018-11-15 14:29:05,,,most_relevant,com.oristats.habitbull +Vijay Prasanna,https://lh3.googleusercontent.com/a-/AOh14GjMBdE094ptk8iS9jX9Lbm3ndqetRge5w9EwMDZZw,"The app is great but things aren't automatic.. like there's no notification to make me use the app even though i turned it on in settings, and the quote of the day is constant until i change to next even if days pass by.. it should be set to auto change.. other than these two fixes i love the app!",3,7,1.5.11,2018-09-28 11:14:26,,,most_relevant,com.oristats.habitbull +joanne harrison,https://lh3.googleusercontent.com/-cG7RTuvLLqA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMM-q_0xnXXNz6Thg4kjgJrEhSJbQ/photo.jpg,we would like it more if there was a way to not see explicit messages on how well people are doing opened up by my 8yo caused some conversations we'd have preferred not to have at grammas so looking for a app we like as much for ease of use and that we can control the explicit messages had to delete off of her phone and will probably be following her,3,1,1.5.11,2019-04-17 21:05:57,,,most_relevant,com.oristats.habitbull +Paulo Rodolfo Mariani Bittencourt,https://lh3.googleusercontent.com/a-/AOh14GhxWTmKhCMafrsq-1j4iWVnHzKK0kg9NlmBnJWTOQ,"The best app around for tracking habits. But the artificial limitation to 5 habits in the free version coupled with the eye-gouging price of the pro version lost it two stars. I paid, but I am NOT happy with the price.",3,0,1.5.11,2019-06-11 00:18:17,,,most_relevant,com.oristats.habitbull +Thomas Rickard,https://lh3.googleusercontent.com/a-/AOh14Gj1rexg-xRpY_Xh78BBJ2pLNFuElYqD7g54gYxWaQ,"i have written 0 or 15 minutes for a 30 minute target, the app still registers it as part of a streak, even after i delete the entry. seems like its just ignoring what i tell it. also, what i really want is an hours per week target",3,1,1.5.11,2019-03-27 11:53:28,,,most_relevant,com.oristats.habitbull +igor camargo,https://lh3.googleusercontent.com/a-/AOh14Gg7vwNBrO43CqQjGdo6Hi9_T2v9-WhBzBu_oBFvfw,"it's a pretty good app, but its has a serious glitch, the goal day isn't functioning properly. No matter which goal date you set, it will always be the same day you created the task. ( like you finished today )",3,0,1.5.11,2019-01-27 17:45:58,,,most_relevant,com.oristats.habitbull +Abdelrahman Azmi,https://lh3.googleusercontent.com/a-/AOh14Gib3MFDduMiUgLq8RK5vVCLlMbaIgR6i0V3d_5v,"Very nice, very simple, very usefull, but the free mode is too annoyingly limited. looking forward to having the ability to link habits with my wife or friends.",3,1,1.5.11,2019-02-28 13:53:43,,,most_relevant,com.oristats.habitbull +J.F. Lin,https://lh3.googleusercontent.com/a-/AOh14GhSusCBAKFf4j61R9qrKtcq5JPAGMyMwPCdqtY1gg,so-so. not as intuitive right off but fine after a little of fiddling around. but the free version only tracks 5 habits and i dont love it enough to see the value in paying for it since there are other apps out there that satisfy the same thing.,3,0,,2019-01-17 20:52:08,,,most_relevant,com.oristats.habitbull +Bartłomiej Mazur,https://lh3.googleusercontent.com/-W_cPfvaX_Ak/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPTix4ntViJ2IR8kRvi-DxstMlp8w/photo.jpg,Seems pretty neat but i miss one feature thst is very important for me: be able to just hit start/stop for tasks thst needs to be done for at least x minutes per day. i dont check or remember time when i start doing something.,3,0,1.5.11,2019-04-12 11:33:16,,,most_relevant,com.oristats.habitbull +Kaila Clark,https://lh3.googleusercontent.com/a-/AOh14GgXVTPlWb1LbOpkAeQnTAEvsjrGPUk_8JbgetlDHw,"Dont buy the premium, the widgets don't work (the reason I bought premium) and I set up notifications for each hour to remind me of a task, but the notifications only pop up if you open the app which render the notifications useless. Otherwise I enjoy the basic use of the app",3,3,1.5.11,2019-07-19 17:10:46,,,most_relevant,com.oristats.habitbull +amruta godase,https://lh3.googleusercontent.com/a-/AOh14GjLSf77hBi0piwF8azL18ZHe73kGwAbxfR5ZuNhYQ,Don't get any reminders for the goals inspite of setting it a number of times!,3,0,1.5.11,2019-10-14 08:03:56,,,most_relevant,com.oristats.habitbull +Musa Ahmad,https://lh3.googleusercontent.com/-efb-WXDlT0o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPiMxrGqcRDYjdROlYrwfYhKXx7Gg/photo.jpg,Everything is good but i would like to see more then a five slots for habits,3,0,,2020-02-18 07:37:35,,,most_relevant,com.oristats.habitbull +tlhoni nico dietsiso,https://lh3.googleusercontent.com/a-/AOh14Gip5My5dNG1_MdlmMbwg5A5dg3rut8J_nPGnrScrw,"Great app! Still testing it out so will come back with better rating... From last time I used it, it worked perfectly no issues... Second time around... Should be interesting.",3,0,1.5.11,2019-01-15 19:20:54,,,most_relevant,com.oristats.habitbull +Ashutosh Tripathi,https://lh3.googleusercontent.com/a-/AOh14GgZw8L_A6dkZgNI9bGZUw7RDfzfboucJh75ltisqg,The hourly reminders don't work properly. They show up sometimes and sometimes they don't. It's unreliable that way. Otherwise the app is quite nice.,3,2,1.5.11,2018-09-15 11:39:09,,,most_relevant,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,It's good. But you can only have 5 habits to track. If you want more... $$$ in displease because it's like a demo... :( but nobody tells you.,3,1,1.5.11,2018-11-06 13:12:52,,,most_relevant,com.oristats.habitbull +Christy Mitchell,https://lh3.googleusercontent.com/a-/AOh14GjXVBbvwmu-BGtS2hYyUpZPGZLlYSgfqbmavjXBrDc,"Doesn't save habit data when you switch to a new phone, even using the same login information. Won't let me choose a start date for my habit either, so it never shows 100% success like it should.",3,8,1.5.11,2019-08-24 20:13:12,,,most_relevant,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Good simple app and interface, well made. Would prefer a free, advert monetization model than sub model. I dont plan to pay monthly and free version is somewhat limited for my purposes.",3,0,1.5.11,2019-02-23 23:54:47,,,most_relevant,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,I am having issues with the purchased premium version but am not getting any reply to my email inquiries. Generally I found the app great but this lack of support is really disappointing.,3,0,1.5.11,2018-10-24 15:53:57,,,most_relevant,com.oristats.habitbull +Elsie Wilson,https://lh3.googleusercontent.com/-zsrGNDrIpXk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPwiNH9MokpzF71YEM_GU6uTCVlvg/photo.jpg,"Worked great until the app started calling me pet names in the notifications. I'm not trying to be catcalled by my phone and my natural reaction was to ignore it like I would anyone else who calls me ""sugar"". I have not formed the habits I wanted to as a result.",3,5,1.5.11,2018-09-16 18:19:12,,,most_relevant,com.oristats.habitbull +Maria Kozorezova,https://lh3.googleusercontent.com/a-/AOh14GggPnRIQk-SdEFAsB-_v-HDbAm1z3PUAc3MtDLok7g,"So I assume this app is no longer supported by its owner? Last update was summer 2018 and I saw lots of negative reviews here and on twitter about owner not responding at all. Wanted to buy premium, but first checked reviews... Ugh, it looked like a really perfect app! Sad.",3,5,1.5.11,2019-03-26 18:09:26,,,most_relevant,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Even though you don't get full access for free, this app still helps you a lot with habits you want to change. It's just an organizing tool to motivate you to keep going. Worth a try!",3,0,1.5.11,2018-12-21 00:10:24,,,most_relevant,com.oristats.habitbull +Kimi Gee419,https://lh3.googleusercontent.com/-oA9Mo5OK9JI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP-_2VPSHC9KyEyO_jOmuTT8FddZg/photo.jpg,"Not so easy to figure out. I still don't get how to enter achievements in terms of goals, such as if I practice 15 mins but the goal was 30. No help in app.",3,0,1.5.11,2018-10-18 01:36:10,,,most_relevant,com.oristats.habitbull +Alireza Shahsar,https://lh3.googleusercontent.com/a-/AOh14Gh0QNtrJYsb2soBMLcujZAVK28EhCMIH-c9hd4PqQ,"5 habits for free version is not enough. Instead of limiting habits for free version, disable notifications or cloud storage or inter device sync, theme, calendar support and these similar abilities for free version.",3,1,,2018-11-07 05:04:09,,,most_relevant,com.oristats.habitbull +Ad M,https://lh3.googleusercontent.com/-yr-d_dKGz5w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO7eZx_FOSi5L_yjIMh_HGkn3zZKA/photo.jpg,I really like this application. Very well done! My reason for 3 and not 5stars is the lack of any security. No option for fingerprint or pin before viewing what could be sensitive personal information. PLEASE ADD SECURITY!,3,0,1.5.11,2019-07-27 14:20:28,,,most_relevant,com.oristats.habitbull +Richard Wright,https://lh3.googleusercontent.com/a-/AOh14Gj8wvelFvjP2yhYV7kMfVhsUza1MFaVrSKr8LY7,Cool layout very easy. Push notifications aren't working so it doesn't remind me at the time I tell it too but can't figure why I allowed notifications so probably a bug.,3,0,1.5.11,2019-01-31 17:50:29,,,most_relevant,com.oristats.habitbull +Kim Collins,https://lh3.googleusercontent.com/-5rKw4pEU3O8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNBR5FVS0po8MUO_b0W8lP0s_MMnQ/photo.jpg,"I have suceeded 100% and indicates so in the tracker but only says 87% on the app. one of my goals was yoga on Mondays, not sure if it is penalizing me for the other days.",3,0,1.5.11,2019-03-13 22:07:06,,,most_relevant,com.oristats.habitbull +Manpreet Singh Lalria,https://lh3.googleusercontent.com/a-/AOh14GgB1RxpDINuREL4FnXS_EHckXSrJeyQCGi8EyHvDA,"I used this app a few times, but now, Facebook login won't work. It'd be a better app if you could just sync it with your Google account.",3,1,1.5.11,2018-10-16 09:48:25,,,most_relevant,com.oristats.habitbull +Joshua Miller,https://lh3.googleusercontent.com/a-/AOh14Gi88DX8yZ4vRh182yLWLOE3dxTjymXPWTWBP-2N,im only doing this because it would not stop telling me give then a rating. (hence the lower score) pretty good app and the best part is it has a widget and only a one time fee to have full access to app.,3,0,,2019-01-13 21:34:28,,,most_relevant,com.oristats.habitbull +Danyael Dacanay,https://lh3.googleusercontent.com/a-/AOh14GgEO8qmZ8EMePI2uUUOJzLgnURhdEMIXdh5xL2GPg,It's ok but a bit too simple and the inspirational messages don't change not really very motivating to use this app compared to my previous habit tracker. The App's look doesn't come exciting to look at as well.,3,0,1.5.11,2019-07-19 13:34:16,,,most_relevant,com.oristats.habitbull +Valdes Singh,https://lh3.googleusercontent.com/-sVS2BMNgA8o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO_qznlRgUrpCi__VjB62OAZ8t6RA/photo.jpg,I am not satisfied with this app because circles used for completing the habits look very dirty .,3,0,1.5.11,2020-02-11 02:33:16,,,most_relevant,com.oristats.habitbull +The Weston Home,https://lh3.googleusercontent.com/-_TRDCSda01E/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNNiCkv9k94wz9dbKNQM9bZ7Ye8Lg/photo.jpg,"Good function, weird execution. The program works great, but it has weird way of reminding the user of the habit. like saying Hey, tiger"" its just weird",3,0,,2019-05-27 13:29:20,,,most_relevant,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,the app is good but the customer support is awful. I tried them a few times asking to transfer my premium account I had on iphone to my samsung phone but got no reply whatsoever.,3,0,1.5.11,2019-02-24 12:43:12,,,most_relevant,com.oristats.habitbull +Ryke Waltz,https://lh3.googleusercontent.com/-0H_i-TgFkaw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOgCJQZ1I8zjE4jJIcoC0c_bMaG4Q/photo.jpg,Good app. Minus one star because of the constant nagging. And that's in the paid version. :-(,3,0,1.5.11,2019-05-19 00:20:35,,,most_relevant,com.oristats.habitbull +Dhanguru Nanak,https://lh3.googleusercontent.com/-mvUs0FKs6t0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO6NHT0D5zZ8HGtSlIXKViQpTyroA/photo.jpg,"In this free version, we can add 5 habits only.",3,0,1.5.11,2020-02-15 09:09:04,,,most_relevant,com.oristats.habitbull +Barry Cochran,https://lh3.googleusercontent.com/a-/AOh14Gi_iy7JphLcGp5zslNse19IGdifMedu1Vf2h78Re4M,Synching between my Chromebook and phone is a necessity for me and does not work on this app. The color coding for completed tasks is not intuitive.,3,1,,2019-08-04 14:39:14,,,most_relevant,com.oristats.habitbull +David Cassell,https://lh3.googleusercontent.com/a-/AOh14GjW8yoMnb_iO2q2LE0Gv1KqO7LlJ1ZRczn9x5686w,It is ok. Bit too simple really and could do with a little bit of TLC and new features and just some developer input. Does the job though.,3,0,1.5.11,2018-11-14 05:10:28,,,most_relevant,com.oristats.habitbull +Jacob Clenney,https://lh3.googleusercontent.com/a-/AOh14GhH031jGKrEE7H89xwLidCpmZyArjKvuKTOQhIHRA,Good app but only counts by day. 5 stars if there was an option to count times a week as well.,3,0,1.5.11,2019-06-09 22:25:15,,,most_relevant,com.oristats.habitbull +Magmagan,https://lh3.googleusercontent.com/a-/AOh14Ghh4EDHZ2-lTSV-SuWTpQyysdwyOupFhmw8QK1qwA,"Lots of unnecessary notifications, the GUI is confusing and is missing a few features for a habit tracking app, like splurging only every X days (but no less).",3,1,1.5.11,2019-09-16 02:42:49,,,most_relevant,com.oristats.habitbull +Victoria-Marie Sanchez,https://lh3.googleusercontent.com/a-/AOh14GilX-So41f7TjNFvmu7QmL9x511yNUROlKWuwqGBg,Great but when you set a target date it doesnt remain as is and shifts to another day for that month.,3,0,1.5.11,2019-04-18 20:12:24,,,most_relevant,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Works great except for you have to have upgrade to be able to have more than five habits.,3,0,1.5.11,2019-02-23 19:41:13,,,most_relevant,com.oristats.habitbull +Joy J,https://lh3.googleusercontent.com/-K9wualqORMY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO40ELZAphUH7mP2L93AsK_EcHU0g/photo.jpg,unable to set custom notification sound. it uses default sound even after changing. others looks good.,3,0,1.5.11,2019-06-04 14:38:15,,,most_relevant,com.oristats.habitbull +Marco Velasco,https://lh3.googleusercontent.com/a-/AOh14GjugHPylFd-jIrjxjGDaai0WUolqhF4G6xhNsDZUMU,"it's a useful app, have maybe some things to improve like, the habit set up is not very clear or intuitive",3,0,1.5.11,2019-04-03 19:53:57,,,most_relevant,com.oristats.habitbull +Nicholas Rivett,https://lh3.googleusercontent.com/a-/AOh14Gil52koAWEqh8I78dvjt3hhflK5_Hc8vdq8kD2NOg,Used to work great. Unfortunetly notifications no longer go off for ir making it useless. Have checked they are not blocked,3,0,1.5.11,2018-11-05 20:38:45,,,most_relevant,com.oristats.habitbull +Rajesh j.jamod,https://lh3.googleusercontent.com/-oYgMIThUfTw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM3k7qqk9WDqYhuUyvXtCIGlOiKtw/photo.jpg,"wish i am not able to edit anything in past for future events. if i am crrating any habbit same day onwards, i still can able to edit in past events!",3,0,1.5.11,2019-05-16 03:46:16,,,most_relevant,com.oristats.habitbull +Tami Burke,https://lh3.googleusercontent.com/a-/AOh14Ggon5uZTKzdH_Ns2VIN_FL8riomMS6I6wmPtH-EKA,Odd that it doesnt count beginning and end of month corrctly in monthly tally,3,0,1.5.11,2019-12-04 02:25:56,,,most_relevant,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Pretty good overall. Notifications and reminders do not work most of the time.,3,0,1.5.11,2019-01-26 12:40:21,,,most_relevant,com.oristats.habitbull +Praveen Kumar Sahu,https://lh3.googleusercontent.com/a-/AOh14Gh4hIUglBFSuY-LMUfSXx4DtYEm1Ok1CfTlMOzzDg,Used it for 1 day. Then forgot to even open it as got into new habit. It kept showing notifications and I kept ignoring it. Not much productive for me but app design is good.,3,0,,2018-10-27 19:25:56,,,most_relevant,com.oristats.habitbull +Dhwani Vij,https://lh3.googleusercontent.com/a-/AOh14GgmSrfaRhCj81pSfAKetWrnTfirNFHTFtiqVl9Yeg,"Hello, I recently shifted to a new phone. I have a premium membership. But I am unable to transfer my data to the new phone. Please help!",3,0,1.5.11,2019-11-12 17:33:48,,,most_relevant,com.oristats.habitbull +Paul Stein,https://lh3.googleusercontent.com/-U4GhrcNDWYw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOm3N9xZV3ZyvD6hjQ16Tun6MLO_Q/photo.jpg,Good idea but glitches...eg I incorrectly logged a day as performing a habit and could not change the fact I had actually broken the chain...,3,0,1.5.11,2018-10-12 19:04:07,,,most_relevant,com.oristats.habitbull +Tom S,https://lh3.googleusercontent.com/a-/AOh14GiPphPXWwsgBJ98jmKe32wxGQ5FcoAHITS06TKOrA,shows monthly when startup even after changing it in the settings to show weekly. otherwise all around good app.,3,0,1.5.11,2019-07-05 10:12:22,,,most_relevant,com.oristats.habitbull +Kody Digre,https://lh3.googleusercontent.com/a-/AOh14GiBvd_QnhwFduKQMLH59tK6n_r9exWdLpZ0OXU36A,it takes a lot of menus and selections to add anything to your list.,3,0,1.5.11,2019-03-28 15:36:25,,,most_relevant,com.oristats.habitbull +Simon Williamson,https://lh3.googleusercontent.com/-npmRqnnofeY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPbbt_3AZY8vNIeDLAOa8Ud9xQm9A/photo.jpg,A great way to track goals but quite limited in functionaliry and the Google fit integration doesn't work.,3,0,1.5.11,2019-10-02 21:13:04,,,most_relevant,com.oristats.habitbull +Archit Kukdey,https://lh3.googleusercontent.com/-rTfiVzaV-xo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMIKW1B6Uy1YLDNGM1cP_fX_yewFw/photo.jpg,App is awesome n also helps alot but its inbuilt password once forgot don't opens the app. Evertime i need to log out and again log in it. Plz solve my issue,3,0,1.5.11,2019-07-31 08:12:33,,,most_relevant,com.oristats.habitbull +Chris Draper,https://lh3.googleusercontent.com/-v4M6MXs6Ou0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP48M4OcgL_vJgtwpMN_9YrTpDjnA/photo.jpg,"The setup seemed nice, but the constant pop ups are so annoying as to make it unusable",3,0,,2019-08-22 17:21:53,,,most_relevant,com.oristats.habitbull +Dexter Brian,https://lh3.googleusercontent.com/a-/AOh14GiiC5vm4RsWUMWbkCUhyxogUfXhMg5MWvrslwat,I really like the app. Maybe just work on improving the graphs a bit more,3,0,1.5.11,2019-06-20 05:19:45,,,most_relevant,com.oristats.habitbull +Rakhi Thayyil,https://lh3.googleusercontent.com/a-/AOh14GgtCni68r01g8t5vRDu5fkLzycdOyf8l8m0D3JN,"Notifications do not show up. Thought I have enabled all permissions and to override dnd, the notifications and reminders do not work.",3,0,1.5.11,2019-06-01 04:15:39,,,most_relevant,com.oristats.habitbull +Jethro Lampitt,https://lh3.googleusercontent.com/a-/AOh14GhhG53VhiKwWPSR23pQ6Zy5tWKWrY5tPgI5MQwGMUU,It's an okay app but I have found better ones such as I am sober. This needs to be paid for to be useful.,3,0,1.5.11,2019-09-17 10:39:55,,,most_relevant,com.oristats.habitbull +Human Bieng,https://lh3.googleusercontent.com/a-/AOh14Gj_uqgaOFQJbKWtPnu1Tbk1y35qaTIFlMDT5kzy9g,Nice app. it's just I feel their is always space for improvement.,3,0,1.5.11,2019-03-19 13:44:11,,,most_relevant,com.oristats.habitbull +Felix Grauschopf,https://lh3.googleusercontent.com/-URmF23S0eVY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPl9kNtL-Y0yPEtpV7pIFzr7raMvQ/photo.jpg,"When you start a habit with giving points for it or like at least that and that amount of days, you can't just change it back to a simple yes and no habit",3,0,1.5.11,2019-07-28 12:21:55,,,most_relevant,com.oristats.habitbull +ARP,https://lh3.googleusercontent.com/a-/AOh14GgFQjlp8oQ9z3oOxCCwA5zpz1J6u9xEiBCxTcuv,No sound in reminders. Just vibration. How can i fix it?,3,0,,2019-02-04 21:20:36,,,most_relevant,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,hi! the reminder feature is not working/ supporting in my phone. Also if possible please add support in your app to contact for bugs. thank you.,3,0,,2019-01-17 16:24:59,,,most_relevant,com.oristats.habitbull +Abhishek Kalyan,https://lh3.googleusercontent.com/a-/AOh14GgGFhiI2A8d0RtmjmWeyEOVP9zvvpFsKkgMr1RPZmM,Need to pay to track more than 5 habits and ui doesn't look simple or impressive,3,0,1.5.11,2019-03-05 14:38:48,,,most_relevant,com.oristats.habitbull +Elisha H.,https://lh3.googleusercontent.com/a-/AOh14GgU1nV5J9JH_irhYahEcgW-TIJq62dRfA6LJ-Kf,"It works, but i can't sync my goals with my tablet..",3,1,1.5.11,2018-09-12 13:20:06,,,most_relevant,com.oristats.habitbull +Mustafa Mario,https://lh3.googleusercontent.com/a-/AOh14Gga7fEyonz7VEV4dKcQv85Y5lQrTAtKG7cmgb4adA,It's good app But it's not free if you want to add more than 5 habit,3,0,1.5.11,2019-12-14 18:08:17,,,most_relevant,com.oristats.habitbull +Corey Miller,https://lh3.googleusercontent.com/a-/AOh14Gg-K4lBxQNC80JZBRECoW_PjiUPgRvskNEvMvn0wA,"Great app, lots of ads",3,0,,2020-01-31 07:05:34,,,most_relevant,com.oristats.habitbull +Jay Dg,https://lh3.googleusercontent.com/a-/AOh14GidjQrkWCrggcxc4UetOs3QOPP2fNzEWdx9tXCt,It'd be better if it allowed more than 5 habits to be listed.,3,0,1.5.11,2019-01-20 22:50:17,,,most_relevant,com.oristats.habitbull +Rasi,https://lh3.googleusercontent.com/a-/AOh14GgsOO_ZcJvJpsZ9S6ueq5WZlNQ4s5YmLkKjQ448,I would have loved this app except for the fact that I need to pay to even use it as a widget.,3,0,1.5.11,2018-11-21 04:08:10,,,most_relevant,com.oristats.habitbull +Sooraj Sharma,https://lh3.googleusercontent.com/a-/AOh14GifvzJP7LOXVTpKi07wBg9BF8rLr9H6b1mUGG_ToLk,"Must be a better reminder system to keep user in check. In a busy schedule, one might forget to Check in.",3,0,1.5.11,2019-04-12 04:22:32,,,most_relevant,com.oristats.habitbull +Deepanshu Arora,https://lh3.googleusercontent.com/a-/AOh14GjDfMrz1016y-MKDlkyfKznlsY6IFIrF5kufSw3,Limited functionality but reliable.,3,0,,2019-10-30 13:07:00,,,most_relevant,com.oristats.habitbull +Alex Chernyaev,https://lh3.googleusercontent.com/-NTWYOynEG8w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPXeuHqabJJuKFIxjwzXEgy1kPfYA/photo.jpg,only premium is good. free version has nothing,3,0,1.5.11,2019-04-13 14:59:15,,,most_relevant,com.oristats.habitbull +"me, myself and I",https://lh3.googleusercontent.com/a-/AOh14GhNgh0I2jDNkokj9boWQINYnbbeUN0mzOv6ZKM-zQ,This app is good but I can't access 5 habit because I need premium to access it 🙅🤷,3,0,1.5.11,2019-11-08 02:39:59,,,most_relevant,com.oristats.habitbull +Anton K,https://lh3.googleusercontent.com/a-/AOh14GhptURFsNGQBnZea4k4aIyEE3fCk2Lbgd7ZP7Qqhg,"I need to track not only good habits, but also bad. With this app it is impossible. I don't want to smoke AT LEAST two times in a month or greater to reach my goal, I want to smoke NO MORE THEN two times in a month or less for success",3,0,1.5.11,2019-02-02 12:59:08,,,most_relevant,com.oristats.habitbull +Tal Stanek,https://lh3.googleusercontent.com/-RpyzLPnhx1s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPVT51WeybX0SeW-rq2jisrcsH1kg/photo.jpg,good app that does it's supposed to. wish it had some improvements to make it great (suggestions in the in-app forum),3,0,1.5.11,2019-02-20 06:01:29,,,most_relevant,com.oristats.habitbull +Dan Pettersson,https://lh3.googleusercontent.com/-M1IJ7HFLj6E/AAAAAAAAAAI/AAAAAAAAAJ4/AAKWJJNhKtkRvw0TIXgK2c58RJffcVu06Q/photo.jpg,Please build IFFTT integration so that any trigger can cause habit to be set as done/up-counted.,3,0,1.5.11,2019-03-27 07:35:28,,,most_relevant,com.oristats.habitbull +Mehrnaz Td,https://lh3.googleusercontent.com/a-/AOh14Gj3pnMYM1vsE9jb095ofdokKxh88RxR9VutFGff_Q,The free app is too limited. Other than that it's a good one!,3,0,1.5.11,2019-09-15 18:26:16,,,most_relevant,com.oristats.habitbull +Shiva Prasad,https://lh3.googleusercontent.com/-HDh7_RdNp2M/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPB4d_u6I5gIAACizlyqEnGnSUyLw/photo.jpg,This deserves 5 stars. But I am not able to see discussions since the last one week.,3,1,1.5.11,2020-02-07 09:03:57,,,most_relevant,com.oristats.habitbull +Naylah Kassim,https://lh3.googleusercontent.com/a-/AOh14GizUkQoe_9s_o8etYkvinruIi55MVjxYlxyfTYey6E,"I wish one could back up his habits, otherwise it a good & straight forward app",3,0,1.5.11,2019-11-24 22:46:08,,,most_relevant,com.oristats.habitbull +Agustin Barrachina,https://lh3.googleusercontent.com/a-/AOh14Ggm3JoL8ld9WezGDvPZ4-UKAWep0EtmV924ywBkpdY,Facebook login not working,3,0,1.5.11,2020-02-13 11:40:36,,,most_relevant,com.oristats.habitbull +Rowena Foo,https://lh3.googleusercontent.com/a-/AOh14Giids3zazUNGHvaswDJjHOrzVT7ou_rDy4yo0kFzQ,Awesome features but poor UI. I wish the app isn't so cluttered with low res motivational posters and others' habits in the community. Really dont need know that someone out there is trying not to watch porn for 89 days. Why 89? Who you tryna impress?,3,0,,2018-12-24 15:33:28,,,most_relevant,com.oristats.habitbull +Amar BOURENANE,https://lh3.googleusercontent.com/a-/AOh14GhjAsE8zxTCJVrSNAHQLr6nZnuIhbElsKIdtIzA,I like the app. But why a habit is limited to once a day. There's no habit twice a day or more? I can't understand.,3,0,1.5.11,2019-03-30 13:00:37,,,most_relevant,com.oristats.habitbull +David Joel,https://lh3.googleusercontent.com/a-/AOh14GiwQIT4hbc0-xEUyLwoTracy7p-4gAhC4zannbrXQ,not great. why can't you put the total number of days completed regardless of streak?,3,0,1.5.11,2019-02-08 21:14:08,,,most_relevant,com.oristats.habitbull +Francisco Navarro,https://lh3.googleusercontent.com/a-/AOh14GjnjMpzlzfQNE-JkaWmELf99fnmLRkxUTIsV-RPcg,"Good app, but sends too many notifications",3,0,1.5.11,2019-03-07 04:17:29,,,most_relevant,com.oristats.habitbull +Terri Wartski,https://lh3.googleusercontent.com/a-/AOh14Ggpg1IMDIBbXXeK0YizKjX4AwKO-MKbgI4ur_Ux,Wish I could track more than 5 habits without paying.,3,0,1.5.11,2020-04-04 03:35:07,,,most_relevant,com.oristats.habitbull +Helen Stewart,https://lh3.googleusercontent.com/a-/AOh14Ggo4E3e7O_-UWMA62g4jFVLwn_3SACPQqhzlMBh,Could do with a reward or goal feature when habit followed.,3,0,1.5.11,2019-09-19 03:06:43,,,most_relevant,com.oristats.habitbull +Gasper Jan Simon,https://lh3.googleusercontent.com/a-/AOh14GiBUKpn643LNJsmrtk004ak62SKnlVRahn9lU_R1w,The alarms don't work. But a good idea,3,0,1.5.11,2018-09-15 20:18:27,,,most_relevant,com.oristats.habitbull +Brajeswar Das,https://lh3.googleusercontent.com/-bevuBpPqsT4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOrQ0hls15dmHjRpoWgymhZnLEAAA/photo.jpg,Nice but the price is soo high for this.,3,0,1.5.11,2019-04-29 02:09:10,,,most_relevant,com.oristats.habitbull +Srimoye Banerjee,https://lh3.googleusercontent.com/a-/AOh14GgI7eTE6r_Rh5nJ_xWYO053VwTfZFfZ-yFooZ__AQ,there is scope of improvement to make it easier,3,0,1.5.11,2019-04-14 15:40:06,,,most_relevant,com.oristats.habitbull +Tommy McClellan,https://lh3.googleusercontent.com/a-/AOh14Ghv6B6zR5Sb_OF8dTEB0pbXECAYuCvPynbzW_G-sw,"clunky, inflexible, but does the job",3,0,1.5.11,2019-05-09 21:14:27,,,most_relevant,com.oristats.habitbull +Guy Manova,https://lh3.googleusercontent.com/a-/AOh14Ghl8aOVHMU0YX3CVBTwoult0bfxZWpqrts8jgP69A,"App is ok, but you can't delete habits and replace with new. What the f?",3,0,1.5.11,2019-03-30 20:48:50,,,most_relevant,com.oristats.habitbull +Joaquin Brown,https://lh3.googleusercontent.com/-ai1_tB6rueg/AAAAAAAAAAI/AAAAAAAACZ4/AAKWJJO6CYq05M1AqkB3k6o4C3veI-BDQA/photo.jpg,The sync feature doesn't work.,3,0,1.5.11,2019-10-30 15:39:59,,,most_relevant,com.oristats.habitbull +Wilson Tiu,https://lh3.googleusercontent.com/-m6GjK4VbMqE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMvwx6uqg4occF5ZEDdkhMhRd5dbw/photo.jpg,i wish to have flexible goal like do xx minutes exercise per week/month,3,0,1.5.11,2019-04-30 13:43:55,,,most_relevant,com.oristats.habitbull +Michelle Valderama,https://lh3.googleusercontent.com/-q6oyKvsJvv0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNheK4Nx_PKTorZBzv4z5FN8udFyQ/photo.jpg,"I love the concept of habit bull, but it isn't user friendly",3,0,1.5.11,2019-05-24 07:44:40,,,most_relevant,com.oristats.habitbull +Stanley Oseji,https://lh3.googleusercontent.com/a-/AOh14GjmEoyIu0FawXlUrQpS9dc6yMmtx4hTFHURmSWMyQ,Cool app but still trying it out.,3,0,1.5.11,2018-12-06 09:11:14,,,most_relevant,com.oristats.habitbull +Gene Palmer,https://lh3.googleusercontent.com/a-/AOh14GiSjEIOxkFsfihEOiwBBDvqHD10fE49w9HZPpSbUtQ,I paid for the premium app and still get mashed to do a review,3,0,1.5.11,2019-01-11 22:14:11,,,most_relevant,com.oristats.habitbull +Sohrab Ghasemi,https://lh3.googleusercontent.com/a-/AOh14GjkSBLAgkLAEv_aNV1bP6V263DAJWOCwmUCR5gWpA,this app need to be more compeleted .,3,0,1.5.11,2019-03-16 13:42:34,,,most_relevant,com.oristats.habitbull +Pooja Ganguli,https://lh3.googleusercontent.com/a-/AOh14GiMGy9ojPExkPAXHwUiUiIbDniWA8nJFq62b76y,Gud way to keep in track of our habits,3,0,1.5.11,2018-11-28 12:44:00,,,most_relevant,com.oristats.habitbull +Nada Allam,https://lh3.googleusercontent.com/a-/AOh14GjJo7Ey6ceGVAnhTQ4lj6xWrDKGRIloXqv9UwGz7w,I just started using this app. my week actually starts with Saturdays while only Sundays and Mondays are mentioned. if you could modify this detail that'd be really appreciated 🙏,3,0,1.5.11,2019-08-13 13:43:00,,,most_relevant,com.oristats.habitbull +Richard Lynch,https://lh3.googleusercontent.com/a-/AOh14Gh_zMOgrlT_OaQMf0BNyLqPCnJ1Zl0mE7Ys8fds,Too invasive and complicated.,3,0,1.5.11,2020-01-18 06:24:47,,,most_relevant,com.oristats.habitbull +Chike Chukwuogor,https://lh3.googleusercontent.com/-zGq0d1KH5p4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOo1f0N-FllCfflMXmzCT-nEQNxOA/photo.jpg,The app does not let me create a widget despite the fact that I have logged in ☹️,3,0,1.5.11,2019-09-16 14:46:16,,,most_relevant,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"kind of confusing to use, but it does what is supposed to",3,0,1.5.11,2019-05-01 16:33:11,,,most_relevant,com.oristats.habitbull +Amit Thakur,https://lh3.googleusercontent.com/a-/AOh14Ghfyij0DcRBOiFhP4CtZCUbeSY9cIl6MMnYc6Oq6A,nice but no daily notification come,3,0,1.5.11,2019-06-07 05:25:43,,,most_relevant,com.oristats.habitbull +Ronen Rozner,https://lh3.googleusercontent.com/a-/AOh14GhDnZTVFJiP1A3Jf8LUmJZsnm1UN-VHwMhe26bW,some privacy please? why do you millennials think everything needs to be shared? why can't I keep my activity private without sharing with entire world?,3,0,,2019-05-05 16:42:58,,,most_relevant,com.oristats.habitbull +lokesh lohar,https://lh3.googleusercontent.com/a-/AOh14GiFAhLhICTMKbG0ERP_rbVgZkQVfFLeCSwPP-xR0g,No of activities that we can add is only 5 that's why i give this 3 🌟,3,0,1.5.11,2019-12-01 04:24:48,,,most_relevant,com.oristats.habitbull +Muhammad Fikri Alfarizi,https://lh3.googleusercontent.com/a-/AOh14GgP1wcahjJTKWLATEQQ4ysESlbKUCcBm6kKG0OlEDo,"Full package for IDR 139000, got a 33% discount but still IDR 139000",3,0,1.5.11,2019-12-31 15:24:58,,,most_relevant,com.oristats.habitbull +Rachel Kozin,https://lh3.googleusercontent.com/a-/AOh14GiYYfL4DIgQGCjfuxwR5_uhnpx0Ek2FXSsmZUr_uQ,Is there a way to get my money back? I don't like this app as much as a few others I have. ???,3,0,1.5.11,2019-01-11 16:56:09,,,most_relevant,com.oristats.habitbull +Colleen Lee,https://lh3.googleusercontent.com/a-/AOh14GiyQe_iEWGQQSY_8mmngKb0S9blo1dJ0YIzSMVAIdk,its ok. I haven't been able to figure out how to get reminds,3,0,1.5.11,2019-05-03 20:57:13,,,most_relevant,com.oristats.habitbull +Kevin Brown,https://lh3.googleusercontent.com/a-/AOh14GjyCN-Bj5zsusBe5JD4DFyzX_SN53rlM7qgXjaXAOLQDw,can you fix Google fit integration? use their movement points?,3,0,1.5.11,2019-04-20 13:27:14,,,most_relevant,com.oristats.habitbull +Robert Sevin,https://lh3.googleusercontent.com/a-/AOh14Gh5hjAOxjbxiF5h0dN1z_Xn7dpXX6-Ub-wb0xqCQA,It delivers what it promises,3,0,1.5.11,2019-12-21 04:37:27,,,most_relevant,com.oristats.habitbull +Suraj Temkar,https://lh3.googleusercontent.com/a-/AOh14GhN-Ai9hkoG_8xs2Q6SVhcQ4g-x2UB_fnfWYqKpZ60,It never reminds even thought I've set the reminder,3,0,1.5.11,2018-12-10 00:47:36,,,most_relevant,com.oristats.habitbull +Supradeepty Bhandari,https://lh3.googleusercontent.com/a-/AOh14GjUBgqb76SWj4Wgc99dvAE8-qPqCwCdxYdh6kcIJVU,I m not getting daily reminders for my habits,3,0,1.5.11,2018-11-02 13:51:29,,,most_relevant,com.oristats.habitbull +Mary Schmidt,https://lh3.googleusercontent.com/a-/AOh14Ghzo7XaqGzAE60kIopjiw8_Az_e4IcpVDlmeY3Iig,can only have 5 unless you pay for premium,3,0,,2019-01-12 06:25:00,,,most_relevant,com.oristats.habitbull +Blue On Blue,https://lh3.googleusercontent.com/-es5psqUi2fo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP2-uUSRrbG4s4poAVvpdEdrOm8aw/photo.jpg,pretty good app,3,0,1.5.11,2019-11-19 11:03:11,,,most_relevant,com.oristats.habitbull +Nik,https://lh3.googleusercontent.com/a-/AOh14Gh8ocGbqOvy65DhmAM-U1zr60TgEexbZL61hiInCQ,3 of 5 stars. That's all.,3,0,1.5.11,2018-11-13 16:01:39,,,most_relevant,com.oristats.habitbull +Junaid Raza,https://lh3.googleusercontent.com/a-/AOh14GggGnk0OzGt6OAJwUQcZN2Z4FQfqXFDQukiB2_deA,No updates long time ago,3,0,,2019-02-02 18:35:44,,,most_relevant,com.oristats.habitbull +Mujgan,https://lh3.googleusercontent.com/a-/AOh14GjJz4Pqsf8JLZ-HlU14RzyFl_d-dBJtYwc0pM-2,I didn't use yet,3,0,1.5.11,2018-10-09 09:40:48,,,most_relevant,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,It is good but not for me,3,0,1.5.11,2018-10-06 23:52:26,,,most_relevant,com.oristats.habitbull +Paul Carl,https://lh3.googleusercontent.com/a-/AOh14Gj5yWflyyGjXgR4flAzwh7Goa8PEzJHcUaJHlHHUg,not really an exciting app,3,0,1.5.11,2019-02-11 08:36:19,,,most_relevant,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,True a unsnecessarypts at r,3,0,1.5.11,2019-03-07 07:42:07,,,most_relevant,com.oristats.habitbull +Catherine Jenkins,https://lh3.googleusercontent.com/-HKQD8-RzcsY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOw-nEL-c6YEEZBh6bVCnx2tWKaGA/photo.jpg,easy to use,3,0,1.5.11,2019-01-10 17:27:36,,,most_relevant,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Should help you more,3,0,1.5.11,2018-09-16 20:36:08,,,most_relevant,com.oristats.habitbull +Eric Johnson,https://lh3.googleusercontent.com/-3Y-vj2Epe9s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNu1DU06skCMs9AEuWttqlJTtNo6w/photo.jpg,Need a cleaner GUI,3,0,1.5.11,2018-11-29 21:50:19,,,most_relevant,com.oristats.habitbull +Kuntal Kokate,https://lh3.googleusercontent.com/a-/AOh14GgIxzfSjjcZEcwVx_sSgdMH6OfNX-gCRTtN3ZfPP_g,Pretty average app,3,0,1.5.11,2019-10-07 18:45:42,,,most_relevant,com.oristats.habitbull +Jocelyn Nelson,https://lh3.googleusercontent.com/-NBz490NYVS8/AAAAAAAAAAI/AAAAAAAANbA/AAKWJJNLTocxO1guPofeZ5D8LOboCQw05Q/photo.jpg,"It's a great app and has definitely helped me maintain my habits. I had been gifted premium early on, but I've found that the features have disappeared and I'm only seeing the base version. I like it enough that I want to buy it, but I worry about whether it will keep the features based on my experience and other reviews. I've also found a bug: when I have a goal set to 3x a week as ""success,"" the app doesn't recognize when I've had a successful streak and always shows as 0 successes in the streak section, whereas it's at 80% in the ""percent success"" section and many weeks of meeting my goal.",3,0,1.5.11,2019-12-16 19:44:18,,,most_relevant,com.oristats.habitbull +Cori Knight,https://lh3.googleusercontent.com/-86TVeJfOAns/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOme5BJVm2VC1ACRnLhybu1zNHZeQ/photo.jpg,"The reminders are helpful, and the app is easy to use, especially when tracking more than one habit. My only quibble is that when i changed phones, it didn't port my records over like the instructions said they would. But I did at least download the records ahead of time. EDIT: I returned to this app after a hiatus, and not only had it deleted my data, it also essentially deleted me! I can't log in, and when I try to register, it says my email address is already taken.",3,3,1.5.11,2019-04-23 22:31:08,,,most_relevant,com.oristats.habitbull +Dani V,https://lh3.googleusercontent.com/a-/AOh14GhVPeQCJbPnKycDuf1LjNzjzNMLQkdDOsoe0INPtw,"Just changed phone. Didn't keep anything from my Premium account. Can't even create a new account without erasing current data... -2* for that inconvenience /// Has helped me tremendously develop new habits. UI is perfect! The app and widgets allow quick and easy habit tracking. Counting habits are useful, but it would be great to be able to see near misses in order to track improvement better. Customization of the interval chosen to calculate percentages would be very helpful.",3,14,1.5.11,2019-10-11 03:03:29,,,most_relevant,com.oristats.habitbull +Devon Kendall,https://lh3.googleusercontent.com/-ioT9sZSRzR8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPwfrb5T1Dj2EPTW-l3EZT-bWyB6w/photo.jpg,"Great app, absolutely love it HOWEVER! I paid for the Platinum (Premium+) +yet I am still unable to get any of the premium features. Tried adding new +goal/habit and it still says I need to get premium to have more than 5. +Please fix this as I have paid for the service and cannot access it.",3,40,1.5.11,2018-07-17 03:23:57,,,most_relevant,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I loved this app, but recently (since 31st December 2018) the ""chains"" are no longer being made even though I'm meeting the criteria for the habit. My streaks have been reset at 0, even though my score has stayed at 100%. Very confusing and annoying! Any help would be greatly appreciated.",3,3,1.5.11,2019-01-02 23:34:59,,,most_relevant,com.oristats.habitbull +Francesc Rosas,https://lh3.googleusercontent.com/a-/AOh14GhanOALjIVA02copPKekdXe_c7-anLFNvvLoVLvQUQ,"I switched from Loop to this app because it supports cloud sync. +Unfortunately, for some reason battery drain is excessive (24% on a Mi A1 +using Android 8.0).",3,4,1.5.11,2018-07-16 17:58:51,,,most_relevant,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I've been using Loop but got a little frustrated with it because of a +couple of glitches. The free version of HabitBull only lets you track 5 +habits and has a complex format. I like the layout of Loop much better and +will be sticking with it despite the few problems.",3,3,1.5.11,2018-08-09 12:30:05,,,most_relevant,com.oristats.habitbull +Elizabeth Wootten,https://lh3.googleusercontent.com/-c80ADI2TJUg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM1SH3mec2eq444LWiKOoZZCzvY3Q/photo.jpg,Does exactly one thing - tracks habits - but does it well and without pointless bloaty extras (or ads). Clean interface. Sadly app seems to have been abandoned by developers and premium features like sync no longer work. No way to transfer data.,3,1,1.5.11,2019-11-01 07:59:24,,,most_relevant,com.oristats.habitbull +Vaibhav Bakhshi,https://lh3.googleusercontent.com/a-/AOh14Gi5SjTgHjHMUPUyOCdJCp2Kf4jCgdunGfoPb5oJsg,"It talks about Habit building, but in effect it doesn't help much, apart +from giving very subtle reminders of tasks which, to me, were fairly easy +to ignore. It doesn't really push oneself to break free of lethargy or +other excuses which we usually end up giving for not keeping a habit, apart +from few motivational text snippets. I would like to request you that as +this app is named HabitBull, you need to Please make it act like a bull. It +should lead (and at times force) the users to do the right thing. A little +more aggressive approach to habit building is what could really help.",3,1,1.5.11,2018-07-22 05:59:18,,,most_relevant,com.oristats.habitbull +Shailen Sobhee,https://lh3.googleusercontent.com/a-/AOh14GgVLSuj1T6KM-ukWkE5dMN4FT___rzY-_ENHfUpMmU,"App is okay, but the UI is really outdated. There is almost no elements of +material design in this app. Have a look at an app like Airbnb how they +nicely used material design - Sleek and beautiful.",3,3,1.5.11,2018-08-12 17:56:53,,,most_relevant,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"It's great though you only get 100 habits in premium. Why not unlimited? +Not a fan of a glass ceiling model. Whats more you cant remove this cap.",3,3,1.5.11,2018-08-11 22:28:48,,,most_relevant,com.oristats.habitbull +Pratik Rohila,https://lh3.googleusercontent.com/a-/AOh14Ghen1jo-GFUnMsJi-0uUU6VapQlykecxvipbhMC-g,There is a glitch in which it do not keeps track of your hours of study My target is 5 he's and if I studied for 1 hours than I add it and poof next day it shows 8930 hours,3,1,1.5.11,2018-09-07 09:01:06,,,most_relevant,com.oristats.habitbull +Fiona Bell,https://lh3.googleusercontent.com/a-/AOh14GhKwynMgXO_6nIKttMRl9QbEJToe8rQhxIxO4O5,"Would be great, but the layout doesn't actually let you succeed in adding +habits. Thus, useless.",3,0,1.5.11,2018-08-02 13:07:35,,,most_relevant,com.oristats.habitbull +애린,https://lh3.googleusercontent.com/a-/AOh14GjQOcq24KYbUtsphOWEGDLrZZLSy1KU3gsRQF5wNA,"It's crashing everytime I try to tap on 'reminder'. Thank you it's really +nice but the reminder part is the most important part for me.",3,0,1.5.11,2018-08-05 13:28:24,,,most_relevant,com.oristats.habitbull +Kevin Lenell,https://lh3.googleusercontent.com/-WVPUcPzJGVs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPD1cul5buLhaL5SJ8hpUdb5Ajicg/photo.jpg,"I'm trying to stop sleeping in so late. You have various sleeping +requirements but no ""get up before X"" category. Gonna have to find a new +app I guess. Lame.",3,1,1.5.11,2018-07-17 21:55:30,,,most_relevant,com.oristats.habitbull +Nick Rowlands,https://lh3.googleusercontent.com/a-/AOh14GjOHkafoK67NFWruWHHu9PwlpKY8VnMrHX3Tzv5,Not going to pay 3.99 for premium or whatever it is to have more than 5 habits tracked ill use you a pen and pad no problem,3,1,1.5.11,2018-08-23 10:20:43,,,most_relevant,com.oristats.habitbull +Juan Iglesias,https://lh3.googleusercontent.com/a-/AOh14GiLctlq2oJRoyxsvjJtoooKZP5CDA_Kt_UIwNxOY18,I paid for the premium version but all my habits records was deleted without explanation. They fix that problem.,3,1,1.5.11,2019-07-06 09:25:30,,,most_relevant,com.oristats.habitbull +Nafisa Tabassum,https://lh3.googleusercontent.com/a-/AOh14Gjg9grUfg82vqqpSPY8olJcxgFAHhL1lxBYrNf12A,There's this weird bug now where the screen dims and keeps showing the loading sign but you can still use the buttons. Please fix it!,3,0,1.5.11,2020-02-27 06:19:17,,,most_relevant,com.oristats.habitbull +Ben Martin-Peddey,https://lh3.googleusercontent.com/a-/AOh14GhFykJzuQbAI9JpPqxCP6jY1fgljKLnc9iRnMGMpA,"The app is good; however, the ""funny notifications"" are ridiculous and not +funny at all. Sync does not work.",3,1,1.5.11,2018-08-15 14:01:42,,,most_relevant,com.oristats.habitbull +Nasty Nas,https://lh3.googleusercontent.com/-Ectl6w2tCbM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNWaX3iDDVOWJCC8pn96WbIhHIP0w/photo.jpg,Great app but fix the damn widgets. It keeps on glitching,3,0,1.5.11,2018-08-23 21:23:12,,,most_relevant,com.oristats.habitbull +Albert Cofie,https://lh3.googleusercontent.com/-1Jix05PF8pA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPpZ9mgJ_zHdzgTEcc7UpSJjom8iQ/photo.jpg,"I have noticed when I write notes and leave the app to find out more info, the app locks which is fine, but what I have written before I leave the app is not saved which can be very annoying. There isnt even a warning or option to save before you leave the app",3,0,1.5.11,2019-05-28 09:00:18,,,most_relevant,com.oristats.habitbull +Nehal vani,https://lh3.googleusercontent.com/a-/AOh14GhhHHN-Z_QshhFFPqMVrYSf5TIfW1jb7OT3uiEfWQ,I must say ur reminder doesn't work at all i m not satisfied,3,0,1.5.11,2018-09-11 17:50:21,,,most_relevant,com.oristats.habitbull +Naomi Godsey,https://lh3.googleusercontent.com/-Ncf7VcbJ2Tk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNvfSm_-8uypr_xPx_NFFrctf546w/photo.jpg,Only 5 slots in free version and the reminders haven't worked so far. Otherwise a great idea.,3,0,1.5.11,2018-08-31 20:58:23,,,most_relevant,com.oristats.habitbull +Daniel Reitman,https://lh3.googleusercontent.com/a-/AOh14GhkGBuHDsvSrCLSLpmnNqNf78m0Kl2bocfmKiCfug,"Syncing doesn't work, still no reply from support",3,0,1.5.11,2019-11-21 14:08:57,,,most_relevant,com.oristats.habitbull +BR FX,https://lh3.googleusercontent.com/a-/AOh14GiLMsXcXP5-EHmLLm1vzMKINPiIt_DR1UfV62FL1g,"به حسگر اثرانگشت وصل نمیشه , بک آپ نداره و برنامه حذف بشه اطلاعات پاک میشه +, محیط کاربریش خوبه",3,0,1.5.11,2018-08-03 14:23:43,,,most_relevant,com.oristats.habitbull +Shady,https://lh3.googleusercontent.com/a-/AOh14GgL3un8OZm-YqXQSbI7zaYmBufCTsGL7vDznosabA,no funcionan bien las notificaciones y tengo la version de pago,3,0,1.5.11,2018-10-24 10:40:49,,,most_relevant,com.oristats.habitbull +Seungyeon Kang-Nava,https://lh3.googleusercontent.com/-Y0qDKYjmKJY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNTLxxy5nM3-9qCZRKmvWcwzZvEwA/photo.jpg,It would be motivational for me if I can set the start date of my goals.,3,0,1.5.11,2018-09-01 19:35:57,,,most_relevant,com.oristats.habitbull +Huzaifa Farooq,https://lh3.googleusercontent.com/a-/AOh14GgTzO7tHv1lTd1vcgvkGhKqvq3M6NslTeE-3_n4iQ,Please allow more than five habits in free version,3,0,1.5.11,2018-07-18 06:02:48,,,most_relevant,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Puris make limit at least 10 for free version,3,0,1.5.11,2018-07-12 12:49:36,,,most_relevant,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Not Free. Free upto only 5 Habbits.,3,0,1.5.11,2019-01-23 17:00:12,,,most_relevant,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Good app, but it needs a web application.",3,0,1.5.11,2019-04-03 05:19:55,,,most_relevant,com.oristats.habitbull +yogesh joshi,https://lh3.googleusercontent.com/-qye1yHovQo0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNYvuNiopNVWh-nnGKZBPInjUeuUQ/photo.jpg,3* + app,3,0,1.5.11,2019-03-24 02:12:57,,,most_relevant,com.oristats.habitbull +Reshma R K,https://lh3.googleusercontent.com/a-/AOh14Gi-2loUtSNSpxm5HyE7VsbpekM1t75-JNcWkY4TxQ,User interface is really a big putoff.,3,0,1.5.11,2018-07-22 14:05:01,,,most_relevant,com.oristats.habitbull +DEEPAK DIXIT,https://lh3.googleusercontent.com/-MUflVOZarZk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNOWqge7djKAbueQ4Ovf4Ynq_NHog/photo.jpg,Ok app,3,0,1.5.11,2019-05-16 11:01:30,,,most_relevant,com.oristats.habitbull +Lesley Mawar,https://lh3.googleusercontent.com/a-/AOh14GiLcxNux4jAAhPa4c2jlJx8DuSVGVU57s1v8NviuA,🐂,3,0,1.5.11,2018-08-17 07:14:55,,,most_relevant,com.oristats.habitbull +Terri Wartski,https://lh3.googleusercontent.com/a-/AOh14Ggpg1IMDIBbXXeK0YizKjX4AwKO-MKbgI4ur_Ux,Wish I could track more than 5 habits without paying.,3,0,1.5.11,2020-04-04 03:35:07,,,newest,com.oristats.habitbull +Effraim Munsaka,https://lh3.googleusercontent.com/a-/AOh14GhaU9iM3s0PkqXU4DstQ6Y9gLvbaVZ7oTlk-XA0JrE,Great app,3,0,1.5.11,2020-04-02 12:32:04,,,newest,com.oristats.habitbull +PIYUSH KUMAR,https://lh3.googleusercontent.com/-sCW_G2sXavg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN6fknqSrUwwbArVLlACjM7jyQ3bw/photo.jpg,The app is good but the reminders for some of the habits are not working. I have bought the pro version.,3,0,1.5.11,2020-03-31 17:10:06,,,newest,com.oristats.habitbull +Amber,https://lh3.googleusercontent.com/a-/AOh14GhlwKBib075FnYn0KQy5DyqkhHvx4jZmCw0EQTpWP8,"Great app! Just can't justify spending $8 - $10 in order to track more than 5 habits when there are other apps out there I don't need to pay for to do so. I'm switching to Loop Habit Tracker. Can track as many habits as I want and back everything up, all while being entirely free. Plus it's really nice!",3,8,1.5.11,2020-03-23 18:45:14,,,newest,com.oristats.habitbull +Backlists,https://lh3.googleusercontent.com/-E81Yvuzx_Rg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP06G55EMM3ZC34yDRqgUnwDi3ZqA/photo.jpg,"The concept has had an extremely positive effect on my life. However I am experiencing bugs with the widgets, where exercises are disappearing. Restarting hasn't helped.",3,0,1.5.11,2020-03-22 23:46:59,,,newest,com.oristats.habitbull +AJ,https://lh3.googleusercontent.com/-tge2at8C72k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMp8sJZ10sQoICl7tG-ZR3KYkNdbA/photo.jpg,"Could be a great app except that like another user said, it does not sync between devices when the description claims that it can. That's a big letdown for me because when used any other of my devices, and when I switched phones, I couldn't sync the app up with my data or any habits I've been tracking, even though I have the premium account. When attempting to sync It always says that there is no internet connection, but there always is. So I can't give it a full 5/5 rating, otherwise I might.",3,10,1.5.11,2020-03-20 06:52:47,,,newest,com.oristats.habitbull +Glenda Roundtree,https://lh3.googleusercontent.com/a-/AOh14GjvmFf9Wlu8aT6m6fGgRyYpklR_dPkHgdhgoihGMg,"I think it could be more user-friendly, but maybe I haven't explored it enough. It keeps asking for a rating maybe it will stop now.",3,0,1.5.11,2020-03-12 10:59:28,,,newest,com.oristats.habitbull +Jacob Keller,https://lh3.googleusercontent.com/a-/AOh14GhoCojSEFn1oIEBOp73-W8NH7M0m-5Y2Acuf6AC,"I actually really love this app. I used it to create some serious personal progress. I purchased the full app but when I bought a new phone, it wouldn't let me sign out of my old device and into my new device. I emailed support about it...crickets. Never heard from them. If they can put together a decent support team I would give the app a 5 for sure.",3,3,1.5.11,2020-03-09 05:30:56,,,newest,com.oristats.habitbull +Nafisa Tabassum,https://lh3.googleusercontent.com/a-/AOh14Gjg9grUfg82vqqpSPY8olJcxgFAHhL1lxBYrNf12A,There's this weird bug now where the screen dims and keeps showing the loading sign but you can still use the buttons. Please fix it!,3,0,1.5.11,2020-02-27 06:19:17,,,newest,com.oristats.habitbull +Musa Ahmad,https://lh3.googleusercontent.com/-efb-WXDlT0o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPiMxrGqcRDYjdROlYrwfYhKXx7Gg/photo.jpg,Everything is good but i would like to see more then a five slots for habits,3,0,,2020-02-18 07:37:35,,,newest,com.oristats.habitbull +Pi Farah,https://lh3.googleusercontent.com/-mKvgEx7JpLk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOZ65_XuIjxVMnjtTlsdM0JY-2Cgw/photo.jpg,best habit tracker ✓ edit- can you guys fix the overall habitbull score graph? It's not accurate- always trending down no matter what.,3,0,1.5.11,2020-02-18 00:04:52,,,newest,com.oristats.habitbull +Dhanguru Nanak,https://lh3.googleusercontent.com/-mvUs0FKs6t0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO6NHT0D5zZ8HGtSlIXKViQpTyroA/photo.jpg,"In this free version, we can add 5 habits only.",3,0,1.5.11,2020-02-15 09:09:04,,,newest,com.oristats.habitbull +Chanel B,https://lh3.googleusercontent.com/a-/AOh14Gh51k3dJtDVhR3OlCViOFypBOi-f5YXHJa4n6Ooig,"Please fix app, cannot refresh once again for the second time !! Topics & Pic Quote",3,0,1.5.11,2020-02-14 12:20:01,,,newest,com.oristats.habitbull +Agustin Barrachina,https://lh3.googleusercontent.com/a-/AOh14Ggm3JoL8ld9WezGDvPZ4-UKAWep0EtmV924ywBkpdY,Facebook login not working,3,0,1.5.11,2020-02-13 11:40:36,,,newest,com.oristats.habitbull +Valdes Singh,https://lh3.googleusercontent.com/-sVS2BMNgA8o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO_qznlRgUrpCi__VjB62OAZ8t6RA/photo.jpg,I am not satisfied with this app because circles used for completing the habits look very dirty .,3,0,1.5.11,2020-02-11 02:33:16,,,newest,com.oristats.habitbull +Bell Sivila,https://lh3.googleusercontent.com/a-/AOh14GjuV2HAbLCUH4XNByGlP-vjYdnPAdXjq1fvrMFqXZk,"I love this app, I bought the premium version last year and I still can't synchronize my data, I have to change my phone and I will lose all the data! Could you fix that?",3,0,1.5.11,2020-02-09 15:38:46,,,newest,com.oristats.habitbull +Allan,https://lh3.googleusercontent.com/-d7dcM4JCt0g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOa5AlxzYKmUFhhxGx9NMspmxCvHw/photo.jpg,"Can only track 5 habits, but there are discussion forums. Most of the forums have no activity going on, but there are still a few users to talk to. Often times the app no longer syncs me to them, just like right now. The quotes have been stuck, too. Developers no longer support this app. Do not buy the premium version, as you will NOT be able to sync across devices. There are no more updates or customer support. This could have been the absolute best habit tracking app. So much wasted potential.",3,26,1.5.11,2020-02-08 06:59:05,,,newest,com.oristats.habitbull +Shiva Prasad,https://lh3.googleusercontent.com/-HDh7_RdNp2M/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPB4d_u6I5gIAACizlyqEnGnSUyLw/photo.jpg,This deserves 5 stars. But I am not able to see discussions since the last one week.,3,1,1.5.11,2020-02-07 09:03:57,,,newest,com.oristats.habitbull +Der Thalon,https://lh3.googleusercontent.com/-8afJ9dwKSAU/AAAAAAAAAAI/AAAAAAAAAPM/AAKWJJPjNn4Dj05pcWPicF04p6ygcnxLxg/photo.jpg,Probably a good app and way to track your new habits but not being able to make a widget without a premium account is ridiculous.,3,0,,2020-02-04 00:31:23,,,newest,com.oristats.habitbull +Corey Miller,https://lh3.googleusercontent.com/a-/AOh14Gg-K4lBxQNC80JZBRECoW_PjiUPgRvskNEvMvn0wA,"Great app, lots of ads",3,0,,2020-01-31 07:05:34,,,newest,com.oristats.habitbull +Jorge Jedidiah Preble,https://lh3.googleusercontent.com/a-/AOh14GgP4BuzhWtllpbECQyVyPjf0gxSA2zR0Z7nE5cU6A,"Navigation needs work: you can only navigate with the many buttons in the app, the back button closes the app. Feature request: Has weekly and monthly report, would like a daily report to share with an accountability partner Also, would be great to generate report based on category.",3,0,1.5.11,2020-01-29 23:48:08,,,newest,com.oristats.habitbull +Teresa Allen,https://lh3.googleusercontent.com/a-/AOh14GjTkqopusKTvYTRZHcQ5CkGIn8a2_u7CP_6vz6IiA,"Great app so long as you only use the free version which only tracks 5 x habits. Used the free version for a couple of weeks then paid £9.49 for the platinum version so I could sync to other devices. Really disappointed that the sync option won't work, and software support is non existent. For an expensive app I would expect the developers to be as helpful as possible when a customer has an issue but they have completely ignored my request for help!",3,6,1.5.11,2020-01-26 19:59:05,,,newest,com.oristats.habitbull +Rebecca Prince,https://lh3.googleusercontent.com/a-/AOh14GhtsP53UzqvACsHf4sRRyAwbQiiUWT4Tzsts4ka,I really like this app and find it useful for keeping me on track. Simple but effective. I used the free version for almost 2 years. At the end of the first year it reset and I lost all of my history. So before the end of the second year I bought the premium version and promptly lost all of my history again. I contacted support to see if they could help and got no response at all. I still recommend it for tracking your habits but don't expect to keep the info long term or get help if you need it,3,5,1.5.11,2020-01-20 12:30:49,,,newest,com.oristats.habitbull +Kathryn Lounsbury,https://lh3.googleusercontent.com/a-/AOh14GgHuDdC0FraVVL9KDI02qAqFyIYg-Ugyz5J-p9_,Really enjoying this app but wish I could track more than 5 habits!!,3,0,1.5.11,2020-01-20 04:00:27,,,newest,com.oristats.habitbull +Richard Lynch,https://lh3.googleusercontent.com/a-/AOh14Gh_zMOgrlT_OaQMf0BNyLqPCnJ1Zl0mE7Ys8fds,Too invasive and complicated.,3,0,1.5.11,2020-01-18 06:24:47,,,newest,com.oristats.habitbull +Rehan Malik,https://lh3.googleusercontent.com/a-/AOh14Gg4chveG8h7ReongXLdfOQYld_RG6TngulNsL46Gw,Nice app,3,0,1.5.11,2020-01-16 02:27:58,,,newest,com.oristats.habitbull +Hart Traveller,https://lh3.googleusercontent.com/a-/AOh14Gi7EG_mmwoFsT3m5-q8Qd-52jlq-En2JwZmSAS76EQ,"This is a good app but the data analysis and visualization is fundamentally broken. The score and success percentage function in that they record the success values for the end of each day and then add that to the database. This means unfortunately that your success percentage never goes above your first day, when if you did the thing, you got 100%. As such, the visualizations are useless. A better solution would be to include rolling means of success percentage by x number of day intervals.",3,4,1.5.11,2020-01-04 18:11:54,,,newest,com.oristats.habitbull +Muhammad Fikri Alfarizi,https://lh3.googleusercontent.com/a-/AOh14GgP1wcahjJTKWLATEQQ4ysESlbKUCcBm6kKG0OlEDo,"Full package for IDR 139000, got a 33% discount but still IDR 139000",3,0,1.5.11,2019-12-31 15:24:58,,,newest,com.oristats.habitbull +Robert Sevin,https://lh3.googleusercontent.com/a-/AOh14Gh5hjAOxjbxiF5h0dN1z_Xn7dpXX6-Ub-wb0xqCQA,It delivers what it promises,3,0,1.5.11,2019-12-21 04:37:27,,,newest,com.oristats.habitbull +Jocelyn Nelson,https://lh3.googleusercontent.com/-NBz490NYVS8/AAAAAAAAAAI/AAAAAAAANbA/AAKWJJNLTocxO1guPofeZ5D8LOboCQw05Q/photo.jpg,"It's a great app and has definitely helped me maintain my habits. I had been gifted premium early on, but I've found that the features have disappeared and I'm only seeing the base version. I like it enough that I want to buy it, but I worry about whether it will keep the features based on my experience and other reviews. I've also found a bug: when I have a goal set to 3x a week as ""success,"" the app doesn't recognize when I've had a successful streak and always shows as 0 successes in the streak section, whereas it's at 80% in the ""percent success"" section and many weeks of meeting my goal.",3,0,1.5.11,2019-12-16 19:44:18,,,newest,com.oristats.habitbull +Mustafa Mario,https://lh3.googleusercontent.com/a-/AOh14Gga7fEyonz7VEV4dKcQv85Y5lQrTAtKG7cmgb4adA,It's good app But it's not free if you want to add more than 5 habit,3,0,1.5.11,2019-12-14 18:08:17,,,newest,com.oristats.habitbull +Tami Burke,https://lh3.googleusercontent.com/a-/AOh14Ggon5uZTKzdH_Ns2VIN_FL8riomMS6I6wmPtH-EKA,Odd that it doesnt count beginning and end of month corrctly in monthly tally,3,0,1.5.11,2019-12-04 02:25:56,,,newest,com.oristats.habitbull +Wade Kothandapany,https://lh3.googleusercontent.com/a-/AOh14GjGhTXs418f6ruoeBxU6o-2SYKuBWOBr2eC2RXUJQ,"Overall great app, but it never gives me notifications so it kind of defeats the purpose of having it.",3,0,1.5.11,2019-12-03 22:55:04,,,newest,com.oristats.habitbull +Kipkirui Abednego,https://lh3.googleusercontent.com/a-/AOh14GjPagDB0HCEcQMDsWhJGijZjHMlpfUBSUL3t776cQ,The interface is intuitive. I am giving a three because my online data did not sync when I upgraded.,3,0,1.5.11,2019-12-01 06:18:58,,,newest,com.oristats.habitbull +lokesh lohar,https://lh3.googleusercontent.com/a-/AOh14GiFAhLhICTMKbG0ERP_rbVgZkQVfFLeCSwPP-xR0g,No of activities that we can add is only 5 that's why i give this 3 🌟,3,0,1.5.11,2019-12-01 04:24:48,,,newest,com.oristats.habitbull +Naylah Kassim,https://lh3.googleusercontent.com/a-/AOh14GizUkQoe_9s_o8etYkvinruIi55MVjxYlxyfTYey6E,"I wish one could back up his habits, otherwise it a good & straight forward app",3,0,1.5.11,2019-11-24 22:46:08,,,newest,com.oristats.habitbull +Tony Monk II,https://lh3.googleusercontent.com/a-/AOh14GgoZw0Kmg9I6AZrSYzl9DLTsHVZIRCtCFdai2LjjmA,It was decent but I remember having to tap so many times just to get it to record your progress. Not very streamlined.,3,0,1.5.11,2019-11-24 03:05:13,,,newest,com.oristats.habitbull +Daniel Reitman,https://lh3.googleusercontent.com/a-/AOh14GhkGBuHDsvSrCLSLpmnNqNf78m0Kl2bocfmKiCfug,"Syncing doesn't work, still no reply from support",3,0,1.5.11,2019-11-21 14:08:57,,,newest,com.oristats.habitbull +Blue On Blue,https://lh3.googleusercontent.com/-es5psqUi2fo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP2-uUSRrbG4s4poAVvpdEdrOm8aw/photo.jpg,pretty good app,3,0,1.5.11,2019-11-19 11:03:11,,,newest,com.oristats.habitbull +Dhwani Vij,https://lh3.googleusercontent.com/a-/AOh14GgmSrfaRhCj81pSfAKetWrnTfirNFHTFtiqVl9Yeg,"Hello, I recently shifted to a new phone. I have a premium membership. But I am unable to transfer my data to the new phone. Please help!",3,0,1.5.11,2019-11-12 17:33:48,,,newest,com.oristats.habitbull +"me, myself and I",https://lh3.googleusercontent.com/a-/AOh14GhNgh0I2jDNkokj9boWQINYnbbeUN0mzOv6ZKM-zQ,This app is good but I can't access 5 habit because I need premium to access it 🙅🤷,3,0,1.5.11,2019-11-08 02:39:59,,,newest,com.oristats.habitbull +Toby Longhurst,https://lh3.googleusercontent.com/a-/AOh14GjGDDOl28TNlncvH2jIS9QGdsK4kStDBODKwdrznA,"I think the app is very good, has helped me to keep track of my habits. However I wish there was a function whereby you could postpone a habit for something out of your control i.e. not going to the gym because you're on holiday. This although a break from the habit doesn't feel like it should affect the moments when you are focused and in control of keeping the habit. Also how is the success percentage measured if you only have to do the habit a certain number of times a week?",3,2,1.5.11,2019-11-02 00:32:59,,,newest,com.oristats.habitbull +Elizabeth Wootten,https://lh3.googleusercontent.com/-c80ADI2TJUg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM1SH3mec2eq444LWiKOoZZCzvY3Q/photo.jpg,Does exactly one thing - tracks habits - but does it well and without pointless bloaty extras (or ads). Clean interface. Sadly app seems to have been abandoned by developers and premium features like sync no longer work. No way to transfer data.,3,1,1.5.11,2019-11-01 07:59:24,,,newest,com.oristats.habitbull +Lynelle Smith,https://lh3.googleusercontent.com/-fOvIfWBzenY/AAAAAAAAAAI/AAAAAAAAAJk/AAKWJJP8MqzNpY2WwAsKUday6Kc18aRHww/photo.jpg,I liked how I could customize everything but my linked google fit didnt update my steps (I had to input myself) and my notifications would only go off if I opened the app myself. Kind of defeats the purpose of linking and setting up notifications...,3,0,1.5.11,2019-10-30 18:58:10,,,newest,com.oristats.habitbull +Joaquin Brown,https://lh3.googleusercontent.com/-ai1_tB6rueg/AAAAAAAAAAI/AAAAAAAACZ4/AAKWJJO6CYq05M1AqkB3k6o4C3veI-BDQA/photo.jpg,The sync feature doesn't work.,3,0,1.5.11,2019-10-30 15:39:59,,,newest,com.oristats.habitbull +Deepanshu Arora,https://lh3.googleusercontent.com/a-/AOh14GjDfMrz1016y-MKDlkyfKznlsY6IFIrF5kufSw3,Limited functionality but reliable.,3,0,,2019-10-30 13:07:00,,,newest,com.oristats.habitbull +Prasamsa Naidu,https://lh3.googleusercontent.com/-BUgmKwIz7SI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMg_1BmUqS7bNmmIoYDshbfl3nX3Q/photo.jpg,Went for the premium subscription without a doubt. Definitely benefitial to those to use it honestly. Edit: Everything's good but after changing phones I've suffered having to manually copy the same habit list because the sync function just doesn't work.,3,0,1.5.11,2019-10-28 10:03:55,,,newest,com.oristats.habitbull +Sasha,https://lh3.googleusercontent.com/a-/AOh14Gg3FSV8baLs0rLf4oQlWctU8JWHjLTImVbr4c3CcYg,The app is great. I wanted to use this app as a way to help me to creat a better habit and staying on track with certain things. For me the notifications don't work unles I open the app and by that point its like my reminders have passed.. other then that easy app to use and navigate.,3,0,1.5.11,2019-10-21 18:09:07,,,newest,com.oristats.habitbull +amruta godase,https://lh3.googleusercontent.com/a-/AOh14GjLSf77hBi0piwF8azL18ZHe73kGwAbxfR5ZuNhYQ,Don't get any reminders for the goals inspite of setting it a number of times!,3,0,1.5.11,2019-10-14 08:03:56,,,newest,com.oristats.habitbull +Dani V,https://lh3.googleusercontent.com/a-/AOh14GhVPeQCJbPnKycDuf1LjNzjzNMLQkdDOsoe0INPtw,"Just changed phone. Didn't keep anything from my Premium account. Can't even create a new account without erasing current data... -2* for that inconvenience /// Has helped me tremendously develop new habits. UI is perfect! The app and widgets allow quick and easy habit tracking. Counting habits are useful, but it would be great to be able to see near misses in order to track improvement better. Customization of the interval chosen to calculate percentages would be very helpful.",3,14,1.5.11,2019-10-11 03:03:29,,,newest,com.oristats.habitbull +Kuntal Kokate,https://lh3.googleusercontent.com/a-/AOh14GgIxzfSjjcZEcwVx_sSgdMH6OfNX-gCRTtN3ZfPP_g,Pretty average app,3,0,1.5.11,2019-10-07 18:45:42,,,newest,com.oristats.habitbull +Jithesh Mohan,https://lh3.googleusercontent.com/-X0fmfsPu6OQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPcBDMYeoEVSpsInYaMG2-PJjffcQ/photo.jpg,The Reminder option is not working....I have paid for premium to use the app to its full potential but Unfortunately....The basic feature of the app to remind you to stick to your schedule with respect to habits you creat dosent work....kindly help by resolving this issue... Color code Options are limited that can be assigmed to the newly added habit,3,0,1.5.11,2019-10-05 00:49:33,,,newest,com.oristats.habitbull +Simon Williamson,https://lh3.googleusercontent.com/-npmRqnnofeY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPbbt_3AZY8vNIeDLAOa8Ud9xQm9A/photo.jpg,A great way to track goals but quite limited in functionaliry and the Google fit integration doesn't work.,3,0,1.5.11,2019-10-02 21:13:04,,,newest,com.oristats.habitbull +Naveen Drall,https://lh3.googleusercontent.com/-5lSm_9j0uPw/AAAAAAAAAAI/AAAAAAAADO0/AAKWJJMKI16zaitISWT96vV39FCLJr8zxw/photo.jpg,"habit syncing not working on paid version. app is great, but after phone resets and all my habits data of 2 months is lost. And the app is showing i don't have a internet connection even though i am writing this review on same internet connection. But other than that app works great , the widget is great and i use it daily.",3,10,1.5.11,2019-10-01 19:06:33,,,newest,com.oristats.habitbull +Helen Stewart,https://lh3.googleusercontent.com/a-/AOh14Ggo4E3e7O_-UWMA62g4jFVLwn_3SACPQqhzlMBh,Could do with a reward or goal feature when habit followed.,3,0,1.5.11,2019-09-19 03:06:43,,,newest,com.oristats.habitbull +Jethro Lampitt,https://lh3.googleusercontent.com/a-/AOh14GhhG53VhiKwWPSR23pQ6Zy5tWKWrY5tPgI5MQwGMUU,It's an okay app but I have found better ones such as I am sober. This needs to be paid for to be useful.,3,0,1.5.11,2019-09-17 10:39:55,,,newest,com.oristats.habitbull +Chike Chukwuogor,https://lh3.googleusercontent.com/-zGq0d1KH5p4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOo1f0N-FllCfflMXmzCT-nEQNxOA/photo.jpg,The app does not let me create a widget despite the fact that I have logged in ☹️,3,0,1.5.11,2019-09-16 14:46:16,,,newest,com.oristats.habitbull +Magmagan,https://lh3.googleusercontent.com/a-/AOh14Ghh4EDHZ2-lTSV-SuWTpQyysdwyOupFhmw8QK1qwA,"Lots of unnecessary notifications, the GUI is confusing and is missing a few features for a habit tracking app, like splurging only every X days (but no less).",3,1,1.5.11,2019-09-16 02:42:49,,,newest,com.oristats.habitbull +Mehrnaz Td,https://lh3.googleusercontent.com/a-/AOh14Gj3pnMYM1vsE9jb095ofdokKxh88RxR9VutFGff_Q,The free app is too limited. Other than that it's a good one!,3,0,1.5.11,2019-09-15 18:26:16,,,newest,com.oristats.habitbull +Christy Mitchell,https://lh3.googleusercontent.com/a-/AOh14GjXVBbvwmu-BGtS2hYyUpZPGZLlYSgfqbmavjXBrDc,"Doesn't save habit data when you switch to a new phone, even using the same login information. Won't let me choose a start date for my habit either, so it never shows 100% success like it should.",3,8,1.5.11,2019-08-24 20:13:12,,,newest,com.oristats.habitbull +Chris Draper,https://lh3.googleusercontent.com/-v4M6MXs6Ou0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP48M4OcgL_vJgtwpMN_9YrTpDjnA/photo.jpg,"The setup seemed nice, but the constant pop ups are so annoying as to make it unusable",3,0,,2019-08-22 17:21:53,,,newest,com.oristats.habitbull +Samantha Austin,https://lh3.googleusercontent.com/a-/AOh14GjtnF_PcuILVFZoiiRfSWni5SnoavdDMEk-NlRsqQ,"So far it's not flexible enough for me. Also, there needs to be an option to remove 'general discussion ' from the dash board. There seems to be a startling number of people with goals surrounding masturbation and porn and I just don't need to see that when I'm trying to inspire myself to play more music. I'm going with the stars as a benefit of the doubt as I haven't given it much time but I can't see me using this.",3,9,1.5.11,2019-08-15 21:25:20,,,newest,com.oristats.habitbull +Nada Allam,https://lh3.googleusercontent.com/a-/AOh14GjJo7Ey6ceGVAnhTQ4lj6xWrDKGRIloXqv9UwGz7w,I just started using this app. my week actually starts with Saturdays while only Sundays and Mondays are mentioned. if you could modify this detail that'd be really appreciated 🙏,3,0,1.5.11,2019-08-13 13:43:00,,,newest,com.oristats.habitbull +James Meads,https://lh3.googleusercontent.com/a-/AOh14GgH9ssr38p3VC563hHsSivXs7fieColBGXQn9u50A,"I like this app and what it can do and am pleased with its functionality. However, having paid for the premium version, I find it annoying beyond belief that I get pop-ups every 2 weeks asking me to leave a review. So, developers, I've left one but you've lost 1.5 stars for spamming me with these requests. This shouldn't happen in a paid app without any opportunity to turn off these notifications.",3,14,1.5.11,2019-08-06 06:53:52,,,newest,com.oristats.habitbull +Barry Cochran,https://lh3.googleusercontent.com/a-/AOh14Gi_iy7JphLcGp5zslNse19IGdifMedu1Vf2h78Re4M,Synching between my Chromebook and phone is a necessity for me and does not work on this app. The color coding for completed tasks is not intuitive.,3,1,,2019-08-04 14:39:14,,,newest,com.oristats.habitbull +Archit Kukdey,https://lh3.googleusercontent.com/-rTfiVzaV-xo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMIKW1B6Uy1YLDNGM1cP_fX_yewFw/photo.jpg,App is awesome n also helps alot but its inbuilt password once forgot don't opens the app. Evertime i need to log out and again log in it. Plz solve my issue,3,0,1.5.11,2019-07-31 08:12:33,,,newest,com.oristats.habitbull +Felix Grauschopf,https://lh3.googleusercontent.com/-URmF23S0eVY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPl9kNtL-Y0yPEtpV7pIFzr7raMvQ/photo.jpg,"When you start a habit with giving points for it or like at least that and that amount of days, you can't just change it back to a simple yes and no habit",3,0,1.5.11,2019-07-28 12:21:55,,,newest,com.oristats.habitbull +Ad M,https://lh3.googleusercontent.com/-yr-d_dKGz5w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO7eZx_FOSi5L_yjIMh_HGkn3zZKA/photo.jpg,I really like this application. Very well done! My reason for 3 and not 5stars is the lack of any security. No option for fingerprint or pin before viewing what could be sensitive personal information. PLEASE ADD SECURITY!,3,0,1.5.11,2019-07-27 14:20:28,,,newest,com.oristats.habitbull +Michele Leyenaar,https://lh3.googleusercontent.com/a-/AOh14GgK7nrcpTG224jsS6Ee8ZcWNpHm5jWwOL_yIfcZ,Good app but faulty notifications. The notifications and reminders were working perfectly but they only work now if I open the app. By that point it's too late. I need the reminders to work to be effective. I purchased the full version.,3,0,1.5.11,2019-07-23 20:41:11,,,newest,com.oristats.habitbull +Kaila Clark,https://lh3.googleusercontent.com/a-/AOh14GgXVTPlWb1LbOpkAeQnTAEvsjrGPUk_8JbgetlDHw,"Dont buy the premium, the widgets don't work (the reason I bought premium) and I set up notifications for each hour to remind me of a task, but the notifications only pop up if you open the app which render the notifications useless. Otherwise I enjoy the basic use of the app",3,3,1.5.11,2019-07-19 17:10:46,,,newest,com.oristats.habitbull +Danyael Dacanay,https://lh3.googleusercontent.com/a-/AOh14GgEO8qmZ8EMePI2uUUOJzLgnURhdEMIXdh5xL2GPg,It's ok but a bit too simple and the inspirational messages don't change not really very motivating to use this app compared to my previous habit tracker. The App's look doesn't come exciting to look at as well.,3,0,1.5.11,2019-07-19 13:34:16,,,newest,com.oristats.habitbull +Juan Iglesias,https://lh3.googleusercontent.com/a-/AOh14GiLctlq2oJRoyxsvjJtoooKZP5CDA_Kt_UIwNxOY18,I paid for the premium version but all my habits records was deleted without explanation. They fix that problem.,3,1,1.5.11,2019-07-06 09:25:30,,,newest,com.oristats.habitbull +Tom S,https://lh3.googleusercontent.com/a-/AOh14GiPphPXWwsgBJ98jmKe32wxGQ5FcoAHITS06TKOrA,shows monthly when startup even after changing it in the settings to show weekly. otherwise all around good app.,3,0,1.5.11,2019-07-05 10:12:22,,,newest,com.oristats.habitbull +Jurit Malam,https://lh3.googleusercontent.com/-VGXaJRnmQBc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNT6NldIofi1s4pk8jlBeyLm5PnuA/photo.jpg,😀,3,0,,2019-07-05 07:22:15,,,newest,com.oristats.habitbull +Yanuar Huang,https://lh3.googleusercontent.com/-Ys4pwPd46Qk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNOza1-TGIvWoYqsStbZei2stR08A/photo.jpg,good,3,0,1.5.11,2019-06-21 00:25:02,,,newest,com.oristats.habitbull +R Lavender,https://lh3.googleusercontent.com/a-/AOh14GjkaDO9pCz_n6763qFCWv01u3ZqvxLrirthk12N,it’s a great app and works great. helps me keep track of whether or not I took pills or did excercises or not. However it lacks the feature of ”multiple times a day” So if for instance a person was trying to create a habit to do something twice in one day. this app won't help since you can only click that you did it once. Does anybody know if thier is an app that has this feature?,3,2,,2019-06-20 21:31:07,,,newest,com.oristats.habitbull +Senthilkumar S Kathiresan,https://lh3.googleusercontent.com/a-/AOh14GjM4yHMiwbns38IkKf2l_XYpIX7Riu6rp0mbxg477M,I bought the paid verison. It does help us track the habits with simple yes or no questions and by answering with numbers. But habits aren't as simple as it is... we need other methods to track habits like options to enter time. If I want to develop a habit of waking up by 7.. it shouldn't be a yes or no question... I should be able to enter the time track it over the month.,3,2,1.5.11,2019-06-20 13:50:59,,,newest,com.oristats.habitbull +Dexter Brian,https://lh3.googleusercontent.com/a-/AOh14GiiC5vm4RsWUMWbkCUhyxogUfXhMg5MWvrslwat,I really like the app. Maybe just work on improving the graphs a bit more,3,0,1.5.11,2019-06-20 05:19:45,,,newest,com.oristats.habitbull +RICARDO ANDRES ALVAREZ,https://lh3.googleusercontent.com/a-/AOh14GikcQNBKxsnNBUPbva1WV8TTa9PSjub3r3uaL5i-w,Good,3,0,1.5.11,2019-06-19 05:14:40,,,newest,com.oristats.habitbull +Paulo Rodolfo Mariani Bittencourt,https://lh3.googleusercontent.com/a-/AOh14GhxWTmKhCMafrsq-1j4iWVnHzKK0kg9NlmBnJWTOQ,"The best app around for tracking habits. But the artificial limitation to 5 habits in the free version coupled with the eye-gouging price of the pro version lost it two stars. I paid, but I am NOT happy with the price.",3,0,1.5.11,2019-06-11 00:18:17,,,newest,com.oristats.habitbull +Jacob Clenney,https://lh3.googleusercontent.com/a-/AOh14GhH031jGKrEE7H89xwLidCpmZyArjKvuKTOQhIHRA,Good app but only counts by day. 5 stars if there was an option to count times a week as well.,3,0,1.5.11,2019-06-09 22:25:15,,,newest,com.oristats.habitbull +Will Fordham,https://lh3.googleusercontent.com/a-/AOh14Gi8vXJLTO4JCl2TDWegqsH-VfrpPcEDofUyzXn3rg,"Great format and tracking. £7 seems excessive for upgrade feature to use as a widget... Also, people have a form of spirituality rather than a religion: can that not be reflected in the app too, for inclusivity? Removing forum comments would be a great option: an unnecessary distraction.",3,0,1.5.11,2019-06-09 16:37:04,,,newest,com.oristats.habitbull +Amit Thakur,https://lh3.googleusercontent.com/a-/AOh14Ghfyij0DcRBOiFhP4CtZCUbeSY9cIl6MMnYc6Oq6A,nice but no daily notification come,3,0,1.5.11,2019-06-07 05:25:43,,,newest,com.oristats.habitbull +Joy J,https://lh3.googleusercontent.com/-K9wualqORMY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO40ELZAphUH7mP2L93AsK_EcHU0g/photo.jpg,unable to set custom notification sound. it uses default sound even after changing. others looks good.,3,0,1.5.11,2019-06-04 14:38:15,,,newest,com.oristats.habitbull +Rakhi Thayyil,https://lh3.googleusercontent.com/a-/AOh14GgtCni68r01g8t5vRDu5fkLzycdOyf8l8m0D3JN,"Notifications do not show up. Thought I have enabled all permissions and to override dnd, the notifications and reminders do not work.",3,0,1.5.11,2019-06-01 04:15:39,,,newest,com.oristats.habitbull +Albert Cofie,https://lh3.googleusercontent.com/-1Jix05PF8pA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPpZ9mgJ_zHdzgTEcc7UpSJjom8iQ/photo.jpg,"I have noticed when I write notes and leave the app to find out more info, the app locks which is fine, but what I have written before I leave the app is not saved which can be very annoying. There isnt even a warning or option to save before you leave the app",3,0,1.5.11,2019-05-28 09:00:18,,,newest,com.oristats.habitbull +The Weston Home,https://lh3.googleusercontent.com/-_TRDCSda01E/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNNiCkv9k94wz9dbKNQM9bZ7Ye8Lg/photo.jpg,"Good function, weird execution. The program works great, but it has weird way of reminding the user of the habit. like saying Hey, tiger"" its just weird",3,0,,2019-05-27 13:29:20,,,newest,com.oristats.habitbull +MAYANK GAUTAM,https://lh3.googleusercontent.com/a-/AOh14Gjw2fOcidrNDdMNtBWRbmQSEIwR5cAWRWPEzzQ2,love it,3,0,1.5.11,2019-05-25 08:38:21,,,newest,com.oristats.habitbull +Michelle Valderama,https://lh3.googleusercontent.com/-q6oyKvsJvv0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNheK4Nx_PKTorZBzv4z5FN8udFyQ/photo.jpg,"I love the concept of habit bull, but it isn't user friendly",3,0,1.5.11,2019-05-24 07:44:40,,,newest,com.oristats.habitbull +Ryke Waltz,https://lh3.googleusercontent.com/-0H_i-TgFkaw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOgCJQZ1I8zjE4jJIcoC0c_bMaG4Q/photo.jpg,Good app. Minus one star because of the constant nagging. And that's in the paid version. :-(,3,0,1.5.11,2019-05-19 00:20:35,,,newest,com.oristats.habitbull +DEEPAK DIXIT,https://lh3.googleusercontent.com/-MUflVOZarZk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNOWqge7djKAbueQ4Ovf4Ynq_NHog/photo.jpg,Ok app,3,0,1.5.11,2019-05-16 11:01:30,,,newest,com.oristats.habitbull +Rajesh j.jamod,https://lh3.googleusercontent.com/-oYgMIThUfTw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM3k7qqk9WDqYhuUyvXtCIGlOiKtw/photo.jpg,"wish i am not able to edit anything in past for future events. if i am crrating any habbit same day onwards, i still can able to edit in past events!",3,0,1.5.11,2019-05-16 03:46:16,,,newest,com.oristats.habitbull +Tommy McClellan,https://lh3.googleusercontent.com/a-/AOh14Ghv6B6zR5Sb_OF8dTEB0pbXECAYuCvPynbzW_G-sw,"clunky, inflexible, but does the job",3,0,1.5.11,2019-05-09 21:14:27,,,newest,com.oristats.habitbull +Ronen Rozner,https://lh3.googleusercontent.com/a-/AOh14GhDnZTVFJiP1A3Jf8LUmJZsnm1UN-VHwMhe26bW,some privacy please? why do you millennials think everything needs to be shared? why can't I keep my activity private without sharing with entire world?,3,0,,2019-05-05 16:42:58,,,newest,com.oristats.habitbull +Colleen Lee,https://lh3.googleusercontent.com/a-/AOh14GiyQe_iEWGQQSY_8mmngKb0S9blo1dJ0YIzSMVAIdk,its ok. I haven't been able to figure out how to get reminds,3,0,1.5.11,2019-05-03 20:57:13,,,newest,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"kind of confusing to use, but it does what is supposed to",3,0,1.5.11,2019-05-01 16:33:11,,,newest,com.oristats.habitbull +Wilson Tiu,https://lh3.googleusercontent.com/-m6GjK4VbMqE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMvwx6uqg4occF5ZEDdkhMhRd5dbw/photo.jpg,i wish to have flexible goal like do xx minutes exercise per week/month,3,0,1.5.11,2019-04-30 13:43:55,,,newest,com.oristats.habitbull +Brajeswar Das,https://lh3.googleusercontent.com/-bevuBpPqsT4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOrQ0hls15dmHjRpoWgymhZnLEAAA/photo.jpg,Nice but the price is soo high for this.,3,0,1.5.11,2019-04-29 02:09:10,,,newest,com.oristats.habitbull +Cori Knight,https://lh3.googleusercontent.com/-86TVeJfOAns/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOme5BJVm2VC1ACRnLhybu1zNHZeQ/photo.jpg,"The reminders are helpful, and the app is easy to use, especially when tracking more than one habit. My only quibble is that when i changed phones, it didn't port my records over like the instructions said they would. But I did at least download the records ahead of time. EDIT: I returned to this app after a hiatus, and not only had it deleted my data, it also essentially deleted me! I can't log in, and when I try to register, it says my email address is already taken.",3,3,1.5.11,2019-04-23 22:31:08,,,newest,com.oristats.habitbull +Kevin Brown,https://lh3.googleusercontent.com/a-/AOh14GjyCN-Bj5zsusBe5JD4DFyzX_SN53rlM7qgXjaXAOLQDw,can you fix Google fit integration? use their movement points?,3,0,1.5.11,2019-04-20 13:27:14,,,newest,com.oristats.habitbull +Victoria-Marie Sanchez,https://lh3.googleusercontent.com/a-/AOh14GilX-So41f7TjNFvmu7QmL9x511yNUROlKWuwqGBg,Great but when you set a target date it doesnt remain as is and shifts to another day for that month.,3,0,1.5.11,2019-04-18 20:12:24,,,newest,com.oristats.habitbull +joanne harrison,https://lh3.googleusercontent.com/-cG7RTuvLLqA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMM-q_0xnXXNz6Thg4kjgJrEhSJbQ/photo.jpg,we would like it more if there was a way to not see explicit messages on how well people are doing opened up by my 8yo caused some conversations we'd have preferred not to have at grammas so looking for a app we like as much for ease of use and that we can control the explicit messages had to delete off of her phone and will probably be following her,3,1,1.5.11,2019-04-17 21:05:57,,,newest,com.oristats.habitbull +Srimoye Banerjee,https://lh3.googleusercontent.com/a-/AOh14GgI7eTE6r_Rh5nJ_xWYO053VwTfZFfZ-yFooZ__AQ,there is scope of improvement to make it easier,3,0,1.5.11,2019-04-14 15:40:06,,,newest,com.oristats.habitbull +Alex Chernyaev,https://lh3.googleusercontent.com/-NTWYOynEG8w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPXeuHqabJJuKFIxjwzXEgy1kPfYA/photo.jpg,only premium is good. free version has nothing,3,0,1.5.11,2019-04-13 14:59:15,,,newest,com.oristats.habitbull +Bartłomiej Mazur,https://lh3.googleusercontent.com/-W_cPfvaX_Ak/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPTix4ntViJ2IR8kRvi-DxstMlp8w/photo.jpg,Seems pretty neat but i miss one feature thst is very important for me: be able to just hit start/stop for tasks thst needs to be done for at least x minutes per day. i dont check or remember time when i start doing something.,3,0,1.5.11,2019-04-12 11:33:16,,,newest,com.oristats.habitbull +Sooraj Sharma,https://lh3.googleusercontent.com/a-/AOh14GifvzJP7LOXVTpKi07wBg9BF8rLr9H6b1mUGG_ToLk,"Must be a better reminder system to keep user in check. In a busy schedule, one might forget to Check in.",3,0,1.5.11,2019-04-12 04:22:32,,,newest,com.oristats.habitbull +Laura Marie,https://lh3.googleusercontent.com/a-/AOh14Gg_mRrIw5aYmushemE2AtFlGXwj217KOdX8MSCPtA,"If you delete the app or transfer phones, you will lose everything! All past progress is gone and you can not get it back. You also can never use that login info again. Just keep that in mind. Also if you set your habit/goal for example twice a week, you'll still get reminders everyday. No options to change it to only notify when goal needs to be completed.",3,26,1.5.11,2019-04-08 17:18:21,,,newest,com.oristats.habitbull +Marco Velasco,https://lh3.googleusercontent.com/a-/AOh14GjugHPylFd-jIrjxjGDaai0WUolqhF4G6xhNsDZUMU,"it's a useful app, have maybe some things to improve like, the habit set up is not very clear or intuitive",3,0,1.5.11,2019-04-03 19:53:57,,,newest,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Good app, but it needs a web application.",3,0,1.5.11,2019-04-03 05:19:55,,,newest,com.oristats.habitbull +Guy Manova,https://lh3.googleusercontent.com/a-/AOh14Ghl8aOVHMU0YX3CVBTwoult0bfxZWpqrts8jgP69A,"App is ok, but you can't delete habits and replace with new. What the f?",3,0,1.5.11,2019-03-30 20:48:50,,,newest,com.oristats.habitbull +Amar BOURENANE,https://lh3.googleusercontent.com/a-/AOh14GhjAsE8zxTCJVrSNAHQLr6nZnuIhbElsKIdtIzA,I like the app. But why a habit is limited to once a day. There's no habit twice a day or more? I can't understand.,3,0,1.5.11,2019-03-30 13:00:37,,,newest,com.oristats.habitbull +Kody Digre,https://lh3.googleusercontent.com/a-/AOh14GiBvd_QnhwFduKQMLH59tK6n_r9exWdLpZ0OXU36A,it takes a lot of menus and selections to add anything to your list.,3,0,1.5.11,2019-03-28 15:36:25,,,newest,com.oristats.habitbull +Thomas Rickard,https://lh3.googleusercontent.com/a-/AOh14Gj1rexg-xRpY_Xh78BBJ2pLNFuElYqD7g54gYxWaQ,"i have written 0 or 15 minutes for a 30 minute target, the app still registers it as part of a streak, even after i delete the entry. seems like its just ignoring what i tell it. also, what i really want is an hours per week target",3,1,1.5.11,2019-03-27 11:53:28,,,newest,com.oristats.habitbull +Dan Pettersson,https://lh3.googleusercontent.com/-M1IJ7HFLj6E/AAAAAAAAAAI/AAAAAAAAAJ4/AAKWJJNhKtkRvw0TIXgK2c58RJffcVu06Q/photo.jpg,Please build IFFTT integration so that any trigger can cause habit to be set as done/up-counted.,3,0,1.5.11,2019-03-27 07:35:28,,,newest,com.oristats.habitbull +Maria Kozorezova,https://lh3.googleusercontent.com/a-/AOh14GggPnRIQk-SdEFAsB-_v-HDbAm1z3PUAc3MtDLok7g,"So I assume this app is no longer supported by its owner? Last update was summer 2018 and I saw lots of negative reviews here and on twitter about owner not responding at all. Wanted to buy premium, but first checked reviews... Ugh, it looked like a really perfect app! Sad.",3,5,1.5.11,2019-03-26 18:09:26,,,newest,com.oristats.habitbull +yogesh joshi,https://lh3.googleusercontent.com/-qye1yHovQo0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNYvuNiopNVWh-nnGKZBPInjUeuUQ/photo.jpg,3* + app,3,0,1.5.11,2019-03-24 02:12:57,,,newest,com.oristats.habitbull +Human Bieng,https://lh3.googleusercontent.com/a-/AOh14Gj_uqgaOFQJbKWtPnu1Tbk1y35qaTIFlMDT5kzy9g,Nice app. it's just I feel their is always space for improvement.,3,0,1.5.11,2019-03-19 13:44:11,,,newest,com.oristats.habitbull +Sohrab Ghasemi,https://lh3.googleusercontent.com/a-/AOh14GjkSBLAgkLAEv_aNV1bP6V263DAJWOCwmUCR5gWpA,this app need to be more compeleted .,3,0,1.5.11,2019-03-16 13:42:34,,,newest,com.oristats.habitbull +Rigel75,https://lh3.googleusercontent.com/a-/AOh14Giqa5qd8Co8ONQMm6E7tF69WPx1soKQj8CIGsnhfZo,This habit tracker is fairly good in its own right but there are ways it can be improved a lot. Perhaps it can be more specific. Perhaps it can become more addictive with certain rewards for teaching certain goals.,3,0,1.5.11,2019-03-15 10:59:24,,,newest,com.oristats.habitbull +Ariana Dalmau,https://lh3.googleusercontent.com/a-/AOh14GiR9fmTkbw9Rz8tVHne_eMEdN1nSnb_kMr0ZxzzXA,"Overall I love this app and find it very useful. My main issue is sometimes my reminders don't pop up? Which is kind of irritating considering I use it to remember my birth control. When it doesn't remind me, I'll often completely forget to take it or remember a few hours after when I'm supposed to take it. Like I said, love this app and use it to track when I go to the gym or remembering my pills. Just wish my reminders would work :(",3,0,1.5.11,2019-03-15 01:24:53,,,newest,com.oristats.habitbull +Hana Mohamad,https://lh3.googleusercontent.com/a-/AOh14Ggf1ozDyiUz1s0uHGG4wBn3OWIPfA4MB0SeH41mtQ,interesting,3,0,1.5.11,2019-03-14 14:47:53,,,newest,com.oristats.habitbull +Kim Collins,https://lh3.googleusercontent.com/-5rKw4pEU3O8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNBR5FVS0po8MUO_b0W8lP0s_MMnQ/photo.jpg,"I have suceeded 100% and indicates so in the tracker but only says 87% on the app. one of my goals was yoga on Mondays, not sure if it is penalizing me for the other days.",3,0,1.5.11,2019-03-13 22:07:06,,,newest,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,True a unsnecessarypts at r,3,0,1.5.11,2019-03-07 07:42:07,,,newest,com.oristats.habitbull +Francisco Navarro,https://lh3.googleusercontent.com/a-/AOh14GjnjMpzlzfQNE-JkaWmELf99fnmLRkxUTIsV-RPcg,"Good app, but sends too many notifications",3,0,1.5.11,2019-03-07 04:17:29,,,newest,com.oristats.habitbull +Karen Hennigan-Thompson,https://lh3.googleusercontent.com/a-/AOh14GiUNQF8EdN95PHD3VGWzl4WZPh_jYwYg0EsBO6MOw,"Great in a lot of ways, but a huge drawback is that you can't edit the start date or previous inactivated/activated dates for a habit. So, if you've been doing a habit for a few weeks before you add it to the program, you can't record those two weeks of success in the program. Or, if you intentionally stopped a habit for a time period, but didn't inactivate it during your chosen time off, your percentage is dragged down.",3,11,1.5.11,2019-03-05 23:17:24,,,newest,com.oristats.habitbull +Abhishek Kalyan,https://lh3.googleusercontent.com/a-/AOh14GgGFhiI2A8d0RtmjmWeyEOVP9zvvpFsKkgMr1RPZmM,Need to pay to track more than 5 habits and ui doesn't look simple or impressive,3,0,1.5.11,2019-03-05 14:38:48,,,newest,com.oristats.habitbull +Abdelrahman Azmi,https://lh3.googleusercontent.com/a-/AOh14Gib3MFDduMiUgLq8RK5vVCLlMbaIgR6i0V3d_5v,"Very nice, very simple, very usefull, but the free mode is too annoyingly limited. looking forward to having the ability to link habits with my wife or friends.",3,1,1.5.11,2019-02-28 13:53:43,,,newest,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,the app is good but the customer support is awful. I tried them a few times asking to transfer my premium account I had on iphone to my samsung phone but got no reply whatsoever.,3,0,1.5.11,2019-02-24 12:43:12,,,newest,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Good simple app and interface, well made. Would prefer a free, advert monetization model than sub model. I dont plan to pay monthly and free version is somewhat limited for my purposes.",3,0,1.5.11,2019-02-23 23:54:47,,,newest,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Works great except for you have to have upgrade to be able to have more than five habits.,3,0,1.5.11,2019-02-23 19:41:13,,,newest,com.oristats.habitbull +Tal Stanek,https://lh3.googleusercontent.com/-RpyzLPnhx1s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPVT51WeybX0SeW-rq2jisrcsH1kg/photo.jpg,good app that does it's supposed to. wish it had some improvements to make it great (suggestions in the in-app forum),3,0,1.5.11,2019-02-20 06:01:29,,,newest,com.oristats.habitbull +sujata undal,https://lh3.googleusercontent.com/a-/AOh14Giip8BxzGCa_LU2fxU1O0ysU1yVGqKhZ1YDMbkkqw,satisfactory,3,0,1.5.11,2019-02-12 08:24:54,,,newest,com.oristats.habitbull +Jayesh Rath,https://lh3.googleusercontent.com/a-/AOh14Gjb96rJzxs_11SvE2eeFTDcn5TI__d-qsPyYf-0bA,good app,3,0,1.5.11,2019-02-12 05:07:42,,,newest,com.oristats.habitbull +Paul Carl,https://lh3.googleusercontent.com/a-/AOh14Gj5yWflyyGjXgR4flAzwh7Goa8PEzJHcUaJHlHHUg,not really an exciting app,3,0,1.5.11,2019-02-11 08:36:19,,,newest,com.oristats.habitbull +David Joel,https://lh3.googleusercontent.com/a-/AOh14GiwQIT4hbc0-xEUyLwoTracy7p-4gAhC4zannbrXQ,not great. why can't you put the total number of days completed regardless of streak?,3,0,1.5.11,2019-02-08 21:14:08,,,newest,com.oristats.habitbull +ARP,https://lh3.googleusercontent.com/a-/AOh14GgFQjlp8oQ9z3oOxCCwA5zpz1J6u9xEiBCxTcuv,No sound in reminders. Just vibration. How can i fix it?,3,0,,2019-02-04 21:20:36,,,newest,com.oristats.habitbull +Junaid Raza,https://lh3.googleusercontent.com/a-/AOh14GggGnk0OzGt6OAJwUQcZN2Z4FQfqXFDQukiB2_deA,No updates long time ago,3,0,,2019-02-02 18:35:44,,,newest,com.oristats.habitbull +Anton K,https://lh3.googleusercontent.com/a-/AOh14GhptURFsNGQBnZea4k4aIyEE3fCk2Lbgd7ZP7Qqhg,"I need to track not only good habits, but also bad. With this app it is impossible. I don't want to smoke AT LEAST two times in a month or greater to reach my goal, I want to smoke NO MORE THEN two times in a month or less for success",3,0,1.5.11,2019-02-02 12:59:08,,,newest,com.oristats.habitbull +Richard Wright,https://lh3.googleusercontent.com/a-/AOh14Gj8wvelFvjP2yhYV7kMfVhsUza1MFaVrSKr8LY7,Cool layout very easy. Push notifications aren't working so it doesn't remind me at the time I tell it too but can't figure why I allowed notifications so probably a bug.,3,0,1.5.11,2019-01-31 17:50:29,,,newest,com.oristats.habitbull +igor camargo,https://lh3.googleusercontent.com/a-/AOh14Gg7vwNBrO43CqQjGdo6Hi9_T2v9-WhBzBu_oBFvfw,"it's a pretty good app, but its has a serious glitch, the goal day isn't functioning properly. No matter which goal date you set, it will always be the same day you created the task. ( like you finished today )",3,0,1.5.11,2019-01-27 17:45:58,,,newest,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Pretty good overall. Notifications and reminders do not work most of the time.,3,0,1.5.11,2019-01-26 12:40:21,,,newest,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Not Free. Free upto only 5 Habbits.,3,0,1.5.11,2019-01-23 17:00:12,,,newest,com.oristats.habitbull +Jay Dg,https://lh3.googleusercontent.com/a-/AOh14GidjQrkWCrggcxc4UetOs3QOPP2fNzEWdx9tXCt,It'd be better if it allowed more than 5 habits to be listed.,3,0,1.5.11,2019-01-20 22:50:17,,,newest,com.oristats.habitbull +J.F. Lin,https://lh3.googleusercontent.com/a-/AOh14GhSusCBAKFf4j61R9qrKtcq5JPAGMyMwPCdqtY1gg,so-so. not as intuitive right off but fine after a little of fiddling around. but the free version only tracks 5 habits and i dont love it enough to see the value in paying for it since there are other apps out there that satisfy the same thing.,3,0,,2019-01-17 20:52:08,,,newest,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,hi! the reminder feature is not working/ supporting in my phone. Also if possible please add support in your app to contact for bugs. thank you.,3,0,,2019-01-17 16:24:59,,,newest,com.oristats.habitbull +tlhoni nico dietsiso,https://lh3.googleusercontent.com/a-/AOh14Gip5My5dNG1_MdlmMbwg5A5dg3rut8J_nPGnrScrw,"Great app! Still testing it out so will come back with better rating... From last time I used it, it worked perfectly no issues... Second time around... Should be interesting.",3,0,1.5.11,2019-01-15 19:20:54,,,newest,com.oristats.habitbull +Joshua Miller,https://lh3.googleusercontent.com/a-/AOh14Gi88DX8yZ4vRh182yLWLOE3dxTjymXPWTWBP-2N,im only doing this because it would not stop telling me give then a rating. (hence the lower score) pretty good app and the best part is it has a widget and only a one time fee to have full access to app.,3,0,,2019-01-13 21:34:28,,,newest,com.oristats.habitbull +Mary Schmidt,https://lh3.googleusercontent.com/a-/AOh14Ghzo7XaqGzAE60kIopjiw8_Az_e4IcpVDlmeY3Iig,can only have 5 unless you pay for premium,3,0,,2019-01-12 06:25:00,,,newest,com.oristats.habitbull +Gene Palmer,https://lh3.googleusercontent.com/a-/AOh14GiSjEIOxkFsfihEOiwBBDvqHD10fE49w9HZPpSbUtQ,I paid for the premium app and still get mashed to do a review,3,0,1.5.11,2019-01-11 22:14:11,,,newest,com.oristats.habitbull +Rachel Kozin,https://lh3.googleusercontent.com/a-/AOh14GiYYfL4DIgQGCjfuxwR5_uhnpx0Ek2FXSsmZUr_uQ,Is there a way to get my money back? I don't like this app as much as a few others I have. ???,3,0,1.5.11,2019-01-11 16:56:09,,,newest,com.oristats.habitbull +Catherine Jenkins,https://lh3.googleusercontent.com/-HKQD8-RzcsY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOw-nEL-c6YEEZBh6bVCnx2tWKaGA/photo.jpg,easy to use,3,0,1.5.11,2019-01-10 17:27:36,,,newest,com.oristats.habitbull +Gabe Manzanet,https://lh3.googleusercontent.com/a-/AOh14Gh_InrA4b-tQqK1BP9UU_SxkMjuObaHq5YjJZa5DQ,I keep getting a popup that habbitbull has stopped working. idk why it was even open in the first place but it is constantly annoying me. and i don't even see any of actual issues that the crash is causing besides the annoying popup. I've sent feedback a few times but no response,3,0,1.5.11,2019-01-08 21:51:18,,,newest,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I loved this app, but recently (since 31st December 2018) the ""chains"" are no longer being made even though I'm meeting the criteria for the habit. My streaks have been reset at 0, even though my score has stayed at 100%. Very confusing and annoying! Any help would be greatly appreciated.",3,3,1.5.11,2019-01-02 23:34:59,,,newest,com.oristats.habitbull +John Gell,https://lh3.googleusercontent.com/a-/AOh14GjGLx36aEnr1Umuw2RD7aYgIgqGhKNszp5CG6gpaw,"its a great app in general, just want a couple of tweaks that would make using it more streamlined. The biggest thing is I have goals that increase incrementally every day, I would love to have a way to have a yes or no that shows that incremental adjustment. Also, when inputting numerically set goals, I want to be able to just start typing the number and have it replace the default 0.0 without placing the cursor and backspacing to enter a result. Still, the interface is otherwise great!",3,0,1.5.11,2019-01-02 11:59:54,,,newest,com.oristats.habitbull +Rowena Foo,https://lh3.googleusercontent.com/a-/AOh14Giids3zazUNGHvaswDJjHOrzVT7ou_rDy4yo0kFzQ,Awesome features but poor UI. I wish the app isn't so cluttered with low res motivational posters and others' habits in the community. Really dont need know that someone out there is trying not to watch porn for 89 days. Why 89? Who you tryna impress?,3,0,,2018-12-24 15:33:28,,,newest,com.oristats.habitbull +Make Change Mentoring,https://lh3.googleusercontent.com/a-/AOh14GgIftTgCcO3wG_iwGqSCOVMMWZNZIOOcJLF91OL,"love the tracking, love the accountability. I use the widget, but I dont like that you can't split habits into ""profile"" type structures. for example, an ""AM"" Routine list of check offs, and a ""PM"" Routine. maybe those and a list of habits you just want to complete daily at any time. that would be a game changer for me. I've considered other apps because of that one missing feature. I dont like how the widget groups every single habit Into one list. I want to split habits up between multiple.",3,0,,2018-12-22 20:32:13,,,newest,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Even though you don't get full access for free, this app still helps you a lot with habits you want to change. It's just an organizing tool to motivate you to keep going. Worth a try!",3,0,1.5.11,2018-12-21 00:10:24,,,newest,com.oristats.habitbull +Adedamisi Pegba-Otemolu,https://lh3.googleusercontent.com/a-/AOh14Gi7qJjvyw8_vClcK4US248YPWsDmBPVU4-bSiyZzQ,good,3,0,1.5.11,2018-12-18 19:48:28,,,newest,com.oristats.habitbull +Alex Qxi,https://lh3.googleusercontent.com/a-/AOh14GgdGdwCNvNbKnyJDmpXeMlwkmNue9bSE2QgNhyV3Q,"Edit2: only 5 habits available to track in free version. Edit: reinstalled after a while, can't log in at all. Resetted the password 10 times already, nothing works in app but also can't set up a new account with my old email. And I was about to purchase the full version :( /Well designed.",3,0,1.3.7,2018-12-17 16:46:05,"Are you sure you didn't register with Facebook? In this case you can just log in by tapping the ""connect with facebook"" button :) Otherwise email me at habitbull@gmail.com and I'll try to fix it for you asap. Your data is not lost.",2016-01-04 20:58:55,newest,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Fine,3,0,1.5.11,2018-12-16 10:19:28,,,newest,com.oristats.habitbull +Rusty Shackleford,https://lh3.googleusercontent.com/a-/AOh14GjR2YVtD2XpANwCcV5QU3cJpMME7JFbbVQy_NbePw,"It's easy enough to use as it is, but for a fully paid app, the graphs are incredibly lackluster and basically useless. All you get is some minuscule, measly bar graphs which are tiny...and get this, they don't even label the metric you're tracking as they are displayed in the order in which your goal list is. So unless you memorize that goal #7 is say exercise daily, you won't even know what you're looking at. Additionally, the streaks are glitchy as hell, and often times do not calculate correctly. Really wish they also had aggregate goals, for example grouping similar goals together and then tracking the success percent for the aggregate. Like say if you have multiple diet goals for no dairy, no gluten, and no sugar, it would be great to group those in the diet category and then see your success there overall and trending graphs. And come on, add some pie charts and the ability to look at graphs in intervals aside from a single month.",3,1,1.5.11,2018-12-13 19:40:16,,,newest,com.oristats.habitbull +Suraj Temkar,https://lh3.googleusercontent.com/a-/AOh14GhN-Ai9hkoG_8xs2Q6SVhcQ4g-x2UB_fnfWYqKpZ60,It never reminds even thought I've set the reminder,3,0,1.5.11,2018-12-10 00:47:36,,,newest,com.oristats.habitbull +Stanley Oseji,https://lh3.googleusercontent.com/a-/AOh14GjmEoyIu0FawXlUrQpS9dc6yMmtx4hTFHURmSWMyQ,Cool app but still trying it out.,3,0,1.5.11,2018-12-06 09:11:14,,,newest,com.oristats.habitbull +Eric Johnson,https://lh3.googleusercontent.com/-3Y-vj2Epe9s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNu1DU06skCMs9AEuWttqlJTtNo6w/photo.jpg,Need a cleaner GUI,3,0,1.5.11,2018-11-29 21:50:19,,,newest,com.oristats.habitbull +Pooja Ganguli,https://lh3.googleusercontent.com/a-/AOh14GiMGy9ojPExkPAXHwUiUiIbDniWA8nJFq62b76y,Gud way to keep in track of our habits,3,0,1.5.11,2018-11-28 12:44:00,,,newest,com.oristats.habitbull +Piotr Gorczycki,https://lh3.googleusercontent.com/a-/AOh14GiCRWV6UvPu6FlnVwweYO8Fc1HbgEufMXxWtgV6VA,"As great as this app is there is no way to turn off the annoying popups within it. 'rate us', 'congrats 10 days in a row' really? I can see the result. Please add an option to turn off all popups within the app.",3,0,1.5.11,2018-11-27 08:37:10,,,newest,com.oristats.habitbull +Rasi,https://lh3.googleusercontent.com/a-/AOh14GgsOO_ZcJvJpsZ9S6ueq5WZlNQ4s5YmLkKjQ448,I would have loved this app except for the fact that I need to pay to even use it as a widget.,3,0,1.5.11,2018-11-21 04:08:10,,,newest,com.oristats.habitbull +Richard Todd Aguayo,https://lh3.googleusercontent.com/a-/AOh14GjVg_pk0cORcZqFD_PyZVVTorjdA_UfA-EeZwEMTg,"BULL: I've been using it for 2 weeks and it's okay, except for the fact that the widget doesn't work most of the time. I have to open the app directly to be able to list activities, which renders the widget useless. I paid for the upgrade which makes this issue all the more frustrating!",3,0,1.5.11,2018-11-15 14:29:05,,,newest,com.oristats.habitbull +David Cassell,https://lh3.googleusercontent.com/a-/AOh14GjW8yoMnb_iO2q2LE0Gv1KqO7LlJ1ZRczn9x5686w,It is ok. Bit too simple really and could do with a little bit of TLC and new features and just some developer input. Does the job though.,3,0,1.5.11,2018-11-14 05:10:28,,,newest,com.oristats.habitbull +Nik,https://lh3.googleusercontent.com/a-/AOh14Gh8ocGbqOvy65DhmAM-U1zr60TgEexbZL61hiInCQ,3 of 5 stars. That's all.,3,0,1.5.11,2018-11-13 16:01:39,,,newest,com.oristats.habitbull +Alireza Shahsar,https://lh3.googleusercontent.com/a-/AOh14Gh0QNtrJYsb2soBMLcujZAVK28EhCMIH-c9hd4PqQ,"5 habits for free version is not enough. Instead of limiting habits for free version, disable notifications or cloud storage or inter device sync, theme, calendar support and these similar abilities for free version.",3,1,,2018-11-07 05:04:09,,,newest,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,It's good. But you can only have 5 habits to track. If you want more... $$$ in displease because it's like a demo... :( but nobody tells you.,3,1,1.5.11,2018-11-06 13:12:52,,,newest,com.oristats.habitbull +Nicholas Rivett,https://lh3.googleusercontent.com/a-/AOh14Gil52koAWEqh8I78dvjt3hhflK5_Hc8vdq8kD2NOg,Used to work great. Unfortunetly notifications no longer go off for ir making it useless. Have checked they are not blocked,3,0,1.5.11,2018-11-05 20:38:45,,,newest,com.oristats.habitbull +Supradeepty Bhandari,https://lh3.googleusercontent.com/a-/AOh14GjUBgqb76SWj4Wgc99dvAE8-qPqCwCdxYdh6kcIJVU,I m not getting daily reminders for my habits,3,0,1.5.11,2018-11-02 13:51:29,,,newest,com.oristats.habitbull +Praveen Kumar Sahu,https://lh3.googleusercontent.com/a-/AOh14Gh4hIUglBFSuY-LMUfSXx4DtYEm1Ok1CfTlMOzzDg,Used it for 1 day. Then forgot to even open it as got into new habit. It kept showing notifications and I kept ignoring it. Not much productive for me but app design is good.,3,0,,2018-10-27 19:25:56,,,newest,com.oristats.habitbull +Rishikesh Ramjith,https://lh3.googleusercontent.com/a-/AOh14GiOzagtBDw_JT4uoPrYAg10Fj_uqF3eoJdJmosmZg,"The app itself is really great. However, if you are going to buy premium, please make an account first, then buy premium. I bought premium without an account and was fine until I switched phones. I couldn't buy premium again because the option had disappeared but I didn't have access to premium features. I had even emailed support about the issue and gave the invoice number from Google play store. No response. This is enough to make me not use the app again.",3,0,,2018-10-27 04:45:37,,,newest,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,I am having issues with the purchased premium version but am not getting any reply to my email inquiries. Generally I found the app great but this lack of support is really disappointing.,3,0,1.5.11,2018-10-24 15:53:57,,,newest,com.oristats.habitbull +Shady,https://lh3.googleusercontent.com/a-/AOh14GgL3un8OZm-YqXQSbI7zaYmBufCTsGL7vDznosabA,no funcionan bien las notificaciones y tengo la version de pago,3,0,1.5.11,2018-10-24 10:40:49,,,newest,com.oristats.habitbull +Kimi Gee419,https://lh3.googleusercontent.com/-oA9Mo5OK9JI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP-_2VPSHC9KyEyO_jOmuTT8FddZg/photo.jpg,"Not so easy to figure out. I still don't get how to enter achievements in terms of goals, such as if I practice 15 mins but the goal was 30. No help in app.",3,0,1.5.11,2018-10-18 01:36:10,,,newest,com.oristats.habitbull +Manpreet Singh Lalria,https://lh3.googleusercontent.com/a-/AOh14GgB1RxpDINuREL4FnXS_EHckXSrJeyQCGi8EyHvDA,"I used this app a few times, but now, Facebook login won't work. It'd be a better app if you could just sync it with your Google account.",3,1,1.5.11,2018-10-16 09:48:25,,,newest,com.oristats.habitbull +Paul Stein,https://lh3.googleusercontent.com/-U4GhrcNDWYw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOm3N9xZV3ZyvD6hjQ16Tun6MLO_Q/photo.jpg,Good idea but glitches...eg I incorrectly logged a day as performing a habit and could not change the fact I had actually broken the chain...,3,0,1.5.11,2018-10-12 19:04:07,,,newest,com.oristats.habitbull +Mujgan,https://lh3.googleusercontent.com/a-/AOh14GjJz4Pqsf8JLZ-HlU14RzyFl_d-dBJtYwc0pM-2,I didn't use yet,3,0,1.5.11,2018-10-09 09:40:48,,,newest,com.oristats.habitbull +Divyanshu Kumar,https://lh3.googleusercontent.com/a-/AOh14GgEaaDgt25nvSaGrv1oQ1INyPh6bA2GJwlHMs9r,Not giving 5 stars because of the following reasons : 1. It's very annoying when you enter into a habit page and you swipe down to scroll down to see stats . But it switches to another habit page. Please fix this . It's counter intuitive. 2. No method to edit the habits online on PC or Mac . Limits the app to smart phones only. Otherwise it's a good app. Does what it is supposed to do.,3,4,1.5.11,2018-10-08 15:27:48,,,newest,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,It is good but not for me,3,0,1.5.11,2018-10-06 23:52:26,,,newest,com.oristats.habitbull +Vijay Prasanna,https://lh3.googleusercontent.com/a-/AOh14GjMBdE094ptk8iS9jX9Lbm3ndqetRge5w9EwMDZZw,"The app is great but things aren't automatic.. like there's no notification to make me use the app even though i turned it on in settings, and the quote of the day is constant until i change to next even if days pass by.. it should be set to auto change.. other than these two fixes i love the app!",3,7,1.5.11,2018-09-28 11:14:26,,,newest,com.oristats.habitbull +Neil B,https://lh3.googleusercontent.com/a-/AOh14Gjee0p3XHyl_oJr3gGIhkzF2CitOUsFsExcXLuwuA,I wish it had a couple of different features,3,0,1.3.9,2018-09-27 18:28:44,,,newest,com.oristats.habitbull +Brian Grimwood,https://lh3.googleusercontent.com/a-/AOh14Gh964AN-Gt8mld7CR311fA96D-Q3gMSQyliUGzKCyM,"Doesn't open in weekly view even though I have it set to do so. Color scheme could be more attractive, or a greater variety of colors provided to choose from. When you like or dislike a motivational quote, it disappears forever, so if you really like one you should never rate it! Community discussion forum is a nice concept, but there are no dates on the posts, so I have no idea how old they are. Otherwise it's a good tracking app.",3,0,1.5.11,2018-09-24 02:49:05,,,newest,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Should help you more,3,0,1.5.11,2018-09-16 20:36:08,,,newest,com.oristats.habitbull +Elsie Wilson,https://lh3.googleusercontent.com/-zsrGNDrIpXk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPwiNH9MokpzF71YEM_GU6uTCVlvg/photo.jpg,"Worked great until the app started calling me pet names in the notifications. I'm not trying to be catcalled by my phone and my natural reaction was to ignore it like I would anyone else who calls me ""sugar"". I have not formed the habits I wanted to as a result.",3,5,1.5.11,2018-09-16 18:19:12,,,newest,com.oristats.habitbull +Gasper Jan Simon,https://lh3.googleusercontent.com/a-/AOh14GiBUKpn643LNJsmrtk004ak62SKnlVRahn9lU_R1w,The alarms don't work. But a good idea,3,0,1.5.11,2018-09-15 20:18:27,,,newest,com.oristats.habitbull +Ashutosh Tripathi,https://lh3.googleusercontent.com/a-/AOh14GgZw8L_A6dkZgNI9bGZUw7RDfzfboucJh75ltisqg,The hourly reminders don't work properly. They show up sometimes and sometimes they don't. It's unreliable that way. Otherwise the app is quite nice.,3,2,1.5.11,2018-09-15 11:39:09,,,newest,com.oristats.habitbull +Elisha H.,https://lh3.googleusercontent.com/a-/AOh14GgU1nV5J9JH_irhYahEcgW-TIJq62dRfA6LJ-Kf,"It works, but i can't sync my goals with my tablet..",3,1,1.5.11,2018-09-12 13:20:06,,,newest,com.oristats.habitbull +Nehal vani,https://lh3.googleusercontent.com/a-/AOh14GhhHHN-Z_QshhFFPqMVrYSf5TIfW1jb7OT3uiEfWQ,I must say ur reminder doesn't work at all i m not satisfied,3,0,1.5.11,2018-09-11 17:50:21,,,newest,com.oristats.habitbull +Sai Vemuri,https://lh3.googleusercontent.com/a-/AOh14GhU0Amx9JDeu4Z9zsgtJLzRmMGYQFLJcYHvvif2mAA,"Of all the things that this app does great, it tries too much and looks clumsy af. So much to do just to be able to create a habit and be able to track it.",3,0,,2018-09-08 04:29:39,,,newest,com.oristats.habitbull +Pratik Rohila,https://lh3.googleusercontent.com/a-/AOh14Ghen1jo-GFUnMsJi-0uUU6VapQlykecxvipbhMC-g,There is a glitch in which it do not keeps track of your hours of study My target is 5 he's and if I studied for 1 hours than I add it and poof next day it shows 8930 hours,3,1,1.5.11,2018-09-07 09:01:06,,,newest,com.oristats.habitbull +Matthew Williams,https://lh3.googleusercontent.com/a-/AOh14GjrE0XF5SAldOZiOozNH2hqUVa-T16G8FrXrqBs7g,It's okay.. Why not a simple yes/no box instead or colored circles? It's really confusing. Also not a fan of the general navigation.,3,0,,2018-09-07 02:04:44,,,newest,com.oristats.habitbull +MICHEL FERNANDES,https://lh3.googleusercontent.com/a-/AOh14GgcpbWT0aDLcPabrS8YxUbcpRkgTTpGG6FhHH33,"It's good but when do you open the app and see ""All Habits"" you can't know what is the habits that do you need to do in that day ( today). I mean, I have some habits that I just do once a week ( friday) but when I see all habits (on a wednesday, for example) I see that habit there, like if I should do that on the wednesday. Would be nice just see the habits that you need to do TODAY. You can do this?",3,32,1.4.9,2018-09-06 10:22:30,,,newest,com.oristats.habitbull +Seungyeon Kang-Nava,https://lh3.googleusercontent.com/-Y0qDKYjmKJY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNTLxxy5nM3-9qCZRKmvWcwzZvEwA/photo.jpg,It would be motivational for me if I can set the start date of my goals.,3,0,1.5.11,2018-09-01 19:35:57,,,newest,com.oristats.habitbull +Naomi Godsey,https://lh3.googleusercontent.com/-Ncf7VcbJ2Tk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNvfSm_-8uypr_xPx_NFFrctf546w/photo.jpg,Only 5 slots in free version and the reminders haven't worked so far. Otherwise a great idea.,3,0,1.5.11,2018-08-31 20:58:23,,,newest,com.oristats.habitbull +A Locke-Smith,https://lh3.googleusercontent.com/-j9OA8RnnlgI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOnGKkt6Ea3Q0-gYNEJA6fSrhJTxA/photo.jpg,"It doesnt work for what I was looking for - something to track my habits, not judge them. I dont want to focus on if I ""succeeded"" that day, I just want to have an idea of where I am in numbers.",3,1,,2018-08-28 21:39:35,,,newest,com.oristats.habitbull +Jacques Frigault,https://lh3.googleusercontent.com/-Mf3XHCZcvaQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM7H3ahnHZGtPJpkwRAIujHwzPB3g/photo.jpg,"In general, this app helps me keep track of my habits, which is great; however, the app has quite a few bugs, even after buying the premium version, which is disappointing. The sync function doesn't work at all and I don't see any effort to fix these issues. This is one of the rare apps where I won't be giving a 5 star review.",4,12,1.5.11,2020-03-24 12:32:34,,,most_relevant,com.oristats.habitbull +David Whitmore,https://lh3.googleusercontent.com/-W-QwJHFCnTI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMANfOHiM21FOy9-yzeiLnURO86yg/photo.jpg,"I like the app. Have been using it for a few months now, and the widgets plus reminders definitely keep me on track. Only drawback I've found is the inability to sync my profile - always fails with 'sync failed, make sure you have a working internet connection'. Have sent in support request, but so far no response. That aside, the app works well, and I can still use it in 'standalone' mode on my primary Android phone.",4,8,1.5.11,2020-03-09 18:48:36,,,most_relevant,com.oristats.habitbull +Orla Harris,https://lh3.googleusercontent.com/-JiHhPEMQFeU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMuiylrD1o_QllLzCitMg6Q2GsgcA/photo.jpg,"I like this app, I have used it for a while now and it helps. Only reason for 4 stars is that the percentages are frustrating. I managed 122 days straight but it won't change from 98%. I think once you do the full 66 days you should get 100%. Also, would love to be able to highlight a day in the future as a milestone, just different colour so I can say 50, 100 days etc, as a motivator. It's great for a free app. We'll done to the devs on this.",4,10,1.5.11,2020-02-02 21:12:49,,,most_relevant,com.oristats.habitbull +Rod Goree,https://lh3.googleusercontent.com/a-/AOh14Gi_KTUcnoRtE6wdFgCe6KIz77N589LAn_uDsVBwMA,"Liked the setup so much that I quickly became a premium user. The widget alone is worth it. I love the flexibility the app allows in specifying when I can work on developing a habit. As I am frequently adding habits, I would like to rearrange habits in the list to make it easier to find them. Hopefully, this is an easy fix. Then this will be a 5-star app.",4,10,1.5.11,2020-02-18 17:33:24,,,most_relevant,com.oristats.habitbull +Matthew Woods,https://lh3.googleusercontent.com/-QMlvbsyc7Q0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOXkbOCDRNtARw9FuBLAJWSpgZ6sQ/photo.jpg,"This app seems to work pretty well. The user forums aren't well managed, but remain useful. Habit Tracker has never crashed on me, but it does have the annoying habit of changing where in the UI has focus at the time you launch the app. Fortunately its easy to navigate.",4,1,1.5.11,2020-02-11 13:38:49,,,most_relevant,com.oristats.habitbull +Stefan,https://lh3.googleusercontent.com/a-/AOh14GhlM8_PkGY6BQPYwz8kfdGAK4DSgKTKWBpMPIwg1A,"A good starter app 4 collecting the data you need to better your daily life. Limited flexibility, in the free version, but sufficient four basic tracking of self-improvement efforts. Easy to get started. And so I can do without cute reminder and encouragement features, they are easy enough to toggle off.",4,0,1.5.11,2020-02-16 15:28:37,,,most_relevant,com.oristats.habitbull +Charlie Victoria Taylor,https://lh3.googleusercontent.com/a-/AOh14GjbgEEZvZYuVYiau7hC-75KsEG6s4lhei1aJONqcg,"Very good and gets the job done, not the prettiest or well designed but certainly not the worst! It's exactly how it's pictured and works fabulously too. No crashing or issues here.",4,1,,2020-03-19 14:40:29,,,most_relevant,com.oristats.habitbull +Ahmed Hossam,https://lh3.googleusercontent.com/a-/AOh14Gji5Vzrwpf9xUP3_fL3Jy46Vqv7WXNnhucyROR4k_c,It is all for me about habits i wasn't able to work on it but in this one it is so helpful just i have one issue i don't know if didn't find it or it is not at the program that if u need to remind your self more than one time in the day i just remind my self once a day i don't know if it in the app or not,4,0,1.5.11,2020-03-08 14:22:08,,,most_relevant,com.oristats.habitbull +Helga Bjarkadóttir,https://lh3.googleusercontent.com/a-/AOh14Gh6ZGjCesJcODGCz-CPcCGz1oqdgNZnZrj1Ic3oQw,"Havent been using it for a long time but so far so good. However, the paid version should have more features, such a costomizing your own categories. Also, the widget should be more customizable, such as font size.",4,0,,2020-02-11 14:45:21,,,most_relevant,com.oristats.habitbull +Pavan kumar PK,https://lh3.googleusercontent.com/a-/AOh14GhKS9sbviNraxPqMu-4IQyh-UhTydkSrjiCUld-uQ,It would be a very good choice for those who want a daily base motivation to make your way to build on the habbit..try not to break the streak of your habbit goals at any cost from which you can gain the max from this app . Well built interface with motivational images loved it❤,4,0,1.5.11,2020-01-27 17:22:55,,,most_relevant,com.oristats.habitbull +Conscious Nova,https://lh3.googleusercontent.com/a-/AOh14GiOhsz3RNbDLC8TI9VjdLQkBbz2xGoXD3026EiaIQ,"Nice app, would like further customization for habits, such as perhaps scores, the better you tackle a habit (healthier eating today than yesterday resulting in a higher score) this would make the app much more useful for me, otherwise great app",4,0,1.5.11,2020-02-24 18:19:11,,,most_relevant,com.oristats.habitbull +Pauly Gillespie,https://lh3.googleusercontent.com/a-/AOh14GgCWmrExXWcPSmCaaB2Uu0Czu-kEbVFSJbkDV6w4A,"Great habit tracking tool. The widget on the home screen is a great size so I can see quickly how well I'm doing, and the options at set up are thorough. I'm tracking all sorts of things and it's easy to see how I'm doing. Highly recommended. Only concern is I'm having trouble getting a response on a _potential_ issue I have (not sure it's real yet, but if it is I'm concerned). Otherwise five stars.",4,35,1.5.11,2019-12-28 18:30:57,,,most_relevant,com.oristats.habitbull +blackbear rawr,https://lh3.googleusercontent.com/a-/AOh14GiT5fp4J7F6nrxbrPcY68vy-sCfsj1lhWKK8zRuAA,"This has been very helpful with tracking my habits for hopefully having remission with my fibromyalgia . It sucks that there is only 5 habits you can put in, but if you think about it.. 5 habits is more then enough to start trying to break. Go any more and you overwhelm yourself",4,0,1.5.11,2020-01-10 04:14:39,,,most_relevant,com.oristats.habitbull +G Jasminee,https://lh3.googleusercontent.com/--3511u0iZiY/AAAAAAAAAAI/AAAAAAAAAys/AAKWJJPjeNwXyhQ0Uds4beRrfpAmiAMnUQ/photo.jpg,"App is great. Helps me keep track of my daily habits. I like how the interface is simple and easy to use. However, I've been experiencing issues tracking my habits using the widget.",4,0,1.5.11,2020-03-06 01:57:45,,,most_relevant,com.oristats.habitbull +Witte van der Tempel,https://lh3.googleusercontent.com/a-/AOh14Gj1SKlE2OIcegXUnwPkM7z2qMB5-sEBkzuXTFQkrA,"Love it! Would like to see a few more details in the graphs. It would be handy if you could scroll through the weeks smoothly instead of one week at a time. The dark version of the app should be the standard imo, it looks cooler ánd it saves power! I'd love to have a timer as an option to measure the amount of time spent on a habit. Thinking of meditation, breathing exercises.",4,30,1.5.11,2019-10-12 08:30:13,,,most_relevant,com.oristats.habitbull +Brandon Woltz,https://lh3.googleusercontent.com/a-/AOh14GiqNf8q1JIGKaffhYa0VCZt7sie31Cc47KrLMPcpQ,"This app is great, closest I've found to what I want! But I wish there was an option to add ""goals"" instead of just ""habits"" and give the goals a bit more options for their completion and reminders. Sure, I want to have the habit of eating healthy lunches, but I also want to record my goal of losing a certain amount of weight over a few months. :)",4,73,1.5.11,2019-11-07 18:04:08,,,most_relevant,com.oristats.habitbull +Karmen P,https://lh3.googleusercontent.com/a-/AOh14GiqtYmidMX3JBtf1z9gun8LLZtVpasFo5CtvxG_tr0,"This is by far my favorite habit tracking app (and I've tried many). I like the weekly view. (I have an unusual use for this app.....I use it to track my kids' school work and I like the weekly view so I can see what they have completed during the week). However, I'm not sure if this app is still being supported? The last update was over a year ago and they do not respond to inquiries. But the app does still work well.",4,8,1.5.11,2019-11-14 19:30:50,,,most_relevant,com.oristats.habitbull +Wade Bedinger,https://lh3.googleusercontent.com/a-/AOh14GgnEfmUcBGyiImCaHWQmB3ewJL9eNiHpgtbXQt8Mw,"Fun and engaging way to track your goals and form better habits. I'm still not great at keeping up with it, but the app works well when I spend the time to pay attention to it.",4,0,1.5.11,2020-03-02 06:44:45,,,most_relevant,com.oristats.habitbull +Hengul Akash,https://lh3.googleusercontent.com/a-/AOh14GjsXCauvvFGrT70bQ6vpYRmP6MWCjD8Y6Okj0ge1Q,Heyyy dear Developers..!! Love the app.. but have a issue in it.. IDK if it is only with me.. the App doesn't show any reminder after 1 day of setting a habit goal.. only 1st day it does..,4,0,1.5.11,2020-03-25 13:20:24,,,most_relevant,com.oristats.habitbull +Ashutosh Sahoo,https://lh3.googleusercontent.com/a-/AOh14Ghf3aMFiNVExPanVyqhRjXMFxSNi3S6QMzLTYrj,Great app... I am using it for a while... Functionality wise it the best in the market... It can get updated in terms of visuals and performance,4,0,1.5.11,2020-04-01 21:06:42,,,most_relevant,com.oristats.habitbull +Emily D,https://lh3.googleusercontent.com/a-/AOh14GjNXevdocrZDf9j9E71sR734M4D6x8INFv9Vv8LEw,The tracker has a clean interface and it's simple to set up habits. I've only experienced one glitch: sometimes when you're looking at the calendar view of a habit the heading won't show up. If I could improve the app I would make the habit description show up in the habit calendar page. Right now you have to click on the habit name to view the description. I would also make an option to include skip days so if you need to skip a habit it doesn't count against your streak progress.,4,0,1.5.11,2019-10-11 22:45:33,,,most_relevant,com.oristats.habitbull +Yuka and Kuma,https://lh3.googleusercontent.com/a-/AOh14GjjIsn9AsDNsJV_LTaudEjCDfoBGGfOg37HWEK9qQ,"It is such a great app to help you manage your time! I really like the fact that it can set the reminder time in a very specific way, it is perfect for people who have a different schedule everyday. One thing to point out will be the choice of the habit. Although you can type it yourself, wont really affect anything, I would like to have more type of habit to choose except for clicking ""other"". Also, it is sad that you need to pay for back up, but it is understandable.",4,14,1.5.11,2019-10-18 04:59:53,,,most_relevant,com.oristats.habitbull +Lisa,https://lh3.googleusercontent.com/a-/AOh14GgPy-8GBSr31FnM9fdxTYz3mGHjg9-CmBk9WuIu,"I love it, simple and effective! Is it right that the motivational pics don't switch anymore? Mine has been stuck on the very same for a year now :(",4,3,1.5.11,2020-03-27 23:49:15,,,most_relevant,com.oristats.habitbull +Simon Nilsson,https://lh3.googleusercontent.com/-Eoq9uQ3dHQA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOEIovxg3NBMFUrmKKTj7oBbKRZgg/photo.jpg,Great app for succeeding with your good habits. The widgets are especially useful since you are constantly reminded if you haven't completed one of your habits. I also like the discussion page but I miss some sort of timestamp to show when the post/comment was posted. Sometimes you reply on a post that has been dead for quite a while without knowing it.,4,10,1.5.11,2019-11-11 10:20:48,,,most_relevant,com.oristats.habitbull +Charlotte Wolf,https://lh3.googleusercontent.com/a-/AOh14GgwxXOlqpAisJahazl0LQ4dMTGtoTJ9l9ThwkaL,"Love this app, but it only lets you keep track of only 5 habits at once, for more you have to buy premium, but other than that, its great!",4,0,1.5.11,2020-01-29 01:36:30,,,most_relevant,com.oristats.habitbull +mark anointed,https://lh3.googleusercontent.com/a-/AOh14GiZ1RhLLlFazaoCqqUmK2a4s4sS6nKHpTk7DJu9,Just the best. This app has helped me improve at a time I was feeling very down and unable to do anything.. I only wish the notifications worked better.,4,0,1.5.11,2020-01-16 11:32:33,,,most_relevant,com.oristats.habitbull +Vicki Esche,https://lh3.googleusercontent.com/a-/AOh14GjohIEIAXexNOg2-QSOLnb2yv2OZ511o98oCn0amQ,"It's a good app. I like the encouraging reminders and memes each day. I wish there were just a couple more openings for tracking, but overall it's good. It doesn't eat my battery like the last one I tried. In fact. I'm readjusting to use in the coming year.",4,1,1.5.11,2019-12-29 03:26:24,,,most_relevant,com.oristats.habitbull +Kailesh Ramjee,https://lh3.googleusercontent.com/a-/AOh14GiayZwfpH9ZmPCNTVht0e9FtNvVTLLAD794-jILvw,"Great app.. please add the ability to see when recurring habit is due.. or by automatically completing a habit which is not due, i.e. required once a week for example..",4,0,1.5.11,2020-01-27 17:30:56,,,most_relevant,com.oristats.habitbull +Manish Shah,https://lh3.googleusercontent.com/-utDygoE6gwM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNbDruaqRPkJ_MbGxp8DeKcMDx-WA/photo.jpg,Extremely easy user interface. Helpsnin using the app more and note the goals.,4,0,1.5.11,2020-03-10 10:25:59,,,most_relevant,com.oristats.habitbull +Jocelyn Cleta,https://lh3.googleusercontent.com/a-/AOh14GjIHlHCEUb0WVshaiC8ZESKCtylhZsW_WADel4I4Q,"Simple, easy to use.... makes it very easy to keep track of habits...",4,0,1.5.11,2020-03-09 23:20:35,,,most_relevant,com.oristats.habitbull +Chris Buchanan,https://lh3.googleusercontent.com/a-/AOh14GiQscQCikbYv0s_DsF2sDOjewXfFLLsQkutVjWx,"Good app, tracks nicely good widget. Sometimes notifications can be a bit flaky.",4,0,1.5.11,2020-03-19 10:07:41,,,most_relevant,com.oristats.habitbull +Amone Fernando,https://lh3.googleusercontent.com/-Q-oTxOKpmU8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOoY2S3t3oKeQUGZ7e1eCE4OliXFA/photo.jpg,Its the best app when it comes to tracking your progress but one problem thats why i didnt give it a 5 star when you set reminders it doesn't work maybe on my phone but it doesn't send you reminders.. besides that its really a good app to kick start 2020,4,0,1.5.11,2020-01-03 11:39:20,,,most_relevant,com.oristats.habitbull +Charlene de Vries,https://lh3.googleusercontent.com/a-/AOh14GimBrFh5CSqVttUmrsK3WFFFpdw0it3ReeNuZYQ,"I love how easy this app is to use, the only disadvantage is that you can track only 5 habits for free. If you want to use it for more you have to buy the pro. But what it does, it does well.",4,1,1.5.11,2019-11-16 08:16:43,,,most_relevant,com.oristats.habitbull +Trokon Johnson,https://lh3.googleusercontent.com/a-/AOh14GhtY-LRVZhGfwKY6076_qcyWGHtAsJjyPh4F5We,"Really good at what it does, but I've asked for support for what seem to be glitches transferring data between devices twice and gotten nothing back. That's frustrating.",4,0,1.5.11,2019-12-21 11:28:24,,,most_relevant,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"The simplicity is nice, but sometimes I want something with more detail. I use it in conjunction with another app. If I don't have a lot of time to enter info, it's great for that. I like that you can change the background to dark which isn't so jarring if you are using just before bed and are trying to avoid being stimulated by technology. I do wish, though, that you could change the setup of a Habit entered between a simple click or entering more detail. Right now you have to create a new Habit if you want to change, but then that changes your stats.",4,125,1.5.11,2018-09-12 21:53:05,,,most_relevant,com.oristats.habitbull +Terry Grignon,https://lh3.googleusercontent.com/-UtkUtvERoSI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNH3qDrJTa0TaVNWPYuwAsrLnTuRQ/photo.jpg,Very useful app for establishing good habits: I like the weekly view in particular. Also like being able to set the level of chatter and reminders done to the minimum in the free version.,4,0,1.5.11,2019-12-06 20:28:26,,,most_relevant,com.oristats.habitbull +Pia van Heijningen-D'Souza,https://lh3.googleusercontent.com/a-/AOh14GiI_e4XkhTUTSlZ5mRsD2F0pFvOjVIuJqUklR8h3w,"Using for a week now, i like seeing the statistics and that the free version will track 5 habits.",4,0,1.5.11,2020-01-24 03:52:26,,,most_relevant,com.oristats.habitbull +Lamont Parraway,https://lh3.googleusercontent.com/-V1YEx2JPVbY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPYK-s4dUK6dWm5VYKrFU3QTaTtIg/photo.jpg,"Excellent app. Does everything you want a habit tracking app to do. Only complaint is the app counts the current day in your progress with no option to change that. So it looks like you are less successful than you really have been on a daily activity done near the end of each day. For example, if I am tracking going to the gym after work everyday and have been successful for 2 weeks, the app will show me as less than 100% successful until I indicate today is successful. Need to fix that.",4,0,1.5.11,2019-03-23 16:24:27,,,most_relevant,com.oristats.habitbull +Taylor Zehr,https://lh3.googleusercontent.com/a-/AOh14GgkrXgI0hrI2RBEHnFLkskzK0shFvTpxGDCd88H,"This is a super cool and helpful app. I love it. My only criticism is that it could be a bit more user friendly... it's easy to set up habits you want to DO (drink 8 glasses water per day) but harder to set up ""I only want this many ___ per week"". Additionally, the funny reminders are funny... because they're ridiculous. I don't think an English speaker wrote them, but I can't convince myself to disable them because they're so strange. 😂",4,6,1.5.11,2019-01-18 04:25:11,,,most_relevant,com.oristats.habitbull +Lilly Carmichael,https://lh3.googleusercontent.com/a-/AOh14GiNOSlcaRLisKU-6mcMm1ZmjcggdmcihWRKZM5Jiw,It's pretty good. I wish you could change the type of selector though (yes/no vs x times a day) after habit creation. It seems there is no way to do this yet.,4,0,1.5.11,2019-11-30 06:43:53,,,most_relevant,com.oristats.habitbull +mariam TOMA,https://lh3.googleusercontent.com/a-/AOh14GhUH1RpZdjofRm2ViwO-RBFZ8RA2wQyEhaIEYZNdVs,I like the app. It is very practical and quick to apply but you have to purchase more targets if you want and there is no inspiring pictures I think I should pay for it too.,4,0,1.5.11,2019-12-03 04:23:13,,,most_relevant,com.oristats.habitbull +Colleen Walton,https://lh3.googleusercontent.com/a-/AOh14Gj_U6wIV40Golyc4tVpjjZmiIP6JNOxkcMRjbKMo5k,"I like that the app in simple. I turned off the motivational quotes, so all I see is the calendar. And that's all I need to see! One thing I would add, though, is the ability to add exception so missed days don't count against my streak. One of my goals is a daily activity that I can only do at home. When I travel, I miss those days. But I did it every day I was able (i.e. every day I was home), so it's a bit of a downer to be penalized.",4,0,1.5.11,2018-11-13 05:21:40,,,most_relevant,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,I just downloaded it to see the continuity of work I do. I found it personally useful. 1st : I am reminded by the large display of tracking down my habit. which I wanted to continue. 2nd : Now I can read the comments I entered after finishing the tasks. Now it is becoming habit for me to keep track on my habits that i see improvement in overall doing. i hope i still achieve lot more through this app. I heartly thank to the developers and creators of this app. signing off.,4,0,1.5.11,2019-02-21 04:10:03,,,most_relevant,com.oristats.habitbull +daniels rose,https://lh3.googleusercontent.com/a-/AOh14GiP9NJwpuosAQCL6weQmTUqIcARxuv4PV56sSoFUQ,"So far, so good. I love the reminders because they check in you throughout the day, rather than just once a day. This has definitely helped me develop a routine. I may keep it on longer than the prescribed 66 days. The app claims it takes that long to develop a lasting habit but the daily reminders help me best. This app is good for that.",4,0,1.5.11,2018-11-02 19:40:54,,,most_relevant,com.oristats.habitbull +Rayna Thompson,https://lh3.googleusercontent.com/a-/AOh14GiWCWXdpoHkGGQzhThmDJ_Z4D9NEFFWT9GkFeOa5rQ,"Basic version works as described; just not what I need. The habits I want to improve require reminders at different times of day. And I'm personally not finding it an effective incentive, especially 'starting over' if missing one time. That's kind of a carrot AND stick approach. I'll stick to a simple checklist of what, & calendar/alarm clock to remind me when. Making this app's functions kind of ...basic and redundant? And since all apps use space... well, uninstalled. But the app works fine.",4,9,1.5.11,2019-03-24 00:13:30,,,most_relevant,com.oristats.habitbull +Mercedes Hernandez,https://lh3.googleusercontent.com/a-/AOh14GjtFprb-jo662Yvdi8F4K8r0tHyYm6cSBJFRqPf,I really like this app. Some things could improve like the quote box fitting the whole quote in it. And the colors being more distinguishable. Thanks!,4,0,1.5.11,2019-11-13 02:28:24,,,most_relevant,com.oristats.habitbull +Ludwig Van Deventer,https://lh3.googleusercontent.com/a-/AOh14GgWJDttZtgzvPJbjH01mJ9ttaa0GNziVNgdnCjyaQ,"Great app. My only problem is some of my habits I created doesn't work; I set a habit so I don't do something atleast 8 days of the month, but it links all the days inbetween successful days together. I only end up being successful for 6 days out of the month, but then it says 20+ days successful, because it link all the successful days together. Going to try other apps, unless I can resolve this issue.",4,0,1.5.11,2019-04-13 14:01:23,,,most_relevant,com.oristats.habitbull +Lindsey Crawford,https://lh3.googleusercontent.com/a-/AOh14GgWR7z7yPSfp9VeFAhfWd_bm95Qy7nSkLs11oVe_w,"Habitbull is great. I love how customizable it is for making different types of habits. Tracking my current streak is great for motivating me to keep on going. And even if I break my streak, I love that it shows my ""best score"" so I have a new goal to reach. The only thing I would suggest is having a ""user suggestions"" button in the settings. I have emailed about a new type of habit a couple times and have never heard anything back. User feedback is always good for making a great app even better",4,4,1.5.11,2019-01-22 04:15:59,,,most_relevant,com.oristats.habitbull +Nikoleta Bertová,https://lh3.googleusercontent.com/-0z0L5OvlrIw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOlDfNhtYkxfFRSnVyC33WRPF3s9g/photo.jpg,"Great app, easy to use, nice design, motivating statistics and quotes. Thank you developers for this app :). Only one remark from me: if I change the number of repetitions per week of an activity, it changes the whole statistics (also for the previous period). Maybe there could be an option to apply this change only to further period (e.g. when I start an activity twice a week, it becomes a habit and I want to increase it to 3 times a week and I don't want to lose/worsen previous statistics).",4,79,1.5.11,2019-02-05 21:03:38,,,most_relevant,com.oristats.habitbull +Lisa Spence,https://lh3.googleusercontent.com/-dxStM94XoBQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM-SNTZAfFnF63gL5HjUXIybtaQTw/photo.jpg,Great app. Life changing if used properly. Easy to use. I have paid for premium but not getting my reminders popping up with notifications for app on. Can you help?,4,0,1.5.11,2019-11-16 09:24:31,,,most_relevant,com.oristats.habitbull +Lana Banana,https://lh3.googleusercontent.com/-CJPGkwHtVbo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM40xduyGNmCMk6EI06w3UkGVmWsQ/photo.jpg,"Great app. Quite simple, it has a specific purpose, but does it well.",4,0,1.5.11,2020-02-20 11:46:11,,,most_relevant,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"this app has really helped me work on some habits! I appreciate that it reminded me if I didn't enter information for a day. I would have liked features like setting a time for those messages, or cool sounds when I click that I've done something, but for a free app, this was good enough as it was!",4,0,1.5.11,2019-02-09 17:00:27,,,most_relevant,com.oristats.habitbull +Surbhi Mittal,https://lh3.googleusercontent.com/a-/AOh14GgR4RI4PIAaALkVRAvfYjBMVpOC6phdTaIqlUaROaQ,"I've just installed this app and so far, it seems like exactly what I had been looking for! Kudos. I just have one suggestion. The app exits on pressing the back button once. Most apps exit on pressing the back button twice, which works great for the user experience, in my opinion. So, it would be really great if you could incorporate that. Hoping to use this app every day!",4,3,1.5.11,2019-06-02 13:35:16,,,most_relevant,com.oristats.habitbull +Micah Larsen,https://lh3.googleusercontent.com/a-/AOh14Ggr89AP0WAowvQffZhszO22Q987loA1VPuc6yJJ7A,I love the app. It has helped me a lot by helping me easily track my habits. I gave it a four because I sent them an email months ago they never answered.,4,0,1.5.11,2019-11-30 21:16:25,,,most_relevant,com.oristats.habitbull +Timo Müller,https://lh3.googleusercontent.com/a-/AOh14GiT1FJz4RE1RoF0vMRRUq_Bto6rWKKgwIEenpzISQ,Simple app that provides all I need to track habits. UI could use a refresher.,4,0,1.5.11,2020-02-11 04:19:49,,,most_relevant,com.oristats.habitbull +Jayden Young,https://lh3.googleusercontent.com/a-/AOh14GjRBrooZm2CFAdf5d1zN8sjOZgSmvKO1t8ejEbCug,"The widgets look great, and i like the idea behind this app, but it feels like im fighting it to create goals where i would have to start over completely to make it a single task vs a quantity. also my biggest issue is that you cant set a quantity per week, only per day. i want to be able to set x number of hours per week doing a task without any daily requirements",4,230,1.5.11,2018-11-06 21:03:57,,,most_relevant,com.oristats.habitbull +Abbey Pleiss,https://lh3.googleusercontent.com/a-/AOh14GgfFDfY8qCL5I-c7vbxfNdXgf1Q3E123j_qZ4Hrtg,Works well. The interface is a little odd. You have to scroll down to see all the graphs.,4,0,1.5.11,2020-02-13 21:47:46,,,most_relevant,com.oristats.habitbull +Laura Coyle,https://lh3.googleusercontent.com/-1sc-Gajhp2Q/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOX9NRFlSWR75cU0mJMrtkUGDRyDQ/photo.jpg,"This app is literally the only thing that reminds me to take my meds. I love getting the notifications and tracking my progress so easily. However I just upgraded to the pro version specifically for the sync capability and...it does not work. -1 star. For $10, I would hope that the one feature I wanted would function like it's supposed to. I'm not happy about that at all. The home screen widget comes in handy so it's not a total loss but that alone is not worth the price. Please fix syncing!",4,17,1.5.11,2019-08-28 16:44:29,,,most_relevant,com.oristats.habitbull +badran mohamed,https://lh3.googleusercontent.com/a-/AOh14GhRBL6NKNngep0Hr085wigq5fCy6uQ9PpQgjObCcw,"It's the best habit tracker out there but it's not the best it can possibly be. After a substantial amount of thought, I succumbed and shelled out the 10 euros for the premium version to be able to use the widget, which is essential to keep me on track. However, the widget doesn't respond unless the application is opened beforehand, so minus one star for that. Also, a true black widget or user-interface would be very nice for AMOLED screens, so fingers crossed for that too.",4,123,1.5.11,2019-07-02 09:43:03,,,most_relevant,com.oristats.habitbull +Kristin Star Picun,https://lh3.googleusercontent.com/-xJAiUI_11jM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOi1PyEnE6mgpdtdddY_bVWuMpbqg/photo.jpg,"The one major short-coming of this app. (and most other ""habit trackers"") is that it does not have any option to calculate a total number (amount of hours, etc.) for a week or month--only a number of days or per day...That is a gaping deficit in these app's (with the exception of one or two with less desirable formats), as it is a far better way to track things like sleep which may fluctuate from.day to day. The other dismaying factor is that Habitbull doesn't seem to have any customer service, as I e-mailed numerous times about issues trying to upgrade (because it is a really helpful/useful application), and never got any response in about a year's time. :-\ Aside from the tabulation inadequacy discussed above--which I really hope they'll address/include that capability, it is a really helpful and useful app., and can be especially helpful for people with issues such as depression or ""OCD"" who may have difficulty keeping a handle on self-care and/or productivity (though, it could, also have the opposite effect, if people with ""OCD"" get too immersed in tracking things in their day-to-day :-S). In general, it is a good tool to have, though, and can help you make a lot of progress on things like household projects, etc., but I really do wish that they'd adjust it so that you can calculate a total for a duration of time longer than a day, and that they would also be conscientious about customer service/support and responding to/fielding correspondence and issues people encounter. ~*Kristin Star*",4,19,1.5.11,2019-09-07 01:55:35,,,most_relevant,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Absolutely love this app. 4 out of 5 for two reasons. One, navigation, I think swiping between habits rather than scrolling would be a better interphase and also more intuitive. Scrolling habits only goes one direction, swiping could go both, as long as you're off the calendar. Two, the free version only can track five habits. I'll probably buy the app for full access, because this truly is a good app. However just a few more, say 10 instead of 5 in the free version would've been appreciated.",4,287,1.5.11,2019-01-29 07:43:59,,,most_relevant,com.oristats.habitbull +Alex Vergara,https://lh3.googleusercontent.com/a-/AOh14GgcCx1q63VKXHR6YzajEPLABcFngHnCxB36mayBPw,"This is a great app for me. The app is easy to navigate and the motivational quotes are a nice touch. I give this app 4 stars because I have an issue with the notifications. I want the app to remind me to do a certain task a certain amount of times throughout the day, but it only sends me the notification once I open the app which defeats the purpose of the notification. Not sure if I'm the only experiencing this problem? Other than that, I use this app on the daily.",4,6,1.5.11,2019-05-12 03:40:15,,,most_relevant,com.oristats.habitbull +Diana Troy,https://lh3.googleusercontent.com/-EXBntalQ57g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPYemGPfLsXr6PD5xwQKWgyXpFd0Q/photo.jpg,"It's simple to use: you don't need to be a coder to figure it out. I like that there's a message board. I am considering using it to form a support group so I can stay on track with my workouts. Also, I didn't realize there are a lot of people who hate themselves for masturbating lol. But it's good they can find support in the message board. I read that you can only have 5 habits you can track. I'm being pragmatic and starting out with 4. But eventually I will need more than 5.",4,0,1.5.11,2019-04-23 19:46:56,,,most_relevant,com.oristats.habitbull +Brittany Dibble,https://lh3.googleusercontent.com/-7qVYmuoKu78/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNJ5cG1ywEtR8L4fGtaXIs2GEUniA/photo.jpg,Nice configuration settings. Able to set most goals. One setting that I couldn't get to work for me was trying to get a goal for every other day. It seemed to that the goal needed to be completed every second day and comoleting it on off days didn't work. The UI is slightly un-intuitive as well. I don't think swiping up on a goal calendar should swap to another goal. It makes it hard to scroll down to the community form at the bottom if the app.,4,3,1.5.11,2019-05-09 14:40:33,,,most_relevant,com.oristats.habitbull +Kristine,https://lh3.googleusercontent.com/a-/AOh14GiJ-XjdT-GzG_9ehXBQxmug2iG5qF-F14jYhz7yqw,"I love this app and the widgets are awesome. 1 star lost because I am frequently getting pop ups (about 5 a day) stating it stopped and to restart app. And there is no update available. I might uninstall if this continues and it gets on my nerves. For now, works for what I need it for.",4,1,1.5.11,2018-09-15 06:37:57,,,most_relevant,com.oristats.habitbull +Charlene May Anne San Juan,https://lh3.googleusercontent.com/a-/AOh14GihlGkBlPI3rdvWoqm6vi60FHyis7ZL0ozmFj645x0,"App is nice! It works fine. I think it might just be better if it can give some rewards (maybe points or what) whenever you exceed your goals. I also do not understand some items in the app like the red translucent thing that goes on when you tap the dates the 2nd time and why it decreases % when red. Maybe you can make the app more user friendly. I also sometimes feel offended by being catcalled by the app notifications. I don't think it's appropriate. Still, it's a great app.",4,3,1.5.11,2019-09-21 06:02:28,,,most_relevant,com.oristats.habitbull +shankar e,https://lh3.googleusercontent.com/a-/AOh14Gi5VAfMjk7NcyOcmsxL8q5mKm7r01t2udBHaRgFzQ,The percentage calculation and the number of days successful in a week/ month seems confusing. Otherwise it's a really good app.,4,0,1.5.11,2019-12-29 04:31:02,,,most_relevant,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"this app works for me this app is able to be customize. I don't ""fit the box"" for most general apps. I do wish that social piece wasnt there, where you have the ability to what other are people have listed as their habit to break. I think there may be trolls getting kicks to see their obsurd habits stay at the top of this list. On a positive note you can hide this.",4,2,1.5.11,2019-04-11 15:49:21,,,most_relevant,com.oristats.habitbull +Carolyn Allen,https://lh3.googleusercontent.com/a-/AOh14GizE_RGezG-tmSzOjLJhnZBRshrbu5cNeX5lOrX4g,i suggest a positive running tab amd also a negative running tab! i love the app and it really makes a difference in tracking my daily habits. the only thing i have found that would make it better is if i could track relapses. this would require it to allow something that i do NOT want to mark for a day amd when it is marked then it would be a negative. this would help responsibility to be accounted for the relapse. i would like these negstives to be separateky counted from the positive marks.,4,8,1.5.11,2019-04-28 15:40:36,,,most_relevant,com.oristats.habitbull +Kelly Dennis,https://lh3.googleusercontent.com/a-/AOh14GjTprRHr6WXrHKlBS_FV5TaVx0TYZmjb62cHoJoxw,"Newly installed re: resolutions. Seems to be a bug on Android when I set a target date it sets it to the day after. If I go back in and change it back one day, it keeps it. Please fix. Seems like a great app. Purchased to export data because data is beautiful lol. Thank you.",4,0,1.5.11,2019-01-01 17:17:40,,,most_relevant,com.oristats.habitbull +Aislin Percival,https://lh3.googleusercontent.com/-Cetxpg_mgok/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMvqoEjz7Fd304-wXT6f9VbxAM7_A/photo.jpg,"This tool really helps me see my progress so that I can feel motivated to change. When I see that I have been on a successful streak, it helps me believe that I can make positive changes for real and forever. I only did four stars because if you want to track more than 5 things you have to pay. Also, their forums seem to only feature drug and sex addicts. It's kind of creepy really...but you aren't required to participate...so I ignore it.",4,7,1.5.11,2019-10-03 13:08:18,,,most_relevant,com.oristats.habitbull +Santi Czaban,https://lh3.googleusercontent.com/a-/AOh14GjGV-6fVXn7eWCWy_uPFrXCVW_dKtiP42Bj9dgi3WA,"A great app overall. Complete and specific in terms of types of goals. User interface aspects like fonts and some screens like the first ""create habit"" screen seem a little heterogeneous when compared to the rest of the app; in other words, they seem displaced, out of vibe. I suggest a review of the UI; maybe making it a little less cluttery and cleaner. For example, the google fit prompts and font correlation. It is a great work nevertheless, congratulations!",4,0,1.5.11,2019-05-22 19:52:17,,,most_relevant,com.oristats.habitbull +Christopher Pangilinan,https://lh3.googleusercontent.com/a-/AOh14GiPRA345HL_WHhR8-edXW0PjrCBF7iCpocpPDRIvQ,"I've had this for about 6 months now and tbh its helped me out. you're allowed 5 free habits. any more than that you have to pay but i think 5 is a great start because you dont want to bombard yourself with too many changes. its simple, easy to use...it takes awhile to form habits so be patient and honest with your entries. it'll help you see where you're failing and succeeding by %. i noticed i did habits because i didnt want to fail. now i notice i perform habits because i want to excel.",4,97,1.5.11,2019-04-22 18:43:28,,,most_relevant,com.oristats.habitbull +Joshua Kölzer,https://lh3.googleusercontent.com/-rw-FUuiNbcc/AAAAAAAAAAI/AAAAAAAAAC0/AAKWJJPbvUZ_6lGHnP7-vq0RyNHOHYtO-Q/photo.jpg,"Great app. Just bought Platinum. My only issue is when setting my goal for a habit. Let's say I have a habit named '1 hour of study'. And I set my goal to doing this 5 times a day. Even if I would only do it twice (meaning 2 hours) each day the app would show it as a streak, even though I haven't reached my actual goal during any of the days. So it does see it as a success even though it wasn't for me. Could you maybe implement an option to make it possible to show those as unsuccessful?",4,3,1.5.11,2019-09-18 13:41:40,,,most_relevant,com.oristats.habitbull +PJ Frampton,https://lh3.googleusercontent.com/a-/AOh14GhpuqDy4UScEiJ4JriBA9ZhI0ufnaUFG-FO4YJ57w,"I enjoyed using Habitbull in the past and decided to give it another go. Not a lot has changed. I do like the app, very simple to use and gives great reminders.",4,0,,2019-12-04 14:27:17,,,most_relevant,com.oristats.habitbull +Kimberly and Zachary White,https://lh3.googleusercontent.com/a-/AOh14Gjns-jFwUemAi_Vv3YA2yWR-ibKoyUFL1bgXH41QFg,"really effective app. best widget of all the habit tracking apps I've tried. But the widget can be a little glitchy and I wish there were a compact version. some of the UX leaves a little to be desired. I'd love to see some small improvements espec to widgets, but still definitely worth using. premium paid user.",4,0,1.5.11,2019-03-11 19:17:16,,,most_relevant,com.oristats.habitbull +Raquel Pego Teira,https://lh3.googleusercontent.com/a-/AOh14GhHo2nP2yu8IvFRO9ALGNZyMOsI0sqV0UhWZ7JvTMI,"I like this app as it helps to track things that are important for me. I'm still exploring how effective the method is but I like what I found so far! It'd be nice to have a way to see the correlations or tendencies among habits if any. Good job, nice idea!",4,0,1.5.11,2018-12-13 23:33:05,,,most_relevant,com.oristats.habitbull +Morgan Smith,https://lh3.googleusercontent.com/-BbtBtBrhMQ0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPHh7croxvYVgtCVmU3x0MElqna1A/photo.jpg,"overall it gets the job done, but the notifications are confusing to set and are inconsistent when reminding you about your about. Some days I'm reminded and some I'm not, so it's kinda been up to me to remind myself. but the app itself is easy to use and effective at tracking.",4,0,1.5.11,2019-05-29 12:24:59,,,most_relevant,com.oristats.habitbull +darude sandstorm,https://lh3.googleusercontent.com/a-/AOh14Gg0zS0Pe6j6shC19T_BI9h4G2JHCvwUBc-h4GIY,"its a good app, the cool thing for me is that you can comment per day, so if you fail with your habits you can find out what things stand in your way, i withdraw one star because i want to make a feature request: when you select ""all habits "" i also want to see all comments (mixed) this way the app would also be a holistic diary , thx :-)",4,0,1.5.11,2019-01-21 11:15:03,,,most_relevant,com.oristats.habitbull +Tina Manasra,https://lh3.googleusercontent.com/-DV4jdaoBpws/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNSwILJMDvemUTa9jA4J-lKpzZ8pQ/photo.jpg,"Great motivator to keep a habit going. Also good for keeping track of habits you already have. They have great, insightful options that help you set your goal. Tried a similar highly rated app (forgot its name) and this one destroys it. Immediately uninstalled the other one. There are a few quarks here and there they can improve, but overall I really like this app and have recommended kt to friends and family.",4,0,1.5.11,2018-10-31 06:26:45,,,most_relevant,com.oristats.habitbull +Tye Lucio,https://lh3.googleusercontent.com/a-/AOh14GgvkYn4ZRyjC1AlwGtE6pMxjV4rbKwJ0xjsH4I3,It's very simple to use. I like that you can set as either a yes/no habit or a rep like two times a day. My only hangup would be that the free version only allows tracking for five habits but that can be a bonus if your just getting started. You don't want to overwhelm yourself.,4,0,1.5.11,2019-05-27 16:59:17,,,most_relevant,com.oristats.habitbull +Khởi Nguyễn,https://lh3.googleusercontent.com/-9gzjzyCVKdw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP2OKly3Z2cQYVp9D4u41feFUmi9g/photo.jpg,"It helped me alot. And there is a bug. If app is opened via notification message, password will not be required no matter. Hope you fix this bug soon",4,0,,2019-10-28 01:15:50,,,most_relevant,com.oristats.habitbull +Shannon Baxter,https://lh3.googleusercontent.com/a-/AOh14GjMGg7qKcoigtnlRKyGXWW24FC2_yaaWrCDp9b7T9Q,Simple and helpful once I figured out how it works. I wish it didn't cost money to work on more than 5 habits..,4,0,1.5.11,2019-11-09 02:52:28,,,most_relevant,com.oristats.habitbull +Aziz Bhaijee,https://lh3.googleusercontent.com/a-/AOh14Gg2oYMp1qmICr2jjjnVi50FylVbgui8JsZBGpP95Q,It's a great app for tracking habits. So far I find that purchasing the premium app has been worth every penny.,4,0,1.5.11,2019-12-07 12:15:02,,,most_relevant,com.oristats.habitbull +Melissa Vargas,https://lh3.googleusercontent.com/a-/AOh14GjHkrJ_DeZkWvUP8kD1MqoO-CRW3K7OOW5WI-1LcGk,"Regardless of my free version this app's intention is to help it's users increase positive habits and reduce negative habits. For someone like me who needs feedback, the percentage of success gives me an incentive and motivates me to keep the chain going. After using this app for almost two months I have been able to analyze and critique a few of the apps features. It would be interesting to know scientific statistics of the success of the app and if it is successful in what it is set out to do. In regards to the level of engagement I would say that the percentage strategy keeps me coming back to this app. For functionality, the free version runs smoothly, is clear, and easy to use. For aesthetics, it is simple and convenient however I do think that for some users it might be difficult to see due to size of buttons and font size. The information is a bit outdated and needs to be cited and should come from more credible sources. I do enjoy seeing that there is a discussion board for communication between users. From my subjective analysis this app's rating is a 4.1.",4,0,1.5.11,2018-11-25 21:18:12,,,most_relevant,com.oristats.habitbull +Lisa Campbell,https://lh3.googleusercontent.com/-280PFLh_xDY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP4r3fMe1RFBhYR7DWp20hFlkZhnw/photo.jpg,Works pretty good to help you remember to do certain things and make them a habit. Encouraging to see the streak when you accomplish what you set out to do. Would have been a 5* but sometimes it attaches circles when a day didn't get done.,4,0,1.5.11,2019-01-10 04:40:05,,,most_relevant,com.oristats.habitbull +Emily Smith,https://lh3.googleusercontent.com/-gjXgi3DWBSw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM9ALTztPQnP07cLjuAvyrOwBxDbw/photo.jpg,I very much enjoy this app. it has helped me greatly and its easy and fun to use. There is one issue though. I do not enjoy having an app call me affectionate names such as darling and sunshine. Quite frankly it makes my stomach turn everytime this happens. I like this app so much I bought the premium version but the fact that the app was calling me pet names made me almost delete it. I plan on continuing to use habitbull but I sincerely hope this weird occurrence is changed.,4,1,1.5.11,2019-03-29 03:20:36,,,most_relevant,com.oristats.habitbull +Michael Nafziger,https://lh3.googleusercontent.com/-fZsjeUhlYOM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMz4o0Nq0mGaa9bgKX-_Lsw2pCgPA/photo.jpg,Great but can be annoying with notifications and also is not quite as customizable as I'd like. Definitely helps to track your habbita though!,4,0,1.5.11,2019-12-15 12:09:22,,,most_relevant,com.oristats.habitbull +James Riley,https://lh3.googleusercontent.com/-saKiAWuFWCo/AAAAAAAAAAI/AAAAAAAAAKw/AAKWJJMjuRZV5fj8zIY-jLKzlKYTFyZkrw/photo.jpg,"I would like to set the begin date in the past, then indicate the total number of days and have app calculate end date. i would like to see the end date on calendar, number of days remaining, and an option to have days marked complete as the default. also, stop asking me to rate when i already have please.",4,1,1.5.11,2019-06-29 00:02:34,,,most_relevant,com.oristats.habitbull +Josh K,https://lh3.googleusercontent.com/-GptouQeprXM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNGfXlD13tMhxx6BEg57PRJkToauw/photo.jpg,"the app has helped me track my habits and create new better habbits. i have been 7 weeks drinking nothing but water and have been on and off with candy and snacks. just like any other habit tracking app, this will not do the work for you. it is here to hell you keep track of the work you are putting forth, and it does a good job at that.",4,1,1.5.11,2019-05-29 14:24:22,,,most_relevant,com.oristats.habitbull +Clinton Lough,https://lh3.googleusercontent.com/a-/AOh14GhoVBW9v-U5mwDp0HJAWYmL-imALLO1LGQ9SXpfaA,great habit tracking app and you get plenty without premium. I like the premium widgets quite a bit and the extra habits. Would be better if it had the option to flag a habit as skipped rather than fail without breaking the chain for when you can't do it. E.g. In bed early when you have to stay back late at work.,4,1,1.5.11,2019-06-20 21:15:16,,,most_relevant,com.oristats.habitbull +Dakota Sather,https://lh3.googleusercontent.com/a-/AOh14GjmsfW7GNU29cpyvoJsEY5eBiAwFsLWnE0_NuL5Rg,"Very effective for every day tasks, but once a week or once every x number of days is a bit confusing to set up.",4,0,1.5.11,2019-11-10 06:20:21,,,most_relevant,com.oristats.habitbull +Miroslav Kovar,https://lh3.googleusercontent.com/-2mLYZf5SaIo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMvHHVJ73dbg-HVaoA4s4UdyI5tmw/photo.jpg,"Pretty good at what it does, exactly what I needed. However, there is a small bug - weekly review widget does not show all my habits. Moreover, I miss a feature to periodically share my weekly/monthly reviews on social media, or with at least with someone. Accountability helps.",4,0,1.5.11,2018-10-14 11:07:07,,,most_relevant,com.oristats.habitbull +Daria Gbur,https://lh3.googleusercontent.com/-Rfp2s2xN0Gw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNvfjlSMPhyNHEY9Dz5WzJcmYRWOw/photo.jpg,"great app, I just wish one thing could change. some of my habits need a long title, and it doesnt show the full title if I click 'all habits' or even on each single habit. if the title could allow more characters, or another line, I'll add the last star! lol (please)",4,0,1.5.11,2019-03-25 05:07:39,,,most_relevant,com.oristats.habitbull +Aleksandr Sevastjanov,https://lh3.googleusercontent.com/a-/AOh14Gi2j7Nj-nRVWKlyNfQ_C7AogdVzcZeDU6LTVUWqUg,"So far, the best habit tracking app I've tried, the only one I was able to actually stick to using. If only full version would be more avaliable..",4,0,1.5.11,2019-10-23 19:37:20,,,most_relevant,com.oristats.habitbull +Amber,https://lh3.googleusercontent.com/a-/AOh14GgpiiC_4InEUFqIqKme0O4M7exT8KcoUn2Mo2qurpQ,Awesome App that has really kept me on track. I just wish there was some type of reward system once you've reached your goal. I think regular reminders (perhaps with some form of motivation attached to it) would also encourage discipline and drive.,4,0,1.5.11,2019-04-06 21:35:09,,,most_relevant,com.oristats.habitbull +Fred Gronlund,https://lh3.googleusercontent.com/a-/AOh14Gig0A_ME9tMBVcYLWlPYsF9e2RkeoKdvM4I1l9ZZbA,I bought the premium version of this app. It is easy to use and I love the reminders sent to my Galaxy watch to keep me on track. I would like bolder colour coding to differentiate the goals being tracked and success/failure indicators. Overall a great purchase.,4,0,1.5.11,2019-03-28 02:28:52,,,most_relevant,com.oristats.habitbull +Ezra Clark,https://lh3.googleusercontent.com/a-/AOh14GhZJmaS2W93R1GlBEWd1JNVMFqtsW4qNFzWji-a2w,"It's a great tool to start, track and keep habits. Since I started using it I've been adding more habits I want to build and this app keeps me organized and reminds me of my habit goals. I get to compete wirh myself and see where I have room for improvement.",4,0,1.5.11,2019-04-09 02:43:15,,,most_relevant,com.oristats.habitbull +Hana Faouri,https://lh3.googleusercontent.com/a-/AOh14GimIv-WpQtmWBZE1Zrw9j7VdNghcywj9d22RI9VQg,"I really love this app, it helped me quit smoking but I have a few comments I would like to make 1. the badges you receive on certain days are not saved, I think it will be more motivating when you know that you are reaching milestones 2. the discussions I posted are also not saved, I would like to see my journey posts to keep me motivated as well and to also see how other people interact with them. I still love this app a lot and really recommend it",4,2,1.5.11,2019-02-11 17:17:07,,,most_relevant,com.oristats.habitbull +Renee L. Peterson,https://lh3.googleusercontent.com/a-/AOh14GgwVk2gDQHBR-mfLevulBGl0xk0766A3lP0jZm9Up4,"3rd week. great for monitoring things you want to become habits. the humor in the notifications is lost on me. i wish for non monitoring days there would be a third color option with a continuance of the chain. other than that, its simole to setup and simple to use.",4,0,1.5.11,2019-02-23 19:17:10,,,most_relevant,com.oristats.habitbull +Bwalya Chanda,https://lh3.googleusercontent.com/-QzIgabpwv30/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM9utyS3D35UwFQNU7bnXsBVfZukg/photo.jpg,"this is the best app I have ever used to keep track of my activities.The greatest part is that each time you feel like giving up to achieving your objectives, it will always remind you, which is very motivating. I only have one problem though,having trouble with syncronising my progress, which means if the app was to be accidentally uninstalled and then reinstalled again, then all the progress I had saved would be lost, so this one reason I give you a 4 star rating instead of a 5.Good app though",4,0,1.5.11,2020-04-06 10:01:44,,,newest,com.oristats.habitbull +Taylor Czaplewski,https://lh3.googleusercontent.com/a-/AOh14GjFIbJBFgiE27I3C74FRFmXWudmWIjeZLlR_DDJ,Easy to use but it seems really basic,4,0,1.5.11,2020-04-04 13:50:58,,,newest,com.oristats.habitbull +Andrea D,https://lh3.googleusercontent.com/a-/AOh14GgsBOLTkU1XMZVxS6WubISi2m7ePDWEZ1GdqGf-0gA,Love it except I can't change the positive memes at the bottom anymore.,4,0,1.5.11,2020-04-03 14:46:50,,,newest,com.oristats.habitbull +Ashutosh Sahoo,https://lh3.googleusercontent.com/a-/AOh14Ghf3aMFiNVExPanVyqhRjXMFxSNi3S6QMzLTYrj,Great app... I am using it for a while... Functionality wise it the best in the market... It can get updated in terms of visuals and performance,4,0,1.5.11,2020-04-01 21:06:42,,,newest,com.oristats.habitbull +Srinath Venkatramanan,https://lh3.googleusercontent.com/a-/AOh14GgQn0TP_4xpd8aeAu9zgr2KsVtpjfwcP2t9-BWb3Q,UI/UX can be improved a bit more,4,0,1.5.11,2020-03-28 14:14:23,,,newest,com.oristats.habitbull +Lisa,https://lh3.googleusercontent.com/a-/AOh14GgPy-8GBSr31FnM9fdxTYz3mGHjg9-CmBk9WuIu,"I love it, simple and effective! Is it right that the motivational pics don't switch anymore? Mine has been stuck on the very same for a year now :(",4,3,1.5.11,2020-03-27 23:49:15,,,newest,com.oristats.habitbull +wly185,https://lh3.googleusercontent.com/-wQXf9wc2ZFw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP7UqAQwc1Fp7eP9XkzXH4J2QysqQ/photo.jpg,i like the design,4,0,1.5.11,2020-03-26 01:55:44,,,newest,com.oristats.habitbull +Hengul Akash,https://lh3.googleusercontent.com/a-/AOh14GjsXCauvvFGrT70bQ6vpYRmP6MWCjD8Y6Okj0ge1Q,Heyyy dear Developers..!! Love the app.. but have a issue in it.. IDK if it is only with me.. the App doesn't show any reminder after 1 day of setting a habit goal.. only 1st day it does..,4,0,1.5.11,2020-03-25 13:20:24,,,newest,com.oristats.habitbull +Jacques Frigault,https://lh3.googleusercontent.com/-Mf3XHCZcvaQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM7H3ahnHZGtPJpkwRAIujHwzPB3g/photo.jpg,"In general, this app helps me keep track of my habits, which is great; however, the app has quite a few bugs, even after buying the premium version, which is disappointing. The sync function doesn't work at all and I don't see any effort to fix these issues. This is one of the rare apps where I won't be giving a 5 star review.",4,12,1.5.11,2020-03-24 12:32:34,,,newest,com.oristats.habitbull +Charlie Victoria Taylor,https://lh3.googleusercontent.com/a-/AOh14GjbgEEZvZYuVYiau7hC-75KsEG6s4lhei1aJONqcg,"Very good and gets the job done, not the prettiest or well designed but certainly not the worst! It's exactly how it's pictured and works fabulously too. No crashing or issues here.",4,1,,2020-03-19 14:40:29,,,newest,com.oristats.habitbull +Chris Buchanan,https://lh3.googleusercontent.com/a-/AOh14GiQscQCikbYv0s_DsF2sDOjewXfFLLsQkutVjWx,"Good app, tracks nicely good widget. Sometimes notifications can be a bit flaky.",4,0,1.5.11,2020-03-19 10:07:41,,,newest,com.oristats.habitbull +Manish Shah,https://lh3.googleusercontent.com/-utDygoE6gwM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNbDruaqRPkJ_MbGxp8DeKcMDx-WA/photo.jpg,Extremely easy user interface. Helpsnin using the app more and note the goals.,4,0,1.5.11,2020-03-10 10:25:59,,,newest,com.oristats.habitbull +Jocelyn Cleta,https://lh3.googleusercontent.com/a-/AOh14GjIHlHCEUb0WVshaiC8ZESKCtylhZsW_WADel4I4Q,"Simple, easy to use.... makes it very easy to keep track of habits...",4,0,1.5.11,2020-03-09 23:20:35,,,newest,com.oristats.habitbull +David Whitmore,https://lh3.googleusercontent.com/-W-QwJHFCnTI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMANfOHiM21FOy9-yzeiLnURO86yg/photo.jpg,"I like the app. Have been using it for a few months now, and the widgets plus reminders definitely keep me on track. Only drawback I've found is the inability to sync my profile - always fails with 'sync failed, make sure you have a working internet connection'. Have sent in support request, but so far no response. That aside, the app works well, and I can still use it in 'standalone' mode on my primary Android phone.",4,8,1.5.11,2020-03-09 18:48:36,,,newest,com.oristats.habitbull +Ahmed Hossam,https://lh3.googleusercontent.com/a-/AOh14Gji5Vzrwpf9xUP3_fL3Jy46Vqv7WXNnhucyROR4k_c,It is all for me about habits i wasn't able to work on it but in this one it is so helpful just i have one issue i don't know if didn't find it or it is not at the program that if u need to remind your self more than one time in the day i just remind my self once a day i don't know if it in the app or not,4,0,1.5.11,2020-03-08 14:22:08,,,newest,com.oristats.habitbull +kanchan gupta,https://lh3.googleusercontent.com/-111pAGlwHXQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP2_lXYnkshqlARGEyRC2UGvDr6IA/photo.jpg,Amazing experience,4,0,,2020-03-07 16:30:16,,,newest,com.oristats.habitbull +G Jasminee,https://lh3.googleusercontent.com/--3511u0iZiY/AAAAAAAAAAI/AAAAAAAAAys/AAKWJJPjeNwXyhQ0Uds4beRrfpAmiAMnUQ/photo.jpg,"App is great. Helps me keep track of my daily habits. I like how the interface is simple and easy to use. However, I've been experiencing issues tracking my habits using the widget.",4,0,1.5.11,2020-03-06 01:57:45,,,newest,com.oristats.habitbull +Trololol Trololol,https://lh3.googleusercontent.com/-vet3YIPkKWM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP9Y7usyEQWJk4VwRJQOYVfj5MScA/photo.jpg,"The images with quotes wont change, good app tho",4,0,,2020-03-04 05:35:17,,,newest,com.oristats.habitbull +Boone Greenly,https://lh3.googleusercontent.com/a-/AOh14GjZeZE9qhhmpIzxI5D8HoWSXg3JN4rL_GQcEtZ0,Best habit tracker app i have used,4,0,1.5.11,2020-03-03 21:17:53,,,newest,com.oristats.habitbull +Wade Bedinger,https://lh3.googleusercontent.com/a-/AOh14GgnEfmUcBGyiImCaHWQmB3ewJL9eNiHpgtbXQt8Mw,"Fun and engaging way to track your goals and form better habits. I'm still not great at keeping up with it, but the app works well when I spend the time to pay attention to it.",4,0,1.5.11,2020-03-02 06:44:45,,,newest,com.oristats.habitbull +olsen jarvis,https://lh3.googleusercontent.com/a-/AOh14GhmdJKyLf9VCWvx1_Uh-tc8Jf6kExJcaELaeAt_,Easy to use and very flexible.,4,0,,2020-03-02 03:52:31,,,newest,com.oristats.habitbull +Toni Netherton,https://lh3.googleusercontent.com/a-/AOh14Gjq_CfDpdxZK_K02XWkBurCJfBiZcoz0ssi4jD9CQ,Great way to hold yourself accountable for setting goals,4,0,1.5.11,2020-02-26 19:58:56,,,newest,com.oristats.habitbull +DC Dc,https://lh3.googleusercontent.com/-7XToOuOUmZk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPnxkbOeqZ9gxKV3Vmz4C-o-DQMeA/photo.jpg,It's cool because it's gives me motivation to push myself and allow me to see my struggle in addiction for every day I fail.,4,0,1.5.11,2020-02-25 11:07:36,,,newest,com.oristats.habitbull +catherine,https://lh3.googleusercontent.com/a-/AOh14Ght1AqYWLJcczK99NQd1M0zlh8W9EDUeSwM6VtUzQ,Worked well for my purposes,4,0,1.5.11,2020-02-25 04:42:48,,,newest,com.oristats.habitbull +Conscious Nova,https://lh3.googleusercontent.com/a-/AOh14GiOhsz3RNbDLC8TI9VjdLQkBbz2xGoXD3026EiaIQ,"Nice app, would like further customization for habits, such as perhaps scores, the better you tackle a habit (healthier eating today than yesterday resulting in a higher score) this would make the app much more useful for me, otherwise great app",4,0,1.5.11,2020-02-24 18:19:11,,,newest,com.oristats.habitbull +Tanya Rodriguez,https://lh3.googleusercontent.com/-uHpFpuPkq9Y/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOZFsuBBCGhbR9OKjStkNshOwJb8A/photo.jpg,Love the reminder to log your habits,4,0,1.5.11,2020-02-22 04:30:58,,,newest,com.oristats.habitbull +Lana Banana,https://lh3.googleusercontent.com/-CJPGkwHtVbo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM40xduyGNmCMk6EI06w3UkGVmWsQ/photo.jpg,"Great app. Quite simple, it has a specific purpose, but does it well.",4,0,1.5.11,2020-02-20 11:46:11,,,newest,com.oristats.habitbull +Rod Goree,https://lh3.googleusercontent.com/a-/AOh14Gi_KTUcnoRtE6wdFgCe6KIz77N589LAn_uDsVBwMA,"Liked the setup so much that I quickly became a premium user. The widget alone is worth it. I love the flexibility the app allows in specifying when I can work on developing a habit. As I am frequently adding habits, I would like to rearrange habits in the list to make it easier to find them. Hopefully, this is an easy fix. Then this will be a 5-star app.",4,10,1.5.11,2020-02-18 17:33:24,,,newest,com.oristats.habitbull +Stefan,https://lh3.googleusercontent.com/a-/AOh14GhlM8_PkGY6BQPYwz8kfdGAK4DSgKTKWBpMPIwg1A,"A good starter app 4 collecting the data you need to better your daily life. Limited flexibility, in the free version, but sufficient four basic tracking of self-improvement efforts. Easy to get started. And so I can do without cute reminder and encouragement features, they are easy enough to toggle off.",4,0,1.5.11,2020-02-16 15:28:37,,,newest,com.oristats.habitbull +Abbey Pleiss,https://lh3.googleusercontent.com/a-/AOh14GgfFDfY8qCL5I-c7vbxfNdXgf1Q3E123j_qZ4Hrtg,Works well. The interface is a little odd. You have to scroll down to see all the graphs.,4,0,1.5.11,2020-02-13 21:47:46,,,newest,com.oristats.habitbull +Dina Mineeva,https://lh3.googleusercontent.com/a-/AOh14GiRqbe7sdMjEbxuWeydUjCYrYWbiHG7FV6U1trt7Q,"Удобный, наглядный трекер привычек с подробной кастомизацией. К сожалению, не всегда корректно срабатывают напоминания - во всплывающем окне не нажимаются кнопки, приходится переходить в приложение, чтобы отметить выполненное действие.",4,0,1.5.11,2020-02-12 21:41:56,,,newest,com.oristats.habitbull +Helga Bjarkadóttir,https://lh3.googleusercontent.com/a-/AOh14Gh6ZGjCesJcODGCz-CPcCGz1oqdgNZnZrj1Ic3oQw,"Havent been using it for a long time but so far so good. However, the paid version should have more features, such a costomizing your own categories. Also, the widget should be more customizable, such as font size.",4,0,,2020-02-11 14:45:21,,,newest,com.oristats.habitbull +Matthew Woods,https://lh3.googleusercontent.com/-QMlvbsyc7Q0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOXkbOCDRNtARw9FuBLAJWSpgZ6sQ/photo.jpg,"This app seems to work pretty well. The user forums aren't well managed, but remain useful. Habit Tracker has never crashed on me, but it does have the annoying habit of changing where in the UI has focus at the time you launch the app. Fortunately its easy to navigate.",4,1,1.5.11,2020-02-11 13:38:49,,,newest,com.oristats.habitbull +Timo Müller,https://lh3.googleusercontent.com/a-/AOh14GiT1FJz4RE1RoF0vMRRUq_Bto6rWKKgwIEenpzISQ,Simple app that provides all I need to track habits. UI could use a refresher.,4,0,1.5.11,2020-02-11 04:19:49,,,newest,com.oristats.habitbull +MAHESH ADEWAR,https://lh3.googleusercontent.com/a-/AOh14GihjK4SslJPOcy_446i0nHbtrFjX7tgot88GDFECQ,This is closest to my expectations,4,0,1.5.11,2020-02-09 13:57:49,,,newest,com.oristats.habitbull +Orla Harris,https://lh3.googleusercontent.com/-JiHhPEMQFeU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMuiylrD1o_QllLzCitMg6Q2GsgcA/photo.jpg,"I like this app, I have used it for a while now and it helps. Only reason for 4 stars is that the percentages are frustrating. I managed 122 days straight but it won't change from 98%. I think once you do the full 66 days you should get 100%. Also, would love to be able to highlight a day in the future as a milestone, just different colour so I can say 50, 100 days etc, as a motivator. It's great for a free app. We'll done to the devs on this.",4,10,1.5.11,2020-02-02 21:12:49,,,newest,com.oristats.habitbull +Charlotte Wolf,https://lh3.googleusercontent.com/a-/AOh14GgwxXOlqpAisJahazl0LQ4dMTGtoTJ9l9ThwkaL,"Love this app, but it only lets you keep track of only 5 habits at once, for more you have to buy premium, but other than that, its great!",4,0,1.5.11,2020-01-29 01:36:30,,,newest,com.oristats.habitbull +KML CN,https://lh3.googleusercontent.com/a-/AOh14GjYqE1IDM_BYQj_1-zFkBRPlTNRSNjwLxXezG4LJ5U,it works well for me,4,0,1.5.11,2020-01-28 01:27:30,,,newest,com.oristats.habitbull +Kailesh Ramjee,https://lh3.googleusercontent.com/a-/AOh14GiayZwfpH9ZmPCNTVht0e9FtNvVTLLAD794-jILvw,"Great app.. please add the ability to see when recurring habit is due.. or by automatically completing a habit which is not due, i.e. required once a week for example..",4,0,1.5.11,2020-01-27 17:30:56,,,newest,com.oristats.habitbull +Pavan kumar PK,https://lh3.googleusercontent.com/a-/AOh14GhKS9sbviNraxPqMu-4IQyh-UhTydkSrjiCUld-uQ,It would be a very good choice for those who want a daily base motivation to make your way to build on the habbit..try not to break the streak of your habbit goals at any cost from which you can gain the max from this app . Well built interface with motivational images loved it❤,4,0,1.5.11,2020-01-27 17:22:55,,,newest,com.oristats.habitbull +Pia van Heijningen-D'Souza,https://lh3.googleusercontent.com/a-/AOh14GiI_e4XkhTUTSlZ5mRsD2F0pFvOjVIuJqUklR8h3w,"Using for a week now, i like seeing the statistics and that the free version will track 5 habits.",4,0,1.5.11,2020-01-24 03:52:26,,,newest,com.oristats.habitbull +Pamula Sah Putri,https://lh3.googleusercontent.com/a-/AOh14GimQU1I219IdWzf3vqqpuMo-yLWkIKep7KlaM2nnQ,Its useful,4,0,1.5.11,2020-01-22 03:13:09,,,newest,com.oristats.habitbull +Paula Dodig,https://lh3.googleusercontent.com/-xe_nl1l6dfk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNRt-Mha4rqClObQJUPDnbFyFPliA/photo.jpg,Very helpful,4,0,1.5.11,2020-01-21 15:56:15,,,newest,com.oristats.habitbull +Fadhli Faizal,https://lh3.googleusercontent.com/a-/AOh14GhC3Gnbaw_owAWG-6M8LBoKxA5ORSZvBPTAdCzzPQ,Would be perfect if you also have pomodoro/timer to do each task,4,0,1.5.11,2020-01-21 02:55:43,,,newest,com.oristats.habitbull +Jazzy Jingle,https://lh3.googleusercontent.com/-8hOAt8e-_V8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMaxKMU23HWI96AYElsKQxu8lhdOQ/photo.jpg,Good visual reminder and nice to see patterns of habit breaking,4,0,1.5.11,2020-01-20 05:20:01,,,newest,com.oristats.habitbull +mark anointed,https://lh3.googleusercontent.com/a-/AOh14GiZ1RhLLlFazaoCqqUmK2a4s4sS6nKHpTk7DJu9,Just the best. This app has helped me improve at a time I was feeling very down and unable to do anything.. I only wish the notifications worked better.,4,0,1.5.11,2020-01-16 11:32:33,,,newest,com.oristats.habitbull +Brayo Nathan,https://lh3.googleusercontent.com/a-/AOh14GjrhHWQgWSVZlHxMiD61JtL8B9S8_qWZejsh-J6cko,Great app.,4,0,1.5.11,2020-01-15 16:02:47,,,newest,com.oristats.habitbull +Janice Silk,https://lh3.googleusercontent.com/-iZFcmjk-vyI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMdraT8XMWfRWcRWe649HxX0jRMCg/photo.jpg,Easy to use.,4,0,1.5.11,2020-01-13 22:00:46,,,newest,com.oristats.habitbull +Ramblin' H,https://lh3.googleusercontent.com/a-/AOh14GjKocDd4uswWvzesawIOIbApKVrkQOAW2t1F5Pw5g,Does what it promises.. tracks habits 👍,4,0,1.5.11,2020-01-13 16:09:30,,,newest,com.oristats.habitbull +blackbear rawr,https://lh3.googleusercontent.com/a-/AOh14GiT5fp4J7F6nrxbrPcY68vy-sCfsj1lhWKK8zRuAA,"This has been very helpful with tracking my habits for hopefully having remission with my fibromyalgia . It sucks that there is only 5 habits you can put in, but if you think about it.. 5 habits is more then enough to start trying to break. Go any more and you overwhelm yourself",4,0,1.5.11,2020-01-10 04:14:39,,,newest,com.oristats.habitbull +Leo B,https://lh3.googleusercontent.com/a-/AOh14GglkD7OMiJaGfm2ejIZEkuDSZ16N_dbqUME0UXOmCQ,"Good tracker, but with subscription based model",4,0,1.5.11,2020-01-06 15:55:48,,,newest,com.oristats.habitbull +darshan nair,https://lh3.googleusercontent.com/a-/AOh14GgShd0i91izG6hjn3runtz6a7duLkP7iNZYzSjsaQ,Great app but I would prefer some changes in its interface.,4,0,1.5.11,2020-01-05 18:09:12,,,newest,com.oristats.habitbull +LIM CHIA YIEN,https://lh3.googleusercontent.com/a-/AOh14Givqe1re9nmQfktXXDpxClM81cldZ0OqdNhLiUWRA,Why I unable to sync the apps in my phone?,4,0,1.5.11,2020-01-05 07:19:40,,,newest,com.oristats.habitbull +Amone Fernando,https://lh3.googleusercontent.com/-Q-oTxOKpmU8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOoY2S3t3oKeQUGZ7e1eCE4OliXFA/photo.jpg,Its the best app when it comes to tracking your progress but one problem thats why i didnt give it a 5 star when you set reminders it doesn't work maybe on my phone but it doesn't send you reminders.. besides that its really a good app to kick start 2020,4,0,1.5.11,2020-01-03 11:39:20,,,newest,com.oristats.habitbull +Nishant Kumar,https://lh3.googleusercontent.com/-X0CrXyDIxGk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOA06i1WBfbXxI-oz7HIIQcOJhrKw/photo.jpg,nice app,4,0,1.5.11,2020-01-02 15:18:31,,,newest,com.oristats.habitbull +Jamuna Jawahar,https://lh3.googleusercontent.com/a-/AOh14GjjWNWepXE0fIgqSkISSZLYS2rGNoDecgKrK2A1QA,"I'd give it 5, but drropping a star because it shows useless notifications every time I open it",4,0,1.5.11,2020-01-02 15:03:17,,,newest,com.oristats.habitbull +Salsabila Setiawan,https://lh3.googleusercontent.com/a-/AOh14GjPbUBdIhIuksy__aBwE6Wyyn6l_a-eGfCpZ0ujwQ,I have to uninstall it because i need more habits to track but the free version cant provide more than 5 habits.,4,0,1.5.11,2020-01-01 07:39:53,,,newest,com.oristats.habitbull +shankar e,https://lh3.googleusercontent.com/a-/AOh14Gi5VAfMjk7NcyOcmsxL8q5mKm7r01t2udBHaRgFzQ,The percentage calculation and the number of days successful in a week/ month seems confusing. Otherwise it's a really good app.,4,0,1.5.11,2019-12-29 04:31:02,,,newest,com.oristats.habitbull +Vicki Esche,https://lh3.googleusercontent.com/a-/AOh14GjohIEIAXexNOg2-QSOLnb2yv2OZ511o98oCn0amQ,"It's a good app. I like the encouraging reminders and memes each day. I wish there were just a couple more openings for tracking, but overall it's good. It doesn't eat my battery like the last one I tried. In fact. I'm readjusting to use in the coming year.",4,1,1.5.11,2019-12-29 03:26:24,,,newest,com.oristats.habitbull +Pauly Gillespie,https://lh3.googleusercontent.com/a-/AOh14GgCWmrExXWcPSmCaaB2Uu0Czu-kEbVFSJbkDV6w4A,"Great habit tracking tool. The widget on the home screen is a great size so I can see quickly how well I'm doing, and the options at set up are thorough. I'm tracking all sorts of things and it's easy to see how I'm doing. Highly recommended. Only concern is I'm having trouble getting a response on a _potential_ issue I have (not sure it's real yet, but if it is I'm concerned). Otherwise five stars.",4,35,1.5.11,2019-12-28 18:30:57,,,newest,com.oristats.habitbull +Ezzat Al-Saffar,https://lh3.googleusercontent.com/-AkGDT8LAa8w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNdZdUcGblr2oiDjERJYwcxQyHlnw/photo.jpg,"Recording the amount of when the day is successful, need to be easier",4,0,1.5.11,2019-12-27 09:51:04,,,newest,com.oristats.habitbull +Cao Giang,https://lh3.googleusercontent.com/a-/AOh14Gjh0SkN0T8UJWWpqZcxqjsXJ8iABgfxKFOlUnys,I think it's really helpful but I want some more functions. However I still dont know what exactly they will be. Make me surprised :))),4,0,1.5.11,2019-12-26 14:52:39,,,newest,com.oristats.habitbull +Shri Balaji,https://lh3.googleusercontent.com/a-/AOh14GjJkbpO88knsyUbvcADqJ_MHn7UFaUk5ivrk97K4Q,👍👍😎😎😎,4,0,1.5.11,2019-12-26 06:10:53,,,newest,com.oristats.habitbull +Jin Ny,https://lh3.googleusercontent.com/-RJFxCV4atS8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOpCcHxsjUVF3N2ZHigKPFsrPbUag/photo.jpg,I like the app!! I even paid premium for it But can you please make it connect in to the app when I press the widget?,4,0,1.5.11,2019-12-24 00:00:31,,,newest,com.oristats.habitbull +Trokon Johnson,https://lh3.googleusercontent.com/a-/AOh14GhtY-LRVZhGfwKY6076_qcyWGHtAsJjyPh4F5We,"Really good at what it does, but I've asked for support for what seem to be glitches transferring data between devices twice and gotten nothing back. That's frustrating.",4,0,1.5.11,2019-12-21 11:28:24,,,newest,com.oristats.habitbull +AYACHE Abdellah,https://lh3.googleusercontent.com/a-/AOh14GhLz0Ck5WtpAXZYb_8ZwmraBIYG9uWoRN1xu9AR,Great app verry helpfull and can be improved more.,4,0,,2019-12-17 19:20:35,,,newest,com.oristats.habitbull +Deepak kumar pradhan,https://lh3.googleusercontent.com/a-/AOh14Gh4sHlA-ypk9_sNmY1XB2IyBQTlnJ4xD-he9oofuw,I dont get notifications regarding my daily goals.,4,0,1.5.11,2019-12-16 11:15:05,,,newest,com.oristats.habitbull +nate corbitt,https://lh3.googleusercontent.com/-jydietZitX0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOjFqsmPc76cCrxuLxS1y8IglGOgA/photo.jpg,Very helpful,4,0,1.5.11,2019-12-15 17:25:27,,,newest,com.oristats.habitbull +Michael Nafziger,https://lh3.googleusercontent.com/-fZsjeUhlYOM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMz4o0Nq0mGaa9bgKX-_Lsw2pCgPA/photo.jpg,Great but can be annoying with notifications and also is not quite as customizable as I'd like. Definitely helps to track your habbita though!,4,0,1.5.11,2019-12-15 12:09:22,,,newest,com.oristats.habitbull +Bhaskarjyaa Chatterjee,https://lh3.googleusercontent.com/-kQYMtLyXB3A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO7NI5qtFlEPXa2Jc7PhBMSflmWoA/photo.jpg,Goooood app.Helps to get in track.,4,0,1.5.11,2019-12-15 07:54:21,,,newest,com.oristats.habitbull +Lambels Starkiller,https://lh3.googleusercontent.com/a-/AOh14GjTTq9OV19qangOTJUPvVvlYk4OB8TlGNKdiAhW6g,Overall great app. Love it!,4,0,1.5.11,2019-12-14 08:04:44,,,newest,com.oristats.habitbull +jairo zetino,https://lh3.googleusercontent.com/a-/AOh14Giu4SIgooB1wG0l1xGLPioB5q2hsH_C1MNAWS2cTQ,Pretty good app to keep track of your bad habits you want to quit,4,0,1.5.11,2019-12-12 17:28:58,,,newest,com.oristats.habitbull +Amitabh Chandra Prakash,https://lh3.googleusercontent.com/-_ZySH3MhWIU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO2BbhYF7gOVNJIgVGG8fPTTboaIg/photo.jpg,Good Experience,4,0,1.5.11,2019-12-12 03:18:58,,,newest,com.oristats.habitbull +Aziz Bhaijee,https://lh3.googleusercontent.com/a-/AOh14Gg2oYMp1qmICr2jjjnVi50FylVbgui8JsZBGpP95Q,It's a great app for tracking habits. So far I find that purchasing the premium app has been worth every penny.,4,0,1.5.11,2019-12-07 12:15:02,,,newest,com.oristats.habitbull +Terry Grignon,https://lh3.googleusercontent.com/-UtkUtvERoSI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNH3qDrJTa0TaVNWPYuwAsrLnTuRQ/photo.jpg,Very useful app for establishing good habits: I like the weekly view in particular. Also like being able to set the level of chatter and reminders done to the minimum in the free version.,4,0,1.5.11,2019-12-06 20:28:26,,,newest,com.oristats.habitbull +PJ Frampton,https://lh3.googleusercontent.com/a-/AOh14GhpuqDy4UScEiJ4JriBA9ZhI0ufnaUFG-FO4YJ57w,"I enjoyed using Habitbull in the past and decided to give it another go. Not a lot has changed. I do like the app, very simple to use and gives great reminders.",4,0,,2019-12-04 14:27:17,,,newest,com.oristats.habitbull +Julie Hudson,https://lh3.googleusercontent.com/-Kl2bV1An6NE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO9wx8zJ52muY-FRCL8xS0G85ALnQ/photo.jpg,"I've only been using this app for a week or so but I love it. It's easy to set up and use, and I appreciate that it gives me a percentage of my successful days.",4,0,1.5.11,2019-12-04 13:30:06,,,newest,com.oristats.habitbull +mariam TOMA,https://lh3.googleusercontent.com/a-/AOh14GhUH1RpZdjofRm2ViwO-RBFZ8RA2wQyEhaIEYZNdVs,I like the app. It is very practical and quick to apply but you have to purchase more targets if you want and there is no inspiring pictures I think I should pay for it too.,4,0,1.5.11,2019-12-03 04:23:13,,,newest,com.oristats.habitbull +Parth Maheshwari,https://lh3.googleusercontent.com/a-/AOh14GgVUOkaAyfFR1mqaVjvZsXobl-4THdBNsKhsKjQig,Better than most. User friendly.,4,4,1.5.11,2019-12-02 15:03:35,,,newest,com.oristats.habitbull +Unmay Yeole,https://lh3.googleusercontent.com/a-/AOh14GhfAD2rg4DETpIBcEVrSc9zXUvz_ogKL2MKgaNDlw,good,4,0,1.5.11,2019-12-01 08:36:39,,,newest,com.oristats.habitbull +Micah Larsen,https://lh3.googleusercontent.com/a-/AOh14Ggr89AP0WAowvQffZhszO22Q987loA1VPuc6yJJ7A,I love the app. It has helped me a lot by helping me easily track my habits. I gave it a four because I sent them an email months ago they never answered.,4,0,1.5.11,2019-11-30 21:16:25,,,newest,com.oristats.habitbull +Lilly Carmichael,https://lh3.googleusercontent.com/a-/AOh14GiNOSlcaRLisKU-6mcMm1ZmjcggdmcihWRKZM5Jiw,It's pretty good. I wish you could change the type of selector though (yes/no vs x times a day) after habit creation. It seems there is no way to do this yet.,4,0,1.5.11,2019-11-30 06:43:53,,,newest,com.oristats.habitbull +Christopher Coleman,https://lh3.googleusercontent.com/a-/AOh14Gjdx7OMuWCX8-IUIoUrfvZnQ2RzXQsZjVL5upxJ,"Best habit tracker I've used. Notifications aren't consistent, though.",4,0,1.5.11,2019-11-29 22:30:53,,,newest,com.oristats.habitbull +rohit rao,https://lh3.googleusercontent.com/-Q_yPkFLMlzM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPy-mlHyLZlxkJ3xWdVMmIUJ9t7KA/photo.jpg,Really helped me up my discipline,4,0,1.5.11,2019-11-28 15:40:52,,,newest,com.oristats.habitbull +Stefanie Lorincz,https://lh3.googleusercontent.com/a-/AOh14GjPmj-LQ40GcizuKNPPBp0rTPTcNaESaPe0AQ3kBQ,It's a good way to keep track of your habits. Habits are easy to change if you decide to track something different.,4,0,1.5.11,2019-11-27 18:06:29,,,newest,com.oristats.habitbull +Iago Dark,https://lh3.googleusercontent.com/a-/AOh14GjsnNL2Ace4ye39oljfsCO0cLM4nJbCPgD7q2eVxQ,Goood,4,0,,2019-11-27 15:03:37,,,newest,com.oristats.habitbull +Shaima Alamri,https://lh3.googleusercontent.com/a-/AOh14GhmyKSY6VqKj58TLA3rT3ZdKPD3NoIzR8nRstZs,Very helpful.. Please add more habits for the free version,4,0,1.5.11,2019-11-26 16:17:03,,,newest,com.oristats.habitbull +Shiela Abeleda,https://lh3.googleusercontent.com/a-/AOh14Giy8oUVocddG4jXXnWpB0VxqSG7RBKfZiy8YJzP,"Great app, but only 5 habit is free 😏",4,0,,2019-11-25 09:33:09,,,newest,com.oristats.habitbull +Lindsey Douglass,https://lh3.googleusercontent.com/a-/AOh14GjGKbrp1wsk9Ievozt4KS4GQc2D5B4UbwnqY0E7rQ,"The only suggestion I have is to make it so if you deactivate then reactivate a habit, it doesn't take your percentage down as if it was active the while time.",4,0,1.5.11,2019-11-23 23:29:21,,,newest,com.oristats.habitbull +Teia Tacconi,https://lh3.googleusercontent.com/a-/AOh14GjHireF39hL6espKMWm-HkjLqFKfbi72wviY6j0,Love the flexibility and options to track habits,4,0,1.5.11,2019-11-23 21:16:13,,,newest,com.oristats.habitbull +J Hamilton,https://lh3.googleusercontent.com/-3pjs_z1qD28/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMiyzrTpGszHs8xfhTgnZ7FH1zWwA/photo.jpg,So far so good 👍,4,0,1.5.11,2019-11-22 20:38:17,,,newest,com.oristats.habitbull +Edwin Kaduki,https://lh3.googleusercontent.com/a-/AOh14GgD6fKwW0lToobbaV2k4h2ZHF-1zunBa8KQa1jMog,It's been good using this app to track habit formation,4,0,1.5.11,2019-11-18 18:27:09,,,newest,com.oristats.habitbull +Lisa Spence,https://lh3.googleusercontent.com/-dxStM94XoBQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM-SNTZAfFnF63gL5HjUXIybtaQTw/photo.jpg,Great app. Life changing if used properly. Easy to use. I have paid for premium but not getting my reminders popping up with notifications for app on. Can you help?,4,0,1.5.11,2019-11-16 09:24:31,,,newest,com.oristats.habitbull +Charlene de Vries,https://lh3.googleusercontent.com/a-/AOh14GimBrFh5CSqVttUmrsK3WFFFpdw0it3ReeNuZYQ,"I love how easy this app is to use, the only disadvantage is that you can track only 5 habits for free. If you want to use it for more you have to buy the pro. But what it does, it does well.",4,1,1.5.11,2019-11-16 08:16:43,,,newest,com.oristats.habitbull +Harleen Kaur,https://lh3.googleusercontent.com/-AqeCPmWqTSU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMNup3d8hNoZ5eOexZ3Z-bG1yIKKQ/photo.jpg,I been looking for such an app and finally found it. It's really nice and I can keep a record of my activities on daily basis.,4,0,1.5.11,2019-11-16 03:56:41,,,newest,com.oristats.habitbull +Michael Green,https://lh3.googleusercontent.com/a-/AOh14Gg4OfDecmyX11WNq8iOkd39p_grF5JvUYbvKvLY,Just what I was looking for. It's simple which is all it needs to be.,4,0,1.5.11,2019-11-15 08:36:39,,,newest,com.oristats.habitbull +Karmen P,https://lh3.googleusercontent.com/a-/AOh14GiqtYmidMX3JBtf1z9gun8LLZtVpasFo5CtvxG_tr0,"This is by far my favorite habit tracking app (and I've tried many). I like the weekly view. (I have an unusual use for this app.....I use it to track my kids' school work and I like the weekly view so I can see what they have completed during the week). However, I'm not sure if this app is still being supported? The last update was over a year ago and they do not respond to inquiries. But the app does still work well.",4,8,1.5.11,2019-11-14 19:30:50,,,newest,com.oristats.habitbull +Mercedes Hernandez,https://lh3.googleusercontent.com/a-/AOh14GjtFprb-jo662Yvdi8F4K8r0tHyYm6cSBJFRqPf,I really like this app. Some things could improve like the quote box fitting the whole quote in it. And the colors being more distinguishable. Thanks!,4,0,1.5.11,2019-11-13 02:28:24,,,newest,com.oristats.habitbull +Joni Waybright,https://lh3.googleusercontent.com/a-/AOh14GhBFo3NIEMT9LwZn8DWmrbXjszxsCJEsfUW6zCk,this is helpful for accountability,4,0,1.5.11,2019-11-12 18:19:13,,,newest,com.oristats.habitbull +Simon Nilsson,https://lh3.googleusercontent.com/-Eoq9uQ3dHQA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOEIovxg3NBMFUrmKKTj7oBbKRZgg/photo.jpg,Great app for succeeding with your good habits. The widgets are especially useful since you are constantly reminded if you haven't completed one of your habits. I also like the discussion page but I miss some sort of timestamp to show when the post/comment was posted. Sometimes you reply on a post that has been dead for quite a while without knowing it.,4,10,1.5.11,2019-11-11 10:20:48,,,newest,com.oristats.habitbull +Jim Starnes,https://lh3.googleusercontent.com/-0scSgF8uvFQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO_cQv9bM7qH66Cs1RpTql5ge56Ew/photo.jpg,I have used several habit tracking apps and this one is the best. It is easy to use and I like the way it gives my percentage success rate and my streaks. A lot of the other apps wanted a monthly subscription fee. I paid for the pro version after using the free version since it was a one time payment.,5,0,1.5.11,2020-04-03 16:04:39,,,most_relevant,com.oristats.habitbull +Blanders,https://lh3.googleusercontent.com/-rk605U8wiO8/AAAAAAAAAAI/AAAAAAAADkY/AAKWJJPBgvwlJEjDa_GVTMjVowzSudpsSg/photo.jpg,"Great habit tracking app. The only things I think could be improved are: goal dates not automatically pushing back to match the day you edited a habit. And being able to edit how you want to track a habit if you change your mind. Maybe I missed something, but it seems like you have to recreate a habit in order to change how to keep track of it (ex. Yes/No or by keeping count with numbers). I highly recommend this tool though, it's a great place to start keeping track of habits!",5,18,1.5.11,2020-02-26 18:46:13,,,most_relevant,com.oristats.habitbull +Michael Kline,https://lh3.googleusercontent.com/a-/AOh14GgliZZDDQ08HftkvP1iyqqVbTHT2O1B---rsAIR1Q,"Easy to set up and daily tracking is very simple. Visual display is great. If a habit is set for every other day, or with some other gap in between, the app shows a chain with open circles rather than solidly-colored circles. Likewise, if the goal is a specific number of minutes or repetitions, it color-codes the entry differently depending on whether you met or did fewer reps than the goal. Only using the free app for now but plan to upgrade.",5,1,1.5.11,2020-02-03 15:51:29,,,most_relevant,com.oristats.habitbull +Joseph Morel,https://lh3.googleusercontent.com/a-/AOh14GjG7vIu2TTHEnFvaXnoV3zCZS8N_OVPIaoC3oxCUQ,"Superb app. My one piece of advice for others would be to set low, reasonable targets for yourself and slowly increase them over time. Much better to start going to the gym twice a week, succeed and increase from there than to set the goal of 7 days a week and fail and become disheartened when you dont hit it. App is superb though.",5,3,1.5.11,2020-01-07 10:45:16,,,most_relevant,com.oristats.habitbull +Adam Rogerson,https://lh3.googleusercontent.com/a-/AOh14Gj9iG0wAH9ZwTmj-WW511ocSiHm_DUP-z5-kYttdw,"Excellent app, excellent widgets. I use this with widget as my daily habit manager. Could do with an update and could have other features but what it does (help maintain habit streaks) it does better than any other app I've found. I bought premium one off to use the apps.its worth it for me. Don't usually buy subscriptions but a couple dollars once off worth it. Free to use though, only widgets are premium",5,3,1.5.11,2020-02-20 10:26:19,,,most_relevant,com.oristats.habitbull +Titus Davis,https://lh3.googleusercontent.com/a-/AOh14Ghf93oSpTZ2nBWfNMVhDqMs5mj1J21vemsvauPvng,"Tracking my progression on goals has never been easier! This app is so simple, yet it's amazing and I love that you can share your progression with friends for accountability. The only thing I don't understand is the various greetings/notifications they send you in different languages.",5,5,1.5.11,2020-02-13 18:39:59,,,most_relevant,com.oristats.habitbull +Kimberley Seitz,https://lh3.googleusercontent.com/a-/AOh14GjYWoTHtG7ZSScAtakbvuQZRjm8QvmlhGsrGZERcw,This is a very easy to use app which allows you to customize the habits you're trying to change or add. It allows you to set floor and ceiling goals within each habit and identifies your streaks. It's fantastic!,5,0,1.5.11,2020-01-28 22:27:47,,,most_relevant,com.oristats.habitbull +Louis Mace,https://lh3.googleusercontent.com/a-/AOh14GhClPOMVMP3eOqWdAuN9vQGT60murbodfylL56fSyA,Great tool for tracking habits. Simple to use and it does as advertised. I like the daily reminders to update the calendar. It helped with my motivation to keep up the efforts!,5,0,1.5.11,2020-02-07 03:00:29,,,most_relevant,com.oristats.habitbull +Pepper Conklin,https://lh3.googleusercontent.com/a-/AOh14GiOcVxIob85Zhh3Dunfxm4Vz351SvL1dudEXJTtqV4,"So far, so good. I've been using it for about a week. It's easy to set up habits, a schedule, and reminders. Checking things off and seeing my success rate is very motivating to me. I upgraded. It's a one-time fee of only $7.99.",5,0,1.5.11,2020-01-29 13:16:54,,,most_relevant,com.oristats.habitbull +Marina Orange,https://lh3.googleusercontent.com/a-/AOh14GiBGoRIz2MaxBfijuWQ6mntURYh1RGyIldjHJTf0Q,"This app has been great for keeping my goals on track! I have the free version only. Supposedly, the paid version does not sync as it's supposed to so I would be wary of that if you were considering going premium.",5,0,1.5.11,2020-02-06 19:22:17,,,most_relevant,com.oristats.habitbull +Benjamin Goes,https://lh3.googleusercontent.com/a-/AOh14GjgNDhw9l-zM5laUYfdPPcZq22_mflNasJMw45WpA,I downloaded a bunch of habit-tracking apps to test them out before New Year's. Habitbull seemed the most intuitive and straightforward. I really like the design (shows the streak on the calendar) and the fact that it nudges you if you don't check in during the day. There's even a community function where you can share the struggle with others doing the same thing. Great app.,5,20,1.5.11,2019-12-18 03:35:48,,,most_relevant,com.oristats.habitbull +Akash Karia,https://lh3.googleusercontent.com/a-/AOh14GhHMfL4qXa2ViBrPaMKXYq4IgQPudndh7FRX1glvw,"My favorite habit tracking app! I am the author of multiple books on how to build better habits, and regularly speak at conferences on how to create behavioral change. This app is my secret tool for keeping myself accountable - and I recommend it to all my clients. Simple and easy to use. The one thing that would make it better would be if it had some ""reminders"" / notifications. Otherwise, it's close to perfect",5,11,1.5.11,2019-12-24 12:18:41,,,most_relevant,com.oristats.habitbull +Brian Henson,https://lh3.googleusercontent.com/a-/AOh14GiuWMF6ISiIMI5I7xqjRSpMJM4dD1vf8zcJo8Of7Q,"Super easy, and has changed my life in a number of very positive ways. Excellent tool. Buy the full version if you are able. Certainly worth it.",5,1,1.5.11,2020-03-18 17:41:57,,,most_relevant,com.oristats.habitbull +Simen Eriksen,https://lh3.googleusercontent.com/-de42RhuBr3k/AAAAAAAAAAI/AAAAAAAAACw/AAKWJJOvgX3HpY38G2pNjpM7JR9w9_HNPA/photo.jpg,"Super useful app! Really nice visual way to keep track of what you're doing that you shouldn't be doing, and what you're avoiding that you know you should be doing! I'm using it to stop biting my nails, which I've tried to stop doing for probably 15 years! Also keeping track of when in sticking to my sleep and diet schedule, and a bunch of other habits I'm trying to establish. It's important to have a way to hold yourself accountable! And remember to be honest with yourself!",5,12,1.5.11,2019-10-18 12:10:55,,,most_relevant,com.oristats.habitbull +adioz. kr. sh.,https://lh3.googleusercontent.com/a-/AOh14GhIvyHAbQ4kRFBDof-phJYWiK0FNxx8JVKDaCKVEw,Nice application you can update everyday... The progress report gives extra motivation which we can see everyday... We can set the goal/target what we want to achieve. There is forum too where people will help you... If you have any doubt.,5,0,1.5.11,2020-01-12 16:54:08,,,most_relevant,com.oristats.habitbull +Bernadette Delaney,https://lh3.googleusercontent.com/-5voZIOhRWu8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNCn93fAaRbXPLjyoep8XU5L4F4Ug/photo.jpg,"Easy to use. Love that the % automatically updates. Free version only has 5 trackers, but honestly it's hard to focus on more than that.",5,0,1.5.11,2020-02-14 14:30:49,,,most_relevant,com.oristats.habitbull +Susan Nolan,https://lh3.googleusercontent.com/-OWACeN9W6s8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOVhDX5oanj3zVRweTljEyJiquySA/photo.jpg,"KISS! Easiest way to keep on track is to make tracking simple and encouraging. It's easy to set up. Features allow for various forms of success - yes/no, 5x/week (any days), number per day - and you get to decide. Worth a shot. You might even adopt that new habit!",5,1,1.5.11,2019-11-13 20:49:26,,,most_relevant,com.oristats.habitbull +Anik Chakraborty,https://lh3.googleusercontent.com/-quhjkZxmn48/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMAzzFIbpvqGxIy__h3jejJP9ueLg/photo.jpg,Best app for tracking habits...could be better if it could be connected to the alarm and a better reminder system would have helped...otherwise this app is really helpful tajnk you sooo much guys!!!,5,0,1.5.11,2020-02-15 06:13:02,,,most_relevant,com.oristats.habitbull +Valeria Acuña,https://lh3.googleusercontent.com/-5_IcyBpe17M/AAAAAAAAAAI/AAAAAAAAAEw/AAKWJJPWUVbGLAwrosmFNvwTxYcRrQYOmw/photo.jpg,"Best app ever! It keeps track of your habits and, if you turn on reminders, it also keeps you accountable of the goals you set. Simply genius!",5,0,1.5.11,2020-02-18 14:02:48,,,most_relevant,com.oristats.habitbull +Kathleen Martin,https://lh3.googleusercontent.com/a-/AOh14Gj34Yjf7lJL_c5d668VieZ689fSUUN_HFtcatI9vA,"The best habit tracking app I've ever used. Set your own goals, no comments that make you feel guilty, and minimal annoying reminders.",5,0,1.5.11,2020-03-27 22:21:08,,,most_relevant,com.oristats.habitbull +Rebecca Van Damm,https://lh3.googleusercontent.com/a-/AOh14GgbEA4VjzsUMbGposV3rsXR9Hvz59PY0rDWtaBoXQ,It's a great little app. The free version allows you to put in up to 5 habits. You can customize the colors and order and you can see your progress. I like it!,5,0,1.5.11,2020-01-12 02:03:11,,,most_relevant,com.oristats.habitbull +Lee Choctaw,https://lh3.googleusercontent.com/a-/AOh14Ggx4EZ5kdcVh3F-EKWEaHDP2VChyGytRQI9WR-xiw,I've always had issues with consistency and will power. It's very helpful when can see my progress. It even tracks the percentage of your success.,5,0,1.5.11,2020-02-02 01:02:12,,,most_relevant,com.oristats.habitbull +harini rajendran,https://lh3.googleusercontent.com/a-/AOh14Gh_psNOOxa4QWGNUrE6ZOpsDk8lU_83KeZa2-F75ZY,This app has helped me develop and stick to many useful habits. Highly recommend it to anyone who wants to develop a new habit but is finding it difficult.,5,1,1.5.11,2020-03-19 12:31:46,,,most_relevant,com.oristats.habitbull +Cheri Haggard,https://lh3.googleusercontent.com/a-/AOh14GgOR1rvOJYpAUNuVZK4dlIyGKAI-KKsA3dLct3eYg,"I like being able to look at my goals each day, review how I am doing, focus in the most important one for this month. I'm seeing improvement!",5,0,1.5.11,2020-03-19 18:01:02,,,most_relevant,com.oristats.habitbull +Vale,https://lh3.googleusercontent.com/a-/AOh14GhtutqLm2RdbgJRaFLMLKfKzqk9_E6lwdekuFm-Wg,"it's a great up, easy to use and very helpful if you want to create new habits and track your progress!",5,0,1.5.11,2020-04-02 04:30:58,,,most_relevant,com.oristats.habitbull +Rachel King,https://lh3.googleusercontent.com/a-/AOh14Gj8TXyPcAgJ0kl1Xtxhcxj9Bkd4sErHVpUaBMONsg,This app is incredibly helpful. I need to take medication every morning and this app helps me make sure I take the tablet. It helps me build the habit of taking it.,5,0,1.5.11,2020-03-02 10:40:59,,,most_relevant,com.oristats.habitbull +Liah Jacksi,https://lh3.googleusercontent.com/-1ZqBVgysqN4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMOXlL9Mk_sSgVlv0y8JJznssJEow/photo.jpg,"I've been looking for an app that can do what HabitBull does and I'm so glad I finally found it. It's a great, easy to use app and the messages you get are so cute.",5,0,1.5.11,2020-03-12 20:01:47,,,most_relevant,com.oristats.habitbull +Amie Tiday,https://lh3.googleusercontent.com/a-/AOh14GjrcEziyhSoPnIUKNHoRr7-ZyItQeMpo8oVCUxmVA,"I've never been so pleased with an app like this. It designed well, easy to navigate, and keeps me motivated to improve my life!",5,0,1.5.11,2020-03-27 18:36:13,,,most_relevant,com.oristats.habitbull +Rebecca Ploettner,https://lh3.googleusercontent.com/-RQ3JQAdnaxQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMpzjPvFESDW87KzhH4Ec2fCLnWXg/photo.jpg,Great to track simple stuff. I track exercise and days I stick to my diet. It is helping to keep me honest without much effort.,5,0,1.5.11,2020-02-09 03:06:28,,,most_relevant,com.oristats.habitbull +scot maupin,https://lh3.googleusercontent.com/a-/AOh14Gh2IOIZrbOgAQUuEppm8JkKlRv6feFka9R5qJMe0Q,I love this habit app and the customization ootions. I use it to track exercise and also build up/break habits im trying to start/stop.,5,0,1.5.11,2020-04-04 16:36:02,,,most_relevant,com.oristats.habitbull +خليل عبد الله بن أنور Mughal,https://lh3.googleusercontent.com/a-/AOh14GgGq1o-S3DLF49oxU6daC2otq-rWCtahVDsg6KieQ,Great app. Good reports and tracking. UI is simple and does what it needs to do. Keeps it productive,5,0,1.5.11,2020-01-14 06:58:52,,,most_relevant,com.oristats.habitbull +Eric VanKirk,https://lh3.googleusercontent.com/a-/AOh14Gjx1mQrf4uY1Lw70Nrxo0HBliTH26I1wtvlMuEZ,Wonderful app that simply shows your progress of creating habits. Love the visual layout that helps he stay on track...,5,0,1.5.11,2020-03-29 01:35:30,,,most_relevant,com.oristats.habitbull +avenie mavadia,https://lh3.googleusercontent.com/--mBl-C_8BUI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNZLaHEwp_Lku0oQjFwD1d5AQifNg/photo.jpg,Really user friendly - effective in keeping track of your habits and achieving your goals. 100% recommend,5,0,1.5.11,2020-03-18 15:18:48,,,most_relevant,com.oristats.habitbull +Mary Gordon,https://lh3.googleusercontent.com/a-/AOh14Giwa1lFLTbqoDye5d1_tlE-K7LYcXKGDxAcuzb43w,Great app for tracking habits with tons of options! Only thing I can't seem to do is set a habit with a start date in the future. Is there a way to do this that I am missing? I'm a planner and like to set things up ahead of time. Otherwise it's fabulous!,5,0,1.5.11,2019-12-15 01:11:16,,,most_relevant,com.oristats.habitbull +Sterling Smetana,https://lh3.googleusercontent.com/a-/AOh14GgzzcH3WRxDFiWLgrRWVbGao-N32lVftfBRsqo6hw,It does exactly what it should do in a very clean yet detailed way. Excellent app that has helped me conquer addiction. I love it,5,0,1.5.11,2020-02-06 20:09:44,,,most_relevant,com.oristats.habitbull +Raquel C.,https://lh3.googleusercontent.com/a-/AOh14GhENlEXRQj_K3U7YnW3Svb-HFztDNmbPjeu3vryyQ,I love it so far. Bummer to have to pay for premium but it's not a bad price. I am only doing the minimum 5 habits because I don't need that many. :) it could use a reminder notification 🔔 Update: still love this app. It's helped me keep track daily.,5,2,1.5.11,2019-12-06 18:10:57,,,most_relevant,com.oristats.habitbull +Kelechi Gibbons,https://lh3.googleusercontent.com/-U9IcAtqOH6w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNTdKj9kbVEDb498ZTrp0bJ1_xCYA/photo.jpg,This has been really helpful keeping me on track. Having to mark your goals off each day has kept me more motivated than usual.,5,0,,2020-01-25 21:47:59,,,most_relevant,com.oristats.habitbull +Tommy Liikamaa,https://lh3.googleusercontent.com/a-/AOh14GjAxylw50Jo6V7xLE9djqQUQmkxAS0c0siVrfHVolk,Does exactly what it should. Tips: don't overuse it if you're new to this. Put in one or two habits worth tracking and make them count. Make sure they're connected to your bigger goal or purpose and aim big. You're here to great work. Go for it!,5,0,1.5.11,2019-10-31 07:14:43,,,most_relevant,com.oristats.habitbull +Daniel,https://lh3.googleusercontent.com/-1vT_T0M0xaI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOpzvoZTmhGDiUbOtHdKUwcPdQw1g/photo.jpg,"Works nice. Good to get visuals and numbers on your habits. One of my habits I've only been doing 50% of the time according to the app, although I thought I had been doing it a lot more. Solid app.",5,0,1.5.11,2019-12-01 05:40:05,,,most_relevant,com.oristats.habitbull +javier Hinojosa,https://lh3.googleusercontent.com/a-/AOh14GgVbfpe8BtEJEkQmdIHSx_504i9NNIivt1icEkeGA,Very nice app I like the fact I am able to log in any type of event in the calender and track your progress.,5,0,1.5.11,2020-02-28 13:57:19,,,most_relevant,com.oristats.habitbull +Camila Flores sanhueza,https://lh3.googleusercontent.com/-kuLI07AQCnc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOw7_o2vdPMvbyGoWmN16fdyOQl4g/photo.jpg,"The app is excellent!! However, if you have not defined your specific goal (e.g.: I will read 5 pages of a book every night before I fall asleep) you will stop using it, so keep that in mind.",5,0,1.5.11,2019-11-06 10:40:04,,,most_relevant,com.oristats.habitbull +Nitish Rane,https://lh3.googleusercontent.com/a-/AOh14GgCm9DbsZMB9BQvueYEgv1_XUh5Lp4SaRtUGnGemw,It is very useful when you want to track your daily habits. I have just started using it. It is like a one page map to all the habits that you want to follow. Use it if you are a person who wants to develop and keep track of habits.,5,0,1.5.11,2020-01-06 10:25:56,,,most_relevant,com.oristats.habitbull +Lauraine McDonald,https://lh3.googleusercontent.com/a-/AOh14Gh1RsU4rk4rQdorpOzoLZfGizD8IOgRLA0Pv7g6YoM,Highly recommended. Super easy way to live an organised and healthy life; and to be the person you want to be.,5,0,1.5.11,2020-02-15 20:40:54,,,most_relevant,com.oristats.habitbull +lavish,https://lh3.googleusercontent.com/a-/AOh14GjOQMNnvpiK4C063qHC47k8afMsH5xX5iVMcPNq,Best daily tracker out there. Very easy to use and good UI. Lots of customization options. Download this if you are trying to build up a habit just simply tap on the circle daily to mark it. Would recommend,5,0,1.5.11,2019-11-04 13:01:35,,,most_relevant,com.oristats.habitbull +Chanelle Loubser,https://lh3.googleusercontent.com/-5AgwyhPsWz8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMrXj6emZIcIylbXMIy6UCpIKQjow/photo.jpg,I love this app! It does not only track your habits but it also gives statics (%) about how well you are progressing to make it a sustainable habit. You can decide how long it takes you to make a habit sustainable.,5,0,1.5.11,2019-10-28 05:51:32,,,most_relevant,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Really awesome app!!! Its definitely easier than other habit tracking apps I've tried, and better designed too. I get a lot of use out of it, so I purchased the full version. If you're trying to keep track of multiple things at once, especially with the goal of remembering to do things, this will help. I have horrible memory due to health issues so I sometimes forget to do basic things, and this keeps me on track.",5,0,1.5.11,2018-10-31 16:40:53,,,most_relevant,com.oristats.habitbull +Daniel Bush,https://lh3.googleusercontent.com/a-/AOh14GgzgnPzQfeo_eyhdvYpccKCUYzdcdezPhYji3hrz_8,"Absolutely fantastic! Clean, fast, non intrusive.",5,0,1.5.11,2020-03-17 02:25:13,,,most_relevant,com.oristats.habitbull +Warren Leitner,https://lh3.googleusercontent.com/a-/AOh14GhX11RrXkwBVmAfKIjVS6hKmgH0o_zMPh3EiA-_K-Q,"I use this app to track various symptoms of my IBS. I also tried HabitHub and Loop, but only this app allowed me to track on a daily basis how many times a certain symptom occurred, and also set ""goals"" based on either ""no more than"" and ""no fewer than"" a given number of occurrences. I preferred the interface and graphs (I'd like to see a chart of raw numbers instead of just pass/fail) in some of the other apps, but from a purely functional standpoint this is the one to beat.",5,0,1.5.11,2018-10-10 00:55:01,,,most_relevant,com.oristats.habitbull +Marissa R.,https://lh3.googleusercontent.com/-tjlkGKqDim0/AAAAAAAAAAI/AAAAAAAADSE/AAKWJJM2xVF0y8s2co6V9GmjOSm4NU_P6Q/photo.jpg,Habit Trackers makes it easy to keep track of your goals!! Love it!!!,5,0,1.5.11,2020-01-21 05:36:02,,,most_relevant,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"It's helped me stay on track with habits I want to cultivate. I'm really data driven and thrive on external validation, so I like seeing graphs and the calendar fill up with my successful days. It works well for me. The app itself is good too. It hasn't crashed or done anything unexpected in the week I've used ii find logging mt. The only thing I wish I could do is go back and change what makes a day successful.",5,0,1.5.11,2018-11-22 12:04:58,,,most_relevant,com.oristats.habitbull +Cathryn Chamley,https://lh3.googleusercontent.com/a-/AOh14GjOPkUQQXKxrtRA4-exRQArTgCpm-UiekwChxMz,"Simple and useful, and so far, bug free! Just what i wanted.",5,0,1.5.11,2020-01-28 21:11:33,,,most_relevant,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I have always had problems when it comes to structure in my life. This app was a beautiful addition to my transformation in life, if i ever got slack or forgot to do something, I will make up for it the next day or even do it on the same day. Seeing consistency visually has definitely helped me to maintain structure and positive repetition. Thank you to the creators of this amazing app 😊 Goodluck to anyone who has attracted this app ✌",5,0,1.5.11,2018-12-06 13:04:48,,,most_relevant,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I use it for keeping track of tasks after I complete them. I don't want a reminder of a task,I just need to keep track of it. This app allows me to disable reminders. Keeping track of them is as easy as checking off the day. It has the days circled based on how you schedule your tasks. The user experience is really easy. You can create multiple tasks (or habits to be), schedule them separately and keep track of them on one home page. It shows you stats etc to see your progress. Those for whom the reminders cause unnecessary stress (i.e. workout reminders), this app is better than calendar scheduling.",5,2,,2018-12-02 18:12:05,,,most_relevant,com.oristats.habitbull +Megz Shange,https://lh3.googleusercontent.com/a-/AOh14GgqSk04OOWVj6mrTtz6dn787HaiEhnpDkoVh1AHxw,"My experience so far with this App has been great, so far I have been able to track my top 5 habits that I want to implement and maintain. The app has done a great job at making me enjoy meeting my goals. I recommend this App. I have not tried premium yet however will do so once I have more concrete research and evidence that it's works well too.",5,0,1.5.11,2019-01-20 19:03:32,,,most_relevant,com.oristats.habitbull +Ahmad Sanad,https://lh3.googleusercontent.com/a-/AOh14GjQaia4kGAly42LIj0DlH0nDNG5lqEdSG7uamquVA,"well, thanks for the app and the nice touches and effort that've been put in it. However, there are other simple things you can adjust: - adding colors options for every habit - making marking with color scheme and check marks at the same time - making an access on laptop - when I put measurable habit he ask me about the account twice!! Idw what is for? I know you want to keep the app with beautiful simplicity, which is great, but you should offer more options for those who wants more",5,0,1.5.11,2019-01-23 19:38:53,,,most_relevant,com.oristats.habitbull +Jason Turner,https://lh3.googleusercontent.com/a-/AOh14Ghuw2GJD3k4ZYkzFqSjtj7b9LoU3iy4yolJdADcerc,"This app is perfect for tracking my habits. It allows an effective level of depth without being overwhelming. I have been using this for several months and I love it. The only thing I would like to see would be ""Milestones"" to increase/decrease a habit without retroactively turning past week successes into failures. For example, increasing a workout habit from 2x/wk to 3x/wk.",5,0,1.5.11,2019-01-21 18:05:07,,,most_relevant,com.oristats.habitbull +Shiroyasha,https://lh3.googleusercontent.com/a-/AOh14Gjj64myoFsT-UdIqte6vfZzYn7Krub-KWSQ_FTzhw,"Great app if you want to get rid of bad habits, or reinforce good ones. The free version of it is not as restrictive as most free versions of apps, so that is a big plus . I honestly never really wrote a review on playstore before, but this app legitimately helped me overcome a few of my most detrimental bad habits. To the people that made the app, thank you for taking the time to make an amazing app! I hope that everyone has a wonderful day!",5,0,1.5.11,2019-04-06 19:14:37,,,most_relevant,com.oristats.habitbull +Justin Gray,https://lh3.googleusercontent.com/a-/AOh14Gjx5BxsLZz5BxxmXfLGOKNgWC5aKqfospm6pbCb,"I've tested dozens of habit and routine tracking apps. The clean layout, useful widgets, and versatility of this one puts it above the rest. Even without premium, it is highly functional. Furthermore, premium is a one-time purchase rather then a monthly/annual fee, which was a deciding factor for me.",5,4,1.5.11,2019-01-08 16:06:50,,,most_relevant,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I have used many habit trackers over the years, but this was the one that most suited me. It's simple and effective, and even the free version is really useful, the only drawback (for the free version) would be that you cannot track more than 5 habits, but I don't want to follow that many habits either way so it was a perfect match for me!",5,0,1.5.11,2019-03-20 15:53:14,,,most_relevant,com.oristats.habitbull +Brooke Franklin,https://lh3.googleusercontent.com/a-/AOh14Gjw7HYI3QEapbIcTutSqnb4JOtvDsOEA-1OPcpjZC8,"Helps keep my habits in check. It's nice to go back and see how I performed in months past. It's kind of confusing how they display the stats, but just now after a few months of use it's starting to make more sense.",5,0,1.5.11,2019-12-28 05:35:54,,,most_relevant,com.oristats.habitbull +Jaime Reyes,https://lh3.googleusercontent.com/a-/AOh14GjV5BDKTiD6X7mWdd6CnvYKUgdX6ZrWvKxZL2JxxA,I love this app! Very easy to use and it phelps me to keep track of my progress. A+,5,0,1.5.11,2020-02-21 20:53:25,,,most_relevant,com.oristats.habitbull +Lexi Forrest,https://lh3.googleusercontent.com/a-/AOh14GjiwJYoc4vp44BuzqGWaWogYK9vavVfiFVXCjBpTw,"To begin with I already loved this app because it's aesthetically pleasing very easy to use and all in all just keeps me in check with the things I want to keep up with in my life, I was having issues with my phone so I had to reset and when I try to log back in I didn't have any of the data and I had purchased premium and I didn't have that anymore and I reached out to the support team and they were able to completely help me and merge my account so that I had all my data again and my premium again with no issue within just a few hours they are amazing and I highly recommend this app!!!",5,0,1.5.11,2018-10-04 13:40:28,,,most_relevant,com.oristats.habitbull +Erica Maree,https://lh3.googleusercontent.com/-cpVMfufvVAs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOyIB-LlbjSL2QqdOoDcSyLEhrcRg/photo.jpg,"This app really helps me stay mindful of my daily goals. Being able to visualize my progress helps me to decide where to put more focus and what to prioritize each day. It's highly motivating for me personally to be able to tick off the goals I've met, and creates a great sense of satisfaction when I've achieved them. I highly recommend this app to anyone who could use a little help staying on top of daily tasks and accomplishing daily or weekly goals.",5,0,1.5.11,2019-02-14 19:08:39,,,most_relevant,com.oristats.habitbull +Laurentiu Ganta,https://lh3.googleusercontent.com/a-/AOh14GiOMS5OFL0YO4dcNviMHmzZpV0sfZ6GcL1vMXUQug,"I purchased the premium version so I can use the home screen widgets. It motivates me to stick to my habbits once I see them all the time when I use my phone. I've been using it for 2-3 weeks now and I woke up early, went to the gym, read at least 20 pages and flossed in the evening EVERYDAY. Obviously, is not all thanks to the app, but it does help to track my progress and keep me accountable if I miss anything. Just start with easy to achieve habbits to make it work long term and build on that.",5,16,1.5.11,2019-01-29 17:47:53,,,most_relevant,com.oristats.habitbull +Merika Campbell,https://lh3.googleusercontent.com/a-/AOh14Ghhn5_AWhrtyXKzDruNeLspnW-r49Ne7vEhOvT1Kg,"Love this app, the basic version is fine, but I love being able to add even more items in the paid-version! Keeps me on track all day.",5,0,1.5.11,2019-12-08 14:07:02,,,most_relevant,com.oristats.habitbull +Dannie Bock,https://lh3.googleusercontent.com/a-/AOh14GjbqjMXZNVVgtqOFcb4SbkKgHFBn0RznYegrwaY,"Still the best habit tracker I've ever used. Unfortunately, the widgets only respond directly after I've removed and replaced them again. I'm really hoping they work some day.",5,0,1.5.11,2020-01-02 10:19:37,,,most_relevant,com.oristats.habitbull +Maika Hemera,https://lh3.googleusercontent.com/a-/AOh14Gjh5K_gfBJvjnrG5nuPmu3sO0dLZypUuSYAobccUYI,"I've been using this app for about 3 years now, it is by far the most user friendly habit tracking app I've tried.",5,0,1.5.11,2020-02-16 01:47:53,,,most_relevant,com.oristats.habitbull +Nick,https://lh3.googleusercontent.com/a-/AOh14Ghlu1e0GIzhvD_1DGXeMbd2CFrsfht1qMPalCftAlY,"This app is a simple an elegant solution for tracking habits, it offers widgets as well as a nice simple interface for getting habits done. I guess if i had to complain I think i had an issue where if there was a task set to be complete x days a week it would not go away on the widget ever even if you had done the task the required amount of times a week, could have been my mistake however, otherwise great!",5,0,1.5.11,2018-11-09 15:51:34,,,most_relevant,com.oristats.habitbull +Kevin Cruz,https://lh3.googleusercontent.com/a-/AOh14Ggu-lHf4RKRkMVGP9zT3233i056DWBbxcZ80M2e6w,"I totally recommend this app. It had help me on every possible way. It's really helpful if you really want to develop a new habit. I specialy like the easyness to configure the habits and the reminders; the motivational notes that you can find around are just right. But its true that is not a magic app, PLEASE if you want to create a new habit, you have to work for it, you have to work to create something. If you do that, you'll see the true colors of this magnificent app. Be true to yourself.",5,0,1.5.11,2019-02-20 05:39:58,,,most_relevant,com.oristats.habitbull +Brendan Codemo,https://lh3.googleusercontent.com/a-/AOh14GgsG9OGJEJ00uEEgoIrwOBDMVN5dj6UbIre0OviHw,"The #1 Best Habit Tracking app in my opinion. You can record the amount of activities you do and see the final result at the end of week. When recording your activities, It shows your average amount of the activities done during the week . This app also keeps my life back on track and reminds me what i need to do throughout the day and its very convenient. This app is extremely easy to use and it is free! I honestly wouldnt be able to live without it. Thank you. ❤️",5,34,1.5.11,2019-02-23 23:37:51,,,most_relevant,com.oristats.habitbull +Jessica Molina,https://lh3.googleusercontent.com/a-/AOh14GiVq-m0l_sNaT1_E9Go0HxDhSJjKMEuzajo7PVJ,Very helpful to be mindful of areas you want to change and feels rewarding as you see streaks of success. It is easy to use. It's design allows you to take baby steps towards more ambitious goals. Also setup manages your goals so they are realistically obtainable. Reminders setup is very flexible so notifications are useful and welcome. Great user friendly design which is highly customizable,5,1,1.5.11,2019-02-21 15:52:00,,,most_relevant,com.oristats.habitbull +Virginia V,https://lh3.googleusercontent.com/a-/AOh14Gh70KPv196URUMmfjfTjaR0G5f0z61_zcI3beSd3g,It has been really easy to use and effortlessly works. Gives me the % of all the habits I am doing together and individually!! Great so far!!,5,0,1.5.11,2019-11-05 14:24:59,,,most_relevant,com.oristats.habitbull +Johnrose John,https://lh3.googleusercontent.com/a-/AOh14GjA6omIR1tqHzSYfsTuT-BeG3gFYjJQ9SkeXUalNw,Very helpful. Simple and effective app design. Support from others and discussion helps a lot to form a habit as well as get rid of bad ones. Password lock ensures safety. the developers have definitely put lots of work into this app. Free version and premium works great. I ordered premium and it's worth the money.,5,3,1.5.11,2018-11-18 03:56:33,,,most_relevant,com.oristats.habitbull +Andrew Hollister,https://lh3.googleusercontent.com/-CVooBX9INT8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN0Ma16iqsBAPo4LxAQ7oAS8h6qTA/photo.jpg,"This app has been great for me, especially to track daily goals I set for myself. it shows me the days I have succeeded, and the days Ive fallen short. I can see a history of my success and setup reminders to make sure I don't miss a daily goal. I've been using the app for a little over a month now and highly recommend it to anyone who has daily goals they want to rack and be successful with!",5,42,1.5.11,2019-01-04 13:22:31,,,most_relevant,com.oristats.habitbull +Jeff Ensroth,https://lh3.googleusercontent.com/-Wa3NedKKlDA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMBbjjOOh9S0Ewufu7FHOOrmD53DA/photo.jpg,"Fits my needs. The free version is limited to five items being tracked, but it would be counterproductive to try and develop more than two habits at a time.",5,1,1.5.11,2020-01-03 01:41:22,,,most_relevant,com.oristats.habitbull +Chiamaka Ojiyi,https://lh3.googleusercontent.com/-BSLVX38GYCY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJODAzz63u5q5B8J1FLu5RdT2oYwSw/photo.jpg,"This app makes me want to accomplish my goals. It's so useful and helpful. Because I don't want to break my streaks, I find that I push my self to accomplish the daily habits I created in the app. Thank you dev!",5,0,1.5.11,2020-02-08 13:44:05,,,most_relevant,com.oristats.habitbull +Vicki Lewis,https://lh3.googleusercontent.com/-fLv_F4uMia0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMpqEi5loaUtOcZrY4b-t28s_6M5g/photo.jpg,I've found this app really useful for assisting my success in various areas . Sometimes stopping certain poor habits and sometimes starting positive new ones.,5,0,1.5.11,2020-02-23 13:56:27,,,most_relevant,com.oristats.habitbull +Gilbert LeBaron,https://lh3.googleusercontent.com/a-/AOh14GgO1ek4cG8sscoW_pwYLtVhhPbSohuCg50fOwfigA,"10/10 Great app! Let's you keep track of goals and habits daily. It's highly customizable and will send you notifications to remind you of stuff, if you want. Also I really like the message boards, I find them really inspirational. Also, I've been using this app for several months, and it's never asked me to pay anything. And there aren't any ads either. I know that there's a premium version in one of the side menus, but I'm not sure what it does because it already gives you everything you want.",5,102,1.5.11,2018-12-20 12:53:53,,,most_relevant,com.oristats.habitbull +Lynne LaRochelle Richard,https://lh3.googleusercontent.com/a-/AOh14Gh4Ba_9tfX1vEFphu1wVnazYCUtx-hYyf5aNaHFWQ,"Elegant design. This app is easy to use and only takes seconds. Unlike other apps that distract you with details, blog posts, etc (I'm looking at you, myfitnesspal), I can easily track my habits in seconds without going down the internet rabbit hole **edited to add that I'm still using it weeks later. Very simple. Although I started off ambitious and added many habits, I ended up following the developers suggestion and paring back to two key habits. I'll add more after these stick",5,8,1.5.11,2019-03-19 12:27:21,,,most_relevant,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Well, like anything this app is only as useful as you're willing to let it be. BUT, if you are committed to either making or breaking (or both!) any habit you can think of, then this little jewel of an app can help you do that. The idea of ""streaks"" may seem trivial to some, but we all crave this at some level because it clearly marks out your accomplishments in a tangible way. When you see you have X days of success, you are that much more likely to overcome the impediments you may face. What's more, this program is highly flexible in the ways you can track any given habit. I have yet to find a habit and pattern I couldn't set up. The app is free, although I paid for the premium version because 1) I HATE ads and 2) I liked the flexibility of data export, so just try it and you may find that it changes your life for the better.",5,156,1.5.11,2019-03-18 20:09:29,,,most_relevant,com.oristats.habitbull +Andrew,https://lh3.googleusercontent.com/a-/AOh14Ghqoxa46FXLhbwJuaYchGRycLsaner6IlBkUJbmWA,"Near perfect. Considering you only really need a piece of paper on the wall or a calendar to track habits. It does that and more with a clean UI. It also has nice features when you create a habit, download it to see what I mean. Discussion posts are a really nice bonus as well. Overall the app is gold.",5,0,1.5.11,2019-03-11 05:44:45,,,most_relevant,com.oristats.habitbull +Mel cube,https://lh3.googleusercontent.com/a-/AOh14GgSllzucNGEirad8mLXNIYoUeixEKzohS7UO4Zo,First I was skeptical about this app but only a few weeks in and I already see myself adjusting a couple things in my life. Amazing how this works. Thanks guys!,5,0,1.5.11,2019-12-04 00:25:31,,,most_relevant,com.oristats.habitbull +Michael Pyle,https://lh3.googleusercontent.com/a-/AOh14GjZ_UVFOJTyKni9lXOpT8plYHUppeJt1O9vQ6nL,"Easy to use, set up a lot of goals....easy to track.",5,0,1.5.11,2020-02-17 20:04:44,,,most_relevant,com.oristats.habitbull +Mohammad Rasheed,https://lh3.googleusercontent.com/-go1Pez1PdXI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO0_MxtKx5z7cq_Au27wVIvk1vRPg/photo.jpg,I bought this great app. Just started using it. I am a procrastinator so I am struggling to meet my goals. I am therefore absolutely relying on this app to help me track my performance. I really like the notifications with the positive words it attributes to me. I like the fact that you can quantify exactly the number or time allocated to the habits and track against that. When I manage to conquer a habit I will write a new review. Cheers,5,9,1.5.11,2018-11-24 23:08:36,,,most_relevant,com.oristats.habitbull +Marcel Garate,https://lh3.googleusercontent.com/a-/AOh14Gg_j3CzfdVJvo-V0wHFWjrWHn4fmHDyTB1A2visHA,"Just overall a great app if you want to become more concious about your daily habits. And, of course it's very helpful to create new habits / erase unwanted ones ;-) The paid version is gonna be a necessary upgrade if you want to keep track of lots of things, but it's totally worth it!",5,0,1.5.11,2019-02-13 10:21:50,,,most_relevant,com.oristats.habitbull +Scott Van Lare,https://lh3.googleusercontent.com/a-/AOh14GiBRjeqqBd4NKi-V_Qc4B71BF0nInTbuVsNV8ddaQ,With the short period of time I've used this app I have enjoyed it. The app has been a great tool to help my keep track of my 2018 goals and stay on top of new habits I am trying to create to better myself and future. it has a clean UI although i wish it had more theme options. This app has been great at motivation on days o have slacked off or days I messed up with its visual aid on my progress for 2019. I would recommend it to someone trying to create a better habits.,5,4,1.5.11,2019-01-15 14:51:51,,,most_relevant,com.oristats.habitbull +Lozaan Khumbah,https://lh3.googleusercontent.com/a-/AOh14GgfhPHi-4LJqksTnTx5TQPCGIRHefK7CWwnGkADJg,"I usually don't write reviews. In fact, this is my first. But this app is worth a few words of appreciation! It works well, is easy to use, and helps me keep track of my activities/habits. It reminds me to too in a non-intrusive way. If you are looking for an app to help build a habit, this app is worth giving a try.",5,0,1.5.11,2019-04-03 07:14:21,,,most_relevant,com.oristats.habitbull +Emerald Element,https://lh3.googleusercontent.com/-2bygO0ZluaA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMDu8MLhwsjZUArwMrZzyZ10n9BZg/photo.jpg,HabitBull is what I was looking for in a habit tracking app. It has a lot of customization for what constitutes a goal streak and a simple overview and data entry screen. I was happy that premium is just a one-time fee. And it's cool to see the posts from other people working on their goals too.,5,0,1.5.11,2019-01-17 21:06:39,,,most_relevant,com.oristats.habitbull +Eli Harrell,https://lh3.googleusercontent.com/a-/AOh14GgWTtwDoC-6z1eT-ZikmaOeJkSL-bFmZD5NKKfJNRc,"By far the best habit building and tracking app I have used and I have tried many. Have been using the paid version for 6 months or more and my routines ane habits are the best of my life. You need more than an app, but having a tool like this is KEY. LOVE the flexibility, simplicity and the streak-oriented design. Thank you HabitBull!",5,0,1.5.11,2019-04-17 06:25:01,,,most_relevant,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Great app for tracking whatever it is that you want to develop as a regular habit. Clean interface and very easy to set up new habits like exercising on set days, not smoking or taking medicine. The 'streaks' length & percentage success are good motivators and give you a nice visual reference for how well you're doing.",5,0,1.5.11,2019-02-02 02:51:02,,,most_relevant,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Simple, no B.S. habit tracking. Forming a habit is hard, and it makes sense to track your progress for multiple reasons. Some apps and methods are almost as hard to use as the habit you are trying to create is to make. Not HabitBull. I've only been using the app for about a week now and it has been painlessly helping me work towards my goals and forge a better self.",5,5,1.5.11,2018-10-09 13:03:43,,,most_relevant,com.oristats.habitbull +NBe x,https://lh3.googleusercontent.com/a-/AOh14GhMlfQmD4nAtOOF6B9q3kzm2uEqPZbWuUHh1bWzrg,"Helped motivate me get back on track after a big downswing. Just the idea of keeping a simple chain going helps so much. I guess it's because it's like a promise to yourself. Decided to get the premium :) It's not expensive either, so I think it's completely worth it. I'm very grateful that someone recommended this app to me when they did.",5,0,1.5.11,2018-10-25 09:04:24,,,most_relevant,com.oristats.habitbull +Bruce Martin,https://lh3.googleusercontent.com/a-/AOh14GgsOi_8BUiQNHQj9JPXV2F4pZnnYzUxBP8Wqz2QFg,Great app. Simple and it really helps forming new positive habits. It's amazing what you can do when you just do it consistently.,5,0,1.5.11,2019-10-20 10:32:38,,,most_relevant,com.oristats.habitbull +Janet James,https://lh3.googleusercontent.com/-bKH6JXx_K-Y/AAAAAAAAAAI/AAAAAAAAxxs/AAKWJJORLnvxxE3Pyx72WncgTyDZHakbvQ/photo.jpg,Easy to set up and edit. I upgraded to premium so I could add more habits.,5,0,1.5.11,2020-02-08 02:04:45,,,most_relevant,com.oristats.habitbull +Cara Beth Erikson,https://lh3.googleusercontent.com/a-/AOh14GgYS0MrN4IfvzhcqMfGK1g2RbyFfT5rHqrzsT9RB0s,"This app has helped me get back in track. I started out reading my Bible every three days, and ended reading it every single day. If you are struggling with a bad habit, this is the app for you. I have tried many different habit trackers before, but this has been the best thus far. It shows you your progress percentages too, which is a really cool feature. Highly recommended.",5,1,1.5.11,2018-12-16 04:25:20,,,most_relevant,com.oristats.habitbull +zekestarfc,https://lh3.googleusercontent.com/a-/AOh14GjwJIxQSLjHY91Q-1txinRrkkRfBs_FZLqDXvM,"Any app made well and affective for the needs of the many should be free of limited access and ability, to help them actually acjhieve the goals they have set, like limit 3-5 habits to track...Go PREMIUM and you go for as many goals as you want, hhhmmmm, anyone catching the psychological aspect of limiting a person by a marketing suggestion? It's cool, the app functioms as it should, i t is us as humans that need to work... GodSpeed",5,0,1.5.11,2019-01-24 12:37:11,,,most_relevant,com.oristats.habitbull +gokul anand,https://lh3.googleusercontent.com/a-/AOh14GjFQtQZXpP7ElQ7dr9nRpphfIa-ovvIoPWVxJfn,"i found that, if i am reloading the app from recent apps it is again asking for the password. quit a nice feature . even some important apps are not having this feature. but say if i am switching to another app while seeing some habit chart. when i see in recent apps, i can clearly see the last viewed chart. it would be nice, if u guys can fix this issue",5,0,1.5.11,2018-12-23 18:04:49,,,most_relevant,com.oristats.habitbull +Yugana Penrozu,https://lh3.googleusercontent.com/a-/AOh14GhCRD1a4wqVrLULMFL8ugwym6mtOd4bGbKwr44oxA,"I didn't think this app was much at first, but I soon started to get into the swing of things I've been trying to get myself into for the longest time after installing. There's just something about that feeling of satisfaction when you fill in a circle for completing something. It tracks your streaks and your average progress. It also encourages you with cute quotes about being yourself and being the best you! Forming (or breaking) a habit can be done easily with Habit Bull!",5,7,1.5.11,2019-07-10 01:20:21,,,most_relevant,com.oristats.habitbull +cassidy storey,https://lh3.googleusercontent.com/a-/AOh14GhDncMxhIYxa4SNHpWooAKqPxHTbShWPVTEYofu,"I really like how easy it is to use, that it displays your progress in a neat and easy-to-track way, and gives you options for how to measure your success (yes/no per day, #of days per week, days you want to succeed and days you can 'cheat', etc). It's pretty satisfying to tap the little circle for a thing I did and see it turn green and link up with other days! Would definitely recommend.",5,33,1.5.11,2019-09-26 15:53:31,,,most_relevant,com.oristats.habitbull +Kiara Simoneau,https://lh3.googleusercontent.com/-kdeB4eIckP8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOA00CcC-uqrTuwvmSIOzgW_MOJ_A/photo.jpg,App is great! Can set timed reminders to keep going. I like the visual encouragement that this provides for me with trying to stay on track!,5,0,1.5.11,2019-10-16 19:41:19,,,most_relevant,com.oristats.habitbull +tayeb toujours,https://lh3.googleusercontent.com/-9kA7jy33RjM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOmGe1jlLw4PpvM5u-A7Tiokj3fIw/photo.jpg,"It's perfect application , I love it",5,0,1.5.11,2020-04-06 15:24:41,,,newest,com.oristats.habitbull +Jaime favorites,https://lh3.googleusercontent.com/-7Y4RwiqXmvk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOnt9oyI35RwJlMQYp7sJxbH60tzw/photo.jpg,Love it,5,0,1.5.11,2020-04-06 14:54:25,,,newest,com.oristats.habitbull +Christian Geppert,https://lh3.googleusercontent.com/a-/AOh14GhR0vUAc6zvArCvL8k9-MwtDBeqL59Ot2c047cMKA,"No frills, just what I was looking for",5,0,1.5.11,2020-04-06 08:32:13,,,newest,com.oristats.habitbull +scot maupin,https://lh3.googleusercontent.com/a-/AOh14Gh2IOIZrbOgAQUuEppm8JkKlRv6feFka9R5qJMe0Q,I love this habit app and the customization ootions. I use it to track exercise and also build up/break habits im trying to start/stop.,5,0,1.5.11,2020-04-04 16:36:02,,,newest,com.oristats.habitbull +Jim Starnes,https://lh3.googleusercontent.com/-0scSgF8uvFQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO_cQv9bM7qH66Cs1RpTql5ge56Ew/photo.jpg,I have used several habit tracking apps and this one is the best. It is easy to use and I like the way it gives my percentage success rate and my streaks. A lot of the other apps wanted a monthly subscription fee. I paid for the pro version after using the free version since it was a one time payment.,5,0,1.5.11,2020-04-03 16:04:39,,,newest,com.oristats.habitbull +Yal Prabhakaran,https://lh3.googleusercontent.com/a-/AOh14GhimzS7SwQX-nxtKnWH2EiMdDVUEYDY0Xoi4Vac,சிறந்த செயலி. மாற்றத்தை காண வழி,5,0,1.5.11,2020-04-03 14:56:36,,,newest,com.oristats.habitbull +N.Elkheyr,https://lh3.googleusercontent.com/a-/AOh14GhZ8DepEISsz-MV5TC09gGfFos5wASxhl_iVYJ3xA,"Very very important app , thanks To You.",5,0,1.5.11,2020-04-02 20:40:37,,,newest,com.oristats.habitbull +Vale,https://lh3.googleusercontent.com/a-/AOh14GhtutqLm2RdbgJRaFLMLKfKzqk9_E6lwdekuFm-Wg,"it's a great up, easy to use and very helpful if you want to create new habits and track your progress!",5,0,1.5.11,2020-04-02 04:30:58,,,newest,com.oristats.habitbull +Peter Ian,https://lh3.googleusercontent.com/-5QdxWw9KN2Q/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPbUAFpvqNzyNTDYpEtSwVSMGte9w/photo.jpg,It was great.Cool app.The best for habit tracking.,5,0,1.5.11,2020-04-01 06:35:40,,,newest,com.oristats.habitbull +Oleksii Didyk,https://lh3.googleusercontent.com/a-/AOh14GiR2m0q6bxuIbEUup5CGGsV1APeiBhKtaCLoxSQiQ,Great app!,5,0,1.5.11,2020-03-31 08:00:01,,,newest,com.oristats.habitbull +Eric VanKirk,https://lh3.googleusercontent.com/a-/AOh14Gjx1mQrf4uY1Lw70Nrxo0HBliTH26I1wtvlMuEZ,Wonderful app that simply shows your progress of creating habits. Love the visual layout that helps he stay on track...,5,0,1.5.11,2020-03-29 01:35:30,,,newest,com.oristats.habitbull +Akmal Amin,https://lh3.googleusercontent.com/-1qr4OpagJ_4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOKoKOAIM57A1ScX-ypGWQXjeBxSw/photo.jpg,Good app,5,0,1.5.11,2020-03-28 11:38:54,,,newest,com.oristats.habitbull +repulotaska,https://lh3.googleusercontent.com/-2_1hD7Xfo2w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPmJfTRvYwUjKVAaz4LTFMuzt1Yuw/photo.jpg,"Useful app, I like it!!",5,0,1.5.11,2020-03-27 23:38:46,,,newest,com.oristats.habitbull +Kathleen Martin,https://lh3.googleusercontent.com/a-/AOh14Gj34Yjf7lJL_c5d668VieZ689fSUUN_HFtcatI9vA,"The best habit tracking app I've ever used. Set your own goals, no comments that make you feel guilty, and minimal annoying reminders.",5,0,1.5.11,2020-03-27 22:21:08,,,newest,com.oristats.habitbull +Sana Rose,https://lh3.googleusercontent.com/-QdCi3RxyoaQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMAWhi2qa58IcmN9iZRNYbIV8yiSw/photo.jpg,Going great so far,5,0,1.5.11,2020-03-27 20:03:11,,,newest,com.oristats.habitbull +Amie Tiday,https://lh3.googleusercontent.com/a-/AOh14GjrcEziyhSoPnIUKNHoRr7-ZyItQeMpo8oVCUxmVA,"I've never been so pleased with an app like this. It designed well, easy to navigate, and keeps me motivated to improve my life!",5,0,1.5.11,2020-03-27 18:36:13,,,newest,com.oristats.habitbull +Saief TISSAOUI,https://lh3.googleusercontent.com/a-/AOh14GiTl2S1AXqNrBmunrJTAUYHLqjIJYhAA1mjWWsGYg,Beautiful app,5,0,1.5.11,2020-03-27 12:11:23,,,newest,com.oristats.habitbull +Casey Clem,https://lh3.googleusercontent.com/a-/AOh14Gh9w9j8Efs7pwPCEYbmxIyvzeq96fr8mdwfMev3zAM,Good app. Helpful and easy to use.,5,0,1.5.11,2020-03-26 18:21:34,,,newest,com.oristats.habitbull +Chrissie Richards,https://lh3.googleusercontent.com/-BBRiSpqWGxg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPu0oSRi3G9fLfywedY8JVdIYrtrw/photo.jpg,Helped get my life in a bit more order. It could still use some tweaking. 8/10,5,0,1.5.11,2020-03-24 01:57:13,,,newest,com.oristats.habitbull +Ram Ahuvia,https://lh3.googleusercontent.com/-3smeflSIOkk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMFfUle9Y_37js-Dqm-a2QIxabWBw/photo.jpg,Very nice widgets available 👍,5,0,,2020-03-22 22:03:01,,,newest,com.oristats.habitbull +Galih Febrianto,https://lh3.googleusercontent.com/a-/AOh14GgB1Crg0uJ1jxvbkUgKxwKnTkChhTnqniQWv22HXA,Good app,5,0,1.5.11,2020-03-22 17:11:18,,,newest,com.oristats.habitbull +Justin Rochefort,https://lh3.googleusercontent.com/a-/AOh14GhMLCB6VTL-IX5mCNNyttH5GviVxy5m4mUxClnB5g,Perfect for what it needs to do,5,0,1.5.11,2020-03-21 16:48:48,,,newest,com.oristats.habitbull +J Boon,https://lh3.googleusercontent.com/a-/AOh14GgZ9PaJUNZHPUbwCE1-f3VwGg_0QSff5AQNLmSFzw,Cool app,5,0,1.5.11,2020-03-20 10:30:59,,,newest,com.oristats.habitbull +Cheri Haggard,https://lh3.googleusercontent.com/a-/AOh14GgOR1rvOJYpAUNuVZK4dlIyGKAI-KKsA3dLct3eYg,"I like being able to look at my goals each day, review how I am doing, focus in the most important one for this month. I'm seeing improvement!",5,0,1.5.11,2020-03-19 18:01:02,,,newest,com.oristats.habitbull +Vladimir Jurčević,https://lh3.googleusercontent.com/a-/AOh14GhsSkoinBWQ05vOkHzZ3O-PO55g59l_U96Xy-2EPA,Perfect app to maintain your habits in good pace😎,5,0,1.5.11,2020-03-19 13:06:37,,,newest,com.oristats.habitbull +harini rajendran,https://lh3.googleusercontent.com/a-/AOh14Gh_psNOOxa4QWGNUrE6ZOpsDk8lU_83KeZa2-F75ZY,This app has helped me develop and stick to many useful habits. Highly recommend it to anyone who wants to develop a new habit but is finding it difficult.,5,1,1.5.11,2020-03-19 12:31:46,,,newest,com.oristats.habitbull +Tim Waddington,https://lh3.googleusercontent.com/-ZeyWfAWq03Q/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNXqn4JcossKjmW-nesgW-w7u0jwg/photo.jpg,Really helpful on the rocky journey to change your habits,5,0,1.5.11,2020-03-19 07:38:52,,,newest,com.oristats.habitbull +Brian Henson,https://lh3.googleusercontent.com/a-/AOh14GiuWMF6ISiIMI5I7xqjRSpMJM4dD1vf8zcJo8Of7Q,"Super easy, and has changed my life in a number of very positive ways. Excellent tool. Buy the full version if you are able. Certainly worth it.",5,1,1.5.11,2020-03-18 17:41:57,,,newest,com.oristats.habitbull +avenie mavadia,https://lh3.googleusercontent.com/--mBl-C_8BUI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNZLaHEwp_Lku0oQjFwD1d5AQifNg/photo.jpg,Really user friendly - effective in keeping track of your habits and achieving your goals. 100% recommend,5,0,1.5.11,2020-03-18 15:18:48,,,newest,com.oristats.habitbull +Dipesh Wadhel,https://lh3.googleusercontent.com/a-/AOh14GgzsCtDPmbeq09iqKsCSG-N9CvJhdNzN07toiSwLQ,Nice,5,0,1.5.11,2020-03-18 01:55:25,,,newest,com.oristats.habitbull +Michael Judge,https://lh3.googleusercontent.com/a-/AOh14GikdNvJtKd0tR1vsq9Foanh8idKZ9ot7abOr8zhY6U,"Does what you need it to do. I like that you can take notes, and the little encouraging reminders are helpful.",5,0,1.5.11,2020-03-17 14:07:51,,,newest,com.oristats.habitbull +Daniel Bush,https://lh3.googleusercontent.com/a-/AOh14GgzgnPzQfeo_eyhdvYpccKCUYzdcdezPhYji3hrz_8,"Absolutely fantastic! Clean, fast, non intrusive.",5,0,1.5.11,2020-03-17 02:25:13,,,newest,com.oristats.habitbull +Parthib Banerjee,https://lh3.googleusercontent.com/a-/AOh14Gjy-I32xHYtsKsg010yXUsTsYc2DfIY4MS9Vhg5uw,very useful app to track and keep record of your habits,5,0,1.5.11,2020-03-16 07:31:56,,,newest,com.oristats.habitbull +M Salim,https://lh3.googleusercontent.com/a-/AOh14Gjab-8YGx60LH1jdevfdY3P1j2Bfd1ySZZZFrDFOQ,Good,5,0,1.5.11,2020-03-16 06:33:14,,,newest,com.oristats.habitbull +Chaubey Alok,https://lh3.googleusercontent.com/a-/AOh14GhAnN-mXeHXlLnQPJu3GIhy1XlSOtJN6rwAM-Ar,Awesome,5,0,1.5.11,2020-03-15 06:58:18,,,newest,com.oristats.habitbull +Mario Contreras,https://lh3.googleusercontent.com/-T6-sBV5QFxY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPtc462-byTp85Ro6JaG2j4FH0vWQ/photo.jpg,Excelentes,5,0,,2020-03-15 01:20:26,,,newest,com.oristats.habitbull +Mohamed Abdelmoneim,https://lh3.googleusercontent.com/a-/AOh14GhsY_lovwh4czRbGetNy1rOulJHTavrqPi620lj,"I am trying habits apps for more than 4 years, this is the best at all.",5,0,1.5.11,2020-03-14 08:08:14,,,newest,com.oristats.habitbull +David Wachira,https://lh3.googleusercontent.com/-Aa9L8zIHON8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPW03-hRFpK8nLIWmOBU0VQ2h07Fw/photo.jpg,It's for keep,5,0,1.5.11,2020-03-13 19:44:39,,,newest,com.oristats.habitbull +Liah Jacksi,https://lh3.googleusercontent.com/-1ZqBVgysqN4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMOXlL9Mk_sSgVlv0y8JJznssJEow/photo.jpg,"I've been looking for an app that can do what HabitBull does and I'm so glad I finally found it. It's a great, easy to use app and the messages you get are so cute.",5,0,1.5.11,2020-03-12 20:01:47,,,newest,com.oristats.habitbull +lucca novaes,https://lh3.googleusercontent.com/-p5Otfls6drA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOWanIIRjWi2h7okDev9crkMDJcug/photo.jpg,"Very good, it almost obligates you to complete yours habits.",5,0,1.5.11,2020-03-12 17:16:17,,,newest,com.oristats.habitbull +Gokulnath Manakkattil,https://lh3.googleusercontent.com/a-/AOh14GiCmAbcLcBfSrezYaGO6fPQsg90MisoP8RMYry6860,Worth paying for premium,5,0,1.5.11,2020-03-12 15:49:25,,,newest,com.oristats.habitbull +Maximilian Kraus,https://lh3.googleusercontent.com/a-/AOh14GiuvBSygG2rSzscsHgGtzT8DNQR2vLDAcGC-hwisf4,simple design,5,0,1.5.11,2020-03-12 09:34:11,,,newest,com.oristats.habitbull +Ron Dan Rose,https://lh3.googleusercontent.com/a-/AOh14GgoHszOTRciXRADaRhlruhfFzRvNiavg4GCUsT4nUY,Easy to use. Effective to create habits.,5,0,1.5.11,2020-03-10 13:20:04,,,newest,com.oristats.habitbull +arvindkanesan,https://lh3.googleusercontent.com/a-/AOh14Gha_uT23gbHDW_mmH5VvP_HvrG-3H_eaS32iEaP7fc,Greatly designed,5,0,1.5.11,2020-03-10 00:07:22,,,newest,com.oristats.habitbull +Sarin Suriyakoon,https://lh3.googleusercontent.com/a-/AOh14GgmlksAhFHaINta7sDGagfF2XTta26OomI47f1Tmyw,Practical apps. I use this everyday.,5,0,1.5.11,2020-03-08 08:32:19,,,newest,com.oristats.habitbull +Ahmed Ehab,https://lh3.googleusercontent.com/a-/AOh14Gj0EJgqPCteVXU-g5PGL4AIpYHH1vlqzzmSW4yd,Very nice,5,0,1.5.11,2020-03-05 16:50:45,,,newest,com.oristats.habitbull +Kevin Bunger,https://lh3.googleusercontent.com/-Oq36d8jimlI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOwtCOflF2MtIjsUW-qPIveMfWO6g/photo.jpg,A boost in habit formation.,5,0,1.5.11,2020-03-04 11:36:00,,,newest,com.oristats.habitbull +Salem Sheikh,https://lh3.googleusercontent.com/a-/AOh14GhUHhy6AmYJjdU1wARRJeg3cgTuHTkS8B3dY9DGxg,Must have app,5,0,,2020-03-03 20:40:34,,,newest,com.oristats.habitbull +Pankaj Kabra,https://lh3.googleusercontent.com/a-/AOh14GiG6rxEkBldby-mW9RKUgMG19P6RV-MDKUtnRtxBw,"love it, hope the team keeps developing this and into web app one day",5,0,1.5.11,2020-03-03 01:29:41,,,newest,com.oristats.habitbull +Murilo Bezerra De Lima,https://lh3.googleusercontent.com/a-/AOh14GiZZfb0PEl043HslKOoz9f62hH_GdDblad8Zd20Yg,"It's a good app, help us in day the day",5,0,1.5.11,2020-03-03 01:21:48,,,newest,com.oristats.habitbull +Adam Fletcher,https://lh3.googleusercontent.com/a-/AOh14GiGwUKaERckKxQRTU3qcxJd4PP-kBUxeX6QFLAxrA,"It does what it says on the tin, encourages good habits and tracks your success and yes it is addictive succeeding!",5,1,1.5.11,2020-03-02 23:38:39,,,newest,com.oristats.habitbull +Esraa Yousef,https://lh3.googleusercontent.com/-wJaDRi6qDZU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO7fK3ijrfXAJJNDAEFQuJdaqtYRg/photo.jpg,It's helpful,5,0,1.5.11,2020-03-02 17:16:26,,,newest,com.oristats.habitbull +Bill Vasfaret,https://lh3.googleusercontent.com/a-/AOh14GhyMNV34I2dFyF1npiAL-50cwxa-tR-EAU52eWfJQ,Great app!!!! Let's me track habits and keeps me motivated.,5,0,1.5.11,2020-03-02 11:51:08,,,newest,com.oristats.habitbull +Rachel King,https://lh3.googleusercontent.com/a-/AOh14Gj8TXyPcAgJ0kl1Xtxhcxj9Bkd4sErHVpUaBMONsg,This app is incredibly helpful. I need to take medication every morning and this app helps me make sure I take the tablet. It helps me build the habit of taking it.,5,0,1.5.11,2020-03-02 10:40:59,,,newest,com.oristats.habitbull +TY Banks,https://lh3.googleusercontent.com/a-/AOh14Ghl5_i8LWmi4YpbRUtQnJQLr6enM7o4FvOmOcegfg,Great,5,0,1.5.11,2020-03-02 10:21:57,,,newest,com.oristats.habitbull +Alin M,https://lh3.googleusercontent.com/a-/AOh14GjjXyUq0rpUbe_T9bkXQ8ByTU3wgWiifjoHzfKcT_8,Awesome,5,0,,2020-03-02 06:50:52,,,newest,com.oristats.habitbull +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Great app. Also worth it to get the premium for a small one time payment ♥️,5,0,1.5.11,2020-03-02 04:16:42,,,newest,com.oristats.habitbull +Michael Sakti Pratama,https://lh3.googleusercontent.com/a-/AOh14GgmfZuABQjSc8A9kb-bsAlHJ6vYMmUV9sZQuB-YUA,Great,5,0,1.5.11,2020-03-01 15:54:26,,,newest,com.oristats.habitbull +Mohamed Mohamadin,https://lh3.googleusercontent.com/-Yb0Ysi8eFJc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPL3l7k0dhEoQBxhgc6ohFz_qiP5Q/photo.jpg,Good one.,5,0,,2020-03-01 15:03:12,,,newest,com.oristats.habitbull +Durgesh Kshirsagar,https://lh3.googleusercontent.com/-L--oFGZb5Us/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO6ZT0lWfERXNpiWx1I23I9ilNSXw/photo.jpg,Fabulous app. Thank you.,5,0,,2020-03-01 14:07:17,,,newest,com.oristats.habitbull +John Mesplay,https://lh3.googleusercontent.com/a-/AOh14GhgM6hgNe8et68zGnBgdS_x4z_eufpUweUEHxbXnQ,Tag meee,5,0,1.5.11,2020-02-29 16:43:24,,,newest,com.oristats.habitbull +Tom Jerry,https://lh3.googleusercontent.com/-TflJbVJn2F4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMu1UNbHp0CPZhX1rDiRHV9_pRB7Q/photo.jpg,"Its great! Easy to use, lots of features!",5,0,1.5.11,2020-02-29 03:57:31,,,newest,com.oristats.habitbull +Stanislav Guletsky,https://lh3.googleusercontent.com/-icNYoJRl134/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOcN9gvfIqpqocKzu6JxD2nJrjqpQ/photo.jpg,Awesome,5,0,1.5.11,2020-02-28 18:40:31,,,newest,com.oristats.habitbull +Agnieszka Anna Korona,https://lh3.googleusercontent.com/-GN3aYVMhbE4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNME_Kmu1-rGnzVxJ6pPDvRHmWNRw/photo.jpg,Fab app and helps everyone to stay on the track. I love the reminders!!,5,0,,2020-02-28 16:13:04,,,newest,com.oristats.habitbull +javier Hinojosa,https://lh3.googleusercontent.com/a-/AOh14GgVbfpe8BtEJEkQmdIHSx_504i9NNIivt1icEkeGA,Very nice app I like the fact I am able to log in any type of event in the calender and track your progress.,5,0,1.5.11,2020-02-28 13:57:19,,,newest,com.oristats.habitbull +Itnaimee Jerry,https://lh3.googleusercontent.com/a-/AOh14Gj0gaxCZmnlIhwj7wkYojFUibFMkwyjgqPtu-1fIA,Easy &simple,5,0,,2020-02-27 07:18:17,,,newest,com.oristats.habitbull +fiaz ahmad,https://lh3.googleusercontent.com/a-/AOh14GiOC_kN_6CKdXSKhyUGwRDzIoqfH_WcYh0Us-bKdA,Good luck,5,0,1.5.11,2020-02-27 02:40:50,,,newest,com.oristats.habitbull +Blanders,https://lh3.googleusercontent.com/-rk605U8wiO8/AAAAAAAAAAI/AAAAAAAADkY/AAKWJJPBgvwlJEjDa_GVTMjVowzSudpsSg/photo.jpg,"Great habit tracking app. The only things I think could be improved are: goal dates not automatically pushing back to match the day you edited a habit. And being able to edit how you want to track a habit if you change your mind. Maybe I missed something, but it seems like you have to recreate a habit in order to change how to keep track of it (ex. Yes/No or by keeping count with numbers). I highly recommend this tool though, it's a great place to start keeping track of habits!",5,18,1.5.11,2020-02-26 18:46:13,,,newest,com.oristats.habitbull +schantell taylor,https://lh3.googleusercontent.com/-CYpjzNBTnUM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMbod8_Uz9hii3W3AXSqOLwHQfVFA/photo.jpg,The best ever! Convenient and easy to track!!!!,5,0,1.5.11,2020-02-26 15:51:54,,,newest,com.oristats.habitbull +Solomon Mitchell,https://lh3.googleusercontent.com/-nq0N5WUzWFo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM_nK7kgH2YaQRZ3z6kRHDXIC8IxA/photo.jpg,Great!,5,0,1.5.11,2020-02-25 21:16:40,,,newest,com.oristats.habitbull +Emily Ryan,https://lh3.googleusercontent.com/a-/AOh14GjZNvHlz1wiGC2rsH-cjeAZPkDIwMEgTl1_CEcsQAY,"Simple and works well, best free one I've found",5,0,1.5.11,2020-02-25 16:13:00,,,newest,com.oristats.habitbull +Руслан Иванов,https://lh3.googleusercontent.com/-kbNbksjmjKw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPPRe1Hd17TCjCH-hk_071ke6WjAg/photo.jpg,Easy to use. This is main issue with analogues,5,0,1.5.11,2020-02-25 14:16:38,,,newest,com.oristats.habitbull +Kenny Gaines,https://lh3.googleusercontent.com/-Ho7BsyOVpWM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPQ01xySp3NL4401aYKz5tRAgS9KA/photo.jpg,"Fam this app is fire, no cost ease of use and fun to track progress!!!",5,0,1.5.11,2020-02-25 11:55:09,,,newest,com.oristats.habitbull +Roman Ventura,https://lh3.googleusercontent.com/-PL-svMRSgDc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJME0plftSjQotO5G7euTZI0XUs5jQ/photo.jpg,Great!,5,0,1.5.11,2020-02-24 20:45:42,,,newest,com.oristats.habitbull +Kimberly Slentz-Kesler,https://lh3.googleusercontent.com/a-/AOh14GgatsO_G1N7NqN0L4Ku2E6lX2hXndcSqjuMzFD2sg,Easy to use and quite effective!,5,0,1.5.11,2020-02-24 15:29:58,,,newest,com.oristats.habitbull +Dzulfikar Malik,https://lh3.googleusercontent.com/a-/AOh14GiFMT4CgVEO9GXhyJO-7SOXfESIHQNSF4XY9hwy_z8,Such a good app to track my habit. Also become a reminder for my self when I wanna build a habit,5,0,1.5.11,2020-02-24 00:45:44,,,newest,com.oristats.habitbull +Vicki Lewis,https://lh3.googleusercontent.com/-fLv_F4uMia0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMpqEi5loaUtOcZrY4b-t28s_6M5g/photo.jpg,I've found this app really useful for assisting my success in various areas . Sometimes stopping certain poor habits and sometimes starting positive new ones.,5,0,1.5.11,2020-02-23 13:56:27,,,newest,com.oristats.habitbull +Abdul Mohaiymin Khan,https://lh3.googleusercontent.com/a-/AOh14GgcIF3bv_KM6RXghCTJPAxKryx6bCCC49QaD0UJ7w,Great app for tracking new habbits!,5,0,1.5.11,2020-02-23 11:29:31,,,newest,com.oristats.habitbull +Gilmar Andrade,https://lh3.googleusercontent.com/-x_S_ktvUNVY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO6wP08TY7vxGTtFXea7h5srIPdPw/photo.jpg,Uso a versão gratuita. O app tem funcionado muito bem para acompanhar meus diferentes hábitos que estou tentando desenvolver.,5,0,1.5.11,2020-02-22 11:00:27,,,newest,com.oristats.habitbull +hi lisa,https://lh3.googleusercontent.com/-q1KeOlOv3jI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNy0ZV8M4rfWm01u4G8Aa2pN6icgg/photo.jpg,Simple and easy to use,5,0,1.5.11,2020-02-22 09:28:14,,,newest,com.oristats.habitbull +Sergio Nelson,https://lh3.googleusercontent.com/a-/AOh14GgebpQ_J8-inimXF116mo5KL3gPddaue3rRicQSPA,Great!,5,0,1.5.11,2020-02-22 08:35:04,,,newest,com.oristats.habitbull +Laura Lu,https://lh3.googleusercontent.com/-uB7Fl10e7Bs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMr44HjJo8sHfNpg2tPy0eMXQqfIA/photo.jpg,Simple straightforward app,5,0,1.5.11,2020-02-22 00:39:04,,,newest,com.oristats.habitbull +Jaime Reyes,https://lh3.googleusercontent.com/a-/AOh14GjV5BDKTiD6X7mWdd6CnvYKUgdX6ZrWvKxZL2JxxA,I love this app! Very easy to use and it phelps me to keep track of my progress. A+,5,0,1.5.11,2020-02-21 20:53:25,,,newest,com.oristats.habitbull +Anne Richardson,https://lh3.googleusercontent.com/-zVTQp7eY8Ok/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMXEaLsNlolSLe3bVdQ45ym_b0uWQ/photo.jpg,"I really like this apps, it is so easy to use.",5,0,1.5.11,2020-02-21 09:04:17,,,newest,com.oristats.habitbull +alejandro lopez,https://lh3.googleusercontent.com/a-/AOh14GgvDhz6Vo7CKx-1zYTT8UUh212uJ0XpbFHhSoVyoQ,Great app motivates you to keep going,5,0,1.5.11,2020-02-21 04:40:14,,,newest,com.oristats.habitbull +Nontoe Nonoe,https://lh3.googleusercontent.com/a-/AOh14GgtV4Ah0TwqJ2Y5pcy2hZE324MOpGUHCelPOyQp7w,i think its awesome,5,0,1.5.11,2020-02-20 17:22:27,,,newest,com.oristats.habitbull +Nick Xu,https://lh3.googleusercontent.com/-4_rCA-WfxsQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOL36pxOoPLT3if44A0TOHlpT33yQ/photo.jpg,Cool app! I use it everyday!,5,0,,2020-02-20 13:58:04,,,newest,com.oristats.habitbull +Tesha's Mindset School,https://lh3.googleusercontent.com/a-/AOh14GiFXLMGRNyQqKq3IRqfyp5LuW6KL3LHVmU6Ryl1kQ,Great app with great notifications 👌,5,0,1.5.11,2020-02-20 11:40:09,,,newest,com.oristats.habitbull +Adam Rogerson,https://lh3.googleusercontent.com/a-/AOh14Gj9iG0wAH9ZwTmj-WW511ocSiHm_DUP-z5-kYttdw,"Excellent app, excellent widgets. I use this with widget as my daily habit manager. Could do with an update and could have other features but what it does (help maintain habit streaks) it does better than any other app I've found. I bought premium one off to use the apps.its worth it for me. Don't usually buy subscriptions but a couple dollars once off worth it. Free to use though, only widgets are premium",5,3,1.5.11,2020-02-20 10:26:19,,,newest,com.oristats.habitbull +Olivia Blake,https://lh3.googleusercontent.com/-Awz9xPKM83I/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOhj8L1aTCONdgaW37Dst9cRrJKow/photo.jpg,Really Good,5,0,,2020-02-19 03:09:40,,,newest,com.oristats.habitbull +Pmt Pmt,https://lh3.googleusercontent.com/-n_v_MhcDyps/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOWyjPYYs6KY9970Xy4TwtbgxSPiw/photo.jpg,Helps remind me of my goal,5,0,1.5.11,2020-02-18 22:43:01,,,newest,com.oristats.habitbull +Valeria Acuña,https://lh3.googleusercontent.com/-5_IcyBpe17M/AAAAAAAAAAI/AAAAAAAAAEw/AAKWJJPWUVbGLAwrosmFNvwTxYcRrQYOmw/photo.jpg,"Best app ever! It keeps track of your habits and, if you turn on reminders, it also keeps you accountable of the goals you set. Simply genius!",5,0,1.5.11,2020-02-18 14:02:48,,,newest,com.oristats.habitbull +super man,https://lh3.googleusercontent.com/a-/AOh14GgnurXb8HaR_6XDFcvO9_0ZDiDJ_uOHDT84m002,Very useful,5,0,1.5.11,2020-02-18 12:18:10,,,newest,com.oristats.habitbull +Michael Pyle,https://lh3.googleusercontent.com/a-/AOh14GjZ_UVFOJTyKni9lXOpT8plYHUppeJt1O9vQ6nL,"Easy to use, set up a lot of goals....easy to track.",5,0,1.5.11,2020-02-17 20:04:44,,,newest,com.oristats.habitbull +Jerry Purviance,https://lh3.googleusercontent.com/-Sb4-e5d9ZVI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOXa06Sk36ZvLl21soJtzARO2L41g/photo.jpg,Always reliable. Great statistics for understanding!,5,0,1.5.11,2020-02-17 14:29:20,,,newest,com.oristats.habitbull +Miguel Sequeira,https://lh3.googleusercontent.com/a-/AOh14GjKdTG9MCoP5B2uoPmZ4kf6gPQD9xn9wjZ7RQjXkA,SIMPLE AMAZING!! If you want to change a habit for a good one use this app. Life changing!!!,5,0,1.5.11,2020-02-17 12:58:16,,,newest,com.oristats.habitbull +Nathanael Seiler,https://lh3.googleusercontent.com/-ISlPWXbBUJo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNDbHRo8f-w0aqZfnQEXo2AIfZHxQ/photo.jpg,Very effective and easy to use habit tracker,5,0,1.5.11,2020-02-17 11:37:12,,,newest,com.oristats.habitbull +William Woo,https://lh3.googleusercontent.com/a-/AOh14Gi6S7U6atNG_0DuyK324zk8DFGk1w5YMUlSpoCbQA,A lot of work to make this app. Wonderful for good habbits building.,5,0,1.5.11,2020-02-16 23:44:58,,,newest,com.oristats.habitbull +Gökhan Güldür,https://lh3.googleusercontent.com/--k8rBpIRzFg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMK8-8H0xSRCB3qrTB6a3RkVW4SCw/photo.jpg,Excellent,5,0,1.5.11,2020-02-16 17:09:58,,,newest,com.oristats.habitbull +Jamie Walls,https://lh3.googleusercontent.com/a-/AOh14Gi8IektgVuVPp_ZN5vepX1fFoD1paEVTU1CCgP0QQ,Works great!,5,0,1.5.11,2020-02-16 11:38:07,,,newest,com.oristats.habitbull +Rost Fomin,https://lh3.googleusercontent.com/a-/AOh14Giv-lzfFDmReasYUm10z41FPNPTgbNdRmXKf_ht,"Good app, but does not respect ""do not disturb"" mode and keeps waking me up every night. EDIT: the issue is fixed, giving the deserved 5 stars. EDIT2: this is not fixed, after all. Somehow this app not only not respects the do not disturb mode, but also manages to send notifications one hour after I fell asleep. Today it sounded around 4 am!!!",1,8,2.23.0,2020-03-23 03:12:43,"Thanks for the feedback. This issue was probably related with problem which was fixed in recent update - notifications were played back on multimedia channel. Now notifications work on ringtone audio channel which should be muted when do not disturb is on. Please checkout recent update :) +UPD: Thanks!",2020-03-18 16:58:47,most_relevant,com.levor.liferpgtasks +Sean Piercy,https://lh3.googleusercontent.com/a-/AOh14GjuQ-DF68pOKtUQns_fbL2rmJwNwB8EwOZ3Mi-QBg,"Could be good if basic features like icons weren't locked behind a paid subscription. Update: your calling THEMES an advanced feature because you want to not because it is one.... Sorry but changing the background color to black, which it should be in the first place isn't an advanced feature, it's about one line of code. I'm a software engineer myself and know the difference between the two. Same goes for icons which are essentially to app functionality. Check out Notion for a great example.",1,46,2.21.1,2020-02-03 01:41:40,"Thanks for the review. +Most app features are open for all users in free version. Exceptions are some advanced features like calendar, smart groups and visual enhancements like icons and themes.",2019-09-03 10:36:25,most_relevant,com.levor.liferpgtasks +Something Clever,https://lh3.googleusercontent.com/a-/AOh14GicK8Y5WNOwIijC7nlYBEGLWOv6EKCr8vKJec_q,"There are more effective, and honest, ways to turn a buck in the Playstore. Crippling your app with a paywall only drives home just how unnecessary the app is.",1,0,2.21.1,2020-02-05 02:13:23,"I regret that you did not like the app, but thanks for the feedback.",2020-02-04 12:51:42,most_relevant,com.levor.liferpgtasks +Felipe Faustino,https://lh3.googleusercontent.com/a-/AOh14GgXiTmDPZfYpvmWNuE2G3wb5RT3Hb_ued3Uq5SnUQ,I just cannot be notified. Please. Fix it. So I could give 5 stars.,1,0,2.23.0,2020-03-17 04:25:08,"I can assume that you checked app section in device settings and notifications are enabled. +Could you please also check that app is whitelisted in Battery saver, sometimes it blocks notifications from the apps.",2020-03-18 16:55:44,most_relevant,com.levor.liferpgtasks +Elise,https://lh3.googleusercontent.com/a-/AOh14GgHcSMHc1GKO4yFnY3suprKVO0zJUq6JdSUTxJR,Don't offer to send notifications if you won't actually do it. That was the whole reason why I thought this would help me and it didn't. Will be uninstalling.,1,0,2.22.0,2020-03-10 14:02:55,"Thanks for the feedback. Please check if notifications are allowed in app page in system settings and please also check that app is whitelisted in battery saver, it could block the notifications.",2020-03-18 14:03:27,most_relevant,com.levor.liferpgtasks +Daniel Becker,https://lh3.googleusercontent.com/a-/AOh14GjygozSVd0uFayrCkHkqB5d7icIAX4TUAean2I,Key functionalities of the app are hidden behind a subscription of $6.50 per month with the best deal. Simply shameless.,1,0,2.22.0,2020-02-25 15:20:38,"Thanks for the review. +Month subscription costs $2.50 per month and if year subscription is purchased even $1.50 per month. +Also all major features except calendar and smart groups are fully available in free version.",2020-02-26 07:54:35,most_relevant,com.levor.liferpgtasks +Robert Kelly,https://lh3.googleusercontent.com/a-/AOh14GjgSQRvz0Ua0HjiREp4Cb8bd-PGpcqvppGfS3jO,"Ads too frequent, didn't even finish setting up first days tasks",1,0,2.22.0,2020-02-21 11:33:12,"We are sorry for this, but to continue work on this free app we need revenue from ads. If you don't want to see the ads you can purchase the premium version. Thanks for your understanding!",2020-02-24 11:14:55,most_relevant,com.levor.liferpgtasks +Brandon Akey,https://lh3.googleusercontent.com/a-/AOh14Gi2OMp7nGHTIUS76ZnfTKY5b5spSGLR8LPJrIxtQCs,"Crippled version without even a way to purchase outright. EDIT: I'll be clearer. Many apps features are disabled. But there is no way to just buy the app. The only option is some ongoing payment subscription which makes no sense as this app does not provide any ongoing or backend service, it's just an app! and a simple one at that. It's like going to buy a water bottle and going to check out they take your credit card info and charge you the same price every year that you use the bottle. Bottom line, it's just a scummy business practice.",1,63,2.21.0,2020-01-15 01:13:29,"Dear User, +Could you please contact us via liferpgtasks@gmail.com? We'd love to hear more about this issue in order to assist you.",2020-01-13 10:53:57,most_relevant,com.levor.liferpgtasks +Robert Iczek,https://lh3.googleusercontent.com/a-/AOh14Gg6bI6WYKQUP3v26HN5SG3DYVg5u6Ara3L1Ebcr,"Notifications don't work. It's a shame, because I wanted to buy a subscription. [EDIT] Okay, I already know what's going on. The operating system of my smartphone is MIUI. This app's notifications work when the battery saver mode is turned off. At the same time, in the application settings I have the option: ""No restrictions - battery saver doesn't restrict app's activity."" Other applications similar to this one (ToDo, habits) work with this option and at the same time enable battery saving.",1,6,2.21.0,2019-12-31 01:12:53,"Thanks for the review and for clarification on battery saver. +I'll do research on it and try to find way to show notifications with enabled battery saver.",2020-01-13 10:30:58,most_relevant,com.levor.liferpgtasks +Marius Cirtiu,https://lh3.googleusercontent.com/a-/AOh14GgSvuiupky80FB8IMtjpjcw_MxAYplerHDExeO9Aw,It seems the app is not build for longer and more complex use. It looks like it can be used for people that plan to follow and develop their behaviour but the level of this app is of a game. Takes too long for resolving the bugs and no reaction to feedback. App crashes when using the calendar options. This should not happend when using payed version of the app. Waiting for improvement or giving up using and paying for this app.,1,36,2.19.1,2019-11-15 21:09:44,"Thank you for the review. I'd love to earn 5 stars, so please write to me at liferpgtasks@gmail.com suggesting what I can do to improve.",2019-11-09 20:04:01,most_relevant,com.levor.liferpgtasks +Nihat Babazade,https://lh3.googleusercontent.com/a-/AOh14GiLDsb1TrTcDBX84sMZY4HFtqeJhbQSC7ReO0Kq,The app doesn't notify me when the task is ready to do. Please fix it or tell me what to do. Only when runs the app tasks work.,1,1,2.20.0,2019-11-27 20:57:28,"Please check 2 places in system settings: +1. App pages, notifications should be enabled for the app. +2. Battery saver, on some devices battery saver is too aggressive and block notifications from apps, please disable it for Do It Now app.",2019-11-29 15:36:25,most_relevant,com.levor.liferpgtasks +Ritu Kumawat,https://lh3.googleusercontent.com/-3qFjpYUJYZ0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNO5KuXVN_x5A9_3eo5t3_wrQGhMg/photo.jpg,Rs1050 have been deducted from my account twice for yearly subscription but in the app its showing that i have not purchased any subscription yet,1,1,2.19.1,2019-11-20 20:02:31,I do hope that you fixed your issues with the bank and now could change your review as we discussed via email.,2019-11-29 12:50:33,most_relevant,com.levor.liferpgtasks +Jordan Giese,https://lh3.googleusercontent.com/a-/AOh14GjhhnQtwW78uHYILlKK4U1yPjVRaUkBuS35LZMk,The app is amazing and has the perfect layout for a list RPG . But there's a subscription you have to pay for. Literally completely ruins the purpose of the app.,1,0,,2020-01-12 01:50:25,"Thanks for the review. +A lot of features are free to use in the app. +Also, I'm planning to add one-time payment option in future.",2020-01-14 13:33:48,most_relevant,com.levor.liferpgtasks +Serenity Eterna,https://lh3.googleusercontent.com/a-/AOh14Gho2CCvW-KZjcFw8Ozw1Xxn-d-HSsU96KMUjTEyR8s,"Enough with the pop-up ads! I don't mind if an app has ads, but if I'm going to be interrupted by a 15 second video every 5 seconds while I'm checking off my list I'm deleting your app. And no, I'm not going to subscribe just because you keep popping up the subscription page. If I have to pay to make the app decently usable, you may as well require I pay for it to begin with.",1,8,,2019-06-28 03:36:58,"We are sorry for this, but to continue work on this app we need revenue from ads. If you don't want to see the ads you can purchase the subscription. We'll also review and decrease ads quantity. Thanks for your understanding!",2019-07-05 05:58:44,most_relevant,com.levor.liferpgtasks +RyuYol,https://lh3.googleusercontent.com/a-/AOh14Gihrvs5JpbRJ07yyPuycN2Dhi66MYpWetNj3A8Dzg,"All right so to be clear, this app is amazing and I'm really happy to see that someone has made their own version of it! Even though it's such a great program, it became unusable at day one. It had bugs and limitations that hindered what I was attempting to accomplish. Problems such as: inaccurate characteristics, no quick access from rewards to inventory, non removable default achievements, inaccurate values on skills after undoing a task and hidden xp multiplier from skills to characteristics.",1,2,2.14.1,2019-06-07 21:50:50,"Sorry to hear you are unsatisfied with the app. I hope you can enjoy our app again in the future. Meanwhile we'll work on problems you enlisted to increase app quality. +Thank you for the review.",2019-06-12 15:12:59,most_relevant,com.levor.liferpgtasks +Red Brick,https://lh3.googleusercontent.com/-RbENZlDzgxM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNXU_tB95R1tWOnmcM69es3Peuf2w/photo.jpg,"Looks really complicated, and it's entirely prescription based. I felt like I needed to take a class to learn it. There are a lot of apps like this. I'll try another one.",1,1,,2019-11-14 08:17:09,"I regret that you did not like the app, but thanks for the feedback.",2019-11-29 11:53:36,most_relevant,com.levor.liferpgtasks +Sean Montonye,https://lh3.googleusercontent.com/a-/AOh14Gg0D8sDzdAzJGb0fQ3xaSG491_h-Igr6GCphSirQxY,"read a negative review which had a reply to someone calling out the subscription, they said all ""major"" features are available for free. No, no they aren't you can't access the calendar at all it's an entire tab on the bottom of the app it's pretty ""major"" in my book",1,7,,2019-08-03 04:34:05,"Thank you for the feedback. +Indeed, calendar in subscription only feature. But that's rather advanced app feature which was introduced not far ago. +Major app features in first place are: creation and setup of task, skills, characteristics, rewards, achievements and inventory. Along with that goes a lot of statistics, charts and other free data.",2019-08-04 11:11:05,most_relevant,com.levor.liferpgtasks +Jason Sandoval,https://lh3.googleusercontent.com/a-/AOh14GiUtt1oHcUWFXTY_ZDhUWDSldLrIZSY3M3OsyNVlA,"app crashed after creating a daily task with 2 day habit. would fail and bring up a warning that the task failed and to press OK. however you couldnt tap ok, it just did nothing. this happened every time. gave up and uninstalled the app. on a pixel 2 XL",1,1,,2019-07-29 12:39:02,A new update of the app is coming soon which fixes this problem. Please bear with us.,2019-07-30 11:49:11,most_relevant,com.levor.liferpgtasks +Muhammad Hanafi,https://lh3.googleusercontent.com/a-/AOh14GjLIo5nbUvdMh8lweOEiW41nU3zm15dP0necTrSYxw,Too much ads appeared out of no where.,1,0,,2020-03-02 23:07:36,"I'm sorry for this, but to continue work on this app I need revenue from ads. If you don't want to see the ads you can purchase the premium version. Thanks for your understanding!",2020-03-03 08:16:36,most_relevant,com.levor.liferpgtasks +Alec Machet,https://lh3.googleusercontent.com/a-/AOh14GgvrzKr2sdlSztJInc1c3-hSA1pdAHkoKLCqCCNdQ,Decent app but repeatedly asking me to pay a monthly subscription for a fancy to-do list is completely unacceptable. Take no for an answer.,1,113,2.15.1,2019-07-18 23:54:49,"Thank you for the feedback. +All major app features are available to all users. So you can freely use app without any purchases.",2019-07-23 10:28:22,most_relevant,com.levor.liferpgtasks +Julia Rogers,https://lh3.googleusercontent.com/-ka18PYhVnzY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP77vr5T-i7D3Fxg_BuUJTNEmAPrg/photo.jpg,"Annoying, obstructive ads. got fed up after one had a fake X button that was designed to trick you into tapping on it.",1,2,,2019-04-26 00:06:33,"Thank you for the feedback. +Unfortunately I don't have any control on ads, they are provided by Google Ad network. +Nevertheless, sorry for inconvenience.",2019-04-30 12:18:58,most_relevant,com.levor.liferpgtasks +Leonardo Lombardi,https://lh3.googleusercontent.com/a-/AOh14GiNLA5jcrszfJLbmILJ36pwUp6JYLOZdD9i89n9JTE,I'm sure the dev is well intended. Just no for me. UX is terrible.,1,0,2.18.0,2019-10-25 16:56:12,"Can you please share which features you find difficult to use? +And nevertheless thanks for the review.",2019-10-31 14:32:49,most_relevant,com.levor.liferpgtasks +skyla christison,https://lh3.googleusercontent.com/a-/AOh14GjXuO-oAaZhNLZmr8U1II2u9pCEZrDca37MJaVHj-g,"Super cool if you're a dude and want one of the multitude of dude avatars. If you're a woman, I hope you want to be a nun, a woman holding an umbrella over a puppy, or part of a couple. Not even kidding. Definitely a guy created this app and had an all guy panel of betas.",1,4,2.16.0,2019-09-05 05:30:21,"Sorry to hear you are unsatisfied. +It is possible to add your own icon as a hero avatar. Or even make a photo of yourself. +Icons are just quick access examples, you're not limited to use only them.",2019-09-11 09:07:51,most_relevant,com.levor.liferpgtasks +Franco Loco,https://lh3.googleusercontent.com/-j5cBJc2D71g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNGpXVKe3rug4GDS0ruLQWDk4QABw/photo.jpg,kicks me out of the game instantly. Not for me.,1,13,2.10.1,2019-01-20 13:57:44,Thanks for the heads up. I'll try to figure out and fix this problem.,2019-01-25 15:30:35,most_relevant,com.levor.liferpgtasks +Vasileios Topouzis,https://lh3.googleusercontent.com/a-/AOh14GgpkCnwnjntE-Clqxpce_fbYvZ-GUaeq6zPX393Mw,The pop up adverts are so loud ... Terible !,1,5,2.15.1,2019-07-21 02:14:15,"Really sorry for that, but unfortunately we can't control it. Ads are provided by ad-platform and app can't reduce or mute sounds of it. +Could you please provide screenshots of ads with loud sounds so we could exclude them? You can email us at liferpgtasks@gmail.com.",2019-07-23 10:57:28,most_relevant,com.levor.liferpgtasks +Lubomir Savev,https://lh3.googleusercontent.com/a-/AOh14GjJFkc2rcpiuhAl4P2Grax8ZJgGpWxzWncEVloLdA,"DON'T download. After installation my calendar was FULL of commercials! ""You won an iPhone"" events with alarms.",1,1,,2019-08-27 09:10:41,"Thanks for the feedback. I really doubt that Do It Now caused it, since we don't have any integration with external calendar. We even don't request such permission. Please check different apps or services that do have access to your calendar.",2019-08-27 12:05:40,most_relevant,com.levor.liferpgtasks +Booisha Loitis,https://lh3.googleusercontent.com/a-/AOh14GieSZLWnvAsYHvwhnu-c36s5AIloulRdaHvhMx2,notification not working,1,0,,2018-12-25 03:58:49,Thank you for the heads up. I'll take a look and try to fix them.,2019-01-02 18:02:27,most_relevant,com.levor.liferpgtasks +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Couldn't figure out how to set reminder times won't do anything other then am,1,55,2.11.0,2019-03-16 14:05:17,"Thanks for the feedback. +Indeed, time selector shows time in 24 hours format. +Thanks for the feedback. I'll fix it.",2019-03-18 10:04:03,most_relevant,com.levor.liferpgtasks +Lesley Dye,https://lh3.googleusercontent.com/-gEPcbwAZ-pQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOIw9qbfYnmd8rDKXNqeC_PskV1ow/photo.jpg,"Only just discovered there's a bit of a, sub didn't make that clear before sign up no chance its a cheek doing it sneekly you should be ashamed deleted",1,1,,2020-01-12 18:38:22,We apologize for the inconvenience. Can you be more specific please so that we can identify the issue? Don't hesitate to reach out to us at liferpgtasks@gmail.com.,2020-01-14 13:34:27,most_relevant,com.levor.liferpgtasks +shining star,https://lh3.googleusercontent.com/a-/AOh14Ghc_jyxmnI1BPT3KuAXKOMDdGikoVmncNDz7mfD2g,very bad experience,1,1,,2019-06-14 02:24:32,"Hi, +Based on your review, we cannot gauge exactly what went wrong. Please write to us in detail about the issue at liferpgtasks@gmail.com, so that we can look into it immediately and get it resolved. We would love to give you a seamless experience on our app. +Thanks!",2019-06-14 07:28:57,most_relevant,com.levor.liferpgtasks +Mystee Pulcine,https://lh3.googleusercontent.com/a-/AOh14Gh5ikRrq8_4Jd_Dh7oUqbWONo9SvmaO4XivCIICDg,"I love all the recent changes you have made - especially the ability to undo things in the history. Could you please add an option to manually reorder tasks? I would like to put mine in the order that I do them throughout the day, and none of your sorting allows that. Thanks! Update: it's been 22 months since you said you'd make drag and drop sorting an option. I see monthly updates but not the one feature that would make this app user friendly. Don't promise what you won't deliver.",1,6,2.23.0,2020-03-14 06:37:37,"Thanks for the review and suggestion. +I'll add it to development plans.",2018-05-23 11:16:35,most_relevant,com.levor.liferpgtasks +Joel McKay,https://lh3.googleusercontent.com/a-/AOh14GiD9qkYGSl37WSnHBXqpLK1Hmd3VT6yXts_Q_bp,Tasks don't update their descriptions until you quit and re-open. Can't set more than 7 tasks without paying an absurdly expensive weekly subscription,1,6,2.16.0,2019-08-08 16:02:13,"Thanks for your review and heads up, I'll take a look. +We don't have weekly subscriptions. Only 1 month, 6 month and 1 year.",2019-08-08 10:41:39,most_relevant,com.levor.liferpgtasks +hvffh 7yteey,https://lh3.googleusercontent.com/-uCcSIwyhX3o/AAAAAAAAAAI/AAAAAAAADzU/AAKWJJNw4hBX5ve5fyR9Vven6jKPDa102Q/photo.jpg,Подписка на полгода пропала сразу же после переустановки приложения.,1,0,2.16.0,2019-11-05 07:27:31,"Спасибо за отзыв. +В последние несколько проблем бывают проблемы с синхронизацией покупок в Google Play. +Чаще всего проблема уходит через несколько часов. +Если проблема не ушла - напишите, пожалуйста, на почту, обсудим что можно предпринять или же обсудим возврат средств, если захотите. +Почта: liferpgtasks@gmail.com.",2019-11-05 16:20:43,most_relevant,com.levor.liferpgtasks +Алексей Шевченко,https://lh3.googleusercontent.com/a-/AOh14GgF1FCnO5E5YHqLfqQqhEEHwgV61ZDi7QWRTiRV,"че то вступительного туториала не достаточно, чтобы понять что делать",1,2,2.9.1,2018-12-28 20:44:19,"В приложении есть встроенное руководство пользователя, где добавлены подробности практически по каждой функции приложения. +К тому же я всегда готов ответить на любые вопросы через емейл (liferpgtasks@gmail.com) или же здесь.",2019-01-02 18:13:06,most_relevant,com.levor.liferpgtasks +sventhedog gy,https://lh3.googleusercontent.com/-ENmBHjhyQAY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNKidtUAqS7Cb9AaflSmcwEk_82Ag/photo.jpg,Crashes on android 4.4 (miui 9),1,2,2.9.1,2018-12-04 04:05:00,"Sorry for inconvenience. +Update with fix is available in Google Play.",2018-12-05 10:20:14,most_relevant,com.levor.liferpgtasks +Henry Fugate,https://lh3.googleusercontent.com/a-/AOh14GhDcBH8BXQng2_HY0ESpkRRUvsgVby2OYBeoR22IA,Buggy! Won't let me edit rewards. No.,1,1,2.6.3,2018-07-04 22:13:51,"I am sorry about inconvenience. +I am trying to fix all bugs that are present in app. +Could you please add more details about bug with rewards editing. I just tried few scenarios, everything working fine.",2018-07-05 08:03:37,most_relevant,com.levor.liferpgtasks +Qua Couron,https://lh3.googleusercontent.com/a-/AOh14GimNa2y8Q8hoyfQAkC-YdHF-_3xZzNlNZl5HdDvOA,"Auto-fail only works if you go to each task? That's not auto fail. Makes no +sense. Might as well go back to Life RPG. that feature was the only reason +I even tried this. Subscription model ridiculous. Why would I pay a MONTHLY +fee for some icons? They are helpful icons & necessary mostly, but that's +just ridiculously expensive for some icons. A one time fee is reasonable. +Even if it was like $5. I wanted to like this app, but this got in the way.",1,4,2.6.0,2018-05-18 04:37:18,We're sorry that our pricing model dissapointed you. But it is not mandatory to buy a subscription to use an app. All functions are available in free mode too.,2018-05-04 08:30:35,most_relevant,com.levor.liferpgtasks +Abdullah AbdelAziz,https://lh3.googleusercontent.com/-Pfx7qLkNGjU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOk1TxhtT-SqK-cDuwa24CJFeljwQ/photo.jpg,My entire plan was suddenly removed,1,4,2.5.0,2018-03-31 14:42:16,,,most_relevant,com.levor.liferpgtasks +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,This is worst task game in my life,1,2,2.1.1,2017-12-18 10:58:31,,,most_relevant,com.levor.liferpgtasks +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"The English used is very poor, thus, if the developed cannot master simple rules of grammar, why should I trust them with such sensitive subject matter? Uninstalled!",1,0,2.1.1,2017-12-16 18:50:40,"We're really sorry for inconvenience, but English is not our native language and we will do our best to enhance this part of our app.",2017-12-17 16:32:17,most_relevant,com.levor.liferpgtasks +Gabriel Maisonet,https://lh3.googleusercontent.com/a-/AOh14Gg-xB2Esxbnth5LAyQTsWyzr1GBXF9j6a-3DIeFiQ,Somehow bought it's own subscription? Then I had trouble cancelling. Was enjoying til it stole my money. I never saw any payment authorization window.,1,2,2.0.4,2017-09-26 14:58:55,"We really sorry about appeared misunderstanding. +Subscription is automatically prolongated on monthly basis. The price of subscription is displayed as PRICE/month in Remove ads screen inside app and in Google Play purchase dialog. Also, you could cancel subscription at any time through Google Play app or via play.google.com website.",2017-09-27 07:13:54,most_relevant,com.levor.liferpgtasks +Wilfredo Manrique,https://lh3.googleusercontent.com/a-/AOh14GhegSMjjJclzcZEGQG60loUMvskZEMr2sdG4zaQTdI,Uninstall app that wants sell me every small feature ✔DONE,1,3,2.0.4,2017-09-01 19:39:04,"We really regret that you don't like our app. +And we really tried to make everything available for everyone. All app features except themes are available for both premium and non-premium users. All the differences are themes and ads. That's all.",2017-09-04 07:22:14,most_relevant,com.levor.liferpgtasks +Cathrine Gardnner,https://lh3.googleusercontent.com/-xmAWVvfKvmE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMtZsE6JRUbCiJltqueYkrU8BmEWg/photo.jpg,"This app is very, very, very sexist. When you start the app up and go into the ""icon"" menu for the avatar of your ""hero"" character, the vast majority of the icons possibile to select are definitively male. Worse yet is that all of the ones 'intresting' in thier design - or portray something such as the workplace are entirely male. The few female icons avalible - more than half not even on their own- are showing an entirely narrow view with a subservient feeling in thier portrayal. The developers of this app should be ashamed of such blatant misogyny.",1,14,1.6.0,2017-02-10 20:38:52,Sorry to disappoint you. But you always can use your own picture or even photo. That's just default pack of icons.,2017-02-10 12:10:17,most_relevant,com.levor.liferpgtasks +Kevin Butts,https://lh3.googleusercontent.com/-42FiziGTWhk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMF2yKeL-Y-1UQOO1suBVwHTiJn8w/photo.jpg,"I click undo but retain the XP. No real theme or this app, very bland. Needs character",1,1,,2016-05-17 13:21:18,,,most_relevant,com.levor.liferpgtasks +Kulsum Fatema,https://lh3.googleusercontent.com/-JasQY_zkOFg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOZkY_g6_M6lW1cUXu3WcmKhix6cA/photo.jpg,One of the worst in the genre,1,2,,2017-08-08 09:45:46,"We're really sorry that you dislike our app. +Maybe you could share your thoughts about how we can make it better?",2017-08-08 10:06:06,most_relevant,com.levor.liferpgtasks +Rost Fomin,https://lh3.googleusercontent.com/a-/AOh14Giv-lzfFDmReasYUm10z41FPNPTgbNdRmXKf_ht,"Good app, but does not respect ""do not disturb"" mode and keeps waking me up every night. EDIT: the issue is fixed, giving the deserved 5 stars. EDIT2: this is not fixed, after all. Somehow this app not only not respects the do not disturb mode, but also manages to send notifications one hour after I fell asleep. Today it sounded around 4 am!!!",1,8,2.23.0,2020-03-23 03:12:43,"Thanks for the feedback. This issue was probably related with problem which was fixed in recent update - notifications were played back on multimedia channel. Now notifications work on ringtone audio channel which should be muted when do not disturb is on. Please checkout recent update :) +UPD: Thanks!",2020-03-18 16:58:47,newest,com.levor.liferpgtasks +Felipe Faustino,https://lh3.googleusercontent.com/a-/AOh14GgXiTmDPZfYpvmWNuE2G3wb5RT3Hb_ued3Uq5SnUQ,I just cannot be notified. Please. Fix it. So I could give 5 stars.,1,0,2.23.0,2020-03-17 04:25:08,"I can assume that you checked app section in device settings and notifications are enabled. +Could you please also check that app is whitelisted in Battery saver, sometimes it blocks notifications from the apps.",2020-03-18 16:55:44,newest,com.levor.liferpgtasks +Mystee Pulcine,https://lh3.googleusercontent.com/a-/AOh14Gh5ikRrq8_4Jd_Dh7oUqbWONo9SvmaO4XivCIICDg,"I love all the recent changes you have made - especially the ability to undo things in the history. Could you please add an option to manually reorder tasks? I would like to put mine in the order that I do them throughout the day, and none of your sorting allows that. Thanks! Update: it's been 22 months since you said you'd make drag and drop sorting an option. I see monthly updates but not the one feature that would make this app user friendly. Don't promise what you won't deliver.",1,6,2.23.0,2020-03-14 06:37:37,"Thanks for the review and suggestion. +I'll add it to development plans.",2018-05-23 11:16:35,newest,com.levor.liferpgtasks +Elise,https://lh3.googleusercontent.com/a-/AOh14GgHcSMHc1GKO4yFnY3suprKVO0zJUq6JdSUTxJR,Don't offer to send notifications if you won't actually do it. That was the whole reason why I thought this would help me and it didn't. Will be uninstalling.,1,0,2.22.0,2020-03-10 14:02:55,"Thanks for the feedback. Please check if notifications are allowed in app page in system settings and please also check that app is whitelisted in battery saver, it could block the notifications.",2020-03-18 14:03:27,newest,com.levor.liferpgtasks +Muhammad Hanafi,https://lh3.googleusercontent.com/a-/AOh14GjLIo5nbUvdMh8lweOEiW41nU3zm15dP0necTrSYxw,Too much ads appeared out of no where.,1,0,,2020-03-02 23:07:36,"I'm sorry for this, but to continue work on this app I need revenue from ads. If you don't want to see the ads you can purchase the premium version. Thanks for your understanding!",2020-03-03 08:16:36,newest,com.levor.liferpgtasks +Daniel Becker,https://lh3.googleusercontent.com/a-/AOh14GjygozSVd0uFayrCkHkqB5d7icIAX4TUAean2I,Key functionalities of the app are hidden behind a subscription of $6.50 per month with the best deal. Simply shameless.,1,0,2.22.0,2020-02-25 15:20:38,"Thanks for the review. +Month subscription costs $2.50 per month and if year subscription is purchased even $1.50 per month. +Also all major features except calendar and smart groups are fully available in free version.",2020-02-26 07:54:35,newest,com.levor.liferpgtasks +Robert Kelly,https://lh3.googleusercontent.com/a-/AOh14GjgSQRvz0Ua0HjiREp4Cb8bd-PGpcqvppGfS3jO,"Ads too frequent, didn't even finish setting up first days tasks",1,0,2.22.0,2020-02-21 11:33:12,"We are sorry for this, but to continue work on this free app we need revenue from ads. If you don't want to see the ads you can purchase the premium version. Thanks for your understanding!",2020-02-24 11:14:55,newest,com.levor.liferpgtasks +Something Clever,https://lh3.googleusercontent.com/a-/AOh14GicK8Y5WNOwIijC7nlYBEGLWOv6EKCr8vKJec_q,"There are more effective, and honest, ways to turn a buck in the Playstore. Crippling your app with a paywall only drives home just how unnecessary the app is.",1,0,2.21.1,2020-02-05 02:13:23,"I regret that you did not like the app, but thanks for the feedback.",2020-02-04 12:51:42,newest,com.levor.liferpgtasks +Sean Piercy,https://lh3.googleusercontent.com/a-/AOh14GjuQ-DF68pOKtUQns_fbL2rmJwNwB8EwOZ3Mi-QBg,"Could be good if basic features like icons weren't locked behind a paid subscription. Update: your calling THEMES an advanced feature because you want to not because it is one.... Sorry but changing the background color to black, which it should be in the first place isn't an advanced feature, it's about one line of code. I'm a software engineer myself and know the difference between the two. Same goes for icons which are essentially to app functionality. Check out Notion for a great example.",1,46,2.21.1,2020-02-03 01:41:40,"Thanks for the review. +Most app features are open for all users in free version. Exceptions are some advanced features like calendar, smart groups and visual enhancements like icons and themes.",2019-09-03 10:36:25,newest,com.levor.liferpgtasks +Brandon Akey,https://lh3.googleusercontent.com/a-/AOh14Gi2OMp7nGHTIUS76ZnfTKY5b5spSGLR8LPJrIxtQCs,"Crippled version without even a way to purchase outright. EDIT: I'll be clearer. Many apps features are disabled. But there is no way to just buy the app. The only option is some ongoing payment subscription which makes no sense as this app does not provide any ongoing or backend service, it's just an app! and a simple one at that. It's like going to buy a water bottle and going to check out they take your credit card info and charge you the same price every year that you use the bottle. Bottom line, it's just a scummy business practice.",1,63,2.21.0,2020-01-15 01:13:29,"Dear User, +Could you please contact us via liferpgtasks@gmail.com? We'd love to hear more about this issue in order to assist you.",2020-01-13 10:53:57,newest,com.levor.liferpgtasks +Lesley Dye,https://lh3.googleusercontent.com/-gEPcbwAZ-pQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOIw9qbfYnmd8rDKXNqeC_PskV1ow/photo.jpg,"Only just discovered there's a bit of a, sub didn't make that clear before sign up no chance its a cheek doing it sneekly you should be ashamed deleted",1,1,,2020-01-12 18:38:22,We apologize for the inconvenience. Can you be more specific please so that we can identify the issue? Don't hesitate to reach out to us at liferpgtasks@gmail.com.,2020-01-14 13:34:27,newest,com.levor.liferpgtasks +Jordan Giese,https://lh3.googleusercontent.com/a-/AOh14GjhhnQtwW78uHYILlKK4U1yPjVRaUkBuS35LZMk,The app is amazing and has the perfect layout for a list RPG . But there's a subscription you have to pay for. Literally completely ruins the purpose of the app.,1,0,,2020-01-12 01:50:25,"Thanks for the review. +A lot of features are free to use in the app. +Also, I'm planning to add one-time payment option in future.",2020-01-14 13:33:48,newest,com.levor.liferpgtasks +Robert Iczek,https://lh3.googleusercontent.com/a-/AOh14Gg6bI6WYKQUP3v26HN5SG3DYVg5u6Ara3L1Ebcr,"Notifications don't work. It's a shame, because I wanted to buy a subscription. [EDIT] Okay, I already know what's going on. The operating system of my smartphone is MIUI. This app's notifications work when the battery saver mode is turned off. At the same time, in the application settings I have the option: ""No restrictions - battery saver doesn't restrict app's activity."" Other applications similar to this one (ToDo, habits) work with this option and at the same time enable battery saving.",1,6,2.21.0,2019-12-31 01:12:53,"Thanks for the review and for clarification on battery saver. +I'll do research on it and try to find way to show notifications with enabled battery saver.",2020-01-13 10:30:58,newest,com.levor.liferpgtasks +Nihat Babazade,https://lh3.googleusercontent.com/a-/AOh14GiLDsb1TrTcDBX84sMZY4HFtqeJhbQSC7ReO0Kq,The app doesn't notify me when the task is ready to do. Please fix it or tell me what to do. Only when runs the app tasks work.,1,1,2.20.0,2019-11-27 20:57:28,"Please check 2 places in system settings: +1. App pages, notifications should be enabled for the app. +2. Battery saver, on some devices battery saver is too aggressive and block notifications from apps, please disable it for Do It Now app.",2019-11-29 15:36:25,newest,com.levor.liferpgtasks +Ritu Kumawat,https://lh3.googleusercontent.com/-3qFjpYUJYZ0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNO5KuXVN_x5A9_3eo5t3_wrQGhMg/photo.jpg,Rs1050 have been deducted from my account twice for yearly subscription but in the app its showing that i have not purchased any subscription yet,1,1,2.19.1,2019-11-20 20:02:31,I do hope that you fixed your issues with the bank and now could change your review as we discussed via email.,2019-11-29 12:50:33,newest,com.levor.liferpgtasks +Marius Cirtiu,https://lh3.googleusercontent.com/a-/AOh14GgSvuiupky80FB8IMtjpjcw_MxAYplerHDExeO9Aw,It seems the app is not build for longer and more complex use. It looks like it can be used for people that plan to follow and develop their behaviour but the level of this app is of a game. Takes too long for resolving the bugs and no reaction to feedback. App crashes when using the calendar options. This should not happend when using payed version of the app. Waiting for improvement or giving up using and paying for this app.,1,36,2.19.1,2019-11-15 21:09:44,"Thank you for the review. I'd love to earn 5 stars, so please write to me at liferpgtasks@gmail.com suggesting what I can do to improve.",2019-11-09 20:04:01,newest,com.levor.liferpgtasks +Red Brick,https://lh3.googleusercontent.com/-RbENZlDzgxM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNXU_tB95R1tWOnmcM69es3Peuf2w/photo.jpg,"Looks really complicated, and it's entirely prescription based. I felt like I needed to take a class to learn it. There are a lot of apps like this. I'll try another one.",1,1,,2019-11-14 08:17:09,"I regret that you did not like the app, but thanks for the feedback.",2019-11-29 11:53:36,newest,com.levor.liferpgtasks +hvffh 7yteey,https://lh3.googleusercontent.com/-uCcSIwyhX3o/AAAAAAAAAAI/AAAAAAAADzU/AAKWJJNw4hBX5ve5fyR9Vven6jKPDa102Q/photo.jpg,Подписка на полгода пропала сразу же после переустановки приложения.,1,0,2.16.0,2019-11-05 07:27:31,"Спасибо за отзыв. +В последние несколько проблем бывают проблемы с синхронизацией покупок в Google Play. +Чаще всего проблема уходит через несколько часов. +Если проблема не ушла - напишите, пожалуйста, на почту, обсудим что можно предпринять или же обсудим возврат средств, если захотите. +Почта: liferpgtasks@gmail.com.",2019-11-05 16:20:43,newest,com.levor.liferpgtasks +Leonardo Lombardi,https://lh3.googleusercontent.com/a-/AOh14GiNLA5jcrszfJLbmILJ36pwUp6JYLOZdD9i89n9JTE,I'm sure the dev is well intended. Just no for me. UX is terrible.,1,0,2.18.0,2019-10-25 16:56:12,"Can you please share which features you find difficult to use? +And nevertheless thanks for the review.",2019-10-31 14:32:49,newest,com.levor.liferpgtasks +skyla christison,https://lh3.googleusercontent.com/a-/AOh14GjXuO-oAaZhNLZmr8U1II2u9pCEZrDca37MJaVHj-g,"Super cool if you're a dude and want one of the multitude of dude avatars. If you're a woman, I hope you want to be a nun, a woman holding an umbrella over a puppy, or part of a couple. Not even kidding. Definitely a guy created this app and had an all guy panel of betas.",1,4,2.16.0,2019-09-05 05:30:21,"Sorry to hear you are unsatisfied. +It is possible to add your own icon as a hero avatar. Or even make a photo of yourself. +Icons are just quick access examples, you're not limited to use only them.",2019-09-11 09:07:51,newest,com.levor.liferpgtasks +Lubomir Savev,https://lh3.googleusercontent.com/a-/AOh14GjJFkc2rcpiuhAl4P2Grax8ZJgGpWxzWncEVloLdA,"DON'T download. After installation my calendar was FULL of commercials! ""You won an iPhone"" events with alarms.",1,1,,2019-08-27 09:10:41,"Thanks for the feedback. I really doubt that Do It Now caused it, since we don't have any integration with external calendar. We even don't request such permission. Please check different apps or services that do have access to your calendar.",2019-08-27 12:05:40,newest,com.levor.liferpgtasks +Joel McKay,https://lh3.googleusercontent.com/a-/AOh14GiD9qkYGSl37WSnHBXqpLK1Hmd3VT6yXts_Q_bp,Tasks don't update their descriptions until you quit and re-open. Can't set more than 7 tasks without paying an absurdly expensive weekly subscription,1,6,2.16.0,2019-08-08 16:02:13,"Thanks for your review and heads up, I'll take a look. +We don't have weekly subscriptions. Only 1 month, 6 month and 1 year.",2019-08-08 10:41:39,newest,com.levor.liferpgtasks +Sean Montonye,https://lh3.googleusercontent.com/a-/AOh14Gg0D8sDzdAzJGb0fQ3xaSG491_h-Igr6GCphSirQxY,"read a negative review which had a reply to someone calling out the subscription, they said all ""major"" features are available for free. No, no they aren't you can't access the calendar at all it's an entire tab on the bottom of the app it's pretty ""major"" in my book",1,7,,2019-08-03 04:34:05,"Thank you for the feedback. +Indeed, calendar in subscription only feature. But that's rather advanced app feature which was introduced not far ago. +Major app features in first place are: creation and setup of task, skills, characteristics, rewards, achievements and inventory. Along with that goes a lot of statistics, charts and other free data.",2019-08-04 11:11:05,newest,com.levor.liferpgtasks +Jason Sandoval,https://lh3.googleusercontent.com/a-/AOh14GiUtt1oHcUWFXTY_ZDhUWDSldLrIZSY3M3OsyNVlA,"app crashed after creating a daily task with 2 day habit. would fail and bring up a warning that the task failed and to press OK. however you couldnt tap ok, it just did nothing. this happened every time. gave up and uninstalled the app. on a pixel 2 XL",1,1,,2019-07-29 12:39:02,A new update of the app is coming soon which fixes this problem. Please bear with us.,2019-07-30 11:49:11,newest,com.levor.liferpgtasks +Vasileios Topouzis,https://lh3.googleusercontent.com/a-/AOh14GgpkCnwnjntE-Clqxpce_fbYvZ-GUaeq6zPX393Mw,The pop up adverts are so loud ... Terible !,1,5,2.15.1,2019-07-21 02:14:15,"Really sorry for that, but unfortunately we can't control it. Ads are provided by ad-platform and app can't reduce or mute sounds of it. +Could you please provide screenshots of ads with loud sounds so we could exclude them? You can email us at liferpgtasks@gmail.com.",2019-07-23 10:57:28,newest,com.levor.liferpgtasks +Alec Machet,https://lh3.googleusercontent.com/a-/AOh14GgvrzKr2sdlSztJInc1c3-hSA1pdAHkoKLCqCCNdQ,Decent app but repeatedly asking me to pay a monthly subscription for a fancy to-do list is completely unacceptable. Take no for an answer.,1,113,2.15.1,2019-07-18 23:54:49,"Thank you for the feedback. +All major app features are available to all users. So you can freely use app without any purchases.",2019-07-23 10:28:22,newest,com.levor.liferpgtasks +Serenity Eterna,https://lh3.googleusercontent.com/a-/AOh14Gho2CCvW-KZjcFw8Ozw1Xxn-d-HSsU96KMUjTEyR8s,"Enough with the pop-up ads! I don't mind if an app has ads, but if I'm going to be interrupted by a 15 second video every 5 seconds while I'm checking off my list I'm deleting your app. And no, I'm not going to subscribe just because you keep popping up the subscription page. If I have to pay to make the app decently usable, you may as well require I pay for it to begin with.",1,8,,2019-06-28 03:36:58,"We are sorry for this, but to continue work on this app we need revenue from ads. If you don't want to see the ads you can purchase the subscription. We'll also review and decrease ads quantity. Thanks for your understanding!",2019-07-05 05:58:44,newest,com.levor.liferpgtasks +shining star,https://lh3.googleusercontent.com/a-/AOh14Ghc_jyxmnI1BPT3KuAXKOMDdGikoVmncNDz7mfD2g,very bad experience,1,1,,2019-06-14 02:24:32,"Hi, +Based on your review, we cannot gauge exactly what went wrong. Please write to us in detail about the issue at liferpgtasks@gmail.com, so that we can look into it immediately and get it resolved. We would love to give you a seamless experience on our app. +Thanks!",2019-06-14 07:28:57,newest,com.levor.liferpgtasks +RyuYol,https://lh3.googleusercontent.com/a-/AOh14Gihrvs5JpbRJ07yyPuycN2Dhi66MYpWetNj3A8Dzg,"All right so to be clear, this app is amazing and I'm really happy to see that someone has made their own version of it! Even though it's such a great program, it became unusable at day one. It had bugs and limitations that hindered what I was attempting to accomplish. Problems such as: inaccurate characteristics, no quick access from rewards to inventory, non removable default achievements, inaccurate values on skills after undoing a task and hidden xp multiplier from skills to characteristics.",1,2,2.14.1,2019-06-07 21:50:50,"Sorry to hear you are unsatisfied with the app. I hope you can enjoy our app again in the future. Meanwhile we'll work on problems you enlisted to increase app quality. +Thank you for the review.",2019-06-12 15:12:59,newest,com.levor.liferpgtasks +Julia Rogers,https://lh3.googleusercontent.com/-ka18PYhVnzY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP77vr5T-i7D3Fxg_BuUJTNEmAPrg/photo.jpg,"Annoying, obstructive ads. got fed up after one had a fake X button that was designed to trick you into tapping on it.",1,2,,2019-04-26 00:06:33,"Thank you for the feedback. +Unfortunately I don't have any control on ads, they are provided by Google Ad network. +Nevertheless, sorry for inconvenience.",2019-04-30 12:18:58,newest,com.levor.liferpgtasks +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Couldn't figure out how to set reminder times won't do anything other then am,1,55,2.11.0,2019-03-16 14:05:17,"Thanks for the feedback. +Indeed, time selector shows time in 24 hours format. +Thanks for the feedback. I'll fix it.",2019-03-18 10:04:03,newest,com.levor.liferpgtasks +Franco Loco,https://lh3.googleusercontent.com/-j5cBJc2D71g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNGpXVKe3rug4GDS0ruLQWDk4QABw/photo.jpg,kicks me out of the game instantly. Not for me.,1,13,2.10.1,2019-01-20 13:57:44,Thanks for the heads up. I'll try to figure out and fix this problem.,2019-01-25 15:30:35,newest,com.levor.liferpgtasks +Алексей Шевченко,https://lh3.googleusercontent.com/a-/AOh14GgF1FCnO5E5YHqLfqQqhEEHwgV61ZDi7QWRTiRV,"че то вступительного туториала не достаточно, чтобы понять что делать",1,2,2.9.1,2018-12-28 20:44:19,"В приложении есть встроенное руководство пользователя, где добавлены подробности практически по каждой функции приложения. +К тому же я всегда готов ответить на любые вопросы через емейл (liferpgtasks@gmail.com) или же здесь.",2019-01-02 18:13:06,newest,com.levor.liferpgtasks +Booisha Loitis,https://lh3.googleusercontent.com/a-/AOh14GieSZLWnvAsYHvwhnu-c36s5AIloulRdaHvhMx2,notification not working,1,0,,2018-12-25 03:58:49,Thank you for the heads up. I'll take a look and try to fix them.,2019-01-02 18:02:27,newest,com.levor.liferpgtasks +sventhedog gy,https://lh3.googleusercontent.com/-ENmBHjhyQAY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNKidtUAqS7Cb9AaflSmcwEk_82Ag/photo.jpg,Crashes on android 4.4 (miui 9),1,2,2.9.1,2018-12-04 04:05:00,"Sorry for inconvenience. +Update with fix is available in Google Play.",2018-12-05 10:20:14,newest,com.levor.liferpgtasks +Henry Fugate,https://lh3.googleusercontent.com/a-/AOh14GhDcBH8BXQng2_HY0ESpkRRUvsgVby2OYBeoR22IA,Buggy! Won't let me edit rewards. No.,1,1,2.6.3,2018-07-04 22:13:51,"I am sorry about inconvenience. +I am trying to fix all bugs that are present in app. +Could you please add more details about bug with rewards editing. I just tried few scenarios, everything working fine.",2018-07-05 08:03:37,newest,com.levor.liferpgtasks +Qua Couron,https://lh3.googleusercontent.com/a-/AOh14GimNa2y8Q8hoyfQAkC-YdHF-_3xZzNlNZl5HdDvOA,"Auto-fail only works if you go to each task? That's not auto fail. Makes no +sense. Might as well go back to Life RPG. that feature was the only reason +I even tried this. Subscription model ridiculous. Why would I pay a MONTHLY +fee for some icons? They are helpful icons & necessary mostly, but that's +just ridiculously expensive for some icons. A one time fee is reasonable. +Even if it was like $5. I wanted to like this app, but this got in the way.",1,4,2.6.0,2018-05-18 04:37:18,We're sorry that our pricing model dissapointed you. But it is not mandatory to buy a subscription to use an app. All functions are available in free mode too.,2018-05-04 08:30:35,newest,com.levor.liferpgtasks +Abdullah AbdelAziz,https://lh3.googleusercontent.com/-Pfx7qLkNGjU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOk1TxhtT-SqK-cDuwa24CJFeljwQ/photo.jpg,My entire plan was suddenly removed,1,4,2.5.0,2018-03-31 14:42:16,,,newest,com.levor.liferpgtasks +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,This is worst task game in my life,1,2,2.1.1,2017-12-18 10:58:31,,,newest,com.levor.liferpgtasks +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"The English used is very poor, thus, if the developed cannot master simple rules of grammar, why should I trust them with such sensitive subject matter? Uninstalled!",1,0,2.1.1,2017-12-16 18:50:40,"We're really sorry for inconvenience, but English is not our native language and we will do our best to enhance this part of our app.",2017-12-17 16:32:17,newest,com.levor.liferpgtasks +Gabriel Maisonet,https://lh3.googleusercontent.com/a-/AOh14Gg-xB2Esxbnth5LAyQTsWyzr1GBXF9j6a-3DIeFiQ,Somehow bought it's own subscription? Then I had trouble cancelling. Was enjoying til it stole my money. I never saw any payment authorization window.,1,2,2.0.4,2017-09-26 14:58:55,"We really sorry about appeared misunderstanding. +Subscription is automatically prolongated on monthly basis. The price of subscription is displayed as PRICE/month in Remove ads screen inside app and in Google Play purchase dialog. Also, you could cancel subscription at any time through Google Play app or via play.google.com website.",2017-09-27 07:13:54,newest,com.levor.liferpgtasks +Wilfredo Manrique,https://lh3.googleusercontent.com/a-/AOh14GhegSMjjJclzcZEGQG60loUMvskZEMr2sdG4zaQTdI,Uninstall app that wants sell me every small feature ✔DONE,1,3,2.0.4,2017-09-01 19:39:04,"We really regret that you don't like our app. +And we really tried to make everything available for everyone. All app features except themes are available for both premium and non-premium users. All the differences are themes and ads. That's all.",2017-09-04 07:22:14,newest,com.levor.liferpgtasks +Kulsum Fatema,https://lh3.googleusercontent.com/-JasQY_zkOFg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOZkY_g6_M6lW1cUXu3WcmKhix6cA/photo.jpg,One of the worst in the genre,1,2,,2017-08-08 09:45:46,"We're really sorry that you dislike our app. +Maybe you could share your thoughts about how we can make it better?",2017-08-08 10:06:06,newest,com.levor.liferpgtasks +Cathrine Gardnner,https://lh3.googleusercontent.com/-xmAWVvfKvmE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMtZsE6JRUbCiJltqueYkrU8BmEWg/photo.jpg,"This app is very, very, very sexist. When you start the app up and go into the ""icon"" menu for the avatar of your ""hero"" character, the vast majority of the icons possibile to select are definitively male. Worse yet is that all of the ones 'intresting' in thier design - or portray something such as the workplace are entirely male. The few female icons avalible - more than half not even on their own- are showing an entirely narrow view with a subservient feeling in thier portrayal. The developers of this app should be ashamed of such blatant misogyny.",1,14,1.6.0,2017-02-10 20:38:52,Sorry to disappoint you. But you always can use your own picture or even photo. That's just default pack of icons.,2017-02-10 12:10:17,newest,com.levor.liferpgtasks +Kevin Butts,https://lh3.googleusercontent.com/-42FiziGTWhk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMF2yKeL-Y-1UQOO1suBVwHTiJn8w/photo.jpg,"I click undo but retain the XP. No real theme or this app, very bland. Needs character",1,1,,2016-05-17 13:21:18,,,newest,com.levor.liferpgtasks +Jennifer Januszkiewicz,https://lh3.googleusercontent.com/a-/AOh14GiEr9UUEU11hMGWg3xH6IYuGaq_c7Tya27X0osw,"So cool, but insanely expensive. Also, wasn't clear how to get started even with the manual. I have no reading comprehension issues, there is just no ""getting started"" section or similar. Then I saw the fees, $50?! WOW that is high! I hate when people gripe that they're asked to pay for apps & am a big fan of supporting developers, but $50 is nuts. This isn't a service one subscribes to, ex. Spotify, and $50 is NUTS to purchase an app. Not trying to be mean & am fine paying but $50 is way high.",2,9,2.23.0,2020-03-17 03:11:50,"Thanks for your feedback. +I have plans to work on some sort of onboarding guide with characteristics\skills\tasks selection from predefined list. +I suppose it will make getting started a bit easier. +Also I'm experimenting with premium purchase, I've added it just last month. So it's price might be changed in future.",2020-03-18 16:54:22,most_relevant,com.levor.liferpgtasks +Cun Cis,https://lh3.googleusercontent.com/a-/AOh14GiDwrJ115ES8CfwVaEt-43EU4qK6itMxfN_0dstmA,"When I checklist Today's note, automatically Overdue's Note checked too?? what's wrong..??",2,0,2.23.0,2020-03-25 13:27:49,"Some tasks can be shown in multiple groups. +There's an option in app settings to show overdue tasks in Today and Tomorrow groups. +I can assume that it is enabled. +So all your overdue tasks will be shown in both Overdue and Today tasks.",2020-03-30 17:32:08,most_relevant,com.levor.liferpgtasks +Abdullah Shahzad,https://lh3.googleusercontent.com/a-/AOh14GjYSUw-nl1-OhgQhSAeKC2i4FG6GOOQbAfNSUlTOA,notifiction is not working properly. When I set a task reminder when it is near finish dead line. App doesnot send me task notification about its deadline. Not Working,2,30,2.22.0,2020-02-24 14:03:19,"Thank you for the feedback. +Could you please try to update the app. +I can see that you are using version 2.16, latest app version is 2.22 and I added some fixes for notifications in newer version.",2020-02-24 11:18:25,most_relevant,com.levor.liferpgtasks +CJ John,https://lh3.googleusercontent.com/-TZFFYXhFa6E/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOAw2MbsCshE30etyLtC4TwBYLTCQ/photo.jpg,"I started getting notifications but all came at the same time instead of their specified times, so just removed them and no longer use. Biggest feature I would like see fixed is there seem to be issues with using the ""Today"" option for the task list Widget. Sometimes will only show one task and sometimes when I can complete all my tasks, the next day the list doesn't refresh, still says ""All tasks are done!""",2,5,2.21.0,2019-12-28 19:15:25,Usually this problem is related to app system settings where notifications are forbidden or to battery saver which could also block notifications from apps. Please double check this settings.,2019-11-29 11:57:07,most_relevant,com.levor.liferpgtasks +Laura Roberts,https://lh3.googleusercontent.com/a-/AOh14GjDql0jBppNkice-69b27K0BIW3MJMDw3oC3hGq,"Too complicated. I spent a half hour looking at the guide, trying to figure it out. Created new characteristics and tasks, but on the home page, there's no drop-down to choose a task. When I saw I'd have to create one every time, I decided to uninstall. Suggestion: create tutorial. No one has time for the long guide. If we did, we wouldn't need a productivity app.",2,6,2.19.0,2019-11-12 17:11:54,"Thanks for the review and for suggestion. +Great idea with tutorial.",2019-11-29 11:47:06,most_relevant,com.levor.liferpgtasks +James Hebdon,https://lh3.googleusercontent.com/a-/AOh14Gi2CQU_njNG4YJqG5FNcZL0BV5LsG_pYxOFFs93,"Do you love apps that design their experience to be poor unless you pay ongoing ""subscriptions"" for static feature sets that make the experience barely tolerable? Do you prefer having money siphoned from your account over and over again instead of paying a single small fee once for an app, like we used to see? Then this is the app for you! Add one more debit to your bank account they hope you'll forget about (and statistically speaking - you will) for a stagnant app you'll forget about in a week",2,4,2.19.0,2019-11-13 07:34:27,,,most_relevant,com.levor.liferpgtasks +Paul Wintz,https://lh3.googleusercontent.com/a-/AOh14GjWeP9VnkYh3v1ezOv9rWc7-8SrdzmdNZHTR5PcBw,"I was going to give 4 stars, but the app does something kinda sleazy where it asks you what you would rate it and only redirects you to Google play if you said five stars, so I lowered it to 2 stars.",2,98,2.21.0,2019-12-29 21:20:52,"Thanks for the review. +Yes, you're right, if users rated app 4 and lower than there's something wrong with the app and we kindly ask users to give us feedback on it to fix it.",2020-01-13 10:27:26,most_relevant,com.levor.liferpgtasks +Michelle Badeau,https://lh3.googleusercontent.com/a-/AOh14GjIBUmfyHV283T4KpIvTnIuenCdO_VoCJjwpZxZ,"Confusing, over complicated, and bland looking. The fact that I had to go delete the habits that it had already chosen for me, made it worse",2,3,2.21.0,2020-01-05 00:31:18,"Thanks for the review. +Initial tasks are mostly added as an examples of different app use cases. +That's expected that at least part of them will be deleted. +Please share what features you find difficult to use.",2020-01-13 11:05:56,most_relevant,com.levor.liferpgtasks +faezeh koohkan,https://lh3.googleusercontent.com/-sB2AnFjQs3Y/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNipG2LeQ_uSlWUKJd9lwbe8dLSkQ/photo.jpg,I liked it but most of intresting features was unable until you purchase them.,2,0,2.20.0,2019-11-30 07:38:25,"Some features can be opened via referral store. +But unfortunately, app should be monetized in some way to enhance and support it, so there will be features that are available only after purchase.",2019-12-02 14:57:13,most_relevant,com.levor.liferpgtasks +Tuukka Rinkinen,https://lh3.googleusercontent.com/a-/AOh14GhRZVSDOI9rRFjyWaw9QO8LN3GhfhhC4-Q_Cd-L5g,"Ok concept, but just takes way too much effort to make the core concept even work on a basic level. Kind of feels like this kind of an app needs some sort of AI with suggestions for every parameter, and sync between different devices, to get the basic functionality into usable state.",2,0,2.12.0,2020-03-27 21:09:27,"Thanks for the feedback. +I'll try to make app easier to use.",2020-03-30 17:39:10,most_relevant,com.levor.liferpgtasks +A анонимный,https://lh3.googleusercontent.com/-2OzjRaTCGMc/AAAAAAAAAAI/AAAAAAACCSA/AAKWJJNSpofCJOykPuDW60MOoFxOBc-Myw/photo.jpg,"One of the most expensive apps I have ever seen or tried. Everything costs money. Subscription? Check. Paid themes? Check. I mean, I spent a fortune on apps, and I am in favor of continuous support, but still. Losing my lifetime savings is just not okay. Reminds me of the app Newton Mail where they went from free to Oh My God This Is Expensive. IMO users would sub way more if the options were affordable. Sorry for 2/5 but if an app is inaccessible due to prices, I can't say that it's an ok app",2,0,,2020-02-18 07:14:16,"Thanks for the feedback. +Most features in app are opened for use without any purchases. Exceptions are advanced features like calendar and smart tasks and cosmetic improvements - themes, icons, sounds etc.",2020-02-18 18:28:35,most_relevant,com.levor.liferpgtasks +christian demitri,https://lh3.googleusercontent.com/-nQ-oyihqyHE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOtajs8FmUaCdZyLlLwENFVcZ8trw/photo.jpg,"Good idea, implementation to be revised. The management of the task is not clear. The dates are showed in a confusing way. Again, the concept is good, but the user interface has to be improved and updated.",2,0,,2020-04-03 06:18:18,"Thanks for the review. +I'll do my best to improve app quality, including user interfase.",2020-04-06 07:20:02,most_relevant,com.levor.liferpgtasks +Adriana Villanueva,https://lh3.googleusercontent.com/a-/AOh14GggyC8nguYLmwqJojvWTulMlV9mld9j3EY06vCVsA,"I try to set tasks for only specific days of the week, but it does Not work. After I complete the task that's it. It's done forever, doesn't repeat. Since most of my tasks need this feature to work...the app really isn't good for me.",2,0,,2020-01-02 20:04:39,"Thanks for the review. +Please check repeats field when you set up tasks. Looks like you set too little repeats and when they were done - task was marked as done.",2020-01-13 10:33:25,most_relevant,com.levor.liferpgtasks +M. Zakieザーキーですが,https://lh3.googleusercontent.com/a-/AOh14GjxrrSbIcGbKGM_FEJTkXxKyg1IubBp0qi4wwAyPg,"Annoying backup system. I've had installed this app and logged in with Google account once. I also tried some of the app's features, but I uninstalled again because of reasons. After some times, I decided to install it again. So I made my tasks and the others without logging in first (because I forgot). Then, when I logged in with my Google account after that, it replace my current data with the older one without warning. Now all my newly created, more complete data is all gone.",2,1,2.13.0,2019-04-29 17:49:10,"Thank you for the feedback. +I'll work on backup system to make it more reliable and convenient.",2019-04-30 12:15:52,most_relevant,com.levor.liferpgtasks +Craig Paulk,https://lh3.googleusercontent.com/a-/AOh14GhHwQ2SZGMvalB_hPNGrCMmQifeswD8jPqOItvgWw,"Spending $10 once or $5/year for a subscription would make sense to me; but paying $15/year to use a to-do list (when discounted) is really excessive. This is a great tool - actually, I love it; but I find it ridiculous to pay so much just to TEMPORARILY unlock basic features like a calendar. Edit: Since writing the above review, I've found cheaper/free alternatives. The one I'm using is called Treat Yourself. It's free and doesn't look great, but it serves my needs just right and I love it.",2,10,2.17.0,2019-09-16 22:15:03,"Thank you for the review. +Subscription not only allows you to use advanced features like calendar or smart groups, but also allows to improve and polish app. Users interest and support with subscriptions allowed to create a lot of features in the app, including calendar. By the way, right now we have discounts on all types of subscriptions.",2019-09-03 10:13:58,most_relevant,com.levor.liferpgtasks +Black Pug,https://lh3.googleusercontent.com/-SJ1aVyX3Rv8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPtS6UXIgpZUTK6hJYY5eJCQ7bg5A/photo.jpg,Convoluted way of editing sub tasks and the undo button only works in te immediate moment after checking. Stats can't be reset. All the little thingd take a long time to set up due to the way interface is handled. It's also weird how 'done' can't be hidden.,2,1,2.8.1,2019-01-01 14:08:28,"Sorry if app disappointed you. +You can undo any task execution from the tasks history (3 dots in toolbar in tasks section, History). Also you can reset everything and reset only the progress in settings.",2019-01-02 18:34:12,most_relevant,com.levor.liferpgtasks +Jessie D,https://lh3.googleusercontent.com/-uadO3z56V8g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOhI3ws0jpXTT62bWTSnzfHNL00tA/photo.jpg,"doesn't do what I need it to do with setting recurring alarms, such as every 3 hours forever. it just says ""how many times"" do you want this to repeat but doesn't let you choose hourly. Just daily, weekly, etc.",2,4,2.9.1,2018-12-28 07:27:53,"Unfortunately there's no way to setup tasks to reoccur hourly. +Sorry for the inconvenience.",2019-01-02 18:06:51,most_relevant,com.levor.liferpgtasks +G VS,https://lh3.googleusercontent.com/-aCf0Y_C9zXs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMALG3kseieGlFGXdU0gT9SyoAIPg/photo.jpg,Is a pretty good app but it's got a pretty big issue which is how is it going to keep track of how many things I've done every day if it counts the current activity as if it was done the last corresponding day?,2,0,,2019-07-13 16:37:54,"Thanks for review. +At the moment all your activity with tasks is added to history with date-time when you actually added it. I have plans to add possibility to change this data and time from History section.",2019-07-23 08:39:50,most_relevant,com.levor.liferpgtasks +Brajeswar Das,https://lh3.googleusercontent.com/-bevuBpPqsT4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOrQ0hls15dmHjRpoWgymhZnLEAAA/photo.jpg,Quite good one but I prefer single purchase option. But seriously I like the statistics. Well I saw it automatically logs out and not doing backup.,2,1,2.13.0,2019-05-01 18:12:00,"Thank you for the feedback! +Could you please add more details on auto logout and backup issue so I could fix it?",2019-05-03 16:32:12,most_relevant,com.levor.liferpgtasks +Learn Languages With Me,https://lh3.googleusercontent.com/a-/AOh14GgGcF74rDHmY1D2v3oJ_5QG_RWUuD8v6eC4gdFOpw,"cool idea, but it keeps crashing when you try to add subtasks.",2,15,2.10.1,2019-03-06 05:50:57,"Oh, wow. +Thanks for the heads up. I'll find and fix this problem.",2019-03-18 10:26:19,most_relevant,com.levor.liferpgtasks +Yuri Hageshi,https://lh3.googleusercontent.com/a-/AOh14Ghiq74xHQ24bYDHkLeAX1_Iab9IOeIuDGu0h2sLng,I'm not interested in subscriptions. One time fee would be fine by me.,2,1,,2019-02-21 05:25:38,,,most_relevant,com.levor.liferpgtasks +Mahesh S Nair,https://lh3.googleusercontent.com/a-/AOh14GioA-jC2wq9d6o2f5tVptBi0Mic9asEw9x9srzurw,Price is very high for Indian users. We don't get 1/10 of what a US citizen gets paid here so there app subscriptions at such prices don't make a sense.,2,0,,2019-08-15 05:14:19,"Thanks for the review. +Almost all features are available for all users. Exceptions are more advanced features (like calendar) and some appearance enhancing features (like more icons). So you can freely use app without any subscriptions.",2019-08-15 07:50:05,most_relevant,com.levor.liferpgtasks +Kaylen Wheeler,https://lh3.googleusercontent.com/a-/AOh14GjAgdhcICqt9GgH83ZtIRSpHHx9EP_i-WMM7ajvpQ,A chore to figure out,2,1,,2020-03-13 19:44:00,"If you are unhappy with any of the features, you can contact us at liferpgtasks@gmail.com.",2020-03-18 16:33:27,most_relevant,com.levor.liferpgtasks +Lindsey McDonald,https://lh3.googleusercontent.com/a-/AOh14GhGW225er06LtIdRFdswV_9UsJCb-NSNmn92INkYqY,Kind of ha are to get the hang of. Maybe I'm just stupid! IDK!! But I never did figure it out...,2,1,2.10.0,2019-02-07 05:45:43,,,most_relevant,com.levor.liferpgtasks +Q lord,https://lh3.googleusercontent.com/a-/AOh14GhpdmGTaQFIJ0SjL5hMZW5LyVmErc5S9-RgvjUD8A,I had to put in all the info,2,0,,2020-02-20 03:43:55,Can you please share which features you find difficult to use? Please contact us at liferpgtasks@gmail.com.,2020-02-24 11:05:16,most_relevant,com.levor.liferpgtasks +Radha Dewangan,https://lh3.googleusercontent.com/-QJ_R_XarOsM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPW-H7Bt16BS34g53fh85yGooDI4A/photo.jpg,It is complicated.,2,0,,2019-09-18 04:53:29,Can you please share which features you find difficult to use? Please contact us at liferpgtasks@gmail.com.,2019-09-20 09:22:12,most_relevant,com.levor.liferpgtasks +Jag- E,https://lh3.googleusercontent.com/a-/AOh14GjPc3aalEgXiPxltyTLsopTf5QQyv91LgcMnbf_tA,"User Interface is so tough, specially for a new person.. Even there is no guide that how to use.. On front there r those things which r not useful for a working person like those Xp and all.. Don't know how to find week date or tym for an alert.. Not impressive..",2,1,2.7.2,2018-09-05 04:33:31,"Thanks for your review. +There's a built-in user guide (open Menu, About, User guide) you can refer to it or simply ask a question via email (liferpgtasks@gmail.com).",2018-09-06 14:29:52,most_relevant,com.levor.liferpgtasks +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Repeats tick now...however I encountered another problem. There's no way to restore ""purchases"". Meaning if you subscribe and than reset/wipe the app or your phone, you can't use the subscription features anymore. And to get it back you have to completely resubscribe.",2,1,2.7.1,2018-08-26 13:18:50,"Thanks for review. +Subscriptions are bond to Google account. Please make sure you selected same account in Google Play app before installing Do It Now. All your purchases should be restored automatically. +Also make sure you haven't cancelled subscription when uninstalling app, Android will show dialog with suggestion on uninstall with subscription.",2018-08-27 08:47:00,most_relevant,com.levor.liferpgtasks +Camron Earl,https://lh3.googleusercontent.com/a-/AOh14GhhomB-zdUdYUs3CschTKMQ8DNLglEFTk57EJj4oA,The ads on this app are cancerous and the subscription model for this type of app is ludicrous. Charge a single flat rate. If the style does change to flat rate/ad free I'll gladly change my review.,2,10,2.2.0,2018-02-08 08:35:45,"Thanks for your review. +Pricing model is under development right now. Furthermore there will be more options.",2018-02-08 08:33:19,most_relevant,com.levor.liferpgtasks +David Gable,https://lh3.googleusercontent.com/a-/AOh14GgEmKTGTwoh_ch5H290B4zYi0zsI5W-JWGn-kX4,"I really like the application so far. Great interface and feature set. I'd really like to see and would even do an inapp purchase for would be a much larger icon set. I think being able to group characteristics and skills would be awesome too. Even better if the group can collapse. It would also be cool to see a health bar that represents the amount of time you have in a day to be productive. Have it decrement as time passes and maybe make it adjustable for how much time you have in a day i think another tasklist app does that. Overall a great application, I hope you continue working on this application. Edit: The app is still decent, but taking away the option to just remove ads for a one time price in favor of subscription only has made me decide to stop using this application and change my previous 5 star rating to a 2 star rating.",2,17,2.2.0,2018-01-17 17:38:30,"Thanks for review and suggestions. +About subscription. Decision was made to move to subscriptions model and continue development at same pace, previous model was not paying off. +Nevertheless, you can still use app without subscription since all it adds is no ads, more icons and themes. Other than that all app features available to all users.",2018-01-19 14:19:05,most_relevant,com.levor.liferpgtasks +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"By default, before the current update was rolled out, tasks were set to the date 'today'. Now they are being set to Feb 1, 3880. How weird!",2,2,2.2.0,2018-01-09 07:48:01,It will be fixed in nearest update.,2018-01-14 07:21:56,most_relevant,com.levor.liferpgtasks +HostileNacho,https://lh3.googleusercontent.com/a-/AOh14GhNO7YKmrNCdzgLUaSc7xg8d36EO6ttvVb7IzRC,So you reskinned LifeRPG? What's different here?,2,1,2.2.0,2018-01-14 01:11:05,"No, it's a different app which is under development for more than 2 years right now. +There's a lot of differences - achievements, characteristics, hero statuses, themes, task setup flexibility and musch more.",2018-01-19 14:22:50,most_relevant,com.levor.liferpgtasks +Freddie Mark Fallore,https://lh3.googleusercontent.com/a-/AOh14GhsnPBh7XXTHRLNOp73-Q7lvjdJ3srlCH2pKn6k6A,"I really liked the app but suddenly from nowhere all of my data were gone. One second they were fine then when I connect to the internet, it's back at lvl 0 with the Johnny avatar. It seemed that there was no way to get my data back. Dropbox saved data seemed to have been overwritten so idk what to do. I feel betrayed being immersed in the apo then suddenly left hanging with the fact that I don't even know what caused it.",2,11,2.0.4,2017-09-04 13:12:34,"Could you please add more details about Dropbox - have you enabled auto backup, or performed manual imports and exports?",2017-09-05 07:11:59,most_relevant,com.levor.liferpgtasks +Stephen Jones,https://lh3.googleusercontent.com/-OW8i1AgS4Y4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOHb5QcjruMZ5wGxXuwMKZ60FtsLw/photo.jpg,"This app is an excellent idea, if only it worked. I have been unable to move off the home screen without it crashing. Its a shame as it has a lot of potential.",2,0,2.0.4,2017-10-09 13:14:02,,,most_relevant,com.levor.liferpgtasks +Pyth0n,https://lh3.googleusercontent.com/a-/AOh14Gjg_sWm4qd9Ht6Jb1Mb__WEATqA36ighxXG74Jb2A,Refreshing tasks is a nightmare,2,1,2.0.4,2017-09-26 14:35:46,"Could you please add more details? +We'd be glad to hear about it via mail (liferpgtasks@gmail.com) or here (via updating your review).",2017-09-27 07:15:03,most_relevant,com.levor.liferpgtasks +Rav Sly,https://lh3.googleusercontent.com/a-/AOh14Gjm929WtX-aqEJFVwvGmdUbO6_NEGN7Zl3IPR8pFA,Not a movable app,2,1,2.0.3,2017-08-07 17:47:21,Could you please describe your problem and we will try to fix it.,2017-08-08 06:45:42,most_relevant,com.levor.liferpgtasks +P G,https://lh3.googleusercontent.com/a-/AOh14Gj7MgDO6a9awaw89ar6cWxtbfneO6prMiUE2ll0wA,This is not an rpg!?!?!?! This is a goal tracker with an avatar. Ffs. So Useless.,2,0,2.0.2,2017-07-16 06:38:41,,,most_relevant,com.levor.liferpgtasks +W. Lind,https://lh3.googleusercontent.com/a-/AOh14GiAMNWoRRsZ3uOQ4lNfO0_APYvHksUAQ-xYgEYInw,Needs a dark mode.,2,4,1.3.6,2016-04-26 08:23:14,"Thanks, +Added to my todo list =)",2016-04-26 10:11:50,most_relevant,com.levor.liferpgtasks +christian demitri,https://lh3.googleusercontent.com/-nQ-oyihqyHE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOtajs8FmUaCdZyLlLwENFVcZ8trw/photo.jpg,"Good idea, implementation to be revised. The management of the task is not clear. The dates are showed in a confusing way. Again, the concept is good, but the user interface has to be improved and updated.",2,0,,2020-04-03 06:18:18,"Thanks for the review. +I'll do my best to improve app quality, including user interfase.",2020-04-06 07:20:02,newest,com.levor.liferpgtasks +Tuukka Rinkinen,https://lh3.googleusercontent.com/a-/AOh14GhRZVSDOI9rRFjyWaw9QO8LN3GhfhhC4-Q_Cd-L5g,"Ok concept, but just takes way too much effort to make the core concept even work on a basic level. Kind of feels like this kind of an app needs some sort of AI with suggestions for every parameter, and sync between different devices, to get the basic functionality into usable state.",2,0,2.12.0,2020-03-27 21:09:27,"Thanks for the feedback. +I'll try to make app easier to use.",2020-03-30 17:39:10,newest,com.levor.liferpgtasks +Cun Cis,https://lh3.googleusercontent.com/a-/AOh14GiDwrJ115ES8CfwVaEt-43EU4qK6itMxfN_0dstmA,"When I checklist Today's note, automatically Overdue's Note checked too?? what's wrong..??",2,0,2.23.0,2020-03-25 13:27:49,"Some tasks can be shown in multiple groups. +There's an option in app settings to show overdue tasks in Today and Tomorrow groups. +I can assume that it is enabled. +So all your overdue tasks will be shown in both Overdue and Today tasks.",2020-03-30 17:32:08,newest,com.levor.liferpgtasks +Jennifer Januszkiewicz,https://lh3.googleusercontent.com/a-/AOh14GiEr9UUEU11hMGWg3xH6IYuGaq_c7Tya27X0osw,"So cool, but insanely expensive. Also, wasn't clear how to get started even with the manual. I have no reading comprehension issues, there is just no ""getting started"" section or similar. Then I saw the fees, $50?! WOW that is high! I hate when people gripe that they're asked to pay for apps & am a big fan of supporting developers, but $50 is nuts. This isn't a service one subscribes to, ex. Spotify, and $50 is NUTS to purchase an app. Not trying to be mean & am fine paying but $50 is way high.",2,9,2.23.0,2020-03-17 03:11:50,"Thanks for your feedback. +I have plans to work on some sort of onboarding guide with characteristics\skills\tasks selection from predefined list. +I suppose it will make getting started a bit easier. +Also I'm experimenting with premium purchase, I've added it just last month. So it's price might be changed in future.",2020-03-18 16:54:22,newest,com.levor.liferpgtasks +Kaylen Wheeler,https://lh3.googleusercontent.com/a-/AOh14GjAgdhcICqt9GgH83ZtIRSpHHx9EP_i-WMM7ajvpQ,A chore to figure out,2,1,,2020-03-13 19:44:00,"If you are unhappy with any of the features, you can contact us at liferpgtasks@gmail.com.",2020-03-18 16:33:27,newest,com.levor.liferpgtasks +Abdullah Shahzad,https://lh3.googleusercontent.com/a-/AOh14GjYSUw-nl1-OhgQhSAeKC2i4FG6GOOQbAfNSUlTOA,notifiction is not working properly. When I set a task reminder when it is near finish dead line. App doesnot send me task notification about its deadline. Not Working,2,30,2.22.0,2020-02-24 14:03:19,"Thank you for the feedback. +Could you please try to update the app. +I can see that you are using version 2.16, latest app version is 2.22 and I added some fixes for notifications in newer version.",2020-02-24 11:18:25,newest,com.levor.liferpgtasks +Q lord,https://lh3.googleusercontent.com/a-/AOh14GhpdmGTaQFIJ0SjL5hMZW5LyVmErc5S9-RgvjUD8A,I had to put in all the info,2,0,,2020-02-20 03:43:55,Can you please share which features you find difficult to use? Please contact us at liferpgtasks@gmail.com.,2020-02-24 11:05:16,newest,com.levor.liferpgtasks +A анонимный,https://lh3.googleusercontent.com/-2OzjRaTCGMc/AAAAAAAAAAI/AAAAAAACCSA/AAKWJJNSpofCJOykPuDW60MOoFxOBc-Myw/photo.jpg,"One of the most expensive apps I have ever seen or tried. Everything costs money. Subscription? Check. Paid themes? Check. I mean, I spent a fortune on apps, and I am in favor of continuous support, but still. Losing my lifetime savings is just not okay. Reminds me of the app Newton Mail where they went from free to Oh My God This Is Expensive. IMO users would sub way more if the options were affordable. Sorry for 2/5 but if an app is inaccessible due to prices, I can't say that it's an ok app",2,0,,2020-02-18 07:14:16,"Thanks for the feedback. +Most features in app are opened for use without any purchases. Exceptions are advanced features like calendar and smart tasks and cosmetic improvements - themes, icons, sounds etc.",2020-02-18 18:28:35,newest,com.levor.liferpgtasks +Michelle Badeau,https://lh3.googleusercontent.com/a-/AOh14GjIBUmfyHV283T4KpIvTnIuenCdO_VoCJjwpZxZ,"Confusing, over complicated, and bland looking. The fact that I had to go delete the habits that it had already chosen for me, made it worse",2,3,2.21.0,2020-01-05 00:31:18,"Thanks for the review. +Initial tasks are mostly added as an examples of different app use cases. +That's expected that at least part of them will be deleted. +Please share what features you find difficult to use.",2020-01-13 11:05:56,newest,com.levor.liferpgtasks +Adriana Villanueva,https://lh3.googleusercontent.com/a-/AOh14GggyC8nguYLmwqJojvWTulMlV9mld9j3EY06vCVsA,"I try to set tasks for only specific days of the week, but it does Not work. After I complete the task that's it. It's done forever, doesn't repeat. Since most of my tasks need this feature to work...the app really isn't good for me.",2,0,,2020-01-02 20:04:39,"Thanks for the review. +Please check repeats field when you set up tasks. Looks like you set too little repeats and when they were done - task was marked as done.",2020-01-13 10:33:25,newest,com.levor.liferpgtasks +Paul Wintz,https://lh3.googleusercontent.com/a-/AOh14GjWeP9VnkYh3v1ezOv9rWc7-8SrdzmdNZHTR5PcBw,"I was going to give 4 stars, but the app does something kinda sleazy where it asks you what you would rate it and only redirects you to Google play if you said five stars, so I lowered it to 2 stars.",2,98,2.21.0,2019-12-29 21:20:52,"Thanks for the review. +Yes, you're right, if users rated app 4 and lower than there's something wrong with the app and we kindly ask users to give us feedback on it to fix it.",2020-01-13 10:27:26,newest,com.levor.liferpgtasks +CJ John,https://lh3.googleusercontent.com/-TZFFYXhFa6E/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOAw2MbsCshE30etyLtC4TwBYLTCQ/photo.jpg,"I started getting notifications but all came at the same time instead of their specified times, so just removed them and no longer use. Biggest feature I would like see fixed is there seem to be issues with using the ""Today"" option for the task list Widget. Sometimes will only show one task and sometimes when I can complete all my tasks, the next day the list doesn't refresh, still says ""All tasks are done!""",2,5,2.21.0,2019-12-28 19:15:25,Usually this problem is related to app system settings where notifications are forbidden or to battery saver which could also block notifications from apps. Please double check this settings.,2019-11-29 11:57:07,newest,com.levor.liferpgtasks +faezeh koohkan,https://lh3.googleusercontent.com/-sB2AnFjQs3Y/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNipG2LeQ_uSlWUKJd9lwbe8dLSkQ/photo.jpg,I liked it but most of intresting features was unable until you purchase them.,2,0,2.20.0,2019-11-30 07:38:25,"Some features can be opened via referral store. +But unfortunately, app should be monetized in some way to enhance and support it, so there will be features that are available only after purchase.",2019-12-02 14:57:13,newest,com.levor.liferpgtasks +James Hebdon,https://lh3.googleusercontent.com/a-/AOh14Gi2CQU_njNG4YJqG5FNcZL0BV5LsG_pYxOFFs93,"Do you love apps that design their experience to be poor unless you pay ongoing ""subscriptions"" for static feature sets that make the experience barely tolerable? Do you prefer having money siphoned from your account over and over again instead of paying a single small fee once for an app, like we used to see? Then this is the app for you! Add one more debit to your bank account they hope you'll forget about (and statistically speaking - you will) for a stagnant app you'll forget about in a week",2,4,2.19.0,2019-11-13 07:34:27,,,newest,com.levor.liferpgtasks +Laura Roberts,https://lh3.googleusercontent.com/a-/AOh14GjDql0jBppNkice-69b27K0BIW3MJMDw3oC3hGq,"Too complicated. I spent a half hour looking at the guide, trying to figure it out. Created new characteristics and tasks, but on the home page, there's no drop-down to choose a task. When I saw I'd have to create one every time, I decided to uninstall. Suggestion: create tutorial. No one has time for the long guide. If we did, we wouldn't need a productivity app.",2,6,2.19.0,2019-11-12 17:11:54,"Thanks for the review and for suggestion. +Great idea with tutorial.",2019-11-29 11:47:06,newest,com.levor.liferpgtasks +Radha Dewangan,https://lh3.googleusercontent.com/-QJ_R_XarOsM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPW-H7Bt16BS34g53fh85yGooDI4A/photo.jpg,It is complicated.,2,0,,2019-09-18 04:53:29,Can you please share which features you find difficult to use? Please contact us at liferpgtasks@gmail.com.,2019-09-20 09:22:12,newest,com.levor.liferpgtasks +Craig Paulk,https://lh3.googleusercontent.com/a-/AOh14GhHwQ2SZGMvalB_hPNGrCMmQifeswD8jPqOItvgWw,"Spending $10 once or $5/year for a subscription would make sense to me; but paying $15/year to use a to-do list (when discounted) is really excessive. This is a great tool - actually, I love it; but I find it ridiculous to pay so much just to TEMPORARILY unlock basic features like a calendar. Edit: Since writing the above review, I've found cheaper/free alternatives. The one I'm using is called Treat Yourself. It's free and doesn't look great, but it serves my needs just right and I love it.",2,10,2.17.0,2019-09-16 22:15:03,"Thank you for the review. +Subscription not only allows you to use advanced features like calendar or smart groups, but also allows to improve and polish app. Users interest and support with subscriptions allowed to create a lot of features in the app, including calendar. By the way, right now we have discounts on all types of subscriptions.",2019-09-03 10:13:58,newest,com.levor.liferpgtasks +Mahesh S Nair,https://lh3.googleusercontent.com/a-/AOh14GioA-jC2wq9d6o2f5tVptBi0Mic9asEw9x9srzurw,Price is very high for Indian users. We don't get 1/10 of what a US citizen gets paid here so there app subscriptions at such prices don't make a sense.,2,0,,2019-08-15 05:14:19,"Thanks for the review. +Almost all features are available for all users. Exceptions are more advanced features (like calendar) and some appearance enhancing features (like more icons). So you can freely use app without any subscriptions.",2019-08-15 07:50:05,newest,com.levor.liferpgtasks +G VS,https://lh3.googleusercontent.com/-aCf0Y_C9zXs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMALG3kseieGlFGXdU0gT9SyoAIPg/photo.jpg,Is a pretty good app but it's got a pretty big issue which is how is it going to keep track of how many things I've done every day if it counts the current activity as if it was done the last corresponding day?,2,0,,2019-07-13 16:37:54,"Thanks for review. +At the moment all your activity with tasks is added to history with date-time when you actually added it. I have plans to add possibility to change this data and time from History section.",2019-07-23 08:39:50,newest,com.levor.liferpgtasks +Brajeswar Das,https://lh3.googleusercontent.com/-bevuBpPqsT4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOrQ0hls15dmHjRpoWgymhZnLEAAA/photo.jpg,Quite good one but I prefer single purchase option. But seriously I like the statistics. Well I saw it automatically logs out and not doing backup.,2,1,2.13.0,2019-05-01 18:12:00,"Thank you for the feedback! +Could you please add more details on auto logout and backup issue so I could fix it?",2019-05-03 16:32:12,newest,com.levor.liferpgtasks +M. Zakieザーキーですが,https://lh3.googleusercontent.com/a-/AOh14GjxrrSbIcGbKGM_FEJTkXxKyg1IubBp0qi4wwAyPg,"Annoying backup system. I've had installed this app and logged in with Google account once. I also tried some of the app's features, but I uninstalled again because of reasons. After some times, I decided to install it again. So I made my tasks and the others without logging in first (because I forgot). Then, when I logged in with my Google account after that, it replace my current data with the older one without warning. Now all my newly created, more complete data is all gone.",2,1,2.13.0,2019-04-29 17:49:10,"Thank you for the feedback. +I'll work on backup system to make it more reliable and convenient.",2019-04-30 12:15:52,newest,com.levor.liferpgtasks +Learn Languages With Me,https://lh3.googleusercontent.com/a-/AOh14GgGcF74rDHmY1D2v3oJ_5QG_RWUuD8v6eC4gdFOpw,"cool idea, but it keeps crashing when you try to add subtasks.",2,15,2.10.1,2019-03-06 05:50:57,"Oh, wow. +Thanks for the heads up. I'll find and fix this problem.",2019-03-18 10:26:19,newest,com.levor.liferpgtasks +Yuri Hageshi,https://lh3.googleusercontent.com/a-/AOh14Ghiq74xHQ24bYDHkLeAX1_Iab9IOeIuDGu0h2sLng,I'm not interested in subscriptions. One time fee would be fine by me.,2,1,,2019-02-21 05:25:38,,,newest,com.levor.liferpgtasks +Lindsey McDonald,https://lh3.googleusercontent.com/a-/AOh14GhGW225er06LtIdRFdswV_9UsJCb-NSNmn92INkYqY,Kind of ha are to get the hang of. Maybe I'm just stupid! IDK!! But I never did figure it out...,2,1,2.10.0,2019-02-07 05:45:43,,,newest,com.levor.liferpgtasks +Black Pug,https://lh3.googleusercontent.com/-SJ1aVyX3Rv8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPtS6UXIgpZUTK6hJYY5eJCQ7bg5A/photo.jpg,Convoluted way of editing sub tasks and the undo button only works in te immediate moment after checking. Stats can't be reset. All the little thingd take a long time to set up due to the way interface is handled. It's also weird how 'done' can't be hidden.,2,1,2.8.1,2019-01-01 14:08:28,"Sorry if app disappointed you. +You can undo any task execution from the tasks history (3 dots in toolbar in tasks section, History). Also you can reset everything and reset only the progress in settings.",2019-01-02 18:34:12,newest,com.levor.liferpgtasks +Jessie D,https://lh3.googleusercontent.com/-uadO3z56V8g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOhI3ws0jpXTT62bWTSnzfHNL00tA/photo.jpg,"doesn't do what I need it to do with setting recurring alarms, such as every 3 hours forever. it just says ""how many times"" do you want this to repeat but doesn't let you choose hourly. Just daily, weekly, etc.",2,4,2.9.1,2018-12-28 07:27:53,"Unfortunately there's no way to setup tasks to reoccur hourly. +Sorry for the inconvenience.",2019-01-02 18:06:51,newest,com.levor.liferpgtasks +Jag- E,https://lh3.googleusercontent.com/a-/AOh14GjPc3aalEgXiPxltyTLsopTf5QQyv91LgcMnbf_tA,"User Interface is so tough, specially for a new person.. Even there is no guide that how to use.. On front there r those things which r not useful for a working person like those Xp and all.. Don't know how to find week date or tym for an alert.. Not impressive..",2,1,2.7.2,2018-09-05 04:33:31,"Thanks for your review. +There's a built-in user guide (open Menu, About, User guide) you can refer to it or simply ask a question via email (liferpgtasks@gmail.com).",2018-09-06 14:29:52,newest,com.levor.liferpgtasks +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Repeats tick now...however I encountered another problem. There's no way to restore ""purchases"". Meaning if you subscribe and than reset/wipe the app or your phone, you can't use the subscription features anymore. And to get it back you have to completely resubscribe.",2,1,2.7.1,2018-08-26 13:18:50,"Thanks for review. +Subscriptions are bond to Google account. Please make sure you selected same account in Google Play app before installing Do It Now. All your purchases should be restored automatically. +Also make sure you haven't cancelled subscription when uninstalling app, Android will show dialog with suggestion on uninstall with subscription.",2018-08-27 08:47:00,newest,com.levor.liferpgtasks +Camron Earl,https://lh3.googleusercontent.com/a-/AOh14GhhomB-zdUdYUs3CschTKMQ8DNLglEFTk57EJj4oA,The ads on this app are cancerous and the subscription model for this type of app is ludicrous. Charge a single flat rate. If the style does change to flat rate/ad free I'll gladly change my review.,2,10,2.2.0,2018-02-08 08:35:45,"Thanks for your review. +Pricing model is under development right now. Furthermore there will be more options.",2018-02-08 08:33:19,newest,com.levor.liferpgtasks +David Gable,https://lh3.googleusercontent.com/a-/AOh14GgEmKTGTwoh_ch5H290B4zYi0zsI5W-JWGn-kX4,"I really like the application so far. Great interface and feature set. I'd really like to see and would even do an inapp purchase for would be a much larger icon set. I think being able to group characteristics and skills would be awesome too. Even better if the group can collapse. It would also be cool to see a health bar that represents the amount of time you have in a day to be productive. Have it decrement as time passes and maybe make it adjustable for how much time you have in a day i think another tasklist app does that. Overall a great application, I hope you continue working on this application. Edit: The app is still decent, but taking away the option to just remove ads for a one time price in favor of subscription only has made me decide to stop using this application and change my previous 5 star rating to a 2 star rating.",2,17,2.2.0,2018-01-17 17:38:30,"Thanks for review and suggestions. +About subscription. Decision was made to move to subscriptions model and continue development at same pace, previous model was not paying off. +Nevertheless, you can still use app without subscription since all it adds is no ads, more icons and themes. Other than that all app features available to all users.",2018-01-19 14:19:05,newest,com.levor.liferpgtasks +HostileNacho,https://lh3.googleusercontent.com/a-/AOh14GhNO7YKmrNCdzgLUaSc7xg8d36EO6ttvVb7IzRC,So you reskinned LifeRPG? What's different here?,2,1,2.2.0,2018-01-14 01:11:05,"No, it's a different app which is under development for more than 2 years right now. +There's a lot of differences - achievements, characteristics, hero statuses, themes, task setup flexibility and musch more.",2018-01-19 14:22:50,newest,com.levor.liferpgtasks +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"By default, before the current update was rolled out, tasks were set to the date 'today'. Now they are being set to Feb 1, 3880. How weird!",2,2,2.2.0,2018-01-09 07:48:01,It will be fixed in nearest update.,2018-01-14 07:21:56,newest,com.levor.liferpgtasks +Stephen Jones,https://lh3.googleusercontent.com/-OW8i1AgS4Y4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOHb5QcjruMZ5wGxXuwMKZ60FtsLw/photo.jpg,"This app is an excellent idea, if only it worked. I have been unable to move off the home screen without it crashing. Its a shame as it has a lot of potential.",2,0,2.0.4,2017-10-09 13:14:02,,,newest,com.levor.liferpgtasks +Pyth0n,https://lh3.googleusercontent.com/a-/AOh14Gjg_sWm4qd9Ht6Jb1Mb__WEATqA36ighxXG74Jb2A,Refreshing tasks is a nightmare,2,1,2.0.4,2017-09-26 14:35:46,"Could you please add more details? +We'd be glad to hear about it via mail (liferpgtasks@gmail.com) or here (via updating your review).",2017-09-27 07:15:03,newest,com.levor.liferpgtasks +Freddie Mark Fallore,https://lh3.googleusercontent.com/a-/AOh14GhsnPBh7XXTHRLNOp73-Q7lvjdJ3srlCH2pKn6k6A,"I really liked the app but suddenly from nowhere all of my data were gone. One second they were fine then when I connect to the internet, it's back at lvl 0 with the Johnny avatar. It seemed that there was no way to get my data back. Dropbox saved data seemed to have been overwritten so idk what to do. I feel betrayed being immersed in the apo then suddenly left hanging with the fact that I don't even know what caused it.",2,11,2.0.4,2017-09-04 13:12:34,"Could you please add more details about Dropbox - have you enabled auto backup, or performed manual imports and exports?",2017-09-05 07:11:59,newest,com.levor.liferpgtasks +Rav Sly,https://lh3.googleusercontent.com/a-/AOh14Gjm929WtX-aqEJFVwvGmdUbO6_NEGN7Zl3IPR8pFA,Not a movable app,2,1,2.0.3,2017-08-07 17:47:21,Could you please describe your problem and we will try to fix it.,2017-08-08 06:45:42,newest,com.levor.liferpgtasks +P G,https://lh3.googleusercontent.com/a-/AOh14Gj7MgDO6a9awaw89ar6cWxtbfneO6prMiUE2ll0wA,This is not an rpg!?!?!?! This is a goal tracker with an avatar. Ffs. So Useless.,2,0,2.0.2,2017-07-16 06:38:41,,,newest,com.levor.liferpgtasks +W. Lind,https://lh3.googleusercontent.com/a-/AOh14GiAMNWoRRsZ3uOQ4lNfO0_APYvHksUAQ-xYgEYInw,Needs a dark mode.,2,4,1.3.6,2016-04-26 08:23:14,"Thanks, +Added to my todo list =)",2016-04-26 10:11:50,newest,com.levor.liferpgtasks +Russ Irvine,https://lh3.googleusercontent.com/a-/AOh14Gg3dpdQd8H-yb_MeBy9x7_73KDKXh7ZT48tQWBL,"This is a re-review. This could be the best habit tracker, goal setter and task manager, with some really great features like nested lists and smart/auto grouping and a very versatile repeat task setup. Just don't confuse the 'game' in RPG for any actual gameplay; but it does have a very elaborate character design and advancement system, that deserves recognition, allowing for a well rounded and unique hero which grows with every task performed in the user's daily life. However Do It Now does hamstring itself by overlooking some very important integral functionality. Firstly there is no way to order the tasks set out in any of the groups. After a solid month of use, building some projects with subtasks which had subtasks, and setting up several habit based routines, the lack of prioritisation or task ordering created a confusing clutter of items which looked no different from the next. While auto-grouping and smart grouping should have been able to help sort that out the lack of ability for the user to remove any task from these groups meant every task appeared, once again losing the important ones in the clutter. User defined groups could only contain the items specifically placed in them- but once again a large project with a number of different aspects can not be ordered into a sensible linear series.. With no social aspect currently attached to the app (as at ver 2.23.0) there is no task sharing. There is also no designated pc/mac/linux front end for desktop syncing. Finally it's expensive as apps go. A one off of $75 will get the full version, or about $2.50 a month (paid yearly), which removes ads and gives calendar access. Original review: ""A good way to make the tedium of self regulation a bit more fun. Being able to plan to skip things when away from regular activities is handy. It would be nice to see characteristic and skill based modifiers affect related task improvements as they raise and subtask attached leader.""",3,17,2.23.0,2020-03-28 09:18:40,Thanks for your review and suggestions!,2020-03-18 17:00:08,most_relevant,com.levor.liferpgtasks +belu irina,https://lh3.googleusercontent.com/a-/AOh14Gjoarz1yg5U_z-SX6GYOCDAil2PqJOW8XKlnDL3WQ,Good app and I like the setups that are already prepared for when u log in. My problem with the app is that it's too overwhelming. Too many things to manage and for my easily distracted and anxious brain it's too much. As constructive that can actually be applied--please make it so the tasks actually leave the list ocne they are completed. Some are infinite and its difficult to focus on what needs to be done. Otherwise. Good job on this app it's well made.,3,0,2.23.0,2020-04-02 22:56:31,"Thanks for the feedback. +It totally depends on type of list (group) and on task setup, there are a lot of combinations of group-task setup, so it mostly depends on users.",2020-04-06 07:18:50,most_relevant,com.levor.liferpgtasks +Daniel Whited,https://lh3.googleusercontent.com/a-/AOh14GgY3IovB1STxTRZjVKv5WXYZa-V_UTRRX8Cw950Tg,"I used to use Habitica, and I must say this is a great step up. I'd like to see more social features, such as sharing tasks - only one person has to perform said task for it to be checked off, but only giving that person the experience and gold. Otherwise, the price for subscription is too steep, thus resulting in a sub-perfect score. I could easily justify $0.99/month or eternal subscription for $15. If that price could be met, as well as fine tuning, this would be easily worth 5 stars.",3,19,2.23.0,2020-03-17 03:00:21,"Thanks for the feedback. +I suppose I'll work more on social features in future. Great idea on shared tasks by the way. I was thinking on group tasks which should be done by everyone in a group, but I like your approach more.",2020-03-18 16:51:34,most_relevant,com.levor.liferpgtasks +Gilsang Shira,https://lh3.googleusercontent.com/-ABnkHLNK4S8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP-6ZwOXYlUNV1FNGBK0iKCWTks9w/photo.jpg,"I like the idea how it shows my skills but I hate it when it organize the tasks in orders, it sets up automatically wherever it wants. Manual task organizer should be available.",3,0,2.23.0,2020-04-01 17:49:19,"Thanks for the feedback. +I do have manual reordering planned for development. But this task is postponed at the moment due to current implementation of tasks and tasks ordering.",2020-04-02 07:42:18,most_relevant,com.levor.liferpgtasks +Naomi Graham,https://lh3.googleusercontent.com/a-/AOh14GgCT5lrqGT0gwihSPdkL9KHA1IGKO5FxFNyYQJ1,"The app is great for the most part, i just wish that the 'notification option' for tasks would actually alert me. No alarm or even a pop-up message. I got this to help me remember to take care of certain things due to memory issues, but it's not gonna be of any help if i can't even remember i have the app. Please fix the alarm notification system.",3,67,2.21.1,2020-02-05 21:22:21,I understand how annoying that must be. I'm working on a solution. I hope you'll re-consider the rating once I fix the issue.,2020-02-12 17:53:44,most_relevant,com.levor.liferpgtasks +Ashichuu chu,https://lh3.googleusercontent.com/a-/AOh14Gi9ik9LEQEN6rdU1OIoonpyfDEnGlzRnBUZrTeemw,"Was really looking for an app that lets me have multiple repeats for a task within the same day, everyday. Duplicating a task multiple times and then making those into subtasks seems to be the only way, but it clutters up the task list (like 8 lines so I'm reminded to drink 8 glasses of water) and then subtasks show up twice in the daily list, both within and outside of the main task. I thought the ""repeat every 1 day, 8 times"" custom setting might work, but it's a different function.",3,11,2.22.0,2020-03-03 03:02:40,"Thanks for the feedback. +You're right, such feature could be useful, but it can't be done at the moment due to technical limitations of current app implementation. Possibly I'll rework it at some point and add multiple repeats.",2020-03-03 08:18:45,most_relevant,com.levor.liferpgtasks +Irina P.,https://lh3.googleusercontent.com/-c2xYep8g-a4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMEfQph3aiZd_yXpieYdoxpT_whsA/photo.jpg,"I've just installed this app and will definitely play with it in the next few weeks. It really looks nice and really structured! So far my only surprise is that there's no female icon for the person. Only nuns or dancers, but not a simple female icon that doesn't do anything - just stands. Hello, is this app exclusively for men or is the icon hidden somewhere?",3,6,2.22.0,2020-02-20 15:43:27,"Irina, thanks for the feedback. +I'll add more female icons in next updates. +Meanwhile you can set any icon you like from the filesystem.",2020-02-24 11:09:34,most_relevant,com.levor.liferpgtasks +Brandee Wyse,https://lh3.googleusercontent.com/a-/AOh14GhV1L67TwbuwFgBu5GCaY6KQ7asBqZU48PzpprL,I am in love with this app so far. I wish there was an iOS version available to connect with my friends though... I would recommend this to everyone otherwise! 3 stars for now due to limited availability.,3,2,2.22.0,2020-02-20 00:48:47,"Thanks for the feedback. +I suppose I'll port the app to iOS, I've already started working on it, but there's a huge amount of work to do :)",2020-02-24 11:04:59,most_relevant,com.levor.liferpgtasks +Sam Wang,https://lh3.googleusercontent.com/a-/AOh14GhX1Xe63uo4bNTNLNJAVqsDkmDUCqElxe3eec_0qw,"I like that this app notifies you for tasks, but it should respect Android system's Do not Disturb!! I shouldn't be reminded when I sleeping and I explicitly turn off notifications (no other app I have notifies me in Do not Disturb mode)",3,1,2.22.0,2020-02-22 20:59:34,"Thanks for the feedback. +I'll take a look on this problem.",2020-02-24 11:22:38,most_relevant,com.levor.liferpgtasks +Maddie Decker,https://lh3.googleusercontent.com/-FlBTeWlYkQI/AAAAAAAAAAI/AAAAAAAARe8/AAKWJJPwpLrHil9Cak8_zOYUf6Oc79uD2A/photo.jpg,"As someone who has ADHD and deals with executive dysfunction, this is a very useful app! There are a LOT of paywalls though.",3,0,2.22.0,2020-03-05 03:58:57,"Thanks for the review. +I'm sorry for the paywalls, but to continue work on this app I need revenue from the app purchases. +I'm trying to maintain a reasonable balance between paid and free features.",2020-03-05 16:46:11,most_relevant,com.levor.liferpgtasks +PM Jackson,https://lh3.googleusercontent.com/-ORcIaKjo0OM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO1Uguo4ssYygVARLTsL7cFbfJ07g/photo.jpg,App itself is nice but needs a lot of polish. Right now it's kind of a bugfest.,3,0,2.21.1,2020-01-19 01:07:14,Can you please share which features you find difficult to use? Please contact us at liferpgtasks@gmail.com.,2020-01-23 16:21:23,most_relevant,com.levor.liferpgtasks +Harold Matthews Jr,https://lh3.googleusercontent.com/a-/AOh14GhUDR4XQZTs5QDoFO-P-5PKPdLRtLrHqVqW0I-_LA,"It's a good start...I currently have a 1 month subscription. Needs more habit type features. Needs to track , display and keep a record of current and longest streaks. Repeat option needs much more options like; 1. A way to track a task that's done a certain number of times a day like 3 times a day. 2. Repeat week, should also have the option to have the task done a certain amount of days not just on specific days. 3. Achievements should have an option for completing consecutive days.",3,2,2.21.0,2020-01-08 18:00:19,Thanks for the review and great suggestions.,2020-01-14 13:27:30,most_relevant,com.levor.liferpgtasks +Michael Bruce Allen,https://lh3.googleusercontent.com/a-/AOh14GiHE0aldur4Z5rCp89j7e0PRII44Xu56t5L02JiBA,"This app could be five stars to me. what is stopping me is the confusion on knowing just what tasks to do or not to do. There's a confusing list of tasks that show up at the bottom and if I did not do them the day before or not click them, they just show up there. If I delete a task from the calendar on accident what do I do? the calendar should be completely removed cuz it's worthless. I think tasks should have some sort of streak function or show how many times you have done it in a row.",3,1,2.21.0,2020-01-14 14:02:49,"If task is overdue - it will be shown in Today and Tomorrow groups by default. It can be disabled in settings. +If you delete task - well, it will be gone :) +But you can delete task recurrence per specific day if task is opened from calendar for one of future dates. +For streaks - please take a look on ""Generate habit"" feature on task edit screen.",2020-01-14 14:12:37,most_relevant,com.levor.liferpgtasks +HoppyTimes,https://lh3.googleusercontent.com/a-/AOh14GihBbu1VrYbW0ksdHPeHKAcu-WtoLXmAxbcMRJY4mM,"I went from touching the app once a day to once a week, over the span of about 2 months. Would be better if notifications were functional/ could be enabled. I like the concept of being a hero, though. I just always fail all my daily set tasks (repeatedly back to level 0 hahaha...) -- I stick to my sticky notes app (with reminders) that I've been using for years. [Edit 11/10/19]: I see notifications on appear on my phone now! Thank you.",3,6,2.19.0,2019-11-10 21:36:51,"Thanks for the review. +Could you please check if app has notifications enabled in system settings and in battery settings. +On some devices they are disabled by default and app just can't show notifications.",2019-11-09 20:09:32,most_relevant,com.levor.liferpgtasks +Martin Haryanto,https://lh3.googleusercontent.com/a-/AOh14GiUezdqm-AyZK4hOyTHYQwyPdOtiZGULAw1iPeIwQ,The fact there are no predefined tasks makes it super hard to use. Or rather this will work if user can just define the task (quest) easily. Or maybe we can import (by purchasing) some set of quests. For me it is still quite confusing and hard to manage with all the options offered. would be use it furthere more if not too complicated,3,2,2.19.1,2019-11-17 11:00:17,"Thanks for the review. +I'll work on default tasks to make app acquaintance process easier.",2019-11-29 12:40:15,most_relevant,com.levor.liferpgtasks +Alin Sabo,https://lh3.googleusercontent.com/a-/AOh14GgZMsFVOO-9vggbMVagRYrz1A6C9SoObNYMB2ZzeA,A very good but incomplete idea. There is no way to track time spent on certain habits. there is a big difference between doing 5 minutes of something and doing it for 1 hour... Besides the statistics are super limited and basic.,3,0,2.20.0,2019-11-29 13:10:50,"Thanks for the review. +If you have any thoughts on what statistics you would like to use or how would you like to trac habits - please contact me via email - liferpgtasks@gmail.com.",2019-11-29 15:43:09,most_relevant,com.levor.liferpgtasks +Artem Vasenin,https://lh3.googleusercontent.com/a-/AOh14GjhtWLOFktZmEFk7BIfSAjDwGuT7AqG3FeWVmfR0A,"Might be good, but it doesn't have task library and trying to set everything up myself is not worth it.",3,8,2.20.0,2019-12-09 20:27:56,"Thanks for the review. +Good idea, I'll add some sort of tasks library in future.",2019-12-13 08:13:19,most_relevant,com.levor.liferpgtasks +Sandy J,https://lh3.googleusercontent.com/a-/AOh14GiwgU0Q50s1sPRNmTdhpqCPd0jebLwjzJsF1xAiig,App crashing a lot. Do look into it and solve the problem asap.,3,0,2.20.0,2019-12-08 13:07:26,"Thanks for the feedback, I'll try to fix crashes and improve overall stability.",2019-12-13 08:07:51,most_relevant,com.levor.liferpgtasks +aya mostafa 0147,https://lh3.googleusercontent.com/-seJs8SwwHz8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNLy9POGnCHoikfCBaDBIXDOJLt-Q/photo.jpg,It would be great if the notifications actually works!! I don't get notified by any task I put in at all,3,0,2.19.0,2019-11-16 11:45:46,"Thanks for the review! +Please check system notification settings, on some devices notifications are disabled per app.",2019-11-29 12:38:01,most_relevant,com.levor.liferpgtasks +Carden Blackthorne,https://lh3.googleusercontent.com/a-/AOh14GiBw0mCZLXarDq6KCUmkBBggEdhegHfMPwsEh_t,"Very motivational, but what's with the subscription fee!? Fifteen dollars a year??",3,0,2.19.1,2019-11-23 20:46:59,App can be easily used without any purchases at all. A lot of major features are available in free version of the app.,2019-11-29 15:17:52,most_relevant,com.levor.liferpgtasks +It's Me Echo,https://lh3.googleusercontent.com/a-/AOh14Gg9Zg3t1mdNIr7WVGyKpoAwfXf71-BWLvOFkAgjJg,"Setting things up can be a bit confusing but overall it's good. The notifications aren't working on my phone, and when setting the task to something that can be completed all day, I'd like to be able to set times for me to get notifications about it without having to do the weird ""give me a notification 12 hours before"" The whole point of me getting a to-do list app was to have not only a list, but reminders, so until the notifications work I'll have to resort to a different app.",3,1,2.18.0,2019-10-19 17:28:33,I understand how annoying that must be. I'm working on a solution. I hope you'll re-consider the rating once I fix the issue.,2019-10-25 15:30:40,most_relevant,com.levor.liferpgtasks +Zeuy AztecKobold,https://lh3.googleusercontent.com/a-/AOh14GgkhztWJMy3I3y97KKRZdzxpsaeR6t61iSEnxq4qA,"Ads were annoying and it took a lot of steps to set up tasks. However, it was nifty to use and definitely allowed a lot of control due to the aforementioned steps.",3,0,,2020-01-26 06:13:33,"Thanks for the review. +Yeah, I've tried to make setup as flexible as possible, but it takes a lot of time for the first time. +I'll try to somehow simplify first setup experience.",2020-01-29 17:39:34,most_relevant,com.levor.liferpgtasks +Derek Sparks,https://lh3.googleusercontent.com/a-/AOh14GghLvoRq69gH7blHGcmfHz8uLPO2ngJmSSJHKDMU0k,Asks for a subscription to get all the features. I'd pay a one time fee only. Guess you don't want my money bad enough. Edit: yes I know which is why you got a negative review. I like your app. I don't like paying subs. I raised u to 3 stars for taking this so we'll. All to often devs get all butt hurt. Add a feature to buy a lifetime license even if it's 20 dollars and I'll buy it. Or give us an option to see ads without a sub at least. Cheers. Do this than 5 stars.,3,0,2.18.0,2019-10-18 07:56:46,"Thanks for the review. +Unfortunately app only supports subscriptions at the moment.",2019-10-18 07:51:23,most_relevant,com.levor.liferpgtasks +Riyango,https://lh3.googleusercontent.com/a-/AOh14Gg2jfQPX8kSYQI8A6RU5bnAWhYq6cQcq_D3JnApQA,"I wanted to buy the app but the subscription feature turned me down. I wish there was a one time purchase option to unlock essential things like calendar, unlimited inventory etc.. (and the subscription for themes, sounds and other cosmetic stuffs)",3,0,2.18.0,2019-10-15 13:44:13,"Thanks for the review. +Unfortunately app only supports subscriptions at the moment. It is most suitable form of monetization for an app at the moment and we decided to include all premium content into it.",2019-10-18 07:52:51,most_relevant,com.levor.liferpgtasks +Gustavo Bustos Soto,https://lh3.googleusercontent.com/-WZAJe7H4eig/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO8tcwuiE1OvlRSbnp5XLajBcvY1g/photo.jpg,"I really like the app, but I would enjoy it more if there was the ability to manually order tasks through simple drag and drop like in LifeRPG. Also, if there was a quicker way to edit like in Life RPG that would be great. I would be willing to pay as a way of supporting you guys, but right now LifeRPG is more practical and they'll get my money until you catch up. Love the decreasing skills btw :)",3,4,2.9.1,2018-12-30 01:32:56,"Thank you for the review. +Yeap, will do drag and drop. +Could you please add more details about quick edit?",2019-01-02 18:23:39,most_relevant,com.levor.liferpgtasks +Christopher Kinnaird,https://lh3.googleusercontent.com/a-/AOh14GiNXyoNv7iFXHK4u1F4Vq6bEcw2J76Kj0CAQpsk,"It's not bad. But it seems greedy. Like, why do I have to pay to unlock individual color themes if I'm paying a monthly subscription? Also, LifeRPG was so much better than this. More icons to choose from and they were free. If you're going to make an app that copies all the ideas from LifeRPG, at least make it better. Why can't I make an accomplishment like: learned blank piece of music, without having to tie it to accomplishing a certain number of tasks or reaching a certain level?",3,9,2.10.1,2019-02-09 22:07:41,,,most_relevant,com.levor.liferpgtasks +marlon crawford,https://lh3.googleusercontent.com/-CY6MMwchTaM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNf3Wkt39xuexqEkDSsWPzsHfZKoQ/photo.jpg,"Really amazing, but there are pop-up adverts if you're not a member, and for someone like me that's quite a few adverts daily. Very annoying!, But everything else is PERFECT. FYI The designers have to eat so I'm not mad but God damn that's annoying Would be really cool if you could at least watch a bunch of adverts at once so you don't have to do it later. Just an idea id be up for.",3,10,2.18.0,2019-09-27 05:33:44,"Thanks for your feedback. +That's pretty good idea. I suppose I'll work on adding possibility to watch 30 sec ad to remove all other ads for 1 day and make it cumulative. So it would be possibly to watch e.g. 7 ads and remove all other ads for a week. Will it for for you?",2019-10-02 10:42:16,most_relevant,com.levor.liferpgtasks +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I really like this app, makes life more fun foy ADHD brain. But sound making ads are a real pain. I'm okay with the ads in general, they don't pop up often enough to be annoying. But can we get rid of the ones that make sound so I can stop embarrassing myself in a quiet class room after checking off an assignment?",3,4,2.10.1,2019-03-11 14:52:43,"Thanks for the feedback! +Unfortunately ads are provided by Google ads network and Do It Now app do not control them. So I'm not sure if it is possible to make them silent. But I'll investigate this question.",2019-03-18 10:17:20,most_relevant,com.levor.liferpgtasks +CA C,https://lh3.googleusercontent.com/-ud4gPzh6gJU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPqIaeU8G-9pJFkvGel6X5IjGOBiw/photo.jpg,"overall a really good app. well thought. however, I would personally spend some time on the interface/interactions. it became too many steps for my preferences. realizing I needed to change a bunch of tasks, I had to pick a task, bottom right to edit, then tap below description, untick termless, select date, click ok top right, another ok top right. that's too much. I suggest adding swiping options to the task (look at nine email as an example). but overall good. might return one day :)",3,0,2.15.1,2019-07-07 16:42:31,"Thank you for providing your valuable feedback. +Indeed, appearance and interactions are not our strong part. But we will work on it.",2019-07-11 05:33:55,most_relevant,com.levor.liferpgtasks +Chantelle v.d. Vyver,https://lh3.googleusercontent.com/a-/AOh14Gidlws5-4hRYUBumOihHMGen_29ApMofepU2ggGQA,"A decent app for its intents and purposes but I struggle to stay invested. It's visually good, great icons and colours, also has a nice selection of skills. My biggest issue is the navigation. I can't immediately see or twirl down to see subtasks. Actually marking something as done, especially subtasks is a challenge - mostly because you face to keep tapping through the task and pages of info to get there. Perhaps a mind map or something would make it easier.",3,7,2.16.0,2019-08-13 20:29:08,"Thanks for the review! +I'm working right now to embed subtasks right into tasks list. +When task in list is with subtasks - execution button will be replaced with subtasks button. Click on it will expand all subtasks right below the parent task. When all subtasks are done - execution button of parent task will be displayed again.",2019-08-15 14:27:23,most_relevant,com.levor.liferpgtasks +Urszula R,https://lh3.googleusercontent.com/--I1acJ-JtKs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM7BZ9bkS74WR5rGxPkREL5Dbt5pw/photo.jpg,"the app itself is a wonderful idea, but the interface and functions need a lot of work in my opinion. it took me so long to figure out how to set up a habit, and i still don't understand how to use a task groups or steps. I gave up and came back to my previous tracker because it was too complicated and time consuming to learn how to use this one. Anyway, I will definitely retry after an update :)",3,0,,2019-05-19 22:41:42,"Thank you for your kind feedback. +You can use built in user guide (Menu > About > User guide) to catch up when having difficulties. But overall I agree that it's pretty hard to figure out how things work.",2019-05-20 09:35:11,most_relevant,com.levor.liferpgtasks +Vassilis Kanavos,https://lh3.googleusercontent.com/a-/AOh14Gjv2HnIrEQ-QSYeUJqCRXzgDivPUGN6Xk2NbtFS1A,"Very interesting concept but it's extremely time consuming to setup and add all the content you need. Also being able to edit everything and choose the rewards freely kinda looses it's purpose. I understand some people might like the feature, but I personally do not. Overall, great app if you have the time to set it up and get familiar with it.",3,2,2.15.1,2019-07-14 22:22:52,"Thanks for review! +We are trying to create as much flexible app as it is possibly, but unfortunately it comes at cost of increased difficulty and time to set everything up.",2019-07-23 10:14:50,most_relevant,com.levor.liferpgtasks +Strelok88nazi Flippynazi,https://lh3.googleusercontent.com/a-/AOh14GiSJyTnbpT4mLHbGT9BiGzgvAjHW1yT4RFzuh9ymnU,"It would be good if it had alot of tasks that are given by the app accordingly to your interest, and even recommend books, etc. Also if there was a competitive mode where you can see what level other players are, and that to level up you have to do certain things that can be verified somehow (for example, read book requires a picture of a book with your face, or run requires a tracking through the GPS to actually verify yoy ran) in this way it can even be competitive",3,5,2.16.0,2019-08-26 05:55:32,"Thanks for the review and suggestions. +Automatic tasks recommendation sounds great, but pretty difficult from development perspective. + +I have some thoughts on ratings - I plan to add possibility to create friends list from users of the app and assign each other tasks. Possibly rating could be created by number of finished tasks assigned by others.",2019-09-03 10:39:37,most_relevant,com.levor.liferpgtasks +Jon Fogarty,https://lh3.googleusercontent.com/-mvRK7AZ8J2I/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPq0MkdqBH-CULkOtJaXbHwUwQeSA/photo.jpg,"With discipline training apps, the market bet is on already diligent people to buy your app. With such a small margin of customers you cannot expect success from limiting customization options to microtransactions. Let alone subscriptions. Otherwise the app was decent. Good work! Credit where credit is due!",3,2,2.7.3,2018-09-28 04:17:19,,,most_relevant,com.levor.liferpgtasks +Ainur Amri,https://lh3.googleusercontent.com/-4jt-lRUdunI/AAAAAAAAAAI/AAAAAAAAAQw/AAKWJJM-4c5OYS-4wioUlLUGP0f0Qj93BA/photo.jpg,"Good experience, nice concept, sad that it's not completely free for a to-do list, and completely frustrating that it keeps crashing everytime I want to edit my level and changing my avatar. It went brainfarted when it got overwhelmed by a long list of levels starting from 50.",3,0,2.16.0,2019-08-20 03:10:31,"Thank you for the review. +Unfortunately it is not possible to make app free, since subscriptions allows to use third-party services, enahnce and support application. +Bug with hero levels in known and will be fixed.",2019-09-03 10:20:28,most_relevant,com.levor.liferpgtasks +Antonio Calloway,https://lh3.googleusercontent.com/a-/AOh14GhKEm75kCUmuRMqyQrz2gP_FxlId42stCWCdNMUmg,"it actually is a good app, but it wont do the one other thing I need it to do, which is notify me of a task I set. one day it does and the others it doesn't. I have reset my phone settings several times because of this, looked it up and still no results",3,8,2.9.1,2019-01-02 07:38:04,Thank you for the heads up. I'll try to locate and fix this problem. Could you please share notification settings for the tasks with missed notifications?,2019-01-02 18:36:49,most_relevant,com.levor.liferpgtasks +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I love the idea of it, but currently it's far too complicated for me to use. I'd love it very much if all the setting rewards and gained skills was a little easier to do.",3,0,,2019-03-02 20:38:10,"Thanks for the review. +You're right, app is pretty complicated, but that's the price for high flexibility.",2019-03-07 07:59:10,most_relevant,com.levor.liferpgtasks +Damian Kyc,https://lh3.googleusercontent.com/a-/AOh14GgPweLOwXMlHGZ1aBpi8b-Ttipdrdqye5IjGZqI,"There could be any difference between gold that we earn. If my rewards are ""cheat meal"" and ""netflix episode"" and tasks are ""run 10 km"" and ""read a book"", it shouldn't be able to get a cheat meal reward for reading a book...",3,0,2.15.1,2019-07-31 22:31:57,"Thanks for the review. +I have same thought some time ago, I've even created a prototype with few currencies (gold, silver, various gems), but result was pretty clumsy and hard to set up. I suppose for the mobile app it is better to stick with single currency.",2019-08-02 14:34:53,most_relevant,com.levor.liferpgtasks +Dmitry Vyalkov,https://lh3.googleusercontent.com/a-/AOh14GiWwjfQUVnp_U2VpR-2rXQINN3VJBvZIyfXiA2A,"Awesome idea, five plus in advance. Although, turns out there are more appealing apps, interface wise. But non the less, it is all about insides, not the outside.",3,1,,2019-07-03 22:18:18,"Thanks for the feedback. +Indeed, interface is not our strong part, but we will keep working on it!",2019-07-09 05:37:18,most_relevant,com.levor.liferpgtasks +Jacob Runge,https://lh3.googleusercontent.com/-gdGRKmVh6A8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP-r06MO6Poq-HzKtfwHCWIjYBQkA/photo.jpg,It crossed my mind to buy the full version but then i saw they want a monthly payment. Why not just make it $5 lifetime? Seems like a good app not sure who copied who with liferpg seems too similar.,3,0,2.15.1,2019-07-19 17:24:06,"Thanks you for the feedback. +We've tried one lifetime purchase but in such case app development and 3-party services fees are completely unsustainable. Subscription allows us to continue app improvement.",2019-07-23 10:30:27,most_relevant,com.levor.liferpgtasks +Michael Rochette,https://lh3.googleusercontent.com/a-/AOh14Gg7P4R735oU7J-5L7ybT5v-vhidl6qzhsz3gFWdOQ,"This app should be made to work around certain schedules. For example; people who work the third shift (graveyard shift), have a completely different schedule than, say a person who works a 9-5/7-3/3-11, etc. I'm certain this adjustment would be greatly appreciated",3,0,,2020-02-12 00:03:04,"Thanks for the review and for suggestion. +I'll add possibility to select time when day ends in one of the future updates.",2020-02-14 08:34:39,most_relevant,com.levor.liferpgtasks +Joseph Rodriguez,https://lh3.googleusercontent.com/a-/AOh14GgYghp8ChsI3ERCGurwP-gZA5ZsqBOS9hJKdH3Tsw,Ok but doesn't feel too user friendly and kinda weird that the calendar is behind a paywall,3,0,,2019-11-14 13:23:39,"Thanks for the feedback. +Calendar is one of advanced features so we decided not to include it into free features set (which include almost all other features).",2019-11-29 11:56:03,most_relevant,com.levor.liferpgtasks +Equinox paul,https://lh3.googleusercontent.com/-vhop1wDu36k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM9pseryrffoPN_glDozFf0Mcdrxg/photo.jpg,Needs fixes... Like the repetition is screwed also the generate habit... Looks like the developers don't use it themselves.,3,1,2.7.3,2018-10-12 05:38:34,"Thanks for the review. +We're working on habit generation improvements right now, so it will be working better starting from next release. + +And could you please add more details about repetition?",2018-10-12 08:00:31,most_relevant,com.levor.liferpgtasks +Allian Abogado,https://lh3.googleusercontent.com/-Tm5agEok2fs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPKm2LUaKrE9TQLB2KI7F0zW3LRXQ/photo.jpg,Suggestion: Can tasks take things from the inventory? Maybe some items can only be acquired through achievements and those items are needed to complete a task.,3,0,,2018-09-26 05:24:14,"Thanks for review. + +Yes, we need to add items to tasks and achievements as well.",2018-10-08 06:21:40,most_relevant,com.levor.liferpgtasks +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,This app is great but the setting of the aims and the tasks takes a long period of time therefore it eats up your productivity,3,0,,2019-01-20 10:31:07,You're right. That's why I suggest to start small - with only few tasks. Which you will be able to duplicate for similar tasks. This will also help with app mechanics acquaintance.,2019-01-25 15:25:32,most_relevant,com.levor.liferpgtasks +Phua Vincent,https://lh3.googleusercontent.com/-SO_l_ORJQBA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOxSVq525h3u5hyy06lrsszBLXliA/photo.jpg,The app is great but after using awhile it start to lag.,3,0,2.15.0,2019-06-18 06:38:37,"Hey, thanks for writing a review. Sometimes, the app may be slow but such instances are rare. If it happens too often, please let us know at liferpgtasks@gmail.com. We'll have things investigated.",2019-06-18 13:11:33,most_relevant,com.levor.liferpgtasks +Afaq Saeed,https://lh3.googleusercontent.com/a-/AOh14Gid4S9oyckVYLjntFyS9LKYBNOND0YkmrGkBqQ,Everything requires you to pay money might as well make it a paid game instead of deceiving people for a free app,3,0,,2019-07-05 15:39:07,"Thank you very much for your review concerning our app. All major features in it are open for all users. Unfortunately we can't provide all features for free use, since it won't be possible to continue working on the app.",2019-07-09 05:45:14,most_relevant,com.levor.liferpgtasks +Shelbie Peterson,https://lh3.googleusercontent.com/a-/AOh14GiJxFajQWsMoxEcPLvnzPslrZK8-VOuTpT3iDse1g,i love the concept but i would love to see a list of suggested 'to dos' cuz i can never think of things to do,3,0,2.15.1,2019-07-02 05:14:21,"Thank you for providing your valuable feedback. Please reach out to us at liferpgtasks@gmail.com, if you have other suggestions.",2019-07-09 05:31:27,most_relevant,com.levor.liferpgtasks +Joe Wall,https://lh3.googleusercontent.com/a-/AOh14GjUCVqltVED0jdfsHoYk0doK412bwv_tpypxsi84w,"Its ok, notifications dont work very often.",3,1,2.9.1,2018-12-18 19:43:41,"Thank you for the review. +Could you please share setup of tasks for which notifications don't work?",2018-12-20 11:46:16,most_relevant,com.levor.liferpgtasks +Cody Sparks,https://lh3.googleusercontent.com/a-/AOh14Gh5o0xhYJmCDN7yO4DkY-8TsKGe8efyoueOnJVXkA,Too much paid only,3,3,2.14.1,2019-05-22 17:08:48,"Thank you for the review. +All main features are free to use for all users.",2019-05-29 08:53:48,most_relevant,com.levor.liferpgtasks +Wetu Kuzatjike,https://lh3.googleusercontent.com/a-/AOh14GjZ49y7yIPN21AqT_Q_m2ZIoGvQ6M3aL-lHkyheKQ,reminder doesn't work,3,0,,2019-08-02 08:18:58,"Thanks for the review. +I understand how annoying that must be. I'm working on a solution. I hope you'll re-consider the rating once I fix the issue.",2019-08-02 14:45:29,most_relevant,com.levor.liferpgtasks +Iindin the Edresia,https://lh3.googleusercontent.com/a-/AOh14GgPKIi8tZKNFUJb0bguCimdDO6iIoR-n6M12bgo,"1. Кривой и неработающий экспорт и импорт. 2. Нельзя удалить базовые навыки, заданий и характеристики. 3. Нельзя удалять сразу несколько навыков, заданий и характеристик. 4. Кнопка отчислить данные не удаляет всё, а только откатывает к базовым. Спустя пару месяцев снова установил приложение. Загрузил с автосохронерия данных - загрузилось всё базовое и с диска тоже самое (настройки тоже). Проверял после установки изменяя данные и сохраняя их потом. Итог: после загрузки зброс к базовым.",3,5,2.20.0,2019-12-17 07:23:14,"Спасибо за ваш отзыв. Я уже исправил часть недостатков в последнем обновлении и буду стараться исправить остальные. +1. Импорт и экспорт исправлены и работают хорошо. +2. В приложении можно удалить практически любой предмет зажав его. +3. Постараюсь добавить. +4. Такое поведение и было задумано. К сожалению, удалить полностью все можно только вручную.",2019-11-29 12:56:14,most_relevant,com.levor.liferpgtasks +Jason Bourn,https://lh3.googleusercontent.com/a-/AOh14GhGEM_YK78mFwObxM47FDGxMQKm9w1ogEyhjUx8Lg,"Don't like it very much, but I think it's just not for me. It's very complex and deep with tasks and such (I could even set the percentage of fear for a task... What??) so I didn't get very far before I just said ""forget it"". My life is too busy for such complexity.",3,2,2.7.1,2018-08-28 11:44:57,"Thanks for the review. +Yes, app is pretty complex, but that was the price we need to pay for being really flexible app with a lot of settings. With which users can setup everything to their comfort.",2018-08-29 07:43:12,most_relevant,com.levor.liferpgtasks +Laira Agojo,https://lh3.googleusercontent.com/a-/AOh14GhCzuuRgzUCMyk99qgE50DjS7pG6qg93jabouCMjQ,"Uhm there's a little bug that I encountered, I cannot disable the skill +decay :< pls fix I'll give 5 stars",3,1,2.6.0,2018-05-19 02:30:09,"Thanks for the heads up. +Fix will be available in nearest update (2.6.1)",2018-05-23 07:36:03,most_relevant,com.levor.liferpgtasks +Noura Ida Peters,https://lh3.googleusercontent.com/-Pg01aeyEe9g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNzbugHISkjWmBoAIecT0lMeYUZ_w/photo.jpg,"I really liked the app and had been using it for a few weeks. But a while ago whenever I would open the app, it would load for a bit but then freeze and crash if I tapped anything. The rest of my phone still works fine (doesn't freeze) while this happens. Is there anything I can do to fix this? I would love to continue using this app. Thank you! (And I have tried uninstalling and reinstalling.) Edit: Clearing did solve the problem for now. Too bad I had to give up all the progress I made. But thank you anyway, at least I can use the app again.",3,7,2.5.0,2018-04-02 07:33:37,"Could you please try to open phone settings, apps, Do It Now and clear app data?",2018-03-27 14:55:47,most_relevant,com.levor.liferpgtasks +-Crispy- -Boi-,https://lh3.googleusercontent.com/a-/AOh14GjN0kJ_z6cmJ0RR1nkIu9dx6_7lkYmsWaNW3P1A,"Loved the app but at some point it stopped letting me look at my tasks +without instantly crashing so I'm not using it anymore. I'll be sure to try +it again and recommend it to friends if the issue isn't present next time. +😊",3,1,2.5.0,2018-05-05 22:50:27,,,most_relevant,com.levor.liferpgtasks +Mehmet Sakarya,https://lh3.googleusercontent.com/a-/AOh14GhEKiu9_Co-cDQjndjMrbuXuvDaJHXgksQXPLOS,"I thought it was a really good app until today. It started to crush and i couldn't do anything to backup. I lost all of my options, to-do lists, achievements. Don't know what should i do, really disappointed. Auto back-up should be offline too and must be selected when we start to use app or you should use your own database system to backup files(not dropbox)",3,4,2.4.0,2018-03-18 17:59:03,"Ah, we're really sorry that you lost your data. +Good idea with local backup, totally need to add it.",2018-03-20 10:42:49,most_relevant,com.levor.liferpgtasks +MrMoonBear,https://lh3.googleusercontent.com/a-/AOh14Gj84xcZCOatk6_aPNQn_PeP8G-aK-hivSVXYE33,"It was really good for helping me to get motivated for a few days, but when I shut my phone off the notifications stop coming until I open the app again, and check off something.",3,2,2.4.0,2018-03-24 13:31:40,"Hm, thanks for the heads up. We will take a look.",2018-03-27 14:52:13,most_relevant,com.levor.liferpgtasks +wood land Nut,https://lh3.googleusercontent.com/-i0PPxFebTAY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJODtrHywxamnzA9zW7K6SYUFSMxmA/photo.jpg,Great app. Needs a few things like task fail without consequences option. Mostly a full paid version without subscription or in app purchase. Not every one has everything connected to Internet all the time.,3,1,2.0.4,2017-10-12 20:53:45,,,most_relevant,com.levor.liferpgtasks +Devon Jones,https://lh3.googleusercontent.com/a-/AOh14GhoumhtioyTwsnu5fk768IMuLLnV51QEIJmB26Naw,It's such a spectacular idea but I had trouble figuring out all of the different aspects and it was just too much for putting in tasks on a day-to-day basis.,3,1,2.0.4,2017-09-19 21:15:10,"We have a guide (Settings > About > User guide). +Also you can write us email with all questions to liferpgtasks@gmail.com - and we will gladly answer them!",2017-09-22 13:50:12,most_relevant,com.levor.liferpgtasks +Jake Skudlarek,https://lh3.googleusercontent.com/a-/AOh14GhkVTaUOluUfbWJ6SK2zq4xwox1d2qgbaYvywN1kw,"Everything about this app is perfect! Except for the widget support. The widget doesn't update with the new tasks I make in the app. And I wish I could mark tasks as complete right from the widget. I would also like to be able to make multiple notifications for one task, or set one task to repeat multiple times a day. I also wish the notification for the mission would show up every time. Great start",3,15,2.0.3,2017-08-17 02:51:37,"Thanks for review. +I think we add possibility to perform task right from task list widget. And definitely we're gonna look at widget update problem. +Multiple notifications - added it to development plan. +Task multiple repeats per day - that's a big task from development perspective. Maybe it will be added, but not in nearest future.",2017-08-10 06:58:51,most_relevant,com.levor.liferpgtasks +Isa Egizbay,https://lh3.googleusercontent.com/-oCa9_xAAlT0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNIck3kCnfuets7ONJEVPtcDCTqaw/photo.jpg,"Hey, guys! This is good idea! However, I have a feedback for you: Several times I accidentally was clicking task more than once, so I was increasing my level. I didn't found related settings. I think you should make task clickable (checkable, do you get me?) )only once per day, and highlight the finished tasks. This features will prevent accidental checking, therefore increasing level incorrectly. Could you explain me how to use such features, if you already have them??",3,13,2.0.3,2017-08-15 15:06:09,"Hello. +There's types of tasks that can be performed few times/day. So I suggest you to use Undo button. It is displayed in dialog (along with OK) after you clicked on perform button (with ✔️). In this way you can undo any misclicked task. +If you have any other questions - feel free to mail us to liferpgtasks@gmail.com",2017-08-16 05:59:45,most_relevant,com.levor.liferpgtasks +Shovon Bhowmik,https://lh3.googleusercontent.com/a-/AOh14GjTAVVf2eQXBNwOP6oHlx5JqimeH1ZUsBOXPPRB,This is ok! But it required bunch of upgrade and some new features! Will keep it! But wait till is it perfect!,3,1,2.0.3,2017-08-22 20:22:04,Thanks for review. Could you please share some suggestions that will help to make Do It Now better?,2017-08-23 05:51:29,most_relevant,com.levor.liferpgtasks +Orange Penguin,https://lh3.googleusercontent.com/-XcP-XCcl8QA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNmtq4HtnI70oTdfMmsor2QdiPoYg/photo.jpg,Are there any guides out there?,3,1,2.0.3,2017-08-15 22:17:56,There will be in nearest update.,2017-08-16 03:51:42,most_relevant,com.levor.liferpgtasks +hitesh meghani,https://lh3.googleusercontent.com/a-/AOh14Gg8ejFuAmbQ_dZs02ACoa4er_fqnn7TX6pToP2V,The concept is good. But why the app is not notifying me about thr task even though I have turned the notification on? This is very bad.,3,2,2.0.2,2017-07-20 16:17:09,,,most_relevant,com.levor.liferpgtasks +Yari SY,https://lh3.googleusercontent.com/a-/AOh14Gha2GKsDu528Y3Vqgqpv4P8mH-gkN1ROvV20nAm,"The app is good but a FAQ would be appreciated. For example, I cannot find out how to create a group for my tasks.",3,2,2.0.1,2017-07-08 21:03:35,"To create group - open tasks list, tap on group selection button at top, tap settings button in toolbar and then + button. In nearest update we will add possibility to add new group right from dialog on edit task screen. +FAQ is under development right now.",2017-07-10 11:49:40,most_relevant,com.levor.liferpgtasks +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"This is unforgivably close to perfect. Why no timer? So many tasks are long-term and need to be chipped away at bit by bit. You could have it where once a task was selected, the timer would start, and you would earn a certain amount of experience and coin for every x amount of minutes completed. As it is, I have two pair this app with a different promodo app.",3,7,2.0.0,2017-07-01 21:46:50,,,most_relevant,com.levor.liferpgtasks +deekat327,https://lh3.googleusercontent.com/a-/AOh14GiJYjoh1PSbcb3GE0lJi_dTtEIS1a8UXMusVJsHMQ,"I can't be the only one multitasking. Therefore, I don't have time to figure out a basic program. I put in a picture and it was so tiny! I put in my tasks yet some are ""timeless"", some are daily, and there was powerlifting! I'm physically crippled!",3,4,1.5.4,2016-12-07 12:10:43,,,most_relevant,com.levor.liferpgtasks +mymyx2000,https://lh3.googleusercontent.com/a-/AOh14GinBUieGlR0GZ7977QZaJv91D9KkiOmbLXr3nvn,"My settings kept on changing ever time I reopen the app. For example, fear is set to zero, when I open the app again, fear is set to 80. Why? Please fix this. It's getting tiresome to re-do the settings over and over.",3,1,1.5.1,2016-10-14 05:52:03,"Thanks for reply. +This bug is already fixed, fix will be available in next update.",2016-10-15 14:49:54,most_relevant,com.levor.liferpgtasks +Najwa HAD,https://lh3.googleusercontent.com/a-/AOh14GjjMaDGxFwMkKtkZoV1MA1BsfLhjDkjEpdoR66hwg,"Its almost what i was looking for apart from is there a way to set how much xp is required to advance in level and how much xp completing a task will give you? E.g. i want to make it so i start at level 40 in benchpress and achieving 91kg will put me at level 41. I will reach level 100 in benchpress by the time i can do 150kg, completing 120kg would put me on level 70 etc. Otherwise the numbers are just meaningless to me. Really i want to set it up so when i reach my goal in each thing i am at level 100.",3,3,1.4.3,2016-08-25 21:47:19,"I'm sorry, but no, there are no way to set xp required for level neither xp gained by task. It's slightly different system based on importance and difficulty (and fear in future) of task.",2016-08-26 07:06:17,most_relevant,com.levor.liferpgtasks +Russell,https://lh3.googleusercontent.com/a-/AOh14Ghx90t4V6jNSzrp5jFpwRV96qpDfF_GnR_q9ZOEaQ,"But can't really test this out since I'm tied with Habitica. Oh yeah, I personally don't like the avatars though... It'd be nice if to upload your own avatar. Oh, just saw other people suggest the same lol.",3,1,,2016-08-10 14:51:23,This feature will be available in next update. =),2016-08-11 05:40:34,most_relevant,com.levor.liferpgtasks +Ravenwolf Burke,https://lh3.googleusercontent.com/a-/AOh14GhB83KsWWAutCM4b0zOsdPkkmsGvTknRaIAAlGjPQ,But then it started locking up everytime I tried to load it. ←ved it until then.,3,0,,2016-12-27 02:25:29,In last update we resolved a lot of issue. Please try new app version.,2016-12-29 09:53:43,most_relevant,com.levor.liferpgtasks +Vivion Lin,https://lh3.googleusercontent.com/a-/AOh14GhbP9Cq98EhmIHRdBjVG_3lA_jdALJTiTV-cc-6Dg,It's a pity that your tasks become overdue not according to your system time...,3,1,,2017-07-30 13:55:59,"Have you changed system time after task creation? +Please contact us on liferpgtasks@gmail.com",2017-07-31 07:51:35,most_relevant,com.levor.liferpgtasks +Gabrielle Carvalho,https://lh3.googleusercontent.com/a-/AOh14Gh6slDfEZ5FyY5gTVTFtOj3bWoXVx5bJl9w-0DkWg,"A intenção é boa, mas a interface é bastante confusa. || The intention is good, but the interface is too confusing",3,1,,2018-01-08 20:55:51,"Thanks for review. App development is still in progress, so I suppose we will come up with more pleasant design. Do you have any specific suggestions?",2018-01-19 14:33:10,most_relevant,com.levor.liferpgtasks +sleepy tina,https://lh3.googleusercontent.com/a-/AOh14GjzJ4heCW3LmxvKGixyeW5QYnyzQ2RwEVXiEkJj29E,"It ok, gets boring after a while",3,1,,2018-03-28 02:00:27,,,most_relevant,com.levor.liferpgtasks +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"You're good guys. Your efforts are admirable Please consider making the app +available to milions of people and support ""rtl"".",3,0,,2018-07-17 03:42:43,"Thanks for review. +Yes, I have RTL support in development plan :)",2018-07-18 12:40:25,most_relevant,com.levor.liferpgtasks +ABL BP MSK,https://lh3.googleusercontent.com/a-/AOh14Gj7mVnRjiUSYdw_LP8wynfJaH2vKco71crZdR4IKg,It is a good application. It is very useful. It is just okay.,3,1,,2017-11-02 05:09:13,,,most_relevant,com.levor.liferpgtasks +Dexter,https://lh3.googleusercontent.com/a-/AOh14Ghi3z4T5ytAC0oMnkf5Jj0sOpQHCUsI8WzH5kybRQ,Good but not ok,3,1,,2017-08-20 02:42:55,Please share with us your ideas and suggestion and help us to make Do It Now app better.,2017-08-21 06:22:15,most_relevant,com.levor.liferpgtasks +belu irina,https://lh3.googleusercontent.com/a-/AOh14Gjoarz1yg5U_z-SX6GYOCDAil2PqJOW8XKlnDL3WQ,Good app and I like the setups that are already prepared for when u log in. My problem with the app is that it's too overwhelming. Too many things to manage and for my easily distracted and anxious brain it's too much. As constructive that can actually be applied--please make it so the tasks actually leave the list ocne they are completed. Some are infinite and its difficult to focus on what needs to be done. Otherwise. Good job on this app it's well made.,3,0,2.23.0,2020-04-02 22:56:31,"Thanks for the feedback. +It totally depends on type of list (group) and on task setup, there are a lot of combinations of group-task setup, so it mostly depends on users.",2020-04-06 07:18:50,newest,com.levor.liferpgtasks +Gilsang Shira,https://lh3.googleusercontent.com/-ABnkHLNK4S8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP-6ZwOXYlUNV1FNGBK0iKCWTks9w/photo.jpg,"I like the idea how it shows my skills but I hate it when it organize the tasks in orders, it sets up automatically wherever it wants. Manual task organizer should be available.",3,0,2.23.0,2020-04-01 17:49:19,"Thanks for the feedback. +I do have manual reordering planned for development. But this task is postponed at the moment due to current implementation of tasks and tasks ordering.",2020-04-02 07:42:18,newest,com.levor.liferpgtasks +Russ Irvine,https://lh3.googleusercontent.com/a-/AOh14Gg3dpdQd8H-yb_MeBy9x7_73KDKXh7ZT48tQWBL,"This is a re-review. This could be the best habit tracker, goal setter and task manager, with some really great features like nested lists and smart/auto grouping and a very versatile repeat task setup. Just don't confuse the 'game' in RPG for any actual gameplay; but it does have a very elaborate character design and advancement system, that deserves recognition, allowing for a well rounded and unique hero which grows with every task performed in the user's daily life. However Do It Now does hamstring itself by overlooking some very important integral functionality. Firstly there is no way to order the tasks set out in any of the groups. After a solid month of use, building some projects with subtasks which had subtasks, and setting up several habit based routines, the lack of prioritisation or task ordering created a confusing clutter of items which looked no different from the next. While auto-grouping and smart grouping should have been able to help sort that out the lack of ability for the user to remove any task from these groups meant every task appeared, once again losing the important ones in the clutter. User defined groups could only contain the items specifically placed in them- but once again a large project with a number of different aspects can not be ordered into a sensible linear series.. With no social aspect currently attached to the app (as at ver 2.23.0) there is no task sharing. There is also no designated pc/mac/linux front end for desktop syncing. Finally it's expensive as apps go. A one off of $75 will get the full version, or about $2.50 a month (paid yearly), which removes ads and gives calendar access. Original review: ""A good way to make the tedium of self regulation a bit more fun. Being able to plan to skip things when away from regular activities is handy. It would be nice to see characteristic and skill based modifiers affect related task improvements as they raise and subtask attached leader.""",3,17,2.23.0,2020-03-28 09:18:40,Thanks for your review and suggestions!,2020-03-18 17:00:08,newest,com.levor.liferpgtasks +Daniel Whited,https://lh3.googleusercontent.com/a-/AOh14GgY3IovB1STxTRZjVKv5WXYZa-V_UTRRX8Cw950Tg,"I used to use Habitica, and I must say this is a great step up. I'd like to see more social features, such as sharing tasks - only one person has to perform said task for it to be checked off, but only giving that person the experience and gold. Otherwise, the price for subscription is too steep, thus resulting in a sub-perfect score. I could easily justify $0.99/month or eternal subscription for $15. If that price could be met, as well as fine tuning, this would be easily worth 5 stars.",3,19,2.23.0,2020-03-17 03:00:21,"Thanks for the feedback. +I suppose I'll work more on social features in future. Great idea on shared tasks by the way. I was thinking on group tasks which should be done by everyone in a group, but I like your approach more.",2020-03-18 16:51:34,newest,com.levor.liferpgtasks +Maddie Decker,https://lh3.googleusercontent.com/-FlBTeWlYkQI/AAAAAAAAAAI/AAAAAAAARe8/AAKWJJPwpLrHil9Cak8_zOYUf6Oc79uD2A/photo.jpg,"As someone who has ADHD and deals with executive dysfunction, this is a very useful app! There are a LOT of paywalls though.",3,0,2.22.0,2020-03-05 03:58:57,"Thanks for the review. +I'm sorry for the paywalls, but to continue work on this app I need revenue from the app purchases. +I'm trying to maintain a reasonable balance between paid and free features.",2020-03-05 16:46:11,newest,com.levor.liferpgtasks +Ashichuu chu,https://lh3.googleusercontent.com/a-/AOh14Gi9ik9LEQEN6rdU1OIoonpyfDEnGlzRnBUZrTeemw,"Was really looking for an app that lets me have multiple repeats for a task within the same day, everyday. Duplicating a task multiple times and then making those into subtasks seems to be the only way, but it clutters up the task list (like 8 lines so I'm reminded to drink 8 glasses of water) and then subtasks show up twice in the daily list, both within and outside of the main task. I thought the ""repeat every 1 day, 8 times"" custom setting might work, but it's a different function.",3,11,2.22.0,2020-03-03 03:02:40,"Thanks for the feedback. +You're right, such feature could be useful, but it can't be done at the moment due to technical limitations of current app implementation. Possibly I'll rework it at some point and add multiple repeats.",2020-03-03 08:18:45,newest,com.levor.liferpgtasks +Sam Wang,https://lh3.googleusercontent.com/a-/AOh14GhX1Xe63uo4bNTNLNJAVqsDkmDUCqElxe3eec_0qw,"I like that this app notifies you for tasks, but it should respect Android system's Do not Disturb!! I shouldn't be reminded when I sleeping and I explicitly turn off notifications (no other app I have notifies me in Do not Disturb mode)",3,1,2.22.0,2020-02-22 20:59:34,"Thanks for the feedback. +I'll take a look on this problem.",2020-02-24 11:22:38,newest,com.levor.liferpgtasks +Irina P.,https://lh3.googleusercontent.com/-c2xYep8g-a4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMEfQph3aiZd_yXpieYdoxpT_whsA/photo.jpg,"I've just installed this app and will definitely play with it in the next few weeks. It really looks nice and really structured! So far my only surprise is that there's no female icon for the person. Only nuns or dancers, but not a simple female icon that doesn't do anything - just stands. Hello, is this app exclusively for men or is the icon hidden somewhere?",3,6,2.22.0,2020-02-20 15:43:27,"Irina, thanks for the feedback. +I'll add more female icons in next updates. +Meanwhile you can set any icon you like from the filesystem.",2020-02-24 11:09:34,newest,com.levor.liferpgtasks +Brandee Wyse,https://lh3.googleusercontent.com/a-/AOh14GhV1L67TwbuwFgBu5GCaY6KQ7asBqZU48PzpprL,I am in love with this app so far. I wish there was an iOS version available to connect with my friends though... I would recommend this to everyone otherwise! 3 stars for now due to limited availability.,3,2,2.22.0,2020-02-20 00:48:47,"Thanks for the feedback. +I suppose I'll port the app to iOS, I've already started working on it, but there's a huge amount of work to do :)",2020-02-24 11:04:59,newest,com.levor.liferpgtasks +Michael Rochette,https://lh3.googleusercontent.com/a-/AOh14Gg7P4R735oU7J-5L7ybT5v-vhidl6qzhsz3gFWdOQ,"This app should be made to work around certain schedules. For example; people who work the third shift (graveyard shift), have a completely different schedule than, say a person who works a 9-5/7-3/3-11, etc. I'm certain this adjustment would be greatly appreciated",3,0,,2020-02-12 00:03:04,"Thanks for the review and for suggestion. +I'll add possibility to select time when day ends in one of the future updates.",2020-02-14 08:34:39,newest,com.levor.liferpgtasks +Naomi Graham,https://lh3.googleusercontent.com/a-/AOh14GgCT5lrqGT0gwihSPdkL9KHA1IGKO5FxFNyYQJ1,"The app is great for the most part, i just wish that the 'notification option' for tasks would actually alert me. No alarm or even a pop-up message. I got this to help me remember to take care of certain things due to memory issues, but it's not gonna be of any help if i can't even remember i have the app. Please fix the alarm notification system.",3,67,2.21.1,2020-02-05 21:22:21,I understand how annoying that must be. I'm working on a solution. I hope you'll re-consider the rating once I fix the issue.,2020-02-12 17:53:44,newest,com.levor.liferpgtasks +Zeuy AztecKobold,https://lh3.googleusercontent.com/a-/AOh14GgkhztWJMy3I3y97KKRZdzxpsaeR6t61iSEnxq4qA,"Ads were annoying and it took a lot of steps to set up tasks. However, it was nifty to use and definitely allowed a lot of control due to the aforementioned steps.",3,0,,2020-01-26 06:13:33,"Thanks for the review. +Yeah, I've tried to make setup as flexible as possible, but it takes a lot of time for the first time. +I'll try to somehow simplify first setup experience.",2020-01-29 17:39:34,newest,com.levor.liferpgtasks +PM Jackson,https://lh3.googleusercontent.com/-ORcIaKjo0OM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO1Uguo4ssYygVARLTsL7cFbfJ07g/photo.jpg,App itself is nice but needs a lot of polish. Right now it's kind of a bugfest.,3,0,2.21.1,2020-01-19 01:07:14,Can you please share which features you find difficult to use? Please contact us at liferpgtasks@gmail.com.,2020-01-23 16:21:23,newest,com.levor.liferpgtasks +Michael Bruce Allen,https://lh3.googleusercontent.com/a-/AOh14GiHE0aldur4Z5rCp89j7e0PRII44Xu56t5L02JiBA,"This app could be five stars to me. what is stopping me is the confusion on knowing just what tasks to do or not to do. There's a confusing list of tasks that show up at the bottom and if I did not do them the day before or not click them, they just show up there. If I delete a task from the calendar on accident what do I do? the calendar should be completely removed cuz it's worthless. I think tasks should have some sort of streak function or show how many times you have done it in a row.",3,1,2.21.0,2020-01-14 14:02:49,"If task is overdue - it will be shown in Today and Tomorrow groups by default. It can be disabled in settings. +If you delete task - well, it will be gone :) +But you can delete task recurrence per specific day if task is opened from calendar for one of future dates. +For streaks - please take a look on ""Generate habit"" feature on task edit screen.",2020-01-14 14:12:37,newest,com.levor.liferpgtasks +Harold Matthews Jr,https://lh3.googleusercontent.com/a-/AOh14GhUDR4XQZTs5QDoFO-P-5PKPdLRtLrHqVqW0I-_LA,"It's a good start...I currently have a 1 month subscription. Needs more habit type features. Needs to track , display and keep a record of current and longest streaks. Repeat option needs much more options like; 1. A way to track a task that's done a certain number of times a day like 3 times a day. 2. Repeat week, should also have the option to have the task done a certain amount of days not just on specific days. 3. Achievements should have an option for completing consecutive days.",3,2,2.21.0,2020-01-08 18:00:19,Thanks for the review and great suggestions.,2020-01-14 13:27:30,newest,com.levor.liferpgtasks +Iindin the Edresia,https://lh3.googleusercontent.com/a-/AOh14GgPKIi8tZKNFUJb0bguCimdDO6iIoR-n6M12bgo,"1. Кривой и неработающий экспорт и импорт. 2. Нельзя удалить базовые навыки, заданий и характеристики. 3. Нельзя удалять сразу несколько навыков, заданий и характеристик. 4. Кнопка отчислить данные не удаляет всё, а только откатывает к базовым. Спустя пару месяцев снова установил приложение. Загрузил с автосохронерия данных - загрузилось всё базовое и с диска тоже самое (настройки тоже). Проверял после установки изменяя данные и сохраняя их потом. Итог: после загрузки зброс к базовым.",3,5,2.20.0,2019-12-17 07:23:14,"Спасибо за ваш отзыв. Я уже исправил часть недостатков в последнем обновлении и буду стараться исправить остальные. +1. Импорт и экспорт исправлены и работают хорошо. +2. В приложении можно удалить практически любой предмет зажав его. +3. Постараюсь добавить. +4. Такое поведение и было задумано. К сожалению, удалить полностью все можно только вручную.",2019-11-29 12:56:14,newest,com.levor.liferpgtasks +Artem Vasenin,https://lh3.googleusercontent.com/a-/AOh14GjhtWLOFktZmEFk7BIfSAjDwGuT7AqG3FeWVmfR0A,"Might be good, but it doesn't have task library and trying to set everything up myself is not worth it.",3,8,2.20.0,2019-12-09 20:27:56,"Thanks for the review. +Good idea, I'll add some sort of tasks library in future.",2019-12-13 08:13:19,newest,com.levor.liferpgtasks +Sandy J,https://lh3.googleusercontent.com/a-/AOh14GiwgU0Q50s1sPRNmTdhpqCPd0jebLwjzJsF1xAiig,App crashing a lot. Do look into it and solve the problem asap.,3,0,2.20.0,2019-12-08 13:07:26,"Thanks for the feedback, I'll try to fix crashes and improve overall stability.",2019-12-13 08:07:51,newest,com.levor.liferpgtasks +Alin Sabo,https://lh3.googleusercontent.com/a-/AOh14GgZMsFVOO-9vggbMVagRYrz1A6C9SoObNYMB2ZzeA,A very good but incomplete idea. There is no way to track time spent on certain habits. there is a big difference between doing 5 minutes of something and doing it for 1 hour... Besides the statistics are super limited and basic.,3,0,2.20.0,2019-11-29 13:10:50,"Thanks for the review. +If you have any thoughts on what statistics you would like to use or how would you like to trac habits - please contact me via email - liferpgtasks@gmail.com.",2019-11-29 15:43:09,newest,com.levor.liferpgtasks +Carden Blackthorne,https://lh3.googleusercontent.com/a-/AOh14GiBw0mCZLXarDq6KCUmkBBggEdhegHfMPwsEh_t,"Very motivational, but what's with the subscription fee!? Fifteen dollars a year??",3,0,2.19.1,2019-11-23 20:46:59,App can be easily used without any purchases at all. A lot of major features are available in free version of the app.,2019-11-29 15:17:52,newest,com.levor.liferpgtasks +Martin Haryanto,https://lh3.googleusercontent.com/a-/AOh14GiUezdqm-AyZK4hOyTHYQwyPdOtiZGULAw1iPeIwQ,The fact there are no predefined tasks makes it super hard to use. Or rather this will work if user can just define the task (quest) easily. Or maybe we can import (by purchasing) some set of quests. For me it is still quite confusing and hard to manage with all the options offered. would be use it furthere more if not too complicated,3,2,2.19.1,2019-11-17 11:00:17,"Thanks for the review. +I'll work on default tasks to make app acquaintance process easier.",2019-11-29 12:40:15,newest,com.levor.liferpgtasks +aya mostafa 0147,https://lh3.googleusercontent.com/-seJs8SwwHz8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNLy9POGnCHoikfCBaDBIXDOJLt-Q/photo.jpg,It would be great if the notifications actually works!! I don't get notified by any task I put in at all,3,0,2.19.0,2019-11-16 11:45:46,"Thanks for the review! +Please check system notification settings, on some devices notifications are disabled per app.",2019-11-29 12:38:01,newest,com.levor.liferpgtasks +Joseph Rodriguez,https://lh3.googleusercontent.com/a-/AOh14GgYghp8ChsI3ERCGurwP-gZA5ZsqBOS9hJKdH3Tsw,Ok but doesn't feel too user friendly and kinda weird that the calendar is behind a paywall,3,0,,2019-11-14 13:23:39,"Thanks for the feedback. +Calendar is one of advanced features so we decided not to include it into free features set (which include almost all other features).",2019-11-29 11:56:03,newest,com.levor.liferpgtasks +HoppyTimes,https://lh3.googleusercontent.com/a-/AOh14GihBbu1VrYbW0ksdHPeHKAcu-WtoLXmAxbcMRJY4mM,"I went from touching the app once a day to once a week, over the span of about 2 months. Would be better if notifications were functional/ could be enabled. I like the concept of being a hero, though. I just always fail all my daily set tasks (repeatedly back to level 0 hahaha...) -- I stick to my sticky notes app (with reminders) that I've been using for years. [Edit 11/10/19]: I see notifications on appear on my phone now! Thank you.",3,6,2.19.0,2019-11-10 21:36:51,"Thanks for the review. +Could you please check if app has notifications enabled in system settings and in battery settings. +On some devices they are disabled by default and app just can't show notifications.",2019-11-09 20:09:32,newest,com.levor.liferpgtasks +It's Me Echo,https://lh3.googleusercontent.com/a-/AOh14Gg9Zg3t1mdNIr7WVGyKpoAwfXf71-BWLvOFkAgjJg,"Setting things up can be a bit confusing but overall it's good. The notifications aren't working on my phone, and when setting the task to something that can be completed all day, I'd like to be able to set times for me to get notifications about it without having to do the weird ""give me a notification 12 hours before"" The whole point of me getting a to-do list app was to have not only a list, but reminders, so until the notifications work I'll have to resort to a different app.",3,1,2.18.0,2019-10-19 17:28:33,I understand how annoying that must be. I'm working on a solution. I hope you'll re-consider the rating once I fix the issue.,2019-10-25 15:30:40,newest,com.levor.liferpgtasks +Derek Sparks,https://lh3.googleusercontent.com/a-/AOh14GghLvoRq69gH7blHGcmfHz8uLPO2ngJmSSJHKDMU0k,Asks for a subscription to get all the features. I'd pay a one time fee only. Guess you don't want my money bad enough. Edit: yes I know which is why you got a negative review. I like your app. I don't like paying subs. I raised u to 3 stars for taking this so we'll. All to often devs get all butt hurt. Add a feature to buy a lifetime license even if it's 20 dollars and I'll buy it. Or give us an option to see ads without a sub at least. Cheers. Do this than 5 stars.,3,0,2.18.0,2019-10-18 07:56:46,"Thanks for the review. +Unfortunately app only supports subscriptions at the moment.",2019-10-18 07:51:23,newest,com.levor.liferpgtasks +Riyango,https://lh3.googleusercontent.com/a-/AOh14Gg2jfQPX8kSYQI8A6RU5bnAWhYq6cQcq_D3JnApQA,"I wanted to buy the app but the subscription feature turned me down. I wish there was a one time purchase option to unlock essential things like calendar, unlimited inventory etc.. (and the subscription for themes, sounds and other cosmetic stuffs)",3,0,2.18.0,2019-10-15 13:44:13,"Thanks for the review. +Unfortunately app only supports subscriptions at the moment. It is most suitable form of monetization for an app at the moment and we decided to include all premium content into it.",2019-10-18 07:52:51,newest,com.levor.liferpgtasks +marlon crawford,https://lh3.googleusercontent.com/-CY6MMwchTaM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNf3Wkt39xuexqEkDSsWPzsHfZKoQ/photo.jpg,"Really amazing, but there are pop-up adverts if you're not a member, and for someone like me that's quite a few adverts daily. Very annoying!, But everything else is PERFECT. FYI The designers have to eat so I'm not mad but God damn that's annoying Would be really cool if you could at least watch a bunch of adverts at once so you don't have to do it later. Just an idea id be up for.",3,10,2.18.0,2019-09-27 05:33:44,"Thanks for your feedback. +That's pretty good idea. I suppose I'll work on adding possibility to watch 30 sec ad to remove all other ads for 1 day and make it cumulative. So it would be possibly to watch e.g. 7 ads and remove all other ads for a week. Will it for for you?",2019-10-02 10:42:16,newest,com.levor.liferpgtasks +Strelok88nazi Flippynazi,https://lh3.googleusercontent.com/a-/AOh14GiSJyTnbpT4mLHbGT9BiGzgvAjHW1yT4RFzuh9ymnU,"It would be good if it had alot of tasks that are given by the app accordingly to your interest, and even recommend books, etc. Also if there was a competitive mode where you can see what level other players are, and that to level up you have to do certain things that can be verified somehow (for example, read book requires a picture of a book with your face, or run requires a tracking through the GPS to actually verify yoy ran) in this way it can even be competitive",3,5,2.16.0,2019-08-26 05:55:32,"Thanks for the review and suggestions. +Automatic tasks recommendation sounds great, but pretty difficult from development perspective. + +I have some thoughts on ratings - I plan to add possibility to create friends list from users of the app and assign each other tasks. Possibly rating could be created by number of finished tasks assigned by others.",2019-09-03 10:39:37,newest,com.levor.liferpgtasks +Ainur Amri,https://lh3.googleusercontent.com/-4jt-lRUdunI/AAAAAAAAAAI/AAAAAAAAAQw/AAKWJJM-4c5OYS-4wioUlLUGP0f0Qj93BA/photo.jpg,"Good experience, nice concept, sad that it's not completely free for a to-do list, and completely frustrating that it keeps crashing everytime I want to edit my level and changing my avatar. It went brainfarted when it got overwhelmed by a long list of levels starting from 50.",3,0,2.16.0,2019-08-20 03:10:31,"Thank you for the review. +Unfortunately it is not possible to make app free, since subscriptions allows to use third-party services, enahnce and support application. +Bug with hero levels in known and will be fixed.",2019-09-03 10:20:28,newest,com.levor.liferpgtasks +Chantelle v.d. Vyver,https://lh3.googleusercontent.com/a-/AOh14Gidlws5-4hRYUBumOihHMGen_29ApMofepU2ggGQA,"A decent app for its intents and purposes but I struggle to stay invested. It's visually good, great icons and colours, also has a nice selection of skills. My biggest issue is the navigation. I can't immediately see or twirl down to see subtasks. Actually marking something as done, especially subtasks is a challenge - mostly because you face to keep tapping through the task and pages of info to get there. Perhaps a mind map or something would make it easier.",3,7,2.16.0,2019-08-13 20:29:08,"Thanks for the review! +I'm working right now to embed subtasks right into tasks list. +When task in list is with subtasks - execution button will be replaced with subtasks button. Click on it will expand all subtasks right below the parent task. When all subtasks are done - execution button of parent task will be displayed again.",2019-08-15 14:27:23,newest,com.levor.liferpgtasks +Wetu Kuzatjike,https://lh3.googleusercontent.com/a-/AOh14GjZ49y7yIPN21AqT_Q_m2ZIoGvQ6M3aL-lHkyheKQ,reminder doesn't work,3,0,,2019-08-02 08:18:58,"Thanks for the review. +I understand how annoying that must be. I'm working on a solution. I hope you'll re-consider the rating once I fix the issue.",2019-08-02 14:45:29,newest,com.levor.liferpgtasks +Damian Kyc,https://lh3.googleusercontent.com/a-/AOh14GgPweLOwXMlHGZ1aBpi8b-Ttipdrdqye5IjGZqI,"There could be any difference between gold that we earn. If my rewards are ""cheat meal"" and ""netflix episode"" and tasks are ""run 10 km"" and ""read a book"", it shouldn't be able to get a cheat meal reward for reading a book...",3,0,2.15.1,2019-07-31 22:31:57,"Thanks for the review. +I have same thought some time ago, I've even created a prototype with few currencies (gold, silver, various gems), but result was pretty clumsy and hard to set up. I suppose for the mobile app it is better to stick with single currency.",2019-08-02 14:34:53,newest,com.levor.liferpgtasks +Jacob Runge,https://lh3.googleusercontent.com/-gdGRKmVh6A8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP-r06MO6Poq-HzKtfwHCWIjYBQkA/photo.jpg,It crossed my mind to buy the full version but then i saw they want a monthly payment. Why not just make it $5 lifetime? Seems like a good app not sure who copied who with liferpg seems too similar.,3,0,2.15.1,2019-07-19 17:24:06,"Thanks you for the feedback. +We've tried one lifetime purchase but in such case app development and 3-party services fees are completely unsustainable. Subscription allows us to continue app improvement.",2019-07-23 10:30:27,newest,com.levor.liferpgtasks +Vassilis Kanavos,https://lh3.googleusercontent.com/a-/AOh14Gjv2HnIrEQ-QSYeUJqCRXzgDivPUGN6Xk2NbtFS1A,"Very interesting concept but it's extremely time consuming to setup and add all the content you need. Also being able to edit everything and choose the rewards freely kinda looses it's purpose. I understand some people might like the feature, but I personally do not. Overall, great app if you have the time to set it up and get familiar with it.",3,2,2.15.1,2019-07-14 22:22:52,"Thanks for review! +We are trying to create as much flexible app as it is possibly, but unfortunately it comes at cost of increased difficulty and time to set everything up.",2019-07-23 10:14:50,newest,com.levor.liferpgtasks +CA C,https://lh3.googleusercontent.com/-ud4gPzh6gJU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPqIaeU8G-9pJFkvGel6X5IjGOBiw/photo.jpg,"overall a really good app. well thought. however, I would personally spend some time on the interface/interactions. it became too many steps for my preferences. realizing I needed to change a bunch of tasks, I had to pick a task, bottom right to edit, then tap below description, untick termless, select date, click ok top right, another ok top right. that's too much. I suggest adding swiping options to the task (look at nine email as an example). but overall good. might return one day :)",3,0,2.15.1,2019-07-07 16:42:31,"Thank you for providing your valuable feedback. +Indeed, appearance and interactions are not our strong part. But we will work on it.",2019-07-11 05:33:55,newest,com.levor.liferpgtasks +Afaq Saeed,https://lh3.googleusercontent.com/a-/AOh14Gid4S9oyckVYLjntFyS9LKYBNOND0YkmrGkBqQ,Everything requires you to pay money might as well make it a paid game instead of deceiving people for a free app,3,0,,2019-07-05 15:39:07,"Thank you very much for your review concerning our app. All major features in it are open for all users. Unfortunately we can't provide all features for free use, since it won't be possible to continue working on the app.",2019-07-09 05:45:14,newest,com.levor.liferpgtasks +Dmitry Vyalkov,https://lh3.googleusercontent.com/a-/AOh14GiWwjfQUVnp_U2VpR-2rXQINN3VJBvZIyfXiA2A,"Awesome idea, five plus in advance. Although, turns out there are more appealing apps, interface wise. But non the less, it is all about insides, not the outside.",3,1,,2019-07-03 22:18:18,"Thanks for the feedback. +Indeed, interface is not our strong part, but we will keep working on it!",2019-07-09 05:37:18,newest,com.levor.liferpgtasks +Shelbie Peterson,https://lh3.googleusercontent.com/a-/AOh14GiJxFajQWsMoxEcPLvnzPslrZK8-VOuTpT3iDse1g,i love the concept but i would love to see a list of suggested 'to dos' cuz i can never think of things to do,3,0,2.15.1,2019-07-02 05:14:21,"Thank you for providing your valuable feedback. Please reach out to us at liferpgtasks@gmail.com, if you have other suggestions.",2019-07-09 05:31:27,newest,com.levor.liferpgtasks +Phua Vincent,https://lh3.googleusercontent.com/-SO_l_ORJQBA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOxSVq525h3u5hyy06lrsszBLXliA/photo.jpg,The app is great but after using awhile it start to lag.,3,0,2.15.0,2019-06-18 06:38:37,"Hey, thanks for writing a review. Sometimes, the app may be slow but such instances are rare. If it happens too often, please let us know at liferpgtasks@gmail.com. We'll have things investigated.",2019-06-18 13:11:33,newest,com.levor.liferpgtasks +Cody Sparks,https://lh3.googleusercontent.com/a-/AOh14Gh5o0xhYJmCDN7yO4DkY-8TsKGe8efyoueOnJVXkA,Too much paid only,3,3,2.14.1,2019-05-22 17:08:48,"Thank you for the review. +All main features are free to use for all users.",2019-05-29 08:53:48,newest,com.levor.liferpgtasks +Urszula R,https://lh3.googleusercontent.com/--I1acJ-JtKs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM7BZ9bkS74WR5rGxPkREL5Dbt5pw/photo.jpg,"the app itself is a wonderful idea, but the interface and functions need a lot of work in my opinion. it took me so long to figure out how to set up a habit, and i still don't understand how to use a task groups or steps. I gave up and came back to my previous tracker because it was too complicated and time consuming to learn how to use this one. Anyway, I will definitely retry after an update :)",3,0,,2019-05-19 22:41:42,"Thank you for your kind feedback. +You can use built in user guide (Menu > About > User guide) to catch up when having difficulties. But overall I agree that it's pretty hard to figure out how things work.",2019-05-20 09:35:11,newest,com.levor.liferpgtasks +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I really like this app, makes life more fun foy ADHD brain. But sound making ads are a real pain. I'm okay with the ads in general, they don't pop up often enough to be annoying. But can we get rid of the ones that make sound so I can stop embarrassing myself in a quiet class room after checking off an assignment?",3,4,2.10.1,2019-03-11 14:52:43,"Thanks for the feedback! +Unfortunately ads are provided by Google ads network and Do It Now app do not control them. So I'm not sure if it is possible to make them silent. But I'll investigate this question.",2019-03-18 10:17:20,newest,com.levor.liferpgtasks +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I love the idea of it, but currently it's far too complicated for me to use. I'd love it very much if all the setting rewards and gained skills was a little easier to do.",3,0,,2019-03-02 20:38:10,"Thanks for the review. +You're right, app is pretty complicated, but that's the price for high flexibility.",2019-03-07 07:59:10,newest,com.levor.liferpgtasks +Christopher Kinnaird,https://lh3.googleusercontent.com/a-/AOh14GiNXyoNv7iFXHK4u1F4Vq6bEcw2J76Kj0CAQpsk,"It's not bad. But it seems greedy. Like, why do I have to pay to unlock individual color themes if I'm paying a monthly subscription? Also, LifeRPG was so much better than this. More icons to choose from and they were free. If you're going to make an app that copies all the ideas from LifeRPG, at least make it better. Why can't I make an accomplishment like: learned blank piece of music, without having to tie it to accomplishing a certain number of tasks or reaching a certain level?",3,9,2.10.1,2019-02-09 22:07:41,,,newest,com.levor.liferpgtasks +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,This app is great but the setting of the aims and the tasks takes a long period of time therefore it eats up your productivity,3,0,,2019-01-20 10:31:07,You're right. That's why I suggest to start small - with only few tasks. Which you will be able to duplicate for similar tasks. This will also help with app mechanics acquaintance.,2019-01-25 15:25:32,newest,com.levor.liferpgtasks +Antonio Calloway,https://lh3.googleusercontent.com/a-/AOh14GhKEm75kCUmuRMqyQrz2gP_FxlId42stCWCdNMUmg,"it actually is a good app, but it wont do the one other thing I need it to do, which is notify me of a task I set. one day it does and the others it doesn't. I have reset my phone settings several times because of this, looked it up and still no results",3,8,2.9.1,2019-01-02 07:38:04,Thank you for the heads up. I'll try to locate and fix this problem. Could you please share notification settings for the tasks with missed notifications?,2019-01-02 18:36:49,newest,com.levor.liferpgtasks +Gustavo Bustos Soto,https://lh3.googleusercontent.com/-WZAJe7H4eig/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO8tcwuiE1OvlRSbnp5XLajBcvY1g/photo.jpg,"I really like the app, but I would enjoy it more if there was the ability to manually order tasks through simple drag and drop like in LifeRPG. Also, if there was a quicker way to edit like in Life RPG that would be great. I would be willing to pay as a way of supporting you guys, but right now LifeRPG is more practical and they'll get my money until you catch up. Love the decreasing skills btw :)",3,4,2.9.1,2018-12-30 01:32:56,"Thank you for the review. +Yeap, will do drag and drop. +Could you please add more details about quick edit?",2019-01-02 18:23:39,newest,com.levor.liferpgtasks +Joe Wall,https://lh3.googleusercontent.com/a-/AOh14GjUCVqltVED0jdfsHoYk0doK412bwv_tpypxsi84w,"Its ok, notifications dont work very often.",3,1,2.9.1,2018-12-18 19:43:41,"Thank you for the review. +Could you please share setup of tasks for which notifications don't work?",2018-12-20 11:46:16,newest,com.levor.liferpgtasks +Equinox paul,https://lh3.googleusercontent.com/-vhop1wDu36k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM9pseryrffoPN_glDozFf0Mcdrxg/photo.jpg,Needs fixes... Like the repetition is screwed also the generate habit... Looks like the developers don't use it themselves.,3,1,2.7.3,2018-10-12 05:38:34,"Thanks for the review. +We're working on habit generation improvements right now, so it will be working better starting from next release. + +And could you please add more details about repetition?",2018-10-12 08:00:31,newest,com.levor.liferpgtasks +Jon Fogarty,https://lh3.googleusercontent.com/-mvRK7AZ8J2I/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPq0MkdqBH-CULkOtJaXbHwUwQeSA/photo.jpg,"With discipline training apps, the market bet is on already diligent people to buy your app. With such a small margin of customers you cannot expect success from limiting customization options to microtransactions. Let alone subscriptions. Otherwise the app was decent. Good work! Credit where credit is due!",3,2,2.7.3,2018-09-28 04:17:19,,,newest,com.levor.liferpgtasks +Allian Abogado,https://lh3.googleusercontent.com/-Tm5agEok2fs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPKm2LUaKrE9TQLB2KI7F0zW3LRXQ/photo.jpg,Suggestion: Can tasks take things from the inventory? Maybe some items can only be acquired through achievements and those items are needed to complete a task.,3,0,,2018-09-26 05:24:14,"Thanks for review. + +Yes, we need to add items to tasks and achievements as well.",2018-10-08 06:21:40,newest,com.levor.liferpgtasks +Jason Bourn,https://lh3.googleusercontent.com/a-/AOh14GhGEM_YK78mFwObxM47FDGxMQKm9w1ogEyhjUx8Lg,"Don't like it very much, but I think it's just not for me. It's very complex and deep with tasks and such (I could even set the percentage of fear for a task... What??) so I didn't get very far before I just said ""forget it"". My life is too busy for such complexity.",3,2,2.7.1,2018-08-28 11:44:57,"Thanks for the review. +Yes, app is pretty complex, but that was the price we need to pay for being really flexible app with a lot of settings. With which users can setup everything to their comfort.",2018-08-29 07:43:12,newest,com.levor.liferpgtasks +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"You're good guys. Your efforts are admirable Please consider making the app +available to milions of people and support ""rtl"".",3,0,,2018-07-17 03:42:43,"Thanks for review. +Yes, I have RTL support in development plan :)",2018-07-18 12:40:25,newest,com.levor.liferpgtasks +Laira Agojo,https://lh3.googleusercontent.com/a-/AOh14GhCzuuRgzUCMyk99qgE50DjS7pG6qg93jabouCMjQ,"Uhm there's a little bug that I encountered, I cannot disable the skill +decay :< pls fix I'll give 5 stars",3,1,2.6.0,2018-05-19 02:30:09,"Thanks for the heads up. +Fix will be available in nearest update (2.6.1)",2018-05-23 07:36:03,newest,com.levor.liferpgtasks +-Crispy- -Boi-,https://lh3.googleusercontent.com/a-/AOh14GjN0kJ_z6cmJ0RR1nkIu9dx6_7lkYmsWaNW3P1A,"Loved the app but at some point it stopped letting me look at my tasks +without instantly crashing so I'm not using it anymore. I'll be sure to try +it again and recommend it to friends if the issue isn't present next time. +😊",3,1,2.5.0,2018-05-05 22:50:27,,,newest,com.levor.liferpgtasks +Noura Ida Peters,https://lh3.googleusercontent.com/-Pg01aeyEe9g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNzbugHISkjWmBoAIecT0lMeYUZ_w/photo.jpg,"I really liked the app and had been using it for a few weeks. But a while ago whenever I would open the app, it would load for a bit but then freeze and crash if I tapped anything. The rest of my phone still works fine (doesn't freeze) while this happens. Is there anything I can do to fix this? I would love to continue using this app. Thank you! (And I have tried uninstalling and reinstalling.) Edit: Clearing did solve the problem for now. Too bad I had to give up all the progress I made. But thank you anyway, at least I can use the app again.",3,7,2.5.0,2018-04-02 07:33:37,"Could you please try to open phone settings, apps, Do It Now and clear app data?",2018-03-27 14:55:47,newest,com.levor.liferpgtasks +sleepy tina,https://lh3.googleusercontent.com/a-/AOh14GjzJ4heCW3LmxvKGixyeW5QYnyzQ2RwEVXiEkJj29E,"It ok, gets boring after a while",3,1,,2018-03-28 02:00:27,,,newest,com.levor.liferpgtasks +MrMoonBear,https://lh3.googleusercontent.com/a-/AOh14Gj84xcZCOatk6_aPNQn_PeP8G-aK-hivSVXYE33,"It was really good for helping me to get motivated for a few days, but when I shut my phone off the notifications stop coming until I open the app again, and check off something.",3,2,2.4.0,2018-03-24 13:31:40,"Hm, thanks for the heads up. We will take a look.",2018-03-27 14:52:13,newest,com.levor.liferpgtasks +Mehmet Sakarya,https://lh3.googleusercontent.com/a-/AOh14GhEKiu9_Co-cDQjndjMrbuXuvDaJHXgksQXPLOS,"I thought it was a really good app until today. It started to crush and i couldn't do anything to backup. I lost all of my options, to-do lists, achievements. Don't know what should i do, really disappointed. Auto back-up should be offline too and must be selected when we start to use app or you should use your own database system to backup files(not dropbox)",3,4,2.4.0,2018-03-18 17:59:03,"Ah, we're really sorry that you lost your data. +Good idea with local backup, totally need to add it.",2018-03-20 10:42:49,newest,com.levor.liferpgtasks +Gabrielle Carvalho,https://lh3.googleusercontent.com/a-/AOh14Gh6slDfEZ5FyY5gTVTFtOj3bWoXVx5bJl9w-0DkWg,"A intenção é boa, mas a interface é bastante confusa. || The intention is good, but the interface is too confusing",3,1,,2018-01-08 20:55:51,"Thanks for review. App development is still in progress, so I suppose we will come up with more pleasant design. Do you have any specific suggestions?",2018-01-19 14:33:10,newest,com.levor.liferpgtasks +ABL BP MSK,https://lh3.googleusercontent.com/a-/AOh14Gj7mVnRjiUSYdw_LP8wynfJaH2vKco71crZdR4IKg,It is a good application. It is very useful. It is just okay.,3,1,,2017-11-02 05:09:13,,,newest,com.levor.liferpgtasks +wood land Nut,https://lh3.googleusercontent.com/-i0PPxFebTAY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJODtrHywxamnzA9zW7K6SYUFSMxmA/photo.jpg,Great app. Needs a few things like task fail without consequences option. Mostly a full paid version without subscription or in app purchase. Not every one has everything connected to Internet all the time.,3,1,2.0.4,2017-10-12 20:53:45,,,newest,com.levor.liferpgtasks +Devon Jones,https://lh3.googleusercontent.com/a-/AOh14GhoumhtioyTwsnu5fk768IMuLLnV51QEIJmB26Naw,It's such a spectacular idea but I had trouble figuring out all of the different aspects and it was just too much for putting in tasks on a day-to-day basis.,3,1,2.0.4,2017-09-19 21:15:10,"We have a guide (Settings > About > User guide). +Also you can write us email with all questions to liferpgtasks@gmail.com - and we will gladly answer them!",2017-09-22 13:50:12,newest,com.levor.liferpgtasks +Shovon Bhowmik,https://lh3.googleusercontent.com/a-/AOh14GjTAVVf2eQXBNwOP6oHlx5JqimeH1ZUsBOXPPRB,This is ok! But it required bunch of upgrade and some new features! Will keep it! But wait till is it perfect!,3,1,2.0.3,2017-08-22 20:22:04,Thanks for review. Could you please share some suggestions that will help to make Do It Now better?,2017-08-23 05:51:29,newest,com.levor.liferpgtasks +Dexter,https://lh3.googleusercontent.com/a-/AOh14Ghi3z4T5ytAC0oMnkf5Jj0sOpQHCUsI8WzH5kybRQ,Good but not ok,3,1,,2017-08-20 02:42:55,Please share with us your ideas and suggestion and help us to make Do It Now app better.,2017-08-21 06:22:15,newest,com.levor.liferpgtasks +Jake Skudlarek,https://lh3.googleusercontent.com/a-/AOh14GhkVTaUOluUfbWJ6SK2zq4xwox1d2qgbaYvywN1kw,"Everything about this app is perfect! Except for the widget support. The widget doesn't update with the new tasks I make in the app. And I wish I could mark tasks as complete right from the widget. I would also like to be able to make multiple notifications for one task, or set one task to repeat multiple times a day. I also wish the notification for the mission would show up every time. Great start",3,15,2.0.3,2017-08-17 02:51:37,"Thanks for review. +I think we add possibility to perform task right from task list widget. And definitely we're gonna look at widget update problem. +Multiple notifications - added it to development plan. +Task multiple repeats per day - that's a big task from development perspective. Maybe it will be added, but not in nearest future.",2017-08-10 06:58:51,newest,com.levor.liferpgtasks +Orange Penguin,https://lh3.googleusercontent.com/-XcP-XCcl8QA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNmtq4HtnI70oTdfMmsor2QdiPoYg/photo.jpg,Are there any guides out there?,3,1,2.0.3,2017-08-15 22:17:56,There will be in nearest update.,2017-08-16 03:51:42,newest,com.levor.liferpgtasks +Isa Egizbay,https://lh3.googleusercontent.com/-oCa9_xAAlT0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNIck3kCnfuets7ONJEVPtcDCTqaw/photo.jpg,"Hey, guys! This is good idea! However, I have a feedback for you: Several times I accidentally was clicking task more than once, so I was increasing my level. I didn't found related settings. I think you should make task clickable (checkable, do you get me?) )only once per day, and highlight the finished tasks. This features will prevent accidental checking, therefore increasing level incorrectly. Could you explain me how to use such features, if you already have them??",3,13,2.0.3,2017-08-15 15:06:09,"Hello. +There's types of tasks that can be performed few times/day. So I suggest you to use Undo button. It is displayed in dialog (along with OK) after you clicked on perform button (with ✔️). In this way you can undo any misclicked task. +If you have any other questions - feel free to mail us to liferpgtasks@gmail.com",2017-08-16 05:59:45,newest,com.levor.liferpgtasks +Vivion Lin,https://lh3.googleusercontent.com/a-/AOh14GhbP9Cq98EhmIHRdBjVG_3lA_jdALJTiTV-cc-6Dg,It's a pity that your tasks become overdue not according to your system time...,3,1,,2017-07-30 13:55:59,"Have you changed system time after task creation? +Please contact us on liferpgtasks@gmail.com",2017-07-31 07:51:35,newest,com.levor.liferpgtasks +hitesh meghani,https://lh3.googleusercontent.com/a-/AOh14Gg8ejFuAmbQ_dZs02ACoa4er_fqnn7TX6pToP2V,The concept is good. But why the app is not notifying me about thr task even though I have turned the notification on? This is very bad.,3,2,2.0.2,2017-07-20 16:17:09,,,newest,com.levor.liferpgtasks +Yari SY,https://lh3.googleusercontent.com/a-/AOh14Gha2GKsDu528Y3Vqgqpv4P8mH-gkN1ROvV20nAm,"The app is good but a FAQ would be appreciated. For example, I cannot find out how to create a group for my tasks.",3,2,2.0.1,2017-07-08 21:03:35,"To create group - open tasks list, tap on group selection button at top, tap settings button in toolbar and then + button. In nearest update we will add possibility to add new group right from dialog on edit task screen. +FAQ is under development right now.",2017-07-10 11:49:40,newest,com.levor.liferpgtasks +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"This is unforgivably close to perfect. Why no timer? So many tasks are long-term and need to be chipped away at bit by bit. You could have it where once a task was selected, the timer would start, and you would earn a certain amount of experience and coin for every x amount of minutes completed. As it is, I have two pair this app with a different promodo app.",3,7,2.0.0,2017-07-01 21:46:50,,,newest,com.levor.liferpgtasks +Ravenwolf Burke,https://lh3.googleusercontent.com/a-/AOh14GhB83KsWWAutCM4b0zOsdPkkmsGvTknRaIAAlGjPQ,But then it started locking up everytime I tried to load it. ←ved it until then.,3,0,,2016-12-27 02:25:29,In last update we resolved a lot of issue. Please try new app version.,2016-12-29 09:53:43,newest,com.levor.liferpgtasks +deekat327,https://lh3.googleusercontent.com/a-/AOh14GiJYjoh1PSbcb3GE0lJi_dTtEIS1a8UXMusVJsHMQ,"I can't be the only one multitasking. Therefore, I don't have time to figure out a basic program. I put in a picture and it was so tiny! I put in my tasks yet some are ""timeless"", some are daily, and there was powerlifting! I'm physically crippled!",3,4,1.5.4,2016-12-07 12:10:43,,,newest,com.levor.liferpgtasks +mymyx2000,https://lh3.googleusercontent.com/a-/AOh14GinBUieGlR0GZ7977QZaJv91D9KkiOmbLXr3nvn,"My settings kept on changing ever time I reopen the app. For example, fear is set to zero, when I open the app again, fear is set to 80. Why? Please fix this. It's getting tiresome to re-do the settings over and over.",3,1,1.5.1,2016-10-14 05:52:03,"Thanks for reply. +This bug is already fixed, fix will be available in next update.",2016-10-15 14:49:54,newest,com.levor.liferpgtasks +Najwa HAD,https://lh3.googleusercontent.com/a-/AOh14GjjMaDGxFwMkKtkZoV1MA1BsfLhjDkjEpdoR66hwg,"Its almost what i was looking for apart from is there a way to set how much xp is required to advance in level and how much xp completing a task will give you? E.g. i want to make it so i start at level 40 in benchpress and achieving 91kg will put me at level 41. I will reach level 100 in benchpress by the time i can do 150kg, completing 120kg would put me on level 70 etc. Otherwise the numbers are just meaningless to me. Really i want to set it up so when i reach my goal in each thing i am at level 100.",3,3,1.4.3,2016-08-25 21:47:19,"I'm sorry, but no, there are no way to set xp required for level neither xp gained by task. It's slightly different system based on importance and difficulty (and fear in future) of task.",2016-08-26 07:06:17,newest,com.levor.liferpgtasks +Russell,https://lh3.googleusercontent.com/a-/AOh14Ghx90t4V6jNSzrp5jFpwRV96qpDfF_GnR_q9ZOEaQ,"But can't really test this out since I'm tied with Habitica. Oh yeah, I personally don't like the avatars though... It'd be nice if to upload your own avatar. Oh, just saw other people suggest the same lol.",3,1,,2016-08-10 14:51:23,This feature will be available in next update. =),2016-08-11 05:40:34,newest,com.levor.liferpgtasks +Rabbit Moreno,https://lh3.googleusercontent.com/a-/AOh14Ggoz4mk9zhBvI3GnvQvYp6WJIf_D33ZVsCn9JIUsg,"App has definitely improved since my last review! more social features would be really cool. i am subscribed and i would love to see where this app takes off. i have noticed recent stability issues when i'm on the app for a prolonged period. not sure if it's related to the amount of tasks i have, as i use this app for basically all my tasks, including birthdays. the app will slow down and nearly crash after awhile. otherwise, this is still my go-to! 4 stars again!",4,8,2.23.0,2020-04-02 13:35:11,Thanks for the feedback. I do have plans on new social features and I'll try to improve app performance for cases with a lot of tasks and other items.,2020-04-03 19:35:15,most_relevant,com.levor.liferpgtasks +Scott Pickering,https://lh3.googleusercontent.com/-O3uWQrgFKQg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOex6YAPukxXF0RA-WS_zayVi_Uqg/photo.jpg,"This is a great app for anybody needing some extra motivation or a way to organize their life. I've had some trouble editing or deleting reoccurring tasks, but this may be a device issue, I'm not sure.",4,1,2.23.0,2020-03-30 18:15:01,"Thanks for the feedback. +You can edit all recurrences of the task at once via Tasks section (in bottom navigation menu). +I'm not sure that I got you right, please correct me if I'm wrong.",2020-03-30 17:38:18,most_relevant,com.levor.liferpgtasks +eric czimcharo,https://lh3.googleusercontent.com/a-/AOh14Gi3QotJ-8H-Y5SeqIQbD7i5n-bUCSg88dH9nN1v8Q,"I am liking it, the subscription model is a bit steep and harsh, especially for the full buy out at 50+ dollars. A suggestion, I'd like to see two categories under the ""Skills"", one that says ""Increasing"" and one that says ""Decreasing"". I am trying to set up a ""Daily Grind"" negative skill that decreases ""Will Power"" and ""Motivation"", while increasing ""Submission"" and ""Routine"". I've noticed the Dev team is really good at responding, so I am hopeful for a response. Thanks!",4,11,2.22.0,2020-02-26 12:34:08,"Thanks for the feedback. +Yeah. I'm trying to answer all reviews, emails and messages :) +I thought about adding skills with negative impact on characteristics, but it will complicate app a lot more. Both development and usage parts. So I decided not to add such feature now. Maybe I'll reconsider later.",2020-02-27 08:03:18,most_relevant,com.levor.liferpgtasks +Marcin H,https://lh3.googleusercontent.com/a-/AOh14Gghq3U-FAeTrkS86yxeNeIwd0PHtzygGByyp6ccnw,"The app is good and in general highly customizable, but it has one flaw: it uses days (24 hours periods) as a basic unit of measure, but it doesn't let you change the default starting hour (midnight). This is inconvenient for people who have unusual working hours and it makes the app impractical to track daily tasks for users who are more productive at night. I would rate it as a 5 stars app, if I could choose when my day ends and be able to log my dailies properly.",4,6,2.21.1,2020-02-06 06:39:28,"Thanks for the feedback. +You're right, possibility to set day starting hour might be really useful.",2020-02-12 17:54:46,most_relevant,com.levor.liferpgtasks +Joven Casiano,https://lh3.googleusercontent.com/a-/AOh14Ggq44OGKAwuAUh6fyX1MBK_i5ifsu3pSf9BlOF1,"This app is great! I love the idea of turning my daily life like an RPG game. But I have this goal to wash my face twice everyday and it feels repetitive to make two task for the exact same thing. So can you guys make a task where it has to be done twice before the said task is completed? Been trying my hardest to do this on your app, even finished reading the user guide, but it still wouldn't work.",4,2,2.21.1,2020-02-13 00:25:59,"Thanks for your review. +Unfortunately there's no way to schedule same task more than 1 time per day. +Due to limitations of current implementation it's pretty tough task from development perspective, but I suppose I'll add it in future.",2020-02-14 08:46:51,most_relevant,com.levor.liferpgtasks +Max van Andel,https://lh3.googleusercontent.com/a-/AOh14GhIe3PcQZpBfS6m7L_EA0D5PYXcw46FJiIiy0ZdpQ,"The app is allready great. The amount of customisation is surreal and with a bit of tweaking you can really make it work. The sentimental value you create this way really helped me grow. As the app is rpg themed, those elements could be further enhanced imo. I think a customisable character would be fun. More options to spend the currency other then personalised awards is what im getting at. This way you really build something with the effort you've put in. For the games.. Keep up the good work",4,16,2.22.0,2020-02-17 11:24:08,"Thank you for the review! +Great suggestions on customizable character and currency. I'll try to come app with something :)",2020-03-07 07:03:31,most_relevant,com.levor.liferpgtasks +Kelley Pennock,https://lh3.googleusercontent.com/-RW8mzFWqvK4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOkg8TnivW08XFwskp327agqhbWwA/photo.jpg,"I like this app, but it really annoys me that it defaults to playing a chime when you first pick up your phone in the morning. When just checking the time, I don't want to be woken up even more. I wish it were possible to just disable that notification instead of disabling all sounds from the app at once.",4,6,2.22.0,2020-02-21 15:56:38,"That's a good suggestion. +I'll add option to disable sounds for specific actions.",2020-02-24 11:16:36,most_relevant,com.levor.liferpgtasks +Dimitris Chloupis,https://lh3.googleusercontent.com/a-/AOh14Gjp-bILjowli1WP_BXXvR2vIrUKpWvvBNiBiW2IDA,Works as expected but I would like for time customisation to be more flexible and precise,4,0,2.23.0,2020-03-19 01:40:08,"Thanks for your review. +Could you please add more details on which time customisations you would like to have in app. +Please answer here or via email - liferpgtasks@gmail.com",2020-03-19 08:36:07,most_relevant,com.levor.liferpgtasks +Landon Searle,https://lh3.googleusercontent.com/a-/AOh14GifqB_x0Y4zY_RmZ18apwAQAXbwa-bZjMHcYzd66Q,"It is a cool app, but the calendar feature required to be bought. That should be informed to the users before installation. In addition, it would be a good idea if skills can increase over time, and skills can decrease characteristics.",4,1,2.21.1,2020-01-22 17:35:45,"Thanks for the review and suggestion with calendar. +Skills do impact characteristics in both ways - when skill level changes it will also change levels of all related characteristics with specified impact. +Also there's an option to enable skill decay over time, so less usable skills will have less value over time. Like in real life.",2020-01-23 16:33:43,most_relevant,com.levor.liferpgtasks +Miss Fay,https://lh3.googleusercontent.com/a-/AOh14GjvdXFjHvj2IB2Sefq7GwhyVfGX1SkGoo7S0Fm9YA,"Good App. Lots of customization. But i have noticed an issue with repeating sub-tasks. If a subtask is set to repeat, it won't complete the main task. Seems to complete fine if the subtasks are not set repeat.",4,0,2.22.0,2020-02-22 17:09:21,"Right, it's tricky. +If you have subtasks which repeats - the only way to complete parent task is to make sure that all subtasks execution dates are after parent execution date. In such case parent task becomes completable.",2020-02-24 11:21:54,most_relevant,com.levor.liferpgtasks +Freak Show Hound,https://lh3.googleusercontent.com/a-/AOh14GjYKdrPau5Wve9y_Yhw5IJRTLXFgLBpIffwgpIvyw,I really like it. I think it's a really cool concept to have characters to build up with the habits. Only thing I wish were there is to be able to have notifications for term less habits,4,0,2.21.1,2020-02-12 12:11:08,"Thanks for the review! +Unfortunately due to current implementation there's no way to schedule notification for task without date/time.",2020-02-14 08:38:00,most_relevant,com.levor.liferpgtasks +kuenzang nima,https://lh3.googleusercontent.com/-k9JfYBg-Yfo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM-SZzZxcyT36ZLfl3AevW0TVD-GA/photo.jpg,Nice app. Bug with achievement exp gained. It only adds on to current hero exp without leveling up eg( 144exp/25exp ). Why does skill decay even after doing a task that increases it?,4,0,2.22.0,2020-03-10 18:22:48,"Thanks for the feedback. +I'll take a look on bug with XP. Looks like hero level could increased only by 1 at a time. +Skills decay is not related to executions, it was designed in that way. So you will lose skills all the time and will need to perform tasks to get it on same level or higher, same as in real life.",2020-03-18 14:24:24,most_relevant,com.levor.liferpgtasks +Leith Cassone,https://lh3.googleusercontent.com/a-/AOh14GiaSVM40RE4L13mnM68j99HK1CSSvZL5Hue3EcUKg,"I think it's a great app, and a lot of fun. I had some trouble figuring things out at first, but everything works. The only complaint I would have is the cost... It would be nice to have some of the features, but they are too expensive.",4,2,2.22.0,2020-02-17 15:09:25,,,most_relevant,com.levor.liferpgtasks +Nelson Castillo,https://lh3.googleusercontent.com/a-/AOh14GjKJQClBO4ZPs0iRztejNh3pFjLqVvewWf_1tg2,"Hi. I love the app. There's a bug that I want to share. I created a daily task (once a day) but it doesn't go away after completing it from ""Today's"" task. What do I do? Thank you",4,5,2.22.0,2020-02-20 09:27:29,"Hello Nelson. +Thanks for the feedback. +Please check if your task repetitions setup is something other than Simple repeats or Do not repeat since in this modes task won't be moved to next repeat date.",2020-02-24 11:06:45,most_relevant,com.levor.liferpgtasks +corrina stoker,https://lh3.googleusercontent.com/a-/AOh14GhT2d7EtHX_0bIejpSnZhHVBJcc8qhP2SDxaQcsXw,I really like the app. I'm having an issue though where the widget doesn't populate when a new day starts. I have to delete it and readd it or restart my phone.,4,0,2.22.0,2020-02-18 17:10:37,"Thanks for the feedback. +That's unexpected. Does widget updates when you perform any task inside of the app? +Could you please contact me via email so we could figure out root cause of your problem? +liferpgtasks@gmail.com",2020-02-18 18:31:00,most_relevant,com.levor.liferpgtasks +Eryk Kruk,https://lh3.googleusercontent.com/-7zZpH_TM5wg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM9aRHtFCbLmqmAqgOOgaFdQuPGgQ/photo.jpg,"Nice. Will be better if app has got inhabit counter.. for example count of pushups or exercise. I need it, but app is very nice. I will be recommend it.",4,0,2.21.1,2020-01-22 22:40:49,"Thanks for the review and good suggestion. +I'll try to add it in some way :)",2020-01-23 16:36:30,most_relevant,com.levor.liferpgtasks +zanin fayik,https://lh3.googleusercontent.com/a-/AOh14GgqSZu-9rK19fimZFCVk5nabv6JuMdumKk-ZY9e,"Add ""negative habits"" which when done decrease coin, xp etc.",4,0,2.23.0,2020-03-14 15:38:25,"Thanks for the review. +I'm not planning to add negative habits (I mean generation), but you can make any task negative. To do it just set more decreasing skills, just make sure that sum of all related skills impacts is less than 0. If so - task will be considered negative and you will lose XP and gold when task is performed and gain it when failed.",2020-03-18 16:42:03,most_relevant,com.levor.liferpgtasks +Burung Pipit Jantan,https://lh3.googleusercontent.com/a-/AOh14GgyH3FXJ_qW7Mr7uBUiV4IoGyhWp-QdHzZjYFNDkw,Homescreen widget would be nice with more display option such as the progress bar.. etc,4,5,2.21.1,2020-02-24 09:58:31,"Thank you for the feedback. +Please take a look at hero homescreen widget. +It has main info on your hero including XP to next level progress bar.",2020-02-24 11:31:37,most_relevant,com.levor.liferpgtasks +Tina Burton,https://lh3.googleusercontent.com/-NqwY46VHI2g/AAAAAAAAAAI/AAAAAAAAGd8/AAKWJJNTot18gV26n4fQGPYfv3mrf4ouyA/photo.jpg,"I just started but really like it so far. Competes directly with Habitica but less of the nonsense costumes. It's hard at first to sort characteristics, skills and tasks (you are essentially your own game dev) but on paper I recently sorted out what I want to improve (Skills) and what is stopping me (Characteristics). Tasks will follow soon after. I'm really hopeful about this setup, I love the design, and I never do this but I might actually pay for a subscription (!!!) if all goes well.",4,11,2.19.1,2019-11-23 02:12:01,"Thanks for the great and encouraging feedback. +I do hope that app will help you to achieve your goals :)",2019-11-29 15:01:24,most_relevant,com.levor.liferpgtasks +J V,https://lh3.googleusercontent.com/a-/AOh14GincfEWg_AhVukvsPmADta-V0-6_Z7N2QmeMX7VCw,"Perfect for people who want to get organized and desire an app more robust than a checklist. It has profound customization ability. The reward system is more complex than competitors. For someone with significant attention issues, this has really helped me to feel invested. Subtasks and autofails are great features. Would be 5 stars if developers: 1. Allowed subtasks to renew as collapsible tasks not just tied in 2. Made tutorial/videos. Full functionality will be a learning curve for many",4,54,2.19.1,2019-11-20 17:43:44,"Thanks for the great feedback and suggestions. +1. Will work on that! +2. Great suggestion, I have plans on adding more small in-app tutorials (like on Inventory screen at the moment). Video also could be a cool way decrease learning difficulty.",2019-11-29 12:49:45,most_relevant,com.levor.liferpgtasks +Venance Alexandre HOUNDJAGO,https://lh3.googleusercontent.com/-jQNR0dhhqI8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNacEal1u52YTdf6N8ZcfHumrR6Zw/photo.jpg,Just after I looked at the interface I knew it was what I was searching. Not so for the xp thing which is a very great idea but also how it handle goals like reading books... For anyone who think in terms of goals (and obviously who love RPGs) It's totally free though,4,0,2.19.0,2019-11-10 10:15:43,Thanks for the great review!,2019-11-29 11:45:34,most_relevant,com.levor.liferpgtasks +Lance Ruscoe,https://lh3.googleusercontent.com/a-/AOh14GgiyM9Mxjb0gICAQBE9xf8w8a-GnLnvfatfxy3Hkpk,"Interesting concept! Still getting used to the functionality, but this app is an effective way to gamify your to-do and task lists. Before Do it Now -RPG, I had a list of chores; Now I have a quest-list, instead. Time to go unlock some achievements!",4,0,2.20.0,2019-12-08 17:54:19,Thanks for the great review and good luck with achievements!,2019-12-13 08:09:15,most_relevant,com.levor.liferpgtasks +Isaac Rutledge,https://lh3.googleusercontent.com/a-/AOh14GhMlWN5zZxHHIzVy5anxczawv_9QvkkYPiOVkHR,Great honestly great way to keep track of daily tasks to stay organized. One thing they should add is overall goals. And tasks leading to those goals.,4,1,2.20.0,2019-12-10 03:19:21,"Thanks for the review. +That's interesting idea. I suppose it could be useful. +Meanwhile you can create a tasks group per global goal and add related tasks to it.",2019-12-13 08:14:32,most_relevant,com.levor.liferpgtasks +Daniel Tasker,https://lh3.googleusercontent.com/a-/AOh14Gg4OVzp5PXfqMgjwuoccjsX-8K1CI3mQ2CnKtXD,I really enjoy this app because it stops me from sitting on my butt 24/7.,4,0,2.22.0,2020-02-25 19:55:54,Thanks for the review!,2020-02-26 07:55:12,most_relevant,com.levor.liferpgtasks +Casey Griffin,https://lh3.googleusercontent.com/a-/AOh14Gi1S8KT-uTRt_Kpw3b0IGZ09unmnx1aofSNNz6_,"This app is so robust, I love it! However, I would love a quick add button in the notifications.",4,0,2.19.1,2019-11-24 18:11:39,"Thanks for the review. +Wow, that's a great thought. I suppose it would be useful to add special notification that will show first task from some selected tasks group (e.g. Today), number of tasks in this group and ""Add"" button which opens new task screen quickly.",2019-11-29 15:28:53,most_relevant,com.levor.liferpgtasks +Xiaonan Wang,https://lh3.googleusercontent.com/a-/AOh14GgqkNeh6LWfK7b0Iy_zlmQgItY-3Y3fIb26FCk3eg,Looking forward to a better UI/UX. Will keep using it.,4,0,2.19.0,2019-11-13 04:26:51,"Thanks for the review. +I'll work on UI and UX :)",2019-11-29 11:48:45,most_relevant,com.levor.liferpgtasks +Laura Arsenyan,https://lh3.googleusercontent.com/-I6CaIjrKo0k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMDnlXfxJkmO45f_7H_Hp7W-qBAZw/photo.jpg,"I was looking for an organizer app which would provide statistics on my discipline and progress, and this does it! But it is missing one, to me basic, feature - the tasks don't have a start time or duration period, there is only a deadline. It doesn't allow understanding easily whether the tasks overlap in time. Is this feature available in the premium version at least? Another missing feature is the location setting, at least at a home/work/outdoors level. Any plans to incorporate the features?",4,2,2.18.0,2019-10-27 22:20:30,"Thanks for the review. +No, there's no duration or start time in premium version. +I have plans to add task start time + duration feature. +But not sure about location, could you please add more details on how it can be used?",2019-10-31 14:40:11,most_relevant,com.levor.liferpgtasks +steven stonie,https://lh3.googleusercontent.com/a-/AOh14GjYN8Vh5EnroKKYKSkXfK078icbNocxwn6bs5wY6g,Its a good app for everyday tasks. It takes time to customize it and its normal because its an RPG type. However I think im not the only one who encountered this annoying bug where if you want to change a task from lets say termless to always repeat every day the task remains termless. You can solve this problem by deleting the task and making another with the setting you want. This bug was very frustrating because i thought i did something wrong but yeah..,4,3,2.18.0,2019-11-06 18:21:40,I understand how annoying that must be. But I can't reproduce this bug on my side. Maybe there's some additional steps required to do it?,2019-06-21 15:00:59,most_relevant,com.levor.liferpgtasks +Meredith Goodrich,https://lh3.googleusercontent.com/a-/AOh14Ght0s0dXAqEx4WyDtY_NipafhATAhMBpidsyAHqwA,"It's helpful, but it's also annoying. Edit: I didn't make it clear enough, it's annoying to realize how much I'm failing lol Anyway the app is pretty good I'm just overly sensitive and self criritcal",4,0,,2020-02-24 13:41:17,"Ah, got it. +Thanks for the review. +I hope app will help you to succeed in completing your goals and generating new great habits.",2020-02-25 08:01:57,most_relevant,com.levor.liferpgtasks +Just Mo,https://lh3.googleusercontent.com/a-/AOh14GgSFrx04E9dhIXmIboRblGygAFctmb0NUX376AqAQ,"It's pretty nice all things considered, but I have found a few problems with it. mostly the fact that the notifications do not work and by that I mean no matter how many notify alarms I set, none of them go off. I've downloaded this app on several occasions in the past and I've had the same problems each time. The second is that the widget will (quite often) display that I have no tasks when I in fact have about seven on any given day. I'm not taking a star off because of the widget though.",4,2,2.10.1,2019-02-14 21:03:02,"Thanks for review. +I'm working on notification fix and I hope it gets fixed until next update. +Widget wasn't updated for some by now and is a bit laggy. I'll try to fix it also.",2019-02-18 15:24:09,most_relevant,com.levor.liferpgtasks +Muhammad Atarigsyah,https://lh3.googleusercontent.com/a-/AOh14GjCRKaxWI1LlWgd3xNjXa58ZtJQhNV_QbuGOt3Imw,"Good concept. But I don't use the app anymore. as someone who is now not really a gamer, the point game-like concept seems to doesn't work for me anymore and maybe it's also due to the fact that I only compete with my self. if I were to compete with a friend or whoever that is, maybe I can keep my self accountable. But that's it to it. If you are a gamer, this app might gonna help you.",4,0,,2018-10-26 07:26:44,"Thanks for your review. +Yes, app designed mostly for the people who are into ""gaming"". But I'll keep in mind your advice and will try to add some spirit of competition to the app.",2018-11-05 13:30:21,most_relevant,com.levor.liferpgtasks +Edward M.,https://lh3.googleusercontent.com/-qNGOBBllQnA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJModFhMNJUsd6xSM7Zkg9dDwnqT4Q/photo.jpg,"It's a great app, keep up the good work! It has almost all features I've ever wished for in gamification. But a few things were missing/quite annoying for me and lead me to abandon this app for now. If it helps you I could write you a comprehensive list of enhancements and features that I think could make this app better. Here's not enough space for that, though. Please give a short answer of you'd like me to send you an email with the list of my thoughts. :)",4,1,,2019-02-14 03:39:48,"Thanks for the review. +Sure, I'd be glad to hear ideas and suggestions! +You can email me on liferpgtasks@gmail.com.",2019-02-18 12:58:44,most_relevant,com.levor.liferpgtasks +Philip Banks,https://lh3.googleusercontent.com/-tdC5QbIGQ14/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPB1nv7byvqjUa4tEcTa5FT0e9QVg/photo.jpg,"Looks cool and I like the stats. I would like to have a monthly and yearly calendar display on which dates with non-repeating tasks scheduled are bold or otherwise highlighted, or preferably have the tasks listed in small font in the box for that day in monthly view. And when you click on the date have all tasks for that day display. Why do none of the life rpg apps I've tried not have calendars? It's bothersome to add something to a calendar and then open up another app and add it in again.",4,9,2.10.1,2019-02-04 00:51:07,"Thanks for the review. +I have calendar planned for future development, at least weekly and monthly views. It's quite big task and I need to drastically rewrite some apps part before starting this task, so it could take some time. But there will definitely be such feature.",2019-02-05 08:38:29,most_relevant,com.levor.liferpgtasks +rhedygo,https://lh3.googleusercontent.com/a-/AOh14GhRhi2aXi3TSaPpxJt5r5SoGrtrBjVd55-O7rCqwA,"You add execution note but when I check in history it just one word that appeared, and the next is ........, I confuse how to check the details. Hope the next update, there is detail preview when tap a mission that's done in history. And also search feature in history will be very useful to check some mission among all those missions in history. Thank you for great app.",4,4,2.7.3,2018-10-04 20:15:53,"Thanks for review and suggestions. +I'll work on them.",2018-10-09 15:06:38,most_relevant,com.levor.liferpgtasks +Neilia Adolph,https://lh3.googleusercontent.com/a-/AOh14GjOT-AQOC9hQRTBpaaJ0TAOE0Xq974VoA0sK5Lyj_4,"I downloaded this game in the Hope's that the format would help me with my procrastination and can I just say, its exceeded my expectations. it's so good ! I ended up having to change some of the pre set tasks and rewards to make it more personalized but apart from that, it's great. highly recommend if you, like me, like to procrastinate and make excuses to avoid tasks.",4,2,2.15.1,2019-07-07 01:02:25,Thank you for your feedback. Please reach us back if we can do something to get 5 stars review.,2019-07-09 05:51:11,most_relevant,com.levor.liferpgtasks +CyberFr33k,https://lh3.googleusercontent.com/a-/AOh14Gg3h2vgu62OIYVUF8LtwABaEGJ3tXSKc9NAX5E6ow,So far so good. I love creating my own adventure. Still learning some of the functions. Maybe a tips video could help. I can't wait to see what other fun things can be added. More community or friends list. Or leader board. Then get us to do in app purchases for new items or level streaks. I just like this a bunch. So thank you!,4,43,2.10.1,2019-02-01 15:27:39,"Thanks for cool review. +Big features planned for future are: full backup of data to cloud server (optional, of course), friends list and tasks assignment to friends and calendar with all future and finished tasks.",2019-02-05 08:19:55,most_relevant,com.levor.liferpgtasks +Jessica Thang,https://lh3.googleusercontent.com/a-/AOh14GjTPWX8hRzKnvAkLgrW-pTle2Mbv5QipNQtNVIRig,"A very good rip-off of LifeRPG—taking all of the useful features of task management, reward motivation, and RPG-style stat levels, and making the UI simpler and more user-friendly. Seems to be monetizing the idea though, putting in ads and lots of in-app purchases and requiring a RECURRING payment subscription rather than one-time purchase to unlock features",4,2,2.9.0,2018-12-03 02:54:54,"Thank you for the review. +Subscription helps to keep app development process running, but you can use almost every feature of app without subscriptions. Exceptions are less icons, less color themes, less notifications per task and few more. But main features are free :)",2018-12-05 10:18:52,most_relevant,com.levor.liferpgtasks +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Notifications fixed. App keeps getting better. I'd like to suggest being able to use habit generation as an unlock condition for achievements. Edit: Nice :D Another thing I would suggest is add the date when an achievement was unlocked (example: unlocked 01/04/2019) so we can also order them by this date when looking the unlocked tab. Thanks for this app!,4,21,2.12.0,2019-04-04 11:53:34,"Thanks for the review! +Good suggestion. Actually I have it planned for future.",2019-03-28 21:05:07,most_relevant,com.levor.liferpgtasks +Motchi Leuterio,https://lh3.googleusercontent.com/a-/AOh14GhLJtwWZP9ve-GHJa2JfWwQxc-27d56bJJKJtqF4Q,"This app is really good. I want to suggest to that the app should have a ""Rest Day"" option or something similar. That you can activate it anytime you want and while activated, the tasks will be put into a halt including penalty and overdue. It is useful if you are on vacation or there's an occasion you need to attend and makes you unable to finish the daily tasks.",4,12,2.14.1,2019-05-27 09:03:43,"Thank you for your feedback. +Good suggestion, thank you!",2019-05-29 08:43:25,most_relevant,com.levor.liferpgtasks +Tony Lashbrook,https://lh3.googleusercontent.com/-6iWcFqwTT5E/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM8sV0OSpb0ED3QAHgIzrup609wtg/photo.jpg,Fantastic app but 4 stars. Every part has been a comfortable experience for me until I started trying to use it across devices. I took me around 30 minutes to set up all my tasks the first time and when I signed into my account for the app all the tasks I had made got overwritten by the default tasks from the other device. It was partially my fault for the careless order that I signed in on the devices. But perhaps my issue could have been avoided entirely if when it attempted to sync my tasks from the internet the first time it asked me if I wanted to use the database that is from the internet or that is local. Would have saved me a lot of headache remaking all the tasks again. That said every other function provided is great and I would recommend.,4,2,2.15.0,2019-06-13 03:24:48,"Thank you for your feedback. +That's pretty good suggestion, I'll add it to development plan.",2019-06-13 11:02:46,most_relevant,com.levor.liferpgtasks +Noam Preil,https://lh3.googleusercontent.com/-Ezkj9d1cCk4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP1-AM8eJGT-6avJuSVNSDbZnVuzA/photo.jpg,"Pretty good, only issue I noticed is that if you undo claiming a reward that has its price increase each claim it can give you extra coins back. Aside from that, a lifetime purchase option would be nice (I try to avoid subscriptions where possible, so I'm sticking with using this for free for now), and an option to hide the parts that require a subscription instead of showing them but asking you to pay when you click them would be nice. (e.g. so the calendar doesn't even show up on the bottom).",4,1,2.15.1,2019-07-29 01:16:31,"Thanks for the review! +Good point with reward claim undo, I'll look into it. +Lifetime purchase - unfortunately such model simply won't work since a lot of third party services charge via subscriptions. +You can select which tabs to display in bottom bar in setting (Menu, Setting, Tab bar).",2019-07-30 11:47:15,most_relevant,com.levor.liferpgtasks +Manasa D,https://lh3.googleusercontent.com/a-/AOh14GjNNky9yHivweqbsXmbW_lguEXqBv8s7JpV0U5FBA,"I've been using this app for some weeks now. There are still some features that I don't understand and there's just so much available for customisation that it's overwhelming. But, once i spent a few hours customizing all i wanted, this app has been so fun and useful. Most to do list apps out there are so cumbersome and anxiety inducing. This one isn't. It has helped me prioritize what's important to me while letting me role-play. I like it a lot.",4,3,2.18.0,2019-10-02 06:23:41,Thank you for your feedback. Is there something else that I could do to deserve even better rating from you? Please let know at liferpgtasks@gmail.com.,2019-10-02 10:55:37,most_relevant,com.levor.liferpgtasks +Chris Fenech,https://lh3.googleusercontent.com/a-/AOh14Ggz-SyzPwo9qXf_swmurjf9lLFm-IrZX-uw4UvzzQ,I like this app. I only used it for 5 mins and there are no adverts that ruin your experience. I hope that the developers will continue working on it so that the app will be improved. I would consider paying for the premium features too if the app is good enough.,4,4,2.8.0,2018-10-15 14:27:41,Thanks for the cool review!,2018-10-18 09:00:06,most_relevant,com.levor.liferpgtasks +Oly K,https://lh3.googleusercontent.com/a-/AOh14GgXc3Y-0f6QzP9L4QH0Tnh6s7mPuCnrBeq8YXfMKg,"Productivity gamefied! As has been said before, the natural successor to LifeRPG. Looks like they just ripped the source code tbh, but it irons out many of its predecessors bugs. Pity they monetised it in every available orifice, fukugly full screen ads, in-app purchases for trivial customisations and an absurdly extortionate subscription, all conspire to overshadow the app itself, as does the uninspired graphic design and the use of unexciting headings that detract from its ""gaming"" USP.",4,4,2.10.1,2019-02-28 01:09:55,,,most_relevant,com.levor.liferpgtasks +Mitch Reed,https://lh3.googleusercontent.com/a-/AOh14Gj15kiQ81RZFN9qX9WtOMikZ50TP-so8oLZcbJmCA,"New user and I'm impressed! A lot of neat features I've been looking for in apps like this. it's obvious dev is active and listening and thats a great sign. If I have an immediate suggestion, it'd be for us to be able to add tab categories of traits besides the default characteristics/skills; for example to add things like ""personality"", ""lifestyle"" or however we want to organize our skillset categories, so those 2 sections aren't cluttered. A search option for icons too maybe? Keep it up!",4,11,2.15.0,2019-06-12 21:20:57,Thank you for your feedback and suggestions!,2019-06-13 11:03:32,most_relevant,com.levor.liferpgtasks +First Name,https://lh3.googleusercontent.com/-BNi02pRxmnI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJODEjq8ykEYQ806-k9wpgvykIuxSw/photo.jpg,"I bought the full version. its a fun app to challenge yourself. I would like to see an update gives you the choice to choose a pen or pencil icon or a book icon, which seem to be missing, that would be useful. for example, if you want to write a book, it would be nice to have a ""book""📚📗📘📙📓📔icon, or ""pen""🖋🖊 icon, or ""pencil"" icon... UPDATE: I seem them now! Thanks for responding and letting me know. Looks like I needed to scroll farther down to see them. 👍",4,0,,2019-07-26 23:27:05,"Thank you for the review. +You can find 4 book icons under Other section of icon selection dialog. +Also you can use one of two brush icons which are placed under Tools section. +Update: I'd really appreciate if you increase review rate to 5 starts. If you have no other concerns or suggestions of course :)",2019-07-30 11:19:52,most_relevant,com.levor.liferpgtasks +Nick Pazdan,https://lh3.googleusercontent.com/a-/AOh14GgQU1jWnwj8HPLvWIIDNi_-cVLgiE6fAeG5TQgwnA,This app looks to carry the torch from the now abandoned LifeRPG app and from a bit of digging so far I'm impressed. Some things are tucked behind a pay wall such as the calendar and aesthetic additions like themes and icons but it's a relatively low price and helps support the devs so I'll probably bite on that once I've set up everything and used the app a bit. One suggestion I'd have is to implement geotagged triggers for events - like bringing up a reminder when I'm near the gym or store.,4,7,2.16.0,2019-08-21 12:17:33,"Thanks for the review and suggestion with geotagging, I'll investigate the possibilities :)",2019-09-03 10:23:03,most_relevant,com.levor.liferpgtasks +Ruben Pouw,https://lh3.googleusercontent.com/a-/AOh14GjBSxF1JksoYjYYCjSQPFtHUXoSbLuY5zBFFR8U,"(+)Pros: it's fun, LOTS of customisation, ALL basic functionality are free, inclined to habit generation than everyday to do list. (-)Cons: first time setup are quite challenging; literally create your own system. Icons & themes are limited (minor inconvenience). I was using LifeRPG (which seems abandoned now) so it helps with the learning curve. I see devs made lots improvement here. Recommended!",4,30,2.17.0,2019-09-12 01:14:20,"Thanks for the great review! + +Yeah, learning curve is pretty tough, but that's the price we need to pay for high flexibility.",2019-09-12 15:25:47,most_relevant,com.levor.liferpgtasks +Nick Veasey,https://lh3.googleusercontent.com/a-/AOh14Ghqq-hy8qD1eefsjK6JdYS2smsfHbMk1RyLqZXF0w,"Great app for setting up to do list and setting skills, very similar to LifeRPG, differing only in UI and the addition of achievements in my opinion. Stuck with the other one of the basis of not wanting to pay a subscription for an app. Would prefer one off payment to unlock features.",4,1,,2019-03-07 15:59:30,"Thanks for the feedback! +All major features are available without subscription. So it is not mandatory to buy it :)",2019-03-18 10:23:37,most_relevant,com.levor.liferpgtasks +Nima Ninja,https://lh3.googleusercontent.com/a-/AOh14GiqyRuMOdTsfUZ4qd_1VRnrDY-dUFcjxRqWfuEl,"It's a good app but can be better I want the developer to fix the following please: 1-when you work with it sometimes it becomes laggy and you need to force stop and restart the app 2-when you type in it in Persian the symbols like ""?, (,), etc"" doesn't align correctly 3 - if you add some native calendars like Persian calendar to it it will become more useful (and also an option to set it as main calendar not like Google alternative calendars that show Gregorian months not Persian months ex.)",4,0,2.18.0,2019-09-27 14:35:33,Really appreciate your suggestions. We will consider them and improve our app in the new version. If you have questions or suggestions please contact us at liferpgtasks@gmail.com.,2019-10-02 10:47:13,most_relevant,com.levor.liferpgtasks +Dillon McKee,https://lh3.googleusercontent.com/a-/AOh14GgvQZSojVM02PFgCXcOY1IB8SD-UE3EtVk7ZmlS,this is pure magic juat saying best life app out there keep up the great work!!! im ao happy you listen to your customers EDIT: now my entire household is using this app its amazing magic easy to use only thing i noticed is that when you claim a reward if it has an increasing cost sometimes it will spend the gold after the increase instead of before resulting in extra gold loss my best guess is that the script might be changing the cost value before subtracting the gold from the players gold.,4,0,2.14.1,2019-05-24 13:22:10,"Thank you for your review and heads up on problem. +I'll fix it in nearest update.",2019-05-29 08:52:14,most_relevant,com.levor.liferpgtasks +Vitor Cortez,https://lh3.googleusercontent.com/a-/AOh14GhncJqMht_uRCditJ1ZV0DPsCPCNimsTAD8UVNe3A,"A good app in general. I would love to be able to have ""loose"" tasks, for example: practice spanish twice a week. Which should be completed at least twice every week. Also, why not allow icons to be any emoji?",4,1,2.10.1,2019-02-19 11:49:36,"Thanks for the feedback! +I'll add 'loose' repeat mode to development plan. +In next update I'll add possibility to select color if icons, so they need to by with only 1 color to work properly and it's clashes with emoji usage.",2019-02-21 09:43:43,most_relevant,com.levor.liferpgtasks +Phil Charbonneau,https://lh3.googleusercontent.com/a-/AOh14GhjDAdMCkdXFV6TlzfcKt-hj82-mDIz5fCjbIRmIw,"I like this app enough to have paid for a year's subscription, but there are a couple quality of life improvements that would be nice. I would love to see icons on the widget. I would also like to pick icons as my avatar photo since there's some good ones.",4,1,2.15.1,2019-07-03 21:34:58,"Thanks for the feedback and suggestions. +And especially for your support.",2019-07-09 05:36:21,most_relevant,com.levor.liferpgtasks +Junior García Rodríguez,https://lh3.googleusercontent.com/a-/AOh14GhBlGktU38D7nVJOLDEiDVbdFmHuOwJTFwScMeZ2w,"It's a bit hard to set everything up, but it's a fun new concept for the typical agenda that encourages you a bit more to achieve your goals through a rpg style. Nice work dev team. Thanks for your time and effort.",4,0,2.14.0,2019-05-03 18:39:50,"Thank you for your review! If you have any suggestions on how we could improve and enhance setup process, please don't hesitate to share them with us.",2019-05-08 10:57:44,most_relevant,com.levor.liferpgtasks +Angel Lysa,https://lh3.googleusercontent.com/a-/AOh14GgCZrEyqHWTnVOVCI3YPX4Xky9xLPaoq340Jf2fCaE,"one thing, the widget sometimes doesn't update the today list, and about the to do list, i have to make 2 different widget for today and tommorow, because when all tasks show, cannot differentiate what today and tommorow so i was check list my today and tommorow task, and it is kinda confusing how to uncheck again (?) maybe this option to check and uncheck must be there, and the reward will be given after all the task has done for today.. thank you, hope this app improve",4,0,2.14.1,2019-06-06 20:49:15,"Thank you for your kind feedback. +I suppose adding task start date to widget could solve problem with distinction. + +You can uncheck executed tasks from profile screen if task was performed today (first tab in bottom tab bar); or you can open executions history and undo task from there (tasks tab, options menu at the toolbar, history).",2019-06-07 05:55:57,most_relevant,com.levor.liferpgtasks +Roberto Ruiz,https://lh3.googleusercontent.com/a-/AOh14GjOUoiQpexJwHXFJ9CjOuprQcnTEtweovncryrxVw,Fun way to track and reward yourself guilt-free. Lots of personal calibration but the interface is nice. My only problem is the lack of icons even in the premium section.,4,1,2.7.3,2018-09-21 14:17:32,"Thanks for review! +We will add more icons in next updates. +Do you have and specific icon requests?",2018-10-08 06:16:13,most_relevant,com.levor.liferpgtasks +Lyssa Personal and Social Stuckey,https://lh3.googleusercontent.com/a-/AOh14Gg9wid8pR_cumn94v-72Jw4aIa0pwcqzTOhEybL,"It's a lot of fun, good personalization. I have to make time to explore the app called more fully, I think a tutorial would be amazing, and pre-developed lists that could be tweaked.",4,0,2.15.1,2019-06-21 05:31:20,"Thank you for your feedback. +There's build-in user guide under Menu, About section. +And could you please add more details on list and tweaks? You can reach us on liferpgtasks@gmail.com or here via editing review.",2019-06-21 14:55:02,most_relevant,com.levor.liferpgtasks +Trung Đức,https://lh3.googleusercontent.com/a-/AOh14GhJDr-NusB577A7r0WjgunwezqE6kJo5Cp798pi,"it would be nice if there are pre-set goals or task to choose from - while the app allow for a high level of customization, it's too much hassle to set it all up properly, not to mention balancing the reward from each task",4,2,2.16.0,2019-08-12 06:52:31,"Thanks for the review! +Yeah, I've been thinking to add some sort of task templates or as someone suggested tasks packs that could be driven by community. It should partially solve the problem.",2019-08-13 09:55:23,most_relevant,com.levor.liferpgtasks +Pashok Ribakov,https://lh3.googleusercontent.com/a-/AOh14GiPgmAoPBLH8mp4kWsKCIUY2Ic6IqTEMc2of3rwJ1w,"Hello! Your app is amazing! My GF and me installed this app 2 days ago and started to planning task to each other. But i really need a list functional, like add a shopping list or some book list to add in this app. Are you going to add this? Sry for my English, btw:) UPDATE: And i really need a functional to add a checklist in tasks with possibility to mark it's completed. Thank you and your team again for this great app!",4,2,2.14.0,2019-05-04 22:34:36,"Thanks for the review. +Not sure about lists, maybe I'll add then some time later. For now you can use subtasks system for such things.",2019-03-07 07:53:06,most_relevant,com.levor.liferpgtasks +Alfian's Dump,https://lh3.googleusercontent.com/a-/AOh14Gh6-lm8JKaxEIEs0p3M3ZizjcfmqH-lUjkZyrOqMA,"I would love to do a one/life time purchase for this app. Too bad I hate subscription based so sorry, I'd rather spend my money for something unproductive than this app.",4,0,2.18.0,2019-11-03 03:40:18,"Thanks for the review. +Unfortunately, app only supports subscriptions and there's no plans to add one time purchase option.",2019-11-05 16:03:37,most_relevant,com.levor.liferpgtasks +Veronika Portesova,https://lh3.googleusercontent.com/a-/AOh14GhLwEFJDhoWUJXQEQ5zfdNQFT4vWRMouQi-GQhzeQ,"I liked the app very much, I signed up and so with the hope that my to do list would sync with all devices. But when I reinstalled the up after cleaning my phone, everything disappeared. 😢",4,1,2.10.1,2019-02-12 15:51:15,Unfortunately cloud sync is not yet ready (working on it right now). Please consider using sync via Dropbox or export data locally to your device.,2019-02-18 10:09:25,most_relevant,com.levor.liferpgtasks +Paulina Bugiel,https://lh3.googleusercontent.com/a-/AOh14Gjmtt_-FzqaDockcFKYN3AidSFSDMJ5691Ez7Qy_Q,"Seems like a very good idea but how can i edit what i've done the previous day? Eg. If its Tuesday, it seems to be impossible to edit achievements from Monday (which seems like a perfect thing do to on Tuesday morning ;) )",4,14,2.9.1,2018-12-18 06:32:18,"Thank you for the review! +Well, in most cases it can't be done. Only valid case is for tasks - you can undo task execution for Monday, edit task and execute it again. But new execution date will be Tuesday (today).",2018-12-20 11:43:21,most_relevant,com.levor.liferpgtasks +Neal Allen,https://lh3.googleusercontent.com/a-/AOh14GjX7qmvZP3OHV8edSvPqcNLhOvBXzXObvzffA_UDA,"Awesome app to keep your life on track. Would 5 star, but app crashes every time I try and add a custoum sound. Edit: Thank you! Will try again after the next update.",4,1,2.18.0,2019-10-03 15:41:19,"Oh, wow, that's unfortunate. +I'll take a look and try to fix it. +Thanks for the heads up.",2019-10-02 10:52:07,most_relevant,com.levor.liferpgtasks +Dan Dryaev,https://lh3.googleusercontent.com/a-/AOh14GjJPFcSHHSlwwTpaFkYOGdDdACObcn2H-5mpWEnNw,"definetly a 4 star. good app, good concepts some bugs, not really pulling me in thou. i forgot about it, which was sort of the point of the app to make me not forget it. so 4 stars.",4,0,2.10.1,2019-07-30 10:53:27,"Thanks for the review! +We're working to fix bugs and make app even better.",2019-07-30 11:56:50,most_relevant,com.levor.liferpgtasks +Beto Rezende,https://lh3.googleusercontent.com/-4MgSgTnL9Qk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPTmOTLy8P9p2pku1liIrVbFY4LSA/photo.jpg,COMPLETE! A tip: The task option directly reduces the characteristics rather than just the ability,4,0,2.18.0,2019-11-04 15:41:43,"Thank you for the great review! +Skills and characteristics are related, when you perform a task it increases skill, which also increase all related characteristic :)",2019-11-05 16:06:58,most_relevant,com.levor.liferpgtasks +Antonio Evans,https://lh3.googleusercontent.com/-YHcmDcEeTmw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPZR1J4ILNOpITVx2TZgrLNmQkwgg/photo.jpg,It been running kind of slow when you're making new tasks,4,0,,2020-03-18 17:16:52,Thanks for the review!,2020-03-18 16:58:00,most_relevant,com.levor.liferpgtasks +Kayla K,https://lh3.googleusercontent.com/a-/AOh14GjleZRUzJGrs8QfzxkwxLhJDxUTpIGdt-oQBKtKUw,Turn life into a game! Create your own tasks and assign value to them! Pretty cool eh?,4,0,2.21.1,2020-02-04 01:55:19,"Thank you for downloading our app. We'd love to earn 5 stars, so please write to us at liferpgtasks@gmail.com suggesting what we can do to improve.",2020-02-04 12:54:46,most_relevant,com.levor.liferpgtasks +Nima Naraghipoor,https://lh3.googleusercontent.com/a-/AOh14GhEr8yWZvpbIbKQyZe7sp2vn6V510zV0bSZaCsAqA,It٬s one of the best liferpg apps i have ever seen with lot of options but it can have some more beautiful transparent widgets and if you add an option that a task directly influences a characteristics it can be more comfortable,4,2,2.16.0,2019-08-08 03:28:33,"Thanks for your review! +I'll work on new widgets in future. +But I really doubt in direct bond between tasks and characteristics.",2019-08-08 10:40:12,most_relevant,com.levor.liferpgtasks +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"This app is great overall, I just wish there were categories for your inventory items and that the task list widget showed your profile icon also, the profile icon has very bad quality when you choose your own :/",4,2,2.13.0,2019-04-23 05:27:40,"Thank you for the review and suggestion. +Will do!",2019-04-01 10:21:03,most_relevant,com.levor.liferpgtasks +Carla Nazario,https://lh3.googleusercontent.com/a-/AOh14GguuUdQMjAu3Z6HkJI-t8kdARhlQFYLVD54jFKP3A,It keeps reminding me even after the Task is done and it was adjusted according to how many times I should be notified. But overall nice app.,4,1,2.18.0,2019-10-07 04:49:09,"That shouldn't happen. When you open Profile screen (first screen on app open) all scheduled notifications should be cancelled and only valid one should be rescheduled. +I'll try to reproduce and fix. It would be fantastic if you could share more details on task setup.",2019-10-07 14:29:47,most_relevant,com.levor.liferpgtasks +Luciana Fruin,https://lh3.googleusercontent.com/-xlFRmnvhd4w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPedQaSb4akBtMT8XJXJVRkMoeW7g/photo.jpg,"I like it, and I would definitely pay £20 for it, but I cant justify paying a subscription. if only I could pay once.",4,2,2.13.0,2019-04-17 03:12:21,"Thanks for the review! +I've tried single purchase model and it's not convenient in this case. +Nevertheless, all major features are available in free version.",2019-04-17 08:03:26,most_relevant,com.levor.liferpgtasks +Victor Kunchev,https://lh3.googleusercontent.com/a-/AOh14Gg-Fzr_taucDZRF4XcRJUJ8Iz6bu4Gg1QaPfhysUQ,"Liking it a lot so far, but I don't get it doesn't give a warning ring before tasks I put in. That's kind of the main thing I need it for - to remind me of tasks I had previously put in.",4,0,2.14.1,2019-06-11 22:01:48,We are very sorry for the confusion. We will solve this problem as soon as possible.,2019-06-12 15:06:29,most_relevant,com.levor.liferpgtasks +Thomas O'Neil,https://lh3.googleusercontent.com/-G1sl0g7QEbU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOiiGF69Ofpq_Epz19sBsNKwXQd4g/photo.jpg,"Hello. This app is great, but I have a suggestion. With the inventory items, please make it so you can give them attribites such as +10% xp gain or +10% gold gain, or just +10% xp for a specific skill.",4,0,2.17.0,2019-09-07 16:55:26,"Thanks for the suggestion. +I have exactly same idea in development plan :)",2019-09-11 09:15:20,most_relevant,com.levor.liferpgtasks +No Face,https://lh3.googleusercontent.com/a-/AOh14GjNWjfIERDttM7TvuB0kW4bycOITnT8i-ywV5go8g,This would have been a 5 star to app if it wasnt for one miner problem I didn't like. You can't choose PM or AM times and it's just a annoying and confusing.,4,0,,2018-10-24 03:03:54,"Thanks for the review. +Yes, I'll work on switching between 12H and 24H. Thanks!",2018-11-05 13:18:05,most_relevant,com.levor.liferpgtasks +Yoru Kaze,https://lh3.googleusercontent.com/a-/AOh14GjfzXDLuIq_VviEQwDFnsMyCOVGgBwzmKR6CzUV,"Its really useful i really wish it had a way to add people so you could submit tasks for eachother, or a way to access it on a computer or browser.",4,0,2.15.1,2019-06-30 00:02:19,"Thank you for your feedback. We are going to implement possibility to add people to friends list and suggest them tasks in future. Not so sure about desktop or web version, can't give you any concrete answer about it at the moment.",2019-07-05 06:06:36,most_relevant,com.levor.liferpgtasks +Afiq Hakimi,https://lh3.googleusercontent.com/a-/AOh14GiojzGpIwYnnz16DQOfKBjt-nsDpNV3yMhZcUUrag,The apps are functioning well and recommended trying for RPG theme if you love RPG 👍but there is a problem where sometimes when i added the task it does not appear at the task section and sometimes it becomes duplicate..,4,1,2.18.0,2019-09-21 16:38:48,"Thank you for the feedback. +Could you please add more details on how you reproduce it? Since I can't reproduce it on my side.",2019-09-24 11:29:47,most_relevant,com.levor.liferpgtasks +Patrick Carroll,https://lh3.googleusercontent.com/-wWKiK9Ozcbs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOUZItrkSSISvAhumJ0pXjvUlLKSQ/photo.jpg,Fun and easy to use. Creative and helpful way to track tasks and habits.,4,0,2.14.1,2019-06-07 00:22:26,"Thank you for downloading our app. We'd love to earn 5 stars, so please write to us at liferpgtasks@gmail.com suggesting what we can do to improve.",2019-06-07 05:53:13,most_relevant,com.levor.liferpgtasks +Koт Kot,https://lh3.googleusercontent.com/a-/AOh14GiFISkrhuVt5HQkdeplNOH12Y9qXsUQxB8Rgi8j5A,Why this app consumes so MUCH traffic in background? This month it hit the 500mb (!!!) in bg. Is this app free of malware elements?,4,1,2.7.3,2018-10-07 05:18:56,"If you downloaded app from Google Play - there's no malware in it. +Have you logged in into app? Have you enabled autobackup to Dropbox? +Looks like some error.",2018-10-09 15:10:25,most_relevant,com.levor.liferpgtasks +Bren Hilton,https://lh3.googleusercontent.com/a-/AOh14Ghg2oDbNzVVkr5qJ4poYPaaTabeZM1TQnpbJMhRYQ,"All it needs is the option to set a pic from the gallery as an icon. If that happens in the next update, I'll give 5 stars!",4,0,2.12.0,2019-04-07 15:27:24,"Thank you for the feedback! +You can set hero icon from file system. But not item (task, skill) icon due to implementation and due to possibility to set colors to icons.",2019-04-15 12:32:27,most_relevant,com.levor.liferpgtasks +Fouad Mohave,https://lh3.googleusercontent.com/a-/AOh14Gg7msuK8RkuJ6beGOwjp3YlpGUtunGu1IqiaDcA5Q,I can't sign in neither with my google account nor with gmail. should I do something to be able to do that? or it's just a bug?,4,0,2.14.1,2019-06-05 03:46:58,"Thanks for review. +Looks like an issue with login. I'll look into it. +Thanks for the heads up.",2019-06-07 06:01:45,most_relevant,com.levor.liferpgtasks +Ash Paeth,https://lh3.googleusercontent.com/a-/AOh14Ggd4ca9Of9pUyQpFRzFCtrAtgMWEMHCnb8RBBZ-,"Pretty easy to use and reliable. Still trying to figure out the ins and outs, but it's been fairly easy to pick up.",4,0,2.18.0,2019-09-27 13:25:23,"Thanks for the great review! +Feel free to contact me via email, Facebook or Reddit if any concerns appear. +I do hope that you'll like the app and increase you rate to 5 start :)",2019-10-02 10:46:05,most_relevant,com.levor.liferpgtasks +soire studios,https://lh3.googleusercontent.com/a-/AOh14GhTgOAw17D0Dwc1v4YkGxU2sUDgBOV5MbeDotGvlw,Treating activities like a game Gives me a sense of accomplishment when I successfully finish my duties and earn XP.,4,0,2.18.0,2019-10-04 19:34:18,That's exactly the idea that stands behind the app. Thanks for hte review!,2019-10-07 14:17:02,most_relevant,com.levor.liferpgtasks +Dinakara Samarakoon,https://lh3.googleusercontent.com/-9uTeYf93TQY/AAAAAAAAAAI/AAAAAAAAaj4/AAKWJJPowwbor_sz5tRYHhIt0LlSTvuZoQ/photo.jpg,The app has a way of motivating you to complete tasks.,4,0,2.18.0,2019-10-17 13:02:40,Thanks for the great review!,2019-10-18 07:57:03,most_relevant,com.levor.liferpgtasks +YssF,https://lh3.googleusercontent.com/a-/AOh14GgSJnJfxknRTc7xR5NhaSby5EGoUpVsOH0UXkO79Q,"Life changing app with a great concept, but still needs some work.",4,0,2.14.1,2019-06-12 01:30:34,With every new app version we are introducing new features and improving existing ones. We are sure that your feedback will only help us improve further.,2019-06-12 15:04:03,most_relevant,com.levor.liferpgtasks +Shelby Harris,https://lh3.googleusercontent.com/-rBmCr_UEMGQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOvgWKx_KLd-_By2M4lIdlBB9fsKg/photo.jpg,easy to use and good at keeping me motivated throughout the day,4,0,2.15.1,2019-07-25 15:32:52,Thanks for the review!,2019-07-26 12:36:21,most_relevant,com.levor.liferpgtasks +Branden Lumley,https://lh3.googleusercontent.com/a-/AOh14GiaqZ-7K9SmZu8eE7rSr_KwZREdfpmeYrweGwaP,great app reasanable pro features please add multibe avatars(for the kids),4,1,2.9.1,2018-12-21 19:41:39,Thank you for the review and suggestion!,2019-01-02 10:24:53,most_relevant,com.levor.liferpgtasks +Jericho DeGuzman,https://lh3.googleusercontent.com/-dN8aGtD-V5c/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPC_KY53REZCuwZya1E9MG5krETNw/photo.jpg,Crashes when I customize my hero status,4,0,2.15.1,2019-07-24 09:46:59,"Thanks for review and heads. +I'm already working on fix for it.",2019-07-26 12:29:48,most_relevant,com.levor.liferpgtasks +Stacy Stuckey,https://lh3.googleusercontent.com/a-/AOh14Gh8JltppHsI5ZYEM2SdtnAW-glX1x5f8AkrCeYhCA,"i really like the app, but I don't know if I'm using it to its fullest potential. Has any on made a tutorial?",4,0,,2019-06-01 05:10:22,"Thank you for your feedback. +There's build-in userguide in Menu, About section. +Also you can use our Reddit page, there'are a lot of answered questions. +https://www.reddit.com/r/DoItNowRPG",2019-06-03 10:17:46,most_relevant,com.levor.liferpgtasks +marco ofren,https://lh3.googleusercontent.com/-P6D9Wh3awzc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMq4R60twRRQCdRv43ZQMYr7hoqjA/photo.jpg,Simple and straightforward,4,0,2.14.1,2019-05-27 14:35:25,"Hi, +Thank you for your comment. Is there something else that we could do to deserve a better rating from you? Let us know at liferpgtasks@gmail.com.",2019-05-29 08:42:11,most_relevant,com.levor.liferpgtasks +Sandra Djekic,https://lh3.googleusercontent.com/a-/AOh14GiDr3tQNOJfN2t4ITqj1FK8_MgUK5U0xZBsH0hBaA,Very interesting application just to complicated for me,4,0,,2019-09-14 07:42:08,"Thank you for the review. +Can you please share which features you find difficult to use?",2019-09-16 14:52:16,most_relevant,com.levor.liferpgtasks +TeraGaming,https://lh3.googleusercontent.com/a-/AOh14Gh0zy-AS-hp4VqZBzQBS0XFvAvR7cbFbrKl0n0c,It's helping me the way i think,4,0,2.22.0,2020-03-02 15:10:33,Thanks for the review.,2020-03-03 08:13:52,most_relevant,com.levor.liferpgtasks +S. Mather,https://lh3.googleusercontent.com/a-/AOh14GgP8sHC07ghkwvMQyUn4lQq9ExeAtKlurzSmgjlYg,Keeps me on track!,4,0,2.13.0,2019-04-23 00:55:39,Thanks for the feedback!,2019-04-23 12:21:12,most_relevant,com.levor.liferpgtasks +jiyu yan,https://lh3.googleusercontent.com/a-/AOh14GjE4I-87dHBHl-jmj3mw0Aborl2V87efN7JHoyozOI,"No bad habits to simply punish me, just could make good habits?",4,1,2.10.1,2019-02-12 13:37:14,Unfortunately no. But you can create negative task and execute it every time when you done something which strengthen your bad habit.,2019-02-18 10:07:54,most_relevant,com.levor.liferpgtasks +Aws Adnan,https://lh3.googleusercontent.com/-af3eECPjLq4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOh_IrLFtMyjHagFB0ACTkLzg0y-Q/photo.jpg,needs more ranks.,4,2,2.10.1,2019-03-05 19:25:36,"Thanks for the feedback! +You can add as much ranks as you need. Just open hero page, press edit button and then edit hero statuses.",2019-03-18 10:28:48,most_relevant,com.levor.liferpgtasks +Evan Sikorski,https://lh3.googleusercontent.com/a-/AOh14Gh8fHG8W4eq7U9xXyfn2q0giOo-4QgLVXOlzZaCVkU,Tells me tomorrows activities are overdue today,4,15,2.13.0,2019-04-17 05:09:20,"That's weird. +Could you please add more details about such tasks setup?",2018-12-10 09:53:53,most_relevant,com.levor.liferpgtasks +Adam O'Brien,https://lh3.googleusercontent.com/a-/AOh14GifwZy-JLe_be1SfhF4gW0WssevPTR0cTbzalkn,fun and productive,4,0,2.15.1,2019-07-29 04:53:59,Thanks for great review!,2019-07-30 11:48:40,most_relevant,com.levor.liferpgtasks +Zaard,https://lh3.googleusercontent.com/a-/AOh14GhQSE-MeGT5bbJZyhr2MV9I2Xdenyx6f0Fidq3jiA,"Неплохое приложение для поднятия своей дисциплины в игровой форме. Перейдем к минусам: - Дорого за полную версию Серьёзно, 3400 рублей за полную версию навсегда - это очень дорого! Мне кажется, что автор случайно дописал лишний ноль, 340 - ладно, 3400 - дрого. - Не всё доступно без полной версии... Это немного относится к первому минусу. Теперь плюсы: + Повышение дисциплины в игровой форме: Например, если быть чесным и выставлять адекватные награды, то всё очень классно!",4,0,2.22.0,2020-02-27 16:02:00,"Спасибо вам за отзыв. +Возможно, в будущем цену полной версии буду пересматривать. Пока это больше эксперимент.",2020-02-28 08:12:14,most_relevant,com.levor.liferpgtasks +di di,https://lh3.googleusercontent.com/a-/AOh14GgEBmd8p2Nt4zZoVdtqGExl9M_Y1pJvCIOJlnRmxg,"Тарас это крутая идея и хорошая реализация. Доставляет кайф возможность разбивать дэйлики на подпункты (будет чётко если добавишь возможность автозавершения после выполнения всех пунктов). Система ачивок вполне юзабельно но нужно устанавливать ачивки на ""Habit generate"" - по типу 30 дней без перерыва и при желании по возрастающей 3 месяца и т. д Nexus 5x lineages OS 15.1 не работают reminders. Не готов брать подписку, но если добавишь отдельный платный контент (иконки или журнал квестов) - куплю",4,0,2.22.0,2020-03-04 11:03:42,"Спасибо за отличный отзыв и идеи. +Достижения завязанные на вырабатывание привычек есть в планах. +Но добавлять возможность отдельной покупки контента не планирую.",2020-03-04 15:27:07,most_relevant,com.levor.liferpgtasks +ravi kumar,https://lh3.googleusercontent.com/a-/AOh14Ghjq7E7F4jp1kY-EpC0uN7B1I1q3_2pwRncBta3,Awesome,4,0,2.22.0,2020-02-19 03:31:45,"Thank you! If you enjoy using the app, please rate us 5 stars. It would encourage us to continue improving the product!",2020-02-24 11:01:23,most_relevant,com.levor.liferpgtasks +thanigai arasu,https://lh3.googleusercontent.com/-ahQkGTmpmeU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNVeQDfjoUKrjzzzvdXZevJ43W-zg/photo.jpg,Good,4,0,2.18.0,2019-09-26 15:37:56,Thanks for the review!,2019-10-02 10:34:48,most_relevant,com.levor.liferpgtasks +Rabbit Moreno,https://lh3.googleusercontent.com/a-/AOh14Ggoz4mk9zhBvI3GnvQvYp6WJIf_D33ZVsCn9JIUsg,"App has definitely improved since my last review! more social features would be really cool. i am subscribed and i would love to see where this app takes off. i have noticed recent stability issues when i'm on the app for a prolonged period. not sure if it's related to the amount of tasks i have, as i use this app for basically all my tasks, including birthdays. the app will slow down and nearly crash after awhile. otherwise, this is still my go-to! 4 stars again!",4,8,2.23.0,2020-04-02 13:35:11,Thanks for the feedback. I do have plans on new social features and I'll try to improve app performance for cases with a lot of tasks and other items.,2020-04-03 19:35:15,newest,com.levor.liferpgtasks +Scott Pickering,https://lh3.googleusercontent.com/-O3uWQrgFKQg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOex6YAPukxXF0RA-WS_zayVi_Uqg/photo.jpg,"This is a great app for anybody needing some extra motivation or a way to organize their life. I've had some trouble editing or deleting reoccurring tasks, but this may be a device issue, I'm not sure.",4,1,2.23.0,2020-03-30 18:15:01,"Thanks for the feedback. +You can edit all recurrences of the task at once via Tasks section (in bottom navigation menu). +I'm not sure that I got you right, please correct me if I'm wrong.",2020-03-30 17:38:18,newest,com.levor.liferpgtasks +Dimitris Chloupis,https://lh3.googleusercontent.com/a-/AOh14Gjp-bILjowli1WP_BXXvR2vIrUKpWvvBNiBiW2IDA,Works as expected but I would like for time customisation to be more flexible and precise,4,0,2.23.0,2020-03-19 01:40:08,"Thanks for your review. +Could you please add more details on which time customisations you would like to have in app. +Please answer here or via email - liferpgtasks@gmail.com",2020-03-19 08:36:07,newest,com.levor.liferpgtasks +Antonio Evans,https://lh3.googleusercontent.com/-YHcmDcEeTmw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPZR1J4ILNOpITVx2TZgrLNmQkwgg/photo.jpg,It been running kind of slow when you're making new tasks,4,0,,2020-03-18 17:16:52,Thanks for the review!,2020-03-18 16:58:00,newest,com.levor.liferpgtasks +zanin fayik,https://lh3.googleusercontent.com/a-/AOh14GgqSZu-9rK19fimZFCVk5nabv6JuMdumKk-ZY9e,"Add ""negative habits"" which when done decrease coin, xp etc.",4,0,2.23.0,2020-03-14 15:38:25,"Thanks for the review. +I'm not planning to add negative habits (I mean generation), but you can make any task negative. To do it just set more decreasing skills, just make sure that sum of all related skills impacts is less than 0. If so - task will be considered negative and you will lose XP and gold when task is performed and gain it when failed.",2020-03-18 16:42:03,newest,com.levor.liferpgtasks +kuenzang nima,https://lh3.googleusercontent.com/-k9JfYBg-Yfo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM-SZzZxcyT36ZLfl3AevW0TVD-GA/photo.jpg,Nice app. Bug with achievement exp gained. It only adds on to current hero exp without leveling up eg( 144exp/25exp ). Why does skill decay even after doing a task that increases it?,4,0,2.22.0,2020-03-10 18:22:48,"Thanks for the feedback. +I'll take a look on bug with XP. Looks like hero level could increased only by 1 at a time. +Skills decay is not related to executions, it was designed in that way. So you will lose skills all the time and will need to perform tasks to get it on same level or higher, same as in real life.",2020-03-18 14:24:24,newest,com.levor.liferpgtasks +di di,https://lh3.googleusercontent.com/a-/AOh14GgEBmd8p2Nt4zZoVdtqGExl9M_Y1pJvCIOJlnRmxg,"Тарас это крутая идея и хорошая реализация. Доставляет кайф возможность разбивать дэйлики на подпункты (будет чётко если добавишь возможность автозавершения после выполнения всех пунктов). Система ачивок вполне юзабельно но нужно устанавливать ачивки на ""Habit generate"" - по типу 30 дней без перерыва и при желании по возрастающей 3 месяца и т. д Nexus 5x lineages OS 15.1 не работают reminders. Не готов брать подписку, но если добавишь отдельный платный контент (иконки или журнал квестов) - куплю",4,0,2.22.0,2020-03-04 11:03:42,"Спасибо за отличный отзыв и идеи. +Достижения завязанные на вырабатывание привычек есть в планах. +Но добавлять возможность отдельной покупки контента не планирую.",2020-03-04 15:27:07,newest,com.levor.liferpgtasks +TeraGaming,https://lh3.googleusercontent.com/a-/AOh14Gh0zy-AS-hp4VqZBzQBS0XFvAvR7cbFbrKl0n0c,It's helping me the way i think,4,0,2.22.0,2020-03-02 15:10:33,Thanks for the review.,2020-03-03 08:13:52,newest,com.levor.liferpgtasks +Zaard,https://lh3.googleusercontent.com/a-/AOh14GhQSE-MeGT5bbJZyhr2MV9I2Xdenyx6f0Fidq3jiA,"Неплохое приложение для поднятия своей дисциплины в игровой форме. Перейдем к минусам: - Дорого за полную версию Серьёзно, 3400 рублей за полную версию навсегда - это очень дорого! Мне кажется, что автор случайно дописал лишний ноль, 340 - ладно, 3400 - дрого. - Не всё доступно без полной версии... Это немного относится к первому минусу. Теперь плюсы: + Повышение дисциплины в игровой форме: Например, если быть чесным и выставлять адекватные награды, то всё очень классно!",4,0,2.22.0,2020-02-27 16:02:00,"Спасибо вам за отзыв. +Возможно, в будущем цену полной версии буду пересматривать. Пока это больше эксперимент.",2020-02-28 08:12:14,newest,com.levor.liferpgtasks +eric czimcharo,https://lh3.googleusercontent.com/a-/AOh14Gi3QotJ-8H-Y5SeqIQbD7i5n-bUCSg88dH9nN1v8Q,"I am liking it, the subscription model is a bit steep and harsh, especially for the full buy out at 50+ dollars. A suggestion, I'd like to see two categories under the ""Skills"", one that says ""Increasing"" and one that says ""Decreasing"". I am trying to set up a ""Daily Grind"" negative skill that decreases ""Will Power"" and ""Motivation"", while increasing ""Submission"" and ""Routine"". I've noticed the Dev team is really good at responding, so I am hopeful for a response. Thanks!",4,11,2.22.0,2020-02-26 12:34:08,"Thanks for the feedback. +Yeah. I'm trying to answer all reviews, emails and messages :) +I thought about adding skills with negative impact on characteristics, but it will complicate app a lot more. Both development and usage parts. So I decided not to add such feature now. Maybe I'll reconsider later.",2020-02-27 08:03:18,newest,com.levor.liferpgtasks +Daniel Tasker,https://lh3.googleusercontent.com/a-/AOh14Gg4OVzp5PXfqMgjwuoccjsX-8K1CI3mQ2CnKtXD,I really enjoy this app because it stops me from sitting on my butt 24/7.,4,0,2.22.0,2020-02-25 19:55:54,Thanks for the review!,2020-02-26 07:55:12,newest,com.levor.liferpgtasks +Meredith Goodrich,https://lh3.googleusercontent.com/a-/AOh14Ght0s0dXAqEx4WyDtY_NipafhATAhMBpidsyAHqwA,"It's helpful, but it's also annoying. Edit: I didn't make it clear enough, it's annoying to realize how much I'm failing lol Anyway the app is pretty good I'm just overly sensitive and self criritcal",4,0,,2020-02-24 13:41:17,"Ah, got it. +Thanks for the review. +I hope app will help you to succeed in completing your goals and generating new great habits.",2020-02-25 08:01:57,newest,com.levor.liferpgtasks +Burung Pipit Jantan,https://lh3.googleusercontent.com/a-/AOh14GgyH3FXJ_qW7Mr7uBUiV4IoGyhWp-QdHzZjYFNDkw,Homescreen widget would be nice with more display option such as the progress bar.. etc,4,5,2.21.1,2020-02-24 09:58:31,"Thank you for the feedback. +Please take a look at hero homescreen widget. +It has main info on your hero including XP to next level progress bar.",2020-02-24 11:31:37,newest,com.levor.liferpgtasks +Miss Fay,https://lh3.googleusercontent.com/a-/AOh14GjvdXFjHvj2IB2Sefq7GwhyVfGX1SkGoo7S0Fm9YA,"Good App. Lots of customization. But i have noticed an issue with repeating sub-tasks. If a subtask is set to repeat, it won't complete the main task. Seems to complete fine if the subtasks are not set repeat.",4,0,2.22.0,2020-02-22 17:09:21,"Right, it's tricky. +If you have subtasks which repeats - the only way to complete parent task is to make sure that all subtasks execution dates are after parent execution date. In such case parent task becomes completable.",2020-02-24 11:21:54,newest,com.levor.liferpgtasks +Kelley Pennock,https://lh3.googleusercontent.com/-RW8mzFWqvK4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOkg8TnivW08XFwskp327agqhbWwA/photo.jpg,"I like this app, but it really annoys me that it defaults to playing a chime when you first pick up your phone in the morning. When just checking the time, I don't want to be woken up even more. I wish it were possible to just disable that notification instead of disabling all sounds from the app at once.",4,6,2.22.0,2020-02-21 15:56:38,"That's a good suggestion. +I'll add option to disable sounds for specific actions.",2020-02-24 11:16:36,newest,com.levor.liferpgtasks +Nelson Castillo,https://lh3.googleusercontent.com/a-/AOh14GjKJQClBO4ZPs0iRztejNh3pFjLqVvewWf_1tg2,"Hi. I love the app. There's a bug that I want to share. I created a daily task (once a day) but it doesn't go away after completing it from ""Today's"" task. What do I do? Thank you",4,5,2.22.0,2020-02-20 09:27:29,"Hello Nelson. +Thanks for the feedback. +Please check if your task repetitions setup is something other than Simple repeats or Do not repeat since in this modes task won't be moved to next repeat date.",2020-02-24 11:06:45,newest,com.levor.liferpgtasks +ravi kumar,https://lh3.googleusercontent.com/a-/AOh14Ghjq7E7F4jp1kY-EpC0uN7B1I1q3_2pwRncBta3,Awesome,4,0,2.22.0,2020-02-19 03:31:45,"Thank you! If you enjoy using the app, please rate us 5 stars. It would encourage us to continue improving the product!",2020-02-24 11:01:23,newest,com.levor.liferpgtasks +corrina stoker,https://lh3.googleusercontent.com/a-/AOh14GhT2d7EtHX_0bIejpSnZhHVBJcc8qhP2SDxaQcsXw,I really like the app. I'm having an issue though where the widget doesn't populate when a new day starts. I have to delete it and readd it or restart my phone.,4,0,2.22.0,2020-02-18 17:10:37,"Thanks for the feedback. +That's unexpected. Does widget updates when you perform any task inside of the app? +Could you please contact me via email so we could figure out root cause of your problem? +liferpgtasks@gmail.com",2020-02-18 18:31:00,newest,com.levor.liferpgtasks +Leith Cassone,https://lh3.googleusercontent.com/a-/AOh14GiaSVM40RE4L13mnM68j99HK1CSSvZL5Hue3EcUKg,"I think it's a great app, and a lot of fun. I had some trouble figuring things out at first, but everything works. The only complaint I would have is the cost... It would be nice to have some of the features, but they are too expensive.",4,2,2.22.0,2020-02-17 15:09:25,,,newest,com.levor.liferpgtasks +Max van Andel,https://lh3.googleusercontent.com/a-/AOh14GhIe3PcQZpBfS6m7L_EA0D5PYXcw46FJiIiy0ZdpQ,"The app is allready great. The amount of customisation is surreal and with a bit of tweaking you can really make it work. The sentimental value you create this way really helped me grow. As the app is rpg themed, those elements could be further enhanced imo. I think a customisable character would be fun. More options to spend the currency other then personalised awards is what im getting at. This way you really build something with the effort you've put in. For the games.. Keep up the good work",4,16,2.22.0,2020-02-17 11:24:08,"Thank you for the review! +Great suggestions on customizable character and currency. I'll try to come app with something :)",2020-03-07 07:03:31,newest,com.levor.liferpgtasks +Joven Casiano,https://lh3.googleusercontent.com/a-/AOh14Ggq44OGKAwuAUh6fyX1MBK_i5ifsu3pSf9BlOF1,"This app is great! I love the idea of turning my daily life like an RPG game. But I have this goal to wash my face twice everyday and it feels repetitive to make two task for the exact same thing. So can you guys make a task where it has to be done twice before the said task is completed? Been trying my hardest to do this on your app, even finished reading the user guide, but it still wouldn't work.",4,2,2.21.1,2020-02-13 00:25:59,"Thanks for your review. +Unfortunately there's no way to schedule same task more than 1 time per day. +Due to limitations of current implementation it's pretty tough task from development perspective, but I suppose I'll add it in future.",2020-02-14 08:46:51,newest,com.levor.liferpgtasks +Freak Show Hound,https://lh3.googleusercontent.com/a-/AOh14GjYKdrPau5Wve9y_Yhw5IJRTLXFgLBpIffwgpIvyw,I really like it. I think it's a really cool concept to have characters to build up with the habits. Only thing I wish were there is to be able to have notifications for term less habits,4,0,2.21.1,2020-02-12 12:11:08,"Thanks for the review! +Unfortunately due to current implementation there's no way to schedule notification for task without date/time.",2020-02-14 08:38:00,newest,com.levor.liferpgtasks +Marcin H,https://lh3.googleusercontent.com/a-/AOh14Gghq3U-FAeTrkS86yxeNeIwd0PHtzygGByyp6ccnw,"The app is good and in general highly customizable, but it has one flaw: it uses days (24 hours periods) as a basic unit of measure, but it doesn't let you change the default starting hour (midnight). This is inconvenient for people who have unusual working hours and it makes the app impractical to track daily tasks for users who are more productive at night. I would rate it as a 5 stars app, if I could choose when my day ends and be able to log my dailies properly.",4,6,2.21.1,2020-02-06 06:39:28,"Thanks for the feedback. +You're right, possibility to set day starting hour might be really useful.",2020-02-12 17:54:46,newest,com.levor.liferpgtasks +Kayla K,https://lh3.googleusercontent.com/a-/AOh14GjleZRUzJGrs8QfzxkwxLhJDxUTpIGdt-oQBKtKUw,Turn life into a game! Create your own tasks and assign value to them! Pretty cool eh?,4,0,2.21.1,2020-02-04 01:55:19,"Thank you for downloading our app. We'd love to earn 5 stars, so please write to us at liferpgtasks@gmail.com suggesting what we can do to improve.",2020-02-04 12:54:46,newest,com.levor.liferpgtasks +Eryk Kruk,https://lh3.googleusercontent.com/-7zZpH_TM5wg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM9aRHtFCbLmqmAqgOOgaFdQuPGgQ/photo.jpg,"Nice. Will be better if app has got inhabit counter.. for example count of pushups or exercise. I need it, but app is very nice. I will be recommend it.",4,0,2.21.1,2020-01-22 22:40:49,"Thanks for the review and good suggestion. +I'll try to add it in some way :)",2020-01-23 16:36:30,newest,com.levor.liferpgtasks +Landon Searle,https://lh3.googleusercontent.com/a-/AOh14GifqB_x0Y4zY_RmZ18apwAQAXbwa-bZjMHcYzd66Q,"It is a cool app, but the calendar feature required to be bought. That should be informed to the users before installation. In addition, it would be a good idea if skills can increase over time, and skills can decrease characteristics.",4,1,2.21.1,2020-01-22 17:35:45,"Thanks for the review and suggestion with calendar. +Skills do impact characteristics in both ways - when skill level changes it will also change levels of all related characteristics with specified impact. +Also there's an option to enable skill decay over time, so less usable skills will have less value over time. Like in real life.",2020-01-23 16:33:43,newest,com.levor.liferpgtasks +Isaac Rutledge,https://lh3.googleusercontent.com/a-/AOh14GhMlWN5zZxHHIzVy5anxczawv_9QvkkYPiOVkHR,Great honestly great way to keep track of daily tasks to stay organized. One thing they should add is overall goals. And tasks leading to those goals.,4,1,2.20.0,2019-12-10 03:19:21,"Thanks for the review. +That's interesting idea. I suppose it could be useful. +Meanwhile you can create a tasks group per global goal and add related tasks to it.",2019-12-13 08:14:32,newest,com.levor.liferpgtasks +Lance Ruscoe,https://lh3.googleusercontent.com/a-/AOh14GgiyM9Mxjb0gICAQBE9xf8w8a-GnLnvfatfxy3Hkpk,"Interesting concept! Still getting used to the functionality, but this app is an effective way to gamify your to-do and task lists. Before Do it Now -RPG, I had a list of chores; Now I have a quest-list, instead. Time to go unlock some achievements!",4,0,2.20.0,2019-12-08 17:54:19,Thanks for the great review and good luck with achievements!,2019-12-13 08:09:15,newest,com.levor.liferpgtasks +Casey Griffin,https://lh3.googleusercontent.com/a-/AOh14Gi1S8KT-uTRt_Kpw3b0IGZ09unmnx1aofSNNz6_,"This app is so robust, I love it! However, I would love a quick add button in the notifications.",4,0,2.19.1,2019-11-24 18:11:39,"Thanks for the review. +Wow, that's a great thought. I suppose it would be useful to add special notification that will show first task from some selected tasks group (e.g. Today), number of tasks in this group and ""Add"" button which opens new task screen quickly.",2019-11-29 15:28:53,newest,com.levor.liferpgtasks +Tina Burton,https://lh3.googleusercontent.com/-NqwY46VHI2g/AAAAAAAAAAI/AAAAAAAAGd8/AAKWJJNTot18gV26n4fQGPYfv3mrf4ouyA/photo.jpg,"I just started but really like it so far. Competes directly with Habitica but less of the nonsense costumes. It's hard at first to sort characteristics, skills and tasks (you are essentially your own game dev) but on paper I recently sorted out what I want to improve (Skills) and what is stopping me (Characteristics). Tasks will follow soon after. I'm really hopeful about this setup, I love the design, and I never do this but I might actually pay for a subscription (!!!) if all goes well.",4,11,2.19.1,2019-11-23 02:12:01,"Thanks for the great and encouraging feedback. +I do hope that app will help you to achieve your goals :)",2019-11-29 15:01:24,newest,com.levor.liferpgtasks +J V,https://lh3.googleusercontent.com/a-/AOh14GincfEWg_AhVukvsPmADta-V0-6_Z7N2QmeMX7VCw,"Perfect for people who want to get organized and desire an app more robust than a checklist. It has profound customization ability. The reward system is more complex than competitors. For someone with significant attention issues, this has really helped me to feel invested. Subtasks and autofails are great features. Would be 5 stars if developers: 1. Allowed subtasks to renew as collapsible tasks not just tied in 2. Made tutorial/videos. Full functionality will be a learning curve for many",4,54,2.19.1,2019-11-20 17:43:44,"Thanks for the great feedback and suggestions. +1. Will work on that! +2. Great suggestion, I have plans on adding more small in-app tutorials (like on Inventory screen at the moment). Video also could be a cool way decrease learning difficulty.",2019-11-29 12:49:45,newest,com.levor.liferpgtasks +Xiaonan Wang,https://lh3.googleusercontent.com/a-/AOh14GgqkNeh6LWfK7b0Iy_zlmQgItY-3Y3fIb26FCk3eg,Looking forward to a better UI/UX. Will keep using it.,4,0,2.19.0,2019-11-13 04:26:51,"Thanks for the review. +I'll work on UI and UX :)",2019-11-29 11:48:45,newest,com.levor.liferpgtasks +Venance Alexandre HOUNDJAGO,https://lh3.googleusercontent.com/-jQNR0dhhqI8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNacEal1u52YTdf6N8ZcfHumrR6Zw/photo.jpg,Just after I looked at the interface I knew it was what I was searching. Not so for the xp thing which is a very great idea but also how it handle goals like reading books... For anyone who think in terms of goals (and obviously who love RPGs) It's totally free though,4,0,2.19.0,2019-11-10 10:15:43,Thanks for the great review!,2019-11-29 11:45:34,newest,com.levor.liferpgtasks +steven stonie,https://lh3.googleusercontent.com/a-/AOh14GjYN8Vh5EnroKKYKSkXfK078icbNocxwn6bs5wY6g,Its a good app for everyday tasks. It takes time to customize it and its normal because its an RPG type. However I think im not the only one who encountered this annoying bug where if you want to change a task from lets say termless to always repeat every day the task remains termless. You can solve this problem by deleting the task and making another with the setting you want. This bug was very frustrating because i thought i did something wrong but yeah..,4,3,2.18.0,2019-11-06 18:21:40,I understand how annoying that must be. But I can't reproduce this bug on my side. Maybe there's some additional steps required to do it?,2019-06-21 15:00:59,newest,com.levor.liferpgtasks +Beto Rezende,https://lh3.googleusercontent.com/-4MgSgTnL9Qk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPTmOTLy8P9p2pku1liIrVbFY4LSA/photo.jpg,COMPLETE! A tip: The task option directly reduces the characteristics rather than just the ability,4,0,2.18.0,2019-11-04 15:41:43,"Thank you for the great review! +Skills and characteristics are related, when you perform a task it increases skill, which also increase all related characteristic :)",2019-11-05 16:06:58,newest,com.levor.liferpgtasks +Alfian's Dump,https://lh3.googleusercontent.com/a-/AOh14Gh6-lm8JKaxEIEs0p3M3ZizjcfmqH-lUjkZyrOqMA,"I would love to do a one/life time purchase for this app. Too bad I hate subscription based so sorry, I'd rather spend my money for something unproductive than this app.",4,0,2.18.0,2019-11-03 03:40:18,"Thanks for the review. +Unfortunately, app only supports subscriptions and there's no plans to add one time purchase option.",2019-11-05 16:03:37,newest,com.levor.liferpgtasks +Laura Arsenyan,https://lh3.googleusercontent.com/-I6CaIjrKo0k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMDnlXfxJkmO45f_7H_Hp7W-qBAZw/photo.jpg,"I was looking for an organizer app which would provide statistics on my discipline and progress, and this does it! But it is missing one, to me basic, feature - the tasks don't have a start time or duration period, there is only a deadline. It doesn't allow understanding easily whether the tasks overlap in time. Is this feature available in the premium version at least? Another missing feature is the location setting, at least at a home/work/outdoors level. Any plans to incorporate the features?",4,2,2.18.0,2019-10-27 22:20:30,"Thanks for the review. +No, there's no duration or start time in premium version. +I have plans to add task start time + duration feature. +But not sure about location, could you please add more details on how it can be used?",2019-10-31 14:40:11,newest,com.levor.liferpgtasks +Dinakara Samarakoon,https://lh3.googleusercontent.com/-9uTeYf93TQY/AAAAAAAAAAI/AAAAAAAAaj4/AAKWJJPowwbor_sz5tRYHhIt0LlSTvuZoQ/photo.jpg,The app has a way of motivating you to complete tasks.,4,0,2.18.0,2019-10-17 13:02:40,Thanks for the great review!,2019-10-18 07:57:03,newest,com.levor.liferpgtasks +Carla Nazario,https://lh3.googleusercontent.com/a-/AOh14GguuUdQMjAu3Z6HkJI-t8kdARhlQFYLVD54jFKP3A,It keeps reminding me even after the Task is done and it was adjusted according to how many times I should be notified. But overall nice app.,4,1,2.18.0,2019-10-07 04:49:09,"That shouldn't happen. When you open Profile screen (first screen on app open) all scheduled notifications should be cancelled and only valid one should be rescheduled. +I'll try to reproduce and fix. It would be fantastic if you could share more details on task setup.",2019-10-07 14:29:47,newest,com.levor.liferpgtasks +soire studios,https://lh3.googleusercontent.com/a-/AOh14GhTgOAw17D0Dwc1v4YkGxU2sUDgBOV5MbeDotGvlw,Treating activities like a game Gives me a sense of accomplishment when I successfully finish my duties and earn XP.,4,0,2.18.0,2019-10-04 19:34:18,That's exactly the idea that stands behind the app. Thanks for hte review!,2019-10-07 14:17:02,newest,com.levor.liferpgtasks +Neal Allen,https://lh3.googleusercontent.com/a-/AOh14GjX7qmvZP3OHV8edSvPqcNLhOvBXzXObvzffA_UDA,"Awesome app to keep your life on track. Would 5 star, but app crashes every time I try and add a custoum sound. Edit: Thank you! Will try again after the next update.",4,1,2.18.0,2019-10-03 15:41:19,"Oh, wow, that's unfortunate. +I'll take a look and try to fix it. +Thanks for the heads up.",2019-10-02 10:52:07,newest,com.levor.liferpgtasks +Manasa D,https://lh3.googleusercontent.com/a-/AOh14GjNNky9yHivweqbsXmbW_lguEXqBv8s7JpV0U5FBA,"I've been using this app for some weeks now. There are still some features that I don't understand and there's just so much available for customisation that it's overwhelming. But, once i spent a few hours customizing all i wanted, this app has been so fun and useful. Most to do list apps out there are so cumbersome and anxiety inducing. This one isn't. It has helped me prioritize what's important to me while letting me role-play. I like it a lot.",4,3,2.18.0,2019-10-02 06:23:41,Thank you for your feedback. Is there something else that I could do to deserve even better rating from you? Please let know at liferpgtasks@gmail.com.,2019-10-02 10:55:37,newest,com.levor.liferpgtasks +Nima Ninja,https://lh3.googleusercontent.com/a-/AOh14GiqyRuMOdTsfUZ4qd_1VRnrDY-dUFcjxRqWfuEl,"It's a good app but can be better I want the developer to fix the following please: 1-when you work with it sometimes it becomes laggy and you need to force stop and restart the app 2-when you type in it in Persian the symbols like ""?, (,), etc"" doesn't align correctly 3 - if you add some native calendars like Persian calendar to it it will become more useful (and also an option to set it as main calendar not like Google alternative calendars that show Gregorian months not Persian months ex.)",4,0,2.18.0,2019-09-27 14:35:33,Really appreciate your suggestions. We will consider them and improve our app in the new version. If you have questions or suggestions please contact us at liferpgtasks@gmail.com.,2019-10-02 10:47:13,newest,com.levor.liferpgtasks +Ash Paeth,https://lh3.googleusercontent.com/a-/AOh14Ggd4ca9Of9pUyQpFRzFCtrAtgMWEMHCnb8RBBZ-,"Pretty easy to use and reliable. Still trying to figure out the ins and outs, but it's been fairly easy to pick up.",4,0,2.18.0,2019-09-27 13:25:23,"Thanks for the great review! +Feel free to contact me via email, Facebook or Reddit if any concerns appear. +I do hope that you'll like the app and increase you rate to 5 start :)",2019-10-02 10:46:05,newest,com.levor.liferpgtasks +thanigai arasu,https://lh3.googleusercontent.com/-ahQkGTmpmeU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNVeQDfjoUKrjzzzvdXZevJ43W-zg/photo.jpg,Good,4,0,2.18.0,2019-09-26 15:37:56,Thanks for the review!,2019-10-02 10:34:48,newest,com.levor.liferpgtasks +Afiq Hakimi,https://lh3.googleusercontent.com/a-/AOh14GiojzGpIwYnnz16DQOfKBjt-nsDpNV3yMhZcUUrag,The apps are functioning well and recommended trying for RPG theme if you love RPG 👍but there is a problem where sometimes when i added the task it does not appear at the task section and sometimes it becomes duplicate..,4,1,2.18.0,2019-09-21 16:38:48,"Thank you for the feedback. +Could you please add more details on how you reproduce it? Since I can't reproduce it on my side.",2019-09-24 11:29:47,newest,com.levor.liferpgtasks +Sandra Djekic,https://lh3.googleusercontent.com/a-/AOh14GiDr3tQNOJfN2t4ITqj1FK8_MgUK5U0xZBsH0hBaA,Very interesting application just to complicated for me,4,0,,2019-09-14 07:42:08,"Thank you for the review. +Can you please share which features you find difficult to use?",2019-09-16 14:52:16,newest,com.levor.liferpgtasks +Ruben Pouw,https://lh3.googleusercontent.com/a-/AOh14GjBSxF1JksoYjYYCjSQPFtHUXoSbLuY5zBFFR8U,"(+)Pros: it's fun, LOTS of customisation, ALL basic functionality are free, inclined to habit generation than everyday to do list. (-)Cons: first time setup are quite challenging; literally create your own system. Icons & themes are limited (minor inconvenience). I was using LifeRPG (which seems abandoned now) so it helps with the learning curve. I see devs made lots improvement here. Recommended!",4,30,2.17.0,2019-09-12 01:14:20,"Thanks for the great review! + +Yeah, learning curve is pretty tough, but that's the price we need to pay for high flexibility.",2019-09-12 15:25:47,newest,com.levor.liferpgtasks +Thomas O'Neil,https://lh3.googleusercontent.com/-G1sl0g7QEbU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOiiGF69Ofpq_Epz19sBsNKwXQd4g/photo.jpg,"Hello. This app is great, but I have a suggestion. With the inventory items, please make it so you can give them attribites such as +10% xp gain or +10% gold gain, or just +10% xp for a specific skill.",4,0,2.17.0,2019-09-07 16:55:26,"Thanks for the suggestion. +I have exactly same idea in development plan :)",2019-09-11 09:15:20,newest,com.levor.liferpgtasks +BIJAY pareek,https://lh3.googleusercontent.com/-2WWjANzDS3k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMtqSJMhXbuPPUFZe5r5zvAClcDjw/photo.jpg,Nice,4,0,,2019-09-06 06:00:44,Thanks for your review!,2019-09-11 09:08:34,newest,com.levor.liferpgtasks +Nick Pazdan,https://lh3.googleusercontent.com/a-/AOh14GgQU1jWnwj8HPLvWIIDNi_-cVLgiE6fAeG5TQgwnA,This app looks to carry the torch from the now abandoned LifeRPG app and from a bit of digging so far I'm impressed. Some things are tucked behind a pay wall such as the calendar and aesthetic additions like themes and icons but it's a relatively low price and helps support the devs so I'll probably bite on that once I've set up everything and used the app a bit. One suggestion I'd have is to implement geotagged triggers for events - like bringing up a reminder when I'm near the gym or store.,4,7,2.16.0,2019-08-21 12:17:33,"Thanks for the review and suggestion with geotagging, I'll investigate the possibilities :)",2019-09-03 10:23:03,newest,com.levor.liferpgtasks +Yoseph Birhanu,https://lh3.googleusercontent.com/-_J6fL-d2qd4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMai6iWteAaqL96tL9LH7AA_GKxWQ/photo.jpg,Jibj,4,0,2.16.0,2019-08-19 06:02:11,Thank you for the great review!,2019-09-03 10:17:15,newest,com.levor.liferpgtasks +Trung Đức,https://lh3.googleusercontent.com/a-/AOh14GhJDr-NusB577A7r0WjgunwezqE6kJo5Cp798pi,"it would be nice if there are pre-set goals or task to choose from - while the app allow for a high level of customization, it's too much hassle to set it all up properly, not to mention balancing the reward from each task",4,2,2.16.0,2019-08-12 06:52:31,"Thanks for the review! +Yeah, I've been thinking to add some sort of task templates or as someone suggested tasks packs that could be driven by community. It should partially solve the problem.",2019-08-13 09:55:23,newest,com.levor.liferpgtasks +Nima Naraghipoor,https://lh3.googleusercontent.com/a-/AOh14GhEr8yWZvpbIbKQyZe7sp2vn6V510zV0bSZaCsAqA,It٬s one of the best liferpg apps i have ever seen with lot of options but it can have some more beautiful transparent widgets and if you add an option that a task directly influences a characteristics it can be more comfortable,4,2,2.16.0,2019-08-08 03:28:33,"Thanks for your review! +I'll work on new widgets in future. +But I really doubt in direct bond between tasks and characteristics.",2019-08-08 10:40:12,newest,com.levor.liferpgtasks +Dan Dryaev,https://lh3.googleusercontent.com/a-/AOh14GjJPFcSHHSlwwTpaFkYOGdDdACObcn2H-5mpWEnNw,"definetly a 4 star. good app, good concepts some bugs, not really pulling me in thou. i forgot about it, which was sort of the point of the app to make me not forget it. so 4 stars.",4,0,2.10.1,2019-07-30 10:53:27,"Thanks for the review! +We're working to fix bugs and make app even better.",2019-07-30 11:56:50,newest,com.levor.liferpgtasks +Adam O'Brien,https://lh3.googleusercontent.com/a-/AOh14GifwZy-JLe_be1SfhF4gW0WssevPTR0cTbzalkn,fun and productive,4,0,2.15.1,2019-07-29 04:53:59,Thanks for great review!,2019-07-30 11:48:40,newest,com.levor.liferpgtasks +Noam Preil,https://lh3.googleusercontent.com/-Ezkj9d1cCk4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP1-AM8eJGT-6avJuSVNSDbZnVuzA/photo.jpg,"Pretty good, only issue I noticed is that if you undo claiming a reward that has its price increase each claim it can give you extra coins back. Aside from that, a lifetime purchase option would be nice (I try to avoid subscriptions where possible, so I'm sticking with using this for free for now), and an option to hide the parts that require a subscription instead of showing them but asking you to pay when you click them would be nice. (e.g. so the calendar doesn't even show up on the bottom).",4,1,2.15.1,2019-07-29 01:16:31,"Thanks for the review! +Good point with reward claim undo, I'll look into it. +Lifetime purchase - unfortunately such model simply won't work since a lot of third party services charge via subscriptions. +You can select which tabs to display in bottom bar in setting (Menu, Setting, Tab bar).",2019-07-30 11:47:15,newest,com.levor.liferpgtasks +First Name,https://lh3.googleusercontent.com/-BNi02pRxmnI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJODEjq8ykEYQ806-k9wpgvykIuxSw/photo.jpg,"I bought the full version. its a fun app to challenge yourself. I would like to see an update gives you the choice to choose a pen or pencil icon or a book icon, which seem to be missing, that would be useful. for example, if you want to write a book, it would be nice to have a ""book""📚📗📘📙📓📔icon, or ""pen""🖋🖊 icon, or ""pencil"" icon... UPDATE: I seem them now! Thanks for responding and letting me know. Looks like I needed to scroll farther down to see them. 👍",4,0,,2019-07-26 23:27:05,"Thank you for the review. +You can find 4 book icons under Other section of icon selection dialog. +Also you can use one of two brush icons which are placed under Tools section. +Update: I'd really appreciate if you increase review rate to 5 starts. If you have no other concerns or suggestions of course :)",2019-07-30 11:19:52,newest,com.levor.liferpgtasks +Shelby Harris,https://lh3.googleusercontent.com/-rBmCr_UEMGQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOvgWKx_KLd-_By2M4lIdlBB9fsKg/photo.jpg,easy to use and good at keeping me motivated throughout the day,4,0,2.15.1,2019-07-25 15:32:52,Thanks for the review!,2019-07-26 12:36:21,newest,com.levor.liferpgtasks +Jericho DeGuzman,https://lh3.googleusercontent.com/-dN8aGtD-V5c/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPC_KY53REZCuwZya1E9MG5krETNw/photo.jpg,Crashes when I customize my hero status,4,0,2.15.1,2019-07-24 09:46:59,"Thanks for review and heads. +I'm already working on fix for it.",2019-07-26 12:29:48,newest,com.levor.liferpgtasks +Neilia Adolph,https://lh3.googleusercontent.com/a-/AOh14GjOT-AQOC9hQRTBpaaJ0TAOE0Xq974VoA0sK5Lyj_4,"I downloaded this game in the Hope's that the format would help me with my procrastination and can I just say, its exceeded my expectations. it's so good ! I ended up having to change some of the pre set tasks and rewards to make it more personalized but apart from that, it's great. highly recommend if you, like me, like to procrastinate and make excuses to avoid tasks.",4,2,2.15.1,2019-07-07 01:02:25,Thank you for your feedback. Please reach us back if we can do something to get 5 stars review.,2019-07-09 05:51:11,newest,com.levor.liferpgtasks +Phil Charbonneau,https://lh3.googleusercontent.com/a-/AOh14GhjDAdMCkdXFV6TlzfcKt-hj82-mDIz5fCjbIRmIw,"I like this app enough to have paid for a year's subscription, but there are a couple quality of life improvements that would be nice. I would love to see icons on the widget. I would also like to pick icons as my avatar photo since there's some good ones.",4,1,2.15.1,2019-07-03 21:34:58,"Thanks for the feedback and suggestions. +And especially for your support.",2019-07-09 05:36:21,newest,com.levor.liferpgtasks +Yoru Kaze,https://lh3.googleusercontent.com/a-/AOh14GjfzXDLuIq_VviEQwDFnsMyCOVGgBwzmKR6CzUV,"Its really useful i really wish it had a way to add people so you could submit tasks for eachother, or a way to access it on a computer or browser.",4,0,2.15.1,2019-06-30 00:02:19,"Thank you for your feedback. We are going to implement possibility to add people to friends list and suggest them tasks in future. Not so sure about desktop or web version, can't give you any concrete answer about it at the moment.",2019-07-05 06:06:36,newest,com.levor.liferpgtasks +Lyssa Personal and Social Stuckey,https://lh3.googleusercontent.com/a-/AOh14Gg9wid8pR_cumn94v-72Jw4aIa0pwcqzTOhEybL,"It's a lot of fun, good personalization. I have to make time to explore the app called more fully, I think a tutorial would be amazing, and pre-developed lists that could be tweaked.",4,0,2.15.1,2019-06-21 05:31:20,"Thank you for your feedback. +There's build-in user guide under Menu, About section. +And could you please add more details on list and tweaks? You can reach us on liferpgtasks@gmail.com or here via editing review.",2019-06-21 14:55:02,newest,com.levor.liferpgtasks +Tony Lashbrook,https://lh3.googleusercontent.com/-6iWcFqwTT5E/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM8sV0OSpb0ED3QAHgIzrup609wtg/photo.jpg,Fantastic app but 4 stars. Every part has been a comfortable experience for me until I started trying to use it across devices. I took me around 30 minutes to set up all my tasks the first time and when I signed into my account for the app all the tasks I had made got overwritten by the default tasks from the other device. It was partially my fault for the careless order that I signed in on the devices. But perhaps my issue could have been avoided entirely if when it attempted to sync my tasks from the internet the first time it asked me if I wanted to use the database that is from the internet or that is local. Would have saved me a lot of headache remaking all the tasks again. That said every other function provided is great and I would recommend.,4,2,2.15.0,2019-06-13 03:24:48,"Thank you for your feedback. +That's pretty good suggestion, I'll add it to development plan.",2019-06-13 11:02:46,newest,com.levor.liferpgtasks +Mitch Reed,https://lh3.googleusercontent.com/a-/AOh14Gj15kiQ81RZFN9qX9WtOMikZ50TP-so8oLZcbJmCA,"New user and I'm impressed! A lot of neat features I've been looking for in apps like this. it's obvious dev is active and listening and thats a great sign. If I have an immediate suggestion, it'd be for us to be able to add tab categories of traits besides the default characteristics/skills; for example to add things like ""personality"", ""lifestyle"" or however we want to organize our skillset categories, so those 2 sections aren't cluttered. A search option for icons too maybe? Keep it up!",4,11,2.15.0,2019-06-12 21:20:57,Thank you for your feedback and suggestions!,2019-06-13 11:03:32,newest,com.levor.liferpgtasks +YssF,https://lh3.googleusercontent.com/a-/AOh14GgSJnJfxknRTc7xR5NhaSby5EGoUpVsOH0UXkO79Q,"Life changing app with a great concept, but still needs some work.",4,0,2.14.1,2019-06-12 01:30:34,With every new app version we are introducing new features and improving existing ones. We are sure that your feedback will only help us improve further.,2019-06-12 15:04:03,newest,com.levor.liferpgtasks +Victor Kunchev,https://lh3.googleusercontent.com/a-/AOh14Gg-Fzr_taucDZRF4XcRJUJ8Iz6bu4Gg1QaPfhysUQ,"Liking it a lot so far, but I don't get it doesn't give a warning ring before tasks I put in. That's kind of the main thing I need it for - to remind me of tasks I had previously put in.",4,0,2.14.1,2019-06-11 22:01:48,We are very sorry for the confusion. We will solve this problem as soon as possible.,2019-06-12 15:06:29,newest,com.levor.liferpgtasks +Patrick Carroll,https://lh3.googleusercontent.com/-wWKiK9Ozcbs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOUZItrkSSISvAhumJ0pXjvUlLKSQ/photo.jpg,Fun and easy to use. Creative and helpful way to track tasks and habits.,4,0,2.14.1,2019-06-07 00:22:26,"Thank you for downloading our app. We'd love to earn 5 stars, so please write to us at liferpgtasks@gmail.com suggesting what we can do to improve.",2019-06-07 05:53:13,newest,com.levor.liferpgtasks +Angel Lysa,https://lh3.googleusercontent.com/a-/AOh14GgCZrEyqHWTnVOVCI3YPX4Xky9xLPaoq340Jf2fCaE,"one thing, the widget sometimes doesn't update the today list, and about the to do list, i have to make 2 different widget for today and tommorow, because when all tasks show, cannot differentiate what today and tommorow so i was check list my today and tommorow task, and it is kinda confusing how to uncheck again (?) maybe this option to check and uncheck must be there, and the reward will be given after all the task has done for today.. thank you, hope this app improve",4,0,2.14.1,2019-06-06 20:49:15,"Thank you for your kind feedback. +I suppose adding task start date to widget could solve problem with distinction. + +You can uncheck executed tasks from profile screen if task was performed today (first tab in bottom tab bar); or you can open executions history and undo task from there (tasks tab, options menu at the toolbar, history).",2019-06-07 05:55:57,newest,com.levor.liferpgtasks +Fouad Mohave,https://lh3.googleusercontent.com/a-/AOh14Gg7msuK8RkuJ6beGOwjp3YlpGUtunGu1IqiaDcA5Q,I can't sign in neither with my google account nor with gmail. should I do something to be able to do that? or it's just a bug?,4,0,2.14.1,2019-06-05 03:46:58,"Thanks for review. +Looks like an issue with login. I'll look into it. +Thanks for the heads up.",2019-06-07 06:01:45,newest,com.levor.liferpgtasks +Stacy Stuckey,https://lh3.googleusercontent.com/a-/AOh14Gh8JltppHsI5ZYEM2SdtnAW-glX1x5f8AkrCeYhCA,"i really like the app, but I don't know if I'm using it to its fullest potential. Has any on made a tutorial?",4,0,,2019-06-01 05:10:22,"Thank you for your feedback. +There's build-in userguide in Menu, About section. +Also you can use our Reddit page, there'are a lot of answered questions. +https://www.reddit.com/r/DoItNowRPG",2019-06-03 10:17:46,newest,com.levor.liferpgtasks +marco ofren,https://lh3.googleusercontent.com/-P6D9Wh3awzc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMq4R60twRRQCdRv43ZQMYr7hoqjA/photo.jpg,Simple and straightforward,4,0,2.14.1,2019-05-27 14:35:25,"Hi, +Thank you for your comment. Is there something else that we could do to deserve a better rating from you? Let us know at liferpgtasks@gmail.com.",2019-05-29 08:42:11,newest,com.levor.liferpgtasks +Motchi Leuterio,https://lh3.googleusercontent.com/a-/AOh14GhLJtwWZP9ve-GHJa2JfWwQxc-27d56bJJKJtqF4Q,"This app is really good. I want to suggest to that the app should have a ""Rest Day"" option or something similar. That you can activate it anytime you want and while activated, the tasks will be put into a halt including penalty and overdue. It is useful if you are on vacation or there's an occasion you need to attend and makes you unable to finish the daily tasks.",4,12,2.14.1,2019-05-27 09:03:43,"Thank you for your feedback. +Good suggestion, thank you!",2019-05-29 08:43:25,newest,com.levor.liferpgtasks +Dillon McKee,https://lh3.googleusercontent.com/a-/AOh14GgvQZSojVM02PFgCXcOY1IB8SD-UE3EtVk7ZmlS,this is pure magic juat saying best life app out there keep up the great work!!! im ao happy you listen to your customers EDIT: now my entire household is using this app its amazing magic easy to use only thing i noticed is that when you claim a reward if it has an increasing cost sometimes it will spend the gold after the increase instead of before resulting in extra gold loss my best guess is that the script might be changing the cost value before subtracting the gold from the players gold.,4,0,2.14.1,2019-05-24 13:22:10,"Thank you for your review and heads up on problem. +I'll fix it in nearest update.",2019-05-29 08:52:14,newest,com.levor.liferpgtasks +Pashok Ribakov,https://lh3.googleusercontent.com/a-/AOh14GiPgmAoPBLH8mp4kWsKCIUY2Ic6IqTEMc2of3rwJ1w,"Hello! Your app is amazing! My GF and me installed this app 2 days ago and started to planning task to each other. But i really need a list functional, like add a shopping list or some book list to add in this app. Are you going to add this? Sry for my English, btw:) UPDATE: And i really need a functional to add a checklist in tasks with possibility to mark it's completed. Thank you and your team again for this great app!",4,2,2.14.0,2019-05-04 22:34:36,"Thanks for the review. +Not sure about lists, maybe I'll add then some time later. For now you can use subtasks system for such things.",2019-03-07 07:53:06,newest,com.levor.liferpgtasks +Junior García Rodríguez,https://lh3.googleusercontent.com/a-/AOh14GhBlGktU38D7nVJOLDEiDVbdFmHuOwJTFwScMeZ2w,"It's a bit hard to set everything up, but it's a fun new concept for the typical agenda that encourages you a bit more to achieve your goals through a rpg style. Nice work dev team. Thanks for your time and effort.",4,0,2.14.0,2019-05-03 18:39:50,"Thank you for your review! If you have any suggestions on how we could improve and enhance setup process, please don't hesitate to share them with us.",2019-05-08 10:57:44,newest,com.levor.liferpgtasks +Daniel Saraiva,https://lh3.googleusercontent.com/a-/AOh14Ggr9T85aJ0lFovwn760XOVYgSMXM9zq7vTDVINL,eu daria 5 se estivesse totalmente traduzido para português,4,0,2.13.0,2019-05-01 15:36:38,"Thank you for the great feedback! +I've updated Portuguese translation. It will be available in nearest update (today-tomorrow).",2019-05-03 16:33:15,newest,com.levor.liferpgtasks +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"This app is great overall, I just wish there were categories for your inventory items and that the task list widget showed your profile icon also, the profile icon has very bad quality when you choose your own :/",4,2,2.13.0,2019-04-23 05:27:40,"Thank you for the review and suggestion. +Will do!",2019-04-01 10:21:03,newest,com.levor.liferpgtasks +S. Mather,https://lh3.googleusercontent.com/a-/AOh14GgP8sHC07ghkwvMQyUn4lQq9ExeAtKlurzSmgjlYg,Keeps me on track!,4,0,2.13.0,2019-04-23 00:55:39,Thanks for the feedback!,2019-04-23 12:21:12,newest,com.levor.liferpgtasks +Evan Sikorski,https://lh3.googleusercontent.com/a-/AOh14Gh8fHG8W4eq7U9xXyfn2q0giOo-4QgLVXOlzZaCVkU,Tells me tomorrows activities are overdue today,4,15,2.13.0,2019-04-17 05:09:20,"That's weird. +Could you please add more details about such tasks setup?",2018-12-10 09:53:53,newest,com.levor.liferpgtasks +Luciana Fruin,https://lh3.googleusercontent.com/-xlFRmnvhd4w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPedQaSb4akBtMT8XJXJVRkMoeW7g/photo.jpg,"I like it, and I would definitely pay £20 for it, but I cant justify paying a subscription. if only I could pay once.",4,2,2.13.0,2019-04-17 03:12:21,"Thanks for the review! +I've tried single purchase model and it's not convenient in this case. +Nevertheless, all major features are available in free version.",2019-04-17 08:03:26,newest,com.levor.liferpgtasks +Bren Hilton,https://lh3.googleusercontent.com/a-/AOh14Ghg2oDbNzVVkr5qJ4poYPaaTabeZM1TQnpbJMhRYQ,"All it needs is the option to set a pic from the gallery as an icon. If that happens in the next update, I'll give 5 stars!",4,0,2.12.0,2019-04-07 15:27:24,"Thank you for the feedback! +You can set hero icon from file system. But not item (task, skill) icon due to implementation and due to possibility to set colors to icons.",2019-04-15 12:32:27,newest,com.levor.liferpgtasks +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Notifications fixed. App keeps getting better. I'd like to suggest being able to use habit generation as an unlock condition for achievements. Edit: Nice :D Another thing I would suggest is add the date when an achievement was unlocked (example: unlocked 01/04/2019) so we can also order them by this date when looking the unlocked tab. Thanks for this app!,4,21,2.12.0,2019-04-04 11:53:34,"Thanks for the review! +Good suggestion. Actually I have it planned for future.",2019-03-28 21:05:07,newest,com.levor.liferpgtasks +Nick Veasey,https://lh3.googleusercontent.com/a-/AOh14Ghqq-hy8qD1eefsjK6JdYS2smsfHbMk1RyLqZXF0w,"Great app for setting up to do list and setting skills, very similar to LifeRPG, differing only in UI and the addition of achievements in my opinion. Stuck with the other one of the basis of not wanting to pay a subscription for an app. Would prefer one off payment to unlock features.",4,1,,2019-03-07 15:59:30,"Thanks for the feedback! +All major features are available without subscription. So it is not mandatory to buy it :)",2019-03-18 10:23:37,newest,com.levor.liferpgtasks +Aws Adnan,https://lh3.googleusercontent.com/-af3eECPjLq4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOh_IrLFtMyjHagFB0ACTkLzg0y-Q/photo.jpg,needs more ranks.,4,2,2.10.1,2019-03-05 19:25:36,"Thanks for the feedback! +You can add as much ranks as you need. Just open hero page, press edit button and then edit hero statuses.",2019-03-18 10:28:48,newest,com.levor.liferpgtasks +Oly K,https://lh3.googleusercontent.com/a-/AOh14GgXc3Y-0f6QzP9L4QH0Tnh6s7mPuCnrBeq8YXfMKg,"Productivity gamefied! As has been said before, the natural successor to LifeRPG. Looks like they just ripped the source code tbh, but it irons out many of its predecessors bugs. Pity they monetised it in every available orifice, fukugly full screen ads, in-app purchases for trivial customisations and an absurdly extortionate subscription, all conspire to overshadow the app itself, as does the uninspired graphic design and the use of unexciting headings that detract from its ""gaming"" USP.",4,4,2.10.1,2019-02-28 01:09:55,,,newest,com.levor.liferpgtasks +Vitor Cortez,https://lh3.googleusercontent.com/a-/AOh14GhncJqMht_uRCditJ1ZV0DPsCPCNimsTAD8UVNe3A,"A good app in general. I would love to be able to have ""loose"" tasks, for example: practice spanish twice a week. Which should be completed at least twice every week. Also, why not allow icons to be any emoji?",4,1,2.10.1,2019-02-19 11:49:36,"Thanks for the feedback! +I'll add 'loose' repeat mode to development plan. +In next update I'll add possibility to select color if icons, so they need to by with only 1 color to work properly and it's clashes with emoji usage.",2019-02-21 09:43:43,newest,com.levor.liferpgtasks +Just Mo,https://lh3.googleusercontent.com/a-/AOh14GgSFrx04E9dhIXmIboRblGygAFctmb0NUX376AqAQ,"It's pretty nice all things considered, but I have found a few problems with it. mostly the fact that the notifications do not work and by that I mean no matter how many notify alarms I set, none of them go off. I've downloaded this app on several occasions in the past and I've had the same problems each time. The second is that the widget will (quite often) display that I have no tasks when I in fact have about seven on any given day. I'm not taking a star off because of the widget though.",4,2,2.10.1,2019-02-14 21:03:02,"Thanks for review. +I'm working on notification fix and I hope it gets fixed until next update. +Widget wasn't updated for some by now and is a bit laggy. I'll try to fix it also.",2019-02-18 15:24:09,newest,com.levor.liferpgtasks +Edward M.,https://lh3.googleusercontent.com/-qNGOBBllQnA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJModFhMNJUsd6xSM7Zkg9dDwnqT4Q/photo.jpg,"It's a great app, keep up the good work! It has almost all features I've ever wished for in gamification. But a few things were missing/quite annoying for me and lead me to abandon this app for now. If it helps you I could write you a comprehensive list of enhancements and features that I think could make this app better. Here's not enough space for that, though. Please give a short answer of you'd like me to send you an email with the list of my thoughts. :)",4,1,,2019-02-14 03:39:48,"Thanks for the review. +Sure, I'd be glad to hear ideas and suggestions! +You can email me on liferpgtasks@gmail.com.",2019-02-18 12:58:44,newest,com.levor.liferpgtasks +Veronika Portesova,https://lh3.googleusercontent.com/a-/AOh14GhLwEFJDhoWUJXQEQ5zfdNQFT4vWRMouQi-GQhzeQ,"I liked the app very much, I signed up and so with the hope that my to do list would sync with all devices. But when I reinstalled the up after cleaning my phone, everything disappeared. 😢",4,1,2.10.1,2019-02-12 15:51:15,Unfortunately cloud sync is not yet ready (working on it right now). Please consider using sync via Dropbox or export data locally to your device.,2019-02-18 10:09:25,newest,com.levor.liferpgtasks +jiyu yan,https://lh3.googleusercontent.com/a-/AOh14GjE4I-87dHBHl-jmj3mw0Aborl2V87efN7JHoyozOI,"No bad habits to simply punish me, just could make good habits?",4,1,2.10.1,2019-02-12 13:37:14,Unfortunately no. But you can create negative task and execute it every time when you done something which strengthen your bad habit.,2019-02-18 10:07:54,newest,com.levor.liferpgtasks +Philip Banks,https://lh3.googleusercontent.com/-tdC5QbIGQ14/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPB1nv7byvqjUa4tEcTa5FT0e9QVg/photo.jpg,"Looks cool and I like the stats. I would like to have a monthly and yearly calendar display on which dates with non-repeating tasks scheduled are bold or otherwise highlighted, or preferably have the tasks listed in small font in the box for that day in monthly view. And when you click on the date have all tasks for that day display. Why do none of the life rpg apps I've tried not have calendars? It's bothersome to add something to a calendar and then open up another app and add it in again.",4,9,2.10.1,2019-02-04 00:51:07,"Thanks for the review. +I have calendar planned for future development, at least weekly and monthly views. It's quite big task and I need to drastically rewrite some apps part before starting this task, so it could take some time. But there will definitely be such feature.",2019-02-05 08:38:29,newest,com.levor.liferpgtasks +CyberFr33k,https://lh3.googleusercontent.com/a-/AOh14Gg3h2vgu62OIYVUF8LtwABaEGJ3tXSKc9NAX5E6ow,So far so good. I love creating my own adventure. Still learning some of the functions. Maybe a tips video could help. I can't wait to see what other fun things can be added. More community or friends list. Or leader board. Then get us to do in app purchases for new items or level streaks. I just like this a bunch. So thank you!,4,43,2.10.1,2019-02-01 15:27:39,"Thanks for cool review. +Big features planned for future are: full backup of data to cloud server (optional, of course), friends list and tasks assignment to friends and calendar with all future and finished tasks.",2019-02-05 08:19:55,newest,com.levor.liferpgtasks +Branden Lumley,https://lh3.googleusercontent.com/a-/AOh14GiaqZ-7K9SmZu8eE7rSr_KwZREdfpmeYrweGwaP,great app reasanable pro features please add multibe avatars(for the kids),4,1,2.9.1,2018-12-21 19:41:39,Thank you for the review and suggestion!,2019-01-02 10:24:53,newest,com.levor.liferpgtasks +Paulina Bugiel,https://lh3.googleusercontent.com/a-/AOh14Gjmtt_-FzqaDockcFKYN3AidSFSDMJ5691Ez7Qy_Q,"Seems like a very good idea but how can i edit what i've done the previous day? Eg. If its Tuesday, it seems to be impossible to edit achievements from Monday (which seems like a perfect thing do to on Tuesday morning ;) )",4,14,2.9.1,2018-12-18 06:32:18,"Thank you for the review! +Well, in most cases it can't be done. Only valid case is for tasks - you can undo task execution for Monday, edit task and execute it again. But new execution date will be Tuesday (today).",2018-12-20 11:43:21,newest,com.levor.liferpgtasks +Jessica Thang,https://lh3.googleusercontent.com/a-/AOh14GjTPWX8hRzKnvAkLgrW-pTle2Mbv5QipNQtNVIRig,"A very good rip-off of LifeRPG—taking all of the useful features of task management, reward motivation, and RPG-style stat levels, and making the UI simpler and more user-friendly. Seems to be monetizing the idea though, putting in ads and lots of in-app purchases and requiring a RECURRING payment subscription rather than one-time purchase to unlock features",4,2,2.9.0,2018-12-03 02:54:54,"Thank you for the review. +Subscription helps to keep app development process running, but you can use almost every feature of app without subscriptions. Exceptions are less icons, less color themes, less notifications per task and few more. But main features are free :)",2018-12-05 10:18:52,newest,com.levor.liferpgtasks +Muhammad Atarigsyah,https://lh3.googleusercontent.com/a-/AOh14GjCRKaxWI1LlWgd3xNjXa58ZtJQhNV_QbuGOt3Imw,"Good concept. But I don't use the app anymore. as someone who is now not really a gamer, the point game-like concept seems to doesn't work for me anymore and maybe it's also due to the fact that I only compete with my self. if I were to compete with a friend or whoever that is, maybe I can keep my self accountable. But that's it to it. If you are a gamer, this app might gonna help you.",4,0,,2018-10-26 07:26:44,"Thanks for your review. +Yes, app designed mostly for the people who are into ""gaming"". But I'll keep in mind your advice and will try to add some spirit of competition to the app.",2018-11-05 13:30:21,newest,com.levor.liferpgtasks +No Face,https://lh3.googleusercontent.com/a-/AOh14GjNWjfIERDttM7TvuB0kW4bycOITnT8i-ywV5go8g,This would have been a 5 star to app if it wasnt for one miner problem I didn't like. You can't choose PM or AM times and it's just a annoying and confusing.,4,0,,2018-10-24 03:03:54,"Thanks for the review. +Yes, I'll work on switching between 12H and 24H. Thanks!",2018-11-05 13:18:05,newest,com.levor.liferpgtasks +Chris Fenech,https://lh3.googleusercontent.com/a-/AOh14Ggz-SyzPwo9qXf_swmurjf9lLFm-IrZX-uw4UvzzQ,I like this app. I only used it for 5 mins and there are no adverts that ruin your experience. I hope that the developers will continue working on it so that the app will be improved. I would consider paying for the premium features too if the app is good enough.,4,4,2.8.0,2018-10-15 14:27:41,Thanks for the cool review!,2018-10-18 09:00:06,newest,com.levor.liferpgtasks +Isaac Gerlitz,https://lh3.googleusercontent.com/a-/AOh14Gi9B3xNsugEkZBHtXfBf_d4anfWWvAh5Gt9xktlZQ,"I've tried several RPG To-Do lists, but this one is the best out of them all. It contains all of the features you need to motivate yourself to get off your butt and do something in your life, especially during this period of quarantine. Read the user guide in settings after installing to understand how it works, and get to it! A big Thanks to developer for their quick responses.",5,3,2.23.0,2020-03-31 11:26:28,"Thanks for the great feedback. +I'm trying to do my best with both development and responses :)",2020-04-02 07:31:10,most_relevant,com.levor.liferpgtasks +Darinka Zobenica,https://lh3.googleusercontent.com/a-/AOh14GjyCQwFwk7iKeWe20THisLST4NZ7L8yE4Ac-2Aoug,"Great app if you keep it to a short list of achievable habits, fun to use, good statistics for tracking progress, you can input things retroactively if you forget at the time, has dark theme, customization options when it comes to tasks, skills, and characteristics. Lightweight, easy to use. Overall I don't think I have any complaints, it delivers what if says it does well, no more, no less. Tldr: love it.",5,1,2.23.0,2020-03-24 01:50:00,Thank you so much for your review!,2020-03-30 17:29:54,most_relevant,com.levor.liferpgtasks +Jarek Bartoszek,https://lh3.googleusercontent.com/a-/AOh14Ggyrv8v83yrKEJqUYOhsfwSM8I8E8kYI8Ou_AT-,"I am a vanilla habitician, but that game failed to serve it's purpose several times and I eventually quit. I linked it to several systemic errors. I was even thinking about creating my own habit rpg free of those but then I found Do It Now. Not only it answers all of my concerns it even adds more features, like drawbacks for completing certain tasks (anti-procrastinator) or putting player in position where he has to maintain his characteristics. Amazing, thank you devs. Please port it to web.",5,14,2.23.0,2020-03-14 12:20:16,"Thanks for such great and encouraging review! +There's only 1 dev behind the project and I do have plans on porting it to different platforms. I'll start with iOS and then possibly switch to web version. But please consider that it will take a lot of time.",2020-03-18 16:38:55,most_relevant,com.levor.liferpgtasks +Everest Neverlynn,https://lh3.googleusercontent.com/-GBuupCrsLCc/AAAAAAAAAAI/AAAAAAAACfM/AAKWJJOu8Xre5jypSQSxQw4_8v46cKOgZQ/photo.jpg,"I LOVE this app. I've always had a hard time with planners because I just couldn't see the point, but that allows me to plan and have fun. I feel like I'm constantly playing a video game, but the main character is me! It has definitely improved my life! Thanks a ton, developers!",5,0,2.23.0,2020-03-26 21:08:29,"That was exactly the idea when I decided to create the app. +Thanks for the great feedback!",2020-03-30 17:36:27,most_relevant,com.levor.liferpgtasks +Moni Mona,https://lh3.googleusercontent.com/-Cz_Ef0uTTA0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM-XBlGFFovqQvk4fldwyHk1G0JEg/photo.jpg,"This is by far the most useful and customisable Gamify your life app. It also focuses on skills and character building, which is my favorite part and mostly missing with comparable apps. Takes a bit to get into it, but it's definitely worth it :D",5,0,2.23.0,2020-03-23 09:42:44,"Thanks for the great feedback! +Yeah, it's a bit hard to setup it for the first time, but that's mostly because I've tried to make app as flexible as possible.",2020-03-30 17:28:36,most_relevant,com.levor.liferpgtasks +jack gamer,https://lh3.googleusercontent.com/-BSOfe6L3VEE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMAaJocoBzvntwJgDIBlfaIf--etQ/photo.jpg,"This app is amazing! You can customise your tasks and give yourself rewards in a shop. It really boosted my productivity and helped me get through the tasks that were a bit harder. Highly recommend this app, especially at this time!",5,0,2.23.0,2020-04-02 10:52:09,Thank you for such great review!,2020-04-03 19:32:49,most_relevant,com.levor.liferpgtasks +Torri Thrower,https://lh3.googleusercontent.com/a-/AOh14GgQvSg2r5J_vo1W-kQTTDCB5tkkzxqe0fXuYq0NDA,"Easily the best task manager app out there, while the rpg aspect is a HUGE plus. The user is able to fully customize pretty much every little bit of the app to make it better suit their habits, or soon-to-be habits!",5,0,2.23.0,2020-03-17 19:49:00,Thank you so much for your review!,2020-03-18 16:57:55,most_relevant,com.levor.liferpgtasks +Crystal cole,https://lh3.googleusercontent.com/-YceRsV4Ji3E/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM2iWpn49DLWtlo0G8GTzVGdkYnwA/photo.jpg,"Very awesome so far! I really love how customizable this is. It does so much it takes a while to learn how to utilize all the features, but I am super happy 👍. Hope it continues to be great with continued use.",5,0,2.23.0,2020-04-02 22:38:35,Thank you for such great review!,2020-04-03 19:36:40,most_relevant,com.levor.liferpgtasks +Immie,https://lh3.googleusercontent.com/-UPiJPfDWmYE/AAAAAAAAAAI/AAAAAAAAAq4/AAKWJJPM5yO_91-XBwXUGs3v1Fw_T8p4kg/photo.jpg,"Good concept. Would go for premium if price adjusted to be a bit more reasonable (to give context, other productivity apps created with a similar aim are around the $2-10 mark.)",5,0,2.23.0,2020-04-04 12:27:18,"Thanks for your feedback. +I do plan to review app price after some time.",2020-04-06 07:24:17,most_relevant,com.levor.liferpgtasks +Tsula Kurotsuchi,https://lh3.googleusercontent.com/a-/AOh14GjfqllKqqVgQRW3NWMMMHXoRkzTv1Y-nPqTo3BEow,"Fun, free, and heavily customizable. If you are a gamer, even in the casual sense, this is the app for you. + +*Edit* (2.1.2020) : One problem to note is that there doesn't seem to be an easy way to renew overdue tasks. By which I mean in other apps I can usually refresh them all with one click so that the tasks are due today. Would love an option for that, since otherwise I have to go into each task and set it to be due today. TT^TT",5,6,2.21.1,2020-02-02 05:16:35,"Thank you so much for your review! + +Yes, there's no ""Skip overdue"" button or analogue yet. But you can enable auto-skip for any needed task and if task gets overdue it will be skipped automatically.",2020-02-04 12:49:41,most_relevant,com.levor.liferpgtasks +Anima Vagor,https://lh3.googleusercontent.com/-LYVVSJGEQJw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMH_vwzsG2p6idYkcjSqQ14-2FHHQ/photo.jpg,"Very pleasant to work with, although it would be nice to have sub-skills that are part of a more general skill, for example a specific language that is part of languages in general, and the option to rank up high level skils, for example begginer(insert topic here) at level 100 evolves to adept(insert topic here) and goes down to level 1.",5,2,2.21.1,2020-01-25 10:08:39,"Thanks for the review. +Sub skills will make app even more difficult to use. You can try to create 1 general language skill ""Foreign languages"" and skills per language - ""Spanish"", ""Chinese"" etc. And when setting up task add both general skill and primary on to task. +Great idea with skill ranks by the way :)",2020-01-29 17:34:30,most_relevant,com.levor.liferpgtasks +Michael Keilhaus,https://lh3.googleusercontent.com/-_cqwyFiEBOw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJODFwwuokJl1QKDSueVDAt-x-9kRg/photo.jpg,"first of all, I am thrilled with the app. If I know how it works. Is there a list of ready-made tasks? On the start screen there are some suggested ones. When I press the plus button, I actually expect a list with all possible tasks. But instead of that I only have the possibility to create a new task. At first I thought that I had to subscribe. I have subscribed now but unfortunately it is still not possible. Now I have deleted all tasks from the start screen. If I click on the plus, there is still no list. It comes again: new task",5,1,2.21.1,2020-02-12 17:10:01,"Thanks for the review. +Unfortunately there's no list of suggested tasks, you can only create your own tasks with + button. +When you install app it is prepopulated with example tasks which can be used to get known with the app.",2020-02-14 08:44:51,most_relevant,com.levor.liferpgtasks +Blake Centini,https://lh3.googleusercontent.com/a-/AOh14GgpG-nFD6kxxUj787CNLgjXQ-AwZbXdx6t7gxU_fw,"This is an awesome app! I initially thought the idea of ""gamifying"" my life was a little silly, but fun. After trying for two weeks it is far more motivating than I ever thought! 😁 Thank you, this is finally getting me into habits I have been trying to develop. I one thing I have difficulty with is the subtasks; once I complete the subtasks they don't carry over to the next day's parent task. However, the rest of the features of this app are so great you still get 5-stars!",5,6,2.22.0,2020-03-06 05:30:42,"Thanks for the great feedback! +It encourages me to work on app even harder. +On subtasks - I can assume that you are using subtasks with 1 repeat. Please try to use infinite subtasks if you have infinite parent task. But please keep in mind that all of them should have a date and parent date should be before all childs date in order to complete it.",2020-03-06 10:13:55,most_relevant,com.levor.liferpgtasks +Joel Navarro,https://lh3.googleusercontent.com/-LgGYUtO1rq4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMXeO8T8PFC306XSBe-kvt5ri2PmQ/photo.jpg,"This App is Excellent! My Therapist suggested I started planning my days in advance to get a better handle on my sporadic attention management skills. (I have ADHD 🤓) I have been using it since Friday and am very pleased. I am a huge fan of RPGs and this has helped me keep focused and on task. It's like I'm leveling up to go Adulting! ⚔ If I am still using it by the end of the month effectively, I'm buying the developers some coffee and getting the subscription! Great job dudes!",5,73,2.21.1,2020-01-20 08:18:01,"Thanks for great review and encouraging words. +As a huge RPG fan I do hope that app will meet or even exceed your expectations!",2020-01-23 16:23:45,most_relevant,com.levor.liferpgtasks +Jeferson Lima Da Silva Junior,https://lh3.googleusercontent.com/a-/AOh14Gj_L2UNj21ZTD6axQMCaTciPK6HGfbKA9-zBpH89Q,"I loved the idea and downloaded to try it. This app is helping me a lot, thank you. BTW, I suggest you to do an IOS version, I have friends who want to use it too. Edit : I'm sure it'll be a huge success there too!",5,0,2.23.0,2020-03-14 18:23:23,"Thanks for the feedback. +I've already started working on iOS version, but I have a lot of work ahead so it will take time :)",2020-03-08 21:30:25,most_relevant,com.levor.liferpgtasks +Alex Pieri,https://lh3.googleusercontent.com/-C2RHyax9N_E/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNGy2mzoJHsqLgzfkgk6rITVBL8qQ/photo.jpg,This app is actually really handy. It really keeps me motivated. I would highly reccomend this app to anyone that has trouble staying organized.,5,0,2.23.0,2020-03-31 02:15:32,Thank you so much for your review!,2020-04-02 07:29:57,most_relevant,com.levor.liferpgtasks +Gabe Angel,https://lh3.googleusercontent.com/a-/AOh14Gjf6kIhho85D_OUNhu2P_lhq516l_mA5tI68Uj71A,I've tried several of these kind of things and this seems the most versatile. It takes a while to get the hang of it and I'm still discovering aspects of the app that I didn't know where there. Most times I think something about the app is not good I am realising that I just didn't uncover the setting that fixes the issue yet!,5,1,2.21.1,2020-01-22 21:40:41,"Thanks for the great review. +I'm trying to make app as flexible as it even possible. +If you find some difficulties or questions please take a look on built-in user guide in main menu. +And feel free to contact me via email: liferpgtasks@gmail.com.",2020-01-23 16:35:40,most_relevant,com.levor.liferpgtasks +Sarah Hudson,https://lh3.googleusercontent.com/a-/AOh14GhIWLGASiGaypeqD5Vy-SFdn81kZtT9WOBxIu9SOw,"One week of use & I purchased a subscription. I've used other similar apps, I enjoy this the most. There a few improvements needed, so I need to add suggestions to the Reddit page. I spent time & wrote out what I value in life, what my aspirations are, & then I narrowed down a few simple goals to reach those aspirations. Then I added my goals to this app. So far it's easy to keep track of my goals, habits, & how I'm doing. It's incredibly easy & even fun to use. Thank you for this app.",5,4,2.22.0,2020-02-26 04:16:03,"Thanks for such great and detailed review. +I'll be waiting for your suggestions in Reddit :)",2020-02-26 07:56:39,most_relevant,com.levor.liferpgtasks +BoilingHeart,https://lh3.googleusercontent.com/a-/AOh14Ghjmc_KC-PB6gWZq3uYBCtsPdZpDuuq-6guiFs9xg,"SO USEFUL!! I struggle with ADHD on a daily basis, I can never remember to do simple tasks and things like notebooks, whiteboards, stickynotes, alarms, they just Don't Work. But this app helps change the game dude!! It's a clever way to incentivize completing tasks, and it's helping me build better habits with the reminders and penalties for not completing it if you miss it. SUPER USEFUL!! I feel more productive and motivated to get my tasks done, I'm grateful this app exists",5,53,2.22.0,2020-02-23 09:05:07,"Thanks for the great review. +I'm really glad that app helps you :)",2020-02-24 11:24:05,most_relevant,com.levor.liferpgtasks +Mihai Vaduva,https://lh3.googleusercontent.com/a-/AOh14GgCKJz5htQ7wjXJ3Zm4opE0LdGza1Oa9kTA4qUF,"Fun way to Track your chores and get small challenges to get better. Nice idea, good app thumbs up!",5,0,2.23.0,2020-03-18 04:32:18,Thanks for the review!,2020-03-18 16:58:07,most_relevant,com.levor.liferpgtasks +Joel Tavizon,https://lh3.googleusercontent.com/a-/AOh14Gh41aqu9_fbkVkwS4oqwCIgIjyd-a_9yofqtBXyHw,"Very cool app. Using it for real life stuff as if it's a video game is so fun. Could have some bug tweaks and possibly an overhaul for the interface, but it's still close to perfect and runs great.",5,0,2.22.0,2020-02-29 12:12:46,"Thanks for the great review! +I'm trying to fix all bugs that I could found. But I'm not planning to revamp interface in near future, sorry.",2020-03-02 08:03:40,most_relevant,com.levor.liferpgtasks +Virga / Lay,https://lh3.googleusercontent.com/a-/AOh14GhYWQffSjq3j4CYYJhDUU5Hwvdz6ch-dy9sw0gM,"I sent email to the developer (there's only one!) and they solved everything within minutes. Great app, helps with tasks and even small silly works. It is improving quickly and is getting better every time",5,0,2.22.0,2020-02-26 11:55:07,Thank you for the great review and really encouraging words :),2020-02-27 08:00:45,most_relevant,com.levor.liferpgtasks +Chris Winstead,https://lh3.googleusercontent.com/a-/AOh14GjM8S4iuWbpjwizD8PLmBIn21GTAV91ThJdfBJc,"On the one hand... It takes a while to customize and set up, but that's because there are a lot of options for customization available, which I love. This is helpful motivating me to accomplish my tasks.",5,0,2.21.1,2020-01-29 14:54:47,"Thank you so much for your review! +I've tried to make app as flexible as possible. Unfortunately it made setup process a bit difficult, especially for the first time. +I'll try to figure something out though.",2020-01-29 17:44:49,most_relevant,com.levor.liferpgtasks +Jaypee Laus,https://lh3.googleusercontent.com/a-/AOh14GgSdtjTweNZIt6G-bWwCqtzMs06Qx_7TXwlT_mzqA,"This app is a great help for me! This helps me enjoy productivity in whole new level. I have been struggling for years to get my life back together, but with this app I feel like I can finally get some work done in a fun and enjoyable way. Thank you very much!",5,0,2.21.1,2020-02-14 00:47:21,Thank you so much for your review!,2020-02-14 08:50:55,most_relevant,com.levor.liferpgtasks +Lessandr Flore,https://lh3.googleusercontent.com/-_GIKkJsqBhw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMDbBzrXGdnn7SA3msL7QXuyUpy0Q/photo.jpg,marvellous! makes a game out of everyday life. helps you organise your tasks while feeding stats about the progress YOU consider important! and the gold-xp reward & punishment system gives some type of extra motive. brilliant i say,5,2,2.21.1,2020-02-10 01:39:00,Thanks for such great review!,2019-03-07 07:49:42,most_relevant,com.levor.liferpgtasks +Washingtons Angel of light,https://lh3.googleusercontent.com/a-/AOh14GimipoTDtGm6-YPe2BsrmyNJzSYi6wIFsTlVrTS,I just wish it wasnt a subsciption and i could just buy it once otherwise its professional app and i love how it lets you customize rewards. Always wondered what my life as an rpg game would be like and Do It Now lets that happen.,5,1,2.21.1,2020-02-01 06:56:28,"Thanks for the review. +I'm planning to add one-time purchase in future (probably this month) and if it work out well I'll leave it along with subscription options.",2020-02-04 12:47:47,most_relevant,com.levor.liferpgtasks +Cam Bowen,https://lh3.googleusercontent.com/a-/AOh14GhzeGBlxU7S6ybX8ZVGuRhDLnpchTEoKmzxmYWkq88,This one person has give me the most used app I have. Super customizable to fit most needs. It has helped me stay focused on my goal more than any other. I recommend this app to everyone I know.,5,0,2.21.1,2020-01-23 10:15:22,"Thanks for great review and encouraging words. +And special thanks for recommendations, I really appreciate that!",2020-01-23 16:40:01,most_relevant,com.levor.liferpgtasks +Jade Hoggons,https://lh3.googleusercontent.com/a-/AOh14GjlxML9in_sr-G5-kK9r2WcFn3_Yoy-Ll_HorwEnQ,So far this app does everything I need it to do! It helps me to keep track of all of the tasks I want to accomplish and helps me make positive steps towards changing bad habits.,5,0,2.21.1,2020-01-27 21:09:41,"Thanks for your review! Please recommend our app to your friends, and don’t hesitate to shoot us a note at liferpgtasks@gmail.com if you have any questions.",2020-01-29 17:41:32,most_relevant,com.levor.liferpgtasks +Ric Jr,https://lh3.googleusercontent.com/a-/AOh14GivTSYrby1HCGRdm-A3c4d9G0JueEwI0YEsieGXYQ,A more in depth kind of to-do list. Plus you get to monitor where the kind of activities you do would lead you in the long run. Good job.,5,0,2.21.1,2020-02-07 17:28:12,Thank you very much for your 5-star review!,2020-02-12 17:57:13,most_relevant,com.levor.liferpgtasks +Kuya Paul,https://lh3.googleusercontent.com/a-/AOh14GhbTpziQqnATNpOaoH-lI0pI8VHODibYZx7u2rU,Imporant functions can be used only if you subscribe. It would be best if they rather sell this app than make people pay for subscption. It's worth their money anyway.,5,1,2.21.1,2020-02-04 04:43:53,"Thanks for the review. +Unfortunately one time payment won't give app the possibility to evolve and be supported. So we decided to stick with subscription.",2019-10-02 10:34:42,most_relevant,com.levor.liferpgtasks +Dmitrij Beldeninov,https://lh3.googleusercontent.com/a-/AOh14Giy0KjfyPv6bm4fObh8CP6QnxNvoiFMihuc6cQ,"Very versatile and customizable! Still new to it, but it looks very promising, if not polished yet.",5,0,2.22.0,2020-02-19 19:29:59,"Dmitrij, thanks for the great feedback!",2020-02-24 11:03:11,most_relevant,com.levor.liferpgtasks +Adnan Mustafa,https://lh3.googleusercontent.com/a-/AOh14GieuEZkCL3vgKCjBBDHelG7tQyNuWwdRcQbsFtA,It's very good. It helps me more about my difficulties in habits tracking. I found it best of all,5,0,2.21.1,2020-02-05 06:14:27,"Hi, +Thanks for your feedback. We are continuously working on adding more features to our app to make your experience better.",2020-02-12 17:51:48,most_relevant,com.levor.liferpgtasks +Kyle McKee,https://lh3.googleusercontent.com/a-/AOh14GijYOP4wTjInQO4hzxXevT0qOz__F1fu-3eTOpc,"So far, this app has had a profound impact on me getting things done. It does rely a bit on the honor system, but if you're down for it, it can be very good.",5,0,2.21.1,2020-02-06 10:18:50,Thanks for the great review!,2020-02-12 17:55:10,most_relevant,com.levor.liferpgtasks +Kori Simms,https://lh3.googleusercontent.com/a-/AOh14Gh194u7NJA_ss5bU-xDnk6stdxYc330QcHtpW9h,So addicting especially for gamers who love to level up!!!,5,0,2.23.0,2020-03-17 01:31:25,"Thanks for the review. +Yeah, that was main app idea - make it addicting and make users improve their lives :)",2020-03-18 16:47:39,most_relevant,com.levor.liferpgtasks +Minki Kim,https://lh3.googleusercontent.com/-qfYEePDT7cw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPsPv4JkwAGCal2C3F3ZIBztooRzg/photo.jpg,Brilliant and incredible app. It turns my daily life into enjoyable one with simple RPG concept. Love it!!!,5,0,2.22.0,2020-03-05 10:29:51,Thank you very much for your 5-star review!,2020-03-05 16:46:53,most_relevant,com.levor.liferpgtasks +The Golden Magician,https://lh3.googleusercontent.com/a-/AOh14GgqlrO0mD2dXQwMeel2zUNg7q5WJxPePlLrVhHu,"Very nice app, it helped me feel more motivated. I can now see life more as a game and as something that's supposed to be fun.",5,1,2.21.1,2020-01-29 21:47:35,Thank you so much for your review!,2020-02-04 12:31:45,most_relevant,com.levor.liferpgtasks +GANK SPANK,https://lh3.googleusercontent.com/a-/AOh14GiQSNJkMdGm6ebfzJtedMZAFnqydQNasJ4H5D65tg,Excellent and detailed beyond average love it!!!,5,0,2.23.0,2020-03-21 00:06:53,Thank you very much for your 5-star review!,2020-03-22 19:04:10,most_relevant,com.levor.liferpgtasks +Thomas Szymanski,https://lh3.googleusercontent.com/a-/AOh14Gh6mTzDqsrfeYsrvhUMlbUmhVgPEtfYLMjKRe195Q,"I love gamification at work. Creating a simple, customizable system for home life is great!",5,0,2.23.0,2020-04-03 20:11:02,Thank you so much for your review!,2020-04-06 07:21:22,most_relevant,com.levor.liferpgtasks +Kelly Armstrong,https://lh3.googleusercontent.com/-OWumO6luosY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPEPpzRQIJeSYSAPqdQlWXaOa-atg/photo.jpg,Just getting started with this app but so far I love it! Great way to track good habits and bad!,5,0,2.22.0,2020-02-27 01:51:04,"Thanks for the great feedback. +I hope app will help you to build good strong habits and get rid of bad ones :)",2020-02-27 08:05:07,most_relevant,com.levor.liferpgtasks +Daria Bakiewicz,https://lh3.googleusercontent.com/-epplsikFT5k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNhmKywEHuIhM5E8SnZaRlkn6_2Lg/photo.jpg,"I like this app, I downloaded a few to have a look and pick one, and I went with this one, I like the lay out and I just find it easy to follow l.",5,0,2.22.0,2020-02-23 10:50:39,Thanks for the great feedback!,2020-02-24 11:25:05,most_relevant,com.levor.liferpgtasks +Thomas,https://lh3.googleusercontent.com/-eVfWQ6QyCrM/AAAAAAAAAAI/AAAAAAAAAyQ/AAKWJJOmI4vj8XkY9pyLwf_NUs2-maWspA/photo.jpg,Great app to track your daily tasks. It is very customizable!,5,0,2.22.0,2020-03-03 08:06:17,Thank you so much for your review!,2020-03-03 08:18:50,most_relevant,com.levor.liferpgtasks +Sarah Robbins,https://lh3.googleusercontent.com/a-/AOh14Ghj9J5Tqzckg3HHg81BHEs0l6ZpZp3GEPHICwE-ng,"This app has been more entertaining than I even expected. I have been looking for a productivity app that I will stick with, and this is the one!",5,1,2.21.1,2020-01-16 12:32:51,"Thanks for great review. +I do hope that app will meet your expectations :)",2020-01-23 16:18:50,most_relevant,com.levor.liferpgtasks +Mountaineer of tha Streetz 210,https://lh3.googleusercontent.com/a-/AOh14GjAlBHOAjgPklrzcka70XMjAilrjLlGx2eoCDYNCA,"I Love the concept, I've always saw the parallel between RealLife and an RRG in terms of skill growth and education.",5,0,2.22.0,2020-02-22 12:35:20,Thank you so much for your review!,2020-02-24 11:20:14,most_relevant,com.levor.liferpgtasks +Norman Rebeiro II,https://lh3.googleusercontent.com/a-/AOh14GgdyhpeMPaFd6GZmYj2gaIER5HWnN-3E3imCkd1,"Absolutely Love this app, paid and unpaid versions worth the time!",5,0,2.22.0,2020-03-07 18:46:02,Thank you so much for your review!,2020-03-08 21:31:48,most_relevant,com.levor.liferpgtasks +Miguel Gómez Donoso,https://lh3.googleusercontent.com/a-/AOh14Gg-25zymD3NJHdZ2uYKFB2GU0WbPGLYthmIp0jFIw,Very flexible for now.. . Waiting for the long term results,5,0,2.23.0,2020-03-16 06:54:52,Thank you for providing feedback!,2020-03-18 16:43:28,most_relevant,com.levor.liferpgtasks +MC,https://lh3.googleusercontent.com/a-/AOh14GgFbFfw496HehOmcJEkyhY_bFwipvdE1zvekp8Djw,"I don't have this app for long, but it is really easy to use so i like it, it also allows you to skip a day if you can't do it that day (just change the day)",5,0,2.22.0,2020-02-19 15:11:00,Thank you so much for your review!,2020-02-24 11:02:47,most_relevant,com.levor.liferpgtasks +Zena,https://lh3.googleusercontent.com/a-/AOh14Gg4xEy_6AMensPPrieJAtwhkFJXVO0fYJf0K0cKhv0,An amazing app with a creative concept. One of the best task managing apps out there,5,0,2.21.1,2020-02-03 17:45:13,"Thanks for your review! Please recommend our app to your friends, and don’t hesitate to shoot us a note at liferpgtasks@gmail.com if you have any questions.",2020-02-04 12:52:37,most_relevant,com.levor.liferpgtasks +Shailesh Kumar,https://lh3.googleusercontent.com/a-/AOh14GjHmiINUDOyqcrzNeP01bFzKldk6r3gObx6c01r8Q,"Really Nice App Sir could you please provide goal tracking functionality too, that'd be very useful too : )",5,0,2.21.1,2020-02-04 16:05:44,"Dear User, Thank you for your suggestions. We will try and incorporate them upcoming versions.",2020-02-12 17:48:11,most_relevant,com.levor.liferpgtasks +Sandra I Ramirez,https://lh3.googleusercontent.com/a-/AOh14Ggl3zbQtRbjXZx0hZXF4RHicBfUJ7vjhHqmG9qCzg,"You can list what you need to do, and set up weekly, monthly and daily tasks.",5,0,2.22.0,2020-03-09 08:40:15,Thank you so much for your review!,2020-03-10 08:25:06,most_relevant,com.levor.liferpgtasks +Aaron Oriley,https://lh3.googleusercontent.com/a-/AOh14GgJqygxgYhm9kRkRhwZ2Qf_qJ-HeqgaMtqeORer,Very nice app and I think it will help you with your routine.,5,0,2.22.0,2020-02-29 05:14:54,Thank you very much for your 5-star review!,2020-03-02 08:02:38,most_relevant,com.levor.liferpgtasks +sky christensen,https://lh3.googleusercontent.com/a-/AOh14Ggb97dn6ni-taXBOaS3ZCutJwRJniWngMV4gQQPtXk,"I can see this app sereously help, me and family members build good habits. I'm excited to give this a shot.",5,0,2.21.1,2020-01-18 18:47:14,Thanks for the great review and encouraging words!,2020-01-23 16:20:47,most_relevant,com.levor.liferpgtasks +kingphyniox 5-80,https://lh3.googleusercontent.com/a-/AOh14GieIs208Kk5c2XM9tUlpBfP1a5BThkb9HA8nmxJIw,Great good tracking with work and lifestyle,5,0,2.23.0,2020-03-17 15:31:35,Thanks for the review!,2020-03-18 16:57:28,most_relevant,com.levor.liferpgtasks +Partha Pratim Das,https://lh3.googleusercontent.com/a-/AOh14Gi8JjEpT3SGo8slbJ8x5GA8uDGZkdqR5rVNSaplkw,Great app! Kept me organised and disciplined. Thank you 👍,5,0,2.21.1,2020-01-20 19:32:08,Thanks for the great review!,2020-01-23 16:23:56,most_relevant,com.levor.liferpgtasks +Jorge Simarro,https://lh3.googleusercontent.com/a-/AOh14Gi4JXfSKx6zZlWuP5kzRRhuUk8gKkYRYIsq330l,Very flexible and the customization is huge.,5,0,2.22.0,2020-03-09 05:31:15,Thank you very much for your 5-star review!,2020-03-10 08:24:58,most_relevant,com.levor.liferpgtasks +Jaldert Francois,https://lh3.googleusercontent.com/a-/AOh14GiIjab1dQ04eInP_9BfY5T5luV2YOgX6DJBU7HCW5o,"Best app ever, addictive to complete task and see progression!!!",5,0,2.21.1,2020-01-24 22:51:24,Thanks for the great review!,2020-01-29 17:30:59,most_relevant,com.levor.liferpgtasks +Marcela Pedro,https://lh3.googleusercontent.com/-lpvDRwshil4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJObVV-sYnyJW63zXcSGohxPjdHeFw/photo.jpg,Was inspired by the Novel Solo Leveling and it works!,5,0,2.22.0,2020-02-15 09:21:17,Thanks for your great review!,2020-02-17 08:25:31,most_relevant,com.levor.liferpgtasks +punished chris-chad,https://lh3.googleusercontent.com/a-/AOh14Ggd0I8t8utkYV3HvLg8EDZ3y7KMh81fAKpyUDPS,Adds not to frequent. Good time tracker,5,0,2.23.0,2020-04-03 01:15:25,Thanks for the great feedback.,2020-04-06 07:19:00,most_relevant,com.levor.liferpgtasks +Shalisha Cunningham,https://lh3.googleusercontent.com/a-/AOh14GiXNZxXLGUQxPS49kDWvm89dnOicuFvWl5MTOuWdA,Personally I absolutely love this app and it is exactly mathematically what I have been looking for. The only true inconvenience is that once the day is over you cannot go back and add tasks to a day. Developers could you pretty pretty pretty please with sugar on top make it possible for us to go back and add tasks that we have completed on previous days!?! Maybe in the calendar area or something! Thank you kindly! 🙏❣️ Revision: 5 star! Thank you for responding and teaching me hot to edit task!,5,32,2.21.0,2020-01-11 12:00:53,"Thanks for the review. Actually you can do it :) You can change execution date of already performed tasks (with long click on needed item in tasks history). Also when clicked on Perform button you can change execution date of current task with clock button at the top. + +UPD: You're welcome :)",2020-01-14 13:32:30,most_relevant,com.levor.liferpgtasks +Sαchin βaliyan Officiαl,https://lh3.googleusercontent.com/a-/AOh14Gh88O1lg863CLiOLVWAEKZUZrhp35v3uUiRBg0VXhY,Very good no ads are seen using from 3 days,5,0,2.21.1,2020-01-16 16:25:28,Thanks for the great review!,2020-01-23 16:19:59,most_relevant,com.levor.liferpgtasks +Farah Batool,https://lh3.googleusercontent.com/-DcaElRF9uOY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN6fp3g-aILF3wpTvplInfwFz8fVg/photo.jpg,"Awesome experience, motivational... Helped in studies and health fitness, also in stress management.",5,0,2.22.0,2020-03-13 04:31:46,Thank you for your encouraging words.,2020-03-18 16:30:34,most_relevant,com.levor.liferpgtasks +Rachel Allen,https://lh3.googleusercontent.com/a-/AOh14GhC39sPnUjPsQ8VKFUQwjfx5vZP4fKZvzovUGKtQQ,"This is actually fun, I get excited everytime I complete a task.",5,0,2.21.1,2020-01-22 05:34:23,Thanks for the great review!,2020-01-23 16:30:15,most_relevant,com.levor.liferpgtasks +jj kk,https://lh3.googleusercontent.com/a-/AOh14GhFqjMm6u44pVXlR8nxnhp6Uc4Y2w8d76sn2u1DLw,Very nice app. It helps me be more productive ☺,5,0,2.23.0,2020-03-31 13:31:56,Thank you very much for your 5-star review!,2020-04-02 07:31:18,most_relevant,com.levor.liferpgtasks +Amber J. Wolfe,https://lh3.googleusercontent.com/-BMwVf0XwClU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPRmAU81NgsP6kK7Gx8-9fYM5xnHA/photo.jpg,"I love this app. I use it for motivation with my writing. I custimized the skills, characteristics, achievements, and my hero levels to reflect my writerly ways and it's been so fun to use! Watching my skills and levels increase is a blast. I also appreciate the"" rewards""options, but wish I could create""in-app"" rewards for myself. Like potions or consumables that could increase a skill or boost XP earning for one day, etc. Even without that, though, this app is amazing! I highly recommend it.",5,28,2.19.0,2019-11-07 21:08:10,"Thanks for the great review! +That's great idea to use app to focus on some major area like writing, I hope app will help you to get even more motivation in future. +By the way, staring from latest update you can add effects to inventory items - hero XP, skill XP and characteristic levels boosts. Looks like exactly as you requested :)",2019-11-09 20:15:01,most_relevant,com.levor.liferpgtasks +Reb MacInnis,https://lh3.googleusercontent.com/a-/AOh14GjILaNDPKZws8s81lv6LZizEKVDwjMEtvrrN8AhQA,"This honestly makes tracking my daily life and staying responsible so much more fun. Having rewards is a great way to remind people that it's important to reward yourself for your hard work! I'm a really competitive person so this is really handy for actually getting myself to do things. Even if the reward is small, it's still gratifying to level up for not skipping uni or using the treadmill! Super rad and would definitely recommend to anyone looking for a more fun life tracking app :B",5,61,2.20.0,2019-12-01 15:50:36,Thank you for such great feedback!,2019-12-02 15:00:33,most_relevant,com.levor.liferpgtasks +Harriette OZell,https://lh3.googleusercontent.com/a-/AOh14Gj2zNueY0XLsu9HRPE61nRoKpnSM34Vd7kB4XID-Q,Easy to use and customize,5,0,2.22.0,2020-03-03 17:35:25,Thank you so much for your review!,2020-03-04 15:24:12,most_relevant,com.levor.liferpgtasks +Clara Bertaut,https://lh3.googleusercontent.com/a-/AOh14GikAu4YuozmynpZtQP7mETVoqueGXxH30kGqhvW,Absolutely awesome. I've only had it for a few days but it's behaved like a dream. Much more detailed/customizable than any other 'gamify' app I have used.,5,0,2.19.1,2019-11-20 14:31:14,Thank you so much for your review!,2019-11-29 12:47:17,most_relevant,com.levor.liferpgtasks +Pol Figurski,https://lh3.googleusercontent.com/a-/AOh14GgcK0oiQF05nXRprpILuM3CWsfTw_ewFWqi9RIGNw,"So far I love it. You can turn your life into a game and reward yourself for everyday tasks. No life coach can do a better job. You earn gold and XP for daily chores. Awesome, and so far no issues.",5,1,2.19.0,2019-11-06 14:37:25,Thanks for the review!,2019-11-09 20:05:24,most_relevant,com.levor.liferpgtasks +Ghosty Boy,https://lh3.googleusercontent.com/a-/AOh14GjMRNbILmU6ivj8QRBAfHQ5vgtT0cmwx_v40REv,This is app is absolutely awesome! I had to spend a little time customizing all the various skills and characteristics but once it's set up it's absolutely fantastic!,5,1,2.19.1,2019-11-18 22:14:16,Thanks for the review!,2019-11-29 12:45:33,most_relevant,com.levor.liferpgtasks +Ken D,https://lh3.googleusercontent.com/a-/AOh14GjOaGbeYe96RQxfxN2eOpOHHriVWKQZebbY0mVSTg,"Amazing, Love this app. Not only good but also fun, maybe at the first is difficult to set a lot of thing but after that is amazing.",5,0,2.19.1,2019-11-19 04:01:37,Thanks for the review!,2019-11-29 12:45:42,most_relevant,com.levor.liferpgtasks +KRYX ONE,https://lh3.googleusercontent.com/a-/AOh14Gj124dHQ8vLaDCC7kso_lXOMWiEXDIavdt9z7Ez,"Started 2 days ago, learned to add new tasks, it's a good little way to push your will.",5,0,2.21.1,2020-01-27 07:26:21,Thank you very much for your 5-star review!,2020-01-29 17:40:02,most_relevant,com.levor.liferpgtasks +Asedf 1,https://lh3.googleusercontent.com/-vsyLl69zHnQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN9EookkNXaR_cBM1VXL-46RQHJlw/photo.jpg,"Although limited, still useful",5,0,2.22.0,2020-03-11 08:42:19,Thank you for your support!,2020-03-18 14:34:14,most_relevant,com.levor.liferpgtasks +Mahmoud mutwakil,https://lh3.googleusercontent.com/-XBLWYkjC9jw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMK8qbSkBa9mA-gvYDBF0-Zy51fzg/photo.jpg,"The xp system and character sheet are a good way to motivate you to finish tasks, although yes, you can cheat and give infinite xp but you're only cheating yourself.",5,0,2.19.1,2019-12-03 13:05:41,Thank you so much for your review!,2019-12-04 06:20:08,most_relevant,com.levor.liferpgtasks +Luna Rin,https://lh3.googleusercontent.com/a-/AOh14Gi2aboNQv6RSr6HqCJr6ebq9mTA0zsGjiASscie,This app turned everything into a game. It really helped me to focus on tasks and be more organized & productive.,5,0,2.20.0,2019-12-27 17:53:25,Thanks for the great review!,2020-01-13 10:20:15,most_relevant,com.levor.liferpgtasks +Lauren Freeman,https://lh3.googleusercontent.com/a-/AOh14GjlYcy4bSeo08emWTbH_CwlQDyW9weQIglkxlOuCg,I love this app! I use it to gamify truly boring things; like uploading my business receipts and putting dishes in the actual dishwasher vs. the entire house.,5,0,2.19.1,2019-11-26 20:13:04,"Thanks for the feedback! +That's exactly why app was created in first place :)",2019-11-29 15:34:07,most_relevant,com.levor.liferpgtasks +Grace Riccardi,https://lh3.googleusercontent.com/a-/AOh14GjcvAy6s76I_8_hXcH591Jc6tHmgXzU9-Ul-WR3xQ,So much fun to use and makes me feel better about doing everything I need to,5,0,2.22.0,2020-02-16 01:09:33,"Thanks for your review! Please recommend our app to your friends, and don’t hesitate to shoot us a note at liferpgtasks@gmail.com if you have any questions.",2020-02-17 08:26:48,most_relevant,com.levor.liferpgtasks +Felix Amartei Laryea,https://lh3.googleusercontent.com/-QgkTWg2nVhc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOsqKU7tIXqeM9hxDPm2Ii-TCFyFw/photo.jpg,"Great. Smart looking App... It has help me improve my hardwork. Sometimes in a day, you wish someone could remind you of what to do but guess, you might have no one... It has been helpful to me. Thanks a lot guy...",5,0,2.19.1,2019-11-17 06:01:35,Thanks for the review!,2019-11-29 12:39:20,most_relevant,com.levor.liferpgtasks +Vitor Casoto de Melo,https://lh3.googleusercontent.com/-yLyT207Wduw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO8VlNgUlkX3yCLFY9n1gvUxYLgnQ/photo.jpg,I love it. But needs more ready tasks and a rank to make more competitive and share tasks.,5,9,2.21.0,2020-01-05 16:43:45,"Thanks for the review. +Great suggestions, I'll possibly add some sort of predefined habits list which could be quickly added to users lists. +Ranking and competitions are more tough, but I suppose I'll also work on it in future.",2020-01-13 11:11:28,most_relevant,com.levor.liferpgtasks +Habibur Rahman,https://lh3.googleusercontent.com/-cRA4pdjlKdA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPS2_NXaD7PkqyI4TgLH3ysVBjr8w/photo.jpg,"Best app... Truely, No apps in playsore like this.. The app will progress in future... Add more things on this app and update as soon as possible.. Tnx...",5,0,2.19.1,2019-11-27 04:25:30,Thanks for the feedback!,2019-11-29 15:34:25,most_relevant,com.levor.liferpgtasks +Argenis Prensa,https://lh3.googleusercontent.com/-DzLco8sECew/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMzgX6mctf7qz4zIqDuBUEFPWZQAg/photo.jpg,"Amazing app, it's helping me so much developing my discipline and have my to do list always on point, thanks ever so much guys!",5,0,2.20.0,2019-12-06 03:31:14,Thank you very much for your 5-star review!,2019-12-13 08:05:12,most_relevant,com.levor.liferpgtasks +Pr Bkln,https://lh3.googleusercontent.com/a-/AOh14Ghh9L1nSPDoA_piks2e8Pbw0gxg60_mS8UaW-GW,"I like it . But I want little more in this aap , like with point make hero upgrade, more facility....",5,0,2.19.0,2019-11-13 03:28:48,Thank you for downloading app and for the feedback. I would be grateful if you send more details on your suggestion to liferpgtasks@gmail.com.,2019-11-29 11:48:23,most_relevant,com.levor.liferpgtasks +Eirik Slettebø,https://lh3.googleusercontent.com/-p0ThEWsENVA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMcBQXY1QJLzy-pL4Rt_b5fwJEHfQ/photo.jpg,Great app I would like to have the option for purchasing a permanent full version. I wouldn't mind paying 20 USD,5,0,2.19.1,2019-11-16 21:16:52,"Thanks for the review! +Unfortunately one time purchase is not supported and, with high possibility, won't be.",2019-11-29 12:39:04,most_relevant,com.levor.liferpgtasks +Joseph T. Zofrea,https://lh3.googleusercontent.com/a-/AOh14GiovU-L9lJ7-Dh4K7OgxIjVlB45rbivnHSmZYcziA,Creative tool for getting stuff done,5,0,2.22.0,2020-03-01 16:40:21,Thanks for the great review!,2020-03-02 08:04:47,most_relevant,com.levor.liferpgtasks +Thorsten Tonkes,https://lh3.googleusercontent.com/-5pW0vUnWBTA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMcd24AlF05H2CtcKRduM1669xHSw/photo.jpg,"I'm in skyrim! Nah, but all jokes aside this app also has the benefit of suggesting healthy habits, which would be good for a lot of people.",5,0,2.21.1,2020-01-29 11:11:42,Thank you for downloading our app! We will keep working on it!,2020-01-29 17:42:37,most_relevant,com.levor.liferpgtasks +Tyrone Mackey,https://lh3.googleusercontent.com/a-/AOh14GgRum7BIizV-YNBCh-o0XQ8cztu07P8Kv84a66hag,Awesome app very good at keeping me accountable.,5,0,2.21.1,2020-02-14 00:24:03,We're always working hard to improve the app. Thanks for your download and feedback.,2020-02-14 08:50:44,most_relevant,com.levor.liferpgtasks +Forensic Medal7,https://lh3.googleusercontent.com/a-/AOh14GjZ1KHf4SlsSxk2iRUMKsaQYcxG2Mds1EcQ_zrC,"It has added a bit of fun into my daily tasks, which was something I didn't even know I needed until now.",5,0,2.21.0,2020-01-07 19:20:21,"That's a great review, thank you!",2020-01-14 13:24:55,most_relevant,com.levor.liferpgtasks +Zachariah Martindale,https://lh3.googleusercontent.com/-mRA5rYSy374/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPP3LVfxmoYg2-nMT_2Xs7dLqnuIg/photo.jpg,Highly motivating and helps to organize and track progress.,5,0,2.20.0,2019-11-26 22:50:54,Thanks for the feedback!,2019-11-29 15:34:16,most_relevant,com.levor.liferpgtasks +Jer Flores,https://lh3.googleusercontent.com/a-/AOh14GivIGnIguBExhEIpeT4NkW-LNudjHCS5675EcLhpA,Thoroughly enjoy it and not too intrusive that it becomes a chore in itself,5,0,2.20.0,2019-12-24 19:54:48,Thanks for the great review!,2020-01-13 10:18:15,most_relevant,com.levor.liferpgtasks +Go Vocaloider,https://lh3.googleusercontent.com/a-/AOh14GiMwO1ET353qRuI3ziq_9EzYK-d57OUrsflzTTmvA,I'm liking it so far! :) It's actually motivating me a bit! Will update review with time.,5,0,2.22.0,2020-02-25 04:55:56,"Thanks for your review and great rating. +I'd be glad to hear more details on your usage experience later :)",2020-02-25 08:03:14,most_relevant,com.levor.liferpgtasks +Dee Kay,https://lh3.googleusercontent.com/a-/AOh14Gg8XZbYrNAfwZIPxm38vQ88yQBlwCRO50B8Ik8EWww,"Play RPG in real life, that is a great concept, I love it.",5,2,2.20.0,2019-12-20 06:31:50,Thanks for the great review!,2019-12-20 12:42:50,most_relevant,com.levor.liferpgtasks +Peggy Sharp,https://lh3.googleusercontent.com/a-/AOh14GiQ4C_-PrytPxuh8WGjD0BAjCxa0XE6r42vF-Iw,Just started using this app as I am starting to forget things so this app helps remind me and it helps me to just get up and move Great for motivation,5,0,2.21.0,2020-01-16 02:20:51,"Thanks for your review! Please recommend our app to your friends, and don’t hesitate to shoot us a note at liferpgtasks@gmail.com if you have any questions.",2020-01-23 16:15:05,most_relevant,com.levor.liferpgtasks +R. Charles Francis II,https://lh3.googleusercontent.com/-IVs3Ctn8NX8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMhAqGnc44O4Kau2xt_m1mIQ3ZDyw/photo.jpg,Very rewarding. Enjoyable past time.,5,0,2.22.0,2020-03-08 02:22:24,Thank you so much for your review!,2020-03-08 21:32:34,most_relevant,com.levor.liferpgtasks +Martha Jones,https://lh3.googleusercontent.com/a-/AOh14Gg1fjBjC6TZI1i7TgT2Ot3prYnM6gFROpelOrfZ2Q,Super fun way to build positive life habits.,5,0,2.21.1,2020-01-25 15:25:26,Thanks for the great review!,2020-01-29 17:34:35,most_relevant,com.levor.liferpgtasks +Clay Moss,https://lh3.googleusercontent.com/-2frE1COkddU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOrfslHlffQo7sCwalvKc50CBcA8Q/photo.jpg,This app has done wonders in helping get things done! And it make it fun!,5,0,2.21.0,2020-01-03 15:46:00,Thanks for the great review!,2020-01-13 10:56:55,most_relevant,com.levor.liferpgtasks +Webb Wiley,https://lh3.googleusercontent.com/-o9-MJLOTLus/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMINBcaTb8lkhfFEsC3DIgoMFZxWw/photo.jpg,This app is awesome. Makes tasks fun,5,0,2.22.0,2020-03-06 11:56:08,Thank you so much for your review!,2020-03-06 10:14:44,most_relevant,com.levor.liferpgtasks +alxandrailie,https://lh3.googleusercontent.com/-8SCkAWPNTxk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMwdnBk3kKkVfn05pSMwkX_t5nFrw/photo.jpg,Great app! It's exactly what I've been looking for!,5,0,2.20.0,2019-11-29 14:00:35,Thank you very much for your 5-star review!,2019-11-29 15:43:23,most_relevant,com.levor.liferpgtasks +TheRandomOptic,https://lh3.googleusercontent.com/a-/AOh14GjPPTbbiUsZARNzp4TwBHzsFZTtYfy2xqKbxA3x8Q,I like the fact that I have an account. So if I switch phones I can keep everything I worked for.,5,0,2.20.0,2019-12-27 21:01:13,"Thanks for the review! +Yeap, just don't forget to enable data auto backup to cloud in app settings :)",2020-01-13 10:23:25,most_relevant,com.levor.liferpgtasks +Maiara Leones,https://lh3.googleusercontent.com/a-/AOh14GgasacCH1OVPz3c-oZG0jGoib8rFLJSSZti0lsR,Very nice app specially you can add sub tasks.,5,0,2.20.0,2019-12-20 22:05:51,Thanks for the great review!,2020-01-10 16:28:21,most_relevant,com.levor.liferpgtasks +Rikrish Shrestha,https://lh3.googleusercontent.com/-IBi7AQ94fds/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO_xO-JbEwGNWMN8c6NcxHIHyNjpg/photo.jpg,"Wonderful app, must have took a lot of effort to make it",5,0,2.21.0,2019-12-30 10:57:25,"Thanks for the great review! +Yeah, this app has a lot of hard work behind it ;)",2020-01-13 10:28:09,most_relevant,com.levor.liferpgtasks +nick landreth,https://lh3.googleusercontent.com/-YCUx5H1voxo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM5kz4iKMR4jTg-ROoYA96h58HeTQ/photo.jpg,A great idea and an entertaining design.,5,0,2.21.0,2020-01-14 07:47:14,Thanks for the great review!,2020-01-14 13:46:35,most_relevant,com.levor.liferpgtasks +Elton Davao,https://lh3.googleusercontent.com/-hSsFG69Qdfg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMw8p2sS5XxCFtiiutbu-M55XxK-A/photo.jpg,"The recent updates were very amazing. Keep it coming devs. This is close to perfection. However, I hope we can gain items attached to a particular task. Once the task is completed, the items will be given directly to your inventory. This can help us to create weekly task events or bosses. It will be very rewarding. Thank you! Update: One last thing, in terms of habit generation, can we have counting streak instead of count down... The higher the streak, the higher the rewards 🙃",5,3,2.9.1,2020-01-07 08:14:02,"Thanks! I already have tasks with items feature planned for future development :) + +UPD: +Not sure, possibly will add rewards on successful habit generation and penalties on fails.",2020-01-14 13:16:09,most_relevant,com.levor.liferpgtasks +Muharrem Yilmaz,https://lh3.googleusercontent.com/a-/AOh14GizAgzDZ9HeQ4KhsvM5Op_9yw3plggSLcFfJWYRLQ,Really good. I usually forget my duties and this app really notificate me and make me do them with some xp hahahaha,5,0,2.23.0,2020-04-06 14:11:26,,,newest,com.levor.liferpgtasks +Ovidiu Tite,https://lh3.googleusercontent.com/a-/AOh14GgNnfSVc4rWjrvRCdaGC4rIDwAMF-ZGnZc9UU7xIw,"I love dnd so I love this app, too.",5,0,2.23.0,2020-04-06 10:50:30,,,newest,com.levor.liferpgtasks +Igor Silva,https://lh3.googleusercontent.com/-hMWiJcnTqDk/AAAAAAAAAAI/AAAAAAAAASI/AAKWJJOYfxOMWpKuPop7FCAG01BbslT5zw/photo.jpg,Nice,5,0,2.23.0,2020-04-05 10:54:52,Thank you for your support!,2020-04-06 07:26:10,newest,com.levor.liferpgtasks +Immie,https://lh3.googleusercontent.com/-UPiJPfDWmYE/AAAAAAAAAAI/AAAAAAAAAq4/AAKWJJPM5yO_91-XBwXUGs3v1Fw_T8p4kg/photo.jpg,"Good concept. Would go for premium if price adjusted to be a bit more reasonable (to give context, other productivity apps created with a similar aim are around the $2-10 mark.)",5,0,2.23.0,2020-04-04 12:27:18,"Thanks for your feedback. +I do plan to review app price after some time.",2020-04-06 07:24:17,newest,com.levor.liferpgtasks +Daud Gazizullin,https://lh3.googleusercontent.com/-2xa64tNEB_c/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPXWwCzo9Gr8LX0KK3sKqT43A7Rfw/photo.jpg,"The best app for habit-tracking I ever tried. Though possibility of sorting by colour, hiding tasks for predefined time and direct influence of task completion on characteristics without skills mediation would make it perfect indeed. Free trial would be fine too. And please, unite 2+ done tasks of same type into one row.",5,0,,2020-04-04 10:44:51,Thanks for the great feedback and for your suggestions.,2020-04-06 07:23:25,newest,com.levor.liferpgtasks +Blue Phoenix Squad,https://lh3.googleusercontent.com/a-/AOh14GhOMxtqS8g_fwTnI9S5IK2feGi0aGMnlnsX1erY-g,Very motivational.,5,0,2.23.0,2020-04-04 05:52:23,Thank you very much for your 5-star review!,2020-04-06 07:21:27,newest,com.levor.liferpgtasks +Thomas Szymanski,https://lh3.googleusercontent.com/a-/AOh14Gh6mTzDqsrfeYsrvhUMlbUmhVgPEtfYLMjKRe195Q,"I love gamification at work. Creating a simple, customizable system for home life is great!",5,0,2.23.0,2020-04-03 20:11:02,Thank you so much for your review!,2020-04-06 07:21:22,newest,com.levor.liferpgtasks +punished chris-chad,https://lh3.googleusercontent.com/a-/AOh14Ggd0I8t8utkYV3HvLg8EDZ3y7KMh81fAKpyUDPS,Adds not to frequent. Good time tracker,5,0,2.23.0,2020-04-03 01:15:25,Thanks for the great feedback.,2020-04-06 07:19:00,newest,com.levor.liferpgtasks +Crystal cole,https://lh3.googleusercontent.com/-YceRsV4Ji3E/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM2iWpn49DLWtlo0G8GTzVGdkYnwA/photo.jpg,"Very awesome so far! I really love how customizable this is. It does so much it takes a while to learn how to utilize all the features, but I am super happy 👍. Hope it continues to be great with continued use.",5,0,2.23.0,2020-04-02 22:38:35,Thank you for such great review!,2020-04-03 19:36:40,newest,com.levor.liferpgtasks +jack gamer,https://lh3.googleusercontent.com/-BSOfe6L3VEE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMAaJocoBzvntwJgDIBlfaIf--etQ/photo.jpg,"This app is amazing! You can customise your tasks and give yourself rewards in a shop. It really boosted my productivity and helped me get through the tasks that were a bit harder. Highly recommend this app, especially at this time!",5,0,2.23.0,2020-04-02 10:52:09,Thank you for such great review!,2020-04-03 19:32:49,newest,com.levor.liferpgtasks +Anthony Aklasu,https://lh3.googleusercontent.com/a-/AOh14GiLWyZuf2gz2ZrLNVmmBrbGkzNQJyRH0_GPi8MODg,Very effective,5,0,2.23.0,2020-04-02 01:49:24,"Thanks for your review! Please recommend our app to your friends, and don’t hesitate to shoot us a note at liferpgtasks@gmail.com if you have any questions.",2020-04-02 07:43:52,newest,com.levor.liferpgtasks +Mihai Babu,https://lh3.googleusercontent.com/a-/AOh14GjGAyqGtz7wUGAS70sTNmEwWhiV-LeDtZPbvNrPZw,This app haas hekped me changed my life. I definitely recommend,5,0,2.23.0,2020-04-01 19:24:06,Thank you so much for your review!,2020-04-02 07:42:36,newest,com.levor.liferpgtasks +Vukasin Baresic,https://lh3.googleusercontent.com/a-/AOh14Gg13QGYZbfVJ4v36Q6LJ2YzSVCXE07mSi4Rz9S7,Great!,5,0,2.23.0,2020-04-01 18:43:20,Glad you like it! :),2020-04-02 07:42:28,newest,com.levor.liferpgtasks +Abdul Sami Khan,https://lh3.googleusercontent.com/a-/AOh14Gj_k-D-m6RCrwaLqjArIkGLAk9Y-mZAHDSHefwK7AU,Tis' good.,5,0,,2020-04-01 15:12:04,Glad you like it! :),2020-04-02 07:38:41,newest,com.levor.liferpgtasks +Amir Shafiei,https://lh3.googleusercontent.com/a-/AOh14Gjhf1HM7i99ii6eHebZQK9bK9_giKV5VHuc4MtS,Keep improving!!,5,0,,2020-04-01 14:02:20,Thank you for your support!,2020-04-02 07:38:35,newest,com.levor.liferpgtasks +Nier Brother,https://lh3.googleusercontent.com/a-/AOh14Ggc1tS-BquAQgFHtigF3F37MfiaZOfbLobUHVYVCA,Great,5,0,,2020-03-31 21:14:54,Glad you like it! :),2020-04-02 07:31:27,newest,com.levor.liferpgtasks +jj kk,https://lh3.googleusercontent.com/a-/AOh14GhFqjMm6u44pVXlR8nxnhp6Uc4Y2w8d76sn2u1DLw,Very nice app. It helps me be more productive ☺,5,0,2.23.0,2020-03-31 13:31:56,Thank you very much for your 5-star review!,2020-04-02 07:31:18,newest,com.levor.liferpgtasks +Isaac Gerlitz,https://lh3.googleusercontent.com/a-/AOh14Gi9B3xNsugEkZBHtXfBf_d4anfWWvAh5Gt9xktlZQ,"I've tried several RPG To-Do lists, but this one is the best out of them all. It contains all of the features you need to motivate yourself to get off your butt and do something in your life, especially during this period of quarantine. Read the user guide in settings after installing to understand how it works, and get to it! A big Thanks to developer for their quick responses.",5,3,2.23.0,2020-03-31 11:26:28,"Thanks for the great feedback. +I'm trying to do my best with both development and responses :)",2020-04-02 07:31:10,newest,com.levor.liferpgtasks +Alex Pieri,https://lh3.googleusercontent.com/-C2RHyax9N_E/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNGy2mzoJHsqLgzfkgk6rITVBL8qQ/photo.jpg,This app is actually really handy. It really keeps me motivated. I would highly reccomend this app to anyone that has trouble staying organized.,5,0,2.23.0,2020-03-31 02:15:32,Thank you so much for your review!,2020-04-02 07:29:57,newest,com.levor.liferpgtasks +Everest Neverlynn,https://lh3.googleusercontent.com/-GBuupCrsLCc/AAAAAAAAAAI/AAAAAAAACfM/AAKWJJOu8Xre5jypSQSxQw4_8v46cKOgZQ/photo.jpg,"I LOVE this app. I've always had a hard time with planners because I just couldn't see the point, but that allows me to plan and have fun. I feel like I'm constantly playing a video game, but the main character is me! It has definitely improved my life! Thanks a ton, developers!",5,0,2.23.0,2020-03-26 21:08:29,"That was exactly the idea when I decided to create the app. +Thanks for the great feedback!",2020-03-30 17:36:27,newest,com.levor.liferpgtasks +Cecilia Lovia,https://lh3.googleusercontent.com/a-/AOh14GgXR_iLdP3gcBA_dSrzMRiCiAtWGjTo2aAq-scqdg,Good make me full organized life,5,0,2.23.0,2020-03-26 07:15:32,Thanks for the great feedback!,2020-03-30 17:33:52,newest,com.levor.liferpgtasks +Darinka Zobenica,https://lh3.googleusercontent.com/a-/AOh14GjyCQwFwk7iKeWe20THisLST4NZ7L8yE4Ac-2Aoug,"Great app if you keep it to a short list of achievable habits, fun to use, good statistics for tracking progress, you can input things retroactively if you forget at the time, has dark theme, customization options when it comes to tasks, skills, and characteristics. Lightweight, easy to use. Overall I don't think I have any complaints, it delivers what if says it does well, no more, no less. Tldr: love it.",5,1,2.23.0,2020-03-24 01:50:00,Thank you so much for your review!,2020-03-30 17:29:54,newest,com.levor.liferpgtasks +Moni Mona,https://lh3.googleusercontent.com/-Cz_Ef0uTTA0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM-XBlGFFovqQvk4fldwyHk1G0JEg/photo.jpg,"This is by far the most useful and customisable Gamify your life app. It also focuses on skills and character building, which is my favorite part and mostly missing with comparable apps. Takes a bit to get into it, but it's definitely worth it :D",5,0,2.23.0,2020-03-23 09:42:44,"Thanks for the great feedback! +Yeah, it's a bit hard to setup it for the first time, but that's mostly because I've tried to make app as flexible as possible.",2020-03-30 17:28:36,newest,com.levor.liferpgtasks +Jennifer Tellier,https://lh3.googleusercontent.com/-M9NDYPDYIEo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMXtJZOmWn9yfhCuFE9Y1OwkE2fZQ/photo.jpg,Works great!,5,0,2.23.0,2020-03-21 11:04:44,Thanks for the great review!,2020-03-22 19:04:29,newest,com.levor.liferpgtasks +Ndndn Ndndnr,https://lh3.googleusercontent.com/-jd_gYHM7eHY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOrKlI6pDzuOOZz5wJlJ5FsoM_cXA/photo.jpg,Increase very good,5,0,2.23.0,2020-03-21 00:58:57,Thank you for your support!,2020-03-22 19:04:16,newest,com.levor.liferpgtasks +GANK SPANK,https://lh3.googleusercontent.com/a-/AOh14GiQSNJkMdGm6ebfzJtedMZAFnqydQNasJ4H5D65tg,Excellent and detailed beyond average love it!!!,5,0,2.23.0,2020-03-21 00:06:53,Thank you very much for your 5-star review!,2020-03-22 19:04:10,newest,com.levor.liferpgtasks +Maksym,https://lh3.googleusercontent.com/a-/AOh14Gge4g5t_T5GD9x42drgoKVnLZT_nk_A2tGLLNfwCg,"Здравствуйте, ваше приложение мне очень помагает в работе и рутине. Очень обширная программа с множеством функций. У меня предложение ! Как вам идея добавлять собственные иконки к задачам, как например к аватарке героя. Мне кажется, что среди всех иконок может и не быть нужной. Иконки же дадут возможность максимального представления о задаче. К примеру я занимаюсь пайкой и покупаю различные модели паяльников, радиодеталей. Хотелось бы добавить изображение конкретного елемента. Будет круто!",5,0,,2020-03-18 21:58:07,"Спасибо за приятные слова и за вашу поддержку. +Есть такая идея в планах, но пока не приступал к выполнению. Немного опасаюсь, что из-за пользовательских иконок будут заметно подлагивать большие списки задач\навыков\характеристик при скролле. В общем, делать планирую, но осторожно :)",2020-03-19 08:34:30,newest,com.levor.liferpgtasks +Mihai Vaduva,https://lh3.googleusercontent.com/a-/AOh14GgCKJz5htQ7wjXJ3Zm4opE0LdGza1Oa9kTA4qUF,"Fun way to Track your chores and get small challenges to get better. Nice idea, good app thumbs up!",5,0,2.23.0,2020-03-18 04:32:18,Thanks for the review!,2020-03-18 16:58:07,newest,com.levor.liferpgtasks +Torri Thrower,https://lh3.googleusercontent.com/a-/AOh14GgQvSg2r5J_vo1W-kQTTDCB5tkkzxqe0fXuYq0NDA,"Easily the best task manager app out there, while the rpg aspect is a HUGE plus. The user is able to fully customize pretty much every little bit of the app to make it better suit their habits, or soon-to-be habits!",5,0,2.23.0,2020-03-17 19:49:00,Thank you so much for your review!,2020-03-18 16:57:55,newest,com.levor.liferpgtasks +kingphyniox 5-80,https://lh3.googleusercontent.com/a-/AOh14GieIs208Kk5c2XM9tUlpBfP1a5BThkb9HA8nmxJIw,Great good tracking with work and lifestyle,5,0,2.23.0,2020-03-17 15:31:35,Thanks for the review!,2020-03-18 16:57:28,newest,com.levor.liferpgtasks +Dustin Orazi,https://lh3.googleusercontent.com/a-/AOh14GiIAWKawRB2zICOGVTTL0kf2iWszjQXpjiEaD3a1A,Lots of fun!,5,0,2.23.0,2020-03-17 12:19:32,Thanks so much for the awesome review.,2020-03-18 16:57:21,newest,com.levor.liferpgtasks +Hakim Hakiki,https://lh3.googleusercontent.com/a-/AOh14Gg7TN6XotleQJy8y8u4FsbiSWRkC3V8FCt3ygb_,Working good so far,5,0,2.23.0,2020-03-17 11:00:42,Thanks for the review!,2020-03-18 16:55:54,newest,com.levor.liferpgtasks +Kori Simms,https://lh3.googleusercontent.com/a-/AOh14Gh194u7NJA_ss5bU-xDnk6stdxYc330QcHtpW9h,So addicting especially for gamers who love to level up!!!,5,0,2.23.0,2020-03-17 01:31:25,"Thanks for the review. +Yeah, that was main app idea - make it addicting and make users improve their lives :)",2020-03-18 16:47:39,newest,com.levor.liferpgtasks +Miguel Gómez Donoso,https://lh3.googleusercontent.com/a-/AOh14Gg-25zymD3NJHdZ2uYKFB2GU0WbPGLYthmIp0jFIw,Very flexible for now.. . Waiting for the long term results,5,0,2.23.0,2020-03-16 06:54:52,Thank you for providing feedback!,2020-03-18 16:43:28,newest,com.levor.liferpgtasks +J Ryte,https://lh3.googleusercontent.com/-PmcbTcd4jFY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO2xUXwwqI7RboKQ79UNfqzbzjAtQ/photo.jpg,Excellent for keeping on your toes,5,0,2.21.1,2020-03-15 19:14:54,Thank you very much for your 5-star review!,2020-03-18 16:42:23,newest,com.levor.liferpgtasks +Jeferson Lima Da Silva Junior,https://lh3.googleusercontent.com/a-/AOh14Gj_L2UNj21ZTD6axQMCaTciPK6HGfbKA9-zBpH89Q,"I loved the idea and downloaded to try it. This app is helping me a lot, thank you. BTW, I suggest you to do an IOS version, I have friends who want to use it too. Edit : I'm sure it'll be a huge success there too!",5,0,2.23.0,2020-03-14 18:23:23,"Thanks for the feedback. +I've already started working on iOS version, but I have a lot of work ahead so it will take time :)",2020-03-08 21:30:25,newest,com.levor.liferpgtasks +Jarek Bartoszek,https://lh3.googleusercontent.com/a-/AOh14Ggyrv8v83yrKEJqUYOhsfwSM8I8E8kYI8Ou_AT-,"I am a vanilla habitician, but that game failed to serve it's purpose several times and I eventually quit. I linked it to several systemic errors. I was even thinking about creating my own habit rpg free of those but then I found Do It Now. Not only it answers all of my concerns it even adds more features, like drawbacks for completing certain tasks (anti-procrastinator) or putting player in position where he has to maintain his characteristics. Amazing, thank you devs. Please port it to web.",5,14,2.23.0,2020-03-14 12:20:16,"Thanks for such great and encouraging review! +There's only 1 dev behind the project and I do have plans on porting it to different platforms. I'll start with iOS and then possibly switch to web version. But please consider that it will take a lot of time.",2020-03-18 16:38:55,newest,com.levor.liferpgtasks +Farah Batool,https://lh3.googleusercontent.com/-DcaElRF9uOY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN6fp3g-aILF3wpTvplInfwFz8fVg/photo.jpg,"Awesome experience, motivational... Helped in studies and health fitness, also in stress management.",5,0,2.22.0,2020-03-13 04:31:46,Thank you for your encouraging words.,2020-03-18 16:30:34,newest,com.levor.liferpgtasks +Michelle Wadsworth,https://lh3.googleusercontent.com/-g_qdQ6H2B24/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPsY4UqtD9DaeOD_f31N-8WkjKlFQ/photo.jpg,Organized.,5,0,2.22.0,2020-03-11 15:38:03,Thanks for the great review.,2020-03-18 14:36:01,newest,com.levor.liferpgtasks +Mireille,https://lh3.googleusercontent.com/a-/AOh14GiB0D4CSwGRTSrtFmbiOwKQO1jnvvqTeQdNOzI9Yw,Super cute!!,5,0,2.22.0,2020-03-11 14:14:23,Glad you like it! :),2020-03-18 14:35:58,newest,com.levor.liferpgtasks +Asedf 1,https://lh3.googleusercontent.com/-vsyLl69zHnQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN9EookkNXaR_cBM1VXL-46RQHJlw/photo.jpg,"Although limited, still useful",5,0,2.22.0,2020-03-11 08:42:19,Thank you for your support!,2020-03-18 14:34:14,newest,com.levor.liferpgtasks +Christophe Znyk,https://lh3.googleusercontent.com/a-/AOh14GgMfbdhdl5OSWLLL9vyKI4riIolbe1GavCPePtSjA,Be the Champion of your real-life Quests,5,0,2.22.0,2020-03-10 10:29:45,Thank you for your support!,2020-03-18 14:00:04,newest,com.levor.liferpgtasks +Sandra I Ramirez,https://lh3.googleusercontent.com/a-/AOh14Ggl3zbQtRbjXZx0hZXF4RHicBfUJ7vjhHqmG9qCzg,"You can list what you need to do, and set up weekly, monthly and daily tasks.",5,0,2.22.0,2020-03-09 08:40:15,Thank you so much for your review!,2020-03-10 08:25:06,newest,com.levor.liferpgtasks +Jorge Simarro,https://lh3.googleusercontent.com/a-/AOh14Gi4JXfSKx6zZlWuP5kzRRhuUk8gKkYRYIsq330l,Very flexible and the customization is huge.,5,0,2.22.0,2020-03-09 05:31:15,Thank you very much for your 5-star review!,2020-03-10 08:24:58,newest,com.levor.liferpgtasks +My2ndNameIsErza,https://lh3.googleusercontent.com/-JsL3euczE4E/AAAAAAAAAAI/AAAAAAAABYY/AAKWJJNFKZy5wngSOzAOOD7aVhOFXM1xTw/photo.jpg,top,5,0,2.22.0,2020-03-08 19:47:02,Thank you so much for your encouraging star ratings!,2020-03-08 21:33:49,newest,com.levor.liferpgtasks +R. Charles Francis II,https://lh3.googleusercontent.com/-IVs3Ctn8NX8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMhAqGnc44O4Kau2xt_m1mIQ3ZDyw/photo.jpg,Very rewarding. Enjoyable past time.,5,0,2.22.0,2020-03-08 02:22:24,Thank you so much for your review!,2020-03-08 21:32:34,newest,com.levor.liferpgtasks +_Ali_ Eb,https://lh3.googleusercontent.com/-cbHQS4-Q9XY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMPwfMIZzU4UEdXSXGyufSSxwvygw/photo.jpg,Wonderful 👌👌👌,5,0,2.22.0,2020-03-07 20:59:33,Thank you for your support!,2020-03-08 21:31:53,newest,com.levor.liferpgtasks +Norman Rebeiro II,https://lh3.googleusercontent.com/a-/AOh14GgdyhpeMPaFd6GZmYj2gaIER5HWnN-3E3imCkd1,"Absolutely Love this app, paid and unpaid versions worth the time!",5,0,2.22.0,2020-03-07 18:46:02,Thank you so much for your review!,2020-03-08 21:31:48,newest,com.levor.liferpgtasks +Webb Wiley,https://lh3.googleusercontent.com/-o9-MJLOTLus/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMINBcaTb8lkhfFEsC3DIgoMFZxWw/photo.jpg,This app is awesome. Makes tasks fun,5,0,2.22.0,2020-03-06 11:56:08,Thank you so much for your review!,2020-03-06 10:14:44,newest,com.levor.liferpgtasks +Blake Centini,https://lh3.googleusercontent.com/a-/AOh14GgpG-nFD6kxxUj787CNLgjXQ-AwZbXdx6t7gxU_fw,"This is an awesome app! I initially thought the idea of ""gamifying"" my life was a little silly, but fun. After trying for two weeks it is far more motivating than I ever thought! 😁 Thank you, this is finally getting me into habits I have been trying to develop. I one thing I have difficulty with is the subtasks; once I complete the subtasks they don't carry over to the next day's parent task. However, the rest of the features of this app are so great you still get 5-stars!",5,6,2.22.0,2020-03-06 05:30:42,"Thanks for the great feedback! +It encourages me to work on app even harder. +On subtasks - I can assume that you are using subtasks with 1 repeat. Please try to use infinite subtasks if you have infinite parent task. But please keep in mind that all of them should have a date and parent date should be before all childs date in order to complete it.",2020-03-06 10:13:55,newest,com.levor.liferpgtasks +Minki Kim,https://lh3.googleusercontent.com/-qfYEePDT7cw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPsPv4JkwAGCal2C3F3ZIBztooRzg/photo.jpg,Brilliant and incredible app. It turns my daily life into enjoyable one with simple RPG concept. Love it!!!,5,0,2.22.0,2020-03-05 10:29:51,Thank you very much for your 5-star review!,2020-03-05 16:46:53,newest,com.levor.liferpgtasks +Sinlapachai Keawbunruang,https://lh3.googleusercontent.com/a-/AOh14GiT4KnBDCkz2NK_Uyi4Uw0iw5mN_vGtOwyaZRrDoA,I like it .,5,0,2.22.0,2020-03-05 08:20:33,Glad you like it! :),2020-03-05 16:46:43,newest,com.levor.liferpgtasks +Harriette OZell,https://lh3.googleusercontent.com/a-/AOh14Gj2zNueY0XLsu9HRPE61nRoKpnSM34Vd7kB4XID-Q,Easy to use and customize,5,0,2.22.0,2020-03-03 17:35:25,Thank you so much for your review!,2020-03-04 15:24:12,newest,com.levor.liferpgtasks +Thomas,https://lh3.googleusercontent.com/-eVfWQ6QyCrM/AAAAAAAAAAI/AAAAAAAAAyQ/AAKWJJOmI4vj8XkY9pyLwf_NUs2-maWspA/photo.jpg,Great app to track your daily tasks. It is very customizable!,5,0,2.22.0,2020-03-03 08:06:17,Thank you so much for your review!,2020-03-03 08:18:50,newest,com.levor.liferpgtasks +Joseph T. Zofrea,https://lh3.googleusercontent.com/a-/AOh14GiovU-L9lJ7-Dh4K7OgxIjVlB45rbivnHSmZYcziA,Creative tool for getting stuff done,5,0,2.22.0,2020-03-01 16:40:21,Thanks for the great review!,2020-03-02 08:04:47,newest,com.levor.liferpgtasks +Joel Tavizon,https://lh3.googleusercontent.com/a-/AOh14Gh41aqu9_fbkVkwS4oqwCIgIjyd-a_9yofqtBXyHw,"Very cool app. Using it for real life stuff as if it's a video game is so fun. Could have some bug tweaks and possibly an overhaul for the interface, but it's still close to perfect and runs great.",5,0,2.22.0,2020-02-29 12:12:46,"Thanks for the great review! +I'm trying to fix all bugs that I could found. But I'm not planning to revamp interface in near future, sorry.",2020-03-02 08:03:40,newest,com.levor.liferpgtasks +Aaron Oriley,https://lh3.googleusercontent.com/a-/AOh14GgJqygxgYhm9kRkRhwZ2Qf_qJ-HeqgaMtqeORer,Very nice app and I think it will help you with your routine.,5,0,2.22.0,2020-02-29 05:14:54,Thank you very much for your 5-star review!,2020-03-02 08:02:38,newest,com.levor.liferpgtasks +Ricky Alfaro,https://lh3.googleusercontent.com/-g5a6A-QE6ms/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNavKeRZLXP30cvVKxg9Gug9N-Iww/photo.jpg,Fast is good sometimes,5,0,2.22.0,2020-02-28 22:54:53,Thanks for the great review!,2020-03-02 08:02:25,newest,com.levor.liferpgtasks +bluefire69,https://lh3.googleusercontent.com/a-/AOh14Gi8DWaNHUEUdqCxONv4LE98Km3DpH7KFoZEmfVQqQ,l'm the 6'000'th comment,5,0,2.22.0,2020-02-28 16:58:29,"Oh wow, indeed :)",2020-02-28 17:39:22,newest,com.levor.liferpgtasks +Kelly Armstrong,https://lh3.googleusercontent.com/-OWumO6luosY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPEPpzRQIJeSYSAPqdQlWXaOa-atg/photo.jpg,Just getting started with this app but so far I love it! Great way to track good habits and bad!,5,0,2.22.0,2020-02-27 01:51:04,"Thanks for the great feedback. +I hope app will help you to build good strong habits and get rid of bad ones :)",2020-02-27 08:05:07,newest,com.levor.liferpgtasks +Virga / Lay,https://lh3.googleusercontent.com/a-/AOh14GhYWQffSjq3j4CYYJhDUU5Hwvdz6ch-dy9sw0gM,"I sent email to the developer (there's only one!) and they solved everything within minutes. Great app, helps with tasks and even small silly works. It is improving quickly and is getting better every time",5,0,2.22.0,2020-02-26 11:55:07,Thank you for the great review and really encouraging words :),2020-02-27 08:00:45,newest,com.levor.liferpgtasks +Sarah Hudson,https://lh3.googleusercontent.com/a-/AOh14GhIWLGASiGaypeqD5Vy-SFdn81kZtT9WOBxIu9SOw,"One week of use & I purchased a subscription. I've used other similar apps, I enjoy this the most. There a few improvements needed, so I need to add suggestions to the Reddit page. I spent time & wrote out what I value in life, what my aspirations are, & then I narrowed down a few simple goals to reach those aspirations. Then I added my goals to this app. So far it's easy to keep track of my goals, habits, & how I'm doing. It's incredibly easy & even fun to use. Thank you for this app.",5,4,2.22.0,2020-02-26 04:16:03,"Thanks for such great and detailed review. +I'll be waiting for your suggestions in Reddit :)",2020-02-26 07:56:39,newest,com.levor.liferpgtasks +Kepler -22b,https://lh3.googleusercontent.com/a-/AOh14GgUyrCn8CHJpnnQEZYt7RwmgdPV9jUMEAh141Ei1Q,Best productivity app ever,5,0,2.22.0,2020-02-26 02:08:04,Thank you very much for your 5-star review!,2020-02-26 07:55:22,newest,com.levor.liferpgtasks +Go Vocaloider,https://lh3.googleusercontent.com/a-/AOh14GiMwO1ET353qRuI3ziq_9EzYK-d57OUrsflzTTmvA,I'm liking it so far! :) It's actually motivating me a bit! Will update review with time.,5,0,2.22.0,2020-02-25 04:55:56,"Thanks for your review and great rating. +I'd be glad to hear more details on your usage experience later :)",2020-02-25 08:03:14,newest,com.levor.liferpgtasks +Fredeline Pierre,https://lh3.googleusercontent.com/a-/AOh14GhF0tkEq3fe7iIwDAtFSNhOVbsA0YjoReaFqp_B,Really fun I'm new so far curious if there are bages awarded ect...,5,0,2.22.0,2020-02-24 02:11:14,"Thanks for the great feedback! +Please take a look at Achievements section, app has few system achievements, but you can add your own ones.",2020-02-24 11:29:45,newest,com.levor.liferpgtasks +Ray Townsend,https://lh3.googleusercontent.com/-BJEe1YFy_v0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMF--S6STWGyALWQ-TQNyFljxtFAw/photo.jpg,great!1,5,0,2.22.0,2020-02-23 22:01:51,Glad you like it! :),2020-02-24 11:28:46,newest,com.levor.liferpgtasks +Daria Bakiewicz,https://lh3.googleusercontent.com/-epplsikFT5k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNhmKywEHuIhM5E8SnZaRlkn6_2Lg/photo.jpg,"I like this app, I downloaded a few to have a look and pick one, and I went with this one, I like the lay out and I just find it easy to follow l.",5,0,2.22.0,2020-02-23 10:50:39,Thanks for the great feedback!,2020-02-24 11:25:05,newest,com.levor.liferpgtasks +BoilingHeart,https://lh3.googleusercontent.com/a-/AOh14Ghjmc_KC-PB6gWZq3uYBCtsPdZpDuuq-6guiFs9xg,"SO USEFUL!! I struggle with ADHD on a daily basis, I can never remember to do simple tasks and things like notebooks, whiteboards, stickynotes, alarms, they just Don't Work. But this app helps change the game dude!! It's a clever way to incentivize completing tasks, and it's helping me build better habits with the reminders and penalties for not completing it if you miss it. SUPER USEFUL!! I feel more productive and motivated to get my tasks done, I'm grateful this app exists",5,53,2.22.0,2020-02-23 09:05:07,"Thanks for the great review. +I'm really glad that app helps you :)",2020-02-24 11:24:05,newest,com.levor.liferpgtasks +Mountaineer of tha Streetz 210,https://lh3.googleusercontent.com/a-/AOh14GjAlBHOAjgPklrzcka70XMjAilrjLlGx2eoCDYNCA,"I Love the concept, I've always saw the parallel between RealLife and an RRG in terms of skill growth and education.",5,0,2.22.0,2020-02-22 12:35:20,Thank you so much for your review!,2020-02-24 11:20:14,newest,com.levor.liferpgtasks +Farooq Mirza,https://lh3.googleusercontent.com/a-/AOh14Giw2UThyui-_DjW8FrmKQVErOOGP5g7YxTGcg0oTA,Excellent app,5,0,2.22.0,2020-02-22 10:21:52,It is delightful to hear such positive words!,2020-02-24 11:20:03,newest,com.levor.liferpgtasks +Kendal Cobb,https://lh3.googleusercontent.com/a-/AOh14GjfSMseWXCroAiNeUyF5a1ErqFX1Qa2zSwZnGepLg,This is a brilliant little app! I frequently struggle with executive dysfunction and this app really helps me get things done!,5,0,,2020-02-21 11:48:57,It is delightful to hear such positive words!,2020-02-24 11:15:15,newest,com.levor.liferpgtasks +dharuva thakur,https://lh3.googleusercontent.com/-Nr9_-vBPRL0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNXVIcnEuFb16PHjSQUcjEp-Durlw/photo.jpg,Ultimate,5,0,2.22.0,2020-02-20 11:43:30,Thank you so much for your encouraging star ratings!,2020-02-24 11:07:52,newest,com.levor.liferpgtasks +Dmitrij Beldeninov,https://lh3.googleusercontent.com/a-/AOh14Giy0KjfyPv6bm4fObh8CP6QnxNvoiFMihuc6cQ,"Very versatile and customizable! Still new to it, but it looks very promising, if not polished yet.",5,0,2.22.0,2020-02-19 19:29:59,"Dmitrij, thanks for the great feedback!",2020-02-24 11:03:11,newest,com.levor.liferpgtasks +MC,https://lh3.googleusercontent.com/a-/AOh14GgFbFfw496HehOmcJEkyhY_bFwipvdE1zvekp8Djw,"I don't have this app for long, but it is really easy to use so i like it, it also allows you to skip a day if you can't do it that day (just change the day)",5,0,2.22.0,2020-02-19 15:11:00,Thank you so much for your review!,2020-02-24 11:02:47,newest,com.levor.liferpgtasks +Boris Gutiérrez,https://lh3.googleusercontent.com/a-/AOh14Giu6a5YfiUImxnfSyv_qnpVsUb6axb4i3VXEYLF,Es la mejor aplicacion para planear tareas complejas que hay,5,0,2.22.0,2020-02-19 12:35:55,Thanks for the great feedback!,2020-02-24 11:02:28,newest,com.levor.liferpgtasks +Shahriar Manafi,https://lh3.googleusercontent.com/-ncNRuUD9Zt8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPCxQogLKDvoESZH_Tu1eJoIhRFKA/photo.jpg,I like it 🤞,5,0,2.22.0,2020-02-19 04:09:46,Thanks for the great feedback!,2020-02-24 11:02:16,newest,com.levor.liferpgtasks +Ahmed Hassan,https://lh3.googleusercontent.com/a-/AOh14GgAe0gp2xwFWqlsHM96-eDrAPlAtHod73L-VtcW-Q,Amazing app,5,0,2.22.0,2020-02-18 16:59:43,"Thank you for your review, Ahmed!",2020-02-18 18:29:10,newest,com.levor.liferpgtasks +Sr. Romes,https://lh3.googleusercontent.com/a-/AOh14GjD19fAGQ8TNbWikaGYky7dIDQdo_XOhGcDhQzu-w,Best app!!,5,0,2.16.0,2020-02-18 11:06:41,Thanks for your kind feedback!,2020-02-18 18:28:53,newest,com.levor.liferpgtasks +Jason Gwin,https://lh3.googleusercontent.com/a-/AOh14GiK_dJEXz0enRsl2wcSZV2SUT_1-gNHJLsYuE8u1j4,Perfect app,5,0,2.22.0,2020-02-17 06:03:35,"Thanks for your review! Please recommend our app to your friends, and don’t hesitate to shoot us a note at liferpgtasks@gmail.com if you have any questions.",2020-02-17 08:32:26,newest,com.levor.liferpgtasks +Jayne Beldrake,https://lh3.googleusercontent.com/a-/AOh14GjNhw1Rh9KDHi7CTWxzje0slnd9Bmm5mZ5hmHBY,Really cool app,5,0,,2020-02-16 08:31:47,"Thanks for your review! Please recommend our app to your friends, and don’t hesitate to shoot us a note at liferpgtasks@gmail.com if you have any questions.",2020-02-17 08:27:31,newest,com.levor.liferpgtasks +Grace Riccardi,https://lh3.googleusercontent.com/a-/AOh14GjcvAy6s76I_8_hXcH591Jc6tHmgXzU9-Ul-WR3xQ,So much fun to use and makes me feel better about doing everything I need to,5,0,2.22.0,2020-02-16 01:09:33,"Thanks for your review! Please recommend our app to your friends, and don’t hesitate to shoot us a note at liferpgtasks@gmail.com if you have any questions.",2020-02-17 08:26:48,newest,com.levor.liferpgtasks +Marcela Pedro,https://lh3.googleusercontent.com/-lpvDRwshil4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJObVV-sYnyJW63zXcSGohxPjdHeFw/photo.jpg,Was inspired by the Novel Solo Leveling and it works!,5,0,2.22.0,2020-02-15 09:21:17,Thanks for your great review!,2020-02-17 08:25:31,newest,com.levor.liferpgtasks +Nick Mchedlishvili,https://lh3.googleusercontent.com/-GrK7gH8rZDE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPf1luIGBtd-WZ3_dxlPSnMj6yIDA/photo.jpg,Such a motivation for RPG lover like me!,5,0,2.21.1,2020-02-14 19:46:05,"Thanks for your review! Please recommend our app to your friends, and don’t hesitate to shoot us a note at liferpgtasks@gmail.com if you have any questions.",2020-02-17 08:25:08,newest,com.levor.liferpgtasks +tomas mc bride,https://lh3.googleusercontent.com/-dUjfZIGDh-M/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJND5n8GFYFN41tjs1ob7u9rE5ZMuw/photo.jpg,Good,5,0,2.21.1,2020-02-14 18:13:23,Thank you for your support!,2020-02-17 08:25:02,newest,com.levor.liferpgtasks +Jaypee Laus,https://lh3.googleusercontent.com/a-/AOh14GgSdtjTweNZIt6G-bWwCqtzMs06Qx_7TXwlT_mzqA,"This app is a great help for me! This helps me enjoy productivity in whole new level. I have been struggling for years to get my life back together, but with this app I feel like I can finally get some work done in a fun and enjoyable way. Thank you very much!",5,0,2.21.1,2020-02-14 00:47:21,Thank you so much for your review!,2020-02-14 08:50:55,newest,com.levor.liferpgtasks +Tyrone Mackey,https://lh3.googleusercontent.com/a-/AOh14GgRum7BIizV-YNBCh-o0XQ8cztu07P8Kv84a66hag,Awesome app very good at keeping me accountable.,5,0,2.21.1,2020-02-14 00:24:03,We're always working hard to improve the app. Thanks for your download and feedback.,2020-02-14 08:50:44,newest,com.levor.liferpgtasks +Michael Keilhaus,https://lh3.googleusercontent.com/-_cqwyFiEBOw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJODFwwuokJl1QKDSueVDAt-x-9kRg/photo.jpg,"first of all, I am thrilled with the app. If I know how it works. Is there a list of ready-made tasks? On the start screen there are some suggested ones. When I press the plus button, I actually expect a list with all possible tasks. But instead of that I only have the possibility to create a new task. At first I thought that I had to subscribe. I have subscribed now but unfortunately it is still not possible. Now I have deleted all tasks from the start screen. If I click on the plus, there is still no list. It comes again: new task",5,1,2.21.1,2020-02-12 17:10:01,"Thanks for the review. +Unfortunately there's no list of suggested tasks, you can only create your own tasks with + button. +When you install app it is prepopulated with example tasks which can be used to get known with the app.",2020-02-14 08:44:51,newest,com.levor.liferpgtasks +Lessandr Flore,https://lh3.googleusercontent.com/-_GIKkJsqBhw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMDbBzrXGdnn7SA3msL7QXuyUpy0Q/photo.jpg,marvellous! makes a game out of everyday life. helps you organise your tasks while feeding stats about the progress YOU consider important! and the gold-xp reward & punishment system gives some type of extra motive. brilliant i say,5,2,2.21.1,2020-02-10 01:39:00,Thanks for such great review!,2019-03-07 07:49:42,newest,com.levor.liferpgtasks +vlad l,https://lh3.googleusercontent.com/-tAoHLIGAPBI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMehbQEq20ZMLdlZ_BLo5dhXU-m6A/photo.jpg,Cool app!,5,0,,2020-02-08 14:48:39,Thanks for the great review!,2020-02-12 17:58:18,newest,com.levor.liferpgtasks +TheRainblue PhoenixWargaming,https://lh3.googleusercontent.com/a-/AOh14GjXP6GseSjreZqntOGYvPd2IRyq9b4vb2-mGf_c,"It's easy to use and from all of the habit apps I installed, I still came back to this and realize this is my ideal habit app. Truly love it❤❤",5,0,,2020-02-08 04:15:11,"Wow, thanks for your love and for such great and encouraging review!",2020-02-12 17:57:45,newest,com.levor.liferpgtasks +Ric Jr,https://lh3.googleusercontent.com/a-/AOh14GivTSYrby1HCGRdm-A3c4d9G0JueEwI0YEsieGXYQ,A more in depth kind of to-do list. Plus you get to monitor where the kind of activities you do would lead you in the long run. Good job.,5,0,2.21.1,2020-02-07 17:28:12,Thank you very much for your 5-star review!,2020-02-12 17:57:13,newest,com.levor.liferpgtasks +Felipe Bero,https://lh3.googleusercontent.com/a-/AOh14GjAEs4uOSgGP9OkOxugRBIKNE3ErNRdqYaNHYKG4Q,Awesome. Muito bom,5,0,2.21.1,2020-02-07 03:33:15,Thanks for the great review!,2020-02-12 17:55:27,newest,com.levor.liferpgtasks +23emdee,https://lh3.googleusercontent.com/a-/AOh14GifBw1VXqceThYMy46uStn_GFtcGlGvmZOWvc3u,Makes doing chores seem more achievable and really helps me see my progress in being a better human.,5,0,2.21.1,2020-02-07 01:55:46,"Thanks for your review! Please recommend our app to your friends, and don’t hesitate to shoot us a note at liferpgtasks@gmail.com if you have any questions.",2020-02-12 17:55:23,newest,com.levor.liferpgtasks +Kyle McKee,https://lh3.googleusercontent.com/a-/AOh14GijYOP4wTjInQO4hzxXevT0qOz__F1fu-3eTOpc,"So far, this app has had a profound impact on me getting things done. It does rely a bit on the honor system, but if you're down for it, it can be very good.",5,0,2.21.1,2020-02-06 10:18:50,Thanks for the great review!,2020-02-12 17:55:10,newest,com.levor.liferpgtasks +Adnan Mustafa,https://lh3.googleusercontent.com/a-/AOh14GieuEZkCL3vgKCjBBDHelG7tQyNuWwdRcQbsFtA,It's very good. It helps me more about my difficulties in habits tracking. I found it best of all,5,0,2.21.1,2020-02-05 06:14:27,"Hi, +Thanks for your feedback. We are continuously working on adding more features to our app to make your experience better.",2020-02-12 17:51:48,newest,com.levor.liferpgtasks +typhosion productions,https://lh3.googleusercontent.com/a-/AOh14GhEkBvctMqCUm79m2gWOGPsGCT5r06rG4odXtfx,Fun,5,0,2.21.1,2020-02-04 20:55:24,Glad you like it! :),2020-02-12 17:49:06,newest,com.levor.liferpgtasks +Shailesh Kumar,https://lh3.googleusercontent.com/a-/AOh14GjHmiINUDOyqcrzNeP01bFzKldk6r3gObx6c01r8Q,"Really Nice App Sir could you please provide goal tracking functionality too, that'd be very useful too : )",5,0,2.21.1,2020-02-04 16:05:44,"Dear User, Thank you for your suggestions. We will try and incorporate them upcoming versions.",2020-02-12 17:48:11,newest,com.levor.liferpgtasks +Kuya Paul,https://lh3.googleusercontent.com/a-/AOh14GhbTpziQqnATNpOaoH-lI0pI8VHODibYZx7u2rU,Imporant functions can be used only if you subscribe. It would be best if they rather sell this app than make people pay for subscption. It's worth their money anyway.,5,1,2.21.1,2020-02-04 04:43:53,"Thanks for the review. +Unfortunately one time payment won't give app the possibility to evolve and be supported. So we decided to stick with subscription.",2019-10-02 10:34:42,newest,com.levor.liferpgtasks +Fred Smith,https://lh3.googleusercontent.com/a-/AOh14GigE6lgCTlILQevhE-dVmFSgcUvR3q_DbBdX0Y3,taco,5,0,2.21.1,2020-02-03 22:05:22,Thank you for your support,2020-02-04 12:54:30,newest,com.levor.liferpgtasks +Zena,https://lh3.googleusercontent.com/a-/AOh14Gg4xEy_6AMensPPrieJAtwhkFJXVO0fYJf0K0cKhv0,An amazing app with a creative concept. One of the best task managing apps out there,5,0,2.21.1,2020-02-03 17:45:13,"Thanks for your review! Please recommend our app to your friends, and don’t hesitate to shoot us a note at liferpgtasks@gmail.com if you have any questions.",2020-02-04 12:52:37,newest,com.levor.liferpgtasks +mohamed salah,https://lh3.googleusercontent.com/-LANr57tNZe0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMX0xGhMGDltO_B1jA5oZb_d7gKnA/photo.jpg,"I got the premium version The main drawbacks of this app are: 1- I cannot customize the categories 2- If I do a task earlier, it still alarming on scheduled alarming time 3- removing done tasks is not available Just moved to the bottom",1,2,1.2.3,2020-03-14 05:20:55,"Hi Mohamed: We invite you to focus on positive aspects too. Which aspects made you to bought premium? Is the app being useful to you? We will work on those features sooner or later, but we know that the app doesn't deserve the worst score for such small details. Best regards, +HabitNow Team",2020-03-14 11:25:50,most_relevant,com.habitnow +Nandhini V,https://lh3.googleusercontent.com/a-/AOh14GiJ4kNvwNYcYZXRS_utX-lp8YNPFqw025lbQ4zFcQ,"Alarms or notifications don't work unless you open the app, then it floods all the notifications for the tasks as i open the app. Defeats the purpose of the app. Tedious round-about way to delete a Habit compared to deleting a Task. Not sure how this app got a 4.6 rating.",1,52,1.2.3,2020-01-28 00:45:50,"Thank you for your feedback. To solve the reminders issue you have to exclude HabitNow from your battery optimizer. If you need to be guided contact us to habitnow.apps@gmail.com and we will be glad to help! It's not an app error, is your device what is blocking the reminders. Greetings!",2020-01-28 01:56:24,most_relevant,com.habitnow +Seraph Sebastien,https://lh3.googleusercontent.com/a-/AOh14GgnnRDDPiN5qU2MyWHjWiDz7ZHrAFVqq1iE0siqVA,"If you want to use dark mode, you'll have to but ""premium"". I understand the need to make money off your app, but thats just scummy.",1,0,1.2.3,2020-03-17 18:57:51,"Hi Seraph: This app is to build good habits, and we consider that cutting on some accessory features is better than limiting free habits to 3, as many other apps do. We like to help people to improve, and we don't find dark mode relevant to the app purposes. There are some themes that you can use for free. Thank you for your understanding.",2020-03-17 19:49:42,most_relevant,com.habitnow +Emily Sheriff,https://lh3.googleusercontent.com/-MjEHtErYp_k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM8xeRs90IgXIyYxxIF2uuH9US2ug/photo.jpg,Terrible can't control whether things repeat it not and a study task is automatically a habit? Stupidly paid for the premium upfront. Agree with others that idk where 4.6 came from.,1,0,1.2.3,2020-02-10 04:36:44,"Hi Emily: Sorry, we do not understand what's the issue with the app. We are continuously working to bring the best possible experience. If you want to give suggestions or need help from our support contact us to habitnow.apps@gmail.com. Maybe the app does not fit your needs, but our score is a product of honest work. Regards.",2020-02-10 15:09:39,most_relevant,com.habitnow +Raluu,https://lh3.googleusercontent.com/a-/AOh14GjAFK2BpPFmwIB9C0fXQSM4PIkIlG5d0GnG2DoM,"You have to pay for the dark mode? Really? It doesn't mattee how helpful this app could be for my life if it damages my eyes a lot more just because I can't afford to go premium and buy the amazing ""dark mode"". At least those whole 2 seconds of interacting with the app were fun.",1,0,,2019-12-28 22:46:01,We focus to give the most complete experience to free users. We think that dark mode is an accessory thing that couldn't exist at all. We are glad that you liked the app. Regards.,2019-12-28 23:57:31,most_relevant,com.habitnow +Mack Walker,https://lh3.googleusercontent.com/a-/AOh14GiZUZQvfAhTqXAllcLKqmXTPPOu2fI1dpQK54sS8g,Costs money to make pixels darker,1,0,1.2.3,2020-02-24 06:04:57,We focus to give the most complete experience to free users. We think that dark mode is an accessory thing that couldn't exist at all. The app brings all the features needed to start a change and keep a routine organized with almost zero limitations. Thank you for the feedback.,2020-02-24 08:01:12,most_relevant,com.habitnow +Tips and Tricks,https://lh3.googleusercontent.com/a-/AOh14GimC4M334PDxgI1W0mu7JuJ2BknzNkBLzoxhMlLvg,"Don't receive any notifications, alarms",1,0,1.2.3,2019-12-31 17:55:18,Hi Shah Shah: Did you like the app? Sorry for that but it's not an app error. There is a battery optimizer in your phone disabling our alarms and notifications. Contact us to habitnow.apps@gmail.com and we will be glad to help you with the issue.,2019-12-31 19:57:09,most_relevant,com.habitnow +We The Peoples,https://lh3.googleusercontent.com/a-/AOh14GjBte0ippWOKgq5k3aaQ5ss2NacqJg83F_kacBFbA,It's says Error when copying data when I tried to export data. Can you please mail me the solution again Please,1,1,,2019-11-21 13:41:40,Sure!,2019-11-21 16:27:09,most_relevant,com.habitnow +Tippy Youth,https://lh3.googleusercontent.com/-pz5BvWQam1w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP3Cvxm209JjG34xIROsl0d6Kz9Zg/photo.jpg,"Couldn't edit any habit in this apps can't add pages, episodes, and liters bec they're not available in the edit menu.. The only way to edit a habit is to delete it.",1,29,,2019-05-30 10:54:01,"Dear user, we have detected multiple 1 star poorly justified reviews comming all from the same device with multiple accounts. +If you need assistance from our support contact to habitnow.apps@gmail.com or use the help channel integrated in the app. +We are willing to help you. +HabitNow Support",2019-06-10 02:25:07,most_relevant,com.habitnow +Harry J Tucci Jr,https://lh3.googleusercontent.com/-U-tQkqSEorA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMQmsXjdHoUZWMyqprU_wD75GcM2g/photo.jpg,Zero integration with any calendar so literally worthless!!,1,1,,2020-01-24 21:06:57,Thank you for giving your opinion. I hope you can find an app that give you what you need. We are here to help you.,2020-01-24 21:30:25,most_relevant,com.habitnow +Good Kisser,https://lh3.googleusercontent.com/-rRIomBZQy_8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOkLzv7pMJXfbNAiE_-IROu9pGYcg/photo.jpg,App has too many error to count.,1,3,,2019-05-29 10:03:31,"Dear user, we have detected multiple 1 star poorly justified reviews comming all from the same device with multiple accounts. +If you need assistance from our support contact to habitnow.apps@gmail.com or use the help channel integrated in the app. +We are willing to help you. +HabitNow Support",2019-06-10 02:25:10,most_relevant,com.habitnow +Adaku Nwachukwu,https://lh3.googleusercontent.com/-x4iH1YpRsW4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO-rlQhmvCVYjcq4U0Q4rUs699BnA/photo.jpg,It doesn't remind me. I even forgot I still had it on my phone.,1,0,1.2.3,2020-01-31 19:23:35,"Hi Adaku: Thank you for your feedback. It's not an app error, is your device what is blocking the reminders. To solve the issue you have to exclude HabitNow from your battery optimizer. If you need to be guided contact us to habitnow.apps@gmail.com and we will be glad to help! Greetings!",2020-01-31 19:29:28,most_relevant,com.habitnow +Asha mimi,https://lh3.googleusercontent.com/-3PSKvnl049Q/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO6c95CjCzAUl4Ie6DZKPlEorYiSA/photo.jpg,Its not working properly,1,1,,2019-10-23 14:14:22,"HI Asha, can you give us more details about your issue?",2019-10-23 14:58:43,most_relevant,com.habitnow +Kristina Brunell,https://lh3.googleusercontent.com/-vT5gC9Tk07A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMBVOVUBWt5jRSF-OWZFYpeI4bEaQ/photo.jpg,It was confusing,1,0,,2020-03-22 19:47:36,Hi Kristina. The app is really simple to use. Just record your routine and the app will help you to track your progress and notify when you have a scheduled activity. If you need help from our support contact us to habitnow.apps@gmail.com and we will be glad to help.,2020-03-22 21:45:58,most_relevant,com.habitnow +Sarah Dougan,https://lh3.googleusercontent.com/-bkfT_bSYXds/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNXxWbVwGbhDS_fpOp6kjgYfKvoAg/photo.jpg,Absolutely hated it it was just weird,1,0,,2019-11-16 20:40:57,Sorry we don't understand. Did you have an issue with the app?,2019-11-17 13:10:35,most_relevant,com.habitnow +Marion Lopez,https://lh3.googleusercontent.com/-p9MSGfC32Q4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMTlH9SG6z7LY3NMmOEExelMyGyBQ/photo.jpg,Not advisable to anyone.,1,1,,2019-06-01 02:41:47,"Dear user, we have detected multiple 1 star poorly justified reviews comming all from the same device with multiple accounts. +If you need assistance from our support contact to habitnow.apps@gmail.com or use the help channel integrated in the app. +We are willing to help you. +HabitNow Support",2019-06-10 02:24:59,most_relevant,com.habitnow +Ronn Bipro,https://lh3.googleusercontent.com/a-/AOh14GhdL729QQLMiudqqA-45o6HNX_OIIDq8SSyToFf7w,Limited Habits,1,1,1.2.3,2019-12-17 16:28:11,Hi Ronn: Most of our features are for free. Even our habit limit is higher than many other apps. Sadly we cant provide the full experience for free because premium users give us the support needed to keep working and improving the app. Regards.,2019-12-17 22:22:05,most_relevant,com.habitnow +MGeorgiM,https://lh3.googleusercontent.com/a-/AOh14GjOgs1irHt8Lk4JMqqW0ok9yhzG0tbpelm6HhYk,No reminders,1,0,1.2.3,2020-03-18 03:17:17,"The app have reminders and alarms. If they are not working, check your battery optimization options. Regards.",2020-03-18 11:37:20,most_relevant,com.habitnow +Gabriele Tomberli,https://lh3.googleusercontent.com/a-/AOh14Gg3rbeI128hrPCIe1hJOe6WKVJOQgYDliemP2vAHA,Too expensive.,1,3,1.2.1,2019-10-01 22:07:16,Sorry to hear that but the app is free. Regards!,2019-10-01 22:17:13,most_relevant,com.habitnow +Kondeti Tejaswi,https://lh3.googleusercontent.com/-C3bt7yNrQPk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMEj352EE4mhXUH01p6yICUfte4XQ/photo.jpg,Worst,1,0,,2020-04-06 17:39:50,,,most_relevant,com.habitnow +Kondeti Tejaswi,https://lh3.googleusercontent.com/-C3bt7yNrQPk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMEj352EE4mhXUH01p6yICUfte4XQ/photo.jpg,Worst,1,0,,2020-04-06 17:39:50,,,newest,com.habitnow +Kristina Brunell,https://lh3.googleusercontent.com/-vT5gC9Tk07A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMBVOVUBWt5jRSF-OWZFYpeI4bEaQ/photo.jpg,It was confusing,1,0,,2020-03-22 19:47:36,Hi Kristina. The app is really simple to use. Just record your routine and the app will help you to track your progress and notify when you have a scheduled activity. If you need help from our support contact us to habitnow.apps@gmail.com and we will be glad to help.,2020-03-22 21:45:58,newest,com.habitnow +MGeorgiM,https://lh3.googleusercontent.com/a-/AOh14GjOgs1irHt8Lk4JMqqW0ok9yhzG0tbpelm6HhYk,No reminders,1,0,1.2.3,2020-03-18 03:17:17,"The app have reminders and alarms. If they are not working, check your battery optimization options. Regards.",2020-03-18 11:37:20,newest,com.habitnow +Seraph Sebastien,https://lh3.googleusercontent.com/a-/AOh14GgnnRDDPiN5qU2MyWHjWiDz7ZHrAFVqq1iE0siqVA,"If you want to use dark mode, you'll have to but ""premium"". I understand the need to make money off your app, but thats just scummy.",1,0,1.2.3,2020-03-17 18:57:51,"Hi Seraph: This app is to build good habits, and we consider that cutting on some accessory features is better than limiting free habits to 3, as many other apps do. We like to help people to improve, and we don't find dark mode relevant to the app purposes. There are some themes that you can use for free. Thank you for your understanding.",2020-03-17 19:49:42,newest,com.habitnow +mohamed salah,https://lh3.googleusercontent.com/-LANr57tNZe0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMX0xGhMGDltO_B1jA5oZb_d7gKnA/photo.jpg,"I got the premium version The main drawbacks of this app are: 1- I cannot customize the categories 2- If I do a task earlier, it still alarming on scheduled alarming time 3- removing done tasks is not available Just moved to the bottom",1,2,1.2.3,2020-03-14 05:20:55,"Hi Mohamed: We invite you to focus on positive aspects too. Which aspects made you to bought premium? Is the app being useful to you? We will work on those features sooner or later, but we know that the app doesn't deserve the worst score for such small details. Best regards, +HabitNow Team",2020-03-14 11:25:50,newest,com.habitnow +Mack Walker,https://lh3.googleusercontent.com/a-/AOh14GiZUZQvfAhTqXAllcLKqmXTPPOu2fI1dpQK54sS8g,Costs money to make pixels darker,1,0,1.2.3,2020-02-24 06:04:57,We focus to give the most complete experience to free users. We think that dark mode is an accessory thing that couldn't exist at all. The app brings all the features needed to start a change and keep a routine organized with almost zero limitations. Thank you for the feedback.,2020-02-24 08:01:12,newest,com.habitnow +Emily Sheriff,https://lh3.googleusercontent.com/-MjEHtErYp_k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM8xeRs90IgXIyYxxIF2uuH9US2ug/photo.jpg,Terrible can't control whether things repeat it not and a study task is automatically a habit? Stupidly paid for the premium upfront. Agree with others that idk where 4.6 came from.,1,0,1.2.3,2020-02-10 04:36:44,"Hi Emily: Sorry, we do not understand what's the issue with the app. We are continuously working to bring the best possible experience. If you want to give suggestions or need help from our support contact us to habitnow.apps@gmail.com. Maybe the app does not fit your needs, but our score is a product of honest work. Regards.",2020-02-10 15:09:39,newest,com.habitnow +Adaku Nwachukwu,https://lh3.googleusercontent.com/-x4iH1YpRsW4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO-rlQhmvCVYjcq4U0Q4rUs699BnA/photo.jpg,It doesn't remind me. I even forgot I still had it on my phone.,1,0,1.2.3,2020-01-31 19:23:35,"Hi Adaku: Thank you for your feedback. It's not an app error, is your device what is blocking the reminders. To solve the issue you have to exclude HabitNow from your battery optimizer. If you need to be guided contact us to habitnow.apps@gmail.com and we will be glad to help! Greetings!",2020-01-31 19:29:28,newest,com.habitnow +Nandhini V,https://lh3.googleusercontent.com/a-/AOh14GiJ4kNvwNYcYZXRS_utX-lp8YNPFqw025lbQ4zFcQ,"Alarms or notifications don't work unless you open the app, then it floods all the notifications for the tasks as i open the app. Defeats the purpose of the app. Tedious round-about way to delete a Habit compared to deleting a Task. Not sure how this app got a 4.6 rating.",1,52,1.2.3,2020-01-28 00:45:50,"Thank you for your feedback. To solve the reminders issue you have to exclude HabitNow from your battery optimizer. If you need to be guided contact us to habitnow.apps@gmail.com and we will be glad to help! It's not an app error, is your device what is blocking the reminders. Greetings!",2020-01-28 01:56:24,newest,com.habitnow +Harry J Tucci Jr,https://lh3.googleusercontent.com/-U-tQkqSEorA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMQmsXjdHoUZWMyqprU_wD75GcM2g/photo.jpg,Zero integration with any calendar so literally worthless!!,1,1,,2020-01-24 21:06:57,Thank you for giving your opinion. I hope you can find an app that give you what you need. We are here to help you.,2020-01-24 21:30:25,newest,com.habitnow +Tips and Tricks,https://lh3.googleusercontent.com/a-/AOh14GimC4M334PDxgI1W0mu7JuJ2BknzNkBLzoxhMlLvg,"Don't receive any notifications, alarms",1,0,1.2.3,2019-12-31 17:55:18,Hi Shah Shah: Did you like the app? Sorry for that but it's not an app error. There is a battery optimizer in your phone disabling our alarms and notifications. Contact us to habitnow.apps@gmail.com and we will be glad to help you with the issue.,2019-12-31 19:57:09,newest,com.habitnow +Raluu,https://lh3.googleusercontent.com/a-/AOh14GjAFK2BpPFmwIB9C0fXQSM4PIkIlG5d0GnG2DoM,"You have to pay for the dark mode? Really? It doesn't mattee how helpful this app could be for my life if it damages my eyes a lot more just because I can't afford to go premium and buy the amazing ""dark mode"". At least those whole 2 seconds of interacting with the app were fun.",1,0,,2019-12-28 22:46:01,We focus to give the most complete experience to free users. We think that dark mode is an accessory thing that couldn't exist at all. We are glad that you liked the app. Regards.,2019-12-28 23:57:31,newest,com.habitnow +Ronn Bipro,https://lh3.googleusercontent.com/a-/AOh14GhdL729QQLMiudqqA-45o6HNX_OIIDq8SSyToFf7w,Limited Habits,1,1,1.2.3,2019-12-17 16:28:11,Hi Ronn: Most of our features are for free. Even our habit limit is higher than many other apps. Sadly we cant provide the full experience for free because premium users give us the support needed to keep working and improving the app. Regards.,2019-12-17 22:22:05,newest,com.habitnow +We The Peoples,https://lh3.googleusercontent.com/a-/AOh14GjBte0ippWOKgq5k3aaQ5ss2NacqJg83F_kacBFbA,It's says Error when copying data when I tried to export data. Can you please mail me the solution again Please,1,1,,2019-11-21 13:41:40,Sure!,2019-11-21 16:27:09,newest,com.habitnow +Sarah Dougan,https://lh3.googleusercontent.com/-bkfT_bSYXds/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNXxWbVwGbhDS_fpOp6kjgYfKvoAg/photo.jpg,Absolutely hated it it was just weird,1,0,,2019-11-16 20:40:57,Sorry we don't understand. Did you have an issue with the app?,2019-11-17 13:10:35,newest,com.habitnow +Asha mimi,https://lh3.googleusercontent.com/-3PSKvnl049Q/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO6c95CjCzAUl4Ie6DZKPlEorYiSA/photo.jpg,Its not working properly,1,1,,2019-10-23 14:14:22,"HI Asha, can you give us more details about your issue?",2019-10-23 14:58:43,newest,com.habitnow +Gabriele Tomberli,https://lh3.googleusercontent.com/a-/AOh14Gg3rbeI128hrPCIe1hJOe6WKVJOQgYDliemP2vAHA,Too expensive.,1,3,1.2.1,2019-10-01 22:07:16,Sorry to hear that but the app is free. Regards!,2019-10-01 22:17:13,newest,com.habitnow +Marion Lopez,https://lh3.googleusercontent.com/-p9MSGfC32Q4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMTlH9SG6z7LY3NMmOEExelMyGyBQ/photo.jpg,Not advisable to anyone.,1,1,,2019-06-01 02:41:47,"Dear user, we have detected multiple 1 star poorly justified reviews comming all from the same device with multiple accounts. +If you need assistance from our support contact to habitnow.apps@gmail.com or use the help channel integrated in the app. +We are willing to help you. +HabitNow Support",2019-06-10 02:24:59,newest,com.habitnow +Tippy Youth,https://lh3.googleusercontent.com/-pz5BvWQam1w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP3Cvxm209JjG34xIROsl0d6Kz9Zg/photo.jpg,"Couldn't edit any habit in this apps can't add pages, episodes, and liters bec they're not available in the edit menu.. The only way to edit a habit is to delete it.",1,29,,2019-05-30 10:54:01,"Dear user, we have detected multiple 1 star poorly justified reviews comming all from the same device with multiple accounts. +If you need assistance from our support contact to habitnow.apps@gmail.com or use the help channel integrated in the app. +We are willing to help you. +HabitNow Support",2019-06-10 02:25:07,newest,com.habitnow +Good Kisser,https://lh3.googleusercontent.com/-rRIomBZQy_8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOkLzv7pMJXfbNAiE_-IROu9pGYcg/photo.jpg,App has too many error to count.,1,3,,2019-05-29 10:03:31,"Dear user, we have detected multiple 1 star poorly justified reviews comming all from the same device with multiple accounts. +If you need assistance from our support contact to habitnow.apps@gmail.com or use the help channel integrated in the app. +We are willing to help you. +HabitNow Support",2019-06-10 02:25:10,newest,com.habitnow +Nom Deplume,https://lh3.googleusercontent.com/-3UpwcprCws8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNvxbKz03eYxe_xR0Vnb0KM0Gho1A/photo.jpg,"I'm very sorry I bought the full version so quickly. The only benefit I found so far, is the ability to add more than 7 habits. I couldn't find a report that would provide information about my success and pinpoint areas that I seem to regularly miss. I was drawn to the simple UI but will probably write this off as a waste of money and return to Daily Tasks.",2,22,1.2.3,2020-03-19 22:56:10,"Hi Nom: There is a detailed list with all the premium benefits in the premiun details section. You can check you habits statistics in the section ""My Habits"", touching on any of your habit cards. If you want to talk with our support, contact us to habitnow.apps@gmail.com. We are always open to improve. Regards.",2020-03-19 23:41:24,most_relevant,com.habitnow +B Mize,https://lh3.googleusercontent.com/a-/AOh14GiQ_6pYbT13-5vv5xLMdPudZCireGZNnWDXSRpzOQ,"Pretty solid app, does what it seems, but one problem for me is that the alarms don't go off when they're supposed to. Instead of going off at the time I set, they all go off next time I open the app. They never go off until I open the app, so they're useless.",2,1,1.2.3,2020-01-04 15:27:50,"Sorry for the issue. But it is not an app error, your device is blocking the notifications. Make sure that autostart is enabled for HabitNow and you don't have any battery optimizer disabling the notifications. If you need to be guided contact us to habitnow.apps@gmail.com and we will be glad to help you!",2020-01-04 15:46:27,most_relevant,com.habitnow +Febe Mertens,https://lh3.googleusercontent.com/a-/AOh14GiNMUVeryslh0byuY_6yt_bSvo7tA3wq-Pcc2fbuA,"Great idea, but does not give notifications for me, which was really the thing I was looking for....",2,0,,2019-12-30 11:07:57,Hi Febe: Sorry for the issue but that's not an app problem. There is a battery optimizer killing our notifications and alarm. Contact us to habitnow.apps@gmail.com and we will be glad to help you to exclude HabitNow from it. Regards.,2019-12-30 12:51:55,most_relevant,com.habitnow +Annie Brown,https://lh3.googleusercontent.com/-m1-BLJjv08A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP8M-1q7Hmkxa1xrV7RwfYNlbnNeA/photo.jpg,I don't get this app,2,1,,2019-09-10 12:42:59,Hi Annie. We think our app is simple and easy to use. If you need help from our support contact us to habitnow.apps@gmail.com. Thanks.,2019-09-05 13:43:18,most_relevant,com.habitnow +Googol Play,https://lh3.googleusercontent.com/-QP4-3pHTKbs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOm9wbMNS8LsRI-fmGLE4NS_LDxUg/photo.jpg,No habits library,2,0,,2019-10-05 18:57:07,We don't understand your issue. You can check your habits in the main screen. Regards.,2019-10-06 15:32:31,most_relevant,com.habitnow +Nom Deplume,https://lh3.googleusercontent.com/-3UpwcprCws8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNvxbKz03eYxe_xR0Vnb0KM0Gho1A/photo.jpg,"I'm very sorry I bought the full version so quickly. The only benefit I found so far, is the ability to add more than 7 habits. I couldn't find a report that would provide information about my success and pinpoint areas that I seem to regularly miss. I was drawn to the simple UI but will probably write this off as a waste of money and return to Daily Tasks.",2,22,1.2.3,2020-03-19 22:56:10,"Hi Nom: There is a detailed list with all the premium benefits in the premiun details section. You can check you habits statistics in the section ""My Habits"", touching on any of your habit cards. If you want to talk with our support, contact us to habitnow.apps@gmail.com. We are always open to improve. Regards.",2020-03-19 23:41:24,newest,com.habitnow +B Mize,https://lh3.googleusercontent.com/a-/AOh14GiQ_6pYbT13-5vv5xLMdPudZCireGZNnWDXSRpzOQ,"Pretty solid app, does what it seems, but one problem for me is that the alarms don't go off when they're supposed to. Instead of going off at the time I set, they all go off next time I open the app. They never go off until I open the app, so they're useless.",2,1,1.2.3,2020-01-04 15:27:50,"Sorry for the issue. But it is not an app error, your device is blocking the notifications. Make sure that autostart is enabled for HabitNow and you don't have any battery optimizer disabling the notifications. If you need to be guided contact us to habitnow.apps@gmail.com and we will be glad to help you!",2020-01-04 15:46:27,newest,com.habitnow +Febe Mertens,https://lh3.googleusercontent.com/a-/AOh14GiNMUVeryslh0byuY_6yt_bSvo7tA3wq-Pcc2fbuA,"Great idea, but does not give notifications for me, which was really the thing I was looking for....",2,0,,2019-12-30 11:07:57,Hi Febe: Sorry for the issue but that's not an app problem. There is a battery optimizer killing our notifications and alarm. Contact us to habitnow.apps@gmail.com and we will be glad to help you to exclude HabitNow from it. Regards.,2019-12-30 12:51:55,newest,com.habitnow +Googol Play,https://lh3.googleusercontent.com/-QP4-3pHTKbs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOm9wbMNS8LsRI-fmGLE4NS_LDxUg/photo.jpg,No habits library,2,0,,2019-10-05 18:57:07,We don't understand your issue. You can check your habits in the main screen. Regards.,2019-10-06 15:32:31,newest,com.habitnow +Annie Brown,https://lh3.googleusercontent.com/-m1-BLJjv08A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP8M-1q7Hmkxa1xrV7RwfYNlbnNeA/photo.jpg,I don't get this app,2,1,,2019-09-10 12:42:59,Hi Annie. We think our app is simple and easy to use. If you need help from our support contact us to habitnow.apps@gmail.com. Thanks.,2019-09-05 13:43:18,newest,com.habitnow +Daniel Adzraku,https://lh3.googleusercontent.com/a-/AOh14GgECGu75gThlC1cUYtn6x907hHlvtjJiEwcjbgZkQ,Just started using the app. App is user friendly but I put my phone in vibration mode and notification alarms never worked. All the times I set passed without any notification. I am surprised because I had taken HabitNow off the battery optimisation list on my phone and I expected alarms to work without any hitches.,3,0,1.2.3,2020-03-25 08:41:30,"Hi Daniel: Sorry for the issue. Infinix phones have a very instrusive app manager that closes the apps in backuround. If you need help to exclude HabitNow from it contact us to habitnow.app@gmail.com and we will be glad to help. Best regards, HabitNow Team",2020-03-25 14:59:29,most_relevant,com.habitnow +Keksi Krümel,https://lh3.googleusercontent.com/-gTiFc-Vj0AE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNztQvSkIK8sgjm88JkxcLZwV1Erw/photo.jpg,"I like this app and I bought Premium, even it was a little expensive (5,49 Euro). What I don't like is: Habits ""with a numeric value"" don't allow ""at least 0 times a day"". If you want to do something 6 times a week, with the possibility to do it twice on one day, it will stay undone the other days (-1 *). Tasks/Habits which are marked as undone may be send to the bottom, too (-1 *). Whitout Premium you only can scedule up to 7 habits! After a removal of any named defect I will change my rating.",3,3,1.2.3,2020-02-10 21:41:38,Hi. We work hard to make HabitNow a good app everyday. We have a private support channel continuously taking suggestions from the users. 1 star reviews are really harmfull for a brand new app like this and can affect a lot its overall rating and so its future development. It would be of great help if your rating reflects the positive aspects too.,2019-08-03 12:25:27,most_relevant,com.habitnow +T S,https://lh3.googleusercontent.com/-cskkOLnkZqo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOiZI5tdBtnQ-a5Mstnhu3Uv6iqKQ/photo.jpg,"Firstly, thanks for your quick responses back. I appreciate it. Ok, so can you explain how to do it and where that is on the app? Because there's no tutorial for that part. When I click on the other tabs that show the month stats and graph there's nothing indicating that the old schedule has been saved in an independent track and a new track created.",3,3,1.2.3,2020-02-29 06:50:32,"Hi TS: That feature will allow to edit the schedule, but keeping the statistics for your old data. For example: If you started a habit in January with a certain frequency and you want to change it, the initial schedule will be saved in an independent track instead of being overwrited and a new track will be created, with the new schedule statistics",2020-02-28 21:29:45,most_relevant,com.habitnow +Autumn Reese,https://lh3.googleusercontent.com/a-/AOh14GgQ2vMjfw-fJPOMZCEoFtLwkDQ2IgmkbqfpClkoAA,It has almost everything that I need but the thing that frustrates me the most is the calendar view. That's really the most important thing to see how many days you've tracked in a row. Switch to calendar view it looks just like a regular calendar and nothing is highlighted for anything. You have to click on each individual day to see what it looks like.,3,6,1.2.3,2019-12-01 14:56:38,The calendar IS a regular calendar. That is its function. A calendar. You can touch on a day and see it's schedule. The apps has many options and also has a calendar. You can navigate between days touching on the arrows on top. Regards,2019-12-01 15:11:21,most_relevant,com.habitnow +Allan,https://lh3.googleusercontent.com/-d7dcM4JCt0g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOa5AlxzYKmUFhhxGx9NMspmxCvHw/photo.jpg,I like this app. It's simple and gets the job done. Only downside is you're allowed to track up to only seven habits without the premium version.,3,2,1.2.3,2020-02-08 07:23:54,,,most_relevant,com.habitnow +Richard Lynch,https://lh3.googleusercontent.com/a-/AOh14Gh_zMOgrlT_OaQMf0BNyLqPCnJ1Zl0mE7Ys8fds,"Setting habits was not simple enough and at the same time was missing options. It kept telling me to choose a number, I would, press next, and same error.",3,18,1.2.3,2020-01-18 06:11:52,,,most_relevant,com.habitnow +Kelsie,https://lh3.googleusercontent.com/a-/AOh14GjcGdNXUFAHwUkudgXUOnLwvjjoN2S8xJwp0osn2jA,I can't arrange my habits in the order I want. I have to choose from preselected options like alphabetical.,3,36,1.2.3,2020-01-07 07:07:12,Most users have lists with many items. We decided to add the predefined order options so that users do not have the need to sort their tasks all the time. Just imagine ordering 20 tasks every day. You can use the priority option to show the most important activities at the beginning! Greetings,2020-01-07 12:45:26,most_relevant,com.habitnow +Sabeena Mohammed,https://lh3.googleusercontent.com/a-/AOh14GgcWfGtTmX1W1qa91TzbIa09rXqVrZUSxH6y1D_tQ,I don't get any notification on the tasks to be done neither do alarm work and so I am get frustrated pls do help me with this apart from that it is a good habit tracking app,3,32,1.2.3,2019-11-27 13:18:29,Hi Sabeena: This is happening due to a battery optimizer in your phone. Contact us to habitnow.apps@gmail.com and we will guide you to disable it. Regards,2019-11-27 15:12:51,most_relevant,com.habitnow +Luyam Garcia,https://lh3.googleusercontent.com/a-/AOh14GjFcTfRm3LQYetBST0uZDIwz0kMetlYX0nLC4oUTw,You can have just 5 habits for free. We should have more,3,0,1.2.3,2020-02-19 13:34:18,Hi Luyam: You can add 7 habits for free and unlimited tasks. Regards!,2020-02-19 14:26:52,most_relevant,com.habitnow +Ryan Akaam,https://lh3.googleusercontent.com/-HtgCJXK1ZbM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPCocTbaeh2kY3BveQtsJYvAemErg/photo.jpg,I did like the app..after I'm reinstalling the app..what happens to my In app purchase..I had purchased the app..Rt now which I'm using is it the paid one or free one. Do I need to pay for premium again??,3,0,1.2.3,2019-12-22 12:51:57,"Ryan: Thank you for replying! You shouldn't pay again, if you are logged in with the same Google account that you used to purchase the app before, it will auto Synchronize your premium status from the Play Store. We can help you to check your premium status if you need to. Contact us to habitnow.apps@gmail.com and we will be glad to help.",2019-12-22 22:35:05,most_relevant,com.habitnow +Rudrava Roy,https://lh3.googleusercontent.com/-gX5BiuXZ2nQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPaP2IG1noSMn6cLXHnskJ43e4LPQ/photo.jpg,"My personal experience with the app makes me say this is deforme designed more as a task management app than a habit tracking app. The two things I want to do when building a new habit are 1) easily enter the stats for the habits I'm tracking and 2) see the timeline of the habit growth in a snapshot or as a dashboard. This app focuses on ""today's tasks"", so getting to the specific habits, entering information for another day and charting progress are too cumbersome.",3,0,,2020-01-25 14:50:21,"Hi: The app was designed as a habit tracker. After some time of development, we found useful to add the to-do list feature. There are plenty of habit trackers out there but none of them integrates the concept of daily routine. We think the statistics that the app provides are more than enough to allow te correct tracking of any habit. Greetings!",2020-01-25 15:30:24,most_relevant,com.habitnow +Shiro Gato,https://lh3.googleusercontent.com/a-/AOh14Gi__4X3ZkbrkiWJhabMYYAM3J91DbekVJEwiKsVSQ,"This app works nice if you want to track daily or weekly tasks, but it was impossible for me to schedule tasks that should happen at a certain interval. For example, every two weeks, or every 5th of the month. There is the option to schedule a task a certain amount of times per month, but not to set specific intervals or dates for such occurrences. This was unfortunately a dealbreaker.",3,9,1.2.1,2019-10-26 08:41:59,,,most_relevant,com.habitnow +Meg S,https://lh3.googleusercontent.com/-NcM3jfr_k-o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNJKx45a8t7ki4sfk8LHOeBbcrQBQ/photo.jpg,"Nice but it's really irritating that you can't edit frequency! Or a start date but I could live with that. Unfortunately, when your schedule / circumstances change, you have to create a new habit because you can't change days and frequency! EDIT: Thanks guys for the prompt response! Fingers crossed the update with this feature is released soon! 🤞",3,1,,2019-11-23 16:17:38,Hi Meg. We know that issue and we will work on it as soon as possible! Regards!,2019-11-23 16:13:25,most_relevant,com.habitnow +Korinne Shaver,https://lh3.googleusercontent.com/a-/AOh14Gg3JTyqCC3Whhb34kiIW0_QILj7_HA1WhuiCKsC09g,"It's very useful so far, however I'm not sure if you can change your daily routine. I made one for Monday and it auto filled for every single day of the week, whereas I need them different and when I go to try and add a new task to my day that I want, it changes it for all of them. Disappointing and useless if theres no way to bypass that...might as well go back to pen and paper.",3,3,1.2.1,2019-10-10 13:49:02,Hi Korinne. I think you are not understanding how the app works. Contact us to habitnow.apps@gmail.com and we will be glad to help you. We have limited characters to reply here. You can create a diffrent routine for every day of the week or set diffrent repeating settings for your activities. We are sure that our app is not 'useless'. Regards.,2019-10-06 19:14:28,most_relevant,com.habitnow +Areeb Shams,https://lh3.googleusercontent.com/-Akso0bYkCk4/AAAAAAAAAAI/AAAAAAAA21A/AAKWJJPiYIU2cDObBlQUp0bue5UrAGPwBg/photo.jpg,"Seems like it could have been great for me. However, lack of ability to modify repeating schedule (e.g. which days of the week) is a blocker. Switched to HabitHub for now.",3,1,,2019-11-25 22:34:06,,,most_relevant,com.habitnow +Binyamin Pinkus,https://lh3.googleusercontent.com/a-/AOh14Gj5CgBDWj7mH17S1eqkq3SzsL04j_CuX4q6Hhg9Rw,Unfortunately the free version does not provide enough functionality for me. I am trying to track habits but it stopped me at 7.,3,2,1.2.1,2019-11-20 06:50:34,"Hi Binyamin Pinkus: We cannot bring all functionalities for free because we need premium users to keep developing the app. Most of habit tracker in the market have 3 or 5 as habit limit. We decided to set it at 7 in order to benefit our free users. Kind regards, HabitNow Team",2019-11-20 15:08:02,most_relevant,com.habitnow +Priya gupta,https://lh3.googleusercontent.com/a-/AOh14GjAQdy3xxRqTfygh3UkM_Zfh_iJzmkMihF-KfEl4g,"Please add Data synchronisation with Google Drive...So, when we change device we can get our old Data on signing in",3,0,,2020-02-17 19:35:00,Hi Priya: We have plans to work on that very soon. Meanwhile you can transfer your data via the backups tool that the app includes. Thank you for your feedback!,2020-02-17 19:38:38,most_relevant,com.habitnow +Chantelle v.d. Vyver,https://lh3.googleusercontent.com/a-/AOh14Gidlws5-4hRYUBumOihHMGen_29ApMofepU2ggGQA,"Decent. Simple. Just a bit too simple for me. I thought the percentages counted for task progress S though it were a whole project. Unfortunately, it seems to only relate to habits. I'd like to see subtasks and then percentage competed. At least the habit statistics are clear and aesthetically pleasing.",3,0,,2019-08-18 16:21:24,,,most_relevant,com.habitnow +Raj V Jain,https://lh3.googleusercontent.com/a-/AOh14GjmMVgthO4ga_jE0adApbHrYxyWXBoLpPGEHqEHNA,"UI needs major improvements. The only app I believe which give quantitative habits also (not just binary) like 4 pages to read. Statistics based on that can be improved but nevertheless kudos for the idea. This is only app which gives upto 7 habits in free version, so keeping it. else due to UI would have rejected long time back. Current apps in market give 3 or 5 max.",3,3,1.1.47,2019-09-08 07:50:12,You can send your design ideas to habitnow.apps@gmail.com,2019-09-08 11:15:42,most_relevant,com.habitnow +Sukhvinder Sidhu,https://lh3.googleusercontent.com/a-/AOh14GjzchIBr8zCypUuJVr7rNkoR78Jcn-Rl_osqYDPzw,"Tasks cannot be ordered by their time. A habit not done is not shown as overdue. EDIT: I checked again to use it, but 1) Recurring task cannot be created. 2) Habits are shown like scheduled tasks. It's motivating to see habit progress instead on landing screen 3) It's more useful to see progress on habit activity instead of successful day. If we set to do 2 times a day but we could do it only once, it should show progress for a 30 day goal as 1/2 (today), 1/60 (total) instead of 0/30 or 1/30.",3,1,1.1.47,2019-08-21 08:38:37,"Hi Sukhvinder, we just added the option to sort habits and tasks by their time of the day. If you like that feature don't forget to update your review! HabitNow Support",2019-07-27 01:42:16,most_relevant,com.habitnow +Iqbal Saputra,https://lh3.googleusercontent.com/a-/AOh14GjS2vveKPGtpnySPzPU-H8H_gp-IRZDr074i_5BWg,I have enough credit but I can't purchase for premium,3,0,1.2.3,2019-11-28 01:01:52,Sorry but this is not our fault. Contact Google Play Support instead. If you have any doubts about our app contact us to habitnow.apps@gmail.com and we will answer shortly. 1 stars reviews are really harmful for our app score and sadly we can´t do anything to solve payment issues. Regards,2019-11-28 01:00:23,most_relevant,com.habitnow +Jia Hui,https://lh3.googleusercontent.com/-t9P1Tifze5w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPphSFV960yrPF_Cm9QCy21JacaHg/photo.jpg,lobe this app but the only thing that is stopping me from getting premium is that i am unable to arrange the habits in order. habits are also not arranged according to time and it makes it so hard to find them. if you do fix it i will purchase this app,3,0,1.1.42,2019-07-25 02:12:21,Hi Jia Hui. We just updated our app to version 1.1.43. Now is possible to sort your habits and tasks by time. You can configure it in the app settings. If you like that feature don't forget to update your review! HabitNow Support,2019-07-26 04:41:29,most_relevant,com.habitnow +Brian Spravka,https://lh3.googleusercontent.com/-CA9VKL0bblI/AAAAAAAAAAI/AAAAAAAAoKE/AAKWJJP-SOce2lwRUvBZMAMlYlkgJV8vYg/photo.jpg,"For $4.99 to $9.99, I'd like more widgets and customization. As it stands, the main widget, ""List"", is block white.",3,0,1.1.42,2019-07-24 13:39:29,,,most_relevant,com.habitnow +Pat Homer,https://lh3.googleusercontent.com/a-/AOh14GhkmTpxp4yDx7EVA0ErNiAQbxu65lJ1-TrYXNliyIg,"guys please assist me on notification, no notification on my one plus 6. ive paid premium , problem still persist even there's no battery saver nor notification blocker turned on. please advise. . thanks",3,0,1.2.1,2019-09-15 14:22:10,We just checked about notifications issues on OnePlus and found some info. Contact us to habitnow.apps@gmail.com so we can help you to solve the problem.,2019-09-15 15:43:13,most_relevant,com.habitnow +Andreas Dm,https://lh3.googleusercontent.com/-k26MKn25aeY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNotIWeg_va0O4ODPI7zta874OlvQ/photo.jpg,I dont like u use numbers instead of yes or no but it doesnt show any difference on the calendar eg color difference.,3,1,,2020-03-24 16:36:51,Hi Andreas: The calendar colors indicates whether if you reached your goal or not. Green is for success and Red is for those days where you didn't reach the minimum quantity that you set. Greetings!,2020-03-24 19:02:37,most_relevant,com.habitnow +Lesley Dye,https://lh3.googleusercontent.com/-gEPcbwAZ-pQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOIw9qbfYnmd8rDKXNqeC_PskV1ow/photo.jpg,Great app but it never archived old chores so didne let points,3,0,,2020-02-22 21:01:32,Hi Lesley: Thank you for contacting us! Did you have a problem with the app? Contact us to habitnow.apps@gmail.com and we will be glad to help!,2020-02-22 23:00:05,most_relevant,com.habitnow +Pillow_Man 1,https://lh3.googleusercontent.com/-TfepRtTjjxY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJON3wEodM8iAgz4aVmAYvYcROo-FA/photo.jpg,Its a good app but i think thers some glitch i cant have more than 6 tasks when i create one it just dosen't show.,3,0,1.1.47,2019-08-13 05:44:40,"We hope we have been helpful with your issue! +HabitNow Support",2019-08-15 19:38:06,most_relevant,com.habitnow +Michael Wallace,https://lh3.googleusercontent.com/a-/AOh14Gia1mWY6PUI3koUMrCnnVzDFQ5Fc1knvb2c0DWs95E,"Two requests please: 1) Allow the user to set what time the day/recurrent tasks reset. Not everyone's ""day"" ends at midnight! 2) Propagate the theme selected to the widget. If I have selected a dark blue theme, my widget should have the same dark blue icon(s), not a bright red HabitNow one. Good so far, more customization would make it great...thanks!",3,1,1.2.1,2019-10-13 23:27:05,"Hi Michael: Icons are images, and adding icons for each color theme would mean adding too much extra size to the application. We regret that you leave a regular rating for such minor problems. We work hard to improve the quality of our app every day in order to please our users. Regards, HabitNow Team.",2019-10-14 01:02:17,most_relevant,com.habitnow +Jake Plaskett,https://lh3.googleusercontent.com/a-/AOh14GijXmBgcW-BkaMonwa9mkE2b8ZNKBBkeYWTqKs8TA,Dark mode should not be a paid for feature in any app. Otherwise this app is ok but feels pretty unintuitive.,3,48,1.2.1,2019-10-02 17:52:06,"Sorry to hear that. Our app brings many features to free users and only certain functionalities are restricted. If you like customization, you can try the free themes. But to keep improving our app, we need that users who want a more exclusive experience buy our premium version. Thank you for the feedback. Regards, HabitNow Team",2019-10-03 02:24:26,most_relevant,com.habitnow +Michael Cabrera,https://lh3.googleusercontent.com/a-/AOh14GgTPzHwT20Aui2ZJVUVxgP5E10DqWc0q6hO_rnfBA,I would give 5 stars if it had the feature to rearrange the items with your specific order instead or being predetermined,3,0,1.1.47,2019-08-26 16:09:37,Hi Michael. We work a lot to make HabitNow possible. It is difficult to add a functionality like that to a complex app like this because a physical limitation of tap events. We encourage you to create custom orders by setting diffrent priorities to your activities combined with the provided sorting options. Regards. HabitNow Team,2019-08-26 16:20:35,most_relevant,com.habitnow +Georgia,https://lh3.googleusercontent.com/a-/AOh14Gi0gK7QmpjIjIX2DvA-gwlyRePhdLtrMlD8uiufzg,Can't set times for when tasks need to be completed. Can't tick off tasks for the next day,3,0,1.2.1,2019-10-04 19:28:26,"Hi Indigo. You can set alarms and reminders for all your tasks and habits. We do not find intuitive to allow users to register values ​​for future dates. We believe that this functionality could lead to confusion. If you want to send a suggestion to our development team send a mail to habitnow.apps@gmail.com. Regards, HabitNow Team",2019-10-04 23:45:01,most_relevant,com.habitnow +Ryan Ng,https://lh3.googleusercontent.com/a-/AOh14GjdoaRYTFegtIEaRg8bkapglSbO_SbLkSqDS6Y2aA,"Unable to edit the day you want to do your habit unless I delete and recreate the habit, which means I would lose my past statistics",3,5,1.2.3,2019-12-14 22:27:14,We are working on that. Keeping the statistics imply some complex calculations. We will release an update on next week with a new multi track option for habits. Regards.,2019-12-14 23:35:17,most_relevant,com.habitnow +Daniel Adzraku,https://lh3.googleusercontent.com/a-/AOh14GgECGu75gThlC1cUYtn6x907hHlvtjJiEwcjbgZkQ,Just started using the app. App is user friendly but I put my phone in vibration mode and notification alarms never worked. All the times I set passed without any notification. I am surprised because I had taken HabitNow off the battery optimisation list on my phone and I expected alarms to work without any hitches.,3,0,1.2.3,2020-03-25 08:41:30,"Hi Daniel: Sorry for the issue. Infinix phones have a very instrusive app manager that closes the apps in backuround. If you need help to exclude HabitNow from it contact us to habitnow.app@gmail.com and we will be glad to help. Best regards, HabitNow Team",2020-03-25 14:59:29,newest,com.habitnow +Andreas Dm,https://lh3.googleusercontent.com/-k26MKn25aeY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNotIWeg_va0O4ODPI7zta874OlvQ/photo.jpg,I dont like u use numbers instead of yes or no but it doesnt show any difference on the calendar eg color difference.,3,1,,2020-03-24 16:36:51,Hi Andreas: The calendar colors indicates whether if you reached your goal or not. Green is for success and Red is for those days where you didn't reach the minimum quantity that you set. Greetings!,2020-03-24 19:02:37,newest,com.habitnow +T S,https://lh3.googleusercontent.com/-cskkOLnkZqo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOiZI5tdBtnQ-a5Mstnhu3Uv6iqKQ/photo.jpg,"Firstly, thanks for your quick responses back. I appreciate it. Ok, so can you explain how to do it and where that is on the app? Because there's no tutorial for that part. When I click on the other tabs that show the month stats and graph there's nothing indicating that the old schedule has been saved in an independent track and a new track created.",3,3,1.2.3,2020-02-29 06:50:32,"Hi TS: That feature will allow to edit the schedule, but keeping the statistics for your old data. For example: If you started a habit in January with a certain frequency and you want to change it, the initial schedule will be saved in an independent track instead of being overwrited and a new track will be created, with the new schedule statistics",2020-02-28 21:29:45,newest,com.habitnow +Lesley Dye,https://lh3.googleusercontent.com/-gEPcbwAZ-pQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOIw9qbfYnmd8rDKXNqeC_PskV1ow/photo.jpg,Great app but it never archived old chores so didne let points,3,0,,2020-02-22 21:01:32,Hi Lesley: Thank you for contacting us! Did you have a problem with the app? Contact us to habitnow.apps@gmail.com and we will be glad to help!,2020-02-22 23:00:05,newest,com.habitnow +Luyam Garcia,https://lh3.googleusercontent.com/a-/AOh14GjFcTfRm3LQYetBST0uZDIwz0kMetlYX0nLC4oUTw,You can have just 5 habits for free. We should have more,3,0,1.2.3,2020-02-19 13:34:18,Hi Luyam: You can add 7 habits for free and unlimited tasks. Regards!,2020-02-19 14:26:52,newest,com.habitnow +Priya gupta,https://lh3.googleusercontent.com/a-/AOh14GjAQdy3xxRqTfygh3UkM_Zfh_iJzmkMihF-KfEl4g,"Please add Data synchronisation with Google Drive...So, when we change device we can get our old Data on signing in",3,0,,2020-02-17 19:35:00,Hi Priya: We have plans to work on that very soon. Meanwhile you can transfer your data via the backups tool that the app includes. Thank you for your feedback!,2020-02-17 19:38:38,newest,com.habitnow +Keksi Krümel,https://lh3.googleusercontent.com/-gTiFc-Vj0AE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNztQvSkIK8sgjm88JkxcLZwV1Erw/photo.jpg,"I like this app and I bought Premium, even it was a little expensive (5,49 Euro). What I don't like is: Habits ""with a numeric value"" don't allow ""at least 0 times a day"". If you want to do something 6 times a week, with the possibility to do it twice on one day, it will stay undone the other days (-1 *). Tasks/Habits which are marked as undone may be send to the bottom, too (-1 *). Whitout Premium you only can scedule up to 7 habits! After a removal of any named defect I will change my rating.",3,3,1.2.3,2020-02-10 21:41:38,Hi. We work hard to make HabitNow a good app everyday. We have a private support channel continuously taking suggestions from the users. 1 star reviews are really harmfull for a brand new app like this and can affect a lot its overall rating and so its future development. It would be of great help if your rating reflects the positive aspects too.,2019-08-03 12:25:27,newest,com.habitnow +Allan,https://lh3.googleusercontent.com/-d7dcM4JCt0g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOa5AlxzYKmUFhhxGx9NMspmxCvHw/photo.jpg,I like this app. It's simple and gets the job done. Only downside is you're allowed to track up to only seven habits without the premium version.,3,2,1.2.3,2020-02-08 07:23:54,,,newest,com.habitnow +Rudrava Roy,https://lh3.googleusercontent.com/-gX5BiuXZ2nQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPaP2IG1noSMn6cLXHnskJ43e4LPQ/photo.jpg,"My personal experience with the app makes me say this is deforme designed more as a task management app than a habit tracking app. The two things I want to do when building a new habit are 1) easily enter the stats for the habits I'm tracking and 2) see the timeline of the habit growth in a snapshot or as a dashboard. This app focuses on ""today's tasks"", so getting to the specific habits, entering information for another day and charting progress are too cumbersome.",3,0,,2020-01-25 14:50:21,"Hi: The app was designed as a habit tracker. After some time of development, we found useful to add the to-do list feature. There are plenty of habit trackers out there but none of them integrates the concept of daily routine. We think the statistics that the app provides are more than enough to allow te correct tracking of any habit. Greetings!",2020-01-25 15:30:24,newest,com.habitnow +Richard Lynch,https://lh3.googleusercontent.com/a-/AOh14Gh_zMOgrlT_OaQMf0BNyLqPCnJ1Zl0mE7Ys8fds,"Setting habits was not simple enough and at the same time was missing options. It kept telling me to choose a number, I would, press next, and same error.",3,18,1.2.3,2020-01-18 06:11:52,,,newest,com.habitnow +Kelsie,https://lh3.googleusercontent.com/a-/AOh14GjcGdNXUFAHwUkudgXUOnLwvjjoN2S8xJwp0osn2jA,I can't arrange my habits in the order I want. I have to choose from preselected options like alphabetical.,3,36,1.2.3,2020-01-07 07:07:12,Most users have lists with many items. We decided to add the predefined order options so that users do not have the need to sort their tasks all the time. Just imagine ordering 20 tasks every day. You can use the priority option to show the most important activities at the beginning! Greetings,2020-01-07 12:45:26,newest,com.habitnow +Ryan Akaam,https://lh3.googleusercontent.com/-HtgCJXK1ZbM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPCocTbaeh2kY3BveQtsJYvAemErg/photo.jpg,I did like the app..after I'm reinstalling the app..what happens to my In app purchase..I had purchased the app..Rt now which I'm using is it the paid one or free one. Do I need to pay for premium again??,3,0,1.2.3,2019-12-22 12:51:57,"Ryan: Thank you for replying! You shouldn't pay again, if you are logged in with the same Google account that you used to purchase the app before, it will auto Synchronize your premium status from the Play Store. We can help you to check your premium status if you need to. Contact us to habitnow.apps@gmail.com and we will be glad to help.",2019-12-22 22:35:05,newest,com.habitnow +Ryan Ng,https://lh3.googleusercontent.com/a-/AOh14GjdoaRYTFegtIEaRg8bkapglSbO_SbLkSqDS6Y2aA,"Unable to edit the day you want to do your habit unless I delete and recreate the habit, which means I would lose my past statistics",3,5,1.2.3,2019-12-14 22:27:14,We are working on that. Keeping the statistics imply some complex calculations. We will release an update on next week with a new multi track option for habits. Regards.,2019-12-14 23:35:17,newest,com.habitnow +Autumn Reese,https://lh3.googleusercontent.com/a-/AOh14GgQ2vMjfw-fJPOMZCEoFtLwkDQ2IgmkbqfpClkoAA,It has almost everything that I need but the thing that frustrates me the most is the calendar view. That's really the most important thing to see how many days you've tracked in a row. Switch to calendar view it looks just like a regular calendar and nothing is highlighted for anything. You have to click on each individual day to see what it looks like.,3,6,1.2.3,2019-12-01 14:56:38,The calendar IS a regular calendar. That is its function. A calendar. You can touch on a day and see it's schedule. The apps has many options and also has a calendar. You can navigate between days touching on the arrows on top. Regards,2019-12-01 15:11:21,newest,com.habitnow +Iqbal Saputra,https://lh3.googleusercontent.com/a-/AOh14GjS2vveKPGtpnySPzPU-H8H_gp-IRZDr074i_5BWg,I have enough credit but I can't purchase for premium,3,0,1.2.3,2019-11-28 01:01:52,Sorry but this is not our fault. Contact Google Play Support instead. If you have any doubts about our app contact us to habitnow.apps@gmail.com and we will answer shortly. 1 stars reviews are really harmful for our app score and sadly we can´t do anything to solve payment issues. Regards,2019-11-28 01:00:23,newest,com.habitnow +Sabeena Mohammed,https://lh3.googleusercontent.com/a-/AOh14GgcWfGtTmX1W1qa91TzbIa09rXqVrZUSxH6y1D_tQ,I don't get any notification on the tasks to be done neither do alarm work and so I am get frustrated pls do help me with this apart from that it is a good habit tracking app,3,32,1.2.3,2019-11-27 13:18:29,Hi Sabeena: This is happening due to a battery optimizer in your phone. Contact us to habitnow.apps@gmail.com and we will guide you to disable it. Regards,2019-11-27 15:12:51,newest,com.habitnow +Areeb Shams,https://lh3.googleusercontent.com/-Akso0bYkCk4/AAAAAAAAAAI/AAAAAAAA21A/AAKWJJPiYIU2cDObBlQUp0bue5UrAGPwBg/photo.jpg,"Seems like it could have been great for me. However, lack of ability to modify repeating schedule (e.g. which days of the week) is a blocker. Switched to HabitHub for now.",3,1,,2019-11-25 22:34:06,,,newest,com.habitnow +Meg S,https://lh3.googleusercontent.com/-NcM3jfr_k-o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNJKx45a8t7ki4sfk8LHOeBbcrQBQ/photo.jpg,"Nice but it's really irritating that you can't edit frequency! Or a start date but I could live with that. Unfortunately, when your schedule / circumstances change, you have to create a new habit because you can't change days and frequency! EDIT: Thanks guys for the prompt response! Fingers crossed the update with this feature is released soon! 🤞",3,1,,2019-11-23 16:17:38,Hi Meg. We know that issue and we will work on it as soon as possible! Regards!,2019-11-23 16:13:25,newest,com.habitnow +Binyamin Pinkus,https://lh3.googleusercontent.com/a-/AOh14Gj5CgBDWj7mH17S1eqkq3SzsL04j_CuX4q6Hhg9Rw,Unfortunately the free version does not provide enough functionality for me. I am trying to track habits but it stopped me at 7.,3,2,1.2.1,2019-11-20 06:50:34,"Hi Binyamin Pinkus: We cannot bring all functionalities for free because we need premium users to keep developing the app. Most of habit tracker in the market have 3 or 5 as habit limit. We decided to set it at 7 in order to benefit our free users. Kind regards, HabitNow Team",2019-11-20 15:08:02,newest,com.habitnow +Shiro Gato,https://lh3.googleusercontent.com/a-/AOh14Gi__4X3ZkbrkiWJhabMYYAM3J91DbekVJEwiKsVSQ,"This app works nice if you want to track daily or weekly tasks, but it was impossible for me to schedule tasks that should happen at a certain interval. For example, every two weeks, or every 5th of the month. There is the option to schedule a task a certain amount of times per month, but not to set specific intervals or dates for such occurrences. This was unfortunately a dealbreaker.",3,9,1.2.1,2019-10-26 08:41:59,,,newest,com.habitnow +Michael Wallace,https://lh3.googleusercontent.com/a-/AOh14Gia1mWY6PUI3koUMrCnnVzDFQ5Fc1knvb2c0DWs95E,"Two requests please: 1) Allow the user to set what time the day/recurrent tasks reset. Not everyone's ""day"" ends at midnight! 2) Propagate the theme selected to the widget. If I have selected a dark blue theme, my widget should have the same dark blue icon(s), not a bright red HabitNow one. Good so far, more customization would make it great...thanks!",3,1,1.2.1,2019-10-13 23:27:05,"Hi Michael: Icons are images, and adding icons for each color theme would mean adding too much extra size to the application. We regret that you leave a regular rating for such minor problems. We work hard to improve the quality of our app every day in order to please our users. Regards, HabitNow Team.",2019-10-14 01:02:17,newest,com.habitnow +Korinne Shaver,https://lh3.googleusercontent.com/a-/AOh14Gg3JTyqCC3Whhb34kiIW0_QILj7_HA1WhuiCKsC09g,"It's very useful so far, however I'm not sure if you can change your daily routine. I made one for Monday and it auto filled for every single day of the week, whereas I need them different and when I go to try and add a new task to my day that I want, it changes it for all of them. Disappointing and useless if theres no way to bypass that...might as well go back to pen and paper.",3,3,1.2.1,2019-10-10 13:49:02,Hi Korinne. I think you are not understanding how the app works. Contact us to habitnow.apps@gmail.com and we will be glad to help you. We have limited characters to reply here. You can create a diffrent routine for every day of the week or set diffrent repeating settings for your activities. We are sure that our app is not 'useless'. Regards.,2019-10-06 19:14:28,newest,com.habitnow +Georgia,https://lh3.googleusercontent.com/a-/AOh14Gi0gK7QmpjIjIX2DvA-gwlyRePhdLtrMlD8uiufzg,Can't set times for when tasks need to be completed. Can't tick off tasks for the next day,3,0,1.2.1,2019-10-04 19:28:26,"Hi Indigo. You can set alarms and reminders for all your tasks and habits. We do not find intuitive to allow users to register values ​​for future dates. We believe that this functionality could lead to confusion. If you want to send a suggestion to our development team send a mail to habitnow.apps@gmail.com. Regards, HabitNow Team",2019-10-04 23:45:01,newest,com.habitnow +Jake Plaskett,https://lh3.googleusercontent.com/a-/AOh14GijXmBgcW-BkaMonwa9mkE2b8ZNKBBkeYWTqKs8TA,Dark mode should not be a paid for feature in any app. Otherwise this app is ok but feels pretty unintuitive.,3,48,1.2.1,2019-10-02 17:52:06,"Sorry to hear that. Our app brings many features to free users and only certain functionalities are restricted. If you like customization, you can try the free themes. But to keep improving our app, we need that users who want a more exclusive experience buy our premium version. Thank you for the feedback. Regards, HabitNow Team",2019-10-03 02:24:26,newest,com.habitnow +Pat Homer,https://lh3.googleusercontent.com/a-/AOh14GhkmTpxp4yDx7EVA0ErNiAQbxu65lJ1-TrYXNliyIg,"guys please assist me on notification, no notification on my one plus 6. ive paid premium , problem still persist even there's no battery saver nor notification blocker turned on. please advise. . thanks",3,0,1.2.1,2019-09-15 14:22:10,We just checked about notifications issues on OnePlus and found some info. Contact us to habitnow.apps@gmail.com so we can help you to solve the problem.,2019-09-15 15:43:13,newest,com.habitnow +Raj V Jain,https://lh3.googleusercontent.com/a-/AOh14GjmMVgthO4ga_jE0adApbHrYxyWXBoLpPGEHqEHNA,"UI needs major improvements. The only app I believe which give quantitative habits also (not just binary) like 4 pages to read. Statistics based on that can be improved but nevertheless kudos for the idea. This is only app which gives upto 7 habits in free version, so keeping it. else due to UI would have rejected long time back. Current apps in market give 3 or 5 max.",3,3,1.1.47,2019-09-08 07:50:12,You can send your design ideas to habitnow.apps@gmail.com,2019-09-08 11:15:42,newest,com.habitnow +Michael Cabrera,https://lh3.googleusercontent.com/a-/AOh14GgTPzHwT20Aui2ZJVUVxgP5E10DqWc0q6hO_rnfBA,I would give 5 stars if it had the feature to rearrange the items with your specific order instead or being predetermined,3,0,1.1.47,2019-08-26 16:09:37,Hi Michael. We work a lot to make HabitNow possible. It is difficult to add a functionality like that to a complex app like this because a physical limitation of tap events. We encourage you to create custom orders by setting diffrent priorities to your activities combined with the provided sorting options. Regards. HabitNow Team,2019-08-26 16:20:35,newest,com.habitnow +Sukhvinder Sidhu,https://lh3.googleusercontent.com/a-/AOh14GjzchIBr8zCypUuJVr7rNkoR78Jcn-Rl_osqYDPzw,"Tasks cannot be ordered by their time. A habit not done is not shown as overdue. EDIT: I checked again to use it, but 1) Recurring task cannot be created. 2) Habits are shown like scheduled tasks. It's motivating to see habit progress instead on landing screen 3) It's more useful to see progress on habit activity instead of successful day. If we set to do 2 times a day but we could do it only once, it should show progress for a 30 day goal as 1/2 (today), 1/60 (total) instead of 0/30 or 1/30.",3,1,1.1.47,2019-08-21 08:38:37,"Hi Sukhvinder, we just added the option to sort habits and tasks by their time of the day. If you like that feature don't forget to update your review! HabitNow Support",2019-07-27 01:42:16,newest,com.habitnow +Chantelle v.d. Vyver,https://lh3.googleusercontent.com/a-/AOh14Gidlws5-4hRYUBumOihHMGen_29ApMofepU2ggGQA,"Decent. Simple. Just a bit too simple for me. I thought the percentages counted for task progress S though it were a whole project. Unfortunately, it seems to only relate to habits. I'd like to see subtasks and then percentage competed. At least the habit statistics are clear and aesthetically pleasing.",3,0,,2019-08-18 16:21:24,,,newest,com.habitnow +Pillow_Man 1,https://lh3.googleusercontent.com/-TfepRtTjjxY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJON3wEodM8iAgz4aVmAYvYcROo-FA/photo.jpg,Its a good app but i think thers some glitch i cant have more than 6 tasks when i create one it just dosen't show.,3,0,1.1.47,2019-08-13 05:44:40,"We hope we have been helpful with your issue! +HabitNow Support",2019-08-15 19:38:06,newest,com.habitnow +Jia Hui,https://lh3.googleusercontent.com/-t9P1Tifze5w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPphSFV960yrPF_Cm9QCy21JacaHg/photo.jpg,lobe this app but the only thing that is stopping me from getting premium is that i am unable to arrange the habits in order. habits are also not arranged according to time and it makes it so hard to find them. if you do fix it i will purchase this app,3,0,1.1.42,2019-07-25 02:12:21,Hi Jia Hui. We just updated our app to version 1.1.43. Now is possible to sort your habits and tasks by time. You can configure it in the app settings. If you like that feature don't forget to update your review! HabitNow Support,2019-07-26 04:41:29,newest,com.habitnow +Brian Spravka,https://lh3.googleusercontent.com/-CA9VKL0bblI/AAAAAAAAAAI/AAAAAAAAoKE/AAKWJJP-SOce2lwRUvBZMAMlYlkgJV8vYg/photo.jpg,"For $4.99 to $9.99, I'd like more widgets and customization. As it stands, the main widget, ""List"", is block white.",3,0,1.1.42,2019-07-24 13:39:29,,,newest,com.habitnow +Eliu Moraes,https://lh3.googleusercontent.com/a-/AOh14GjyiVAYHwHRmpYozofjOf-j_ZgDr8CcagmDS2xl8w,"It is a great app. But still there is space for some improvement. The calendar for example: you have one to add more tasks, other to see each specific task and the days that you did the job, but note one to see the sum of all tasks. You should create a resume calendar, where I can see the percentage of jobs that I accomplished in each day.",4,1,1.2.3,2020-04-02 23:13:39,,,most_relevant,com.habitnow +Grant Farnsworth,https://lh3.googleusercontent.com/a-/AOh14GisXy_WxYd8SQKGe94gdhYJgDCLEfh7wzaic9nNhg,"Habitnow is the first todo list with a key feature I've been looking for: to-do items that are automatically created at certain times. As such it is the best such app I've ever used. The only problem is that the author made no provision for hiding completed items. They just hang around cluttering the list--the best it does is move them to the bottom. I find it very odd that anyone would want to stare at completed to-do items. Certainly that shouldn't be the default, but there it is.",4,21,1.2.3,2020-03-18 01:10:51,,,most_relevant,com.habitnow +Jean-Christophe Hamel,https://lh3.googleusercontent.com/a-/AOh14Ggfo-IZb6IEVmIP2-b5Uvdp7b1_eVhZ6O8GYAwr1A,"Love the app. Best of it's kind IMO. Not perfect but so close! This app has the potential to be used for so much more than just habits and tasks! If I may suggest: - having the "".00"" digits be optional and not by default when setting/entering goals. - having multiple reminder/notification throughout the day on one habit to enter data multiple times a day (ex: 200 push ups a day, with 4 reminders so I can do 4x50 or something instead of having 4 habits) or the ability to group habits.",4,7,1.2.3,2020-03-09 12:47:26,"Thank you for your feedback Jean-Christophe, we will work on that!",2020-03-09 12:49:05,most_relevant,com.habitnow +Polar Torsen,https://lh3.googleusercontent.com/a-/AOh14Gjyt89DaOTIP_bmCBTr2LzXq7eBxe_ZBCNQZ0qv,"Hey, awesome app. It wasn't long until I purchased the unlocked version. However, some things could be improved. For example, you can't change units after the habit is created. And it would be nice to hide the "".0"" part after digits, since mostly it refers to ""minutes"" or ""iterations"" or ""cups"" and it looks kinda sloppy to see your goal described as ""Learn at least 30.0 minutes"" or ""Drink at least 2.0 cups"". If the number is whole, why not just hide that point zero - it'll look neater, I think.",4,28,1.2.3,2020-02-06 00:19:35,,,most_relevant,com.habitnow +Lee Coleman,https://lh3.googleusercontent.com/-t1UNSfr1X8Q/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNRU4LxVIeEe7nVfOga-0Sb-i6CYA/photo.jpg,"I looked at a lot of habit tracking apps and this one was the closest I've found to what I was looking for. Unless I missed how/where to do them, there are three things I wish I could do in the app. First, create custom categories/subcategories, especially under health. Second, edit start dates without having to delete and retype to correct. Three, have the ability to add notes.",4,9,1.2.3,2020-02-10 16:04:04,"Hi Lee: To add a note, long tap on any habit entry in the to-do list or any habit calendar. We are working on a multi-track feature to add more that one schedule for a habit. After that, we will start to work on categories edition and online backups. Thank you for your review!",2020-02-10 16:06:56,most_relevant,com.habitnow +Chelsea Smith,https://lh3.googleusercontent.com/a-/AOh14GgvEw5ysmBocYyjgn0xrOnMGeVrNLpYOMyZ8PAI,"This is a great app! The ability to track my habits and edit them as needed is really awesome. There are just 2 things I'd really like to see that would make this a 5-star review for me: 1) Full editing options (currently can't edit the frequency for my times per period items), and 2) A help/glossary feature. I'm not sure exactly what the link icon means, as it is 0 on items I've not done or done once, but 1 on items that I've done twice or three times.",4,5,1.2.3,2020-01-23 13:56:56,"HI Chelsea: We are currently working on both of your suggestions. Thank you for giving your feedback, we are glad that you like the app!",2020-01-23 14:08:45,most_relevant,com.habitnow +Igor Pellegrini,https://lh3.googleusercontent.com/-Acgzpa2vbBA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPDDMpL7_RQoXX99TBTXrbnkqwiQQ/photo.jpg,"Just installed and trying out (I'll update along with my experiences). UI/UX is pleasant and clear. Looks promising. Love the Free full-featured & Premium accessory-features philosophy; I'll pay later on to support development. ISSUES: 1) can't change start-date & repetition of a habit; if it'll break history data, at least allow duplication 2) would expect SCHEDULED days to be colored/marked in the single habit calendar, as future overview; not just as achievement overview. ## So far, good job!",4,1,1.2.3,2020-01-25 11:56:56,,,most_relevant,com.habitnow +Trevor m,https://lh3.googleusercontent.com/a-/AOh14GikbdO2pUcJZmdtDD64wQWbVPX4Sk9b6kMAonFE,"Make sure your phone settings are allowing the app to make notifications.The app works great, and is super helpful. The only thing I would recommend is to be able to make custom categories. Right now you can do other, but can't specify. Would definitely recommend app. Update 2- I can't seem to find the setting that lets me see the notifications. I can get it to work but only once then it stops. Would you be able to help me out? After my first review you said you'd be able to if I needed it.",4,7,1.2.3,2020-01-29 19:11:34,Sure! I'll answer via email because of the character limit restriction via this channel.- Contact us to habitnow.apps@gmail.com and we will answer as soon as possible!,2020-01-29 19:46:05,most_relevant,com.habitnow +Nikhil Sanghvi,https://lh3.googleusercontent.com/a-/AOh14Gh0ryxNhsd3qkcYyJzxLYg-J_3_f84cpkDqPfVxYg,"I have been using this premium version of app from past 6 months and its really great, but i still believe there are few feature still missing in it to make things easy. Like there should be dashboard which gives details of all habbits progress in bar percentage marked successful. Currently you have to go to each habbit and check the status. So a centralized section giving more details on the progress would be helpful like it is in Habbit tracker app. Also a dynamic habbit counter could be added",4,3,1.2.3,2020-03-05 03:25:48,,,most_relevant,com.habitnow +Lubos Tomicek,https://lh3.googleusercontent.com/a-/AOh14GgWbHDI8dr797mL40Dn2qSxEZ7ot5K4X0NvxltR,"Very versatile, keeps you on the track and highlights your strengths and weaknesses So impressed that I bought premium on very first day to have unlimited habits 4 stars only because there is no possibility to set monthly repeated task neither on a specific date (e.g. 3th of every month) nor on specific day (e.g. second Wednesday in a month) Otherwise it would be 5*",4,5,1.2.3,2020-01-21 04:18:07,,,most_relevant,com.habitnow +LoveAndLight 360,https://lh3.googleusercontent.com/a-/AOh14GjYkuTUcQoLWVdaSo5mWCOje7GS7LcWnFpAGWbkVCk,"Would have been a five star had something as simple as a color theme change not came with a price. Seriously?! I have to pay premium prices just to go into dark mode. If I was going to pay, I'm most certainly not paying now. That's just too petty a thing. However, great concept guys.",4,1,1.2.3,2020-01-13 01:25:41,"Hi LoveAndLight: Thank you for the feedback! Try to think it from another angle. We decided to cut only on accessory features instead of limiting the free habits or task number too much. The app is a habit tracker and to-do list, and that's what we give for free. We want to bring the best possible experience to both free and premium users!",2020-01-13 04:32:33,most_relevant,com.habitnow +Ved Kapur,https://lh3.googleusercontent.com/a-/AOh14Ghpq1r6VWd5HkRC9iuCbU1bSyv_FAX5tv0_aElh,"Nice but please give option to add different time intervals for habits. For example I want to develop habit of drinking water and want the reminder to come at multiple particular times a day. The app allows only one specific time for the reminder, so please add the mentioned feature.",4,0,1.2.3,2020-03-03 20:19:41,,,most_relevant,com.habitnow +Jainik,https://lh3.googleusercontent.com/a-/AOh14GhZHZsQ33Dpi6NR9np2vjE_MJfUHBJAj0wqLuSdVA,"It is the perfect app for me when it comes to tasks/habits , however it would've been nice to if you can add sound when i mark a task complete.",4,0,1.2.3,2020-03-28 16:07:19,,,most_relevant,com.habitnow +Sam McDonough,https://lh3.googleusercontent.com/-QI1JvHr9vBY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOIJ5iX6u-NWp94YMjbOBF1R14mjw/photo.jpg,Great however marking down one star as can't find a way to edit frequency of habit once you've saved it. Have to delete and recreate habit with new frequency.,4,1,1.2.3,2020-03-07 22:37:27,Hi Sam: We are working on that and will be added in the next update. Thanks for your feedback!,2020-03-08 00:39:34,most_relevant,com.habitnow +Linda Carnahan,https://lh3.googleusercontent.com/-MLnGEzPjxUQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOQksYfLHpEPd-peenwD29lxOYr2A/photo.jpg,I like using the app and my weekly progress. I would like to see a total of how many things I did each day and maybe a graph? I like positive reinforcement.,4,0,1.2.3,2020-03-28 21:09:39,Thank you for your feedback Linda. We will work on that soon!,2020-03-28 21:12:41,most_relevant,com.habitnow +Jay LaValle,https://lh3.googleusercontent.com/a-/AOh14GhapG3QCtlf-sMVfCwTjozjBYfZWu2lWydPWZTLSSM,"Very nice looking app for tracking habits and tasks. Have already replaced my old task app for HabitNow. Glad you can purchase the premium version and not have to buy a subscription like many other apps are now doing. I've been unable to figure out how to make tasks repeat and modify the schedule of existing habits. If these capabilities don't exist, would love to see these as improvements.",4,7,1.2.3,2019-12-01 14:25:10,"Hi Jay: Habits are repeating tasks! They work exactly in the same way, the only difference is how we named them. We are glad you like the app! Regards",2019-12-01 15:17:10,most_relevant,com.habitnow +Victoria Reid,https://lh3.googleusercontent.com/a-/AOh14GjPS2UgIgsUkJvqDsXo3xbxds65_25c5lZ4djeQIQ,"I like this app but I dont understand why I cant set up tasks that repeat unless they're habits. Or edit the categories. A habit is something you want to always do, I want to plan reoccurring tasks that are temporary.",4,1,1.2.3,2020-01-16 01:36:19,Hi Victoria: Habits works exactly as repeating tasks! If you need to add some tasks that repeat in time we recommend creating habits instead! We will work on custom categories soon! You can set a start and an end date for your habits/repeating tasks. We will change the name in the future to clarify that! Regards,2020-01-16 14:52:45,most_relevant,com.habitnow +Brielle Worrall,https://lh3.googleusercontent.com/a-/AOh14GgBRvKgBrIMOAI2wB13VmtpfAfGci6SgopScaPu_g,"Great app, keeps me on track and efficient. Helps me stick to my New Year's goals. Just wish we could add more habits.",4,0,1.2.3,2020-01-07 21:34:14,,,most_relevant,com.habitnow +Alliance Video Productions,https://lh3.googleusercontent.com/a-/AOh14GjJ88T7gT7NXD91tcQdnmczs_z5YTiG1r3BzRNHsw,"So far I like the app. Question - I see a spot where it says, notes for the month, but how do I input notes? I don't see the option to enter notes.",4,1,1.2.3,2020-02-06 14:14:42,Hi Alliance: You can create a note for every day entry of your habits. Just tap on a day in any habit calendar or on a habit entry of the todo list!,2020-02-06 15:07:29,most_relevant,com.habitnow +CalvinRea,https://lh3.googleusercontent.com/a-/AOh14Gi_Kx_xYVz8DgMx0fe4z0gWpC4FKe8ouy_hQY3lLw,"Best productivity app I've found, goal progress tracking, hierarchical task management and progress reports would make it even better",4,0,1.2.3,2020-01-26 13:20:18,,,most_relevant,com.habitnow +Babylon,https://lh3.googleusercontent.com/a-/AOh14GjJAbfXO1bEAJhsaoJe9Y4I0PYo0XZ_j_ZLgiWHtQ,I haven't started using it officially but I'm giving a 4 star because the User Interface is on point... I'm starting my habits on monday... Hopefully the functionality part will be as user friendly as the UI. Thank you,4,0,1.2.3,2020-02-22 13:01:08,,,most_relevant,com.habitnow +Nick Pcp,https://lh3.googleusercontent.com/a-/AOh14GikV_6fTiEiYOpe-9IPVSW8koY9nRMPbux7-a13NcE,"Very good job. Would like option for completed habits to hide for the day, and option to edit categories names, icons and colours",4,0,1.2.3,2020-02-17 09:20:43,,,most_relevant,com.habitnow +Shimon Kogan,https://lh3.googleusercontent.com/a-/AOh14GgRIxqFdEq-kXbkNpQ2tYZ-t8NBfpr5uKPG_uNyUg,"Great, simple app. Notifications can be better; they pop out irrespective of whether goal was achieved and thus are useless.",4,1,1.2.3,2020-01-12 03:41:28,,,most_relevant,com.habitnow +Karen Haine,https://lh3.googleusercontent.com/a-/AOh14GjGQslrH0Yz8E06X7IFKjWLBOU6m51VHxpkr3IYmP8,I like it. It's quite easy to use. Would it be possible to sync data between devices? That would be a lovely plus!,4,0,1.2.3,2020-01-28 12:25:26,Sure! We have plans to develop multi device synchronization as soon as possible.Thank you for giving your feedback!,2020-01-28 15:56:40,most_relevant,com.habitnow +Vaibhav Soundarkar,https://lh3.googleusercontent.com/-tqPvyXardoo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOZN7mAABCuCr-Hz33tIVG9jgPD3A/photo.jpg,Alarm not working at all. I have checked all settings in my phone they all are on. Could you please assist me on same.,4,0,1.2.3,2020-03-10 08:56:34,Hi Vaibhav: Alarms are programmed to work in all device models. Contact us to habitnow.apps@gmail.com and we will be glad to help!,2020-03-10 11:32:19,most_relevant,com.habitnow +GODFREY KIZITO,https://lh3.googleusercontent.com/a-/AOh14Gg60L1eUHLSCP-VceclM7Cgxrnxe2PjRMpVtgN1,"All to do lists should embrace habit monitoring. Also, I like it when a pending task persists on the list until it's done or removed.",4,0,1.2.3,2020-01-03 20:53:30,,,most_relevant,com.habitnow +Kim Klaiber,https://lh3.googleusercontent.com/a-/AOh14GivkH_2CL8S-w-XpoRG1RBUf7Tm9Zq9o80PggMjFw,Would be great to customize the alarm. I want to test pavlov effect with supplements.,4,0,1.2.3,2020-03-18 17:45:21,Hi Kim: The app uses the default alarm tone of your OS. You can change it from your device Settings. Thank you for your feedback!,2020-03-18 21:28:56,most_relevant,com.habitnow +Guenevere Wilson,https://lh3.googleusercontent.com/a-/AOh14GgdFI4DydFln_gUh2j2ON8C_p5QBVkDibA46orTaA,"Wish you could set tasks to recur at regular times, but it's a good app overall",4,0,1.2.3,2020-04-02 23:29:58,,,most_relevant,com.habitnow +Shubhankar Bag,https://lh3.googleusercontent.com/a-/AOh14Giu6ZMFAhi_Fj7opzSfJqM3kgl2ZKRSUqaNtJh5lg,Please fix the alarm functionality It does not notify me in Android 9 running Asus zenfone max pro m1,4,0,1.2.3,2020-04-04 16:02:28,Hi Shubhankar: Asus phones have a battery optimizer / app manager that blocks third party apps alarms and notifications. Contact us to habitnow.apps@gmail.com and we will be glad to help! Regards,2020-04-04 16:55:03,most_relevant,com.habitnow +Laura Yong,https://lh3.googleusercontent.com/a-/AOh14GjFtkLD4XDFrB-6pS4IZZaDvcAh5hQkrBR-Cs8EuQ,Easy to add habits and tasks; you see everything for that dat,4,0,1.2.3,2020-01-23 02:16:19,,,most_relevant,com.habitnow +Benjam John,https://lh3.googleusercontent.com/a-/AOh14GiK-kHB7s3pW1fijbNmXX-vgG5fO64L7gEZdAnt,Great app! How can I change the alarm sound,4,0,1.2.3,2020-02-03 15:50:29,Hi Benjam: The app uses your default alarm sound. You can change fro your phone settings! Regards,2020-02-03 17:51:44,most_relevant,com.habitnow +AC Brosnan,https://lh3.googleusercontent.com/-CsxgavQJzpo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNSndspaLRt7J-nRWRDkABn2Gr2qQ/photo.jpg,"Easy, simple, cheerful, effective",4,0,1.2.3,2020-04-01 13:13:23,,,most_relevant,com.habitnow +Tessa Sherlock,https://lh3.googleusercontent.com/a-/AOh14Gie7lRWPUSAskg1hIUba-10RFvXPl3IxepwIIjqHBk,"I love this app, it's the only one I've found which combines tasks and habits in a simple way. However, I do get frustrated that I can't seem to change the scheduling of a habit after I've set it up. E.g. If it's set for once a week and I want to make it twice I have to delete it and create a new one. Can you please fix this",4,11,1.2.1,2019-11-09 18:32:43,,,most_relevant,com.habitnow +Martin Mendoza,https://lh3.googleusercontent.com/a-/AOh14GjvGlBrq9FFYZMiDRCQeG4udbdEomezXAMS7YM-6w,Its a good app! I honestly dont mind that you need to have premium to get the themes. As long as there are no ads im fine! I just wish you could create a widget that you can see on your home screen. That would be so convenient!,4,0,1.2.1,2019-11-08 16:36:31,,,most_relevant,com.habitnow +Kelly Madison,https://lh3.googleusercontent.com/a-/AOh14Gi7_5d_UK6AqQmu3vvkdIXE8LzEJUFaOlwnZNmR,"Great updates! Nice color, nice experience, pro version is better, wished more was free. Need quick add tasks (see Tick Tick), needs folders, and a pomo timer would be awesome.Thanks for adding sort and categories!",4,2,1.2.1,2019-10-15 13:39:32,Hi Kelly. There are different sorting options in the app settings and we will add some more in the next update. Pomodoro timer is a great idea! Thanks for the feedback. And stay tuned for new updates. HabitNow Team,2019-08-08 01:53:15,most_relevant,com.habitnow +lj Roma,https://lh3.googleusercontent.com/a-/AOh14GiETZQwzJwTzT0MQAeFYh19a34ap7dlfGFRjjnjhg,"Really like this app, the layout, and ease of use. However, I did not see a way to go back and edit your scheduled days. Everything else you can edit,..time, date, category, but wanted to change my days and I had to delete the entry and start over to modify my scheduled days. Otherwise, I would've rated it 5☆s",4,0,,2019-07-17 19:42:40,"Hi Lj Roma: +At the moment the application does not allow the user to modify habits frecuencies because that would cause alterations in the recorded statistics. +We are currently working to add this functionality in upcomming updates. +Thank you for your review!",2019-07-17 21:44:23,most_relevant,com.habitnow +Alistair Mashumba,https://lh3.googleusercontent.com/a-/AOh14GjyDYqn8whyA3pZCCToOUdZGypAwYu0CytmLX1-Rw,"It's relatively helpful especially when checking habit progress. However, some notifications do not come on time but nevertheless, i recommend it.",4,0,1.2.1,2019-10-17 15:07:46,,,most_relevant,com.habitnow +Sha'Coya Zimmerman,https://lh3.googleusercontent.com/a-/AOh14GgpYxFph9z0Oz2HywiOT_f582__SG7KD6JJxZ0EfA,this is actually a really good app. I just have a couple of suggestions that make things a little more helpful 1. to be able to rearrange the habits or tasks by the time we have it set so it will look like more of a daily schedule instead of just a list 2. a button that goes with when you want to do your habit or task have it be more specific just in case we want to break our task or habit up and do half earlier in the day and the other half like drinking water or studying.,4,32,1.1.46,2019-08-04 04:24:14,"Hi Sha'Coya. About your first suggestion: You are able to do it! Open the app settings and select ""By time"" item in the ""To-do list order"" option. +About your second suggestion: You can set a habit with a daily value of ""Exactly 1 in a day"" and set the value of 0.5 earlier and set 1 later! +Thanks for the feedback. +HabitNow Team",2019-08-05 03:40:11,most_relevant,com.habitnow +Edward,https://lh3.googleusercontent.com/-UfbPilvZN8k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMCTtVWvfLxV0nuyfPqAJAxgjjeXw/photo.jpg,Another important feature missing is the ability to tell if I have future tasks scheduled when looking at the calendar. Currently the calander view shows days in a circle. Please colorize the background of that circle if there are tasks scheduled on that day. This is essential in order to know what days i have future tasks scheduled on. On top of the calendar it says to pick a day to see if i have a scheduled task. That is not efficient as i would need to go click each day one by one.,4,5,1.2.1,2019-09-12 20:18:16,"Hi Edward: That could consume many resources of your phone because it require several calculations for every day showed in the calendar, but we will work on that because we know it could be useful for many users. Thanks for the feedback!",2019-09-12 21:09:30,most_relevant,com.habitnow +Jay May,https://lh3.googleusercontent.com/a-/AOh14Gg8wvrYlABW7XMS3KnXwPHOxTfQDrhLclw0QEx4-A,"Very nice UI, but need some work. 1) First week day (Monday/Sunday) option in Calendar; 2) Calendar should show tasks/habits below Calendar instead of when touching the selected day only (this makes you feel you have nothing the whole day/mont)... Add this and app will be more solid... And I may jump into Premium! Keep it up!",4,1,1.1.47,2019-09-02 13:03:39,"Hi Jay: In the next update we will add new features to the calendar section. Also, an option to select Sunday/Monday as first day of week will be added soon too. At the moment, first day of week is defined by your local calendar. (i.e if you set English-UK first day of week will be Monday, if you set English-US it will be Sunday). Regards",2019-09-02 22:40:39,most_relevant,com.habitnow +Jordon Young,https://lh3.googleusercontent.com/a-/AOh14GgVR5pUq0UlqyJF1fEh3zOyFsSBWCBzmaU31VgDiw,"Love it, bought premium. BUT needs an option to schedule reoccurring tasks like ""take mom shopping first Sunday of every month at 11am.""",4,2,1.2.1,2019-11-21 17:58:16,,,most_relevant,com.habitnow +Brenda Thompkins,https://lh3.googleusercontent.com/a-/AOh14GgL2UYLKDauoRnwNx1dbHR_U7Jsuo1r0kcEzF9Wyw,"Thank you for responding and I'm looking forward to that update (customized categories). Another improvement I'd love to see are more options for a goal besides a daily one, such as save $100 per week, etc. I got the Premium and love the dark theme, this app is the best I've found for my needs. Thank you!",4,8,1.1.47,2019-08-16 16:27:43,"Hi Brenda, we are working to allow users to create their custom categories. We hope you are enjoying all the other app features! Thanks for your feedback. HabitNow Team.",2019-08-16 02:00:16,most_relevant,com.habitnow +Farshad Irani,https://lh3.googleusercontent.com/-gvink7v_JjM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPRX-d0TXki29fV8UfV-b232-F5aw/photo.jpg,Simple and practical,4,0,1.2.3,2020-01-24 06:49:01,,,most_relevant,com.habitnow +"Tea, Sugar, Salt",https://lh3.googleusercontent.com/a-/AOh14GjCTueDo_OZwSBJNQnzC8Tr-IPRkceC9qLkXoKjdA,This app is really functional and helpful. The widget is great. Caveat: you can only track seven habits without paying. It's one time five bucks and worth it though. Suggestion to the developer: make checked off habits go to the bottom of the list so we can see what we haven't done yet more easily.,4,2,1.1.47,2019-08-07 14:22:01,Hi. We are working to make HabitNow a better app. We will add that feature in the next update! Thanks for your review! HabitNow Support,2019-08-07 15:16:18,most_relevant,com.habitnow +Michal Gorecki,https://lh3.googleusercontent.com/a-/AOh14Gi7EWXXMcorCp1tGrNwk-rGGy1F1ey7HnvhBvtUew,So close to being the perfect app. 2 things needed before I switch to using it. #1. Add ability to edit and change habit status for previous days. sometimes i don't have time or forget to update my habits on the day of. #2. Ability to set first day of week for calendar (i prefer Monday),4,2,1.1.42,2019-07-21 04:24:08,"Hi Michal. +You can change habit status for previous days from ""My habits"" section, or from the habit calendar, by touching on the day you want to update. +Thanks for your review! We are working to make HabitNow a better app!",2019-07-21 21:14:41,most_relevant,com.habitnow +Scott Van Kooten,https://lh3.googleusercontent.com/a-/AOh14Gh9sbUqjvRUNCvbc2XL4L4ixFc5k54APOEFx2Ph,"Only used for a day but it's the best app I've found for daily tasks / to do lists. Would love to see the following: 1. Completed tasks move to the bottom 2. Tasks be linked to a numerical value. 3. The ability to order each item manually, daily.",4,2,1.1.47,2019-08-27 10:50:00,,,most_relevant,com.habitnow +Pratik Pattnaik,https://lh3.googleusercontent.com/a-/AOh14Gh8SAskM2b55hy4gqS95EUs9RdKKfqunuHvazHw5Q,I subscribed for premium because I feel it's nice. Could you tell me where to check the status report? And how to re-organize the habits freely without any sorting order? Thanks Edit: Please add option for statistics tab separately and need to work on showing them correctly on average.,4,0,1.1.47,2019-09-01 22:11:26,,,most_relevant,com.habitnow +Bri Spangler,https://lh3.googleusercontent.com/a-/AOh14GjyK9LNX4JQYdRjj9uUQdbDDwcw5_OAtr4fSg6dQA,I really like this app so far. Its flexible ans very customizable. The only thing I would add is either more categories/the ability to add my own. Health and Home are very broad categories. So being able to have sub categories would be nice,4,6,1.1.42,2019-07-09 19:01:38,"Thanks Bri. +We are working to make HabitNow better everyday. +Stay tuned for new updates. +HabitNow Support",2019-07-28 22:53:42,most_relevant,com.habitnow +Avery T,https://lh3.googleusercontent.com/-tw0ZyGfcHeI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPfQHEBs-oQjm_JjvgkjpKgV-uhRw/photo.jpg,"Just installed this app, it is easy to use and is quite beautiful. I would love to have a vision board feature page that I can put pics and maybe a daily quote feature (spiritual?) before jumping to Premium, please.",4,1,1.1.47,2019-09-12 03:04:05,Hi Avery: We are adding some of these features this week. Stay tuned for the update! Thanks for your feedback!,2019-09-12 13:16:18,most_relevant,com.habitnow +Donna Ashton,https://lh3.googleusercontent.com/-BODeC-gQ8aA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPsXLLkCOg6DndrUV5AtEv72lLB4w/photo.jpg,Very useful! Reminders at specific times which stay on the screen really help me get stuff done. Would like to be able to create own catagories and choose colours and icons for these in the premium version Thank you!,4,0,1.1.47,2019-08-11 13:34:07,Hi Donna: We are working to improve HabitNow everyday. Custom categories will be added in a few updates! Thanks for your review. HabitNow Team,2019-08-11 14:23:02,most_relevant,com.habitnow +Kedabs Pratt,https://lh3.googleusercontent.com/a-/AOh14GintC0OTPCloYse9yiTGN01zQ800XwV1FaZxaeyKg,great app. could be better if I could have the same habit with multiple notification times so i can do it several times a day without having to recreate the habit several times. thanks,4,0,1.1.47,2019-08-14 02:18:59,"Hi. We are currently working to add multiple schedules for the same habit! +Thanks for your review and stay tuned for new updates. +HabitNow Support",2019-08-15 19:36:54,most_relevant,com.habitnow +A Scott,https://lh3.googleusercontent.com/-uM29jp1Dz10/AAAAAAAAAAI/AAAAAAAATuU/AAKWJJOq_Ct88colg7itqgr3Sbj47LLDaQ/photo.jpg,"Very nice, but would you consider letting people create custom categories, and setting intervals such as ""every 2 days"" instead of number of times a week? With that, this app would be perfect.",4,23,1.2.1,2019-09-17 00:29:17,"Hi Scott: We are currently working on those features. Regards, HabitNow Team",2019-09-17 00:32:26,most_relevant,com.habitnow +Rachel Einfeld,https://lh3.googleusercontent.com/a-/AOh14GiTzJJOKzvLdpkiz9xQFjlLzSd82adz0Q-EFFEvDg,I liked it I just have to many things I want to put in it and I can't afford to pay for premium.,4,0,,2020-01-29 16:13:25,,,most_relevant,com.habitnow +Naved Quamar,https://lh3.googleusercontent.com/a-/AOh14Ggbz8GV3---1PTXhESdqgXnT-IXQBmBq81NRrVPa7U,Please add an option to update habit/task status from the notification bar when I receive notification on the set time. Overall good app.,4,2,1.2.1,2019-10-20 14:38:22,,,most_relevant,com.habitnow +miken521,https://lh3.googleusercontent.com/a-/AOh14Gi9pIy-lRwKNq1rGxv8g2fXrj3ZQoUIShoLd5s8gw,"I like this app alot. It lets me track my habits and goals in an intuitive way. Only would ask a few minor things, like a line on the bar chart that shows the limit/goal & task alarms even when app not active.",4,2,1.2.1,2019-09-27 19:55:12,,,most_relevant,com.habitnow +Crystal Lynn Hunter,https://lh3.googleusercontent.com/a-/AOh14GiWL3Bg71WPV-EsXo6T7kY7-1HFWdKLahD2tlTLUw,"Love it, it works! I would like to have had it transfer my habits to the new phone but the backup folder didn't work. So I had to do them all over again. overall love it though.",4,0,1.1.47,2019-08-20 17:26:29,Hi. We are sorry about the problem. Can you tell us more about it? If you couldn't find you backup folder make sure you are browsing in the correct storage unit in your phones. HabitNow only can access to your default storage. Thanks for your feedback. If you need more help with your issue contact us to habitnow.apps@gmail.com,2019-08-20 18:09:27,most_relevant,com.habitnow +Dhaval Upadhyay,https://lh3.googleusercontent.com/a-/AOh14GjNX4Q6jTBBuMydRIwFZGXzxuyJfoZxgf-yiA9N9g,awesome app .. i like the daily work and habit tracking .. thanks guys,4,0,,2020-02-03 05:39:09,,,most_relevant,com.habitnow +Kajubi Edris,https://lh3.googleusercontent.com/-A9VES0W-m0o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMHIh0p-_6q_N50Z1xM-gBrpU7mEQ/photo.jpg,Good app with notifications for reminding you and helping you track your progress,4,1,1.2.1,2019-11-19 02:05:12,,,most_relevant,com.habitnow +Waqas Khan,https://lh3.googleusercontent.com/a-/AOh14GgLVYS5CgznB_IObQXhBHLcgKmRkqYbrKhNWV0t,Set a color which depends on percentage for goals.,4,0,,2019-12-30 12:39:26,,,most_relevant,com.habitnow +heather ashkenes,https://lh3.googleusercontent.com/-wBveCkPPkoY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMdB3IgAvdtAwR10Pp1ajnLvCbS2Q/photo.jpg,Good app. Wish there were more customization,4,0,1.1.47,2019-09-10 11:10:34,,,most_relevant,com.habitnow +Clifford Erasmus,https://lh3.googleusercontent.com/-6TTktig66_8/AAAAAAAAAAI/AAAAAAAABi4/AAKWJJOj_6NbuabfkEpVjYzQWUPxNEpfGw/photo.jpg,Though I would love to see it make improvements,4,0,1.2.3,2020-02-18 09:44:45,Hi Clifford: We programmed an update for January but it was delayed to add more improvements. It will be launched in a few weeks. We are continuously working on the app. Thank you for your feedback!,2020-02-18 14:42:33,most_relevant,com.habitnow +Macy Dudek,https://lh3.googleusercontent.com/a-/AOh14GhqhDdqdfEpyXfvMfTO8UfvR0f8RFjgEfB8cSErsw,I liked it but once I got it I saw a had no need for it and I felt like I don't need it as much as others.,4,0,,2020-01-25 04:46:57,,,most_relevant,com.habitnow +Mohammad Sgm,https://lh3.googleusercontent.com/-S8HAo1AWX5Q/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOrTt_20keHLinR0ITP7DpWAmcuQA/photo.jpg,"Your app is awesome, please add sticky notification",4,0,1.2.1,2019-11-15 04:55:09,,,most_relevant,com.habitnow +Bruno Lucas Ribeiro Santos,https://lh3.googleusercontent.com/-m-nbnCJsU1s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMLHcBP5cpNBzFdaEjHlm72xYkL2g/photo.jpg,Helped me a lot,4,0,1.2.3,2020-01-30 09:04:48,,,most_relevant,com.habitnow +studying study,https://lh3.googleusercontent.com/-FLpgDwguJRs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOr9rNDSJ6XI-yn2aFPtC2JxaxPUQ/photo.jpg,Great at 1st,4,0,1.2.3,2020-03-10 13:54:16,,,most_relevant,com.habitnow +tomas rogido,https://lh3.googleusercontent.com/-lx2I29vpUME/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM481oAr58CKl3qf6IT6VYA791Gjg/photo.jpg,it s great,4,0,1.2.3,2020-01-22 04:06:06,,,most_relevant,com.habitnow +Usama Kareem,https://lh3.googleusercontent.com/-2vL_ryJDF8M/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOaAu4kQftgKbrubzxghXIbH15ixw/photo.jpg,quite a good app for me,4,0,1.1.42,2019-07-20 08:56:53,,,most_relevant,com.habitnow +Aishana Bhattacharjee,https://lh3.googleusercontent.com/-1UeSI22Le0k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPSiZt1avksU60aslvUyyBHbiID9A/photo.jpg,It is a good for organising daily task n making habit,4,0,1.1.47,2019-09-29 00:53:43,,,most_relevant,com.habitnow +Joyce Reynolds,https://lh3.googleusercontent.com/a-/AOh14GhCscuruzG5t73LHaA_AJbV4lEwy9fbDD0g3REl,Handy habit helper,4,0,1.1.47,2019-09-12 11:28:20,,,most_relevant,com.habitnow +Dani Boynton,https://lh3.googleusercontent.com/a-/AOh14GiBgOgn8srAr2PXXTUUNzc8kOZV-Knu6MLWAX7FmL4,"Great app, very usable and straightforward, but I wish the calendar view showed the days you had completed all of your goals for that day. Seeing your progress streak would be very encouraging!",4,0,1.2.3,2020-04-06 07:15:45,,,most_relevant,com.habitnow +Daniel Omar,https://lh3.googleusercontent.com/a-/AOh14Gi_Ys64Aa7yZVC2IUplvFG-pNBpx7pgk7q-bLebVA,"Funciona bien, pero si le hacen falta cosas, tengo la versión premium, resulta que debería existir la opción de crear categorías (donde uno pueda seleccionar el ícono que más le convenga de la lista que ustedes dejen y poder asignarle el nombre de la categoría) por ejemplo: como sabemos, existe categoría denominada ""study"" pero no se puede configurar mas de ahí. Sería bueno poder crear categorías con el nombre de cada materia para tener un mejor control de lo que se HACE.",4,0,1.2.3,2020-04-01 03:53:32,"Hola Daniel: Estamos trabajando para añadir nuevas funcionalidades a la app. Tenemos planeado agregar categorías personalizadas pronto! Gracias por apoyar nuestro trabajo, un saludo!",2020-04-01 05:06:10,most_relevant,com.habitnow +luiz miguel,https://lh3.googleusercontent.com/a-/AOh14GhBE0oQDS2p1KgxUf4Jln_uZ61TLFEowMl5eBjN3g,não tem a opçāo de sub tarefa,4,0,1.2.3,2020-03-07 02:44:12,,,most_relevant,com.habitnow +m y stanton,https://lh3.googleusercontent.com/a-/AOh14GjXAZOmA6AAYAsPpQpyUcvj0CTjY7JuQ5VC_enMZg,Very good.,4,0,1.2.3,2019-12-29 10:51:18,,,most_relevant,com.habitnow +Shahana Haque Moni,https://lh3.googleusercontent.com/-heXwmdKVyJY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO7oCkAUXTHEYtyvPHcCwkMzsA6Xg/photo.jpg,good enough👍👍👍,4,0,1.2.3,2019-12-01 04:08:50,,,most_relevant,com.habitnow +Constance Blue,https://lh3.googleusercontent.com/-ZdGtoejfQxw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMmoAIZOMT6Jg5DmGZAwHT3UTOqnw/photo.jpg,Good,4,0,,2019-11-10 11:04:13,,,most_relevant,com.habitnow +Dani Boynton,https://lh3.googleusercontent.com/a-/AOh14GiBgOgn8srAr2PXXTUUNzc8kOZV-Knu6MLWAX7FmL4,"Great app, very usable and straightforward, but I wish the calendar view showed the days you had completed all of your goals for that day. Seeing your progress streak would be very encouraging!",4,0,1.2.3,2020-04-06 07:15:45,,,newest,com.habitnow +Shubhankar Bag,https://lh3.googleusercontent.com/a-/AOh14Giu6ZMFAhi_Fj7opzSfJqM3kgl2ZKRSUqaNtJh5lg,Please fix the alarm functionality It does not notify me in Android 9 running Asus zenfone max pro m1,4,0,1.2.3,2020-04-04 16:02:28,Hi Shubhankar: Asus phones have a battery optimizer / app manager that blocks third party apps alarms and notifications. Contact us to habitnow.apps@gmail.com and we will be glad to help! Regards,2020-04-04 16:55:03,newest,com.habitnow +Guenevere Wilson,https://lh3.googleusercontent.com/a-/AOh14GgdFI4DydFln_gUh2j2ON8C_p5QBVkDibA46orTaA,"Wish you could set tasks to recur at regular times, but it's a good app overall",4,0,1.2.3,2020-04-02 23:29:58,,,newest,com.habitnow +Eliu Moraes,https://lh3.googleusercontent.com/a-/AOh14GjyiVAYHwHRmpYozofjOf-j_ZgDr8CcagmDS2xl8w,"It is a great app. But still there is space for some improvement. The calendar for example: you have one to add more tasks, other to see each specific task and the days that you did the job, but note one to see the sum of all tasks. You should create a resume calendar, where I can see the percentage of jobs that I accomplished in each day.",4,1,1.2.3,2020-04-02 23:13:39,,,newest,com.habitnow +AC Brosnan,https://lh3.googleusercontent.com/-CsxgavQJzpo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNSndspaLRt7J-nRWRDkABn2Gr2qQ/photo.jpg,"Easy, simple, cheerful, effective",4,0,1.2.3,2020-04-01 13:13:23,,,newest,com.habitnow +Daniel Omar,https://lh3.googleusercontent.com/a-/AOh14Gi_Ys64Aa7yZVC2IUplvFG-pNBpx7pgk7q-bLebVA,"Funciona bien, pero si le hacen falta cosas, tengo la versión premium, resulta que debería existir la opción de crear categorías (donde uno pueda seleccionar el ícono que más le convenga de la lista que ustedes dejen y poder asignarle el nombre de la categoría) por ejemplo: como sabemos, existe categoría denominada ""study"" pero no se puede configurar mas de ahí. Sería bueno poder crear categorías con el nombre de cada materia para tener un mejor control de lo que se HACE.",4,0,1.2.3,2020-04-01 03:53:32,"Hola Daniel: Estamos trabajando para añadir nuevas funcionalidades a la app. Tenemos planeado agregar categorías personalizadas pronto! Gracias por apoyar nuestro trabajo, un saludo!",2020-04-01 05:06:10,newest,com.habitnow +Linda Carnahan,https://lh3.googleusercontent.com/-MLnGEzPjxUQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOQksYfLHpEPd-peenwD29lxOYr2A/photo.jpg,I like using the app and my weekly progress. I would like to see a total of how many things I did each day and maybe a graph? I like positive reinforcement.,4,0,1.2.3,2020-03-28 21:09:39,Thank you for your feedback Linda. We will work on that soon!,2020-03-28 21:12:41,newest,com.habitnow +Jainik,https://lh3.googleusercontent.com/a-/AOh14GhZHZsQ33Dpi6NR9np2vjE_MJfUHBJAj0wqLuSdVA,"It is the perfect app for me when it comes to tasks/habits , however it would've been nice to if you can add sound when i mark a task complete.",4,0,1.2.3,2020-03-28 16:07:19,,,newest,com.habitnow +Kim Klaiber,https://lh3.googleusercontent.com/a-/AOh14GivkH_2CL8S-w-XpoRG1RBUf7Tm9Zq9o80PggMjFw,Would be great to customize the alarm. I want to test pavlov effect with supplements.,4,0,1.2.3,2020-03-18 17:45:21,Hi Kim: The app uses the default alarm tone of your OS. You can change it from your device Settings. Thank you for your feedback!,2020-03-18 21:28:56,newest,com.habitnow +Grant Farnsworth,https://lh3.googleusercontent.com/a-/AOh14GisXy_WxYd8SQKGe94gdhYJgDCLEfh7wzaic9nNhg,"Habitnow is the first todo list with a key feature I've been looking for: to-do items that are automatically created at certain times. As such it is the best such app I've ever used. The only problem is that the author made no provision for hiding completed items. They just hang around cluttering the list--the best it does is move them to the bottom. I find it very odd that anyone would want to stare at completed to-do items. Certainly that shouldn't be the default, but there it is.",4,21,1.2.3,2020-03-18 01:10:51,,,newest,com.habitnow +studying study,https://lh3.googleusercontent.com/-FLpgDwguJRs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOr9rNDSJ6XI-yn2aFPtC2JxaxPUQ/photo.jpg,Great at 1st,4,0,1.2.3,2020-03-10 13:54:16,,,newest,com.habitnow +Vaibhav Soundarkar,https://lh3.googleusercontent.com/-tqPvyXardoo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOZN7mAABCuCr-Hz33tIVG9jgPD3A/photo.jpg,Alarm not working at all. I have checked all settings in my phone they all are on. Could you please assist me on same.,4,0,1.2.3,2020-03-10 08:56:34,Hi Vaibhav: Alarms are programmed to work in all device models. Contact us to habitnow.apps@gmail.com and we will be glad to help!,2020-03-10 11:32:19,newest,com.habitnow +Jean-Christophe Hamel,https://lh3.googleusercontent.com/a-/AOh14Ggfo-IZb6IEVmIP2-b5Uvdp7b1_eVhZ6O8GYAwr1A,"Love the app. Best of it's kind IMO. Not perfect but so close! This app has the potential to be used for so much more than just habits and tasks! If I may suggest: - having the "".00"" digits be optional and not by default when setting/entering goals. - having multiple reminder/notification throughout the day on one habit to enter data multiple times a day (ex: 200 push ups a day, with 4 reminders so I can do 4x50 or something instead of having 4 habits) or the ability to group habits.",4,7,1.2.3,2020-03-09 12:47:26,"Thank you for your feedback Jean-Christophe, we will work on that!",2020-03-09 12:49:05,newest,com.habitnow +Sam McDonough,https://lh3.googleusercontent.com/-QI1JvHr9vBY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOIJ5iX6u-NWp94YMjbOBF1R14mjw/photo.jpg,Great however marking down one star as can't find a way to edit frequency of habit once you've saved it. Have to delete and recreate habit with new frequency.,4,1,1.2.3,2020-03-07 22:37:27,Hi Sam: We are working on that and will be added in the next update. Thanks for your feedback!,2020-03-08 00:39:34,newest,com.habitnow +luiz miguel,https://lh3.googleusercontent.com/a-/AOh14GhBE0oQDS2p1KgxUf4Jln_uZ61TLFEowMl5eBjN3g,não tem a opçāo de sub tarefa,4,0,1.2.3,2020-03-07 02:44:12,,,newest,com.habitnow +Nikhil Sanghvi,https://lh3.googleusercontent.com/a-/AOh14Gh0ryxNhsd3qkcYyJzxLYg-J_3_f84cpkDqPfVxYg,"I have been using this premium version of app from past 6 months and its really great, but i still believe there are few feature still missing in it to make things easy. Like there should be dashboard which gives details of all habbits progress in bar percentage marked successful. Currently you have to go to each habbit and check the status. So a centralized section giving more details on the progress would be helpful like it is in Habbit tracker app. Also a dynamic habbit counter could be added",4,3,1.2.3,2020-03-05 03:25:48,,,newest,com.habitnow +Ved Kapur,https://lh3.googleusercontent.com/a-/AOh14Ghpq1r6VWd5HkRC9iuCbU1bSyv_FAX5tv0_aElh,"Nice but please give option to add different time intervals for habits. For example I want to develop habit of drinking water and want the reminder to come at multiple particular times a day. The app allows only one specific time for the reminder, so please add the mentioned feature.",4,0,1.2.3,2020-03-03 20:19:41,,,newest,com.habitnow +Babylon,https://lh3.googleusercontent.com/a-/AOh14GjJAbfXO1bEAJhsaoJe9Y4I0PYo0XZ_j_ZLgiWHtQ,I haven't started using it officially but I'm giving a 4 star because the User Interface is on point... I'm starting my habits on monday... Hopefully the functionality part will be as user friendly as the UI. Thank you,4,0,1.2.3,2020-02-22 13:01:08,,,newest,com.habitnow +Clifford Erasmus,https://lh3.googleusercontent.com/-6TTktig66_8/AAAAAAAAAAI/AAAAAAAABi4/AAKWJJOj_6NbuabfkEpVjYzQWUPxNEpfGw/photo.jpg,Though I would love to see it make improvements,4,0,1.2.3,2020-02-18 09:44:45,Hi Clifford: We programmed an update for January but it was delayed to add more improvements. It will be launched in a few weeks. We are continuously working on the app. Thank you for your feedback!,2020-02-18 14:42:33,newest,com.habitnow +Nick Pcp,https://lh3.googleusercontent.com/a-/AOh14GikV_6fTiEiYOpe-9IPVSW8koY9nRMPbux7-a13NcE,"Very good job. Would like option for completed habits to hide for the day, and option to edit categories names, icons and colours",4,0,1.2.3,2020-02-17 09:20:43,,,newest,com.habitnow +Lee Coleman,https://lh3.googleusercontent.com/-t1UNSfr1X8Q/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNRU4LxVIeEe7nVfOga-0Sb-i6CYA/photo.jpg,"I looked at a lot of habit tracking apps and this one was the closest I've found to what I was looking for. Unless I missed how/where to do them, there are three things I wish I could do in the app. First, create custom categories/subcategories, especially under health. Second, edit start dates without having to delete and retype to correct. Three, have the ability to add notes.",4,9,1.2.3,2020-02-10 16:04:04,"Hi Lee: To add a note, long tap on any habit entry in the to-do list or any habit calendar. We are working on a multi-track feature to add more that one schedule for a habit. After that, we will start to work on categories edition and online backups. Thank you for your review!",2020-02-10 16:06:56,newest,com.habitnow +Alliance Video Productions,https://lh3.googleusercontent.com/a-/AOh14GjJ88T7gT7NXD91tcQdnmczs_z5YTiG1r3BzRNHsw,"So far I like the app. Question - I see a spot where it says, notes for the month, but how do I input notes? I don't see the option to enter notes.",4,1,1.2.3,2020-02-06 14:14:42,Hi Alliance: You can create a note for every day entry of your habits. Just tap on a day in any habit calendar or on a habit entry of the todo list!,2020-02-06 15:07:29,newest,com.habitnow +Polar Torsen,https://lh3.googleusercontent.com/a-/AOh14Gjyt89DaOTIP_bmCBTr2LzXq7eBxe_ZBCNQZ0qv,"Hey, awesome app. It wasn't long until I purchased the unlocked version. However, some things could be improved. For example, you can't change units after the habit is created. And it would be nice to hide the "".0"" part after digits, since mostly it refers to ""minutes"" or ""iterations"" or ""cups"" and it looks kinda sloppy to see your goal described as ""Learn at least 30.0 minutes"" or ""Drink at least 2.0 cups"". If the number is whole, why not just hide that point zero - it'll look neater, I think.",4,28,1.2.3,2020-02-06 00:19:35,,,newest,com.habitnow +Benjam John,https://lh3.googleusercontent.com/a-/AOh14GiK-kHB7s3pW1fijbNmXX-vgG5fO64L7gEZdAnt,Great app! How can I change the alarm sound,4,0,1.2.3,2020-02-03 15:50:29,Hi Benjam: The app uses your default alarm sound. You can change fro your phone settings! Regards,2020-02-03 17:51:44,newest,com.habitnow +Dhaval Upadhyay,https://lh3.googleusercontent.com/a-/AOh14GjNX4Q6jTBBuMydRIwFZGXzxuyJfoZxgf-yiA9N9g,awesome app .. i like the daily work and habit tracking .. thanks guys,4,0,,2020-02-03 05:39:09,,,newest,com.habitnow +Bruno Lucas Ribeiro Santos,https://lh3.googleusercontent.com/-m-nbnCJsU1s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMLHcBP5cpNBzFdaEjHlm72xYkL2g/photo.jpg,Helped me a lot,4,0,1.2.3,2020-01-30 09:04:48,,,newest,com.habitnow +Trevor m,https://lh3.googleusercontent.com/a-/AOh14GikbdO2pUcJZmdtDD64wQWbVPX4Sk9b6kMAonFE,"Make sure your phone settings are allowing the app to make notifications.The app works great, and is super helpful. The only thing I would recommend is to be able to make custom categories. Right now you can do other, but can't specify. Would definitely recommend app. Update 2- I can't seem to find the setting that lets me see the notifications. I can get it to work but only once then it stops. Would you be able to help me out? After my first review you said you'd be able to if I needed it.",4,7,1.2.3,2020-01-29 19:11:34,Sure! I'll answer via email because of the character limit restriction via this channel.- Contact us to habitnow.apps@gmail.com and we will answer as soon as possible!,2020-01-29 19:46:05,newest,com.habitnow +Rachel Einfeld,https://lh3.googleusercontent.com/a-/AOh14GiTzJJOKzvLdpkiz9xQFjlLzSd82adz0Q-EFFEvDg,I liked it I just have to many things I want to put in it and I can't afford to pay for premium.,4,0,,2020-01-29 16:13:25,,,newest,com.habitnow +Karen Haine,https://lh3.googleusercontent.com/a-/AOh14GjGQslrH0Yz8E06X7IFKjWLBOU6m51VHxpkr3IYmP8,I like it. It's quite easy to use. Would it be possible to sync data between devices? That would be a lovely plus!,4,0,1.2.3,2020-01-28 12:25:26,Sure! We have plans to develop multi device synchronization as soon as possible.Thank you for giving your feedback!,2020-01-28 15:56:40,newest,com.habitnow +CalvinRea,https://lh3.googleusercontent.com/a-/AOh14Gi_Kx_xYVz8DgMx0fe4z0gWpC4FKe8ouy_hQY3lLw,"Best productivity app I've found, goal progress tracking, hierarchical task management and progress reports would make it even better",4,0,1.2.3,2020-01-26 13:20:18,,,newest,com.habitnow +Igor Pellegrini,https://lh3.googleusercontent.com/-Acgzpa2vbBA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPDDMpL7_RQoXX99TBTXrbnkqwiQQ/photo.jpg,"Just installed and trying out (I'll update along with my experiences). UI/UX is pleasant and clear. Looks promising. Love the Free full-featured & Premium accessory-features philosophy; I'll pay later on to support development. ISSUES: 1) can't change start-date & repetition of a habit; if it'll break history data, at least allow duplication 2) would expect SCHEDULED days to be colored/marked in the single habit calendar, as future overview; not just as achievement overview. ## So far, good job!",4,1,1.2.3,2020-01-25 11:56:56,,,newest,com.habitnow +Macy Dudek,https://lh3.googleusercontent.com/a-/AOh14GhqhDdqdfEpyXfvMfTO8UfvR0f8RFjgEfB8cSErsw,I liked it but once I got it I saw a had no need for it and I felt like I don't need it as much as others.,4,0,,2020-01-25 04:46:57,,,newest,com.habitnow +Farshad Irani,https://lh3.googleusercontent.com/-gvink7v_JjM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPRX-d0TXki29fV8UfV-b232-F5aw/photo.jpg,Simple and practical,4,0,1.2.3,2020-01-24 06:49:01,,,newest,com.habitnow +Chelsea Smith,https://lh3.googleusercontent.com/a-/AOh14GgvEw5ysmBocYyjgn0xrOnMGeVrNLpYOMyZ8PAI,"This is a great app! The ability to track my habits and edit them as needed is really awesome. There are just 2 things I'd really like to see that would make this a 5-star review for me: 1) Full editing options (currently can't edit the frequency for my times per period items), and 2) A help/glossary feature. I'm not sure exactly what the link icon means, as it is 0 on items I've not done or done once, but 1 on items that I've done twice or three times.",4,5,1.2.3,2020-01-23 13:56:56,"HI Chelsea: We are currently working on both of your suggestions. Thank you for giving your feedback, we are glad that you like the app!",2020-01-23 14:08:45,newest,com.habitnow +Laura Yong,https://lh3.googleusercontent.com/a-/AOh14GjFtkLD4XDFrB-6pS4IZZaDvcAh5hQkrBR-Cs8EuQ,Easy to add habits and tasks; you see everything for that dat,4,0,1.2.3,2020-01-23 02:16:19,,,newest,com.habitnow +tomas rogido,https://lh3.googleusercontent.com/-lx2I29vpUME/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM481oAr58CKl3qf6IT6VYA791Gjg/photo.jpg,it s great,4,0,1.2.3,2020-01-22 04:06:06,,,newest,com.habitnow +Lubos Tomicek,https://lh3.googleusercontent.com/a-/AOh14GgWbHDI8dr797mL40Dn2qSxEZ7ot5K4X0NvxltR,"Very versatile, keeps you on the track and highlights your strengths and weaknesses So impressed that I bought premium on very first day to have unlimited habits 4 stars only because there is no possibility to set monthly repeated task neither on a specific date (e.g. 3th of every month) nor on specific day (e.g. second Wednesday in a month) Otherwise it would be 5*",4,5,1.2.3,2020-01-21 04:18:07,,,newest,com.habitnow +Victoria Reid,https://lh3.googleusercontent.com/a-/AOh14GjPS2UgIgsUkJvqDsXo3xbxds65_25c5lZ4djeQIQ,"I like this app but I dont understand why I cant set up tasks that repeat unless they're habits. Or edit the categories. A habit is something you want to always do, I want to plan reoccurring tasks that are temporary.",4,1,1.2.3,2020-01-16 01:36:19,Hi Victoria: Habits works exactly as repeating tasks! If you need to add some tasks that repeat in time we recommend creating habits instead! We will work on custom categories soon! You can set a start and an end date for your habits/repeating tasks. We will change the name in the future to clarify that! Regards,2020-01-16 14:52:45,newest,com.habitnow +LoveAndLight 360,https://lh3.googleusercontent.com/a-/AOh14GjYkuTUcQoLWVdaSo5mWCOje7GS7LcWnFpAGWbkVCk,"Would have been a five star had something as simple as a color theme change not came with a price. Seriously?! I have to pay premium prices just to go into dark mode. If I was going to pay, I'm most certainly not paying now. That's just too petty a thing. However, great concept guys.",4,1,1.2.3,2020-01-13 01:25:41,"Hi LoveAndLight: Thank you for the feedback! Try to think it from another angle. We decided to cut only on accessory features instead of limiting the free habits or task number too much. The app is a habit tracker and to-do list, and that's what we give for free. We want to bring the best possible experience to both free and premium users!",2020-01-13 04:32:33,newest,com.habitnow +Shimon Kogan,https://lh3.googleusercontent.com/a-/AOh14GgRIxqFdEq-kXbkNpQ2tYZ-t8NBfpr5uKPG_uNyUg,"Great, simple app. Notifications can be better; they pop out irrespective of whether goal was achieved and thus are useless.",4,1,1.2.3,2020-01-12 03:41:28,,,newest,com.habitnow +Brielle Worrall,https://lh3.googleusercontent.com/a-/AOh14GgBRvKgBrIMOAI2wB13VmtpfAfGci6SgopScaPu_g,"Great app, keeps me on track and efficient. Helps me stick to my New Year's goals. Just wish we could add more habits.",4,0,1.2.3,2020-01-07 21:34:14,,,newest,com.habitnow +GODFREY KIZITO,https://lh3.googleusercontent.com/a-/AOh14Gg60L1eUHLSCP-VceclM7Cgxrnxe2PjRMpVtgN1,"All to do lists should embrace habit monitoring. Also, I like it when a pending task persists on the list until it's done or removed.",4,0,1.2.3,2020-01-03 20:53:30,,,newest,com.habitnow +Waqas Khan,https://lh3.googleusercontent.com/a-/AOh14GgLVYS5CgznB_IObQXhBHLcgKmRkqYbrKhNWV0t,Set a color which depends on percentage for goals.,4,0,,2019-12-30 12:39:26,,,newest,com.habitnow +m y stanton,https://lh3.googleusercontent.com/a-/AOh14GjXAZOmA6AAYAsPpQpyUcvj0CTjY7JuQ5VC_enMZg,Very good.,4,0,1.2.3,2019-12-29 10:51:18,,,newest,com.habitnow +Jay LaValle,https://lh3.googleusercontent.com/a-/AOh14GhapG3QCtlf-sMVfCwTjozjBYfZWu2lWydPWZTLSSM,"Very nice looking app for tracking habits and tasks. Have already replaced my old task app for HabitNow. Glad you can purchase the premium version and not have to buy a subscription like many other apps are now doing. I've been unable to figure out how to make tasks repeat and modify the schedule of existing habits. If these capabilities don't exist, would love to see these as improvements.",4,7,1.2.3,2019-12-01 14:25:10,"Hi Jay: Habits are repeating tasks! They work exactly in the same way, the only difference is how we named them. We are glad you like the app! Regards",2019-12-01 15:17:10,newest,com.habitnow +Shahana Haque Moni,https://lh3.googleusercontent.com/-heXwmdKVyJY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO7oCkAUXTHEYtyvPHcCwkMzsA6Xg/photo.jpg,good enough👍👍👍,4,0,1.2.3,2019-12-01 04:08:50,,,newest,com.habitnow +Jordon Young,https://lh3.googleusercontent.com/a-/AOh14GgVR5pUq0UlqyJF1fEh3zOyFsSBWCBzmaU31VgDiw,"Love it, bought premium. BUT needs an option to schedule reoccurring tasks like ""take mom shopping first Sunday of every month at 11am.""",4,2,1.2.1,2019-11-21 17:58:16,,,newest,com.habitnow +Kajubi Edris,https://lh3.googleusercontent.com/-A9VES0W-m0o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMHIh0p-_6q_N50Z1xM-gBrpU7mEQ/photo.jpg,Good app with notifications for reminding you and helping you track your progress,4,1,1.2.1,2019-11-19 02:05:12,,,newest,com.habitnow +Mohammad Sgm,https://lh3.googleusercontent.com/-S8HAo1AWX5Q/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOrTt_20keHLinR0ITP7DpWAmcuQA/photo.jpg,"Your app is awesome, please add sticky notification",4,0,1.2.1,2019-11-15 04:55:09,,,newest,com.habitnow +Constance Blue,https://lh3.googleusercontent.com/-ZdGtoejfQxw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMmoAIZOMT6Jg5DmGZAwHT3UTOqnw/photo.jpg,Good,4,0,,2019-11-10 11:04:13,,,newest,com.habitnow +Tessa Sherlock,https://lh3.googleusercontent.com/a-/AOh14Gie7lRWPUSAskg1hIUba-10RFvXPl3IxepwIIjqHBk,"I love this app, it's the only one I've found which combines tasks and habits in a simple way. However, I do get frustrated that I can't seem to change the scheduling of a habit after I've set it up. E.g. If it's set for once a week and I want to make it twice I have to delete it and create a new one. Can you please fix this",4,11,1.2.1,2019-11-09 18:32:43,,,newest,com.habitnow +Martin Mendoza,https://lh3.googleusercontent.com/a-/AOh14GjvGlBrq9FFYZMiDRCQeG4udbdEomezXAMS7YM-6w,Its a good app! I honestly dont mind that you need to have premium to get the themes. As long as there are no ads im fine! I just wish you could create a widget that you can see on your home screen. That would be so convenient!,4,0,1.2.1,2019-11-08 16:36:31,,,newest,com.habitnow +Naved Quamar,https://lh3.googleusercontent.com/a-/AOh14Ggbz8GV3---1PTXhESdqgXnT-IXQBmBq81NRrVPa7U,Please add an option to update habit/task status from the notification bar when I receive notification on the set time. Overall good app.,4,2,1.2.1,2019-10-20 14:38:22,,,newest,com.habitnow +Alistair Mashumba,https://lh3.googleusercontent.com/a-/AOh14GjyDYqn8whyA3pZCCToOUdZGypAwYu0CytmLX1-Rw,"It's relatively helpful especially when checking habit progress. However, some notifications do not come on time but nevertheless, i recommend it.",4,0,1.2.1,2019-10-17 15:07:46,,,newest,com.habitnow +Kelly Madison,https://lh3.googleusercontent.com/a-/AOh14Gi7_5d_UK6AqQmu3vvkdIXE8LzEJUFaOlwnZNmR,"Great updates! Nice color, nice experience, pro version is better, wished more was free. Need quick add tasks (see Tick Tick), needs folders, and a pomo timer would be awesome.Thanks for adding sort and categories!",4,2,1.2.1,2019-10-15 13:39:32,Hi Kelly. There are different sorting options in the app settings and we will add some more in the next update. Pomodoro timer is a great idea! Thanks for the feedback. And stay tuned for new updates. HabitNow Team,2019-08-08 01:53:15,newest,com.habitnow +Aishana Bhattacharjee,https://lh3.googleusercontent.com/-1UeSI22Le0k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPSiZt1avksU60aslvUyyBHbiID9A/photo.jpg,It is a good for organising daily task n making habit,4,0,1.1.47,2019-09-29 00:53:43,,,newest,com.habitnow +miken521,https://lh3.googleusercontent.com/a-/AOh14Gi9pIy-lRwKNq1rGxv8g2fXrj3ZQoUIShoLd5s8gw,"I like this app alot. It lets me track my habits and goals in an intuitive way. Only would ask a few minor things, like a line on the bar chart that shows the limit/goal & task alarms even when app not active.",4,2,1.2.1,2019-09-27 19:55:12,,,newest,com.habitnow +A Scott,https://lh3.googleusercontent.com/-uM29jp1Dz10/AAAAAAAAAAI/AAAAAAAATuU/AAKWJJOq_Ct88colg7itqgr3Sbj47LLDaQ/photo.jpg,"Very nice, but would you consider letting people create custom categories, and setting intervals such as ""every 2 days"" instead of number of times a week? With that, this app would be perfect.",4,23,1.2.1,2019-09-17 00:29:17,"Hi Scott: We are currently working on those features. Regards, HabitNow Team",2019-09-17 00:32:26,newest,com.habitnow +Edward,https://lh3.googleusercontent.com/-UfbPilvZN8k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMCTtVWvfLxV0nuyfPqAJAxgjjeXw/photo.jpg,Another important feature missing is the ability to tell if I have future tasks scheduled when looking at the calendar. Currently the calander view shows days in a circle. Please colorize the background of that circle if there are tasks scheduled on that day. This is essential in order to know what days i have future tasks scheduled on. On top of the calendar it says to pick a day to see if i have a scheduled task. That is not efficient as i would need to go click each day one by one.,4,5,1.2.1,2019-09-12 20:18:16,"Hi Edward: That could consume many resources of your phone because it require several calculations for every day showed in the calendar, but we will work on that because we know it could be useful for many users. Thanks for the feedback!",2019-09-12 21:09:30,newest,com.habitnow +Joyce Reynolds,https://lh3.googleusercontent.com/a-/AOh14GhCscuruzG5t73LHaA_AJbV4lEwy9fbDD0g3REl,Handy habit helper,4,0,1.1.47,2019-09-12 11:28:20,,,newest,com.habitnow +Avery T,https://lh3.googleusercontent.com/-tw0ZyGfcHeI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPfQHEBs-oQjm_JjvgkjpKgV-uhRw/photo.jpg,"Just installed this app, it is easy to use and is quite beautiful. I would love to have a vision board feature page that I can put pics and maybe a daily quote feature (spiritual?) before jumping to Premium, please.",4,1,1.1.47,2019-09-12 03:04:05,Hi Avery: We are adding some of these features this week. Stay tuned for the update! Thanks for your feedback!,2019-09-12 13:16:18,newest,com.habitnow +heather ashkenes,https://lh3.googleusercontent.com/-wBveCkPPkoY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMdB3IgAvdtAwR10Pp1ajnLvCbS2Q/photo.jpg,Good app. Wish there were more customization,4,0,1.1.47,2019-09-10 11:10:34,,,newest,com.habitnow +Jay May,https://lh3.googleusercontent.com/a-/AOh14Gg8wvrYlABW7XMS3KnXwPHOxTfQDrhLclw0QEx4-A,"Very nice UI, but need some work. 1) First week day (Monday/Sunday) option in Calendar; 2) Calendar should show tasks/habits below Calendar instead of when touching the selected day only (this makes you feel you have nothing the whole day/mont)... Add this and app will be more solid... And I may jump into Premium! Keep it up!",4,1,1.1.47,2019-09-02 13:03:39,"Hi Jay: In the next update we will add new features to the calendar section. Also, an option to select Sunday/Monday as first day of week will be added soon too. At the moment, first day of week is defined by your local calendar. (i.e if you set English-UK first day of week will be Monday, if you set English-US it will be Sunday). Regards",2019-09-02 22:40:39,newest,com.habitnow +Pratik Pattnaik,https://lh3.googleusercontent.com/a-/AOh14Gh8SAskM2b55hy4gqS95EUs9RdKKfqunuHvazHw5Q,I subscribed for premium because I feel it's nice. Could you tell me where to check the status report? And how to re-organize the habits freely without any sorting order? Thanks Edit: Please add option for statistics tab separately and need to work on showing them correctly on average.,4,0,1.1.47,2019-09-01 22:11:26,,,newest,com.habitnow +Scott Van Kooten,https://lh3.googleusercontent.com/a-/AOh14Gh9sbUqjvRUNCvbc2XL4L4ixFc5k54APOEFx2Ph,"Only used for a day but it's the best app I've found for daily tasks / to do lists. Would love to see the following: 1. Completed tasks move to the bottom 2. Tasks be linked to a numerical value. 3. The ability to order each item manually, daily.",4,2,1.1.47,2019-08-27 10:50:00,,,newest,com.habitnow +Crystal Lynn Hunter,https://lh3.googleusercontent.com/a-/AOh14GiWL3Bg71WPV-EsXo6T7kY7-1HFWdKLahD2tlTLUw,"Love it, it works! I would like to have had it transfer my habits to the new phone but the backup folder didn't work. So I had to do them all over again. overall love it though.",4,0,1.1.47,2019-08-20 17:26:29,Hi. We are sorry about the problem. Can you tell us more about it? If you couldn't find you backup folder make sure you are browsing in the correct storage unit in your phones. HabitNow only can access to your default storage. Thanks for your feedback. If you need more help with your issue contact us to habitnow.apps@gmail.com,2019-08-20 18:09:27,newest,com.habitnow +Brenda Thompkins,https://lh3.googleusercontent.com/a-/AOh14GgL2UYLKDauoRnwNx1dbHR_U7Jsuo1r0kcEzF9Wyw,"Thank you for responding and I'm looking forward to that update (customized categories). Another improvement I'd love to see are more options for a goal besides a daily one, such as save $100 per week, etc. I got the Premium and love the dark theme, this app is the best I've found for my needs. Thank you!",4,8,1.1.47,2019-08-16 16:27:43,"Hi Brenda, we are working to allow users to create their custom categories. We hope you are enjoying all the other app features! Thanks for your feedback. HabitNow Team.",2019-08-16 02:00:16,newest,com.habitnow +Kedabs Pratt,https://lh3.googleusercontent.com/a-/AOh14GintC0OTPCloYse9yiTGN01zQ800XwV1FaZxaeyKg,great app. could be better if I could have the same habit with multiple notification times so i can do it several times a day without having to recreate the habit several times. thanks,4,0,1.1.47,2019-08-14 02:18:59,"Hi. We are currently working to add multiple schedules for the same habit! +Thanks for your review and stay tuned for new updates. +HabitNow Support",2019-08-15 19:36:54,newest,com.habitnow +Donna Ashton,https://lh3.googleusercontent.com/-BODeC-gQ8aA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPsXLLkCOg6DndrUV5AtEv72lLB4w/photo.jpg,Very useful! Reminders at specific times which stay on the screen really help me get stuff done. Would like to be able to create own catagories and choose colours and icons for these in the premium version Thank you!,4,0,1.1.47,2019-08-11 13:34:07,Hi Donna: We are working to improve HabitNow everyday. Custom categories will be added in a few updates! Thanks for your review. HabitNow Team,2019-08-11 14:23:02,newest,com.habitnow +"Tea, Sugar, Salt",https://lh3.googleusercontent.com/a-/AOh14GjCTueDo_OZwSBJNQnzC8Tr-IPRkceC9qLkXoKjdA,This app is really functional and helpful. The widget is great. Caveat: you can only track seven habits without paying. It's one time five bucks and worth it though. Suggestion to the developer: make checked off habits go to the bottom of the list so we can see what we haven't done yet more easily.,4,2,1.1.47,2019-08-07 14:22:01,Hi. We are working to make HabitNow a better app. We will add that feature in the next update! Thanks for your review! HabitNow Support,2019-08-07 15:16:18,newest,com.habitnow +Sha'Coya Zimmerman,https://lh3.googleusercontent.com/a-/AOh14GgpYxFph9z0Oz2HywiOT_f582__SG7KD6JJxZ0EfA,this is actually a really good app. I just have a couple of suggestions that make things a little more helpful 1. to be able to rearrange the habits or tasks by the time we have it set so it will look like more of a daily schedule instead of just a list 2. a button that goes with when you want to do your habit or task have it be more specific just in case we want to break our task or habit up and do half earlier in the day and the other half like drinking water or studying.,4,32,1.1.46,2019-08-04 04:24:14,"Hi Sha'Coya. About your first suggestion: You are able to do it! Open the app settings and select ""By time"" item in the ""To-do list order"" option. +About your second suggestion: You can set a habit with a daily value of ""Exactly 1 in a day"" and set the value of 0.5 earlier and set 1 later! +Thanks for the feedback. +HabitNow Team",2019-08-05 03:40:11,newest,com.habitnow +Michal Gorecki,https://lh3.googleusercontent.com/a-/AOh14Gi7EWXXMcorCp1tGrNwk-rGGy1F1ey7HnvhBvtUew,So close to being the perfect app. 2 things needed before I switch to using it. #1. Add ability to edit and change habit status for previous days. sometimes i don't have time or forget to update my habits on the day of. #2. Ability to set first day of week for calendar (i prefer Monday),4,2,1.1.42,2019-07-21 04:24:08,"Hi Michal. +You can change habit status for previous days from ""My habits"" section, or from the habit calendar, by touching on the day you want to update. +Thanks for your review! We are working to make HabitNow a better app!",2019-07-21 21:14:41,newest,com.habitnow +Usama Kareem,https://lh3.googleusercontent.com/-2vL_ryJDF8M/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOaAu4kQftgKbrubzxghXIbH15ixw/photo.jpg,quite a good app for me,4,0,1.1.42,2019-07-20 08:56:53,,,newest,com.habitnow +lj Roma,https://lh3.googleusercontent.com/a-/AOh14GiETZQwzJwTzT0MQAeFYh19a34ap7dlfGFRjjnjhg,"Really like this app, the layout, and ease of use. However, I did not see a way to go back and edit your scheduled days. Everything else you can edit,..time, date, category, but wanted to change my days and I had to delete the entry and start over to modify my scheduled days. Otherwise, I would've rated it 5☆s",4,0,,2019-07-17 19:42:40,"Hi Lj Roma: +At the moment the application does not allow the user to modify habits frecuencies because that would cause alterations in the recorded statistics. +We are currently working to add this functionality in upcomming updates. +Thank you for your review!",2019-07-17 21:44:23,newest,com.habitnow +Bri Spangler,https://lh3.googleusercontent.com/a-/AOh14GjyK9LNX4JQYdRjj9uUQdbDDwcw5_OAtr4fSg6dQA,I really like this app so far. Its flexible ans very customizable. The only thing I would add is either more categories/the ability to add my own. Health and Home are very broad categories. So being able to have sub categories would be nice,4,6,1.1.42,2019-07-09 19:01:38,"Thanks Bri. +We are working to make HabitNow better everyday. +Stay tuned for new updates. +HabitNow Support",2019-07-28 22:53:42,newest,com.habitnow +Hampus Lindström,https://lh3.googleusercontent.com/-JOlb9sZZAag/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMsJe5yLispO3sQI4-N9AIAHdiD7w/photo.jpg,"Honestly great. Simple. Effective. 1 time purchase. The UI has a sort of dated look but it's very quick and easy to use. Most of my daily habits vary alot based on which day it is, my schedule varies so much I cant put them on a specifik time, and I almost always do them in the same order. Therefore there should be an option to change the order of the habits manually, yourself, without any variables. :)",5,9,1.2.3,2020-03-23 20:35:13,,,most_relevant,com.habitnow +Jason Li,https://lh3.googleusercontent.com/a-/AOh14Gg0BI1j7nHWkP-dKMP7h1vJW4yi2OXZqe1ICXqghw,"I love how simple this app is. I've tried full GTD systems, which are too complicated for me. By keeping things simple, this app forces you to prioritize. I don't need hundreds of tasks organized in a hierarchy, just a simple app to keep my goals in sight. This app does it with a beautiful easy-to-read interface. Tip: You have to be creative with the sorting order to make it work for you. For example, I sort my today list by: 1. Priority; 2. Habits first. 3. Time. It works beautifully for me.",5,8,1.2.3,2020-01-12 17:13:53,,,most_relevant,com.habitnow +Laurée Kerbrat,https://lh3.googleusercontent.com/a-/AOh14GhQAeM8sWCJz3BcLobJtFv06VyiUZiXWEvA6SiEO9k,"Love it! A scheduling app that doesn't force me to sync my google calendar with it! I downloaded 5 different apps that all did and it was so incredibly frustrating, I deleted them all right away and finally found what I was looking for! I use my google calendar to keep track of bills and things like that, and those calendars have national holidays and other stuff I just don't want mixed in with my day to day sched. I wanted a blank calendar app to schedule things. It was surprsingly hard to find",5,5,1.2.3,2020-01-09 08:19:02,,,most_relevant,com.habitnow +Vamsi Krishna Chaturvedi,https://lh3.googleusercontent.com/a-/AOh14GhdAhukHGmzJCJV329bPC6dBGC1rC2nwsWCaVE-ow,"The best app in the market for improving your daily habits. I researched many Habit apps in Play store and finally concluded that this is the best one. I changed my self a lot by regulary monitoring my habits through HabitNow App. The user interface is superb and quite simple. Also it provides habit statistics up to date. You can also enter your habits according to the category like Health, nutrition etc..A must have App for everybody!!",5,8,1.2.3,2020-03-15 08:57:21,Thank you for your valuable feedback Vamsi! We are glad that you liked the app!,2020-03-15 11:18:42,most_relevant,com.habitnow +Jake McCullough,https://lh3.googleusercontent.com/a-/AOh14GgSNhBXCLAD8z5LHHQknnPwnuniZriW0s0KkZKbqg,"Excellent if you use it properly. The only thing I would change is the notification and alarms settings. I want notifications to come through even when I'm not actively looking at the app. Right now, I'm not notified until I open the app and the pop-ups show up.",5,0,1.2.3,2020-04-01 08:26:09,,,most_relevant,com.habitnow +Julia Quigley,https://lh3.googleusercontent.com/a-/AOh14Gh7PsmvtmBowSEIO1x37gxhj5v_58BM9P7eJagL,"This app is wonderful! I love that it has an option for numerical input each day. It is also great that there are both individual tasks and continuous habits, as previously I have had to use two separate apps for this. I did pay for the premium version, but I like that the app still functions effectively even if you have the free version. I would love to have a visual of my progress in each habit for the past week, but that is the only recommendation I can make. Overall this app is perfect!",5,55,1.2.3,2020-01-11 02:47:53,Gracias Julia por tu reseña! Nos esforzamos mucho para brindar la mejor experiencia posible y mejorar la app cada día! Un saludo!,2020-01-11 05:41:55,most_relevant,com.habitnow +Mare Est,https://lh3.googleusercontent.com/a-/AOh14GhNrsxQ-dz4qkJOHB4SHeqBLMAwWWEBs8UrKYGz,"So far so good. Just started using this app about a week ago. It's working well and is pretty clear cut as to adding or editing the habits. I like the option for reminders. If it continues to work well in the next few weeks, am thinking of buying premium at discounted "" launch"" price of $4.99 . That describes widgets as an extra and I am just wondering what that means.",5,14,1.2.3,2020-01-17 15:54:22,,,most_relevant,com.habitnow +Daniele Ottaviano,https://lh3.googleusercontent.com/a-/AOh14GjSEBOyPNU57EsUN-OLbNk2uafNh1PZdANkrLHEqw,"The best app of its kind, hands down. The only thing I would improve is the reminder system: right now the app would send you a notification to complete a habit/task even after you've already done it, when in my opinion it should automatically turn off. It's a minor thing, but it tends to get a bit silly when you've completed a lot of tasks ahead of schedule. Other than that, it's perfect.",5,20,1.2.3,2020-02-13 09:08:57,Hi Daniele: After the next update you will be able to choose whether the notification sounds after completing the activity or not. Thank you for your feedback!,2020-02-13 23:59:33,most_relevant,com.habitnow +Heather Clifford,https://lh3.googleusercontent.com/a-/AOh14GgvsseLzRb1qlgtkHAjREpOZSnnXmg-WNDDISYk,"I got this app to track my medication and it's perfect! I can set up how I want to take each medicine (yes/no or quantity), see the start date and adherence in the summary view, and even track side effects and effectiveness each day then see them in a chronological list in the sunmary. And the best part is that it's not tied to some medical database! Added bonus: I can track real to-dos as well. Overall, love this app!",5,6,1.2.3,2020-02-28 20:18:44,,,most_relevant,com.habitnow +Naomi & Wendy,https://lh3.googleusercontent.com/a-/AOh14GjEfocIJZy5C_ugvDS14IvreC339QmhqHzDEOP3aRE,"I'm trying to develop some healthy habits, and this app is very good at reminding me to do things. The only complaint I have is that you can't actually organize your tasks and habits. I try to organize them by time and they don't move. I have a habit for 12pm listed after one for 3am, which is preceded by 4pm. This is very frustrating when you want to look at things in order. That's why I'm docking 1⭐. I like the function of it and I like the widget. Update: 1⭐ restored- thank you for helping!",5,14,1.2.3,2020-03-04 08:41:55,Hi Naomi & Wendy: That's happening because the option 'Show high priority to-dos first' is enabled. You can turn it off from your app settings. Thank you for your feedback!,2020-02-20 19:50:30,most_relevant,com.habitnow +Tanisha Brooks,https://lh3.googleusercontent.com/a-/AOh14GhLW8vAH7EbKQgS2mWQ0pvt5jeEVyj9jb32t8-e,Exactly what I was looking for to help establish routines. I like that I can set it to place habits on certain days and don't manually have to readd them. My only suggestion is to be able to manually sort items,5,1,1.2.3,2020-03-20 15:13:41,,,most_relevant,com.habitnow +Michael Daniels,https://lh3.googleusercontent.com/a-/AOh14GhhFO2yEOmuoDFy96Ifkny3N_6q3zM_EMoR8te7BA,This app has worked great with no glitches. It does exactly what I need it to do and has had a valuable impact on my life. One minor update I'd like to see is a way to customise the category titles. Sometimes the preset ones don't match up with the tasks I do.,5,0,1.2.3,2020-01-15 16:45:35,,,most_relevant,com.habitnow +Bronwen and horses,https://lh3.googleusercontent.com/a-/AOh14Ghc2Dmme4p9Rdu69ENs2iXZxLumM6OXxGXtR95a,I love this app so much it has really helped me get into a morning and night time routine. Before I found this app I was always late for school and felt really unhealthy in myself. But now I'm I'm always early for school and make sure I wake up every morning at the right time thank you to this app so much,5,1,1.2.3,2020-03-01 13:44:46,Thank you for your feedback! We are happy to hear that!,2020-03-01 15:59:48,most_relevant,com.habitnow +Dwayne B,https://lh3.googleusercontent.com/a-/AOh14GjD96b1GUBJkgeHavw3U7BWyo6EJuCGAjc-ULo8iI4,"Just what I've been searching for. I like the compact view of the routines and tasks, and the satisfying way to mark them completed or not. The sorting options are useful. It would be great if you could add automatic syncing to gdrive at some point.",5,0,1.2.3,2020-02-15 12:51:04,,,most_relevant,com.habitnow +Edward Ketcham,https://lh3.googleusercontent.com/a-/AOh14Gj23dXs111trkPUY_aTcBR4GhzX3xPQP3vDo5fQ_Q,Great habit tracking app. Very clean and simple interface. Fantastically elegant design. Other habit tracking apps are not as user friendly. I contacted the developers on a couple of concerns I had and they were already working on these features to be added in future updates.,5,5,1.2.3,2020-02-20 00:32:26,Thank you for your valuable feedback Edward. We are constantly working to improve the app experience!,2020-02-20 00:39:50,most_relevant,com.habitnow +Kelli Goodwin,https://lh3.googleusercontent.com/a-/AOh14Gh0ytIn43lovXWRXSVybzMAslQUGFrJi298gyHjCg,I've been using this app for a week and so far it is great! It has really helped me hold myself accountable for habits that I want to break or start. Way better than I thought. I never end up liking self help apps. I also never write reviews. Give the one a chance.,5,0,1.2.3,2020-02-25 23:47:12,,,most_relevant,com.habitnow +Jamie Roseburgh,https://lh3.googleusercontent.com/a-/AOh14GgFUzGuvePAGyceWbj5h1SyQmpvASk5gmMsM0xR,"Great little app. Lovely interface, and does what I need it do by reminding me what tasks/habits I want to do each day. I like the feature where I can see my overall success percentage for each habit.",5,0,1.2.3,2020-03-14 08:03:41,Hi Jamie: Thank you for your feedback! We will work on that soon!,2020-03-14 11:27:15,most_relevant,com.habitnow +icarus,https://lh3.googleusercontent.com/a-/AOh14Gg6YpdbUo-UxkybVMCweFoLZLilNJyc_7w6nbHMjA,"tried all habit tracker apps, it's the best one yet. just please add an option to the calendar icon so i can see all the habits & tasks together at the calendar & read their notes or success / failure rate. keep up the good work.",5,0,1.2.3,2020-04-04 20:21:35,,,most_relevant,com.habitnow +Aleksandra Markovic,https://lh3.googleusercontent.com/a-/AOh14GjL-v0iHzmYkjNIam4fd7jHHAJmxB37-EEyIj2IAg,The app is great. But I cannot purchase premium version. It says that cannot connect to Internet and my Internet is working... so I cannot use all advantages of this app unfortunately...,5,0,1.2.3,2020-03-10 20:45:42,Hi Aleksandra: Thank you for your feedback! Contact us to habitnow.apps@gmail.com and we will be glad to find a solution for the issue.,2020-03-10 21:43:46,most_relevant,com.habitnow +Linda Sutcliffe,https://lh3.googleusercontent.com/a-/AOh14GgMWwYx39IS1hhAnLdkFI8mlJUtxJBomDKsXsv21w,Great app works very well it helps alot especially at this time with this pandemic helps to keep everything that you need to keep track of what and where you should be and to keep track of your symptoms and must know information. Check this app out.,5,0,1.2.3,2020-03-13 02:51:56,,,most_relevant,com.habitnow +Natasha E,https://lh3.googleusercontent.com/-2ilWl0bamJQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP2Q4g7GCea5NLncOwxOrBVQRB1xA/photo.jpg,"This is the best and simplest habit app that I have used. I had tried a couple of others and never stuck with them. I use the notification feature to send me a reminder to mark off my habits for the day, so I don't even have to think about remembering to update it.",5,0,1.2.3,2020-01-28 23:47:05,,,most_relevant,com.habitnow +ashley laricchia,https://lh3.googleusercontent.com/a-/AOh14Gimf8XOtm7EDPMF2mk5v5IPPbGMvvIqwRp8L-9h,"Really versatile app, got the premium version almost immediately. Very easy to use, love dark theme, not invasive and doesn't cause anxiety with pending habits/tasks. I'd like to see a feature added to make daily notes for each habit and one to let you chose the icon for 'other' category habits.",5,5,1.2.3,2020-02-07 14:53:46,Hi Ashley: To add a daily note just long tap on any habit entry (Either in the main todo list or in any habit calendar circle). Thank you for supporting our work. We are glad that you liked the app!,2020-02-07 15:10:46,most_relevant,com.habitnow +Jake Woods,https://lh3.googleusercontent.com/-yqIiLOVRQtU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMtdy2CKRqnwpgzP3I0x-NcziqrMQ/photo.jpg,"I can't say enough good things about the app and the dev and support teams. Super stable, lots of great features, and the most responsive support team I've worked with personally or professionally. Invest in this app! You'll love it and you'll support a company that is doing app development right.",5,2,1.2.3,2020-02-17 01:40:28,"Thanks for your support Jake, we really appreciate it!",2020-02-17 02:12:45,most_relevant,com.habitnow +Candace Garner,https://lh3.googleusercontent.com/a-/AOh14GhL_ZEQ6iKPEnhLIy6Kukmlxt-25U23Ad73U6OUKQ,Really helpful. I like that I get reminders in the morning about what's on my agenda for the day. I like that I can check them off and they move to the bottom of the lotst as they are completed. I like that it reminds me later in the day to revisit my list. Easy to use.,5,0,1.2.3,2020-01-13 17:07:58,Thank you for your feedback Candace!,2020-01-14 13:17:21,most_relevant,com.habitnow +Ana Castan,https://lh3.googleusercontent.com/-2F-gQqDfWOU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM4yfCwndz7UlKYcPAOT2744kgRIA/photo.jpg,It is the best app i ever downloaded to keep track of things that needs to be done. Im a proctastinator/ forgetful and know how hard it is to get things done. But this app eliminates the hassle of forgetting tasks.,5,0,1.2.3,2020-02-12 15:17:01,,,most_relevant,com.habitnow +Ani Pelaez,https://lh3.googleusercontent.com/a-/AOh14GhqhJPeoxdWRQa6RwLwpy2bWf5UJqqXGThzzu-uRQ,"I love this app, is very simple to use, yoh can set the time for reminders. Is not annoying and I totally recommend to use it. The only thing I would like to improve, is to put first the task you havend comple.",5,0,1.2.3,2020-02-27 05:27:12,,,most_relevant,com.habitnow +Antonio,https://lh3.googleusercontent.com/a-/AOh14Gj2yy3jAvNG8jYH_DZ4hQjdmaM9EN8SM-U0uMozCA,"Perfect App for what it is made for, I even.purchased premium so I could add more habits and also get the dark mode option. I am a Music Producer and if anybody does any form of creative art for a living then you will know how easy it is to get carried away and spend hours doing that. This app has helped me to stay on top of other tasks such as eating healthy spending time with my pets and going to the gym everyday. So Thank You!!! God Bless and have a great day. Instagram: AV_TheArtist",5,39,1.2.3,2019-11-28 11:51:53,"Antonio: Thank you for such a great feedback! Kind regards, HabitNow Team",2019-11-30 20:39:23,most_relevant,com.habitnow +Naol Negash,https://lh3.googleusercontent.com/--2-4dlPcL1g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNeLlTvw4mAPW_4B6kFogWv_qPYIg/photo.jpg,"It is a very nice app,it remixes you and you will never miss any task,it reminds you with alarm or notification, it really helped me.",5,0,1.2.3,2020-04-01 04:43:06,,,most_relevant,com.habitnow +Callum Savage,https://lh3.googleusercontent.com/-A0lrq_Dw1bU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMWntH4ej0VM8Z-n7eg7ejrbKuJmA/photo.jpg,"I love the app, and the widget is very useful. It's also nice to have my tasks and habits in the one place. Only feature I've found to be missing so far is to start the week on a Monday instead of a Sunday",5,1,1.2.3,2020-01-13 20:22:13,Hi Callum: We will work on that. Thank you for your feedback!,2020-01-14 13:17:01,most_relevant,com.habitnow +Kelly Brown,https://lh3.googleusercontent.com/-oOiAk0PDqGs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOgXEagqP4D_qhgN0J1GJ0c9pU6og/photo.jpg,"Awesome app. I now remember to take my medication, drink my water, and have my to do list. It has been extremely helpful and productive.",5,0,1.2.3,2020-03-08 22:04:26,,,most_relevant,com.habitnow +Bishal Gurung,https://lh3.googleusercontent.com/a-/AOh14GhNtFkFqLpH_F0WRfDZjtEK07m3QhuqJhHb_NH4mg,"I was reluctant at first to use this app but now absolutely love it. It's simple yet effective to track your habits and keep on top of to-do list. Truly one of the best app I have used (& I seldom say or write any comments). However, just one niggly point would be the alarm where it doesn't seem to do anything even if I choose to have alarm on the Reminder function. If this could be resolved, it would be awesome and would just go premium!",5,23,1.2.3,2020-01-06 07:00:32,Hi Bishal: Thank you for your feedback! To solve the alarm issue you have to exclude HabitNow from your battery optimizer. If you need to be guided contact us to habitnow.apps@gmail.com and we will be glad to help!,2020-01-06 13:22:04,most_relevant,com.habitnow +Frank Zadroga,https://lh3.googleusercontent.com/a-/AOh14GieX3Np5fe-Z0jkCdnShMD0ZSeEho1MLW2pGELv3w,Great simple app. I wish it easily sync'd across devices. I also would love a calendar view I can see/print so I can visually see my progress over time.,5,0,1.2.3,2020-03-21 03:41:06,Thank you for your feedback Frank. We will work on that!,2020-03-21 04:18:07,most_relevant,com.habitnow +Deepika Rao,https://lh3.googleusercontent.com/a-/AOh14Gjz6-x5yN0QyvH6NLGvPXOiJ3zWLcJXhGCzE-3MpA,App is great in terms of tracking or developing a habit and has great customizations for each. I loved the option of reminder but very dissapointed that it never works. I never get any notifications or reminders.,5,1,1.2.3,2020-01-07 18:00:31,Hi Deepika: This is not because an app error. Alarms and reminders are being disabled because your device is blocking them. To fix it you can exclude HabitNow from your battery optimizer. If you need a guide for that contact us to habitnow.apps@gmail.com and we will be glad to help. Regards.,2020-01-01 15:50:49,most_relevant,com.habitnow +Teresa Ann Wheat,https://lh3.googleusercontent.com/a-/AOh14GglW0i3LemATW_T0QJWQicG1fBO2XVWtuhqj0-BCw,This app is simple and effective! I totally love the reminders to complete my tasks and goals! Being able to look back at the calendar and see where i suceeded is awesome!,5,0,1.2.3,2020-01-14 12:10:27,,,most_relevant,com.habitnow +Krysti Beckett,https://lh3.googleusercontent.com/a-/AOh14GhiXcVZE8DPqG6i8CnJQCjn8RvHZ_wzJyrEMl6M,I am really appreciating these reminders and the ability to track my progress!!! It has a lot of customizable options and it is easy to use. Highly recommend,5,0,1.2.3,2020-02-26 02:42:12,,,most_relevant,com.habitnow +Avesta Irani,https://lh3.googleusercontent.com/-PfKjITJ6Ctg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM94ia_c43T7CFZnukZi60cKeAcQg/photo.jpg,"VERY GOOD and far better than most of the similar apps that I have tried so far. It would be great if weekly schedule could be added for an specific habit, so you could be reminded at different times during different days of the week; which sounds more functional and reasonable as we usually don't have a fixed routine during the week. Needless to say what a big improvement a companion smart watch app would be!",5,48,1.2.3,2019-12-09 08:33:47,,,most_relevant,com.habitnow +Ubaned Quintero,https://lh3.googleusercontent.com/a-/AOh14GiX_bRTdJDcVgygaYAZVeKpkiPNHu6RIZMoQR9exA,"I really like it! It is easy to use, it doesn't take a lot of time, just check and follow your new habits. Me encanta! Fácil de usar y no toma mucho tiempo revisar y hacerle seguimiento a tus nuevos hábitos.",5,0,1.2.3,2020-02-09 20:37:35,,,most_relevant,com.habitnow +Arjun Swaminathan,https://lh3.googleusercontent.com/-qWAnsQOAWVE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPW1afhmZsAYtm0gB0BXSd9b3sr0A/photo.jpg,"Functional, does everything I want it to do, versatile and allows for both habits and one-off tasks. The only improvement I want to make is changing the colours of the completion status icons.",5,0,1.2.3,2020-02-28 01:26:09,,,most_relevant,com.habitnow +Matt Drake,https://lh3.googleusercontent.com/-Kpz1skPAV5c/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOus6-EhroxFE_3sL8-OppgD3HDQg/photo.jpg,"Love it! Has really helped me focus and complete tasks all the way through, if only so I get to check them off and maintain my completion percentage",5,0,1.2.3,2020-01-20 13:21:29,,,most_relevant,com.habitnow +Jess Moser,https://lh3.googleusercontent.com/a-/AOh14GgTmDgQxhmk_6snYUzzLC3ykRIuIVlmjBsLULacoQ,Bought premium. Exactly what I was looking for. Amazing job and what I need to help me in life. Giving it 5 stars even though I have one suggestion. Possibly have it where you can have a single habit occur twice. Like say example I want work out but I want to work out at 3pm and 7pm. I saw another app have it but still this one is best hands down.,5,22,1.2.3,2019-12-15 05:33:57,Thank you for your suggestion Jess! We are currently working on that feature. It will be available before 2020. Regards,2019-12-15 14:13:08,most_relevant,com.habitnow +Life is Great,https://lh3.googleusercontent.com/-liHZp2FzWtw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNjCFaz7VpnNkRtXGnONl0kR4GX9g/photo.jpg,"Best app, only few changes please. In the edit option can't seem to change first date and repeat interval. Please add full editing same as when making a habit or task. Thank you",5,1,1.2.3,2020-01-10 16:38:05,"Thank you for your feedback Ahmed! We are currently working on that feature, it will be available as soon as possible. Regards.",2020-01-10 17:03:01,most_relevant,com.habitnow +Cleo Townsend,https://lh3.googleusercontent.com/a-/AOh14Gh4mJO6Gvs25vFnKOKxeVasQ7rLgru4ZxFlccjmdA,This app is exactly what I need to to be. It helps me keep track of the habits I'm trying to establish without being too intrusive. I've already recommended it to a number of my friends.,5,0,1.2.3,2020-02-17 20:06:46,Thank you for your support Cleo. We are glad that you like the app!,2020-02-17 20:50:02,most_relevant,com.habitnow +Kristina Lohrke,https://lh3.googleusercontent.com/-hi5snMuzxxw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPKr80ihB8FZVdO9iaohy1R9fuM6A/photo.jpg,I really love this app so far. It would be nice though if a habit/task would disappear from the widget list when completed for the day. It would make a better sense of accomplishment.,5,0,1.2.3,2020-02-01 15:29:56,,,most_relevant,com.habitnow +Brij Patel,https://lh3.googleusercontent.com/a-/AOh14GgUY-mgejMmd910DwEZO_aMmIjtpjC9WyyRnkJXQA,Really good app and well built with nice user interface. They also have good customer service and they replyed quickly to my earlier review where I was experiencing a problem at first.,5,0,1.2.3,2020-02-20 17:27:15,Thank you for your feedback Brij!,2020-02-20 17:27:56,most_relevant,com.habitnow +Michelle Snyder,https://lh3.googleusercontent.com/a-/AOh14Gjzhh0PrXca_m63wBAr1l2XKgl0hQmWdgExmPxWPg,This app is outstanding! I love dark mode so I upgraded to premium & it's 100% worth it. Excellent app. Great to organize & motivate yourself. Thank you,5,0,1.2.3,2020-02-23 02:59:18,,,most_relevant,com.habitnow +Bernadette van Schalkwyk,https://lh3.googleusercontent.com/a-/AOh14GhGTeL4SR-MhzY_t9ivmw6Mt3sl-pRbb8Fl9dTCmA,Only starting but it is a good little app so far! Easy to use and does what it needs to; will see how it goes :),5,0,1.2.3,2020-01-14 04:22:57,,,most_relevant,com.habitnow +shifath rahman,https://lh3.googleusercontent.com/a-/AOh14Ghnm-R3WEJGkErqu3pJ7SxxOhjXpD7XDhJM18_ZIg,It was really awesome.This is what I was looking for. I can track all my habits and task and also can see the history. I am notified in time. Having a good time with this app. The theme is also nice. Really loved it.,5,3,1.2.3,2019-12-13 12:05:07,,,most_relevant,com.habitnow +Mariam I Iculet Arikosi,https://lh3.googleusercontent.com/a-/AOh14Gjv_ckQzlp6nGZrstCGWDMpvcJ-xZ_fgY_Rn0gkaQ,"For those looking to manage their habits and tasks in one APP, HabitNow is just for you. No mpre need to sketch trackers that aren'y as nearly accessible as your phone.",5,0,1.2.3,2020-02-01 02:38:56,,,most_relevant,com.habitnow +Sara Fitzgerald,https://lh3.googleusercontent.com/-aEiu17i1yEM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOqxlD3S_NRxu0-bR8LbyvuCzKDMg/photo.jpg,This app is working really well for me. Definitely helping me stay on track with habits I'm working to build and stop!,5,0,1.2.3,2020-02-15 19:52:00,,,most_relevant,com.habitnow +Raphae Chagas,https://lh3.googleusercontent.com/-3Vyy7zDXvzI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOZrj_HjYu7ujPdhkFrqSXTpeoCBQ/photo.jpg,"Im in love with this app! Simple to use , beautiful layout and keep me on track!",5,0,1.2.3,2020-03-26 09:31:16,,,most_relevant,com.habitnow +Hassan Ali,https://lh3.googleusercontent.com/-2UevyUbmNwM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM3Stdv0NSRE4PF9EA1UEowenWbRQ/photo.jpg,Respected Brother Very nice app. Premium payment must be by other means as well and your contact details.,5,0,1.2.3,2020-04-02 17:49:38,,,most_relevant,com.habitnow +Rikundele Lukai,https://lh3.googleusercontent.com/a-/AOh14GjF3sQW6Jsl1GoEfq5_LnYMPlz0YAkifbfnniXT,"It's perfect. I've made excellent progress on my newly formed habits and I meet every task, thanks to this app.",5,1,1.2.3,2020-02-19 10:29:33,,,most_relevant,com.habitnow +Abi B-T,https://lh3.googleusercontent.com/-in9Vllgm8rM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNx7O2BBo-p3kW9OHeQu3cLfh4A-A/photo.jpg,"Best habit app I have tried, love the flexibility, task list and look. Good job!",5,0,1.2.3,2020-03-09 20:31:56,,,most_relevant,com.habitnow +Lars Konrad,https://lh3.googleusercontent.com/a-/AOh14Gi82UC5SdVWWrllb2RQHw48IJfHxeEdTXsu2t3P0ac,This app has most features for a free habit tracker and even the onetime payment is the cheapest in this category. The habit tracker of choice.,5,1,1.2.3,2020-01-21 19:57:14,Thank you Lars! We are always working to make HabitNow a better app!,2020-01-21 20:21:57,most_relevant,com.habitnow +Natalia Chávez G.,https://lh3.googleusercontent.com/a-/AOh14Ghbt_NxQQju84Ez_gOzx3ceVNE4KVLOzfDiAoSQhQ,Simple and effective! I really enjoy the unobtrusive way of making sure you log your data,5,0,1.2.3,2020-02-13 13:25:15,,,most_relevant,com.habitnow +Vrati Joshi,https://lh3.googleusercontent.com/a-/AOh14GimTlYVObUnmx7j1Sv89AsSA9aQRpVvzP-Mv306,"As a teenager,it is very crucial to manage time,habits and tasks.This is one app which allowed me to do so.My saying for this app is that it would control what you do in a day by its limit.",5,0,1.2.3,2020-03-26 06:06:18,Thanks for your feedback Vicky!!,2020-03-26 07:05:51,most_relevant,com.habitnow +Heather Marie Driscoll,https://lh3.googleusercontent.com/a-/AOh14Gj6W02UX_2hXjdFyoP2NyWsNJbjPsfWno-OYfCnyek,Love this !!! A simple easy way to keep me on track during the day!!,5,0,1.2.3,2020-02-19 02:23:39,,,most_relevant,com.habitnow +Kerra Williams,https://lh3.googleusercontent.com/a-/AOh14GgpBmRXEJf8Bfr-p3V5VmkXgUzF2oQK7CrnWog8k5s,I am really enjoying this app so far! It's just what I was looking for to keep myself on a routine. And the price is great!,5,0,1.2.3,2020-03-06 03:46:37,,,most_relevant,com.habitnow +Olga Petrovic,https://lh3.googleusercontent.com/a-/AOh14GjYjey-vRl5-Rm0L49UEsZZE3dL61yohTdN1M2sAg,This is a perfect app for tracking and building habits! :),5,0,1.2.3,2020-03-27 21:02:18,,,most_relevant,com.habitnow +l3arnf0x,https://lh3.googleusercontent.com/-g1MoPDqMXyo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOLy_uDgRA9tao4S_VOYcUPigT2zw/photo.jpg,Very useful for keeping myself accountable for daily tasks and goals that I want to accomplish.,5,0,1.2.3,2020-04-02 16:24:16,,,most_relevant,com.habitnow +Kevin Pritchard,https://lh3.googleusercontent.com/-Mv4fhKloi58/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOXKa14BpNIaJl636tz5T2ADX3cTQ/photo.jpg,HabitNow is a great app. Well thought out and the colours are good! No dark mode in free version but I don't see that as a reason to give less than 5 stars. Has helped me to organise aspects of my life.,5,1,1.2.3,2019-11-29 11:04:28,,,most_relevant,com.habitnow +Bek Eeling,https://lh3.googleusercontent.com/-mCGQv7ggOTc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPHo6Qj3qvv3-gtNIyDat_oiB6rYA/photo.jpg,User friendly. Simple but it has all the function I need.,5,0,1.2.3,2020-03-14 03:01:50,,,most_relevant,com.habitnow +Aaron Welch,https://lh3.googleusercontent.com/-0zqLDG1FWoI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO62feBvGbd9iQYealPiyhvHCPr4Q/photo.jpg,"Very organized, simple, just what I was looking for in order to keep my daily tasks organized.",5,0,1.2.3,2020-01-09 15:33:17,,,most_relevant,com.habitnow +Mehedi Farazi,https://lh3.googleusercontent.com/a-/AOh14GjPajBzVtGeOOmcySmhlBYp-IDU2wEZdRy67m8D,Perfect app for both making habit and tracking tasks. Would be a complete app if they provide sync just only with Google account for free.,5,0,1.2.3,2020-02-06 17:09:37,,,most_relevant,com.habitnow +Christina Thompson,https://lh3.googleusercontent.com/a-/AOh14Gjbn78kFH0fFIvU75xxdIY4JleoNyeDfkPMd3qfAA,This app is great for helping to establish new habits and keep you on track with goals and tasks you want to accomplish.,5,0,1.2.3,2020-03-02 15:52:26,,,most_relevant,com.habitnow +Damián Sciaraffia,https://lh3.googleusercontent.com/a-/AOh14GjSvlKOT3B474JFr_daCmXbUodicZ2jmflFNSH7hQ,Really easy to use. You can go back to catch up on habits you left unfinished for previous days,5,0,1.2.3,2020-03-08 20:07:12,,,most_relevant,com.habitnow +Marissa K,https://lh3.googleusercontent.com/a-/AOh14GjuGPpz2zl1qPeCCOuxFm9BaUfD-f1M_QwVq5ah,Wish you could enter info/ data in past. I was trying to move from one app to another. I had to take screenshots. Great app though especially reminder alarm! Update i can set past start date. Thank you!,5,1,1.2.3,2020-01-01 16:00:00,Hi Marisa: You can! You only need set a past start date when creating a habit. Thank you for your feedback!,2020-01-01 15:53:19,most_relevant,com.habitnow +Leo R,https://lh3.googleusercontent.com/a-/AOh14Gh_gCyzo6CeoxTlytQqOZ1sRox44KtXs1o9ACdrxw,Bought the premium version and now I actually have healthy routines in my life which is A LOT for an adult with ADHD !,5,1,1.2.3,2020-01-19 18:55:22,,,most_relevant,com.habitnow +Ayush Desai-Dakle,https://lh3.googleusercontent.com/a-/AOh14GipRpbYkmaaFvTdlGA2ZAR3v4KSYZL5MesdTfUZ,Great app as I can have a record of habits I want to instill in my self and daily tasks that need to be done,5,0,1.2.3,2020-02-04 05:05:47,,,most_relevant,com.habitnow +Jordan Frederick,https://lh3.googleusercontent.com/a-/AOh14GjB7ns-m7mxTtVnXJyc1TKwd-q_xBQoQmx1EHkIKqU,Great app! Been wanting a routine type ap for awhile definitely nice to have for my schedual!,5,0,1.2.3,2020-04-04 00:25:04,,,most_relevant,com.habitnow +Petra Meinking,https://lh3.googleusercontent.com/a-/AOh14GhvaY8oIyt2shrDx3wwW1CFCzUSXau-2anKPdAShA,This is the best app I've ever seen to help with achieving your goals. It's so awesome and really well set out.,5,0,1.2.3,2020-02-06 02:38:12,,,most_relevant,com.habitnow +D C,https://lh3.googleusercontent.com/a-/AOh14GiMoW2m6CqqxaXXXJx4yWU7Roeuhii2AXgdCrAhiSk,"I rarely rate, but this app is awesome. Simple habit tracker with backup option and realy neat habit display.",5,0,1.2.3,2020-03-06 00:52:04,,,most_relevant,com.habitnow +Molok Daneshmand,https://lh3.googleusercontent.com/a-/AOh14GjmfIqn2U8bvb0Nxhc4sSrDXWvziOKfqS8803meUQ,Great app. Very user-friendly and practical. Thanks,5,0,1.2.3,2020-03-13 19:37:01,,,most_relevant,com.habitnow +Tung Truong,https://lh3.googleusercontent.com/a-/AOh14GgEz1cBuGLXVUDtM3DIEhei-D3qeXTMn0CkBZ22YA,"I love this app, I tried a lot of apps and choose this because the alarm sound function, if this app can have the challenge friends functions, it will really good more. But for now, everything is perfect.",5,1,1.2.3,2019-12-29 15:49:14,,,most_relevant,com.habitnow +Beatriz Freitas,https://lh3.googleusercontent.com/a-/AOh14GiQhLpwmsL_TK3e3McDdfcPBS4AKiQycnWMDvmWZHY,Best app for habits track and tasks I ever used. Highly recommend! Easy to use.,5,0,1.2.3,2020-02-17 07:51:07,,,most_relevant,com.habitnow +Cristian Chidean,https://lh3.googleusercontent.com/a-/AOh14GjEw8C7dSnrp1ukydNjfSRMDJl6POf3kNMuIhvH,"Really good. I woul like to export my data but other than that, i love it",5,0,1.2.3,2020-01-19 21:35:33,,,most_relevant,com.habitnow +Adithya Apuroop,https://lh3.googleusercontent.com/a-/AOh14GhGbhrnls9LZYaKundFudHdVmTJq7LXHd3pw6eO3Q,Great app to track habits. Helps to keep me motivated.,5,0,1.2.3,2020-01-26 15:35:30,,,most_relevant,com.habitnow +Lisa Woeller Cooney,https://lh3.googleusercontent.com/a-/AOh14GiFKVDvn7VZ9_772T_0--3Z_uNuVmLUBrvu73AxDg,GREAT APP. If you need to keep a list of tasks or develop good habits or stop bad habits THIS IS FOR YOU. PREMIUM/VIP is ONLY $4.99.,5,1,1.2.3,2019-12-09 18:10:58,,,most_relevant,com.habitnow +Lotfi Lotfi,https://lh3.googleusercontent.com/-WVa6w8lo51A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMzz3a97u20Ny7E5aMeHR0QpVrABQ/photo.jpg,My to do list is now perfect . My work has been so clear and my thoughts are well orgonized !!! The best App I have ever worked with 😄👏 Bravo Bravo to all the team of HabitNow .,5,0,1.2.3,2020-01-01 01:09:22,,,most_relevant,com.habitnow +Darpan patil,https://lh3.googleusercontent.com/a-/AOh14Gj_9-7kzuqLS1_h-TzEaM5rbLl7SWG5lbBKeh_Pog,Nice application easy to track daily activities and also analysis all activities easily,5,0,1.2.3,2020-01-26 06:53:05,,,most_relevant,com.habitnow +Aliff Hiqal,https://lh3.googleusercontent.com/a-/AOh14GiyrTW7SDKPg1FBsvPCQZWbLcCZgEViwzV5Je4ghw,"Good app it helps me be motivated without hesitation nor procastination. Thank you HabitNow!!!! Your love, Aliff",5,0,1.2.3,2020-02-21 13:32:48,,,most_relevant,com.habitnow +Jaroslav Urban,https://lh3.googleusercontent.com/a-/AOh14GiQbXmpKVxdVTA9cMiaVZR0yq8u3pNc3qxqNRvcbjI,I have tried already few habit trackers and this one is the best so far. Well done and greetings to Argentina.,5,0,1.2.3,2020-01-31 08:18:46,Thank you Jaroslav! We are constantly working to improve the app!,2020-01-31 15:44:42,most_relevant,com.habitnow +marabathula mahesh,https://lh3.googleusercontent.com/a-/AOh14Gg8aItxatGjpb3Ho_h3fC5EdaHFwCr9a0Wa8qAHfA,"Loved it.... Awesome for making habbits, Best app for monitering ur tasks and daily routine Thanks HabitNow",5,0,1.2.3,2020-03-09 18:06:54,Thanks to you! We really appreciate your feedback!,2020-03-09 18:53:10,most_relevant,com.habitnow +Negin F,https://lh3.googleusercontent.com/a-/AOh14GjS-CHHWpzX1sqtRzgU9czaNt15dWM_ewJz2XW6DQ,It is one of the best apps I've ever had! It's very applicable and useful and also easy to use.I love it.👌❤,5,0,1.2.3,2019-12-06 16:48:24,,,most_relevant,com.habitnow +Jayson Musau,https://lh3.googleusercontent.com/a-/AOh14GjtxxUb3DHQsuE9vBbduw0AM_QRMbVsYYwJH_dx,If you're really serious with creating and tracking new habits within your life then this app will be very good for you...,5,0,1.2.3,2020-02-21 12:50:47,,,most_relevant,com.habitnow +Kelsea Cross,https://lh3.googleusercontent.com/a-/AOh14Gi_NJgkoNKhuIVH6rASlzKGOuWlv4LAHDuVFlfv2A,If you want a digital checklist to keep you on top of your life then this is the app to use!,5,0,1.2.3,2020-02-28 16:40:17,,,most_relevant,com.habitnow +lolo omar,https://lh3.googleusercontent.com/a-/AOh14GhpnE47ttmUJIx_DbU8YEf6XPJdvjwSysuz48eL,It's an amazing app ...it allows you to control all the details..it helped me a lot 👌🏻✔💙👍👍👍,5,0,1.2.3,2019-12-20 07:55:50,,,most_relevant,com.habitnow +Melinda Batchelor,https://lh3.googleusercontent.com/a-/AOh14Gg5DckJkcX5uC-tGPcu19l6onG99VDIzMVYeZejgQ,Finally a habit tracking app that lets me choose the frequency of my goals and habits,5,0,1.2.3,2020-01-27 03:37:40,,,most_relevant,com.habitnow +#momlife 609,https://lh3.googleusercontent.com/a-/AOh14GixWY9TwoXy29WvlnNKurrQGpm_Y8DD_Uoqu3NKRA,Helpful.. helped me to stay on top of things. As a mom with school. This app makes stay on top,5,0,1.2.3,2020-02-03 18:05:17,,,most_relevant,com.habitnow +Bri A,https://lh3.googleusercontent.com/-l11S_Bbu-h8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMSvaooGQGIFwsJRu4u73fiJelGEg/photo.jpg,It really helps me stay organized and keep track of my goals.,5,0,1.2.3,2020-02-21 01:09:45,,,most_relevant,com.habitnow +Tracy Midkiff,https://lh3.googleusercontent.com/-DoJWGGxqh9s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOraEQK1f_4cjALKgHm5wvspg5TKQ/photo.jpg,I like i can set daily tasks and on going habits. I found this feature useful.,5,0,1.2.3,2020-02-02 04:14:52,,,most_relevant,com.habitnow +Candyce N Brown,https://lh3.googleusercontent.com/a-/AOh14GgmMhFjpY_6FTvvqS5x1GtUCgPf3IW3mr6K99USPg,"Great habit, task and to-do list tracker",5,0,1.2.3,2020-04-01 23:49:47,,,most_relevant,com.habitnow +Amy O,https://lh3.googleusercontent.com/-jhhVqMVrPFU/AAAAAAAAAAI/AAAAAAAACWc/AAKWJJOjuuUA8x2MgRahLCnss7mpOiTvHw/photo.jpg,"First app in ages I paid premium for. It's actually has made me more productive and is great for balancing life, work and study",5,4,1.2.3,2019-12-02 06:04:33,Thank you for your review Amy! Glad to hear it!,2019-12-08 21:07:37,most_relevant,com.habitnow +suresh M,https://lh3.googleusercontent.com/-oHwfGEIOLtc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPitD963LE97mkOt3jgXXFVHGXSRw/photo.jpg,A good tool to manage and remind me of my tasks,5,0,1.2.3,2020-02-27 03:43:01,,,most_relevant,com.habitnow +Quynifa Bonaparte,https://lh3.googleusercontent.com/a-/AOh14GgFJMnJ94B6aI076-MdOum4V3vhgaq2cAR8eJCLng,Great app. Does exactly what I needed and wanted. Simple to use.,5,0,1.2.3,2020-01-02 14:48:39,,,most_relevant,com.habitnow +Darlene Boda,https://lh3.googleusercontent.com/-Sa89V8uC4m0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOmnKbrdUhFn-ALQ-WH96YgnOSmSQ/photo.jpg,This. This is what I was looking for. Well worth upgrading to premium.,5,0,1.2.3,2020-01-14 02:45:14,,,most_relevant,com.habitnow +lezdeth,https://lh3.googleusercontent.com/a-/AOh14GiJZZhTaNykuEMQT36_KRm6N3AVqs80vhDaxRE2,great app! ( I might edit this later but I'm too lazy to go into detail right now),5,0,1.2.3,2020-01-03 10:07:47,,,most_relevant,com.habitnow +Benjamin Jean,https://lh3.googleusercontent.com/a-/AOh14GgtO0YAaOf41DYJ-ng3tFOQjtD8WULmlTFxx0xi,"Amazing app would recommend it to anyone just wish it had more icons for activities, does that come with premium too?",5,1,1.2.3,2019-12-27 00:57:53,Hi Benjamin: It doesn't. We are working on custom categories. We will add them in early 2020. Thank you for contacting us!,2019-12-27 01:06:30,most_relevant,com.habitnow +Donna LaBelle,https://lh3.googleusercontent.com/a-/AOh14GhU2LawRQCyTG-Jzzne-mHlh38j3RDuZYcYj2fCRw,Helps keep me on track with setting/establishing new goals,5,2,1.2.3,2020-01-03 10:48:39,,,most_relevant,com.habitnow +Laurie Dow,https://lh3.googleusercontent.com/-InJT-kV2sHI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOKltCqtB1VHUUgCYgOc5qCi8hmpA/photo.jpg,"Easy to use, free version is enough for my purposes",5,0,1.2.3,2020-01-22 02:17:51,,,most_relevant,com.habitnow +GAMING AMATEUR,https://lh3.googleusercontent.com/a-/AOh14Gg2vUWCdJyyuvRE6tvOoM0RsqvvhIQn9IgxN5ZNnQ,"Love at first use, hope this keeps getting much cooler and hope doesnt endup as 30 trial or something 😂 we students cant afford you know 😢",5,0,1.2.3,2020-04-06 14:45:26,,,newest,com.habitnow +Dylilah Martinez,https://lh3.googleusercontent.com/a-/AOh14GgitSUfjPwAdT5n2P7_cGO3O-4VLYF5RnRbeXOdQK0,"This app is PERFECT for building habits or even simple reminders. Its hard to ignore, best app ive ever had",5,0,1.2.3,2020-04-05 09:31:06,,,newest,com.habitnow +icarus,https://lh3.googleusercontent.com/a-/AOh14Gg6YpdbUo-UxkybVMCweFoLZLilNJyc_7w6nbHMjA,"tried all habit tracker apps, it's the best one yet. just please add an option to the calendar icon so i can see all the habits & tasks together at the calendar & read their notes or success / failure rate. keep up the good work.",5,0,1.2.3,2020-04-04 20:21:35,,,newest,com.habitnow +Shayam Pareek,https://lh3.googleusercontent.com/-5wkMA8lz_RU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNAjc4EfQg3Upq7Vy6PsUSNadwSLg/photo.jpg,Good,5,0,1.2.3,2020-04-04 14:50:58,,,newest,com.habitnow +Jordan Frederick,https://lh3.googleusercontent.com/a-/AOh14GjB7ns-m7mxTtVnXJyc1TKwd-q_xBQoQmx1EHkIKqU,Great app! Been wanting a routine type ap for awhile definitely nice to have for my schedual!,5,0,1.2.3,2020-04-04 00:25:04,,,newest,com.habitnow +Hassan Ali,https://lh3.googleusercontent.com/-2UevyUbmNwM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM3Stdv0NSRE4PF9EA1UEowenWbRQ/photo.jpg,Respected Brother Very nice app. Premium payment must be by other means as well and your contact details.,5,0,1.2.3,2020-04-02 17:49:38,,,newest,com.habitnow +l3arnf0x,https://lh3.googleusercontent.com/-g1MoPDqMXyo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOLy_uDgRA9tao4S_VOYcUPigT2zw/photo.jpg,Very useful for keeping myself accountable for daily tasks and goals that I want to accomplish.,5,0,1.2.3,2020-04-02 16:24:16,,,newest,com.habitnow +Brian Sheldon,https://lh3.googleusercontent.com/a-/AOh14GgpLwTHjSk5plyWDF1g2J8AI6OhvVYWz3dViQlxCg,This app has a great way to keep up with and manage your life. It keeps me organized and inspired to heal myself daily.,5,0,,2020-04-02 12:16:21,,,newest,com.habitnow +Candyce N Brown,https://lh3.googleusercontent.com/a-/AOh14GgmMhFjpY_6FTvvqS5x1GtUCgPf3IW3mr6K99USPg,"Great habit, task and to-do list tracker",5,0,1.2.3,2020-04-01 23:49:47,,,newest,com.habitnow +Jake McCullough,https://lh3.googleusercontent.com/a-/AOh14GgSNhBXCLAD8z5LHHQknnPwnuniZriW0s0KkZKbqg,"Excellent if you use it properly. The only thing I would change is the notification and alarms settings. I want notifications to come through even when I'm not actively looking at the app. Right now, I'm not notified until I open the app and the pop-ups show up.",5,0,1.2.3,2020-04-01 08:26:09,,,newest,com.habitnow +Naol Negash,https://lh3.googleusercontent.com/--2-4dlPcL1g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNeLlTvw4mAPW_4B6kFogWv_qPYIg/photo.jpg,"It is a very nice app,it remixes you and you will never miss any task,it reminds you with alarm or notification, it really helped me.",5,0,1.2.3,2020-04-01 04:43:06,,,newest,com.habitnow +siddhartha goja,https://lh3.googleusercontent.com/a-/AOh14GiiQeyfzQnLD0NFykYW-VUQDJumB5QVCzKqNCwP,Amazing user intrrface,5,0,,2020-04-01 04:22:45,,,newest,com.habitnow +G,https://lh3.googleusercontent.com/a-/AOh14Gib0DMl66RqrtUqLdNV_F9ZxD6eF1IvA62rZ9jwUg,Keeps you on track!,5,0,1.2.3,2020-03-31 07:34:55,,,newest,com.habitnow +Mina Orang,https://lh3.googleusercontent.com/-q5O4hJlXEp0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPQTQkO9IqH15ixhSdNXqBZYiGF6g/photo.jpg,Super!,5,0,1.2.3,2020-03-29 20:15:44,,,newest,com.habitnow +Arturo Rosales,https://lh3.googleusercontent.com/-sqZiLO6LJPo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMw9fczgzuhO2g0vcR5gzULeVrQsQ/photo.jpg,Useful to improve like goals,5,0,1.2.3,2020-03-28 13:32:44,,,newest,com.habitnow +Karunya Talatam,https://lh3.googleusercontent.com/-YHyWYhR6OdM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPGMci6i_sa22LdxgtSC3McqUyq-Q/photo.jpg,Awesome experience,5,0,1.2.3,2020-03-28 03:57:12,,,newest,com.habitnow +Olga Petrovic,https://lh3.googleusercontent.com/a-/AOh14GjYjey-vRl5-Rm0L49UEsZZE3dL61yohTdN1M2sAg,This is a perfect app for tracking and building habits! :),5,0,1.2.3,2020-03-27 21:02:18,,,newest,com.habitnow +Webster Gondwe,https://lh3.googleusercontent.com/a-/AOh14GhRI6LzHAmWacarPNVziVRiagckfN2BOOeu3iVyYA,So far so good for me.,5,0,1.2.3,2020-03-26 18:42:47,,,newest,com.habitnow +Gretchen Elliott,https://lh3.googleusercontent.com/-P-S17ut5Iho/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOYwLLs0HYi7vtiLhKj8cWrkdK2_g/photo.jpg,Easy to use and very helpful. I love it!,5,0,1.2.3,2020-03-26 16:21:04,,,newest,com.habitnow +sama sar,https://lh3.googleusercontent.com/-DJhW63-qUDg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNeJzFTFnPEGPKnD59OwjfTThcH1w/photo.jpg,"Hi, how can get premium?",5,0,1.2.3,2020-03-26 14:11:08,,,newest,com.habitnow +Raphae Chagas,https://lh3.googleusercontent.com/-3Vyy7zDXvzI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOZrj_HjYu7ujPdhkFrqSXTpeoCBQ/photo.jpg,"Im in love with this app! Simple to use , beautiful layout and keep me on track!",5,0,1.2.3,2020-03-26 09:31:16,,,newest,com.habitnow +Vrati Joshi,https://lh3.googleusercontent.com/a-/AOh14GimTlYVObUnmx7j1Sv89AsSA9aQRpVvzP-Mv306,"As a teenager,it is very crucial to manage time,habits and tasks.This is one app which allowed me to do so.My saying for this app is that it would control what you do in a day by its limit.",5,0,1.2.3,2020-03-26 06:06:18,Thanks for your feedback Vicky!!,2020-03-26 07:05:51,newest,com.habitnow +Juan Rodriguez,https://lh3.googleusercontent.com/a-/AOh14Gi1kkouP4A7DtLlMkjHQI9-gzbmyAnOc51W6lehqA,Genial aplicacion,5,0,1.2.3,2020-03-24 16:19:42,,,newest,com.habitnow +Subhrojit Das,https://lh3.googleusercontent.com/a-/AOh14GiBuoC2tIubUSjFhoy6NqpweAwTURX6V8Ua6SS8RQ,At last I get what I want... Thanks..,5,0,1.2.3,2020-03-24 05:20:04,,,newest,com.habitnow +Hampus Lindström,https://lh3.googleusercontent.com/-JOlb9sZZAag/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMsJe5yLispO3sQI4-N9AIAHdiD7w/photo.jpg,"Honestly great. Simple. Effective. 1 time purchase. The UI has a sort of dated look but it's very quick and easy to use. Most of my daily habits vary alot based on which day it is, my schedule varies so much I cant put them on a specifik time, and I almost always do them in the same order. Therefore there should be an option to change the order of the habits manually, yourself, without any variables. :)",5,9,1.2.3,2020-03-23 20:35:13,,,newest,com.habitnow +Rick Harrison,https://lh3.googleusercontent.com/a-/AOh14Gj4_mpW-HEIX44CSrI3JdhQs1cU9PJ9wQC_qz-L,Excellent,5,0,1.2.3,2020-03-22 19:37:50,,,newest,com.habitnow +Oussama CHAIB,https://lh3.googleusercontent.com/a-/AOh14GijnJIn8ehbgFHzd4NaoXuwwrNfX4z-TKidzlfM0w,Really simple and good application. Good job guys,5,0,1.2.3,2020-03-21 10:30:04,,,newest,com.habitnow +Frank Zadroga,https://lh3.googleusercontent.com/a-/AOh14GieX3Np5fe-Z0jkCdnShMD0ZSeEho1MLW2pGELv3w,Great simple app. I wish it easily sync'd across devices. I also would love a calendar view I can see/print so I can visually see my progress over time.,5,0,1.2.3,2020-03-21 03:41:06,Thank you for your feedback Frank. We will work on that!,2020-03-21 04:18:07,newest,com.habitnow +Tanisha Brooks,https://lh3.googleusercontent.com/a-/AOh14GhLW8vAH7EbKQgS2mWQ0pvt5jeEVyj9jb32t8-e,Exactly what I was looking for to help establish routines. I like that I can set it to place habits on certain days and don't manually have to readd them. My only suggestion is to be able to manually sort items,5,1,1.2.3,2020-03-20 15:13:41,,,newest,com.habitnow +Henrique Munhato,https://lh3.googleusercontent.com/a-/AOh14Gg-WaMa1QeKztYMjV3LqXxBQTFNsQuuGTgfHYG5UQ,Second day of usuing. Above my spectation,5,0,1.2.3,2020-03-20 11:34:29,,,newest,com.habitnow +ARC OF TRANCE,https://lh3.googleusercontent.com/a-/AOh14GgpxD97ihMTaP9jzIO4xlYdiY7UIQCXK-_-0KAyCw,The developers got back to me within minutes and helped me sort the problem out within a very short period thank you support! Widget was being blocked by battery optimizer. *previous review *Paid for premium however the feature to mark complete on the widget is not working. Will do 5 star if this can be resolved.,5,0,,2020-03-18 14:15:28,Glad to help. Thank you for supporting our work!,2020-03-18 14:22:46,newest,com.habitnow +Shev Best,https://lh3.googleusercontent.com/-AjwURjNrhs0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO-g38Jc_es3zZP3Jx8G8xtcBbi6w/photo.jpg,Kpai,5,0,,2020-03-18 14:01:08,,,newest,com.habitnow +Stephanie Johanson,https://lh3.googleusercontent.com/a-/AOh14GjPINJvEOESWRoJRjPrfoDZ6YVVLqFZO2xSHSlKKw,I love this app it's very cool. I'm having fun with it. 🤗,5,0,1.2.3,2020-03-15 17:41:37,,,newest,com.habitnow +Vamsi Krishna Chaturvedi,https://lh3.googleusercontent.com/a-/AOh14GhdAhukHGmzJCJV329bPC6dBGC1rC2nwsWCaVE-ow,"The best app in the market for improving your daily habits. I researched many Habit apps in Play store and finally concluded that this is the best one. I changed my self a lot by regulary monitoring my habits through HabitNow App. The user interface is superb and quite simple. Also it provides habit statistics up to date. You can also enter your habits according to the category like Health, nutrition etc..A must have App for everybody!!",5,8,1.2.3,2020-03-15 08:57:21,Thank you for your valuable feedback Vamsi! We are glad that you liked the app!,2020-03-15 11:18:42,newest,com.habitnow +Candyce N Oberloh,https://lh3.googleusercontent.com/-TA4W16uqdHQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNaxe3k9avZrk9Q9flW2DzP2Qn0Vw/photo.jpg,Just started using it. Seems to work quite well.,5,0,,2020-03-14 16:43:15,,,newest,com.habitnow +Jamie Roseburgh,https://lh3.googleusercontent.com/a-/AOh14GgFUzGuvePAGyceWbj5h1SyQmpvASk5gmMsM0xR,"Great little app. Lovely interface, and does what I need it do by reminding me what tasks/habits I want to do each day. I like the feature where I can see my overall success percentage for each habit.",5,0,1.2.3,2020-03-14 08:03:41,Hi Jamie: Thank you for your feedback! We will work on that soon!,2020-03-14 11:27:15,newest,com.habitnow +Bek Eeling,https://lh3.googleusercontent.com/-mCGQv7ggOTc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPHo6Qj3qvv3-gtNIyDat_oiB6rYA/photo.jpg,User friendly. Simple but it has all the function I need.,5,0,1.2.3,2020-03-14 03:01:50,,,newest,com.habitnow +Molok Daneshmand,https://lh3.googleusercontent.com/a-/AOh14GjmfIqn2U8bvb0Nxhc4sSrDXWvziOKfqS8803meUQ,Great app. Very user-friendly and practical. Thanks,5,0,1.2.3,2020-03-13 19:37:01,,,newest,com.habitnow +Pedro Zhang,https://lh3.googleusercontent.com/-Qcc8MZBjBnc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMKGft9fzxrcY7VPO1bIWgt9YJRNQ/photo.jpg,Awesome. Simple and easy to use.,5,0,,2020-03-13 12:10:06,,,newest,com.habitnow +Linda Sutcliffe,https://lh3.googleusercontent.com/a-/AOh14GgMWwYx39IS1hhAnLdkFI8mlJUtxJBomDKsXsv21w,Great app works very well it helps alot especially at this time with this pandemic helps to keep everything that you need to keep track of what and where you should be and to keep track of your symptoms and must know information. Check this app out.,5,0,1.2.3,2020-03-13 02:51:56,,,newest,com.habitnow +millennial jesus,https://lh3.googleusercontent.com/a-/AOh14GicXdaaO71hEkUjNVSQVEIwbUBiAtll3WHdedum,OMG i love this app,5,0,1.2.3,2020-03-12 20:39:00,,,newest,com.habitnow +Aum Aum,https://lh3.googleusercontent.com/-K8UsYudGCjs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMZTbD_Skhq0282MPI14SWDUviphQ/photo.jpg,Good,5,0,1.2.3,2020-03-12 04:29:37,,,newest,com.habitnow +super man,https://lh3.googleusercontent.com/a-/AOh14GgnurXb8HaR_6XDFcvO9_0ZDiDJ_uOHDT84m002,Great easy works fine no problems,5,0,1.2.3,2020-03-11 22:12:33,,,newest,com.habitnow +Rosalind Garza,https://lh3.googleusercontent.com/-gnKcfWT3Uxs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPtILVKZTMVQJRm6NYG9LDz0rClEA/photo.jpg,Updated to 5 stars. Disregard previous rating.,5,0,1.2.3,2020-03-11 15:55:20,Thank you Rosalind!,2020-03-11 15:58:20,newest,com.habitnow +ѕнαᎥƒ ѕнαreαr,https://lh3.googleusercontent.com/a-/AOh14Gi_4DTUpWgN7vhPjGJQ0jKQhgq2__JKZLqIEXgOiw,One Of The Best App In Play Store 💜💜💜,5,0,1.2.3,2020-03-11 14:25:30,,,newest,com.habitnow +Doris Khotin,https://lh3.googleusercontent.com/a-/AOh14Gi3c_b0PCHjlB_5fKvFG9dbLF6ObHejj9RzBwFFUQ,I like this app,5,0,1.2.3,2020-03-11 11:43:12,,,newest,com.habitnow +Greg Christy,https://lh3.googleusercontent.com/-MYRT8bUAzIE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOu2oKfs-wnaWYegh9SZ_WgpokT5w/photo.jpg,One of the best Apps ever for time management!,5,0,1.2.3,2020-03-10 22:42:13,,,newest,com.habitnow +Aleksandra Markovic,https://lh3.googleusercontent.com/a-/AOh14GjL-v0iHzmYkjNIam4fd7jHHAJmxB37-EEyIj2IAg,The app is great. But I cannot purchase premium version. It says that cannot connect to Internet and my Internet is working... so I cannot use all advantages of this app unfortunately...,5,0,1.2.3,2020-03-10 20:45:42,Hi Aleksandra: Thank you for your feedback! Contact us to habitnow.apps@gmail.com and we will be glad to find a solution for the issue.,2020-03-10 21:43:46,newest,com.habitnow +Shahzad Faiz,https://lh3.googleusercontent.com/a-/AOh14GjMY16WjYFavIFd-GRVq2quCN0Ro7NLra6LaBcbJg,Amazing,5,0,1.2.3,2020-03-10 03:42:55,,,newest,com.habitnow +Abi B-T,https://lh3.googleusercontent.com/-in9Vllgm8rM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNx7O2BBo-p3kW9OHeQu3cLfh4A-A/photo.jpg,"Best habit app I have tried, love the flexibility, task list and look. Good job!",5,0,1.2.3,2020-03-09 20:31:56,,,newest,com.habitnow +marabathula mahesh,https://lh3.googleusercontent.com/a-/AOh14Gg8aItxatGjpb3Ho_h3fC5EdaHFwCr9a0Wa8qAHfA,"Loved it.... Awesome for making habbits, Best app for monitering ur tasks and daily routine Thanks HabitNow",5,0,1.2.3,2020-03-09 18:06:54,Thanks to you! We really appreciate your feedback!,2020-03-09 18:53:10,newest,com.habitnow +Cassini D,https://lh3.googleusercontent.com/a-/AOh14GiBNIj2KyC1d1lpunqUVm6VK8xcyehJEgEnhbnN,"Great, maybe best app for daily routine and habbits. Please, add repeating tasks.",5,0,,2020-03-09 10:56:46,,,newest,com.habitnow +Kelly Brown,https://lh3.googleusercontent.com/-oOiAk0PDqGs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOgXEagqP4D_qhgN0J1GJ0c9pU6og/photo.jpg,"Awesome app. I now remember to take my medication, drink my water, and have my to do list. It has been extremely helpful and productive.",5,0,1.2.3,2020-03-08 22:04:26,,,newest,com.habitnow +Damián Sciaraffia,https://lh3.googleusercontent.com/a-/AOh14GjSvlKOT3B474JFr_daCmXbUodicZ2jmflFNSH7hQ,Really easy to use. You can go back to catch up on habits you left unfinished for previous days,5,0,1.2.3,2020-03-08 20:07:12,,,newest,com.habitnow +Suraj Tripathy,https://lh3.googleusercontent.com/a-/AOh14GiyZjnXCU5lzekDbhP7iND5MYpt4D05UVd8nI84mg,Love the simplicity and design,5,0,1.2.3,2020-03-08 08:45:33,,,newest,com.habitnow +Yandisa Maja,https://lh3.googleusercontent.com/-vdBSJI_cFQE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO8cwmOfItXFry7JPmtOTB-XT599w/photo.jpg,Wow I just Love the app it's so Helpful.,5,0,1.2.3,2020-03-07 03:29:49,,,newest,com.habitnow +Kerra Williams,https://lh3.googleusercontent.com/a-/AOh14GgpBmRXEJf8Bfr-p3V5VmkXgUzF2oQK7CrnWog8k5s,I am really enjoying this app so far! It's just what I was looking for to keep myself on a routine. And the price is great!,5,0,1.2.3,2020-03-06 03:46:37,,,newest,com.habitnow +D C,https://lh3.googleusercontent.com/a-/AOh14GiMoW2m6CqqxaXXXJx4yWU7Roeuhii2AXgdCrAhiSk,"I rarely rate, but this app is awesome. Simple habit tracker with backup option and realy neat habit display.",5,0,1.2.3,2020-03-06 00:52:04,,,newest,com.habitnow +Liesl D-V,https://lh3.googleusercontent.com/a-/AOh14Ghjz6GoQFSP679myZ2aIjzAXL1MOYhV9oNL9S3vtQ,"Does exactly what I need it to do. You can see habit streaks, daily reminders for habits that day, percentage of habits completed.",5,0,1.2.3,2020-03-05 20:29:31,,,newest,com.habitnow +maheswari Pandian,https://lh3.googleusercontent.com/-29EvlK5tkKE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNRb7PPP7TGpYtgnnmi8pzgKU51Ew/photo.jpg,Very useful app for many thing to avoid bad habits🤗🤗,5,0,1.2.3,2020-03-05 17:59:02,,,newest,com.habitnow +jeda Day,https://lh3.googleusercontent.com/a-/AOh14GjP42_rg4pcOVJKMvECjNEG52-jMCc3W4MsY5_-,Great job,5,0,1.2.3,2020-03-05 16:54:11,,,newest,com.habitnow +Naomi & Wendy,https://lh3.googleusercontent.com/a-/AOh14GjEfocIJZy5C_ugvDS14IvreC339QmhqHzDEOP3aRE,"I'm trying to develop some healthy habits, and this app is very good at reminding me to do things. The only complaint I have is that you can't actually organize your tasks and habits. I try to organize them by time and they don't move. I have a habit for 12pm listed after one for 3am, which is preceded by 4pm. This is very frustrating when you want to look at things in order. That's why I'm docking 1⭐. I like the function of it and I like the widget. Update: 1⭐ restored- thank you for helping!",5,14,1.2.3,2020-03-04 08:41:55,Hi Naomi & Wendy: That's happening because the option 'Show high priority to-dos first' is enabled. You can turn it off from your app settings. Thank you for your feedback!,2020-02-20 19:50:30,newest,com.habitnow +Kunal singh,https://lh3.googleusercontent.com/a-/AOh14Gien-VQvLyCrbzBSbX0fTfhIvJ0Fq4LqSWRiuGo,Amazing app ~thank you,5,0,1.2.3,2020-03-04 05:44:02,,,newest,com.habitnow +Jessica Cordetsky,https://lh3.googleusercontent.com/a-/AOh14Ggr4gkmQ61R9IpujIoSOviwq0wbGKmAiriV9MT2sw,This app really helps keeping yorself in tact,5,0,,2020-03-04 01:56:39,,,newest,com.habitnow +DJ Sagittarius,https://lh3.googleusercontent.com/a-/AOh14Gi0pOvdVGUquaZPNjPHr6Oek6Wc6iO-JyXndAWLeA,Such an Awesome and amazing aap....it forced me to install it again ...I wish it had 10 stars....💯💯💯💯💯💯💯it's truly awesome ...very helpful and very admiring. Thanks to the creator of this app....I'm able to do my schedule daily on time and yes I'm becoming more organized....thank u😃😃,5,0,,2020-03-02 16:59:31,,,newest,com.habitnow +Christina Thompson,https://lh3.googleusercontent.com/a-/AOh14Gjbn78kFH0fFIvU75xxdIY4JleoNyeDfkPMd3qfAA,This app is great for helping to establish new habits and keep you on track with goals and tasks you want to accomplish.,5,0,1.2.3,2020-03-02 15:52:26,,,newest,com.habitnow +Lindsey Barela,https://lh3.googleusercontent.com/-A_RhZg1Z9BA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPNNBngDV3qG6Xdr0pNZfUQxaOROg/photo.jpg,Has helped me stay accountable and prioritize things that I really want to do!,5,0,1.2.3,2020-03-01 19:39:28,,,newest,com.habitnow +Bronwen and horses,https://lh3.googleusercontent.com/a-/AOh14Ghc2Dmme4p9Rdu69ENs2iXZxLumM6OXxGXtR95a,I love this app so much it has really helped me get into a morning and night time routine. Before I found this app I was always late for school and felt really unhealthy in myself. But now I'm I'm always early for school and make sure I wake up every morning at the right time thank you to this app so much,5,1,1.2.3,2020-03-01 13:44:46,Thank you for your feedback! We are happy to hear that!,2020-03-01 15:59:48,newest,com.habitnow +Elayanila Selvaraj,https://lh3.googleusercontent.com/-ef82tHS7uaI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO_4JunTeZN39PmTbYARxB9RhXp-g/photo.jpg,Very good app,5,0,1.2.3,2020-02-29 02:56:49,,,newest,com.habitnow +Heather Clifford,https://lh3.googleusercontent.com/a-/AOh14GgvsseLzRb1qlgtkHAjREpOZSnnXmg-WNDDISYk,"I got this app to track my medication and it's perfect! I can set up how I want to take each medicine (yes/no or quantity), see the start date and adherence in the summary view, and even track side effects and effectiveness each day then see them in a chronological list in the sunmary. And the best part is that it's not tied to some medical database! Added bonus: I can track real to-dos as well. Overall, love this app!",5,6,1.2.3,2020-02-28 20:18:44,,,newest,com.habitnow +Kelsea Cross,https://lh3.googleusercontent.com/a-/AOh14Gi_NJgkoNKhuIVH6rASlzKGOuWlv4LAHDuVFlfv2A,If you want a digital checklist to keep you on top of your life then this is the app to use!,5,0,1.2.3,2020-02-28 16:40:17,,,newest,com.habitnow +Arjun Swaminathan,https://lh3.googleusercontent.com/-qWAnsQOAWVE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPW1afhmZsAYtm0gB0BXSd9b3sr0A/photo.jpg,"Functional, does everything I want it to do, versatile and allows for both habits and one-off tasks. The only improvement I want to make is changing the colours of the completion status icons.",5,0,1.2.3,2020-02-28 01:26:09,,,newest,com.habitnow +Yattan Buttar,https://lh3.googleusercontent.com/a-/AOh14GjZf1trnJIu8kuxXNXUg6lhCnPXMJndJB0X5X_9kw,Such a amazing app. Keep track of ur life.,5,0,1.2.3,2020-02-27 08:41:03,,,newest,com.habitnow +Ani Pelaez,https://lh3.googleusercontent.com/a-/AOh14GhqhJPeoxdWRQa6RwLwpy2bWf5UJqqXGThzzu-uRQ,"I love this app, is very simple to use, yoh can set the time for reminders. Is not annoying and I totally recommend to use it. The only thing I would like to improve, is to put first the task you havend comple.",5,0,1.2.3,2020-02-27 05:27:12,,,newest,com.habitnow +suresh M,https://lh3.googleusercontent.com/-oHwfGEIOLtc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPitD963LE97mkOt3jgXXFVHGXSRw/photo.jpg,A good tool to manage and remind me of my tasks,5,0,1.2.3,2020-02-27 03:43:01,,,newest,com.habitnow +subhodip panda,https://lh3.googleusercontent.com/a-/AOh14Gi2ebAbnvTWrIozYgoPd_5Xtr9TDK_Y0ghLIpo_nA,Good,5,0,1.2.3,2020-02-27 02:19:54,,,newest,com.habitnow +Krysti Beckett,https://lh3.googleusercontent.com/a-/AOh14GhiXcVZE8DPqG6i8CnJQCjn8RvHZ_wzJyrEMl6M,I am really appreciating these reminders and the ability to track my progress!!! It has a lot of customizable options and it is easy to use. Highly recommend,5,0,1.2.3,2020-02-26 02:42:12,,,newest,com.habitnow +Kelli Goodwin,https://lh3.googleusercontent.com/a-/AOh14Gh0ytIn43lovXWRXSVybzMAslQUGFrJi298gyHjCg,I've been using this app for a week and so far it is great! It has really helped me hold myself accountable for habits that I want to break or start. Way better than I thought. I never end up liking self help apps. I also never write reviews. Give the one a chance.,5,0,1.2.3,2020-02-25 23:47:12,,,newest,com.habitnow +Iroda Azimova,https://lh3.googleusercontent.com/-1T47riestsw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOy9dDQezgX-CSAIAdk7HalsnB9Jg/photo.jpg,Wonderful app😍,5,0,1.2.3,2020-02-24 13:42:30,,,newest,com.habitnow +Sean Ngeow,https://lh3.googleusercontent.com/a-/AOh14GjxGKKzt37eq2ESf1JMNvFb6O22PVKxoRsmUbGWqcI,Great app for tracking habits.,5,0,1.2.3,2020-02-24 04:57:19,,,newest,com.habitnow +Fatima Iqbal,https://lh3.googleusercontent.com/a-/AOh14Gg_O0kzppHWBf8zUD0qGoINPgapQqoXqo266heg_Q,Very nice app.,5,0,1.2.3,2020-02-23 10:51:58,,,newest,com.habitnow +Michelle Snyder,https://lh3.googleusercontent.com/a-/AOh14Gjzhh0PrXca_m63wBAr1l2XKgl0hQmWdgExmPxWPg,This app is outstanding! I love dark mode so I upgraded to premium & it's 100% worth it. Excellent app. Great to organize & motivate yourself. Thank you,5,0,1.2.3,2020-02-23 02:59:18,,,newest,com.habitnow +David McDonald,https://lh3.googleusercontent.com/-we8j1AacqgA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNWX98x-xjau9JUEtn118Kn0tBCuA/photo.jpg,Helpful app,5,1,1.2.3,2020-02-23 00:00:16,,,newest,com.habitnow +Aliff Hiqal,https://lh3.googleusercontent.com/a-/AOh14GiyrTW7SDKPg1FBsvPCQZWbLcCZgEViwzV5Je4ghw,"Good app it helps me be motivated without hesitation nor procastination. Thank you HabitNow!!!! Your love, Aliff",5,0,1.2.3,2020-02-21 13:32:48,,,newest,com.habitnow +Jayson Musau,https://lh3.googleusercontent.com/a-/AOh14GjtxxUb3DHQsuE9vBbduw0AM_QRMbVsYYwJH_dx,If you're really serious with creating and tracking new habits within your life then this app will be very good for you...,5,0,1.2.3,2020-02-21 12:50:47,,,newest,com.habitnow +Snapped 4good,https://lh3.googleusercontent.com/a-/AOh14GgtCCiRUsM1jzapO-mqF2MZfVz0ZARm2lWMBr8fevs,Great to help habits & nip them before they ruin your life.,5,0,1.2.3,2020-02-21 04:16:16,,,newest,com.habitnow +Bri A,https://lh3.googleusercontent.com/-l11S_Bbu-h8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMSvaooGQGIFwsJRu4u73fiJelGEg/photo.jpg,It really helps me stay organized and keep track of my goals.,5,0,1.2.3,2020-02-21 01:09:45,,,newest,com.habitnow +Ariana Brown,https://lh3.googleusercontent.com/-YjynM4YaWcg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP05FmIQUqqd4Ytz3tZTj-WQcyE9A/photo.jpg,"My skin is clear, my crops are watered, and I am truly living my best life. I don't think I could recommend this app enough",5,0,1.2.3,2020-02-21 00:27:45,,,newest,com.habitnow +L Jones,https://lh3.googleusercontent.com/-_cfmtZFBHQE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOd7eM5L37_Vz4oh94QU2N04IVPOA/photo.jpg,Very good. Considering going premium.,5,0,1.2.3,2020-02-20 22:55:43,,,newest,com.habitnow +Brij Patel,https://lh3.googleusercontent.com/a-/AOh14GgUY-mgejMmd910DwEZO_aMmIjtpjC9WyyRnkJXQA,Really good app and well built with nice user interface. They also have good customer service and they replyed quickly to my earlier review where I was experiencing a problem at first.,5,0,1.2.3,2020-02-20 17:27:15,Thank you for your feedback Brij!,2020-02-20 17:27:56,newest,com.habitnow +Edward Ketcham,https://lh3.googleusercontent.com/a-/AOh14Gj23dXs111trkPUY_aTcBR4GhzX3xPQP3vDo5fQ_Q,Great habit tracking app. Very clean and simple interface. Fantastically elegant design. Other habit tracking apps are not as user friendly. I contacted the developers on a couple of concerns I had and they were already working on these features to be added in future updates.,5,5,1.2.3,2020-02-20 00:32:26,Thank you for your valuable feedback Edward. We are constantly working to improve the app experience!,2020-02-20 00:39:50,newest,com.habitnow +Rikundele Lukai,https://lh3.googleusercontent.com/a-/AOh14GjF3sQW6Jsl1GoEfq5_LnYMPlz0YAkifbfnniXT,"It's perfect. I've made excellent progress on my newly formed habits and I meet every task, thanks to this app.",5,1,1.2.3,2020-02-19 10:29:33,,,newest,com.habitnow +Heather Marie Driscoll,https://lh3.googleusercontent.com/a-/AOh14Gj6W02UX_2hXjdFyoP2NyWsNJbjPsfWno-OYfCnyek,Love this !!! A simple easy way to keep me on track during the day!!,5,0,1.2.3,2020-02-19 02:23:39,,,newest,com.habitnow +azadeh madani,https://lh3.googleusercontent.com/a-/AOh14GhwaYzqi84O3tjHqVrvoctjIMwgFtJcCkzlXY-kIQ,Big like,5,0,1.2.3,2020-02-18 12:53:39,,,newest,com.habitnow +Cleo Townsend,https://lh3.googleusercontent.com/a-/AOh14Gh4mJO6Gvs25vFnKOKxeVasQ7rLgru4ZxFlccjmdA,This app is exactly what I need to to be. It helps me keep track of the habits I'm trying to establish without being too intrusive. I've already recommended it to a number of my friends.,5,0,1.2.3,2020-02-17 20:06:46,Thank you for your support Cleo. We are glad that you like the app!,2020-02-17 20:50:02,newest,com.habitnow +Dhanguru Nanak,https://lh3.googleusercontent.com/-mvUs0FKs6t0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO6NHT0D5zZ8HGtSlIXKViQpTyroA/photo.jpg,Awesome app with good UI. I recommend everyone to use it.,5,0,,2020-02-17 14:19:30,,,newest,com.habitnow +Beatriz Freitas,https://lh3.googleusercontent.com/a-/AOh14GiQhLpwmsL_TK3e3McDdfcPBS4AKiQycnWMDvmWZHY,Best app for habits track and tasks I ever used. Highly recommend! Easy to use.,5,0,1.2.3,2020-02-17 07:51:07,,,newest,com.habitnow +Jake Woods,https://lh3.googleusercontent.com/-yqIiLOVRQtU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMtdy2CKRqnwpgzP3I0x-NcziqrMQ/photo.jpg,"I can't say enough good things about the app and the dev and support teams. Super stable, lots of great features, and the most responsive support team I've worked with personally or professionally. Invest in this app! You'll love it and you'll support a company that is doing app development right.",5,2,1.2.3,2020-02-17 01:40:28,"Thanks for your support Jake, we really appreciate it!",2020-02-17 02:12:45,newest,com.habitnow +SUBHASHREE PANDA,https://lh3.googleusercontent.com/-P0ECXFZ2J5E/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOsWO1EThNjkW99_7dwPcUS6WsWEw/photo.jpg,Just woww!!!,5,0,1.2.3,2020-02-16 19:58:11,,,newest,com.habitnow +Sara Fitzgerald,https://lh3.googleusercontent.com/-aEiu17i1yEM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOqxlD3S_NRxu0-bR8LbyvuCzKDMg/photo.jpg,This app is working really well for me. Definitely helping me stay on track with habits I'm working to build and stop!,5,0,1.2.3,2020-02-15 19:52:00,,,newest,com.habitnow +Alison Begley,https://lh3.googleusercontent.com/-CYyZwdA0FkQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM1Tn3Zu84vyEk02-NvpxPxCKOL7g/photo.jpg,This is terrible compared to wunderlist. I use wunderlist to sync my family's repeating chores. I was used to clicking 'today' and having everything there and in folders that needed to be done past and present. Now i have to choose what i do everyday! Also if i skip a task and want to reset it to today so it can repeat in 2 weeks it retains the day so repeats in less than two weeks. And the folders? What's the point in having folders if you can't sort by them in any list?Is there an alternative?,1,21,2.13.151,2020-03-21 18:17:14,,,most_relevant,com.microsoft.todos +Daan Kruijs,https://lh3.googleusercontent.com/a-/AOh14Gj4n0KN_h4x2vUEDfkD4WgHs8TCCPCjUscMZt6DNw,"The app looks nice, but being forced to move over from Wunderlist, the import data functionality only working after the 5th try (after two weeks) and the web version literally becoming unresponsive when I load it, tells me this app is not in any way finished or ready to be used. I don't trust it to not lose my data, so I can't use it. Thankfully, other apps can import from Wunderlist as well...",1,6,2.14.152,2020-03-30 10:23:06,,,most_relevant,com.microsoft.todos +Lyndsay Finley,https://lh3.googleusercontent.com/a-/AOh14GjT16MkDRW9jvXT0jSSQ20cBcNmwn9glGmHq59gtA,"This app is terrible compared to wunderlist especially if you like the functionality to share a list with another. We cannot seem to get the shareable feature to work. Additionally, even though I'm logged in with the same account on my laptop and phone., it doesn't sync lists. New items are added to the bottom of a list instead of the top. Microsoft has a lot of work to do to get this where it needs to be.",1,14,2.13.151,2020-03-25 17:24:31,,,most_relevant,com.microsoft.todos +William Hester,https://lh3.googleusercontent.com/-OPE8cGtVDoo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPInvJ1DqtOWfiptbtwDaSr2Td8qg/photo.jpg,"When Microsoft announced they were killing Wunderlist, my expectations for the New Thing were soooo low. I was spot on. Bloody hell its it's awful. Look how wunderlist works. 1. new items are added to the top 2. completed items are struck through _and_ moved to the bottom, and remain in completed order. 3. highlighted items are bounced to the top, which can then be un-highlighted. 4. items with low importance remain at the end. With _long_ lists old un-completed or permanent items migrate to the end of the list. Try a usability test with LONG lists.",1,48,2.13.151,2020-03-21 14:10:08,,,most_relevant,com.microsoft.todos +Dan Hughes,https://lh3.googleusercontent.com/-t5uHcOzWhzI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNxBOQ7k4XS68bBLX4OM82tGhem3g/photo.jpg,"Be very careful. This syncs with your tasks in Outlook. At first that sounds great, until you find out that if you use any feature of Outlook that isn't in this app (regenerating tasks after completion for example), your tasks are OVERWRITTEN in Outlook with ones compatible with this app, resulting in loss of things like due dates. I lost all my regenerating tasks, replaced by occurring tasks instead, causing so many items to be late. If you use any kind of advanced Outlook tasks, don't use.",1,16,2.13.151,2020-03-23 01:37:14,,,most_relevant,com.microsoft.todos +kristy faulk,https://lh3.googleusercontent.com/-Pk_6Q8E2e5I/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPVXXGrW11r8tWiQ6PfGcW9PMqoPg/photo.jpg,"Horrible! So many steps!...Set a due date, set a reminder, set it to display in My Day. The reminder set screen is 2 different screens for date/time. The My Day section is the only way you can organize by reminder time for scheduling purposes. Once it's in My Day you must manually move the items in time sequence. Takes up way too much time to organize your day! Importing did not work after several attempts. The setting reset themselves to default after I set them.",1,7,2.13.151,2020-03-25 18:43:37,,,most_relevant,com.microsoft.todos +P,https://lh3.googleusercontent.com/a-/AOh14GhG057013S2jEkgvHvtdGTva5IN6Ww5M0Q0KD3uUOs,"As a long time user of Wunderlist, this new replacement fails at the single most important thing next to holding taks: remind the user of said tasks. If a task comes up as due, I expect it to stay in notifications until I clear the task. Instead, To Do decided there's a time limit on how long a reminder stays on your notifications which means it isn't reminding you anymore which forces you to remember to open the app to see your tasks. This completely defeats the purpose of a reminder.",1,5,2.14.152,2020-04-02 09:13:58,,,most_relevant,com.microsoft.todos +sun lee,https://lh3.googleusercontent.com/a-/AOh14Gix9JwKoOX8B7eqdprB25wRV6OE6yrjXqQM0AumPw,"Was forced to migrate from Wunderlist. My husband and I both used Wunderlist extensively - sharing and updating lists. When we were force to migrate over, it migrated everything except the lists were not shared anymore. So when I updated my list, it does not update his list. I reshaped that list and it created a duplicate list for him. This is extremely annoying because we have to reshare EVERYTHING.",1,17,2.13.151,2020-03-22 14:27:35,,,most_relevant,com.microsoft.todos +שחף ברקן,https://lh3.googleusercontent.com/a-/AOh14GiJcsRXh402E1rkQfa11MlfxNwIQJuqFJM9XtX_,"This is my first time giving a review on any App I've downloaded. This App is a huge downgrade from the now defunct Wunderlist. The fact that you need to use a Microsoft account is annoying but to add insult to injury you can't even share the lists normally with people ""Outside your organisation"" (what ever that means) so now all I have is a glorified sticky note... I mean had, I'm erasing this app the second I finish this review.",1,7,2.14.152,2020-03-28 09:45:19,,,most_relevant,com.microsoft.todos +Christine Walker,https://lh3.googleusercontent.com/-lR44-IWsCHk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOLGtN4RkeR6lBImcKfw0zR-0r5Gw/photo.jpg,"Real hassle to set up with synchronization with others. I cannot work out what the small red number on the icon relates to and cannot get rid of it, with wunderlist it related to completed tasks and once these were viewed the number disappeared. I much preferred wunderlist which worked fine. Why won't Microsoft leave well alone? I do not need this app to run my life, just keep lists which can be mine or shared.",1,1,2.13.151,2020-04-02 20:27:56,,,most_relevant,com.microsoft.todos +Cynthia Cooper,https://lh3.googleusercontent.com/a-/AOh14GhxzLth28c5VGWf1IKak8BB50cUrmjjHNPRv4OHsQ,"Terrible, Wunderlist worked well, nothing seems to work now, transitioning was not easy, I had to set up an account I don't want and don't need. I am not happy, Microsoft has not done well with making things user-friendly for some time now, I wouldn't be surprised if they don't start stealing everyone's information and using it without ""consent"" like apple does. Oh wait, I can't tell the difference between any of these companies now, and I am pretty sure they all do that and don't care! GFY!",1,48,2.13.151,2020-03-15 04:05:07,,,most_relevant,com.microsoft.todos +Matthew Quinlan,https://lh3.googleusercontent.com/a-/AOh14Gh1u58YUmcUbxHlwFN3pmmrXmWftt5B-f2bmorm,Bad transfer from Wunderlist. Resharing lists is time consuming. Order of items on lists is not preserved. Looks like it at first until you add something to a list and then it appears at the end/bottom of the list not at the top. Must then sort by order of creation date which throws everything out of wack if you had items ordered by importance or any other custom order.,1,11,2.13.151,2020-03-20 02:59:47,,,most_relevant,com.microsoft.todos +David Kushner,https://lh3.googleusercontent.com/a-/AOh14GgHEv4oFQkUb-r2d1KuJdV7tWEoTZnNL3vxuxVH,"Wunderlist is way better and simpler. Why is this so complicated??? I dont need another complicated app to update that is hard to read. Just copy wunderlist exactly. I dont need 4 categories (my day, tasks, etc.). All I want is one area to see all things due today or overdue not a bunch of extra list to sort through.",1,7,2.13.151,2020-03-24 14:28:07,,,most_relevant,com.microsoft.todos +Mike Harris,https://lh3.googleusercontent.com/a-/AOh14Gi2xZSPKxssV6ZVH_mOPMuU41ytOg47gQ7r_MGOww,"I almost never leave reviews but for this transition I have to make an exception. Wunderlist has been my most frequently used App, being in daily use to manage my busy days. The ToDo version is hopeless to use. I like to use a weekly list which no longer exists. It's replacement does not allow drag and drop to different days. Worse, if you manually change the date of a task it doesn't move to the new day. It remains in the original day with a completion different date. Must be fixed!",1,97,2.13.151,2020-03-20 19:14:18,,,most_relevant,com.microsoft.todos +James Meyers,https://lh3.googleusercontent.com/a-/AOh14GiCitfXW2bA9xFzx34eaE2VWuh0sG7rh0YDSWQz,"Wunderlist was better. Microsoft bought it and killed it. First, Microsoft forced me to switch apps. Now I have to have two accounts since I have lists at both home and work that I share with others. Pretty dumb. Otherwise, the app IS Wunderlist. Waste of time to have to redo everything.",1,3,2.14.152,2020-03-27 19:46:43,,,most_relevant,com.microsoft.todos +danigrectreil mihai,https://lh3.googleusercontent.com/-tGKH4odiZLA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNZfE0UzuHdz7IoyQ2uAaBUsS-sZg/photo.jpg,"Can you make it exactly like wunderlist,I work every day with wunderlist and 'to do' momentarily doesn't help my needs!!! Four example,when a chose to have a list for today,i have to drag them from bottom to up,they don't go themselves,and when i click something,finish, it still stay there,there is no delimitation line!if you will do all of this later,than I retrieve my word,till then you should let wunderlist open.Thank you.",1,7,2.13.151,2020-03-20 11:35:25,,,most_relevant,com.microsoft.todos +Liam Martyn,https://lh3.googleusercontent.com/-3WxSyObYMmo/AAAAAAAAAAI/AAAAAAAAWKE/AAKWJJMJzhIux9tbDG-ZTi4gXl8yJcaySg/photo.jpg,"I have hope that this app will get a lot closer to the superior Wunderlist so I'll change my review when it does, but for now here are my biggest concerns: I really don't like how 'my day' doesn't automatically include things due 'today'. Also when moving a task to a list it's annoying because the lists are not shown under their folders. I'd also like to see a 'my week feature'. Also two lists can't have the same name even though I have them in different folders.",1,82,2.14.152,2020-03-28 15:00:58,,,most_relevant,com.microsoft.todos +Fjon Brandhorst,https://lh3.googleusercontent.com/-p8qscu9zdAA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM-GppfiZtbgwZgWs3_4SmTPpm6eg/photo.jpg,"Not impressed considering the size of the owner. Loses entire days worth of data if refreshed as prompted to ""apply update"". Shows lists differently on mobile app. Can't order some lists. Painfully slow to sync between devices when compared to ANY checklist app available. Annoyed since I switched from Wunderlist when Microsoft started ruining it.",1,0,2.14.152,2020-04-01 01:18:42,,,most_relevant,com.microsoft.todos +Mark Allen,https://lh3.googleusercontent.com/a-/AOh14GhwHg05aDc5AWJqNxsM7bnh0TqfS5RLsA6nROzVDQ,I had to migrate from Wunderlist and I mentioned a couple of compromises that had to be made due to less functionality. Anyway today I discover that you cannot print or email your lists. Surely those are basic requirements. This should have been thought out and a replacement system should at least be on par with the system its replacing,1,12,2.13.151,2020-03-18 14:29:10,,,most_relevant,com.microsoft.todos +Courtney Deuro,https://lh3.googleusercontent.com/a-/AOh14GiXQL4QNztoT4JJ59HOau2QfeU6ub61p8bzCBwt,"I like what its trying to do and want to use it, but it's missing a few things. To-Do doesn't support formatting AT ALL (mobile or PC), and any formatting you do in Outlook is erased and spacing is messed up. To-Do has the ability to create subtasks but doesn't translate over to Outlook. The To-Do app on PC doesn't allow you to enlarge the task/note window so your forced to type in this little box on the side of the window. PLEASE FIX THESE!!",1,6,2.13.151,2020-03-16 14:32:00,,,most_relevant,com.microsoft.todos +James Mollenhauer,https://lh3.googleusercontent.com/-EfSK4yNOg1o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPKhGos05IgJCu738BYV78lm0QSzA/photo.jpg,"For years we used Wunderlist, for work, including employees without corporate accounts, for family, outside organisation and across continents. ToDo failed from the get go, but to be fair, so do most other tasklist apps, we tried many. We finally moved to Trello - A bit different to Wunderlist and not quite as intuitive, but works across platforms, across organisations. It sadly seems MS loves to destroy good things. Wunderlist was such a good product, we were really sad to see it go.",1,9,2.14.152,2020-03-28 09:37:26,,,most_relevant,com.microsoft.todos +Kristian Sievers,https://lh3.googleusercontent.com/a-/AOh14GjE3XWpLoVDRmNshHubeCPtHAqIvVMX5o-Yy-huKNY,Wunderlist was better!! Please change the UI back to Wlist style which makes it easier to read. For example don't have completed and non completed tasks right next to each other in a list. Also comments needs to be separated automatically with a date specified that states which date that comment was added and by who,1,3,2.13.151,2020-03-20 09:16:53,,,most_relevant,com.microsoft.todos +Miki Kvetan,https://lh3.googleusercontent.com/-E6JNbRfmC4c/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMuDmTo3SZ3n2nmnwWRnL11qReCLA/photo.jpg,"Very sad story of being Wunderlist ancestor. Missing Drag and Drop Missing UX at all Missing ease of using Creating of new task requires your full attention for several painful seconds. App that was meant to make your life easy is now just some list that force me to write my tasks on paper again after few years of using Wunderlist, because paper has much better UX than this one.",1,2,2.14.152,2020-03-31 11:38:46,,,most_relevant,com.microsoft.todos +Katelyn Baker,https://lh3.googleusercontent.com/-bsS1OkuyREU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN-zvjpomkvTQgB36tOO4pyns0Mug/photo.jpg,"I don't like that I was able to link my account through Wunderlist and my Gmail but my husband is being promoted to create a Microsoft account to have access. If I am going to have to create a Microsoft account,I will be deleting this app. I don't want/need another account to manage. Wunderlist was much better.",1,4,2.13.151,2020-03-18 22:34:49,,,most_relevant,com.microsoft.todos +Leland Rychel,https://lh3.googleusercontent.com/a-/AOh14GhX3VnXIqhGm8nQSYRTcEyLOQyzn996CtWdmXrESg,"Any Microsoft product should have zero stars available. I cannot say strongly enough, if you love crashes, frustration and impossibly awful software. . . then get this app. Imports from Wunderlist do not stay put, they disappeared. Shared lists are now two different lists with the same name. One version shows only completed tasks, my fone shows incomplete. Thanks Bill for your 100% record of ruining everything you buy. Oh and 4.5 stars out of five?? I call BS. Look at the reviews.",1,9,2.13.151,2020-03-18 15:05:13,,,most_relevant,com.microsoft.todos +Patricia Asante,https://lh3.googleusercontent.com/a-/AOh14Gi_vRwgbvXGWpdWPqoDBjnkYqlyKcp8yruq3ayd,"Does not import from Wunderlist. Very disappointed with having to switch. We've been using Wunderlist for some time and it's been great and without issues. Now we're forced to switch over and when I follow the instructions, keep getting the 'nothing to import message'. This is very frustrating. Developers please fix asap!",1,12,2.14.152,2020-03-26 14:26:22,,,most_relevant,com.microsoft.todos +Patrick O,https://lh3.googleusercontent.com/-r-Mpfq5v2Ok/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPoVM8L5D9nJqnfkq8HUaysEij4tA/photo.jpg,"Wunderlist was just fine. Why the same in a new jacket done worse. Just because it has to be Microsoft? Microsoft, stop trying to be what others do better. Edge, why? Bing, why? Buy a good working app and make it worse, again. Why? As a UX designer to MS Business: stop trying to outperform others who already are market leaders. Start finding new solutions for new user problems and be the market leader there. If not, a Google will outperform you, because they understand user problems better.",1,3,2.14.152,2020-03-29 20:58:25,,,most_relevant,com.microsoft.todos +Caro Bastable,https://lh3.googleusercontent.com/-nki3vfngl9w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN6v6UMDgocQKsql0CU6w3k97SbIw/photo.jpg,"Tells me it can't import all my data and to retry. But when I retry, it tells me everything is up to date and there's nothing to import! Of course the one list that's missing is the only one that's important... I'll be trying another app, thanks but no thanks.",1,1,2.13.151,2020-03-26 20:23:46,,,most_relevant,com.microsoft.todos +dean M,https://lh3.googleusercontent.com/-8Ecb7UopKkc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOgqWhxtj_iC6m8elMnWO_vFGrA5Q/photo.jpg,"Microsoft bought an already mature application, spent 4 years working on it, and this is all they have to show for it??? Perhaps they could add more technical resources to support the 2 high school students that currently support this product. Poorly integrated with Outlook. Simple... too simple. Has very few features or functionality.",1,4,2.14.152,2020-03-26 18:18:43,,,most_relevant,com.microsoft.todos +Vincent Jalabert,https://lh3.googleusercontent.com/a-/AOh14GhRUz8xXe1nYXpvVe1NRnHJ3-RN1LSFgZat5RekKQ,"I hate it! I loved wunnderlist, it was just perfect. Why did you guys have to change what was great??? This new App is so unclear, things don't stand out the way they did. I imported all my info from wunderlist and it is all messed up. I will be looking for another app and give up on you asap!",1,10,2.13.151,2020-03-17 08:29:12,,,most_relevant,com.microsoft.todos +Tyvian Macfarlane,https://lh3.googleusercontent.com/a-/AOh14GgGEI3q0ceNxOjudeZ4xckl2ik3OkWqfH8P7I0ppg,"Uselss. Forced here from wunderlist closing, my whole family used that, now all our lists are different, doesnt sync accross shared lists, defeats the purpose altogether. Also a more contrived interface, im now off searching for a better alternative to start all over again as this ain't it.",1,3,2.13.151,2020-03-21 05:59:16,,,most_relevant,com.microsoft.todos +Sören von Sebelin,https://lh3.googleusercontent.com/a-/AOh14Gi9EWi2-vovyw7Ix3Za9bSZ8vEEDv2MyplpySFlNm4,"From the terrible Microsoft design to the fact of missing crucial features, especially in comparison to Wunderlist, and the fact that Microsoft only bought Wunderlist to shut it down... This piece of software actually had to overwhelm people to overcome the unfriendly Microsoft strategy, but here we are, letting us all down. Go to ticktick or smth else. Microsoft does not deserve our attention on this one :(",1,5,2.13.151,2020-03-18 07:20:58,,,most_relevant,com.microsoft.todos +Jason Simmons,https://lh3.googleusercontent.com/-hxykAx6yDx4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOj9qnAvpnCG3o9b6cb-91C18XI1w/photo.jpg,"Loved Wunderlist, was excited about the over all design and compatibility with Microsoft now in charge. Unfortunately I haven't been able to join any lists or have anyone join my lists. Which is the entire point of this app for me... hope to see this fixed...",1,2,2.13.151,2020-03-21 17:31:28,,,most_relevant,com.microsoft.todos +Ralf Longwitz,https://lh3.googleusercontent.com/a-/AOh14GikgDiHWCauRc7XuzSGZQifWNeWWBBmxJkGTe5UgZo,"I wanted to delete one item, pressed a millimetre too low, the whole list is gone. About a hundred items lost. This alone makes the whole app unusable for me. Months later: still this same fatal flaw. Seems like MS have no interest in improving this app, sadly",1,6,2.14.152,2020-03-29 07:49:58,,,most_relevant,com.microsoft.todos +Lee Chengjie,https://lh3.googleusercontent.com/a-/AOh14GisEMNaYAOyrNDiAncXCb0GefpXXluRp2XdfYAmo7c,"Forced to migrate from Wunderlist. Why can't the developers just keep basic features such as adding an item to the top of the list? (instead of bottom) I also miss the Today view where tasks are organised by Category instead of Date. Urgh.. Going to look for another app. Sorry Microsoft, you ruined the app for me.",1,4,2.13.151,2020-03-22 07:42:31,,,most_relevant,com.microsoft.todos +Pierre van Wyk,https://lh3.googleusercontent.com/-SrY-rZaNgF4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPOuG4Qxfk2VPE-UOsYY46NMkYZeg/photo.jpg,I've been told that Wunderlist is being replaced by Microsoft To Do. What a sad replacement! Why on earth are they mucking up a great product for this? The whole look and feel of the app is terrible. The functioning of the app has changed too. Good bye from a long standing user.,1,37,2.13.151,2020-03-22 07:32:13,,,most_relevant,com.microsoft.todos +James T,https://lh3.googleusercontent.com/a-/AOh14GhduTgj2CfOcjg1TlCAzkbThWl-P0HwWFSCF6d-8-0,"Switched from Wunderlist and the widget will occasionally not load the contents. Sometimes it works, sometimes it doesn't. Very frustrating to use. Wunderlist never had any of these problems.",1,3,2.13.151,2020-03-15 02:43:28,,,most_relevant,com.microsoft.todos +Morgan May,https://lh3.googleusercontent.com/-1HdSCDmI-Ww/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNJOzRwywERpgrl8jakIoXdCchZag/photo.jpg,"Add a way to change the color scheme of the app. Blue on white is one of the most difficult colour sets to see. You bought wunderlist, and are making everyone change over to it. At least give us the option to reskin the app.",1,2,2.13.151,2020-03-19 23:29:39,,,most_relevant,com.microsoft.todos +Emily Froese,https://lh3.googleusercontent.com/a-/AOh14GgJ7f3kNstyQZTLJpbkNJ60o8UhF4V5okjFXzci,"Wunderlist was better. Shared my list with my husband and it won't sync or show up when one of us changes something. It shows us both on the list but when he deleted an item, it didn't show as deleted on mine after refreshing five times.",1,1,2.14.152,2020-03-31 18:15:28,,,most_relevant,com.microsoft.todos +Bryann Pineda,https://lh3.googleusercontent.com/a-/AOh14GiYu1PMFlHaz2oy1PZAOStkkLoyDgquprwX2r-aXJM,"I was not planning to give a review but it left me no choice since its replacing wunderlist which is very useful app which my wife and I love especially for our grocery lists, now this TO DO tries to replace it but can't even get it to work properly!!! IF I CAN GIVE ZERO STAR, I WOULD!!!",1,0,2.14.152,2020-04-03 03:53:31,,,most_relevant,com.microsoft.todos +Michael Killam,https://lh3.googleusercontent.com/-zVCa8QRKUhA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNHmSrUVPsaq7H18v9rPkHaz6RlBw/photo.jpg,Tried to share a list with my girlfriend who has a personal Microsoft account and I have an office 365 account. Can't do it... Need to have two personal accounts or be in the same organization. Bring back Wunderlist or similar functionality.,1,2,2.13.151,2020-03-17 00:54:40,,,most_relevant,com.microsoft.todos +Steve Roy,https://lh3.googleusercontent.com/a-/AOh14GhxNLIcMosFsqQOgvOcdDUTcCazXygOAl4GJpFC-A,"It just doesn't work. My family used Wunderlist for years. MS bought them. This app won't sync between users, tells me I'm offline (I'm not) and lost my existing lists. I'm going elsewhere.",1,1,2.13.151,2020-03-19 20:21:32,,,most_relevant,com.microsoft.todos +Jorden Gross,https://lh3.googleusercontent.com/-yzOYutNCbz4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM92wB_qsOCbQmhw6TvNzjzGLfveA/photo.jpg,"Was forced to be transferred here to Wunderlist , everything is ok but guys can you create few background themes at least , cuz it's annoying to look at white and black to do list ..... Like Wunderlist had some cool pictures in it. You don't....",1,1,2.13.151,2020-03-19 16:47:22,,,most_relevant,com.microsoft.todos +Nicole Miller,https://lh3.googleusercontent.com/-J0KXs0nCHvo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNvqkg3MzQcXUyKxCzaL3N7F0U8oQ/photo.jpg,This app is a piece of sh**. It won't sync my old wunderlists. Shared lists don't work. I'll be uninstalling and going with a different app. Thanks Microsoft for taking a fantastic app (Wunderlist) and ruining it.,1,0,2.13.151,2020-03-26 05:49:33,,,most_relevant,com.microsoft.todos +Name Surname,https://lh3.googleusercontent.com/-dBIDXqBs22o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM7TWvRUFRAjWq8KAAheacW9N8cRQ/photo.jpg,"You can't choose week starts day. Calendar is a basis. Additional customization looks reasonable. Moreover, MS support marked this request as ""in progress"" . But 2!!! years ago. Is it a joke?",1,1,2.13.151,2020-03-17 17:45:37,,,most_relevant,com.microsoft.todos +Agape Gifts,https://lh3.googleusercontent.com/-OaqfYG4l5SU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPYrOzD1OlVM6GD3Fapk-StNJipXA/photo.jpg,"This is awful!! bring back wunderlist ! You cant move your list around to the you want, this is beyond frustrating. Not happy you are forcing us to stop wunderlist Will have to investigate else where for a better list app.",1,0,2.14.152,2020-03-26 18:10:34,,,most_relevant,com.microsoft.todos +Gareth Round,https://lh3.googleusercontent.com/a-/AOh14GgL5dJAjLVty9fRLkrpe4L4-ZOyUpn79AZJymh8p1w,Sync is broken! We have been using for a year or so. Now sync between two people simply doesn't work. Microsoft have destroyed a great app! What did you do? It worked perfectly before!,1,1,2.13.151,2020-03-25 06:06:29,,,most_relevant,com.microsoft.todos +Clyde Clark,https://lh3.googleusercontent.com/a-/AOh14Gg5irMdkYW8D2x6c4tR6EOxnYpfxiZz3rg4DMcRqQ,Please delay shutting down Wunderlist. Those who most rely on task lists cannot deal with a switch during this global crisis. Especially since To Do is still lacking important features and sync and sharing are inconsistent.,1,1,2.13.151,2020-03-22 20:47:19,,,most_relevant,com.microsoft.todos +Ross Hornbostel,https://lh3.googleusercontent.com/a-/AOh14GilBuMoLgM-9l88yVMcv-1urkySjQ98TVG7EO-wgA,"""sorry, no more wunderlist. Looks like you're just going to have to switch over to this new platform that demands a Microsoft account 🤷‍♀️"" Like seriously who tf actually wants to use a Microsoft account?? Especially on mobile. Screw you guys!",1,1,2.13.151,2020-03-23 00:34:43,,,most_relevant,com.microsoft.todos +Cam Knopp,https://lh3.googleusercontent.com/a-/AOh14Ghzy7gEabPy801bxTqYiEBmajF3Z3DU7WmAJjxj,"Way worse than Wunderlist. They overcomplicated the interface and they got rid of the ability to type things such as ""get groceries tomorrow"" and have it automatically detect the due date. Nice job...",1,1,2.14.152,2020-03-25 22:33:16,,,most_relevant,com.microsoft.todos +Joel Armstrong,https://lh3.googleusercontent.com/a-/AOh14Gj3w8JGt4uVuR8toNCvLafu6fP0Kqq7_f3vYCGx,"Poor replacement for Wunderlist. So many features missing, my day isn't something everyone wants but can't turn off. Can't reorder my lists manually. Will use different app when Microsoft kill Wunderlist!",1,4,2.13.151,2020-03-26 18:07:21,,,most_relevant,com.microsoft.todos +Advaita Kṛṣṇa Dāsa,https://lh3.googleusercontent.com/a-/AOh14Ghk8rkiy5zSJkib9B8MY_Slq0DT2BWKgbscIXV8gQ,It took me a while to login because of terrible security checking. And after it suggested to migrate all the data from Wunderlist without option to cancel. Terrible beginning.,1,2,2.13.151,2020-03-16 23:36:13,,,most_relevant,com.microsoft.todos +Anna Harris,https://lh3.googleusercontent.com/-4NG1XZtihP8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMyyg4GZYvPVvcPySvqJTPvk-Qssw/photo.jpg,"Terrible. Won't sync, utterly disastrous transfer from wunderlist. Gutted that wunderlist is going and being replaced by something so inferior. Will have to look for a new list app now :-(",1,2,2.13.151,2020-03-16 09:12:48,,,most_relevant,com.microsoft.todos +Heath Boyd,https://lh3.googleusercontent.com/-Mo1qCJ1-gGE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNU1fv2AbqRpcLuvhLyt4MixQai1g/photo.jpg,Lots of bugs . No support can't share like wunderlist. Don't open an app that's not ready. Terrible Microsoft quit buying good apps and ruining them and taking the support away.,1,1,2.13.151,2020-03-19 12:34:30,,,most_relevant,com.microsoft.todos +Wes Radford,https://lh3.googleusercontent.com/a-/AOh14GgUv_L8TlTjJylyYbp4Ey3jZu_9-RDeQ5cqSFzsNg,"Can not import Wunderlist tasks. It simply says ""Gathering info. This might take a minute"" then ""It looks like there were no new updates since your last import.""",1,1,2.14.152,2020-03-25 23:44:07,,,most_relevant,com.microsoft.todos +Bob Dameron,https://lh3.googleusercontent.com/a-/AOh14Gg84WyKDjCY6nhGXNGy8nVBhHZEh2Sh85U7PqWBQw,not able to add people to my lists as they were on Wunderlist....have invited multiple times and after they click on the share link...nothing happens. Lists not updating....why did you mess with it?,1,1,2.13.151,2020-03-25 23:32:42,,,most_relevant,com.microsoft.todos +Kirill Borissov,https://lh3.googleusercontent.com/a-/AOh14GhHQLCOqW85ZSAYySejkRcFqJtAmizgyg3SXGcvo_M,"One star only because the checklist item has way too big paddings thus I can see 30-40% less items on a screen than in Wunderlist. Microsoft UX team, how could you make such a huge design mistake?",1,0,2.13.151,2020-03-27 18:00:57,,,most_relevant,com.microsoft.todos +Jaymes Williams,https://lh3.googleusercontent.com/a-/AOh14GiUCQqeh-Yj5isttjnqfQ4dOQo8iWS17hOHpV3Cyg,"Widget is mostly useless - it constantly displays no items while having a list selected that is well populated. Alternately, the widget becomes logged out somehow. Hope this gets fixed.",1,1,2.13.151,2020-03-25 16:29:22,,,most_relevant,com.microsoft.todos +Paula S.,https://lh3.googleusercontent.com/a-/AOh14GjvtBwhv5mWMal_B9RkETAz1nsXKhl3-afMPKBq,"This app keeps on signing me out and asking for my password, and then when I put it in it says it's wrong! Wunderlist was so much better!",1,1,2.13.151,2020-03-22 17:50:36,,,most_relevant,com.microsoft.todos +Ahmad Sherief,https://lh3.googleusercontent.com/-Zvt-2doaQo0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPGRpgnzrv1WHuHdVpKviqD1-aJuw/photo.jpg,"I couldn't even sign with Android, it kept saying the password is wrong, I ended up changing the password and still didn't login! Wasted an hour.",1,0,2.14.152,2020-03-29 02:45:18,,,most_relevant,com.microsoft.todos +Benny Weingarten-Gabbay,https://lh3.googleusercontent.com/a-/AOh14GjzB9bCZ23kmgu3qbZZ8n3p0AqAs7MFDWazvLOXYw,"I have never been delighted by a microsoft app, and this is no different. A simple to do list app, and I MUST have a Microsoft account??? No thanks, good luck.",1,3,2.13.151,2020-03-12 10:54:29,,,most_relevant,com.microsoft.todos +Furkan Kargi,https://lh3.googleusercontent.com/a-/AOh14GihVLUJgg-msK1i33TEIDzw_N0YZzl2L3ojaV9eYA,Terrible! I am missing Wunderlist. After importing our tasks everything got mixed and doubled. Shared people and list.owners mixed/double. Blame on your engineering and programming. İ will miss my lovely Wunderlist,1,0,2.14.152,2020-03-29 21:23:50,,,most_relevant,com.microsoft.todos +Florian Witulski,https://lh3.googleusercontent.com/a-/AOh14Ghi6eD1N4KXt6spCmAqWCC_baDsTyc0GzwN6IIaHg,"No replacement for Wunderlist, tasks are only getting added on the bottom of the list... Completely useless... Update: Still not fixed even so many people complain.",1,4,2.13.151,2020-03-14 04:10:00,,,most_relevant,com.microsoft.todos +Crillen Truffert,https://lh3.googleusercontent.com/-olba12wc6IY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOKmgQb-IeSAE6F08-FSNTGmFJUvA/photo.jpg,"Complete dumpster for here! Migrating from Wonderlist... We sync between two phones. The list did not completely sync, you have to share each list seperatly, updates to a list did not sync, the app keeps telling me things are being checked and unchecked, I left the shared list and tried to rejoin and it would not rejoin. Microsoft ruined a great simple app. Look elsewhere until this is fixed.",1,4,2.11.148,2020-03-07 17:59:20,,,most_relevant,com.microsoft.todos +Sandy Wang,https://lh3.googleusercontent.com/a-/AOh14GiscZlG_glusrGXRm0g3fb6rsdyBA9ukhAE7cjKzg,I am a loyal user of wunderlist. switching to to do is awful. could not function at all. for instance no list for today and week. I guess I have to find another app.,1,2,2.13.151,2020-03-17 02:53:38,,,most_relevant,com.microsoft.todos +Dave D,https://lh3.googleusercontent.com/a-/AOh14GixHMPEfpAOAP-Zyyd7qE4csadzaksZ4-zyFN1i3A,"I can't share my lists with my partner because I'm told I'm using a work or school account, but I'm not. No such problem on wunderlist.",1,0,2.14.152,2020-04-04 18:22:10,,,most_relevant,com.microsoft.todos +muyoriginalken,https://lh3.googleusercontent.com/a-/AOh14Ghh9pQCYlB4m78Y_huB9iVt0mLfbNRhxWHYzA3uZw,"Really frustrating experience. The list sharing is incredibly frustrating. My wife and I were on several lists together on wunderlist and when we transfered to this new app, we had to text message the lists we shared. She shared some of the same lists with me and now we have duplicate lists. It's completely FUBAR. We are abandoning the platform now to find something better.",1,16,2.12.149,2020-03-13 03:32:28,,,most_relevant,com.microsoft.todos +doc1,https://lh3.googleusercontent.com/a-/AOh14GgphqXFMe9jTYyfsJJYwt63BBQ3Om9xYcOj_XDLrw,I give it one star because the main feature is broken for me. I set pill reminders on daily cycle but it misses the notification sometimes. I tried adding the app to not optimized battery but it still misses reminders,1,0,2.13.151,2020-03-26 07:06:14,,,most_relevant,com.microsoft.todos +Andy Nott,https://lh3.googleusercontent.com/-52Np7foGJr0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP5RAGTMtIAC7rLYa0gSI-K0rRLKg/photo.jpg,"This app would get 5 stars as it is great for capturing and managing tasks. However due to major flaw it gets 1 star. I have accidentally deleted long detailed lists when trying to delete a task, and there is no deleted item recovery feature which means I have lost work. The notification feature does not clearly differentiate between TASK LIST and TASK allows this to happen. If fixed, this would be a fantastic app, but these flaws means using this app results in rework and frustration for now.",1,33,2.12.149,2020-03-08 10:21:14,,,most_relevant,com.microsoft.todos +Lauren Hildebrand,https://lh3.googleusercontent.com/-qxHh5RuOhWQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMRhf1uHKBNJcbDsy5BjH0t6ltI8A/photo.jpg,"Forced to migrate from Wunderlist. I am very disappointed that basic features are missing here: new items to the top of the list (so they don't get lost in long lists) and starred items to the top of the list (easy way to prioritize and rearrange). Without these features, for me the app is unusable. Currently looking for a suitable replacement",1,96,2.12.149,2020-03-14 12:44:20,,,most_relevant,com.microsoft.todos +Lu La,https://lh3.googleusercontent.com/a-/AOh14Ghc2FkRsxeaYDkNZP1TQFSIfQlBlAEob1Gt688v,"My prior app isnt any more and they automatically imported all content into this one. The most annoying part is that each item now adds to the bottom of the list, instead of the beginning, I need to fiddle with sorting on each list to fix this and the sorting takes space on the screen! Waste of time each time!",1,2,2.10.147,2020-03-11 07:25:35,,,most_relevant,com.microsoft.todos +Eric Hillebrecht,https://lh3.googleusercontent.com/a-/AOh14Gh-oGwmNBxD4_1sES-OgCLB5U6r-fMfMv2XaxaEXA,"Went to migrate wunderlist to the new ""to do"" and it just wiped all my info clean. I lost everything in wunderlist and none of it made it to the new to do app. Hmm...",1,1,2.13.151,2020-03-26 00:11:34,,,most_relevant,com.microsoft.todos +Tom Yates,https://lh3.googleusercontent.com/a-/AOh14GjwpUbNwrkTYsHcaNualGvnogk6vCXsfs2NwAEJrw,Forced to move from the fantastic Wunderlist. Import fails. That's an import of 100 pieces of text on a modern mobile phone. Pitiful.,1,0,2.14.152,2020-03-28 03:28:20,,,most_relevant,com.microsoft.todos +Shradha Rastogi,https://lh3.googleusercontent.com/a-/AOh14Gj2X_dkYzBqsRIiJeSRcDZyHV9eXUPCZYWnXLvJXg,Microsoft did what it does best. Acquired a perfectly good app and replaced it with junk that doesn't even login. Wish it had Google sign in.,1,1,2.13.151,2020-03-25 13:07:57,,,most_relevant,com.microsoft.todos +Roman Kern,https://lh3.googleusercontent.com/-fwW_2iiwzpw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPqUs16bu6taej0WOWBIyCUB7WA1A/photo.jpg,Account gets blocked after 1 day. Happened twice with different mail addresses. Only possibility to solve is to give the mobile phone number. Won't do that :(,1,1,2.14.152,2020-03-25 15:50:25,,,most_relevant,com.microsoft.todos +Mark Scott,https://lh3.googleusercontent.com/-eiQ7jtrMins/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNDNsUIBcRMOtmiMDFNbaPvEMTE0A/photo.jpg,Since Microsoft have taken over it is rubbish. We had wonderlist on 3 devices and To Do wont even sync the 3 devices the same. Time to look for a new app,1,0,2.14.152,2020-03-27 06:02:50,,,most_relevant,com.microsoft.todos +Tatiana Konopka,https://lh3.googleusercontent.com/a-/AOh14GjRqmmx9gl2WzCuMPJju9JqiH1NZxRcah1ZK399,"I like Wunderlist more. The widget was more clear and date of not completed tasks had red color, which was for me visually much better. Also I just choose to see on widget ""Today"" and automatically everyday my chores were added from all lists. ehhh why the good things must end. Not happy at all, I hope my old Wunderlist will work.",1,6,2.12.149,2020-03-14 07:08:38,,,most_relevant,com.microsoft.todos +Dan Miller,https://lh3.googleusercontent.com/a-/AOh14GgSaV1anGyWPTb0btfV-29mCECBNDG3IF4YZ3cRyQ,Latest update broke sync and my lists are all out of whack. I live and die by my to do lists so this has completely ruined my workflow.,1,1,2.13.151,2020-03-23 12:26:26,,,most_relevant,com.microsoft.todos +Eyal Sela,https://lh3.googleusercontent.com/a-/AOh14GgTrZId7fuLI5Mx6jM_V9mrt1uGPycbzIPSojhobw,"Can't add new Tasks to Top of list?? Clearly no one in Microsoft actually use To Do. If you did, you'd know that this is an extremely important and basic feature. Otherwise you add a task and it disappear to the end. I don't believe one can efficiently use a to do list without this feature.",1,10,2.12.149,2020-03-12 19:53:26,,,most_relevant,com.microsoft.todos +Tsi Tsu,https://lh3.googleusercontent.com/a-/AOh14GgdOZLIHifvMBFtU_jCnRvjfWP_11klRV2_NZcqbA,"It does not transfer files from wunderlist. The status is always ""importing from wunderlist"" but nothing happens.",1,1,2.13.151,2020-03-25 08:50:02,,,most_relevant,com.microsoft.todos +Puneet Purbi,https://lh3.googleusercontent.com/a-/AOh14GjOghUD_b5EJLBQ4r-CtnOuxCWPnGLGX6SW1z2ILfk,"In microsoft todo, there is no such option like in wunderlist to comment on assigned task with others and others can get notification on their mail, kindly add the feature if possible",1,0,2.14.152,2020-03-29 19:14:02,,,most_relevant,com.microsoft.todos +g yaffe,https://lh3.googleusercontent.com/-TtOZ7XnC-Vs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNpN6uHOlEwldN5hoo9Tx-faJFPgw/photo.jpg,"New entries need to go to the top of a list, with ir without a star. Still NOT an improvement over Wunderlist.",1,3,2.14.152,2020-03-23 13:06:06,,,most_relevant,com.microsoft.todos +L,https://lh3.googleusercontent.com/-YvccmdHJkCU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM1TYBfHEUkQXVGyiOs7JJQJadOoA/photo.jpg,"Worst app every. Can't share lists which was the whole point. Wunderlist was great, this new app is terrible. Looking for another one now..ughhhhhhh",1,3,2.13.151,2020-03-15 01:55:26,,,most_relevant,com.microsoft.todos +Mitzi Morris,https://lh3.googleusercontent.com/-hHp_tMRT6hs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPWb4TfA0HK7WukQYyO-CGcR929LA/photo.jpg,Keeps saying something wrong with my Microsoft account. This really sucks. Wunderlist was so easy.,1,2,2.13.151,2020-03-16 11:21:01,,,most_relevant,com.microsoft.todos +Eloise Di Cristoforo,https://lh3.googleusercontent.com/a-/AOh14GgF8SCvOOcM3ZJ3GDAV98BmaD4ZT9BDICVfBR6h8g,"Terrible! I've had to move from Wunderlist and the syncing doesn't work, which is so important for me. Also can't set it to add items to the top of the list. Have to scroll aaaallll the way to the bottom to have to find item and move it to correct location.",1,1,2.12.149,2020-03-21 08:36:12,,,most_relevant,com.microsoft.todos +Barry Hoffmann,https://lh3.googleusercontent.com/-AFXOvbb9n68/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP1LDMGFZ0ii1RJU3cKol60Q8W8vw/photo.jpg,App is a pain to sync. Not user friendly in this regard. Used Wunderlist for years then MS took them over and ruined it.,1,0,2.13.151,2020-03-31 15:38:06,,,most_relevant,com.microsoft.todos +Victor Red,https://lh3.googleusercontent.com/a-/AOh14Gh4uaaXDoAX6TQrMYTbeKy5mGAXi3vRxPtqLKCc,I have Wunderlist synced with my gmail account. can someone explain me how to transfer my lists to this app without having to create or use a Microsoft account? or is simply that I'm forced to loose all my list?,1,0,2.13.151,2020-03-26 16:40:53,,,most_relevant,com.microsoft.todos +Mátyás Dabóczi,https://lh3.googleusercontent.com/a-/AOh14Ggj2khcYVQRCTfJtPGgHBJitLWY284cltordpNRqA,"Could be as good as Wunderlist was, but please change the new tasks to appear at the top of the lists!",1,0,2.14.152,2020-03-28 20:04:35,,,most_relevant,com.microsoft.todos +Brian Rowan,https://lh3.googleusercontent.com/-sj2Kb6pazvM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPq09fEh1t92hv_EgPzhYbsUX54lg/photo.jpg,"Can't contact support. Software erases or moves things without my wanting this. No instructions, no labels on controls, it is more frustration than anything",1,0,2.13.151,2020-03-31 14:05:49,,,most_relevant,com.microsoft.todos +Anthony Yarborough,https://lh3.googleusercontent.com/-NAyrpNrCo9A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN6erc3kq8KX5v-SFU3Mzq-CREndw/photo.jpg,When I star the item from the widget it doesn't move it to the top automatically. I have to manually open the app and move around order. Defeats the purpose of a widget.,1,2,2.13.151,2020-03-13 02:15:20,,,most_relevant,com.microsoft.todos +Susan Belling,https://lh3.googleusercontent.com/a-/AOh14GgyruAXYW-hCPBGDFSLwDxtrgXKUt0_OfD-01aj,"Wow what a truly appauling downgrade from wunderlist. Cant give same top access to users, doesnt update well. I hate it and will look for an alternative",1,0,2.14.152,2020-03-28 17:57:12,,,most_relevant,com.microsoft.todos +Wes Poteet,https://lh3.googleusercontent.com/a-/AOh14GjqrNk-r0qtsFm3OanLd1Ab1PRnqRUffJemZuKx,"Mar 2020: Very, very disappointing. Looking elsewhere. Before:A move forward from Wunderlist? Not! MS made sure the UI looked different (with useless themes) and DROPPED Wunderlist functionality like 1) email delivery (marked stuff in Outlook is USELESS to people that don't use it), 2) no way to add tasks by widget/notifications, 3) marking a task with a star doesn't move it to the top, 4) ""My Day"" shows up rather than a task list. 5) ... (out of review space) I detest ""progress"" that isn't.",1,8,2.12.149,2020-03-12 11:54:42,,,most_relevant,com.microsoft.todos +Šimun Buzov,https://lh3.googleusercontent.com/-sz7XgD4ajJg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNAaXfQpetQvsjkJh-z-J6lcLS89w/photo.jpg,"Ex happy Wunderlist user, disgruntled with this half-baked attempt. Most of the fine details that made Wunderlist great were omitted (with an option to include them at some vague point in the future), interface does look cleaner but there are fewer details that help tasks being organized visually. For a standalone app it would deserve a 3 star. For an app that is supposed to replace Wunderlist it would get a 2 star. For an app that tries to get users by killing it's better competitor, even a 1 star is too much.",1,36,2.8.145,2020-01-21 09:20:23,,,most_relevant,com.microsoft.todos +Laura Marinescu,https://lh3.googleusercontent.com/-v7yN9ULrx_s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPqTlqPDsU1I4eV899dcF_j00ZOxA/photo.jpg,"I love Wunderlist! Unfortunately it will disappear in May 2020 and be replaced by this app. Me and my husband have installed the new app, imported all our lists from Wunderlist but we cannot share any of them, not even the ones that we previously shared in Wunderlist. I hope they will fix the problem until May.",1,10,2.8.145,2020-01-22 14:24:13,,,most_relevant,com.microsoft.todos +Abdul Rizal Nugraha,https://lh3.googleusercontent.com/a-/AOh14GhqJ9JSKk7uqrJ6l4gz2EaIDSQZldDB3aFDFUw1VYM,"Wunderlist is the best for me. If you would like to change wunderlist to be Microsoft To Do, please take all wunderlist's features. In this app you don't take 3 features that important things for me. 1. Login using un Microsoft account. 2. ""All"" task menu 3. Comment feature on each list (this point so make me happy. It used for list that I shared with another person and want to share the actual condition with a comment. Please enhance this app and I will change my rate to 5 star. Thank you:)",1,10,2.8.145,2020-01-27 23:40:58,,,most_relevant,com.microsoft.todos +Nomi Kopp,https://lh3.googleusercontent.com/-BQ7mWt6_HuE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNAwJrt7ldHKpDYRnlPL5rkSatELQ/photo.jpg,"Please bring back Wunderlist. The problem with To Do is that it's acting as a calendar app which I already have. I don't need daily tasks, reminders, add a date, etc. That's all wasted space for me but I can't get rid of it. I make lists with sub files of all kinds of info to keep at my fingertips (literally :) that's what makes Wunderlist so terrific.",1,100,2.12.149,2020-03-02 22:06:20,,,most_relevant,com.microsoft.todos +Milo Persic,https://lh3.googleusercontent.com/a-/AOh14GhJ0fR7RsdX3LD-76oOXR6d9I3T0_B5C_0XLVu5Kg,"Awful. I can't believe Microsoft killed off Wunderlist and is forcing people to use this slow, ugly POS or lose their data. That's Microsoft for you!",1,5,2.13.151,2020-03-13 19:48:56,,,most_relevant,com.microsoft.todos +Jennifer L,https://lh3.googleusercontent.com/-YC04CRzuy5s/AAAAAAAAAAI/AAAAAAAAHGM/AAKWJJNefBpKZdMVDvETyXzDg_dVGUfAWQ/photo.jpg,"1 star bc I was forced to change apps yet there are no meaningful improvements from Wunderlist but boy are there downgrades! Harder to share lists with my husband, syncing is spotty, didn't improve the calendar view to let you see your schedule, the My Day only allows you to manually add one task at a time by opening each task and moving it. I have to manually add it if it's due ""today""?! This is a HUGE flop! Killed Wunderlist and now I have to pay for a different app that actually works",1,15,2.8.145,2020-01-17 02:49:01,,,most_relevant,com.microsoft.todos +Lily Stajos,https://lh3.googleusercontent.com/-3NxPH3A3QAw/AAAAAAAAAAI/AAAAAAAAJJQ/AAKWJJMrOm_44Tfd_R9wNG-0zIc1rQx6-w/photo.jpg,"Not user friendly... Wunderlist was much better. I have several different lists and liked the ""All"" view from Wunderlist where I could see all the different tasks from all of my lists on one screen and I could easily move tasks between different lists. Now there is no ""All"" view and I have to open each individual list separately and go back and forth to see everything... I also can't move a task to another list. I'd have to open one list and copy the text then open the other list and paste...",1,21,2.10.147,2020-02-11 21:05:46,,,most_relevant,com.microsoft.todos +Andi Lee Davis,https://lh3.googleusercontent.com/a-/AOh14Gg8vczvs83_ib6qGdfmPgrmA6-QrPIn1g08THfmNg,"After 3 years, still does not sync with office 365 business accounts.",1,0,2.13.151,2020-03-22 22:57:20,,,most_relevant,com.microsoft.todos +vishal shaw,https://lh3.googleusercontent.com/a-/AOh14GjJkduW3Z7z-K9rGWkQ_V94MZZy7B2g-KEnQ6vw-w,Not at all good experience with this app... Not easy to use at all 👎,1,0,,2020-04-06 18:28:24,,,newest,com.microsoft.todos +Anton Iliev,https://lh3.googleusercontent.com/-Mav9N9pgCqs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP1QYmpyFTuzZtlEjRUbFJBSZs4Nw/photo.jpg,Forced to sign in? No thanks!,1,0,2.14.152,2020-04-06 17:38:20,,,newest,com.microsoft.todos +Bill Park,https://lh3.googleusercontent.com/-2I6oUE5Pd0s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOniUG9MG9c4qxsTwYf_3ujBbViEQ/photo.jpg,"Worse than wunderlist. Also, I have no interest in having to log into a Microsoft account to use this account. I'll look for an alternative.",1,0,2.14.152,2020-04-06 16:58:03,,,newest,com.microsoft.todos +the udana,https://lh3.googleusercontent.com/a-/AOh14Gh2VIheeXoMYSk2kPKuc1wXIExkU3JXcJOumSyD3g,"I find it a good application but I find the Microsoft service very bad, accounts are a problem and a mess always crashes without reason, so stop using email, now with this application I only opened it once and it already tells me that account is locked 😡. I will definitely not use any of their products again. And they do not even give any technical service the attention to users is terrible, I do not recommend Microsoft products.",1,0,,2020-04-06 15:38:35,,,newest,com.microsoft.todos +Ezra Michael,https://lh3.googleusercontent.com/a-/AOh14GhEF64u50vgWEJTHsTVX3REo-iv8HlqwE5m1hsC,It tells you your own account has a problem and doesn't let you sign in. It doesn't even accept your phone number which is just plain stupid,1,0,2.14.152,2020-04-06 07:54:32,,,newest,com.microsoft.todos +Casey Kuhn,https://lh3.googleusercontent.com/a-/AOh14GgDnwRUdnkvGI5KSwnIACGlNMhStPXlmS3axtQAGw,"This is a poor imitation of Wunderlist, not even missing the features that made Wunderlist a killer app, but then soon be bad design choices were made in the port. WHY do you have to scroll to the bottom to add items? WHY is there no API to tie into? Thoroughly disappointed.",1,0,2.14.152,2020-04-06 06:28:43,,,newest,com.microsoft.todos +R R,https://lh3.googleusercontent.com/-ewT3z30COXk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPbEIkLtQGbfbp2Ug5UkMUWi3r4cg/photo.jpg,"WTH?! I used Wunderlist happily for, oh, about 7 years!Complete BS! They make you sign in to an acct to use this. I will NOT BE FORCED to sign in so all my personal info is linked with all my private grocery and to-do list. Microsoft has enough of my info and I have been less than happy with the invasion of Cortana on my laptop. MS help is the WORST (besides Google). So why would I want this co. storing THIS level of my personal life in their database? F no! Deleting this app immediately.",1,0,2.14.152,2020-04-06 04:25:26,,,newest,com.microsoft.todos +j,https://lh3.googleusercontent.com/-8LQgJ5vo-ZE/AAAAAAAAAAI/AAAAAAABhUs/AAKWJJNaawKS9-sks39VRmz2cfX6_mB7HA/photo.jpg,"Has less features than Wunderlist, a more complicated UX, and is tied to a microsoft account. Enjoy the crappy spyware folks!",1,0,,2020-04-05 23:37:10,,,newest,com.microsoft.todos +Shawn Goad,https://lh3.googleusercontent.com/-SdQqrDBJUro/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPGK7sOe9rnjsjuwF7M3mAxqx51hw/photo.jpg,"This app is supposed to replace Wunderlist. This app requires you to have an outlook account. Ok, fine. It is not easy to invite others, not user friendly, always logs out, and requires you ok sign into account.live. Will NOT recommend at this time.",1,0,2.14.152,2020-04-05 20:01:45,,,newest,com.microsoft.todos +Rainer Dansseg,https://lh3.googleusercontent.com/-jpKGzPuigaQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMCVQ3jEb6e5ERVlNA4wIFX269oHg/photo.jpg,Basic functionality of Wunderlist still missing,1,0,2.14.152,2020-04-05 19:35:17,,,newest,com.microsoft.todos +Paula Kasowski,https://lh3.googleusercontent.com/a-/AOh14Gi9IPbzObhiyKQ8imjHivtwsqr6i6D-bAmORi57wQ,I hate this app. Shared lists aren't shared unless you send an invitation everytime you update the list. I want my Wunderlist back!,1,0,2.14.152,2020-04-05 15:41:49,,,newest,com.microsoft.todos +Jeremy L,https://lh3.googleusercontent.com/-2zjMnlVW6oE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP3A8VVb-UpXi-7SPldw-W3CSIjbA/photo.jpg,Trash App. This is a great example of Microsoft buys companies and gutting their usefulness. Overloaded with Features that are unreliable and useless.,1,0,2.14.152,2020-04-05 13:44:03,,,newest,com.microsoft.todos +Regi Adams,https://lh3.googleusercontent.com/a-/AOh14GhO_wZVBgAe6tg8ODPYYBG67OIl9NZrWRBCmbdP2g,I never leave reviews. I was so disappointed when I heard Microsoft was killing the Wunderlist app. Why not just copy the functionality of Wunderlist exactly. They had the formula right. It was simple and easy to use. Everything Microsoft is doing is so clunky.,1,0,,2020-04-05 13:11:16,,,newest,com.microsoft.todos +Daniil Akhmerov,https://lh3.googleusercontent.com/a-/AOh14GjBfTG7maszcfWNkNOnG8U47H4QRZyjV_mVkeVO,"I cannot log in my Microsoft-account. The app shows a message - ""Your password is not correct"". But I can log in my account using the PC-version of the app. How to solve this problem?",1,0,,2020-04-05 11:18:32,,,newest,com.microsoft.todos +Lubos Sytensky,https://lh3.googleusercontent.com/a-/AOh14GikTQzhGmjtq3u5TXiT4C2YKUgs-9DGTm3-SdEzZg,Please fix dark mode!,1,0,2.14.152,2020-04-05 10:07:40,,,newest,com.microsoft.todos +P M,https://lh3.googleusercontent.com/-HyuEvSFF2n0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPHjhuKCyXOrPFnYBNrMlS5J_XaSA/photo.jpg,Buggy. Flickers and won't let me scroll to bottom or won't let me select. I want Wunderlist back! It was perfect!,1,0,2.14.152,2020-04-05 07:51:47,,,newest,com.microsoft.todos +Nikos Karanikolas,https://lh3.googleusercontent.com/-06prJ6HYpTA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP1OfGyh7z8RajD0UQQqxCL8TwGzA/photo.jpg,"I cannot imagine how an app managing the same tasks with outlook for desktop, is not connecting with it at all. You cannot see categories that you set in outlook! If you really want a similar to outlook app then see Tasks & Notes",1,0,2.14.152,2020-04-05 07:28:37,,,newest,com.microsoft.todos +Susie Cox,https://lh3.googleusercontent.com/a-/AOh14GiC7FHW9baQ-Js5D8M0m6gfcJfcbBigWckDCrzs3g,"This app is a very very poor replacement for Wunderlist, which is a wonderfully organized app. Wonderlist should never be taken out of the app market! In my opinion, it's the Microsoft app that should disappear on May 6, NOT Wunderlist! Wunderlist has a 4.6 approval rating; Microsoft has a 4.2 rating. That should tell you something. It took an act of God for my Microsoft account to get up and running. It was locked and I was forced to jump through several hoops. Ridiculous!",1,1,,2020-04-04 20:18:42,,,newest,com.microsoft.todos +Dave D,https://lh3.googleusercontent.com/a-/AOh14GixHMPEfpAOAP-Zyyd7qE4csadzaksZ4-zyFN1i3A,"I can't share my lists with my partner because I'm told I'm using a work or school account, but I'm not. No such problem on wunderlist.",1,0,2.14.152,2020-04-04 18:22:10,,,newest,com.microsoft.todos +sivarama krishnan,https://lh3.googleusercontent.com/a-/AOh14GisFsxsss8PXUg61VB8_ArHAp5674_HiMc2PUBgoA,Not getting notifications,1,0,2.14.152,2020-04-04 17:16:23,,,newest,com.microsoft.todos +Amos Lee,https://lh3.googleusercontent.com/-I-6F_2fnkiU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMz_n15JSVXHElOsEuP7vFMsKXONg/photo.jpg,"Way to screw up a great app, Microsoft.",1,0,2.14.152,2020-04-04 16:40:31,,,newest,com.microsoft.todos +Marp Arp,https://lh3.googleusercontent.com/-Lr7YeGu9jAU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNYmRSjupZ91JvVvB4XTDNbDyjSAQ/photo.jpg,"Set up was easy then we could not connect after a week. Reinstalled 3 times, terrible app",1,0,,2020-04-04 15:56:03,,,newest,com.microsoft.todos +Michelle A,https://lh3.googleusercontent.com/-GYLOWvH3Ejg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPKH3YqUPKtVzOuFNGgPkuSNHPHkA/photo.jpg,App signed me out and refuses to take my password. After resetting my password I log in and then they tell me there is a problem with my account and to go online to the website. Not user friendly and quite frankly annoying.,1,0,,2020-04-04 13:39:10,,,newest,com.microsoft.todos +Owen Funkhouser,https://lh3.googleusercontent.com/a-/AOh14Ggnb3bjycUv8wC2iKncwpvUswtzVXslSxRZDu9Erg,Upgraded from Wunderlist and lost the ability to reorder tasks within a single day once it is ordered by date. Very disappointed.,1,0,2.14.152,2020-04-04 12:10:54,,,newest,com.microsoft.todos +Ibnu Hajar Asqolani,https://lh3.googleusercontent.com/-xbk5_hSn468/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNZc3vRVaxkkzwW0N9GlGR1f9ZAhA/photo.jpg,Harus memasang kembali widget setelah memulai ulang agar data muncul. Sesuatu yang mendasar namun tidak ada di aplikasi ini.,1,0,2.14.152,2020-04-04 11:07:35,,,newest,com.microsoft.todos +Dev Shah,https://lh3.googleusercontent.com/-e-yE8_gDS-I/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPUNmox9X-2rdXBmXaoEoYi3euGtw/photo.jpg,Notifications and reminders doesnt work,1,0,2.14.152,2020-04-04 07:15:11,,,newest,com.microsoft.todos +Rajesh Ravindranath,https://lh3.googleusercontent.com/a-/AOh14Gg92_TmdMiLe-LuF9JLx5ZR9ktvl1BqPstPlns4,Mainly reminder function not working properly,1,0,2.14.152,2020-04-03 09:32:29,,,newest,com.microsoft.todos +hazem soliman,https://lh3.googleusercontent.com/a-/AOh14GhFqm6ZmZ7zsHcY0V8su6j0GgZMlQEs8XcSN3q0,"Guys, where is the option to record a voice note like winderlist or add file, oooh are you serious you forgot this significant option",1,0,2.14.152,2020-04-03 08:14:37,,,newest,com.microsoft.todos +Bryann Pineda,https://lh3.googleusercontent.com/a-/AOh14GiYu1PMFlHaz2oy1PZAOStkkLoyDgquprwX2r-aXJM,"I was not planning to give a review but it left me no choice since its replacing wunderlist which is very useful app which my wife and I love especially for our grocery lists, now this TO DO tries to replace it but can't even get it to work properly!!! IF I CAN GIVE ZERO STAR, I WOULD!!!",1,0,2.14.152,2020-04-03 03:53:31,,,newest,com.microsoft.todos +Christine Walker,https://lh3.googleusercontent.com/-lR44-IWsCHk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOLGtN4RkeR6lBImcKfw0zR-0r5Gw/photo.jpg,"Real hassle to set up with synchronization with others. I cannot work out what the small red number on the icon relates to and cannot get rid of it, with wunderlist it related to completed tasks and once these were viewed the number disappeared. I much preferred wunderlist which worked fine. Why won't Microsoft leave well alone? I do not need this app to run my life, just keep lists which can be mine or shared.",1,1,2.13.151,2020-04-02 20:27:56,,,newest,com.microsoft.todos +Sumeyya Brady,https://lh3.googleusercontent.com/a-/AOh14Ghf7U7HV_yAiqmn921xKkSoTunNw9hsBLC431zOe00,"Annoying app, i am back to wunderlist",1,0,2.14.152,2020-04-02 15:14:46,,,newest,com.microsoft.todos +Victor Kovtun,https://lh3.googleusercontent.com/-aGObR6ARNJc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNc2Qsz-eciEc88FNZkmUBVjyqGPw/photo.jpg,"wunderlist was awesome, this replacement works slow with terrible UI and missing features from original app",1,0,,2020-04-02 14:13:57,,,newest,com.microsoft.todos +Jordan Bryan,https://lh3.googleusercontent.com/a-/AOh14GgNVp85Wv-i9VKFX9wbmJ8pGGQ9YC4ZgyZhb343lQ,"Was working fine, until recently where all of my reminders are triggering a day early.",1,0,2.14.152,2020-04-02 09:30:22,,,newest,com.microsoft.todos +P,https://lh3.googleusercontent.com/a-/AOh14GhG057013S2jEkgvHvtdGTva5IN6Ww5M0Q0KD3uUOs,"As a long time user of Wunderlist, this new replacement fails at the single most important thing next to holding taks: remind the user of said tasks. If a task comes up as due, I expect it to stay in notifications until I clear the task. Instead, To Do decided there's a time limit on how long a reminder stays on your notifications which means it isn't reminding you anymore which forces you to remember to open the app to see your tasks. This completely defeats the purpose of a reminder.",1,5,2.14.152,2020-04-02 09:13:58,,,newest,com.microsoft.todos +Afif Abd Majid,https://lh3.googleusercontent.com/a-/AOh14GirQ1G8nC9TYHmQAq-86kYbBVYeB4pCVRDHk_iDIU8,Cannot drag and drop the task. too bad.,1,5,2.14.152,2020-04-02 05:11:24,,,newest,com.microsoft.todos +Mike Kingkade,https://lh3.googleusercontent.com/-NgiPsSfvx4s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO-0jVbvsiqSFW399NmyQg-cALxXg/photo.jpg,I have 10 notifications on my home screen and no clue what they are for or how to find out.,1,0,2.14.152,2020-04-02 01:19:39,,,newest,com.microsoft.todos +Chloe Buckingham,https://lh3.googleusercontent.com/a-/AOh14GhsipAkrF2_NSxB5NlkY_jm_5p-RMNq7RldvXJ0wA,"This app sucks and will never let me, or the people i want to share the list with, log in. Trash replacement for Wunderlist.",1,0,,2020-04-01 23:37:55,,,newest,com.microsoft.todos +Wail Faridi,https://lh3.googleusercontent.com/a-/AOh14Gi4_3fK2DqVcCER_00qhtJ9hmBQeZ2HQfb9jdzahMQ,"Please work on the navigation bar colour across the app on Android 10, and make the status bar completely transparent just like on iOS",1,3,2.14.152,2020-04-01 17:48:25,,,newest,com.microsoft.todos +Leonardo Forcinetti,https://lh3.googleusercontent.com/-uU7IGDCKp6o/AAAAAAAAAAI/AAAAAAABhig/AAKWJJM6S1tUfaMiTajFhmpkHX85ndxqRA/photo.jpg,Ticktick is much better.,1,0,,2020-04-01 12:44:27,,,newest,com.microsoft.todos +Katelinn B,https://lh3.googleusercontent.com/a-/AOh14Gg9laSwzIBV8Ab-4ZDVc2hAh2xEtsIzFBxZ-iyM,Very glitchy. Never even got to use the app because it constantly crashed and said it had connection issues.,1,0,,2020-04-01 04:09:16,,,newest,com.microsoft.todos +Fjon Brandhorst,https://lh3.googleusercontent.com/-p8qscu9zdAA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM-GppfiZtbgwZgWs3_4SmTPpm6eg/photo.jpg,"Not impressed considering the size of the owner. Loses entire days worth of data if refreshed as prompted to ""apply update"". Shows lists differently on mobile app. Can't order some lists. Painfully slow to sync between devices when compared to ANY checklist app available. Annoyed since I switched from Wunderlist when Microsoft started ruining it.",1,0,2.14.152,2020-04-01 01:18:42,,,newest,com.microsoft.todos +T5X 0H7,https://lh3.googleusercontent.com/a-/AOh14GjEbdx_51Wseo-ejbjH9rCCl8LGm-AldAj-LZBRGw,"I wish I could keep using Wunderlist. Disappointed with this app, but it has gotten better.",1,1,2.14.152,2020-03-31 18:59:12,,,newest,com.microsoft.todos +Emily Froese,https://lh3.googleusercontent.com/a-/AOh14GgJ7f3kNstyQZTLJpbkNJ60o8UhF4V5okjFXzci,"Wunderlist was better. Shared my list with my husband and it won't sync or show up when one of us changes something. It shows us both on the list but when he deleted an item, it didn't show as deleted on mine after refreshing five times.",1,1,2.14.152,2020-03-31 18:15:28,,,newest,com.microsoft.todos +Michael Chien,https://lh3.googleusercontent.com/a-/AOh14Gj1EzDvz-i8mefDs-k6jphQ1f9OdVAFPpYIa9hfIA,Can't share lists with other people. Garbage app that is much worse than Wunderlist.,1,0,2.14.152,2020-03-31 17:11:26,,,newest,com.microsoft.todos +Barry Hoffmann,https://lh3.googleusercontent.com/-AFXOvbb9n68/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP1LDMGFZ0ii1RJU3cKol60Q8W8vw/photo.jpg,App is a pain to sync. Not user friendly in this regard. Used Wunderlist for years then MS took them over and ruined it.,1,0,2.13.151,2020-03-31 15:38:06,,,newest,com.microsoft.todos +Brian Rowan,https://lh3.googleusercontent.com/-sj2Kb6pazvM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPq09fEh1t92hv_EgPzhYbsUX54lg/photo.jpg,"Can't contact support. Software erases or moves things without my wanting this. No instructions, no labels on controls, it is more frustration than anything",1,0,2.13.151,2020-03-31 14:05:49,,,newest,com.microsoft.todos +Miki Kvetan,https://lh3.googleusercontent.com/-E6JNbRfmC4c/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMuDmTo3SZ3n2nmnwWRnL11qReCLA/photo.jpg,"Very sad story of being Wunderlist ancestor. Missing Drag and Drop Missing UX at all Missing ease of using Creating of new task requires your full attention for several painful seconds. App that was meant to make your life easy is now just some list that force me to write my tasks on paper again after few years of using Wunderlist, because paper has much better UX than this one.",1,2,2.14.152,2020-03-31 11:38:46,,,newest,com.microsoft.todos +Rafa Carolis,https://lh3.googleusercontent.com/a-/AOh14GgFtkrsQuvEgeaE85XAit_GDkr-NBpNLOTq-PV2Fg,Muito bom,1,0,2.14.152,2020-03-30 19:22:43,,,newest,com.microsoft.todos +Sajad Shokri,https://lh3.googleusercontent.com/a-/AOh14Ggb_-SDFPP9hSSC-BF5i9-Dx7ho3NZzFlgywc9j0g,For today bottom sheet keeps coming and going in a loop,1,0,2.14.152,2020-03-30 16:39:38,,,newest,com.microsoft.todos +naveen kumarmse,https://lh3.googleusercontent.com/-LBz-zzfRTD8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOUKZSsgu7Oueje5lvMqjwDraDJ1A/photo.jpg,Fit for nothing app,1,0,2.14.152,2020-03-30 15:38:16,,,newest,com.microsoft.todos +Tatenda Sanyanga,https://lh3.googleusercontent.com/a-/AOh14Gi3azkC5WwL1nbmA0lYR8iXVS1DpGArJoYSHA-IOw,"Have been using Wunderlist for years and it works perfectly well. Forget this your App, rename Wunderlist and continue with it. Simple.",1,0,,2020-03-30 14:41:53,,,newest,com.microsoft.todos +Nikunj Nareda,https://lh3.googleusercontent.com/a-/AOh14Ggx_U8IWaXFjjj587zeKaHmXgmChgTnhmzoV6L0IA,Unable to open this damn thing,1,0,2.14.152,2020-03-30 12:50:28,,,newest,com.microsoft.todos +Julia Keegan,https://lh3.googleusercontent.com/a-/AOh14GhJ1RRZ9pwcyREcFLhuHDl11_De5Q4RjrOlVOMFHg,Won't sync with Microsoft Todo in the office which is what I most need.,1,0,2.14.152,2020-03-30 11:28:19,,,newest,com.microsoft.todos +Daan Kruijs,https://lh3.googleusercontent.com/a-/AOh14Gj4n0KN_h4x2vUEDfkD4WgHs8TCCPCjUscMZt6DNw,"The app looks nice, but being forced to move over from Wunderlist, the import data functionality only working after the 5th try (after two weeks) and the web version literally becoming unresponsive when I load it, tells me this app is not in any way finished or ready to be used. I don't trust it to not lose my data, so I can't use it. Thankfully, other apps can import from Wunderlist as well...",1,6,2.14.152,2020-03-30 10:23:06,,,newest,com.microsoft.todos +L. B. Stew,https://lh3.googleusercontent.com/-L2JT-4nM2dc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN86vd9aasOlAdKWO7BoasLbKpzGg/photo.jpg,Hate it. The original app was perfect for my needs. This is a complicated mess. Searching now for a different solution.,1,0,2.12.149,2020-03-30 04:38:22,,,newest,com.microsoft.todos +Furkan Kargi,https://lh3.googleusercontent.com/a-/AOh14GihVLUJgg-msK1i33TEIDzw_N0YZzl2L3ojaV9eYA,Terrible! I am missing Wunderlist. After importing our tasks everything got mixed and doubled. Shared people and list.owners mixed/double. Blame on your engineering and programming. İ will miss my lovely Wunderlist,1,0,2.14.152,2020-03-29 21:23:50,,,newest,com.microsoft.todos +Patrick O,https://lh3.googleusercontent.com/-r-Mpfq5v2Ok/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPoVM8L5D9nJqnfkq8HUaysEij4tA/photo.jpg,"Wunderlist was just fine. Why the same in a new jacket done worse. Just because it has to be Microsoft? Microsoft, stop trying to be what others do better. Edge, why? Bing, why? Buy a good working app and make it worse, again. Why? As a UX designer to MS Business: stop trying to outperform others who already are market leaders. Start finding new solutions for new user problems and be the market leader there. If not, a Google will outperform you, because they understand user problems better.",1,3,2.14.152,2020-03-29 20:58:25,,,newest,com.microsoft.todos +Usman Rashid,https://lh3.googleusercontent.com/a-/AOh14GgUeNnkpCg9r_lD1FtWs9NYLcSwVGJty0dQ37Wi3g,Sign in problems didn't even let me use it.,1,0,2.14.152,2020-03-29 19:54:40,,,newest,com.microsoft.todos +Puneet Purbi,https://lh3.googleusercontent.com/a-/AOh14GjOghUD_b5EJLBQ4r-CtnOuxCWPnGLGX6SW1z2ILfk,"In microsoft todo, there is no such option like in wunderlist to comment on assigned task with others and others can get notification on their mail, kindly add the feature if possible",1,0,2.14.152,2020-03-29 19:14:02,,,newest,com.microsoft.todos +Michael Riley,https://lh3.googleusercontent.com/-I9j4S8Kp4b0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPEIx9TLJhlD6F5vdlBaEzW9AjOog/photo.jpg,This app is lacking any functionality. I can use my Google calendar and get better task organization that this weak app. Doesn't even show all of your tasks and if you change a time it won't changebit for all the recurring tasks.,1,0,,2020-03-29 18:51:07,,,newest,com.microsoft.todos +Charlotte Ward,https://lh3.googleusercontent.com/-YefHiCQtyY0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMQJuUsJXKJ3iSqkqomOCvX8DwiQw/photo.jpg,This sucks. I want wunderlist back.,1,0,,2020-03-29 11:18:45,,,newest,com.microsoft.todos +Ralf Longwitz,https://lh3.googleusercontent.com/a-/AOh14GikgDiHWCauRc7XuzSGZQifWNeWWBBmxJkGTe5UgZo,"I wanted to delete one item, pressed a millimetre too low, the whole list is gone. About a hundred items lost. This alone makes the whole app unusable for me. Months later: still this same fatal flaw. Seems like MS have no interest in improving this app, sadly",1,6,2.14.152,2020-03-29 07:49:58,,,newest,com.microsoft.todos +Ahmad Sherief,https://lh3.googleusercontent.com/-Zvt-2doaQo0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPGRpgnzrv1WHuHdVpKviqD1-aJuw/photo.jpg,"I couldn't even sign with Android, it kept saying the password is wrong, I ended up changing the password and still didn't login! Wasted an hour.",1,0,2.14.152,2020-03-29 02:45:18,,,newest,com.microsoft.todos +Yes No,https://lh3.googleusercontent.com/a-/AOh14Gh1wTUEVuErTQluq1JDCgQrklO1v-svNe4RhHEOlA,Screw you m$ uninstalled,1,0,2.14.152,2020-03-28 23:16:50,,,newest,com.microsoft.todos +Mátyás Dabóczi,https://lh3.googleusercontent.com/a-/AOh14Ggj2khcYVQRCTfJtPGgHBJitLWY284cltordpNRqA,"Could be as good as Wunderlist was, but please change the new tasks to appear at the top of the lists!",1,0,2.14.152,2020-03-28 20:04:35,,,newest,com.microsoft.todos +Abhijeet thakurs,https://lh3.googleusercontent.com/a-/AOh14GgTNZEuVP886v2OZXQyiZPbxVyo-s4aS7jhx-Q-,Forcing to open Microsoft account even when we are providing mobile number or another email account I don't understand if it is very good app and useful then I will open account,1,0,2.14.152,2020-03-28 19:19:41,,,newest,com.microsoft.todos +Susan Belling,https://lh3.googleusercontent.com/a-/AOh14GgyruAXYW-hCPBGDFSLwDxtrgXKUt0_OfD-01aj,"Wow what a truly appauling downgrade from wunderlist. Cant give same top access to users, doesnt update well. I hate it and will look for an alternative",1,0,2.14.152,2020-03-28 17:57:12,,,newest,com.microsoft.todos +Joey Trujillo,https://lh3.googleusercontent.com/a-/AOh14GhqMmGsj3uAHrTPHmNi3XsRccaDadAO03BdCGb-5w,"Very bad transitioning from wunderlist, can't invite others, several error messages .",1,0,2.14.152,2020-03-28 16:20:20,,,newest,com.microsoft.todos +Liam Martyn,https://lh3.googleusercontent.com/-3WxSyObYMmo/AAAAAAAAAAI/AAAAAAAAWKE/AAKWJJMJzhIux9tbDG-ZTi4gXl8yJcaySg/photo.jpg,"I have hope that this app will get a lot closer to the superior Wunderlist so I'll change my review when it does, but for now here are my biggest concerns: I really don't like how 'my day' doesn't automatically include things due 'today'. Also when moving a task to a list it's annoying because the lists are not shown under their folders. I'd also like to see a 'my week feature'. Also two lists can't have the same name even though I have them in different folders.",1,82,2.14.152,2020-03-28 15:00:58,,,newest,com.microsoft.todos +Daniel Lanfort,https://lh3.googleusercontent.com/a-/AOh14GjljS4-OI0EtUYhwD-_l7Ufu6FGg_pgFf2eHcy1xw,Me in the future - please don't install it it's too complex,1,0,,2020-03-28 10:52:18,,,newest,com.microsoft.todos +שחף ברקן,https://lh3.googleusercontent.com/a-/AOh14GiJcsRXh402E1rkQfa11MlfxNwIQJuqFJM9XtX_,"This is my first time giving a review on any App I've downloaded. This App is a huge downgrade from the now defunct Wunderlist. The fact that you need to use a Microsoft account is annoying but to add insult to injury you can't even share the lists normally with people ""Outside your organisation"" (what ever that means) so now all I have is a glorified sticky note... I mean had, I'm erasing this app the second I finish this review.",1,7,2.14.152,2020-03-28 09:45:19,,,newest,com.microsoft.todos +James Mollenhauer,https://lh3.googleusercontent.com/-EfSK4yNOg1o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPKhGos05IgJCu738BYV78lm0QSzA/photo.jpg,"For years we used Wunderlist, for work, including employees without corporate accounts, for family, outside organisation and across continents. ToDo failed from the get go, but to be fair, so do most other tasklist apps, we tried many. We finally moved to Trello - A bit different to Wunderlist and not quite as intuitive, but works across platforms, across organisations. It sadly seems MS loves to destroy good things. Wunderlist was such a good product, we were really sad to see it go.",1,9,2.14.152,2020-03-28 09:37:26,,,newest,com.microsoft.todos +D.M.D,https://lh3.googleusercontent.com/a-/AOh14GjyAJo8dw9v5HJMAoWIRHcm6Fv0AUzSC9F43W0,horrible this stupid thing will not let me log in,1,0,2.14.152,2020-03-28 06:51:31,,,newest,com.microsoft.todos +Tom Yates,https://lh3.googleusercontent.com/a-/AOh14GjwpUbNwrkTYsHcaNualGvnogk6vCXsfs2NwAEJrw,Forced to move from the fantastic Wunderlist. Import fails. That's an import of 100 pieces of text on a modern mobile phone. Pitiful.,1,0,2.14.152,2020-03-28 03:28:20,,,newest,com.microsoft.todos +Jenifer Haggard,https://lh3.googleusercontent.com/a-/AOh14GhCrHKohudHWPgX6JUVpFT11ByyxcnRkJBblrxqqw,"You guys bought Wunderlist and I changed to TODO. Why are killing a great app, like Wunderlist, and replacing it with an unacceptable alternative?!?! You have fallen short. I cannot invite anyone to share lists. I have been very patient while you fix the invitation aspect but after months I am looking for a replacement to Wunderlist, which I understand you will kill in April, as well as TODO.",1,1,,2020-03-28 00:00:39,,,newest,com.microsoft.todos +James Meyers,https://lh3.googleusercontent.com/a-/AOh14GiCitfXW2bA9xFzx34eaE2VWuh0sG7rh0YDSWQz,"Wunderlist was better. Microsoft bought it and killed it. First, Microsoft forced me to switch apps. Now I have to have two accounts since I have lists at both home and work that I share with others. Pretty dumb. Otherwise, the app IS Wunderlist. Waste of time to have to redo everything.",1,3,2.14.152,2020-03-27 19:46:43,,,newest,com.microsoft.todos +Lars Petersen,https://lh3.googleusercontent.com/a-/AOh14GiFm0JtF1N6-0QZt6H3yo6B1-QFpdKrVxYGuZrLDg,Sync problems,1,0,2.14.152,2020-03-27 18:51:30,,,newest,com.microsoft.todos +John Morton,https://lh3.googleusercontent.com/-P2C-Oaz7Yyk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNV4QTOPJyPfr-yacC5ONUTtTlRAw/photo.jpg,Wunderlist better format more user friendly .,1,0,,2020-03-27 18:42:20,,,newest,com.microsoft.todos +Kirill Borissov,https://lh3.googleusercontent.com/a-/AOh14GhHQLCOqW85ZSAYySejkRcFqJtAmizgyg3SXGcvo_M,"One star only because the checklist item has way too big paddings thus I can see 30-40% less items on a screen than in Wunderlist. Microsoft UX team, how could you make such a huge design mistake?",1,0,2.13.151,2020-03-27 18:00:57,,,newest,com.microsoft.todos +Try Thinking,https://lh3.googleusercontent.com/-0QrrfrZNzRM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMfcWHEXXVL0D4vn7nkQ7co-88nog/photo.jpg,Microsoft took a well. Designed application and made it practically useless.,1,0,,2020-03-27 14:13:50,,,newest,com.microsoft.todos +Clemens Sels,https://lh3.googleusercontent.com/-pQCmTVSeaZk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPHGUXDE9WkDC42ql_myO8vVhP1rw/photo.jpg,Sucks. Sounds good but cant share it with my wife???,1,0,2.14.152,2020-03-27 11:17:53,,,newest,com.microsoft.todos +Katharine Harvey,https://lh3.googleusercontent.com/a-/AOh14GjPBmm9RaU0gDBsMRxrJtDPzBGm6Kax9sgy5Z2B,Cant share this list with others,1,0,2.13.151,2020-03-27 11:15:54,,,newest,com.microsoft.todos +Jay Klievink,https://lh3.googleusercontent.com/-bFeNMsqyrEg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPlLkB6Uh4B6XmtQCD30qSEfBprTw/photo.jpg,"I can't import anything from wunderlist via my (android) phone, and can't even download it on my (mac) comp... so far very useless",1,0,2.14.152,2020-03-27 09:20:23,"Hi Jay, + +We are aware of the issue with our importer and are working hard on a fix, which we expect to have ready by the end of the week, I'm sorry for this. You can keep an eye on https://status.wunderlist.com/ to know about the current status of the importer, we will update the site as soon as the importer is working again.",2020-03-27 13:45:04,newest,com.microsoft.todos +Brian Hudson,https://lh3.googleusercontent.com/a-/AOh14GjnBK58MzXDlGspgg7yLM6xE3jQoUYv4dm3aUKB,"Can't import data from Wunderlist?? That's the whole reason you made everyone download this app. If you can't fix this most basic function, why should I use your app?",1,0,2.14.152,2020-03-27 06:18:56,"Hi Brian, + +We are aware of the issue with our importer and are working hard on a fix, which we expect to have ready by the end of the week, I'm sorry for this. You can keep an eye on https://status.wunderlist.com/ to know about the current status of the importer, we will update the site as soon as the importer is working again.",2020-03-27 13:45:40,newest,com.microsoft.todos +Mark Scott,https://lh3.googleusercontent.com/-eiQ7jtrMins/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNDNsUIBcRMOtmiMDFNbaPvEMTE0A/photo.jpg,Since Microsoft have taken over it is rubbish. We had wonderlist on 3 devices and To Do wont even sync the 3 devices the same. Time to look for a new app,1,0,2.14.152,2020-03-27 06:02:50,,,newest,com.microsoft.todos +S. H.,https://lh3.googleusercontent.com/-xEEv1EVwPpc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNLnQhaH7UG3SVm1e3Xw5CnVZSNeQ/photo.jpg,"Unable to import Wunderlist data, says nothing to import...",1,0,2.14.152,2020-03-27 03:15:40,"Hi S. H., + +We are aware of the issue with our importer and are working hard on a fix, which we expect to have ready by the end of the week, I'm sorry for this. You can keep an eye on https://status.wunderlist.com/ to know about the current status of the importer, we will update the site as soon as the importer is working again.",2020-03-27 13:45:56,newest,com.microsoft.todos +Monsef Haddad,https://lh3.googleusercontent.com/-Vbrzbn1Kzf8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPSSvV2qdQv6qm6iBoWniuCC5DacQ/photo.jpg,هذا التطبيق ما يسهلك التسجيل 👎👎👎,1,0,,2020-03-26 23:06:24,,,newest,com.microsoft.todos +Caro Bastable,https://lh3.googleusercontent.com/-nki3vfngl9w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN6v6UMDgocQKsql0CU6w3k97SbIw/photo.jpg,"Tells me it can't import all my data and to retry. But when I retry, it tells me everything is up to date and there's nothing to import! Of course the one list that's missing is the only one that's important... I'll be trying another app, thanks but no thanks.",1,1,2.13.151,2020-03-26 20:23:46,,,newest,com.microsoft.todos +dean M,https://lh3.googleusercontent.com/-8Ecb7UopKkc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOgqWhxtj_iC6m8elMnWO_vFGrA5Q/photo.jpg,"Microsoft bought an already mature application, spent 4 years working on it, and this is all they have to show for it??? Perhaps they could add more technical resources to support the 2 high school students that currently support this product. Poorly integrated with Outlook. Simple... too simple. Has very few features or functionality.",1,4,2.14.152,2020-03-26 18:18:43,,,newest,com.microsoft.todos +Agape Gifts,https://lh3.googleusercontent.com/-OaqfYG4l5SU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPYrOzD1OlVM6GD3Fapk-StNJipXA/photo.jpg,"This is awful!! bring back wunderlist ! You cant move your list around to the you want, this is beyond frustrating. Not happy you are forcing us to stop wunderlist Will have to investigate else where for a better list app.",1,0,2.14.152,2020-03-26 18:10:34,,,newest,com.microsoft.todos +Joel Armstrong,https://lh3.googleusercontent.com/a-/AOh14Gj3w8JGt4uVuR8toNCvLafu6fP0Kqq7_f3vYCGx,"Poor replacement for Wunderlist. So many features missing, my day isn't something everyone wants but can't turn off. Can't reorder my lists manually. Will use different app when Microsoft kill Wunderlist!",1,4,2.13.151,2020-03-26 18:07:21,,,newest,com.microsoft.todos +Victor Red,https://lh3.googleusercontent.com/a-/AOh14Gh4uaaXDoAX6TQrMYTbeKy5mGAXi3vRxPtqLKCc,I have Wunderlist synced with my gmail account. can someone explain me how to transfer my lists to this app without having to create or use a Microsoft account? or is simply that I'm forced to loose all my list?,1,0,2.13.151,2020-03-26 16:40:53,,,newest,com.microsoft.todos +Jennifer Roma,https://lh3.googleusercontent.com/a-/AOh14Gj7lezgxjq136KooVX_uERimDkxkWxHq6hzT7NFIg,"I tried 3 or 4 times to download this app, import my Wunderlist data, and share lists with my husband. Each time it failed miserably. Not trying again - finding a better app.",1,0,,2020-03-26 16:31:41,,,newest,com.microsoft.todos +Patricia Asante,https://lh3.googleusercontent.com/a-/AOh14Gi_vRwgbvXGWpdWPqoDBjnkYqlyKcp8yruq3ayd,"Does not import from Wunderlist. Very disappointed with having to switch. We've been using Wunderlist for some time and it's been great and without issues. Now we're forced to switch over and when I follow the instructions, keep getting the 'nothing to import message'. This is very frustrating. Developers please fix asap!",1,12,2.14.152,2020-03-26 14:26:22,,,newest,com.microsoft.todos +Mark Simone-Skidmore,https://lh3.googleusercontent.com/a-/AOh14GjSX5g9I81506hHsYvLW8yERMDzTCTWBXAEKtJi-g,Transfer from wunderlist doesn't work!,1,0,2.14.152,2020-03-26 14:00:31,,,newest,com.microsoft.todos +Becky Grant,https://lh3.googleusercontent.com/a-/AOh14GiMdOzUy4PpsWsWxlxHjVYr0wzvjaQc0JwMz79A,It wont let me login at all my old miceosoft password never is used so i tryed to use me current one for my gmail and it wouldnot work,1,0,2.14.152,2020-03-26 11:47:46,,,newest,com.microsoft.todos +Carlie Park,https://lh3.googleusercontent.com/-ISyelO_ufr0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNAHdcxswwzTqmT_3yLXED2qIW-fQ/photo.jpg,I haven't gotten past step 1 - it has failed to import any of my data from Wunderlist.,1,0,2.13.151,2020-03-26 09:23:18,,,newest,com.microsoft.todos +doc1,https://lh3.googleusercontent.com/a-/AOh14GgphqXFMe9jTYyfsJJYwt63BBQ3Om9xYcOj_XDLrw,I give it one star because the main feature is broken for me. I set pill reminders on daily cycle but it misses the notification sometimes. I tried adding the app to not optimized battery but it still misses reminders,1,0,2.13.151,2020-03-26 07:06:14,,,newest,com.microsoft.todos +Nicole Miller,https://lh3.googleusercontent.com/-J0KXs0nCHvo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNvqkg3MzQcXUyKxCzaL3N7F0U8oQ/photo.jpg,This app is a piece of sh**. It won't sync my old wunderlists. Shared lists don't work. I'll be uninstalling and going with a different app. Thanks Microsoft for taking a fantastic app (Wunderlist) and ruining it.,1,0,2.13.151,2020-03-26 05:49:33,,,newest,com.microsoft.todos +Behnam Ashjari,https://lh3.googleusercontent.com/-lxDC5M84L5g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP42Im5OS-fREdZSS8KjDJLblG0TQ/photo.jpg,"As with other MS products, too many useless features",1,0,2.13.151,2020-03-26 00:41:11,,,newest,com.microsoft.todos +Ryan Greif,https://lh3.googleusercontent.com/-22Kzv2T4zxs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNY3dTaBWx_rwrfTNQTlla-EcbYJQ/photo.jpg,"My wife and I used Wonderlist for years to share grocery lists, to-do's, packing lists, etc. The transition into Microsoft To Do could not have been more painful. Duplicate imports and no sharing between work/personal accounts made the move harder than it should be. But the most frustrating thing? I can no longer click and drag to order items in a list!! I be in the grocery store runnin around like a psycho cuz my list be all scrambled. And that's before I even look for toilet paper.",2,116,2.13.151,2020-03-21 23:42:44,,,most_relevant,com.microsoft.todos +Renee Carmel,https://lh3.googleusercontent.com/a-/AOh14GiUHAOeSSDMwQziVp0x48bPWuxkynSMnLEgR7PQPQ,"This is ok for solo use, but don't count on it to update between two devices. My wife and I found out the hard way when I didn't get steaks at the store. :( Even manual refreshing doesn't help. I googled the problem and it looks like MS Todo has had similar problems for years on various platforms. Anyway, I suggest finding another list app.",2,6,2.14.152,2020-04-01 22:30:17,,,most_relevant,com.microsoft.todos +Ron May,https://lh3.googleusercontent.com/-wgzPnq3vQ-s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPshfzeqklQvqo2vWQfUxhkZM51xA/photo.jpg,"PLEASE add the option of automatically adding tasks to the top instead of forcing them to the bottom. That's the only thing stopping me from switching over from Wunderlist. Edit: I just heard you're killing off Wunderlist for good in May of 2020. I know I'm just one person, but I'll be jumping ship if such a simple improvement isn't made. Edit again: 3/27, and you did an update. But why in the world would you give iOS the ""add tasks to the top"" feature but NOT Android? Come on, please??",2,97,2.14.152,2020-03-27 18:21:38,,,most_relevant,com.microsoft.todos +christo4232,https://lh3.googleusercontent.com/-qNUU87Ef2rc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNCJqwXeOQmqFq31iOOQNM6jmXJkA/photo.jpg,"Had to switch from Wunderlist. To Do lacks functions which make Wunderlist so great. Importing worked well, but sharing previously shared lists required me to make a new 'personal' account - this wasn't an issue before. All is set up now and the app feels limited still in themes and settings. Most of all, why switch? Why not just rename Wunderlist to say 'Microsoft Wunderlist'?",2,14,2.13.151,2020-03-20 07:55:44,,,most_relevant,com.microsoft.todos +Sarah Milarch,https://lh3.googleusercontent.com/-0mLv5jytxUU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOp2nq_2KR95xAELe1iuTf52ioDCA/photo.jpg,"I had Wunderlist, but it changed to Microsoft To Do. To Do is more clunky than Wunderlist. It does not currently group starred items by category. It does not have a variety of theme back grounds, and the sharing of lists with others had to be done list-by-list and was unnecessaryily time consuming. I am hoping to see significant improvements in thia app.",2,2,2.13.151,2020-03-27 12:44:30,,,most_relevant,com.microsoft.todos +Garrison's Garage,https://lh3.googleusercontent.com/a-/AOh14GjCcBIes7aZD6YyzldDIuw59rfjlyvqWV3IpLIy9g,This app is inferior to Wunderlist as of now. It needs to be an option to duplicate a list exactly and rename it. You should also be able to attach pictures and instructions to long lists that you've made. It's just not nearly as intuitive as Wunderlist. I have 50 locations that often need all the same services performed and it is a major waste of time to type can01 can02 can03 can04 etc every time i have a sweeping maintenance issue.,2,1,2.14.152,2020-04-03 14:40:44,,,most_relevant,com.microsoft.todos +per midtbø,https://lh3.googleusercontent.com/a-/AOh14Gj6qHjOfcsdf0JFSZKDvTA24wU1h5uVjVbRJR7fwg,"Came over from wunderlist, and i was not happy with the changes, i have sync errors all the time, my lists are doubbled up(the ones i had shared with others) and when i add a new task to any list they go to the bottom at the list so i have to manualy drag them uppwards. AND IF I CHANGE IT SO THAT IT GOES TO THE TOP OF THE LIST, THE APP WONT LET YOU DRAG/ORGANISE THE LIST! THIS APP IS JUST BUGS BUGS AND GLITCHES So in short, make it MORE like wunderlist. But ""OK"" App otherwise",2,3,2.14.152,2020-03-28 15:24:02,,,most_relevant,com.microsoft.todos +Lonni Weigel,https://lh3.googleusercontent.com/-nSUiXAG199Q/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPZXBcqQHjjVR06SZtqDA7Y2i5JTA/photo.jpg,"This does not work the same as wunderlist. When I sort, I cannot manually move items to in effect do a sort alphabetically within priority. Also when I prioritize items, they don't automatically move to the top of the list. With wunderlist going away, I am going to have to search for a new app. So disappointed.",2,29,2.13.151,2020-03-15 15:39:01,,,most_relevant,com.microsoft.todos +Sam Veal,https://lh3.googleusercontent.com/-spkq_FYnd-I/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMnSj1tpbPg_SFt0X7yJUJHp77Qiw/photo.jpg,"Now I don't trust this at all! I learned about the transfer just today so.immediatley thought I'd swop over. Everything seemed fine, I got a pop up to say everything had been successfully transferred. Then this evening I'm just adding something when I get a pop up that the transfer was incomplete! So what do I do now? Unless I cross check everything in all the lists I have how do I know what's missing/not transferred?! OMG! I seriously do not need this right now 😠😡",2,58,2.13.151,2020-03-21 21:10:36,,,most_relevant,com.microsoft.todos +Gary Wu,https://lh3.googleusercontent.com/-XDze7iz5Oms/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNPPeetRQT2MN7iZGCK_-_oWdQuxw/photo.jpg,"As is typical for Microsoft, they took over a wonderful product in Wunderlist, screw it up, and jam it down the throat of their customers. The MS To Do List is harder to use than Wunderlist and lost some features that made it convenient to manage your tasks. I am convinced MS programmers must never use their own products.",2,32,2.13.151,2020-03-14 19:33:42,,,most_relevant,com.microsoft.todos +Matt Garnes,https://lh3.googleusercontent.com/a-/AOh14Giio5nzbsXldcBPeo6GHhX87Y0bpnmMlexRXA8qh8U,"I like using this app to organize my to-do items for my company which subscribes to office 365. However, since the latest update my app constantly says ""unable to sync"" even though it appears to be working when I check in the browser on my desktop. Even uninstalling and reinstalling the app doesn't fix it. I can't trust the app with my vital work if I'm getting sync errors like this because I cannot lose anything. Please fix this and I will update to 4 or 5 stars.",2,20,2.13.151,2020-03-21 19:59:39,,,most_relevant,com.microsoft.todos +Jamie Plett,https://lh3.googleusercontent.com/-h3veP6FpCCI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNhssA33ONFdsjLM55shUAjtvbVkw/photo.jpg,"I transitioned from Wonderlist. There are a couple of things I don't like. When the list is sorted any way then you can not drag the items in the list. This makes it very hard to organize long lists. Also, I would like to have the option of adding to the top of the list as well as the bottom. Otherwise the app is good for what I need it to do.",2,20,2.13.151,2020-03-14 03:02:02,,,most_relevant,com.microsoft.todos +Marina N,https://lh3.googleusercontent.com/a-/AOh14GiBGLVgfj0StgR25TmDa8Gmb8MUjbkUizyh4UYtMw,"Just switched from Wunderlist and miss it already. Why the widget won't let me display the tasks due today or this week like Wunderlist did? Now there's only ""Planned"" which list every task I've ever scheduled :( The design is very plain and it doesn't show the dates in different colours to spot what's overdue and generally picture the information quickly.",2,8,2.13.151,2020-03-15 19:01:26,,,most_relevant,com.microsoft.todos +Reem Farah,https://lh3.googleusercontent.com/a-/AOh14GjDJLk42_B1Pk7zLLnCuHGRc1l_f3oaZUc2gxHckQ,"I liked wunderlist much more, I can't arrange the tasks in the list freely. It looks like there is something wrong because I can arrange some lists and couldn't for others, and the starred list which is switched to important is just a long list, I liked how it was divided before, it is really disappointing.",2,8,2.13.151,2020-03-17 01:35:54,,,most_relevant,com.microsoft.todos +Didi de Jong,https://lh3.googleusercontent.com/a-/AOh14Gg_pyRrX0-3tsSb5BGwxkNNP9C0xe288urHShCt8A,"It's okay, but I migrated from wunderlist and I still miss it. Plus the widget keeps on breaking, not showing any tasks. When I delete it and put it back on the screen, it works again but only for a few days. Please fix this!",2,3,2.13.151,2020-03-17 15:59:28,,,most_relevant,com.microsoft.todos +Bryan Jerzycki,https://lh3.googleusercontent.com/a-/AOh14GihiCXbKAN5rh0xgLXY31FQONsebl47AcRYF0sG,"I'm adding a star because the import from Wunderlist was seamless, but otherwise the fact that I cannot drag and drop/reorganize stuff manually absolutely sucks. Soon as I can get my lists imported into something else, I'll be moving on.",2,1,2.13.151,2020-03-25 18:50:27,,,most_relevant,com.microsoft.todos +Erin Harrison,https://lh3.googleusercontent.com/a-/AOh14Gg7J_hKh1eOKHgd0hUO5RxpFFF1q2R0-Pb6hGdCAp0,"Seems to work great for me, but my family have trouble accessing the app, having to log into their Microsoft account EVERY SINGLE TIME. Get it together, Microsoft... it's frustrating and ridiculous.",2,0,2.14.152,2020-03-31 17:50:19,,,most_relevant,com.microsoft.todos +Nicholas Dyer,https://lh3.googleusercontent.com/a-/AOh14GiMf6P9yHh1CPBfZ90lQbFoJiF676OhUA7pzVTAiMw,"I like the app. Except for some reason it now says it doesn't work with my account even though I can use it everywhere else. I've done all the ""IT"" things I can think to do. But to no avail. Guess I'll be looking elsewhere now.",2,1,2.13.151,2020-03-20 16:57:19,,,most_relevant,com.microsoft.todos +Tracey Mackay,https://lh3.googleusercontent.com/--E_42T-Ohog/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN4nCWPXdBgDkjInVp2esq_U7_hCQ/photo.jpg,"Moved from wunderlist and am disappointed by the lack of functionally. For example, there is no option to show weekly tasks and to display tasks in the widget they need to be moved manually!",2,3,2.13.151,2020-03-14 21:02:11,,,most_relevant,com.microsoft.todos +David Price,https://lh3.googleusercontent.com/a-/AOh14Gh8GfD2_j2TnW7ueZPzTxAZmQ5L48Pxh_t4P5vttg,Nowhere near as good as Wunderlist which I've been using for several years. Gutted that Microsoft are stopping Wunderlist in favour of this very poor substitute. Not feeling the love for Microsoft anymore...,2,1,2.13.151,2020-03-19 17:32:39,,,most_relevant,com.microsoft.todos +chris brader,https://lh3.googleusercontent.com/a-/AOh14Gj6Nzdw2fVnaO6moDx0FKKeebMR4GbDfth2PV0gtKs,Wunderlist was better. Now i have to push more buttons than before. Dont even know how to prioitize a task when i add it. Why not leave it the way it was and just brand it MS?,2,3,2.13.151,2020-03-14 20:24:17,,,most_relevant,com.microsoft.todos +Nitai Sasson,https://lh3.googleusercontent.com/a-/AOh14Gitgg3y8lOYe0mf6F64MlNgvsGhVRuHr2GTfChB,A recent update broke existing home screen widgets. It also made it impossible to create thin widgets - the minimum width is now 4 units which basically takes up the whole screen.,2,1,2.13.151,2020-03-22 08:17:26,,,most_relevant,com.microsoft.todos +Choy Saechao,https://lh3.googleusercontent.com/a-/AOh14GgpZT2boYkl3jw-_2P_ADpcCH5g0wrSofPXvjz5Ww,Please get rid of all the white space. I have to scroll to read my lists. Give us an option to zoom out or reskin this app to look like wunderlist. Thanks.,2,2,2.13.151,2020-03-13 20:38:07,,,most_relevant,com.microsoft.todos +Jane Spaulding,https://lh3.googleusercontent.com/a-/AOh14GhWZyLUl5-8AopRgIgUKvzlVL-PNV34mSzbiGZnQE4,"Typical of Microsoft, they bought a really great app, Wunderlist, killed it and replaced it with an app that is nowhere near as easy to use.",2,1,2.14.152,2020-03-27 23:20:50,,,most_relevant,com.microsoft.todos +Z Brazylia,https://lh3.googleusercontent.com/-T7ey4gqhdkY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNtp3gyLtmrPI1QJCLqBI6qxdkQGA/photo.jpg,"Wunderlist was much better, more user-friendly. For example there is no select of tasks due on the week.",2,1,2.13.151,2020-03-24 16:10:39,,,most_relevant,com.microsoft.todos +Chris Holsman,https://lh3.googleusercontent.com/a-/AOh14GisrPdE8E4bCzyfLTTEHG6YDYBQSTgVdXh0ls0s4w,App looks good but failed to import from Wunderlist twice. Now forced to manually re-enter several dozen tasks. Wunderlist works flawlessly so wondering why retire it.,2,0,2.14.152,2020-03-30 16:43:23,,,most_relevant,com.microsoft.todos +Trevor Bryan,https://lh3.googleusercontent.com/-bm2tJZ4VoKo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOIZqoc7yGbr7wTkqnOYUbfiGULdA/photo.jpg,Worse than Wunderlist. No drag and drop of tasks and a poor selection of themes. Weekly view should allow segmentation by day instead of lumping five days together.,2,1,2.13.151,2020-03-20 19:14:35,,,most_relevant,com.microsoft.todos +Paul Andre Norris,https://lh3.googleusercontent.com/a-/AOh14GgoGXwARc0fkbjbDF1vB1zWPXnj0cpJgtCXnduu_g,"The sorting option is not good. There's no option to manually arrange individual tasks. When you show completed tasks, it all over the place. Completed tasks should be grouped together and displayed at the bottom of the list after the incomplete tasks. It becomes very messy when completed and incomplete tasks are mixed together. Why tweak the app to make it worse than what it was before? Tweaking should making it better not worse.",2,42,2.12.149,2020-03-08 06:57:49,,,most_relevant,com.microsoft.todos +Warren Family,https://lh3.googleusercontent.com/a-/AOh14GgRhx8CUe0_aGSxgKSpqo-Gt1a3fcGcORuWUX27,"Migrated from Wunderlist. Can't share my list with my spouse, always gets errors. Todo list unusable without sharing working. +1 for dark theme though.",2,1,2.13.151,2020-03-21 15:47:52,,,most_relevant,com.microsoft.todos +WJ Winden,https://lh3.googleusercontent.com/-c9HvQSiWrMM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNshO0VWXI9CQSwBIihmd5wOhVD5w/photo.jpg,"Additionally, having to manually go thru and re-invite contacts for every task again is not customer friendly. Really disappointed.",2,3,2.13.151,2020-03-14 13:54:48,,,most_relevant,com.microsoft.todos +Win Chun,https://lh3.googleusercontent.com/-cBUYi9_tVVI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOHh_7Isk9EM2a1bpaDrP2WmIyWfg/photo.jpg,Wish they kept the wunderlist app instead it was perfect 😭!!! Some issues I had with this app compared to Wunderlist to fix: -have new items added to the top instead of adding to the bottom (or have option to change) -more quick choice options for the reminder times -quick add bar (to just type in a search bar box instead of clicking the + button) -have settings apply to all lists so don't have to individually change each list -option to add to list on main screen without clicking in list,2,16,2.12.149,2020-03-08 04:12:54,,,most_relevant,com.microsoft.todos +Stefan Pohl,https://lh3.googleusercontent.com/a-/AOh14GiIGf_plPTJkvJQ4-D3yRYgkJTF8RkCq-UlM3oCvA,I just noticed that notifications for yesterday's reminder disappear. That is really bad. (Wunderlist didn't have this bug),2,0,2.14.152,2020-04-04 07:52:26,,,most_relevant,com.microsoft.todos +Joel Moreland,https://lh3.googleusercontent.com/-BPiPI8RjWKY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNtDBfk7DFehOudvTUxVzHfBYXBoA/photo.jpg,"The app struggles to sort by due date, I think it is at least in part due to the imported tasks (from Wunderlist).",2,1,2.13.151,2020-03-18 10:48:44,,,most_relevant,com.microsoft.todos +Jonathan Evan-Cook,https://lh3.googleusercontent.com/a-/AOh14Gii0Y-qomx-bghzzoNwdJnK0lbyZn5-67kQ448i6A,"Can we have the lists back at the top of the page like Wunderlist, I don't need any of the options that take up the top half of my screen!",2,2,2.13.151,2020-03-17 04:42:44,,,most_relevant,com.microsoft.todos +Rooju Chokshi,https://lh3.googleusercontent.com/-aEJtKOJBfW0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNT590W9kC3_wixIcCZmj2WxwOTxA/photo.jpg,"This is a step down from Wunderlist. Before deprecating Wunderlist in favor of this app, it should atleast have been brought to parity. Sharing is broken, and even when it works, I have to send a link to the other person. It was so much simpler with Wunderlist! In the sharing with SMS option, the link and the text together require 2 texts. Why?!. Unhappy.",2,5,2.8.145,2020-02-08 20:16:17,,,most_relevant,com.microsoft.todos +Calvin Thomas,https://lh3.googleusercontent.com/a-/AOh14GgpCsvTCzZTyk4LyBo1obM4BxtqPye3_Urbt8jsjA,Subpar so far The difficult to me is syncing lists between family members. This app tends to produce multiple lists of the same theme.,2,0,2.14.152,2020-04-04 15:01:10,,,most_relevant,com.microsoft.todos +Christopher Mercer,https://lh3.googleusercontent.com/-EG3JUoog50A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMV3BPMfe9Zd64W-gnpaoatyUz5Uw/photo.jpg,"Being able to slide tasks up and down on the fly is a critical feature which needs to be brought over from Wunderlist. I plan and order my work day tasks with it and need to be able to adjust the order quickly and frequently. My wife and I also were using Wunderlist as a grocery list sharing tool. Same complaint as we like to order the list to match our path through the grocery store. I see a few people miss this option in the reviews - Without it, the app doesn't work for me.",2,71,2.12.149,2020-03-04 01:57:07,,,most_relevant,com.microsoft.todos +Perseus F,https://lh3.googleusercontent.com/-GNKOcyOD5Qg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNd7GRuab3MdJc5DLx4q2tkcw3rvA/photo.jpg,"After 6 years of using Wunderlist the day has come to look for a new to-do app. Microsoft To-Do is missing the most important feature of WL, i. e. placing newly addly added and favourite items to the top of the to-do list; practically, the app is useless if you have long lists with floating items. I have sent them this feedback 6 months ago and they still did not change anything about this.",2,61,2.12.149,2020-03-06 07:24:22,,,most_relevant,com.microsoft.todos +Sonat Tokuç,https://lh3.googleusercontent.com/a-/AOh14Gg9cktCj0ykH-YDfyrUPB_TZRmFRVh3SYo16XLq1g,"WIDGET DOES NOT SYNC/REFRESH PROPERLY. Went back to Wunderlist until at least the widget refresh/sync issue is solved. (using android phone, tablet and windows 10). The following items, which are present in Wunderlist, should definitely be integrated: 1) The option to choose that starred items be moved to top. 2) The option to choose that new tasks be added to top. 3) Folder view in the widget 4) Icons under a task on the widget showing that a task has subtasks and/or notes in it.",2,8,2.11.148,2020-02-23 14:29:14,,,most_relevant,com.microsoft.todos +Ninsuhn Rey,https://lh3.googleusercontent.com/a-/AOh14GjoJHyKiHbpK1rasvhva0VfvOxFEzc-f1rFdwjB,"It's a true mystery of life how Microsoft can take ANYTHING and make it look UGLY and NEEDLESSLY COMPLICATED. Why on Earth would they not simply leave Wunderlist as-is?? So they see nothing wrong, and decide ""Time to wreck it."" Who is going to save us when they finally shut Wunderlist down??",2,0,2.14.152,2020-03-31 09:01:22,,,most_relevant,com.microsoft.todos +John Velick,https://lh3.googleusercontent.com/-DHXHHGJtEDE/AAAAAAAAAAI/AAAAAAAAGeI/AAKWJJPtJoyuVmxDgYtzfoubUeC_TEdauQ/photo.jpg,"Interface similar to Wunderlist, functionally not the same unfortunately. As an example, Wunderlist allows manual sorting after sorting by one of the sort options (alphabetical, etc), which can fine tune things beautifully. Microsoft To Do does not allow manual sorting unless you deactivate the selected sort (like deactivating alphabetical sort as an example). This then reverts everything back to the same unsorted mess prior to the selected sort option. Very frustrating.",2,9,2.8.145,2020-01-26 00:08:35,,,most_relevant,com.microsoft.todos +Mike S,https://lh3.googleusercontent.com/-2qgsgs5nTRE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPIfadRdYwGPnI8jsEnLwW6cAE--w/photo.jpg,"It amazes me how Microsoft took over an amazing app like wundelist and ruined it completely. It's a real pitty that wundelist will be discontinued in May 2020 . If you don't believe me , just move to DO IT and then have both apps on your phone till May . You keep opening wundelist because of its user friendly interface and functions and the opposite is true with DO IT. I moved to DO IT thinking that they keep it the same with improvements but I was wrong. Searching for new app already.",2,20,2.10.147,2020-02-05 00:51:34,,,most_relevant,com.microsoft.todos +Roman,https://lh3.googleusercontent.com/-deC5-goifbQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPQZyXffpJNKXLl6LAzMtUT_u1XQw/photo.jpg,"No ability to add a shortcut/widget to quickly add a task, meaning it will take several swipes/clicks to add a new task on my android phone. Wunderlist didn't have this constant friction. It's a shame that they're shutting down wunderlist without having all of the same functionality.",2,8,2.12.149,2020-03-08 21:35:25,,,most_relevant,com.microsoft.todos +Matt C,https://lh3.googleusercontent.com/-hY93r1O6tgo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNdHJSqpXp9a1-HNm7gNNHrowEjuA/photo.jpg,"There's quite a lot of work to do with this app. While it seems to functionally work well on a basic level, a lot of core features from the Wunderlist app have been removed, or awkwardly placed/restricted. New features of the app are incredibly limited and feel poorly executed. Unfortunately there is nothing in this app that says ""I want this"", when migrating from Wunderlist, and makes other apps look more appealing. I hope further updates from Microsoft can deliver on user feedback.",2,38,2.8.145,2020-01-19 01:49:10,,,most_relevant,com.microsoft.todos +Thapana Apiromsamer,https://lh3.googleusercontent.com/a-/AOh14GjCEpYmguVC5nPykizWpgypGxBnkl2TgRI4BMSLpg,"Please FIX the WIDGET annoying error; whenever I press the ""+"" button to add something to any particular group I set, it always move - only - to the ""Task"". Even I had changed the destination to the group, it's still change back to ""task"" again. So I have to move everything from task to specific groups again every time. Really annoying.",2,4,2.8.145,2020-01-24 10:36:43,,,most_relevant,com.microsoft.todos +Frans Van der Walt,https://lh3.googleusercontent.com/a-/AOh14Gjatv34MFHUBWuBXkwMI2yzdL0eC3FhsttUB8S_,I much preferred Wunderlist!! Could easily copy items to new or existing folders. Was much more versatile!! Why do IT techies have to move 3 steps back each time something new is launched?!! Surely R&D of products they wish to replace should have shown functionality used?!!!!!,2,3,2.12.149,2020-03-13 20:00:07,,,most_relevant,com.microsoft.todos +Wayan Lam,https://lh3.googleusercontent.com/a-/AOh14GgGv3DAlHtCDy5P1lVpbR1uZWinqYxsG0-6042D,"The widget list is always glitching and won't show the items on my list, won't allow me to add new items to the list. The only way I seem to be able to fix this issue is by removing the widget and then putting it back in. This was never an issue in the past before I upgraded to the Microsoft ToDo. I'm using a Note10+ and my wife on a Samsung galaxy S10 has the same issue. Hope this can be fixed? It's getting really annoying.",2,21,2.10.147,2020-02-02 11:13:04,,,most_relevant,com.microsoft.todos +Bruno Alexandre,https://lh3.googleusercontent.com/a-/AOh14GjeK-9ZOoWcjj3Mo3WBqpYORg8JfPZ7-iTkyZysBg,"This is far from what Wunderlist made us use it, you no longer have details section in a task where for example you could add a link to a picture or describe more the task in hand... It seems it tried to be more of a daily scheduler than what actually the amazing Wunderlist was!",2,5,2.12.149,2020-03-12 15:13:35,,,most_relevant,com.microsoft.todos +Anom Birowo,https://lh3.googleusercontent.com/a-/AOh14GjhU0THqkdKSHFVOfsbPqeUky6IXBoQU9lls5rh8g,"Somehow, reminder function has never work. No notification or anything. Which make this app kinda useless.",2,0,2.14.152,2020-04-02 12:36:53,,,most_relevant,com.microsoft.todos +Dhanesh Kothari,https://lh3.googleusercontent.com/a-/AOh14GjIVZ-u9WWYAHVEUIj01gqN_CuHUR1IxcglvRH3,"Came over from wunderlist. Its good that you guys have synced my lists here. However, i have many shared to-do lists with comments. I don't see any comment feature in MSFT To Do. When can this feature be expected? Will increase rating, once this feature is introduced.",2,3,2.12.149,2020-03-12 11:37:05,,,most_relevant,com.microsoft.todos +Daniel Valente,https://lh3.googleusercontent.com/a-/AOh14GjSk8DbAFE7lRwA2f0gGuVU53TfBReEAAC28fYKnQ,"Some features widely requested and very useful are missing: - Task with due date should automatically appear on 'My day' - Forward email to Microsoft ToDo address and automatically add a task - Sort task by modification date, the ideia is to have on top the oldest task that I've updated - Very important feature, COMMENTS, ability to make comment on the task with timestamp - Tags, must have tags to more easily search and filter Please improved Microsoft ToDo with this features",2,1,2.10.147,2020-02-12 19:17:49,,,most_relevant,com.microsoft.todos +Chris Thompson,https://lh3.googleusercontent.com/a-/AOh14Gh-YS3KKweH-D1-1v6urW_2Y3MEcwycrPV_5XDS5Q,"Coming over from wunderlist, started the import and its been ""importing"" for 2 days. Only half my lists have transferred, seems hung.",2,0,2.13.151,2020-03-22 14:54:59,,,most_relevant,com.microsoft.todos +Heidi Williams,https://lh3.googleusercontent.com/-JW8lAX-0LIE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM1Z2PbHlxoJ-M_mm9HG9IlAEhiPg/photo.jpg,"Unable to delete a list. There are no ""3 dots"" on the top right hand side of my screen. I dont have all the features it says it has. I loved my Wunderlist and tranferred everything to Microsoft To Do....not sure I will keep it. Looking for other options.",2,5,2.12.149,2020-03-04 19:40:00,,,most_relevant,com.microsoft.todos +william coleman,https://lh3.googleusercontent.com/a-/AOh14GjknxxHcB9YMXZLTRmR0FLNiB4jq-eCbPGggsgzAw,"Not as good as wunderlist. Supposed to verify before deleting but it doesn't. Lost entire list by accidentally touching and yes, I have it turned on in settings. At least with wunderlist you could see deleted items and undo. Going to find something better than this then uninstalling.",2,7,2.11.148,2020-02-17 12:00:38,,,most_relevant,com.microsoft.todos +Anjana Chugh,https://lh3.googleusercontent.com/a-/AOh14Gi6jlxgcRLaUXE3Kqait5SpD_Ju6kXOZTkQFuH1wQ,No search option. Mixing up of completed and incolplete tasks in list. Mismanaged,2,2,2.13.151,2020-03-14 02:06:05,,,most_relevant,com.microsoft.todos +D Rageway,https://lh3.googleusercontent.com/a-/AOh14GhZgyHlEPPaxlz-rieCsgpYOC3dEoKsm-v7ROgf,"Please stop with the updates. Especially on the desktop version. You're just making it worse. The most recent update sucks! Stop! At least make it so you can add all of your previous ""my day"" tasks from yesterday with ONE tap. I'm tired of having to add each one individually.",2,5,2.11.148,2020-02-23 22:57:08,,,most_relevant,com.microsoft.todos +LordGoga LastName,https://lh3.googleusercontent.com/-A8hEtyHD6LA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNsiLzLk8Iw9EBO3fUEqsuOTK04RA/photo.jpg,"Just one neccessary thing, just one thing - and it is missing... To see only your today and earlier incomplete tasks in the widget. Automatically. Every day. With different due date colors, depending on if it is a today task, or earlier.",2,1,2.8.145,2020-01-22 15:55:00,,,most_relevant,com.microsoft.todos +carlos gonzalez,https://lh3.googleusercontent.com/a-/AOh14GhkS1RLyva2wKwTEJIdR-6Bhvg1mmM9LW06HV2eaA,Still missing a bunch of essential features like send reminder to all users in a list and recurring reminders for certain time of the day. Too bad 👎 I really enjoyed the UI but those features are a must for me.,2,1,2.12.149,2020-03-11 02:07:21,,,most_relevant,com.microsoft.todos +Andrew Yee,https://lh3.googleusercontent.com/-3myZz6xaGhY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNawR6qbaDsSw08EErgWObEpPMzMQ/photo.jpg,Should have choice of adding new items at top or bottom of list. Should have small vertical scrollbar appear when scrolling to know how long a list is (like Wunderlist). Would be nice to an option to pop an item to top or bottom of a list.,2,2,2.10.147,2020-02-07 00:01:07,,,most_relevant,com.microsoft.todos +Mathieu Bois,https://lh3.googleusercontent.com/a-/AOh14GhtD5wENut6p8zZL1psApsbWnzlEAeajjgfSI5TLg,"Inferior to Wunderlist. I'm so sad. Sharing is pain that works half the time, UI is below average, pretty much all the features are lessened. I can't believe they don't see this step back.",2,2,2.8.145,2020-01-26 23:38:20,,,most_relevant,com.microsoft.todos +Sophie King,https://lh3.googleusercontent.com/-vTfPGQW-A40/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMewrSmswbBaTDQVZcuX2Bu_cy1Zw/photo.jpg,Poor substitute for Wunderlist which is going in May. All imported well but nowhere near as many settings options and the list font size is far too big so u can only see a small portion of your list on the screen. Looking for anotjer alternative,2,5,2.12.149,2020-03-04 19:01:48,,,most_relevant,com.microsoft.todos +Joshua Lisheid,https://lh3.googleusercontent.com/-tntuWduiBog/AAAAAAAAAAI/AAAAAAAADyU/AAKWJJNuJqLycBgDAC_-qqwmACZlng5QNg/photo.jpg,"UI is nice, but task lists are useless to me unless they let you set a start date. I thought that since this was Microsoft's task list app, it would have similar features to the tasks in Outlook.",2,1,2.8.145,2020-01-18 16:53:46,,,most_relevant,com.microsoft.todos +Anna Butler,https://lh3.googleusercontent.com/a-/AOh14GgRg0Q06SVutk8C6YP_VOk6Yq8N0tcRj2TxHqTL7Q,"Synced well with Wunderlist to import lists, but despite having reminders activated, I get no notifications to remind me of upcoming tasks or events... which makes this pretty redundant as a Wunderlist replacement.",2,1,2.12.149,2020-03-11 22:05:51,,,most_relevant,com.microsoft.todos +Marko,https://lh3.googleusercontent.com/a-/AOh14GjUM1kKUQrMRtLgHxIoLH_SoCNr8vXDnKIiOvJ2,"Great idea but the appl has serious issues syncing so completely unusable. Migrated from wunderlist, but I guess I'll stick with it because they fubar-ed this to do app. Go figure. Microsoft :-) Still love the my day feature. A shame.",2,4,2.11.148,2020-02-18 16:55:24,,,most_relevant,com.microsoft.todos +Hanna Johansson,https://lh3.googleusercontent.com/a-/AOh14GiESSpHSHepqpwLCVrmebpot6gtb2--Q20mE0iOeA,"I don't appreciate changing away from wunderlist, like hello where is my calendar functionality, should be even easier to do when everything is the same suite. Also my dear wunderlist. RIP. You died too soon.",2,1,2.8.145,2020-01-14 20:46:58,,,most_relevant,com.microsoft.todos +Mohamed Nassar,https://lh3.googleusercontent.com/a-/AOh14Gh7O7XU1IDF67wdSUV-Ou6bT1irdwfBiFDVBuInSA,"Good idea, bad execution, widgets cannot be used to enter information, doesn't work, you tap the arrow and nothing Happens. Useful to display information you entered in the app though",2,1,2.8.145,2020-01-16 19:17:05,,,most_relevant,com.microsoft.todos +azhar fatawi,https://lh3.googleusercontent.com/a-/AOh14GjIgtzNbmbp3dVuErU8QOPMPgrLd0-F5Ogau5RR,One thing that I think is important and missing from this application after i move from Wunderlist is synchronization with Google Calendar. I did not find how to synchronize Google Calendar with this to do list application.,2,5,2.11.148,2020-02-13 15:26:39,,,most_relevant,com.microsoft.todos +Arlene Roberts,https://lh3.googleusercontent.com/-ZfrCw_a8alE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO2JBDKM3RqGWb98KU8F-gccn_Y2g/photo.jpg,"You should be able to add to the particular list you are viewing from the ""+"" and not have to change it from task every time. It works as it should once in a while.",2,0,2.8.145,2020-01-16 10:57:28,,,most_relevant,com.microsoft.todos +Scott Hoopes,https://lh3.googleusercontent.com/a-/AOh14GiZSzwL19kpUF6ZfUFfqKiZRlcRjPMz8SyuKvF1uA,if I log in to To Do then I get logged out if Outlook. When I log back into Outlook I get logged out of To Do. I cannot use both. If you had just kept tasks in Outlook we would not need 2 apps.,2,0,2.10.147,2020-02-03 14:59:23,,,most_relevant,com.microsoft.todos +Dave Black,https://lh3.googleusercontent.com/a-/AOh14GiQrHTHdLJQjZOCmyyPUrCC0zwTF9YDuWyhj4W4,"Syncs in seconds when using phone and desktop computer. Great for to do lists - shopping, procedures etc. Reminder alarm is unreliable - sometimes early, sometimes late, and sometimes only works when phone is already awake.",2,6,2.10.147,2020-01-29 15:15:40,,,most_relevant,com.microsoft.todos +Christofer Espinoza,https://lh3.googleusercontent.com/a-/AOh14GgIPcy7e72Ol7G_WIOg4fnpOQCj3faVdV6z3v_M0g,"It's been a couple of weeks and still have not been able to share lists. Keep getting an error that says ""it's not you, it's us"". Already wrote to customer support and have not heard from them...",2,1,2.12.149,2020-03-01 12:23:23,,,most_relevant,com.microsoft.todos +Kumaran S,https://lh3.googleusercontent.com/a-/AOh14GgrIBEl-ff4JATB_TFhqH0hi1BsANeEPAlJZ9QTiw,This app is excellent and more productivity. But don't have separate ringtone set option. So I will easily get confused with SMS or To Do notification.,2,1,2.11.148,2020-02-18 15:52:35,,,most_relevant,com.microsoft.todos +Nishanth N,https://lh3.googleusercontent.com/a-/AOh14GjXwEpIV5hMrPz3DUjn5r2Kj4lj_y40kmGtP0WJcw,Snooze doesn't work most of the times. I end up forgetting/missing task notification. Also I get notification on opening app. Instead of set time.,2,0,2.11.148,2020-02-22 09:30:52,,,most_relevant,com.microsoft.todos +James Barrett,https://lh3.googleusercontent.com/a-/AOh14GipDPyThaF1g8S5VrvrxdN9aoTp4QOS5Jkk_N33xw,"Coming from Wunderlist, Todo it's annoying to use. Adding items to a list used to be quick and simple. MS over complicated it.",2,2,2.12.149,2020-03-06 14:33:46,,,most_relevant,com.microsoft.todos +Philip Wright,https://lh3.googleusercontent.com/a-/AOh14GivZwNIYM05AG_CgvznCHq75DAF_BxuWOWIahj6qg,There's no automatic list of everything that is due today or past due. Wunderlist was better.,2,1,2.12.149,2020-03-12 23:56:14,,,most_relevant,com.microsoft.todos +Kate G,https://lh3.googleusercontent.com/-um_RzeguKMo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP-ZPei_3K4KFiIACmJ-713zBE1aw/photo.jpg,Boxes are too wide on the widget. It was better on wunderlust as I could see a lot more at once.,2,2,2.11.148,2020-02-23 08:04:56,,,most_relevant,com.microsoft.todos +Stef Aann,https://lh3.googleusercontent.com/-nPbn4PpRYCU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOdyoeCQ0GS36dNSvIoBhR5bpYQvQ/photo.jpg,The biggest downside of the app is that you now need a Microsoft account. Google single sign on isn't possible,2,1,2.12.149,2020-03-11 09:27:26,,,most_relevant,com.microsoft.todos +amit levin,https://lh3.googleusercontent.com/a-/AOh14GgbOhJ4P-ygdu_-PXoZJT0wMjIfAjXNCPeqZ9XERA,"The widget is buggy, every few days it stops showing your lists. only removing it and setting a new instance solves the problem.",2,0,2.11.148,2020-02-24 09:34:07,,,most_relevant,com.microsoft.todos +Diksha Somai,https://lh3.googleusercontent.com/a-/AOh14GhdwiwoinIhSfmRjY8dCG39vfdOUa0ZxuDUpwxr2A,Disappointed that you can't share lists across organizations. Doesn't help when you trying to keep track of tasks and collobrations to do lists with people in other companies.,2,0,2.10.147,2020-02-04 21:12:34,,,most_relevant,com.microsoft.todos +David Toma,https://lh3.googleusercontent.com/a-/AOh14GiibWZwtBTkBgzGRvgg2h2CbyRTWdpvTHFuE718,Moved from Wunderlist. Set up to capture non Microsoft users. It's okay but fails straightforward usability test. Sigh ......,2,2,2.11.148,2020-02-18 00:29:17,,,most_relevant,com.microsoft.todos +Jim R,https://lh3.googleusercontent.com/-DUMcA4ItkJ8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMfijFiN4-wAlxWD_k8WqKDNkhaSA/photo.jpg,"Wunderlist has a date time stamp on comments. When the list was imported, the date time stamp is no longer available.",2,1,2.11.148,2020-02-20 12:57:20,,,most_relevant,com.microsoft.todos +Chingiz Issabayev,https://lh3.googleusercontent.com/a-/AOh14GitGi0TEKteNjE1Wyj-qUX7j7ZQgNAXpko71siQ,"Great app, but I constantly have sync issue, and that's why I started to use TODOIST!",2,0,2.12.149,2020-03-03 11:50:31,,,most_relevant,com.microsoft.todos +Abdallah Elsaied,https://lh3.googleusercontent.com/a-/AOh14Gg2UxeFJwo7cPojgvbthJcGCNvgulmifc2NiJR6-Q,I really like the app but I can't use it until calendar view is available and subtasks become visible from tasks level.,2,0,2.10.147,2020-02-10 23:04:46,,,most_relevant,com.microsoft.todos +ganesh Doranathula,https://lh3.googleusercontent.com/-Z7_F19vSaF4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNZXmeNycwfcLCLyHMSAN98i36XqA/photo.jpg,Notifications are not working properly. It pop's up only when I open the app. 😕😕😕,2,1,2.11.148,2020-02-14 12:57:35,,,most_relevant,com.microsoft.todos +Deepesh Kotecha,https://lh3.googleusercontent.com/a-/AOh14GhxuwCSzBKNu7ctcUI18jqMS_mIt8UfenSbEOgVUA,Wunderlist is far better. This is no way close,2,0,2.13.151,2020-03-20 04:14:49,,,most_relevant,com.microsoft.todos +Vijay chandar R,https://lh3.googleusercontent.com/a-/AOh14Gil7c-zGB7TdChAKGnoE315CH6rreaWovP6bHjVgaA,Not worth of killing Wunderlist Some crucial features such as comments are missing in the app,2,1,2.12.149,2020-03-13 08:02:08,,,most_relevant,com.microsoft.todos +Anthony Davis,https://lh3.googleusercontent.com/a-/AOh14Gjkk7TH39-GoPJzm-JhcZEHSIwKpTAVfWb_D9Ae1Q,The Android widget is pretty buggy. Desktop app is great. Android app not so much,2,0,2.8.145,2020-01-20 17:16:08,,,most_relevant,com.microsoft.todos +Jayden Jones,https://lh3.googleusercontent.com/a-/AOh14Gh9ATIPgoyGtcgSvF4eF-BBVNKbGDjlk1QvcvUH0Mc,"Just not the same open feel as Wunderlist, don't like it",2,1,2.10.147,2020-02-10 12:22:10,,,most_relevant,com.microsoft.todos +Dimosthenis Arkoudeas,https://lh3.googleusercontent.com/a-/AOh14GhK_F6KQngFvWclRK9EZiV3fZcob5q1Y0T_JsM9,Multiple account support without unified view... Really disappointing .,2,0,2.11.148,2020-03-02 19:44:16,,,most_relevant,com.microsoft.todos +Ritvik Anand Vedantam,https://lh3.googleusercontent.com/a-/AOh14GgRHFLr8appvc2xQIflGaqu-8REKk5um7b4EG-SWA,Issues with notifications and reminders,2,0,2.13.151,2020-03-17 19:05:08,,,most_relevant,com.microsoft.todos +Rebecca McGowan-Griffin,https://lh3.googleusercontent.com/-Jvi50P4wtXQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMQHNiycD_WU7jbDZdSVcinbgZb6w/photo.jpg,"It's good that you can import from wunderlist, but the planner is missing some really basic features. For instance it's impossible to set a repeating reminder, which makes it pretty useless... And why 'My Day' doesn't automatically populate with the things you have set for the day is beyond me. Poorly thought out, as I am finding a lot of Microsoft products are these days. I'm looking for a better app.",2,107,2.5.137,2020-01-09 21:59:24,,,most_relevant,com.microsoft.todos +Andrew Ross,https://lh3.googleusercontent.com/a-/AOh14Ghu31tevWykTTcKYNqi27Pjw4m4SLJcEbrv0d8O4g,An option for Daily jobs to carry over is necessary. Having to re-add tasks is stupid.,2,1,2.12.149,2020-03-12 07:55:56,,,most_relevant,com.microsoft.todos +Bastian Schlagowsky,https://lh3.googleusercontent.com/a-/AOh14GgKFgmpk7lVGMlSTwM5Qtt9CiW4pf2ACk8gl7qcqg,After years of using Wunderlist and organizing both my professionell and my private life with the App I made the switch to Microsoft ToDo after they announced that the Wunderlist Service will be terminated around Mai this year. (2020). First impression was good and after years of using Wunderlist I felt at home. But on the first day in the office came the shock: You can not manually reorder the tasks!!! Seriously? That undermines how I and I guess a lot of people use a ToDo List...,2,26,2.7.142,2020-01-07 12:39:25,,,most_relevant,com.microsoft.todos +Afra Al Murar,https://lh3.googleusercontent.com/a-/AOh14GgVXfajmNKbw6ARMrOEwr5UXrIWyPMazc1oTA246w,I am facing problems importing my lists from Wunderlist,2,1,2.12.149,2020-03-13 10:12:29,,,most_relevant,com.microsoft.todos +Verla Hoffman,https://lh3.googleusercontent.com/a-/AOh14GhOs97ycRNVQfGq2eagsxjjmG13P7P5mGiujNHY2A,The app does not sync our shared lists.,2,1,2.13.151,2020-03-23 15:37:44,,,most_relevant,com.microsoft.todos +Hemkunt RoadLines,https://lh3.googleusercontent.com/a-/AOh14Gii9ClLRfk7U87i9UVmfZ9yFxRFkUW-b7Ept86t,Please add option to add voice notes.,2,0,2.12.149,2020-02-29 08:41:16,,,most_relevant,com.microsoft.todos +Alex K.,https://lh3.googleusercontent.com/a-/AOh14GhQ778mhfy6EA1c3_ZFasFsC4YNqjNrzMA_JK31ILk,"The team fixed importing bookmarked tasks from Wunderlist, since about a year ago. After using ToDo for couple days, I can say it's *almost* on par with Wunderlist. But, given that it's advertised as a replacement, developed by the same team, it's frustrating that not all behavior was backported. No quickly prioritizing tasks by toggling bookmark state, no list selection and delete. Hard to deal with duplicate lists after importing. Custom sorting, so you add a task via widget, but cannot see it",2,11,2.6.140,2019-12-09 17:31:20,,,most_relevant,com.microsoft.todos +John Yeung,https://lh3.googleusercontent.com/a-/AOh14Gg5cfIGxDWY24SevYvaKCqa2aKkYUy-B5yuZ11Iqps,"The best thing about this is that it is free. No annoying ads but I get all the features. Some of the UX on here just isn't as good as other apps. For example, My Day makes no sense. Why do I need to add everything into My Day manually when it is already due today? I need to click an extra button to see the tasks.",2,11,2.7.142,2020-01-02 13:16:45,,,most_relevant,com.microsoft.todos +Kunal Shah,https://lh3.googleusercontent.com/a-/AOh14Ghggh5w7EDYNDvyNIk9LFZhkpaAy2M7qMKkAb1bfw,Have difficulty syncing to google calendar,2,0,2.11.148,2020-02-25 11:44:30,,,most_relevant,com.microsoft.todos +Tim Dalvang,https://lh3.googleusercontent.com/a-/AOh14GgJ7DjKE_8vONNoIJZarholoxOjqjqjyf8-HNFXVA,"Needs all the sorting options on the widget that wunderlist has. I specially miss the Week setting. Also, colour coding of overdue dates on the planned widget setting, is missing. Also missing numbers on the drop down menu of the list, so you can't see how many listings are in each category. (with overdue listed too there) Will raise to 5 stars once that is fixed.",2,10,2.5.137,2019-11-29 07:43:16,,,most_relevant,com.microsoft.todos +Corvus Strigiform,https://lh3.googleusercontent.com/a-/AOh14Gj8-GcwBGVqToEocHnO6k61X-kQVj3yedZEjLIYRg,Was forced to switch to this from wunderlist. The only thing better about it is dark mode that extends to widgets. Everything else sucks. I now don't even get about 30% of my reminders anymore and have to constantly reset things. Microsoft is one of the richest companies on Earth and this is the best they can do?,2,0,2.14.152,2020-04-06 17:00:28,,,newest,com.microsoft.todos +H Benedicto,https://lh3.googleusercontent.com/-NQVX5DPRfcA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPEzKNa7KS7hEpCPMrDLu3cBdxZ8A/photo.jpg,"Ad a few widget customisations and I'll give a another star or two. Chose between dark or light. And let us set transparency, so we can match it to other widgets. That would be great.",2,0,2.14.152,2020-04-06 14:39:19,,,newest,com.microsoft.todos +David Ešner,https://lh3.googleusercontent.com/a-/AOh14GgfAZXAn1X_OLFgUKoyfhrr-F9ySfFKIjloeqHMOA,"Doesnt show you task.in calendar, only Today tasks, useless, try Trello",2,1,2.14.152,2020-04-05 08:20:50,,,newest,com.microsoft.todos +Calvin Thomas,https://lh3.googleusercontent.com/a-/AOh14GgpCsvTCzZTyk4LyBo1obM4BxtqPye3_Urbt8jsjA,Subpar so far The difficult to me is syncing lists between family members. This app tends to produce multiple lists of the same theme.,2,0,2.14.152,2020-04-04 15:01:10,,,newest,com.microsoft.todos +Bình Nguyên Lương,https://lh3.googleusercontent.com/a-/AOh14GixKqnzUQEkHoom8miWeiZihCkQ-5_UyKlQlRNv0A,Hard to use.,2,0,2.14.152,2020-04-04 13:57:30,,,newest,com.microsoft.todos +Stefan Pohl,https://lh3.googleusercontent.com/a-/AOh14GiIGf_plPTJkvJQ4-D3yRYgkJTF8RkCq-UlM3oCvA,I just noticed that notifications for yesterday's reminder disappear. That is really bad. (Wunderlist didn't have this bug),2,0,2.14.152,2020-04-04 07:52:26,,,newest,com.microsoft.todos +Garrison's Garage,https://lh3.googleusercontent.com/a-/AOh14GjCcBIes7aZD6YyzldDIuw59rfjlyvqWV3IpLIy9g,This app is inferior to Wunderlist as of now. It needs to be an option to duplicate a list exactly and rename it. You should also be able to attach pictures and instructions to long lists that you've made. It's just not nearly as intuitive as Wunderlist. I have 50 locations that often need all the same services performed and it is a major waste of time to type can01 can02 can03 can04 etc every time i have a sweeping maintenance issue.,2,1,2.14.152,2020-04-03 14:40:44,,,newest,com.microsoft.todos +Anom Birowo,https://lh3.googleusercontent.com/a-/AOh14GjhU0THqkdKSHFVOfsbPqeUky6IXBoQU9lls5rh8g,"Somehow, reminder function has never work. No notification or anything. Which make this app kinda useless.",2,0,2.14.152,2020-04-02 12:36:53,,,newest,com.microsoft.todos +Renee Carmel,https://lh3.googleusercontent.com/a-/AOh14GiUHAOeSSDMwQziVp0x48bPWuxkynSMnLEgR7PQPQ,"This is ok for solo use, but don't count on it to update between two devices. My wife and I found out the hard way when I didn't get steaks at the store. :( Even manual refreshing doesn't help. I googled the problem and it looks like MS Todo has had similar problems for years on various platforms. Anyway, I suggest finding another list app.",2,6,2.14.152,2020-04-01 22:30:17,,,newest,com.microsoft.todos +Yasuhiro Nakamura,https://lh3.googleusercontent.com/a-/AOh14Gj47EBb8Q5fIBu_9tZkHbx_7lJTAhOz4cRkmbMgnA,outlook のメールにフラグを立ててもToDo のflagged email に表示されない。,2,0,2.14.152,2020-04-01 16:23:14,,,newest,com.microsoft.todos +Erin Harrison,https://lh3.googleusercontent.com/a-/AOh14Gg7J_hKh1eOKHgd0hUO5RxpFFF1q2R0-Pb6hGdCAp0,"Seems to work great for me, but my family have trouble accessing the app, having to log into their Microsoft account EVERY SINGLE TIME. Get it together, Microsoft... it's frustrating and ridiculous.",2,0,2.14.152,2020-03-31 17:50:19,,,newest,com.microsoft.todos +Jessica Boston,https://lh3.googleusercontent.com/a-/AOh14GiFd79oaV8_u9uM4DG1TYuyrxzhdSdAvtPj03WxKDs,"I miss Wunderlist. It was better designed, had more style. Form and function are LACKING from this new product. I hate you a little.",2,0,,2020-03-31 17:41:25,,,newest,com.microsoft.todos +Ninsuhn Rey,https://lh3.googleusercontent.com/a-/AOh14GjoJHyKiHbpK1rasvhva0VfvOxFEzc-f1rFdwjB,"It's a true mystery of life how Microsoft can take ANYTHING and make it look UGLY and NEEDLESSLY COMPLICATED. Why on Earth would they not simply leave Wunderlist as-is?? So they see nothing wrong, and decide ""Time to wreck it."" Who is going to save us when they finally shut Wunderlist down??",2,0,2.14.152,2020-03-31 09:01:22,,,newest,com.microsoft.todos +Chris Holsman,https://lh3.googleusercontent.com/a-/AOh14GisrPdE8E4bCzyfLTTEHG6YDYBQSTgVdXh0ls0s4w,App looks good but failed to import from Wunderlist twice. Now forced to manually re-enter several dozen tasks. Wunderlist works flawlessly so wondering why retire it.,2,0,2.14.152,2020-03-30 16:43:23,,,newest,com.microsoft.todos +Roger Miller,https://lh3.googleusercontent.com/-nUGIDEcRvfE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOtph_QAC4FBBvwMrq24Z4lFOKxvw/photo.jpg,"* Adds new tasks to bottom, not top! * This app adds new tasks to the bottom of the To Do list, not to the top. This is different than every other ""to do"" list I have used, including Wunderlist, on which this app is to be based. Please fix this ridiculous problem! At least give me a setting to add new items to the top or the bottom of the list.",2,0,,2020-03-29 15:59:10,,,newest,com.microsoft.todos +Rafael Vazquez,https://lh3.googleusercontent.com/a-/AOh14GgsRh5mCG-ooN-4-k6RRs1SQ0YdzOURQnvhur-9Uw,Not remind me,2,0,,2020-03-29 10:05:47,,,newest,com.microsoft.todos +Prabh Sadhioura,https://lh3.googleusercontent.com/a-/AOh14GhJ8_bESC0aDWDFHDQM0IG2jDLnO2jMvzKMXE4K,Need to work on it.,2,0,,2020-03-28 18:40:24,,,newest,com.microsoft.todos +per midtbø,https://lh3.googleusercontent.com/a-/AOh14Gj6qHjOfcsdf0JFSZKDvTA24wU1h5uVjVbRJR7fwg,"Came over from wunderlist, and i was not happy with the changes, i have sync errors all the time, my lists are doubbled up(the ones i had shared with others) and when i add a new task to any list they go to the bottom at the list so i have to manualy drag them uppwards. AND IF I CHANGE IT SO THAT IT GOES TO THE TOP OF THE LIST, THE APP WONT LET YOU DRAG/ORGANISE THE LIST! THIS APP IS JUST BUGS BUGS AND GLITCHES So in short, make it MORE like wunderlist. But ""OK"" App otherwise",2,3,2.14.152,2020-03-28 15:24:02,,,newest,com.microsoft.todos +Jane Spaulding,https://lh3.googleusercontent.com/a-/AOh14GhWZyLUl5-8AopRgIgUKvzlVL-PNV34mSzbiGZnQE4,"Typical of Microsoft, they bought a really great app, Wunderlist, killed it and replaced it with an app that is nowhere near as easy to use.",2,1,2.14.152,2020-03-27 23:20:50,,,newest,com.microsoft.todos +Koray Yilmaz,https://lh3.googleusercontent.com/-yVz4KVwYdes/AAAAAAAAAAI/AAAAAAAAJlc/AAKWJJOt6rTqN6EfXyQTu1U57GInb55XEA/photo.jpg,Wunderlist !!!,2,1,1.39.89,2020-03-27 18:44:34,,,newest,com.microsoft.todos +Ron May,https://lh3.googleusercontent.com/-wgzPnq3vQ-s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPshfzeqklQvqo2vWQfUxhkZM51xA/photo.jpg,"PLEASE add the option of automatically adding tasks to the top instead of forcing them to the bottom. That's the only thing stopping me from switching over from Wunderlist. Edit: I just heard you're killing off Wunderlist for good in May of 2020. I know I'm just one person, but I'll be jumping ship if such a simple improvement isn't made. Edit again: 3/27, and you did an update. But why in the world would you give iOS the ""add tasks to the top"" feature but NOT Android? Come on, please??",2,97,2.14.152,2020-03-27 18:21:38,,,newest,com.microsoft.todos +Sarah Milarch,https://lh3.googleusercontent.com/-0mLv5jytxUU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOp2nq_2KR95xAELe1iuTf52ioDCA/photo.jpg,"I had Wunderlist, but it changed to Microsoft To Do. To Do is more clunky than Wunderlist. It does not currently group starred items by category. It does not have a variety of theme back grounds, and the sharing of lists with others had to be done list-by-list and was unnecessaryily time consuming. I am hoping to see significant improvements in thia app.",2,2,2.13.151,2020-03-27 12:44:30,,,newest,com.microsoft.todos +Sakuraba,https://lh3.googleusercontent.com/a-/AOh14GjbN_vA8rHgyweKQGNyl2GohTaiUTFp757K7gX6j9A,There are better alternatives.,2,0,2.14.152,2020-03-26 21:13:18,,,newest,com.microsoft.todos +Will Parker,https://lh3.googleusercontent.com/a-/AOh14GgV1rK-FQh1ceYBGpDsQsFCH4cEDG6PsKf9SnZjfA,Reminders are invisible,2,0,2.13.151,2020-03-26 19:35:28,,,newest,com.microsoft.todos +Bryan Jerzycki,https://lh3.googleusercontent.com/a-/AOh14GihiCXbKAN5rh0xgLXY31FQONsebl47AcRYF0sG,"I'm adding a star because the import from Wunderlist was seamless, but otherwise the fact that I cannot drag and drop/reorganize stuff manually absolutely sucks. Soon as I can get my lists imported into something else, I'll be moving on.",2,1,2.13.151,2020-03-25 18:50:27,,,newest,com.microsoft.todos +Laerte Oliveira,https://lh3.googleusercontent.com/-vacrUUbkqTI/AAAAAAAAAAI/AAAAAAAAAVU/AAKWJJN5eFCQeDaOSxqOCth8DL5W5o8rwQ/photo.jpg,O aplicativo não tem uma lista de tarefas deletadas. Eu deletei uma tarefa sem querer (o aplicado deleta a tarefa se eu arrastar pro lado) e agora não consigo lembrar do que se tratava.,2,2,2.13.151,2020-03-25 16:08:01,,,newest,com.microsoft.todos +Z Brazylia,https://lh3.googleusercontent.com/-T7ey4gqhdkY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNtp3gyLtmrPI1QJCLqBI6qxdkQGA/photo.jpg,"Wunderlist was much better, more user-friendly. For example there is no select of tasks due on the week.",2,1,2.13.151,2020-03-24 16:10:39,,,newest,com.microsoft.todos +Vasileios Topouzis,https://lh3.googleusercontent.com/a-/AOh14GhCo9Nj7nCIUy8bBUlsnhBllss57-tqr6iLk44DTA,Sadly subpar... Even in 2020 missing most of the basic features that other small developer apps have... Pity for a Microsoft app,2,0,,2020-03-24 01:31:27,,,newest,com.microsoft.todos +Daniel Andersen,https://lh3.googleusercontent.com/a-/AOh14GjXGBEL_CxJnfWdQgVMpcTgGWDQAsjrIIc9CRRnuQ,Replacing Wunderlist that I've used for years. Syncing lists not working reliably so it's useless for me. Switching to Todoist instead.,2,1,,2020-03-23 20:45:17,,,newest,com.microsoft.todos +Verla Hoffman,https://lh3.googleusercontent.com/a-/AOh14GhOs97ycRNVQfGq2eagsxjjmG13P7P5mGiujNHY2A,The app does not sync our shared lists.,2,1,2.13.151,2020-03-23 15:37:44,,,newest,com.microsoft.todos +Charles Jackson,https://lh3.googleusercontent.com/a-/AOh14Gie3j0cnITZtjuTYI9VQXMDwe8GLfAnSvH8AOGYCQ,"Love the app...good functionality, nice features, but missing option to lock a note for security and/or prevent accidental deletion. *Needs an un-do/don't save button, I have lost so many notes by this app accidentally grabbing text and replacing it with copied text or what it thinks i want to say",2,0,,2020-03-22 16:54:18,,,newest,com.microsoft.todos +Chris Thompson,https://lh3.googleusercontent.com/a-/AOh14Gh-YS3KKweH-D1-1v6urW_2Y3MEcwycrPV_5XDS5Q,"Coming over from wunderlist, started the import and its been ""importing"" for 2 days. Only half my lists have transferred, seems hung.",2,0,2.13.151,2020-03-22 14:54:59,,,newest,com.microsoft.todos +Nitai Sasson,https://lh3.googleusercontent.com/a-/AOh14Gitgg3y8lOYe0mf6F64MlNgvsGhVRuHr2GTfChB,A recent update broke existing home screen widgets. It also made it impossible to create thin widgets - the minimum width is now 4 units which basically takes up the whole screen.,2,1,2.13.151,2020-03-22 08:17:26,,,newest,com.microsoft.todos +Ryan Greif,https://lh3.googleusercontent.com/-22Kzv2T4zxs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNY3dTaBWx_rwrfTNQTlla-EcbYJQ/photo.jpg,"My wife and I used Wonderlist for years to share grocery lists, to-do's, packing lists, etc. The transition into Microsoft To Do could not have been more painful. Duplicate imports and no sharing between work/personal accounts made the move harder than it should be. But the most frustrating thing? I can no longer click and drag to order items in a list!! I be in the grocery store runnin around like a psycho cuz my list be all scrambled. And that's before I even look for toilet paper.",2,116,2.13.151,2020-03-21 23:42:44,,,newest,com.microsoft.todos +Sam Veal,https://lh3.googleusercontent.com/-spkq_FYnd-I/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMnSj1tpbPg_SFt0X7yJUJHp77Qiw/photo.jpg,"Now I don't trust this at all! I learned about the transfer just today so.immediatley thought I'd swop over. Everything seemed fine, I got a pop up to say everything had been successfully transferred. Then this evening I'm just adding something when I get a pop up that the transfer was incomplete! So what do I do now? Unless I cross check everything in all the lists I have how do I know what's missing/not transferred?! OMG! I seriously do not need this right now 😠😡",2,58,2.13.151,2020-03-21 21:10:36,,,newest,com.microsoft.todos +Matt Garnes,https://lh3.googleusercontent.com/a-/AOh14Giio5nzbsXldcBPeo6GHhX87Y0bpnmMlexRXA8qh8U,"I like using this app to organize my to-do items for my company which subscribes to office 365. However, since the latest update my app constantly says ""unable to sync"" even though it appears to be working when I check in the browser on my desktop. Even uninstalling and reinstalling the app doesn't fix it. I can't trust the app with my vital work if I'm getting sync errors like this because I cannot lose anything. Please fix this and I will update to 4 or 5 stars.",2,20,2.13.151,2020-03-21 19:59:39,,,newest,com.microsoft.todos +Warren Family,https://lh3.googleusercontent.com/a-/AOh14GgRhx8CUe0_aGSxgKSpqo-Gt1a3fcGcORuWUX27,"Migrated from Wunderlist. Can't share my list with my spouse, always gets errors. Todo list unusable without sharing working. +1 for dark theme though.",2,1,2.13.151,2020-03-21 15:47:52,,,newest,com.microsoft.todos +Trevor Bryan,https://lh3.googleusercontent.com/-bm2tJZ4VoKo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOIZqoc7yGbr7wTkqnOYUbfiGULdA/photo.jpg,Worse than Wunderlist. No drag and drop of tasks and a poor selection of themes. Weekly view should allow segmentation by day instead of lumping five days together.,2,1,2.13.151,2020-03-20 19:14:35,,,newest,com.microsoft.todos +Nicholas Dyer,https://lh3.googleusercontent.com/a-/AOh14GiMf6P9yHh1CPBfZ90lQbFoJiF676OhUA7pzVTAiMw,"I like the app. Except for some reason it now says it doesn't work with my account even though I can use it everywhere else. I've done all the ""IT"" things I can think to do. But to no avail. Guess I'll be looking elsewhere now.",2,1,2.13.151,2020-03-20 16:57:19,,,newest,com.microsoft.todos +christo4232,https://lh3.googleusercontent.com/-qNUU87Ef2rc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNCJqwXeOQmqFq31iOOQNM6jmXJkA/photo.jpg,"Had to switch from Wunderlist. To Do lacks functions which make Wunderlist so great. Importing worked well, but sharing previously shared lists required me to make a new 'personal' account - this wasn't an issue before. All is set up now and the app feels limited still in themes and settings. Most of all, why switch? Why not just rename Wunderlist to say 'Microsoft Wunderlist'?",2,14,2.13.151,2020-03-20 07:55:44,,,newest,com.microsoft.todos +Deepesh Kotecha,https://lh3.googleusercontent.com/a-/AOh14GhxuwCSzBKNu7ctcUI18jqMS_mIt8UfenSbEOgVUA,Wunderlist is far better. This is no way close,2,0,2.13.151,2020-03-20 04:14:49,,,newest,com.microsoft.todos +David Price,https://lh3.googleusercontent.com/a-/AOh14Gh8GfD2_j2TnW7ueZPzTxAZmQ5L48Pxh_t4P5vttg,Nowhere near as good as Wunderlist which I've been using for several years. Gutted that Microsoft are stopping Wunderlist in favour of this very poor substitute. Not feeling the love for Microsoft anymore...,2,1,2.13.151,2020-03-19 17:32:39,,,newest,com.microsoft.todos +Rikki Valverde,https://lh3.googleusercontent.com/a-/AOh14GgxZRowgfNb-ll3BLHCASICzE5EvSx_sGxpURgh6gI,Not as good as Wunderlist. Going to need to find a new app ☹️,2,0,2.13.151,2020-03-19 16:13:30,,,newest,com.microsoft.todos +Andrew Six,https://lh3.googleusercontent.com/a-/AOh14GgUqPMGbYefYx3g7Eb3r_NhSVZuYsGH65HvWqLV5w,"No background sync. I love the UI and widget, but it won't update notes I create/change from the PC unless I physically open the app, which renders it useless for my needs.",2,1,,2020-03-18 22:54:30,,,newest,com.microsoft.todos +Adnan Asghar,https://lh3.googleusercontent.com/a-/AOh14GhiHRRoBDxwiN0SZBVlrvixL4-FIlq-iRbhFy8Q,Very nice,2,0,2.13.151,2020-03-18 12:53:41,,,newest,com.microsoft.todos +Joel Moreland,https://lh3.googleusercontent.com/-BPiPI8RjWKY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNtDBfk7DFehOudvTUxVzHfBYXBoA/photo.jpg,"The app struggles to sort by due date, I think it is at least in part due to the imported tasks (from Wunderlist).",2,1,2.13.151,2020-03-18 10:48:44,,,newest,com.microsoft.todos +Ritvik Anand Vedantam,https://lh3.googleusercontent.com/a-/AOh14GgRHFLr8appvc2xQIflGaqu-8REKk5um7b4EG-SWA,Issues with notifications and reminders,2,0,2.13.151,2020-03-17 19:05:08,,,newest,com.microsoft.todos +Didi de Jong,https://lh3.googleusercontent.com/a-/AOh14Gg_pyRrX0-3tsSb5BGwxkNNP9C0xe288urHShCt8A,"It's okay, but I migrated from wunderlist and I still miss it. Plus the widget keeps on breaking, not showing any tasks. When I delete it and put it back on the screen, it works again but only for a few days. Please fix this!",2,3,2.13.151,2020-03-17 15:59:28,,,newest,com.microsoft.todos +Deborah Lee Anderson,https://lh3.googleusercontent.com/a-/AOh14Ghpu7lXZL-J8Slly34F6KB4X4e8h-5w5CKsDKE-Cg,"I miss Wunderlist. The functionality is so different now, and the transition was really bad. And I definitely didn't want a Microsoft account.",2,1,,2020-03-17 05:02:33,,,newest,com.microsoft.todos +Jonathan Evan-Cook,https://lh3.googleusercontent.com/a-/AOh14Gii0Y-qomx-bghzzoNwdJnK0lbyZn5-67kQ448i6A,"Can we have the lists back at the top of the page like Wunderlist, I don't need any of the options that take up the top half of my screen!",2,2,2.13.151,2020-03-17 04:42:44,,,newest,com.microsoft.todos +Wikrine Teriyoko,https://lh3.googleusercontent.com/a-/AOh14Gg79tjzl7zA4hDk7JpMghUpwg2ZqZ5uqwDM08mL,"Please Add, Disable Animation🙏🙏🙏",2,0,2.13.151,2020-03-17 03:00:58,,,newest,com.microsoft.todos +Reem Farah,https://lh3.googleusercontent.com/a-/AOh14GjDJLk42_B1Pk7zLLnCuHGRc1l_f3oaZUc2gxHckQ,"I liked wunderlist much more, I can't arrange the tasks in the list freely. It looks like there is something wrong because I can arrange some lists and couldn't for others, and the starred list which is switched to important is just a long list, I liked how it was divided before, it is really disappointing.",2,8,2.13.151,2020-03-17 01:35:54,,,newest,com.microsoft.todos +Marina N,https://lh3.googleusercontent.com/a-/AOh14GiBGLVgfj0StgR25TmDa8Gmb8MUjbkUizyh4UYtMw,"Just switched from Wunderlist and miss it already. Why the widget won't let me display the tasks due today or this week like Wunderlist did? Now there's only ""Planned"" which list every task I've ever scheduled :( The design is very plain and it doesn't show the dates in different colours to spot what's overdue and generally picture the information quickly.",2,8,2.13.151,2020-03-15 19:01:26,,,newest,com.microsoft.todos +Lonni Weigel,https://lh3.googleusercontent.com/-nSUiXAG199Q/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPZXBcqQHjjVR06SZtqDA7Y2i5JTA/photo.jpg,"This does not work the same as wunderlist. When I sort, I cannot manually move items to in effect do a sort alphabetically within priority. Also when I prioritize items, they don't automatically move to the top of the list. With wunderlist going away, I am going to have to search for a new app. So disappointed.",2,29,2.13.151,2020-03-15 15:39:01,,,newest,com.microsoft.todos +Tracey Mackay,https://lh3.googleusercontent.com/--E_42T-Ohog/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN4nCWPXdBgDkjInVp2esq_U7_hCQ/photo.jpg,"Moved from wunderlist and am disappointed by the lack of functionally. For example, there is no option to show weekly tasks and to display tasks in the widget they need to be moved manually!",2,3,2.13.151,2020-03-14 21:02:11,,,newest,com.microsoft.todos +chris brader,https://lh3.googleusercontent.com/a-/AOh14Gj6Nzdw2fVnaO6moDx0FKKeebMR4GbDfth2PV0gtKs,Wunderlist was better. Now i have to push more buttons than before. Dont even know how to prioitize a task when i add it. Why not leave it the way it was and just brand it MS?,2,3,2.13.151,2020-03-14 20:24:17,,,newest,com.microsoft.todos +Gary Wu,https://lh3.googleusercontent.com/-XDze7iz5Oms/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNPPeetRQT2MN7iZGCK_-_oWdQuxw/photo.jpg,"As is typical for Microsoft, they took over a wonderful product in Wunderlist, screw it up, and jam it down the throat of their customers. The MS To Do List is harder to use than Wunderlist and lost some features that made it convenient to manage your tasks. I am convinced MS programmers must never use their own products.",2,32,2.13.151,2020-03-14 19:33:42,,,newest,com.microsoft.todos +WJ Winden,https://lh3.googleusercontent.com/-c9HvQSiWrMM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNshO0VWXI9CQSwBIihmd5wOhVD5w/photo.jpg,"Additionally, having to manually go thru and re-invite contacts for every task again is not customer friendly. Really disappointed.",2,3,2.13.151,2020-03-14 13:54:48,,,newest,com.microsoft.todos +Jamie Plett,https://lh3.googleusercontent.com/-h3veP6FpCCI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNhssA33ONFdsjLM55shUAjtvbVkw/photo.jpg,"I transitioned from Wonderlist. There are a couple of things I don't like. When the list is sorted any way then you can not drag the items in the list. This makes it very hard to organize long lists. Also, I would like to have the option of adding to the top of the list as well as the bottom. Otherwise the app is good for what I need it to do.",2,20,2.13.151,2020-03-14 03:02:02,,,newest,com.microsoft.todos +Anjana Chugh,https://lh3.googleusercontent.com/a-/AOh14Gi6jlxgcRLaUXE3Kqait5SpD_Ju6kXOZTkQFuH1wQ,No search option. Mixing up of completed and incolplete tasks in list. Mismanaged,2,2,2.13.151,2020-03-14 02:06:05,,,newest,com.microsoft.todos +Choy Saechao,https://lh3.googleusercontent.com/a-/AOh14GgpZT2boYkl3jw-_2P_ADpcCH5g0wrSofPXvjz5Ww,Please get rid of all the white space. I have to scroll to read my lists. Give us an option to zoom out or reskin this app to look like wunderlist. Thanks.,2,2,2.13.151,2020-03-13 20:38:07,,,newest,com.microsoft.todos +Frans Van der Walt,https://lh3.googleusercontent.com/a-/AOh14Gjatv34MFHUBWuBXkwMI2yzdL0eC3FhsttUB8S_,I much preferred Wunderlist!! Could easily copy items to new or existing folders. Was much more versatile!! Why do IT techies have to move 3 steps back each time something new is launched?!! Surely R&D of products they wish to replace should have shown functionality used?!!!!!,2,3,2.12.149,2020-03-13 20:00:07,,,newest,com.microsoft.todos +Afra Al Murar,https://lh3.googleusercontent.com/a-/AOh14GgVXfajmNKbw6ARMrOEwr5UXrIWyPMazc1oTA246w,I am facing problems importing my lists from Wunderlist,2,1,2.12.149,2020-03-13 10:12:29,,,newest,com.microsoft.todos +Vijay chandar R,https://lh3.googleusercontent.com/a-/AOh14Gil7c-zGB7TdChAKGnoE315CH6rreaWovP6bHjVgaA,Not worth of killing Wunderlist Some crucial features such as comments are missing in the app,2,1,2.12.149,2020-03-13 08:02:08,,,newest,com.microsoft.todos +Philip Wright,https://lh3.googleusercontent.com/a-/AOh14GivZwNIYM05AG_CgvznCHq75DAF_BxuWOWIahj6qg,There's no automatic list of everything that is due today or past due. Wunderlist was better.,2,1,2.12.149,2020-03-12 23:56:14,,,newest,com.microsoft.todos +Marcus Polach,https://lh3.googleusercontent.com/-FPkVSRxwt98/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP0mVMq_n9kWbrAANSawOnZjj_q1Q/photo.jpg,"so what ... you take away wunderlist, make us use this much more convoluted app and do not even have a choice of widgets????",2,3,2.13.151,2020-03-12 15:26:18,,,newest,com.microsoft.todos +Bruno Alexandre,https://lh3.googleusercontent.com/a-/AOh14GjeK-9ZOoWcjj3Mo3WBqpYORg8JfPZ7-iTkyZysBg,"This is far from what Wunderlist made us use it, you no longer have details section in a task where for example you could add a link to a picture or describe more the task in hand... It seems it tried to be more of a daily scheduler than what actually the amazing Wunderlist was!",2,5,2.12.149,2020-03-12 15:13:35,,,newest,com.microsoft.todos +John Sable,https://lh3.googleusercontent.com/a-/AOh14GjowKqF4jdo2svFPFO9v9zZfWFvdYzjnf2WCi1NJQ,Cumbersome and confusing,2,2,2.12.149,2020-03-12 14:38:51,,,newest,com.microsoft.todos +Dhanesh Kothari,https://lh3.googleusercontent.com/a-/AOh14GjIVZ-u9WWYAHVEUIj01gqN_CuHUR1IxcglvRH3,"Came over from wunderlist. Its good that you guys have synced my lists here. However, i have many shared to-do lists with comments. I don't see any comment feature in MSFT To Do. When can this feature be expected? Will increase rating, once this feature is introduced.",2,3,2.12.149,2020-03-12 11:37:05,,,newest,com.microsoft.todos +Justin Oblak,https://lh3.googleusercontent.com/-FiMwfX-Vat0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNBPDc_vS2szvUQcg4uqLb41Oygpg/photo.jpg,Bad color scheme,2,0,2.13.151,2020-03-12 10:02:24,,,newest,com.microsoft.todos +Andrew Ross,https://lh3.googleusercontent.com/a-/AOh14Ghu31tevWykTTcKYNqi27Pjw4m4SLJcEbrv0d8O4g,An option for Daily jobs to carry over is necessary. Having to re-add tasks is stupid.,2,1,2.12.149,2020-03-12 07:55:56,,,newest,com.microsoft.todos +Anna Butler,https://lh3.googleusercontent.com/a-/AOh14GgRg0Q06SVutk8C6YP_VOk6Yq8N0tcRj2TxHqTL7Q,"Synced well with Wunderlist to import lists, but despite having reminders activated, I get no notifications to remind me of upcoming tasks or events... which makes this pretty redundant as a Wunderlist replacement.",2,1,2.12.149,2020-03-11 22:05:51,,,newest,com.microsoft.todos +Stef Aann,https://lh3.googleusercontent.com/-nPbn4PpRYCU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOdyoeCQ0GS36dNSvIoBhR5bpYQvQ/photo.jpg,The biggest downside of the app is that you now need a Microsoft account. Google single sign on isn't possible,2,1,2.12.149,2020-03-11 09:27:26,,,newest,com.microsoft.todos +carlos gonzalez,https://lh3.googleusercontent.com/a-/AOh14GhkS1RLyva2wKwTEJIdR-6Bhvg1mmM9LW06HV2eaA,Still missing a bunch of essential features like send reminder to all users in a list and recurring reminders for certain time of the day. Too bad 👎 I really enjoyed the UI but those features are a must for me.,2,1,2.12.149,2020-03-11 02:07:21,,,newest,com.microsoft.todos +Yogesh Singh,https://lh3.googleusercontent.com/a-/AOh14Gjp0F07b4__jTNW8o-BNJk13DnCAsESlRPotKHQiA,Why can't task assigned for today are automatically in my day,2,0,2.12.149,2020-03-09 01:27:54,,,newest,com.microsoft.todos +Roman,https://lh3.googleusercontent.com/-deC5-goifbQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPQZyXffpJNKXLl6LAzMtUT_u1XQw/photo.jpg,"No ability to add a shortcut/widget to quickly add a task, meaning it will take several swipes/clicks to add a new task on my android phone. Wunderlist didn't have this constant friction. It's a shame that they're shutting down wunderlist without having all of the same functionality.",2,8,2.12.149,2020-03-08 21:35:25,,,newest,com.microsoft.todos +Paul Andre Norris,https://lh3.googleusercontent.com/a-/AOh14GgoGXwARc0fkbjbDF1vB1zWPXnj0cpJgtCXnduu_g,"The sorting option is not good. There's no option to manually arrange individual tasks. When you show completed tasks, it all over the place. Completed tasks should be grouped together and displayed at the bottom of the list after the incomplete tasks. It becomes very messy when completed and incomplete tasks are mixed together. Why tweak the app to make it worse than what it was before? Tweaking should making it better not worse.",2,42,2.12.149,2020-03-08 06:57:49,,,newest,com.microsoft.todos +Win Chun,https://lh3.googleusercontent.com/-cBUYi9_tVVI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOHh_7Isk9EM2a1bpaDrP2WmIyWfg/photo.jpg,Wish they kept the wunderlist app instead it was perfect 😭!!! Some issues I had with this app compared to Wunderlist to fix: -have new items added to the top instead of adding to the bottom (or have option to change) -more quick choice options for the reminder times -quick add bar (to just type in a search bar box instead of clicking the + button) -have settings apply to all lists so don't have to individually change each list -option to add to list on main screen without clicking in list,2,16,2.12.149,2020-03-08 04:12:54,,,newest,com.microsoft.todos +Itzchak Kvoras,https://lh3.googleusercontent.com/-1pf4g9ZJR00/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNRPAYLH0Pu7AvMNpcwWeVxBe1-8w/photo.jpg,"Checked is again as they are killing Wunderlist: Still lacking so many basic features, really lame. Why can't I manualy change the order of the tasks like in Wunderlist? where are the completed tasks? where are the deleted tasks? why are new items always added to the bottom?",2,1,2.12.149,2020-03-06 22:03:37,,,newest,com.microsoft.todos +James Barrett,https://lh3.googleusercontent.com/a-/AOh14GipDPyThaF1g8S5VrvrxdN9aoTp4QOS5Jkk_N33xw,"Coming from Wunderlist, Todo it's annoying to use. Adding items to a list used to be quick and simple. MS over complicated it.",2,2,2.12.149,2020-03-06 14:33:46,,,newest,com.microsoft.todos +Perseus F,https://lh3.googleusercontent.com/-GNKOcyOD5Qg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNd7GRuab3MdJc5DLx4q2tkcw3rvA/photo.jpg,"After 6 years of using Wunderlist the day has come to look for a new to-do app. Microsoft To-Do is missing the most important feature of WL, i. e. placing newly addly added and favourite items to the top of the to-do list; practically, the app is useless if you have long lists with floating items. I have sent them this feedback 6 months ago and they still did not change anything about this.",2,61,2.12.149,2020-03-06 07:24:22,,,newest,com.microsoft.todos +Sara Hommel,https://lh3.googleusercontent.com/-6pT6R9lG_9Q/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMVRbiNV0fp3fsXA4KSyBW0W5mYOA/photo.jpg,Have been trying for over an hour to share lists to be able to assign tasks and lots of error messages show up and I still haven't been able to link checklists.,2,0,,2020-03-05 13:57:37,,,newest,com.microsoft.todos +Jeremiah Brougher,https://lh3.googleusercontent.com/-fjbuiYbZ4hk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP63DuXKk2OUPDH4T1BxmMX6YMoSw/photo.jpg,A bad version of Wunderlist.,2,0,2.12.149,2020-03-04 22:56:15,,,newest,com.microsoft.todos +Heidi Williams,https://lh3.googleusercontent.com/-JW8lAX-0LIE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM1Z2PbHlxoJ-M_mm9HG9IlAEhiPg/photo.jpg,"Unable to delete a list. There are no ""3 dots"" on the top right hand side of my screen. I dont have all the features it says it has. I loved my Wunderlist and tranferred everything to Microsoft To Do....not sure I will keep it. Looking for other options.",2,5,2.12.149,2020-03-04 19:40:00,,,newest,com.microsoft.todos +Sophie King,https://lh3.googleusercontent.com/-vTfPGQW-A40/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMewrSmswbBaTDQVZcuX2Bu_cy1Zw/photo.jpg,Poor substitute for Wunderlist which is going in May. All imported well but nowhere near as many settings options and the list font size is far too big so u can only see a small portion of your list on the screen. Looking for anotjer alternative,2,5,2.12.149,2020-03-04 19:01:48,,,newest,com.microsoft.todos +Todd C,https://lh3.googleusercontent.com/a-/AOh14GhZcACoPu3iwMNr2A_WYRRm2GZ1kTTxam9vPsExqQ,why do you have to give them your info when all I'm wanting is a grocery list and things to do. ain't none of their business.,2,0,,2020-03-04 16:49:15,,,newest,com.microsoft.todos +Christopher Mercer,https://lh3.googleusercontent.com/-EG3JUoog50A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMV3BPMfe9Zd64W-gnpaoatyUz5Uw/photo.jpg,"Being able to slide tasks up and down on the fly is a critical feature which needs to be brought over from Wunderlist. I plan and order my work day tasks with it and need to be able to adjust the order quickly and frequently. My wife and I also were using Wunderlist as a grocery list sharing tool. Same complaint as we like to order the list to match our path through the grocery store. I see a few people miss this option in the reviews - Without it, the app doesn't work for me.",2,71,2.12.149,2020-03-04 01:57:07,,,newest,com.microsoft.todos +Chingiz Issabayev,https://lh3.googleusercontent.com/a-/AOh14GitGi0TEKteNjE1Wyj-qUX7j7ZQgNAXpko71siQ,"Great app, but I constantly have sync issue, and that's why I started to use TODOIST!",2,0,2.12.149,2020-03-03 11:50:31,,,newest,com.microsoft.todos +Dimosthenis Arkoudeas,https://lh3.googleusercontent.com/a-/AOh14GhK_F6KQngFvWclRK9EZiV3fZcob5q1Y0T_JsM9,Multiple account support without unified view... Really disappointing .,2,0,2.11.148,2020-03-02 19:44:16,,,newest,com.microsoft.todos +Tux from hut,https://lh3.googleusercontent.com/a-/AOh14GiUOvH8T3JvSNrfwdY_YY2QRmxWoeS1Ye29ZvQY,"I used to love this app because of its theme, but the new skins totally kill the app",2,0,2.12.149,2020-03-01 12:35:16,,,newest,com.microsoft.todos +Christofer Espinoza,https://lh3.googleusercontent.com/a-/AOh14GgIPcy7e72Ol7G_WIOg4fnpOQCj3faVdV6z3v_M0g,"It's been a couple of weeks and still have not been able to share lists. Keep getting an error that says ""it's not you, it's us"". Already wrote to customer support and have not heard from them...",2,1,2.12.149,2020-03-01 12:23:23,,,newest,com.microsoft.todos +Hemkunt RoadLines,https://lh3.googleusercontent.com/a-/AOh14Gii9ClLRfk7U87i9UVmfZ9yFxRFkUW-b7Ept86t,Please add option to add voice notes.,2,0,2.12.149,2020-02-29 08:41:16,,,newest,com.microsoft.todos +Michael Bosch,https://lh3.googleusercontent.com/-w38ve4jy1MI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOgGQ2GWy9OmH6bUx7nn-XkaeJnIA/photo.jpg,No way to repeat a task...unfriendly interface.,2,0,,2020-02-28 06:55:31,,,newest,com.microsoft.todos +jomara68,https://lh3.googleusercontent.com/a-/AOh14GiBBR31Ssg_lfRDgMN5GcIp375_ocKdiz5RC1pcQQ,Why can't I link to the Outlook app,2,0,2.11.148,2020-02-26 13:17:10,,,newest,com.microsoft.todos +Kunal Shah,https://lh3.googleusercontent.com/a-/AOh14Ghggh5w7EDYNDvyNIk9LFZhkpaAy2M7qMKkAb1bfw,Have difficulty syncing to google calendar,2,0,2.11.148,2020-02-25 11:44:30,,,newest,com.microsoft.todos +amit levin,https://lh3.googleusercontent.com/a-/AOh14GgbOhJ4P-ygdu_-PXoZJT0wMjIfAjXNCPeqZ9XERA,"The widget is buggy, every few days it stops showing your lists. only removing it and setting a new instance solves the problem.",2,0,2.11.148,2020-02-24 09:34:07,,,newest,com.microsoft.todos +D Rageway,https://lh3.googleusercontent.com/a-/AOh14GhZgyHlEPPaxlz-rieCsgpYOC3dEoKsm-v7ROgf,"Please stop with the updates. Especially on the desktop version. You're just making it worse. The most recent update sucks! Stop! At least make it so you can add all of your previous ""my day"" tasks from yesterday with ONE tap. I'm tired of having to add each one individually.",2,5,2.11.148,2020-02-23 22:57:08,,,newest,com.microsoft.todos +Sonat Tokuç,https://lh3.googleusercontent.com/a-/AOh14Gg9cktCj0ykH-YDfyrUPB_TZRmFRVh3SYo16XLq1g,"WIDGET DOES NOT SYNC/REFRESH PROPERLY. Went back to Wunderlist until at least the widget refresh/sync issue is solved. (using android phone, tablet and windows 10). The following items, which are present in Wunderlist, should definitely be integrated: 1) The option to choose that starred items be moved to top. 2) The option to choose that new tasks be added to top. 3) Folder view in the widget 4) Icons under a task on the widget showing that a task has subtasks and/or notes in it.",2,8,2.11.148,2020-02-23 14:29:14,,,newest,com.microsoft.todos +Eric Smith,https://lh3.googleusercontent.com/a-/AOh14GgePKOTXCoKBr63CJaXwrKg154TevsGp2gosRUaoA,"Too many functionalities were removed, why ?",2,0,2.11.148,2020-02-23 11:48:30,,,newest,com.microsoft.todos +Kate G,https://lh3.googleusercontent.com/-um_RzeguKMo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP-ZPei_3K4KFiIACmJ-713zBE1aw/photo.jpg,Boxes are too wide on the widget. It was better on wunderlust as I could see a lot more at once.,2,2,2.11.148,2020-02-23 08:04:56,,,newest,com.microsoft.todos +Ricardo Briceño,https://lh3.googleusercontent.com/a-/AOh14GjT5gekkKguUaLXpcJoQAk1OXkm98cw8trj4owe,"Disappointing and unreliable. It's sad to see this app struggles to be as great as its predecessor: Wunderlist. If you set a daily reminder and one day forget to mark it as complete, the app will not remind you again about it. If the due date and reminder date are different you will not be reminded about the task. I don't care if I'm receiving a notification about a thing I had to do 3 weeks ago I just wanna be reminded. No one is this strict with dates. I hope this helps improve the app.",3,31,2.14.152,2020-04-01 02:53:17,,,most_relevant,com.microsoft.todos +jumpstart script,https://lh3.googleusercontent.com/-CFQ1v9_4AN0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOziChM9_VNhkSXuVLMR8yAmtqQ1A/photo.jpg,"Please at least put an option to use the previous theme. I like the previous one with flat design (minimalist). If you could also put a feature to have other place a comment on our list, that would be great. Kindly prioritize the option to use the minimalist/flat design theme... It is less distracting which makes me more productive. I recommended this to my friends because of its design... good thing my other device is not set to auto update.. i was able to retain the previous version...",3,3,2.13.151,2020-03-24 12:00:19,,,most_relevant,com.microsoft.todos +Luksa Barovic,https://lh3.googleusercontent.com/a-/AOh14GjsGRx7k63qF9FJErwc8qqZG3zF-T4Eu7UxVAldPVc,"Migrating from Wunderlist couldn't have been more painful. First I had to open Microsoft account just for this app. Then, importing from Wunderlist messed up owners, all lists that were shared to me ended up as mine, I had to re share them to the original owner again. Anyone invited to the list must have MS accounts, I had people leaving because of this. And I don't get any notifications when people add new tasks. It may look the same as Wunderlist, but the app is starting to annoy me...",3,1,2.14.152,2020-04-01 20:17:25,,,most_relevant,com.microsoft.todos +Neil Curtis,https://lh3.googleusercontent.com/a-/AOh14GiQrIxt9q5DGN6q_OkxgEh0PK_k7OdURzIidx6YMoA,"Before this, l used Wunderlist solely for my do listn I used Workflowy for ongoing notes and events throughout the years. I ike this app, but if you don't get everything done yesterday's then My Day iwhen you wake up the next day, My Day is blank. Imagine making to do list on a posted note and the next morning it was blank? That's not saving me time. Don't know why they didn't put that in when developing the app.",3,1,2.14.152,2020-03-30 12:09:39,,,most_relevant,com.microsoft.todos +Ashley Artman,https://lh3.googleusercontent.com/a-/AOh14Ghr9irrt4MsvoJ5IhF8WaZLDGoC_6vEy1MKK8Au,"I love how the app is almost exactly like the last one. The only irritating thing is that the ""show completed..."" button is no longer at the bottom of the list. This button was used so much due to my fingers accidentally completing a task. I would just hit the 'show completed' button and my most recent item would be at the top ready to re-add to my list. Now we need to go through a few buttons to find it and it doesn't bring up the most recently deleted item. Very irritating!",3,80,2.13.151,2020-03-22 06:29:56,,,most_relevant,com.microsoft.todos +Franco Principe,https://lh3.googleusercontent.com/a-/AOh14GhDmtkUYco0OKNZMwEGC-xFdFOrFQQCgWKNG3iINA,"Update 02.04.20. I was using this for a while but I returned to my old task manager of 15 years (updated versions of course). I like this out because it syncs between android and my macbook pro. works a charm. only issue - doesn't handle recurring tasks such as ""recurs on the second tuesday of the month. ..."" etc. simple recurring tasks are fine (every second monday). overall very good. easy to use. Once recurring tasks are implemented completely this will be superior!",3,5,2.14.152,2020-04-02 07:58:56,,,most_relevant,com.microsoft.todos +Thomas Keeley,https://lh3.googleusercontent.com/-nxOJHakbdbQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPt-L7y53KNIzRdOY-N_G3PNTfKXA/photo.jpg,"Mostly really good, great for sharing tasks between people/phones/desktops, but the widgets on Android keep clearing themselves and have to be re-added to work again, and repeating tasks constantly change the day they alert you on, reminding me the day after or before I set them to. I keep having to edit them back again. Really frustrating. What's the point in a daily reminder if it keeps changing to try and alert you the day before it existed? Edit: and again, anytime there's a clock change!!!",3,44,2.14.152,2020-03-31 17:40:22,,,most_relevant,com.microsoft.todos +Jeffry C,https://lh3.googleusercontent.com/a-/AOh14GjflDcajDEnpbwtUWWeFBv8FWrPbT7qRAZOYgs,"Mostly works well, but I am rather disappointed with the syncing issues my wife and I are experiencing. I'm unsure as to what Microsoft has changed from the ""Wunderlist"" app that I've been forced to switch from, but this app does not work as quickly and nicely as wunderlist did, which I had been using for 2 to 3 years constantly because it worked so well. Please revise this app so that connectivity problems from servers can be solved. I am unable to sync some/all of my shared lists.",3,13,2.13.151,2020-03-20 11:55:17,,,most_relevant,com.microsoft.todos +Marc Albrecht,https://lh3.googleusercontent.com/a-/AOh14GgNYDHl3h2qmGJWitmNjSfXNbvbbBpcJLzBa7k6,"ok, but feels like untested alpha state software. tricky to navigate quickly when called from a widget, direct call entry for phone calls seems to be missing (though that's the first thing one needs in a todo list), sorting tasks is either impossible or a well hidden feature, sharing and assigning is very rudimentary.",3,0,2.14.152,2020-04-01 21:52:21,,,most_relevant,com.microsoft.todos +Wendy H Werb,https://lh3.googleusercontent.com/a-/AOh14GiZh_kvk2v0PZ9zDFhCrnAocqh8Ngc1pGg5K5vuBg,"Not happy with the switch from Wunderlist. Why did you remove the option to assign a list to a group at the time you are creating a new list? It is cumbersome and time consuming to have to drag the list to a new group, especially when you have numerous groups and lists as I do and I move them often. What a pain!",3,70,2.13.150,2020-03-09 16:25:08,,,most_relevant,com.microsoft.todos +Hubert Vallée,https://lh3.googleusercontent.com/a-/AOh14Gj6SlGWRnu45wbDxteafUXC0K7DoB1LhtaXNxhH,"Coming from Wunderlist, I am disappointed. So much wasted space in the user interface and no way to make elements smaller. The overall look is also less slick. It really is a ""to do"" app while I'm looking for a listing app. Will have to find an alternative.",3,1,2.14.152,2020-03-29 16:21:45,,,most_relevant,com.microsoft.todos +Joel Hardeman,https://lh3.googleusercontent.com/a-/AOh14Gj-FVkzLqb8WsARdnHeI2YxIrBP0Qd2qHUg4lX7lw,"I miss the Today, Week & All shortcuts that Wunderlist had at the top. The Planned replacement is not as easy to view or follow my week ahead at a glance. The automated transfer seems to have worked well so far. UPDATE: Sharing lists previously shared with my wife now creates a double so that needs to be fixed ASAP. Wunderlist would randomly delete scheduled reminders in bulk, hopefully To Do has put a stop to that.",3,3,2.13.151,2020-03-20 22:57:09,,,most_relevant,com.microsoft.todos +Sean Sweeney,https://lh3.googleusercontent.com/a-/AOh14GhAI16JSmRRwdeD6HcOj5WJK09pXaO3usC7_Gqea1I,"Still has bugs that Wunderlist did not. For instance, the widget that I usually keep on my launcher with lists of things to do oftentimes goes blank and stops working. I'm totally fine with replacing a product with a more modern offering, but it needs to work properly.",3,3,2.13.151,2020-03-19 19:50:23,,,most_relevant,com.microsoft.todos +Matt Czimer,https://lh3.googleusercontent.com/-hSHgCoIRH4o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOQhCNUPDSJ5B-fevfFh0Uosg5H_w/photo.jpg,"App did not properly import all data from Wunderlist as Microsoft claimed it would. All of my 'created dates' for items in my list got wiped amd set to the current month day and year of when I did the import a couple days ago. This would seem to be a simple table record to grab from the Wunderlist database, to transfer over to To Do. I would expect a cleaner and better QA'd experience from a company like Microsoft. This is as of build #151.",3,3,2.13.151,2020-03-21 22:51:14,,,most_relevant,com.microsoft.todos +Akshay Kuntewar,https://lh3.googleusercontent.com/-EYWdXzHRk3Y/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMKChzyq5boXz25h1ULVeyajzkUgQ/photo.jpg,"Its good. The only thing that is missing is the time inclusion. Like at what time a particular task is planned. If that can be added, it would be perfect. It would be like a personal calendar and activity planner together. I hope that can be added.",3,0,2.14.152,2020-04-01 18:52:45,,,most_relevant,com.microsoft.todos +Trip Philippines,https://lh3.googleusercontent.com/a-/AOh14Gi3Bi01zNza7W4IkY9W51IKs_wfXTSs7Kdk5Kd0rg,Good enough for a to-do list app. A few additional features would make it even better though: option to re-arrange list; rename/edit an existing item; add a note or comment on an item; sync interval to save battery life,3,0,2.14.152,2020-03-28 16:54:53,,,most_relevant,com.microsoft.todos +Debbie B,https://lh3.googleusercontent.com/a-/AOh14Gi7eEVi4eljv3_hd_XrolcGIdDzxtmZ32d0PiFg,It's ok. When we imported our list from Wunderlist the list was duplicated. My husband and I share a list for shopping. When we connected through this new app every item on the list was duplicated. Frustrating to clean up.,3,1,2.13.151,2020-03-20 00:50:02,,,most_relevant,com.microsoft.todos +Jamie Wightwick,https://lh3.googleusercontent.com/a-/AOh14GhWzc1NqhcmCMcBHj7Fwju6HBVVQiL9nuX0O5nqdg,"Still frustratingly basic compared to Todoist. I'd love to move over and consolidate within the Microsoft ecosystem, but there's still so many quality of life areas that are lacking in To Do. Can I suggest starting with natural language support for setting up tasks though? It makes it so much quicker to use.",3,3,2.13.151,2020-03-13 14:41:48,,,most_relevant,com.microsoft.todos +Bernice Wong,https://lh3.googleusercontent.com/-6bScoTm90B0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO8MUHxkkMWWUtElZufx7Vn2IFmtA/photo.jpg,I love Wunderlist. One huge feature that To Do is missing is I can't manually reorder individual tasks in the list. I used to be able to move it up and down according to the order I want it done.,3,0,2.13.151,2020-03-18 23:11:58,,,most_relevant,com.microsoft.todos +NJ E,https://lh3.googleusercontent.com/a-/AOh14GiYr8SJw2aM0aqJ3Y2UvXrhnMi7xmOjLsv8PvtQNQ,"++ BUG: confirm to delete doesn't appear after swipe to delete action, but does appear during select item/menu delete. Shouldn't it be the other way around? (easier to accidentally swipe) Or for both? ++ pls add animation to indicate syncing progress so we know when we can force quit ++ pls add option to add tasks to top of list ++ sorting seems random when choosing to show completed tasks; shouldn't all completed tasks be stacked under non completed? Or is it chrono but we can't see it?",3,4,2.14.152,2020-03-25 12:08:29,,,most_relevant,com.microsoft.todos +Vinh Nguyen,https://lh3.googleusercontent.com/a-/AOh14Gh6woYZrhpyWvLGL4qowZqHxX3CQBggf8rOM9zTQg,It's good. But coming from wunderljst the spacing in this app between task is too big. When having many task. The list get unnecessary long and cluttered. Please adjust or make it adjustable. Will rate 5 stars if adjusted.,3,0,2.14.152,2020-03-28 22:28:02,,,most_relevant,com.microsoft.todos +Joe Brangers,https://lh3.googleusercontent.com/a-/AOh14GjIbRp8md9_dSj3NkU7VE5DgfvoOebUo_uATEgC,"Continue to get Sync error on this app only. Can use web and see tasks. Cannot figure out how to fix. I've uninstalled this app sever times, logged in, logged out, stopped app, cleared cache, etc. Nothing corrects it.",3,0,2.13.151,2020-03-22 16:17:58,,,most_relevant,com.microsoft.todos +Murali N,https://lh3.googleusercontent.com/a-/AOh14GigbqZSvQ-mUSKm2LU_jkAXPnt2XY4Kw4SGq9bpNQ,"I am setting daily targets , it means when i open the app i should able to see it as a list ,weekly target /monthly targets/yearly targets are to be alrady suppose to be designed , my work is assingining task i suppose wishing to add for daily or weekly or monthly or yearly targets",3,0,2.13.151,2020-03-17 06:18:12,,,most_relevant,com.microsoft.todos +A M,https://lh3.googleusercontent.com/-dA01DTWsA0Q/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOmAsBsZpXv6ZxwGe90UvBk4DaruA/photo.jpg,Not happy that when a new task is entered it goes to the bottom of the list instead of automatically to the top like it did in Wunderlist. It's crazy that you have to drag every entry to the top of your list.,3,2,2.13.151,2020-03-15 22:38:17,,,most_relevant,com.microsoft.todos +Zac Stares,https://lh3.googleusercontent.com/-fRi8-vCakHw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMTL_hx-3nywh4x-nKvELsJ-zaRRQ/photo.jpg,"On Wunderlist, your starred/prioritsed list would break down into the original lists they came from - now they all melt together. On the starred/prioritised list you could also reshuffle jobs by holding down - now you can't.",3,0,2.13.151,2020-03-23 14:00:19,,,most_relevant,com.microsoft.todos +Naomi Hardeman,https://lh3.googleusercontent.com/-LpLf2QJRRxQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOtpPw8WmQDIWheM9w08HVI0-c8nA/photo.jpg,There is no ability to comment like in Wunderlist. Had to individually share all my synced lists with my husband and then he had to accept and delete all the doubles. Should have just been able to share links with another user.,3,0,2.13.151,2020-03-22 10:23:56,,,most_relevant,com.microsoft.todos +Tiago Taveira,https://lh3.googleusercontent.com/a-/AOh14GhdwNyiqrqRdHpNm4cf9jBqgQe6IiQAHeQKJkC2Zw,Long time Wunderlist user here. What I feel that can definitely be improved is the snappiness with which each task list opens - right now there's always a small loading delay when clicking on a given list.,3,0,2.14.152,2020-03-28 11:48:58,,,most_relevant,com.microsoft.todos +Amanda Pridmore,https://lh3.googleusercontent.com/a-/AOh14GjkWSTrZu7fmiNsPfPWKsgEZJUc5NnzKhU2Lp_W,"Forced to migrate. I'm annoyed that you can't drag and arrange tasks manually if ""sort by"" is on. I need to be able to arrange tomorrow's tasks in the order I want to do them, not whatever order the app decides.",3,0,2.13.151,2020-03-20 03:03:09,,,most_relevant,com.microsoft.todos +Jino Mathew,https://lh3.googleusercontent.com/a-/AOh14GhVTo2wmi5-tlWn6yWeGo5RGP2pcsP1TCK-mmYcjQ,Please add a transparent widet. Swipe to finish tasks would also be nice. It would be really great if we could add comments to individual tasks.,3,0,2.14.152,2020-03-30 03:59:51,,,most_relevant,com.microsoft.todos +Rakan Zaid M,https://lh3.googleusercontent.com/a-/AOh14Gg2AVixmAbCAP4GbzPlnSrk35Go5GmOhKm-h3gt8A,"this app is great, but please add the copy list feature on android too, and also ""uncheck all"" feature so i can reuse a routine list without uncheking all one by one",3,0,2.14.152,2020-03-31 17:53:39,,,most_relevant,com.microsoft.todos +Peter Mead,https://lh3.googleusercontent.com/-pQ4IMjCVjtE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOx99D_FQp5X5EiVRQZVZZmRJ_5pw/photo.jpg,"Appears to work the same as Wunderlist, and imports your lists, but if several people share a list, you can't share it anymore.",3,0,2.13.151,2020-03-20 09:46:16,,,most_relevant,com.microsoft.todos +ankit porwal,https://lh3.googleusercontent.com/a-/AOh14GgEeo1YOwC04LjONxvPi-IR2qvvPBpcit_9Q0U-Og,Not able to see flagged emails which are overdue or which are due after tomorrow . It would be great if we are able to see all the flagged emails at one place,3,0,2.14.152,2020-04-02 13:28:41,,,most_relevant,com.microsoft.todos +Ania Gozdzik,https://lh3.googleusercontent.com/a-/AOh14Gh0rZyq_CMQFEOjJ8rExdXHraXyvgodweO8uc33,The feature that I liked in Wunderlist is that you could move items around on your list manually. This is missing from this app.,3,0,2.13.151,2020-03-27 01:27:20,,,most_relevant,com.microsoft.todos +Aquib Qureshi,https://lh3.googleusercontent.com/a-/AOh14GhGXkxjwnULD_BAfn3r2cXtuqYbR_6O0PHqFnP8,"Awesome App, if you could add undo feature : if we make any changes to the todo unexpectedly and press back then it saves it and we cannot find what was the original memo.",3,3,2.13.151,2020-03-23 13:07:47,,,most_relevant,com.microsoft.todos +Lushia Kyobi,https://lh3.googleusercontent.com/a-/AOh14GhCHN89MLe5BpHADosdw9irin7R3uWOFUKrb-p6d2Y,"It's just okay. I much preferred Wunderlist. I'd give a 5 star rating if Microsoft To-Do added new items to the top of the list, not the bottom, and allow you to move any item to the top by pressing the ""star"" on that item, similar to Wunderlist. Needless to say, I'm gonna be using this app a whole lot less than I had used Wunderlist, until this is fixed. It's a huge inconvenience for me to have to keep dragging each new item to the top of my lists, which tend to be VERY long.",3,36,2.8.145,2020-01-15 08:58:17,,,most_relevant,com.microsoft.todos +Phil Ormsby,https://lh3.googleusercontent.com/a-/AOh14GgDGl7YFShZgdEefcPXxdKFXyLwR1jHxQnPpTBtPH8,"How about letting us pick from a custom color palette for each list. The supplied ones are insipid and limited. Also, sharing. My wife and I keep getting this message when trying to share lists (not all of them - just some, go figure): Unavailable List - It looks like this list isn't available. Try Contacting the person who invited you. Err, okay, then what? Bringing over shared lists from Wunderlist is a disaster. Utterly out of sync.",3,19,2.12.149,2020-03-13 01:49:08,,,most_relevant,com.microsoft.todos +Chase Casey,https://lh3.googleusercontent.com/a-/AOh14GhS5Crw5C0Noq9u10NyqgNnvSjV7jp16jY4BajQ,"For anyone who wants to manually order your list, just long press the task and drag/drop it. It's really easy. My 3 out of 5 is because the widget seems broken. I have a large 3 x 3 widget to see my Planned tasks. The list randomly disappears in the widget. Open the app and it's still there. Go to the widget it's still missing. Randomly it comes back. If this gets fixed, it'll be 5 of 5.",3,9,2.12.149,2020-03-11 23:10:49,,,most_relevant,com.microsoft.todos +Joe Johnson,https://lh3.googleusercontent.com/a-/AOh14Ghzg0soQb3h5Xkn5C9UE6Un1SjQ-qTuBs5RN0xLYQ,"I would really like to see the inbox feature in Wunderlist brought over. There is currently no efficient way to quickly add tasks so you can sort/organize them later. On the main page, there is only an add list button, and I don't want to add everything to My Day. This gets cluttered and messy. It would also be nice if tasks that you have assigned for a certain day are automatically added to My Day, instead of having to go through and look for tasks that are due and add them to My Day manually.",3,156,2.11.148,2020-02-14 14:38:40,,,most_relevant,com.microsoft.todos +Sergio Arone,https://lh3.googleusercontent.com/-5j2BNj_HsPE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMoZSYNs5DQ9wLiUNCqctcD2bwo-g/photo.jpg,"Easy to use, intuitive, has issues to share the kist woth somebidy if one of the use is using a school or work account. Non collaborative.",3,1,2.14.152,2020-03-29 17:26:24,,,most_relevant,com.microsoft.todos +Debra Gilchrist,https://lh3.googleusercontent.com/-jvcyXYvGOKo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNAQbdfeVTwknLP1iYjYyVCSoZ92g/photo.jpg,"Ok, works like Wunderlist, which was wonder-ful, except it doesn't integrate with Google calendar. WTH?",3,0,2.14.152,2020-04-03 05:22:38,,,most_relevant,com.microsoft.todos +Ian Suave King,https://lh3.googleusercontent.com/a-/AOh14Ghypg1FHr37i8xNhpFMN4I03syzwmZ9ZRi5Lc6pcyQ,Would have given more stars if the add folder option was not removed from the original Wunderlist To Do List. I also used to be able to take photos offline and they will be automatically uploaded when I'm online. Now I must be online to even use my camera. I also do not like the idea that when you add a new note or something it stays at the bottom. These notes should automatically move to the top like how it did in Wunderlist. Otherwise the App is helpful for most of what I do.,3,23,2.10.147,2020-02-08 11:48:22,,,most_relevant,com.microsoft.todos +Rachelle P,https://lh3.googleusercontent.com/a-/AOh14GgihwFa5l_eyrDfDYnIoLTEYyPTCHr_bHxGF53r8A,I prefer Wunderlist since you can move around the tasks but app doesn't allow that flexibility; only broad sorting features.,3,0,2.13.151,2020-03-19 14:34:35,,,most_relevant,com.microsoft.todos +asdf_8,https://lh3.googleusercontent.com/a-/AOh14GjKV9QFDyg1MQf_dtyWVXdJVUBTN7MTgzcs_QcHCA,"Great app because i can keep all of my tasks synchronized to my laptop. Great for a student. But on mobile I can't create new tasks with a custom due date, because the keyboard doesn't go away in the calender to chose and I can't select any other dates than those in the first week, can't even reach the save/select button. Simple fixable error but it infuriates me every time it comes up.",3,3,2.11.148,2020-02-24 06:29:43,,,most_relevant,com.microsoft.todos +Kathy Levi,https://lh3.googleusercontent.com/a-/AOh14GirUETVzKODJbJ3GKrPElang3aLT0YWwNj3K81c7w,"Hi. We migrated our lists from wunderlist. We use shared list but now even we shared the lists that were previously shared, they do not sync, so other people don't see the completed items. If they assign a task, they can't see it completed. There are duplicate lists with the same name, one is shared, the other one is not. When creating new shared lists, the people who received the invitation are unable to join. they see an error ""list unavailable"" I tried support, but unavailable.",3,20,2.11.148,2020-02-22 17:35:49,,,most_relevant,com.microsoft.todos +Alec Campbell,https://lh3.googleusercontent.com/-tRKUj_TQOK4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN7o1rgUIOXc3YXUK6FTt5okRXvqA/photo.jpg,"Overall, the app does what it's supposed to do, but a few quality of life features would go a long way - for one, a list for ""later this week"" would be nice, as would the ability to nest lists more than one deep. However, the Achilles' heel of the system is definitely its sync. Syncing frequently fails or takes forever, and is often too slow between devices to make the most of the other capabilities of the app. Honestly if a better option came out I'd jump ship in a heartbeat.",3,3,2.11.148,2020-02-28 00:55:47,,,most_relevant,com.microsoft.todos +Mikaela Olaguera,https://lh3.googleusercontent.com/a-/AOh14GjUFx8RT0G3dgI2ZOiWBH6TGVUd1Yu_1vTuYN3MKA,"User-friendly. STEPS and GROUPS are smart features! Options for repeat reminder are comprehensive. Love the colors! Suggestions: 1. Retain THEME COLOR for TASK. So when opening Planned, easier to distunguish which tasks are under Acads, Orgs, etc. 2. A better font style for tasks. 3. PLANNED. Please classify Next Week to specific days. It will also be great if I will be able to move tasks from Today to Tuesday next week with a press, hold, and swipe. Automatically updates the due date.",3,7,2.8.145,2020-01-18 11:09:46,,,most_relevant,com.microsoft.todos +umar ahmad shah,https://lh3.googleusercontent.com/-ueSQpc3O8Qw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN7dTlHBURKj83a-2b49t5uDTaqKA/photo.jpg,"I have been using this app on my samsung for last 2 years, i have found good in it. It's a good app for reminders and to do list. Now i have changed to oppo A9, the only issue i am facing, the reminders notifications which are not completed, disappear from my screen in the night same day. It's annoying for me because I have to find those incomplete reminders in the app one by one and set them again. It would be fine, if unfinished tasks should not disappear. Stars would be 5😊. Thanks",3,4,2.8.145,2020-02-01 03:07:02,,,most_relevant,com.microsoft.todos +T Lasa,https://lh3.googleusercontent.com/a-/AOh14Girdr-7_BlR8ks5nQkTR5WYZhShLm8C39DC81fb,Its ok. I've started using it when I found out wunderlist was going to end and be absorbed by Microsoft. I've used wunderlist for years so its a change. What I miss most is being able to manually adjust how my items were arranged I don't care much for alphabetical ordering and going from oldest to newest or newest to oldest as the only other available options are a bit annoying. I liked being able to sort my items as needed on the daily but maybe that's just me. I love'd my lists and now meh.,3,57,2.12.149,2020-03-01 16:43:22,,,most_relevant,com.microsoft.todos +Saar Oz,https://lh3.googleusercontent.com/a-/AOh14GgVhnS_Xc8yVlkdUFI1XDNWwiYT6NQlCpbfl2jYAw,It replaced Wunderlist but actually the functionality was down graded . Sharing is done with a link instead of directly with a contact,3,0,2.14.152,2020-03-27 19:41:35,,,most_relevant,com.microsoft.todos +Tim Gooding,https://lh3.googleusercontent.com/a-/AOh14GjGSLfOERLWxIzK9DCHtGg3ONLIggaO_EqfrUIV2w,"Microsoft forces you to use your Microsoft account to use it, then never keeps you logged in long enough to get notifications. Sharing via text feels like I'm back on my Droid phone, and trying to get updates to shared lists suffers from the forced log outs as well. Also can't customize ""smart lists"" that are stuck at the top. My Day and Tasks? That's the same thing for me, either let me put it at the bottom or let me remove them. Microsoft took Wunderlist and ruined it.",3,24,2.8.145,2020-01-19 16:19:27,,,most_relevant,com.microsoft.todos +Tim Simmance,https://lh3.googleusercontent.com/-6ioQ38bgjEw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP8ZJuNXsuK3RPVFG3Yo_UviOAjvQ/photo.jpg,Not as good as Wunderlist. Simple things make it less usable than its predecessor such as: 1. sharing internet page to a list and the list defaults to My Day instead of one of your choice or the last one you opened - makes adding lots of pages in a row slow. 2. Add new task from the widget puts it at the bottom of the list not the top. 3. Marking a task with a star doesn't move it to the top of the list. Other than that it looks smart and imported my old Wunderlist lists on 2nd attempt.,3,14,2.11.148,2020-02-19 22:27:50,,,most_relevant,com.microsoft.todos +Barrington Holmes,https://lh3.googleusercontent.com/-HJunWA6G6zg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPFts0EVhQLMTdYVGo7MRXda8gdQg/photo.jpg,"So as HUGE fan of Wunderlist I was devastated to hear that it was going to cease. Along comes To Do. So most of it works similar to Wunderlist which is good, but there's little things I just don't like. For example, when tapping on a list. Boxes are too BIG and in your face, text too big also. Main screen is ok. When ticking something off on a list how about something to divide to do and done from that list instead of everything together. Give us more customisation options for sizes, colours etc",3,15,2.11.148,2020-02-15 10:34:05,,,most_relevant,com.microsoft.todos +Vladyslav Kochanov,https://lh3.googleusercontent.com/-rMMVpmtVYlE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOYV62HjHje1T7b6UL5zkZDYIqtYA/photo.jpg,"Dear support! It is a pity that Microsoft is closing Wunderlist, because that app is very simple to use and very fast. Unfortunately your to do app is slower, there is not done job with hashtags. Tasks need to be selected before moving. In Wunderlist everything is much simpler and faster. Guys please take good features from there. It is big pain to lose Wunderlist. At least upgrade your app normally. Thank you.",3,7,2.11.148,2020-02-20 23:23:54,,,most_relevant,com.microsoft.todos +Paul Johnson,https://lh3.googleusercontent.com/-avbXQddEO7s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNl8n-00cAqHFsaNzfS78AqUH4uZg/photo.jpg,"Whilst *most* of he functionality is there, I preferred the look and feel of Wunderlist much more.",3,1,2.13.151,2020-03-15 17:52:13,,,most_relevant,com.microsoft.todos +Steve Perkins,https://lh3.googleusercontent.com/-XShCqoLFN74/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPLb1hniWkN9JN2sfxjhFnShSWJVQ/photo.jpg,"Still missing some things from wunderlist. Notably email reminders which I really miss (not always convenient to get reminders on my phone or install the app everywhere), email item to inbox, better sorting (and as an added improvement please remember sorting by folder) and add new task at top of list. A bit early to be claiming you can now do everything you could as clearly you can't. But hopefully getting there.",3,21,2.11.148,2020-02-19 01:15:27,,,most_relevant,com.microsoft.todos +Robert Tortorelli,https://lh3.googleusercontent.com/a-/AOh14Gixqg7AEDwypLGI2BRcFrVzR1N9urNcDTA5LlKkJg,"Update: The accidental deletion problem described below is compounded by my now finding a ""confirm before deleting"" setting that simply does not work. The app is nice, but when starring or opening a list item it's easy to delete it. That's because deleting happens when you slide an item left, and that can happen by accident. Either add a working setting to optionally require confirmations of deletes, or provide a trash can from which you can recover deleted items.",3,3,2.8.145,2020-01-23 22:47:01,,,most_relevant,com.microsoft.todos +Zolkefli Mohamad,https://lh3.googleusercontent.com/a-/AOh14Gh4fu5d2B_QhqmtNUa7OYyy8fiOt-nYWfUnYjC5Aw,Please make checkbox rectangle. its wierd to have a circle checkbox. feel like a bullet point but its not,3,0,2.14.152,2020-04-04 03:25:31,,,most_relevant,com.microsoft.todos +mahdi kooshesh,https://lh3.googleusercontent.com/a-/AOh14GiIkwQKD6_Gn_DqER_cUMBwp1JNWdpgWsQPwZtt9g,"Near to ideal. But there is some shortage. For example there is no option in settings to add planned tasks to ""My Day"" automatically. Or people usually plan tonight for tomorrow. But when i at the end of the they add tasks to ""My Day"" they add to today not tomorrow. There is must be an optional boundary time in settings that determine the end of day and after that adding tasks to My Day"" go to tomorrow. Another thing, i cant add ""step""s to ""My Day"" its important.",3,4,2.10.147,2020-02-09 06:32:27,,,most_relevant,com.microsoft.todos +Linda Hamilton,https://lh3.googleusercontent.com/a-/AOh14GgnB46wOfE56x4faabqx2iEL0dccMiK2woQOQVJ,"I miss Wunderlist. Don't like this app because I can't copy a tasks or project by copying to another section. Must write out in manually which is time consuming, plus app doesn't let you cut and paste. Too cumbersome, aloe and tedious. Wunderlist was 10x what this app is. Plus I couldn't move everything over sho lo'day tons of notes. Looking at Evernote as a replacement.",3,8,2.11.148,2020-02-20 08:10:06,,,most_relevant,com.microsoft.todos +Anna Queen,https://lh3.googleusercontent.com/a-/AOh14Gi210UGWXcSYTiRFkfZlRgiZMqQrkf53mpM20In1Q,"Actually a great app, I'm migrating from Wunderlist, and I love the option to add tasks from other lists to ""My Day"" and focus on just those. The 3 stars are from glitches that I'm experiencing, that just make it troublesome for smooth working. First is the ""from today"" tray that keeps coming up endlessly, needing me to force quit the app, only to have it happen repeatedly. Secondly the widget that doesn't update either tasks I've added, or tasks I've marked as completed in the app.",3,23,2.12.149,2020-03-03 09:38:45,,,most_relevant,com.microsoft.todos +Andrew St.Hilaire,https://lh3.googleusercontent.com/a-/AOh14GjBJebdzTl5hsBpjt53fINoYv6Q0iBPfw6AnzkmR5U,"5 years after acquiring Wunderlist, Microsoft has still failed to replicate the great to do list manager. Critical features missing include natural language support for due dates (not available for Android or desktop), grouping of lists, and email notifications for reminders. The app has come a long way but man, what a shame it's taken 5 yrs and they still haven't even matched the old app and now they're sunsetting WL. That's 5 yrs which could have been used to enhance an already great app.",3,70,2.12.149,2020-03-04 07:39:20,,,most_relevant,com.microsoft.todos +Saidinarts,https://lh3.googleusercontent.com/a-/AOh14GiZE7a8BECKvLOdVSrE4T60nM0U5F_G5OOTeuw,"I like this application a lot. It is a very productive too. They only issue I have is with the notifications. They seem to quit working after a while. I don't know what necessarily makes them start working again... Either starting the app back up, restarting my phone, or both. Nothing else seems to have this issue.",3,45,2.12.149,2020-03-05 19:13:38,,,most_relevant,com.microsoft.todos +Corbin Tate,https://lh3.googleusercontent.com/a-/AOh14GgQN9ZyjMuRXmvuDe5xg7HrTLdNlrE3o5uQDs13dA,I like this app but I want to make it where I can make it a daily a routine. So the due date should also have time.,3,0,2.14.152,2020-03-31 01:23:52,,,most_relevant,com.microsoft.todos +A Del Turco,https://lh3.googleusercontent.com/-P15Ar0HTwF0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNwt6WcCT4vDAzslIrcvwLZ2wwghw/photo.jpg,"As a to do list it works ok. Devs need to allow manual sorting of priority though. I think this app has much greater potential if it were to be integrated with Outlook including meetings & appointments along with tasks becoming more of an overall assistant rather than a to do list. One major gripe though, the point type on the widget is miniscule and barely readable.",3,5,2.10.147,2020-01-30 13:05:57,,,most_relevant,com.microsoft.todos +Danie Jacobs,https://lh3.googleusercontent.com/-X2DOfGrCZOc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOzARwdAkAoWAklpaKA7hZzxSq4lA/photo.jpg,I really miss some stuff what is available in Wunderlist: 1) All the tasks in different lists that is available in the general TASK list (not only.planned tasks) 2) The option to show new task on top of list 3) Option to move important tasks to the top 4) Option to show task for the WEEK. Bring that ib and you will definitly get a 5,3,6,2.11.7756.Insiders,2020-02-04 08:50:54,,,most_relevant,com.microsoft.todos +SirDavo,https://lh3.googleusercontent.com/--r1PQ61UQTM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMoN_3nSIzdzMeTK4fLANB16MnhYw/photo.jpg,"Good app but I like Wunderlist better. Microsoft should have changed the name of Wunderlist to Microsoft To Do, added their integrations, updated the program inline with user requests and it would be Great! The My Day feature is odd since I plan my day the night before so My Day events are gone the day I actually need them. I don' use My Day any longer, instead I use Important and Planner as a replacement for My Day and I use Task as an inbox.",3,5,2.8.145,2020-01-21 14:30:04,,,most_relevant,com.microsoft.todos +Vinay Garg,https://lh3.googleusercontent.com/-V_JMmxTLjPI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMaTz5dJ9lAGvyodxmhub7Xmr1aDQ/photo.jpg,"The app is good. But it has a bug, i use poco f1, in desktop widget, it many times stop showing tasks, just shows a black empty list. When we remove it,and add it back from widget list. It works for some days,but problem keeps on occuring times and again. Please fix it.",3,1,2.10.147,2020-02-02 12:33:56,,,most_relevant,com.microsoft.todos +Cannibal Gurl,https://lh3.googleusercontent.com/a-/AOh14GiARv4LS70X7WZAOY8wJ4IPoSZ_VaRaOqTmCs-1,Leave it to Microsoft to screw up Wunderlist. I used it for my show notes while I was out and about. I could input my note and it would go to the top of the page. Now it goes through the bottom and I have to drag every single note to the top. It's annoying.,3,4,2.11.148,2020-02-24 05:16:57,,,most_relevant,com.microsoft.todos +Nur Syahirah,https://lh3.googleusercontent.com/-ra_2HBLjt3c/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMqmKyITTZ_hBzKVtCqkV-seI9vrw/photo.jpg,"I love wunderlist, too bad need to transfer to Microsoft to do. UI seems boring, & i tend to forget to use this app. Just make it similar to Wunderlist, the color wallpaper etc. Microsoft UI is too simple, dark is too dark, bright is too boring. Not customizable either. Please improve it",3,1,2.11.148,2020-02-27 05:27:23,,,most_relevant,com.microsoft.todos +Kiril Lukiyan,https://lh3.googleusercontent.com/a-/AOh14GjVxLR0NAmwlMEP9Lv8BuDmIT2L43uKNVG__Va_Ha0,"Gave it a chance. Still quite raw. No proper planning and no way to see all tasks at once. Please take some inspiration from Any.Do. Win10 store application however is epic, the best. Very bad that there is no tomorrow, and incomplete tasks from my day, disappear.",3,1,2.8.145,2020-01-28 07:33:23,,,most_relevant,com.microsoft.todos +Ramy Ahmed,https://lh3.googleusercontent.com/a-/AOh14GhNMct_wCUQiOiUCH4U6JgHlJCPaT8ao1pNO_4jPQ,"Repeating tasks seriously need to be automatically added to 'My Day' view on their due date, each time. It would also be useful if there's an additional option to automatically delete completed tasks, instead of just hiding them.",3,7,2.8.145,2020-01-19 10:57:58,,,most_relevant,com.microsoft.todos +Gary Kopco,https://lh3.googleusercontent.com/a-/AOh14GiLp7dtLU7owSSrd9oKxpFHxyRZmjZMDwXP2Gc,I prefer the Simplicity and organization of the old Wunderlist app over this new Microsoft app.,3,1,2.13.151,2020-03-17 16:47:17,,,most_relevant,com.microsoft.todos +Ali Ozmen Kasapoglu,https://lh3.googleusercontent.com/a-/AOh14Gh9l9rjZI6jiobVQCRs440bgN1ZQAWn3G6CrDiNGQ,"From an old Wunderkist fan: Design and migration is nice thank you. Please bring back weekly to do widget or at least make possible to select only ""earlier"" tasks to show up in widget. Additionally, in widget if due date is passed please show the task in red color. Thank you.",3,1,2.10.147,2020-02-11 19:05:02,,,most_relevant,com.microsoft.todos +Jay Libove,https://lh3.googleusercontent.com/a-/AOh14GgHpG2pD7V1TW0nTCmI0F1-tT2XA6tLjeMZW03i,"Good, could be much better. Missing the critical feature to sort first alphabetically and then display all incomplete tasks before all complete tasks. ALSO, should have an option for the ""tasks"" in the To Do lists to NOT appear as Tasks in Outlook/Exchange!",3,0,2.10.147,2020-02-15 21:08:24,,,most_relevant,com.microsoft.todos +Penny Akester,https://lh3.googleusercontent.com/a-/AOh14GgY6rHGcVY79iS4Ogn__SzOr3Dp4r8y_XwQ00p-mA,"Poor - completed tasks stay within the list dotted all around, today shows items due tomorrow before thise due today, tasks dragged from one list to another stay in original list - not very useful, I'm looking for an alternative",3,1,2.12.149,2020-03-10 09:22:26,,,most_relevant,com.microsoft.todos +Lisa Tomson,https://lh3.googleusercontent.com/-30nudCFSSkM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNJimX7AVTiPasZ6ih5KmiuJYxlFw/photo.jpg,Wunderlist was more user friendly. The application sticks on one screen and won't let you close out of a list. I have to close out application completely.,3,0,2.12.149,2020-03-28 00:57:28,,,most_relevant,com.microsoft.todos +Melinda J.,https://lh3.googleusercontent.com/-xLV_4fAKS1Y/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM9vGQJ2Ep--UCYQfPTynKBFdHHww/photo.jpg,"I'm giving it three stars right now til I know how to properly use all the features, but so far it's the best app I've used so far. You can organize lists for home and work and other things so it's not confusing and easy to set dates",3,0,2.8.145,2020-01-16 03:27:08,,,most_relevant,com.microsoft.todos +Tim K,https://lh3.googleusercontent.com/a-/AOh14Gje7vHzFSr-2mFoc1lqsVtzPyXNZ3y3khYDIGLNQQ,"Great app, but there are constant bugs in the widget (cannot add tasks from the widget, selecting the list to display in the widget is too sensitive and often redirects you back to the app instead of the list select drop down).",3,0,2.8.145,2020-01-26 18:40:27,,,most_relevant,com.microsoft.todos +Jon Bach,https://lh3.googleusercontent.com/-1kf2mOiRVKQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN4ync39BPF5SzetHkp5wNgUMEJwQ/photo.jpg,Not working on my chromebook. I cannot open any lists to view the contents. EDIT: Issue seems to be resolved in the latest update. Though still only giving 3 stars since this is taking over wunderlists but is still comparatively lacking in design and ease of use.,3,3,2.8.145,2020-01-15 02:05:04,,,most_relevant,com.microsoft.todos +Trick2 Tech,https://lh3.googleusercontent.com/a-/AOh14GhVX4EuWMqUDCphRavxj1xoeRngnbGb0CYp83Iq_Q,Everything thing is customizable but there is no timer i want timer for every sub task that i create every single task i do i want a time and daily stats for the same need to download some other providing the same for now when you include this mail me i will download again!!!,3,0,2.8.145,2020-01-29 13:30:55,,,most_relevant,com.microsoft.todos +Tha Filbz,https://lh3.googleusercontent.com/-TWH7ZfoCghw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMi7UGAJkVPzjY8-WaiegWM7RTJvA/photo.jpg,"Average at best. Needs undo option or on touch and that task is lost among all the other completed tasks. Needs links between tasks so dates can push out or come in. Very basic, most will find themselves wanting more from a tasking app.",3,2,2.12.149,2020-02-29 05:57:50,,,most_relevant,com.microsoft.todos +Loretta Love Huff,https://lh3.googleusercontent.com/a-/AOh14GiI1Om4hOUUwhkI3aYZKCbfSk8Zc3uig0qSZ078,I preferred Wunderlist. I wish MS kept more of its functionality.,3,0,2.14.152,2020-04-01 19:39:23,,,most_relevant,com.microsoft.todos +Geraldine Mace,https://lh3.googleusercontent.com/-T7oEWOg2dbA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNS_Qr2k2DU0Nj0SucPtIuRoh2ixA/photo.jpg,I would like a + button easy to access when I open the app in order to add a quick reminder. I don't get the concept of 'my day'. I find annoying that you can't set up the deadline and reminder I one go.,3,1,2.11.148,2020-02-21 23:38:31,,,most_relevant,com.microsoft.todos +Ken Bauer,https://lh3.googleusercontent.com/a-/AOh14GirJ_cl9Wa3Mok9DSDGmnVa4FKo3pjkGupGED7Ruw,"This used to be great app for tasks, but with recent update, i can no longer move each task around in widget according to importance or my day. Frustrating as i luv organizing each days tasks in order. Not in wiget anymore.",3,4,2.12.149,2020-03-11 17:28:50,,,most_relevant,com.microsoft.todos +Gail Murphy,https://lh3.googleusercontent.com/a-/AOh14Ggnn5KYBqiJHvSCWrHqfC_nEeKsoBSBo6o2GWbUIA,"You have not made it possible, as far as I can see, to assign certain tasks to separate people inside a list...... When I go shopping with my husband he has his assigned items and I have my assigned items. If you have made it possible to do this then please let me know how to access it. I am not as happy with this app as I was with Wunderlist and I'm sorry to hear that you're getting rid of the perfect app",3,1,2.12.149,2020-03-13 03:36:29,,,most_relevant,com.microsoft.todos +Squeaky B,https://lh3.googleusercontent.com/a-/AOh14GjgLmYUQFPTgAi-jw4UQyXamKwpZF0qO2TXXVsdFQ,I like it and to be honest for a free app it's Pretty good. My only gripe is that the home screen widget doesn't update. However it's good enough for me to leave tick tick !,3,0,2.8.145,2020-01-26 14:25:22,,,most_relevant,com.microsoft.todos +Rahul Kulkarni,https://lh3.googleusercontent.com/a-/AOh14GiJqpNEipRUAzL93vmBL4bldkGDHXFsZ5YV9TJwhw,Nice app. However one important feature missing in App is you can not assign the task to some other person. This feature is there in desktop version and very useful in corporate environment.,3,1,2.8.145,2020-01-16 23:42:23,,,most_relevant,com.microsoft.todos +Joe Macnaughton,https://lh3.googleusercontent.com/-xHqKEUi4EEQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOnCk5wfqLlObnhViuO0lzvCow0jg/photo.jpg,Easy to use but lacks neccessary functionality to make it really useful. Needs to be able to pull thorough tasks into My Day based on 'repeat' and 'due date' rather than having to maually add to My Day.,3,0,2.12.149,2020-03-11 21:04:07,,,most_relevant,com.microsoft.todos +Jessica Hamm,https://lh3.googleusercontent.com/-eg_cdA1qRQw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNfUASo0YL4v3mnFWEUV1NNGHDr_A/photo.jpg,"Not as useful as Wunderlist... Yet!! Would prefer to have a tab for the ""week"". Not just day, that way I can anticipate. Also wish items would show up in my calendar.",3,1,2.8.145,2020-01-20 20:03:23,,,most_relevant,com.microsoft.todos +Craig,https://lh3.googleusercontent.com/a-/AOh14GjMfPkS2i6wVPN83g79hpTpXrjGt47BpbnJEOX8YQ,"This app would be perfect if it had a translucent widget. But naw, it's gotta take up every pixel it can even when I got nothing to do. I do recommend it over others though.",3,1,2.10.147,2020-02-08 06:24:40,,,most_relevant,com.microsoft.todos +Mugy Kalm,https://lh3.googleusercontent.com/-W4AFmjp-lJU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPfuVUrjD_O9S-CnlogJcZn30TJtA/photo.jpg,I am examining the possibility of transferring from the excellent Wunderlist app to this Microsoft To Do. It has been a Challenge so far. Question: How do I connect Microsoft To Do with Google and Samsung Calendars just as we did with Wunderlist? Thanks,3,1,2.12.149,2020-03-06 07:22:25,,,most_relevant,com.microsoft.todos +Naveen Yadlapalli,https://lh3.googleusercontent.com/-GV-RW3XS9Gw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNy9JO8V2Z03HcWaTV6qRAgO0HtnA/photo.jpg,"Missing some key features - having the ability to have the same task in multiple lists, and an 'undo' button to undo completions/deletions done by mistake.",3,0,2.8.145,2020-01-28 10:32:00,,,most_relevant,com.microsoft.todos +Michael Berndt,https://lh3.googleusercontent.com/a-/AOh14GhSZ1LyvixPm9gAZCDprHH-R-jgm71xkYJqs1Sgew,"Being constantly prompted to ""Share List!"" Is a big pain in the butt. My wife and I share our info with each other, and it's a big nag that may cause us to abandon MS todo.",3,0,2.8.145,2020-01-23 13:42:20,,,most_relevant,com.microsoft.todos +Javi Bonet,https://lh3.googleusercontent.com/a-/AOh14GgxY1cPDaaxXH3UTMlyYEIntTyNMPbangzdU8gF,"When trying to add from the widget, it does not add to the selected list, instead it adds to tasks. Very annoying. This makes the widget borderline useless.",3,0,2.8.145,2020-01-24 07:06:26,,,most_relevant,com.microsoft.todos +Dayna VB,https://lh3.googleusercontent.com/-DWaiHj8FYxQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOWCla8CYPqG2AeC05oFt9pBkEVdA/photo.jpg,There needs to be a feature to purge completed tasks. Its cumbersome to to have to delete them one by one or by selected all and deselecting the upcoming tasks. Potential to delete active tasks.,3,1,2.10.147,2020-02-13 16:23:35,,,most_relevant,com.microsoft.todos +Serge van Neck,https://lh3.googleusercontent.com/a-/AOh14GjPWMuI6fn-l_Ku9n2DXjdTb2tksjkwStfZLGIZvg,"It's finally getting better, although still doesn't measure up to Wunderlist. But the latest update broke the widget! Please fix!",3,0,2.8.145,2020-01-14 14:30:17,,,most_relevant,com.microsoft.todos +Jovid Flores,https://lh3.googleusercontent.com/-_agI1F1AGKk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPr9QgpjqKjLh9fstjIwXcE5_Jk_Q/photo.jpg,I like this app. But it would be better if the duplicate list feature is included in the mobile version.,3,0,2.12.149,2020-03-17 08:13:38,,,most_relevant,com.microsoft.todos +Alan Gibson,https://lh3.googleusercontent.com/a-/AOh14GgHdQKUXUpTSz4yBht0_oJW-nuA5F2diM7oZunMrhw,"There's a bug where I can't add tasks from the widget. Tasks only get added if I actually open the app. Pixel 3a. Also items get added to the bottom of the list by default. What the hell, Microsoft?",3,0,2.8.145,2020-01-24 23:05:57,,,most_relevant,com.microsoft.todos +Kushal Poudel,https://lh3.googleusercontent.com/a-/AOh14GiXc5GvEG4hkIcjIZUWgDmhXdhBLnQNHrW8kVcxIQ,"Feature request: Natural Language support: When typing 'today at 3 pm' or 'tomorrow at 10 am', it should understand and set the due dates accordingly as in Wunderlist.",3,1,2.12.149,2020-03-13 03:08:32,,,most_relevant,com.microsoft.todos +Dave Weintraub,https://lh3.googleusercontent.com/-sMmbeQDsSdk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNJqWDhhjfxvOfcJCYDJS8-nEP-Vw/photo.jpg,"Cannot share lists. Send invitations from both directions, to lists imported from Wunderlist. On both sides, get ""Unavailable List""",3,1,2.12.149,2020-03-12 18:53:35,,,most_relevant,com.microsoft.todos +Anastasiya Ermolina,https://lh3.googleusercontent.com/-Il0HyQKm_NQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNPq_WUaSOJ4vF7G82A0STNfR-N8Q/photo.jpg,"I'm trying to add a task, press ""add button"" (the arrow) and the task just disappeares. Quite simple functionality and even this with bugs",3,0,2.8.145,2020-01-25 04:32:57,,,most_relevant,com.microsoft.todos +Fiat Justicia,https://lh3.googleusercontent.com/a-/AOh14Gj7qjwAunTkNVk6JnwII5NKU854HlMU6v3LVnDi,This app lacks a lot. 🔴 If you make a mistake editing you can't recover!!! This can cause the loss of important information.,3,1,2.11.148,2020-02-18 00:47:09,,,most_relevant,com.microsoft.todos +Lee Randolph,https://lh3.googleusercontent.com/a-/AOh14GhCWjRu-Oyu6PncCgpPoEcwQe8ssjCZbEasJ9TQEQ,"Missing obvious feature, take a photo and set a reminder. If it had that i wouldn't use google keep anymore. Even Evernote can do that.",3,1,2.12.149,2020-03-01 18:31:49,,,most_relevant,com.microsoft.todos +james weston,https://lh3.googleusercontent.com/-uFtCEuM9Y40/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOrEYdONNk2CiMp-UDWsjTEE6e5Ag/photo.jpg,Good but preferred Wunderlist before Microsoft bought it out,3,0,2.14.152,2020-04-01 13:01:05,,,most_relevant,com.microsoft.todos +Ashraf Hamdy,https://lh3.googleusercontent.com/a-/AOh14GhWW7plo6zGfxERswp_x_AuLZ-cy4sqc_SWlg_kj8c,"Decent app, my major problem with it is that I heavily use the app widget from the home screen but the widget is so buggy and it hides all my tasks randomly.",3,0,2.11.148,2020-02-25 14:49:46,,,most_relevant,com.microsoft.todos +Tamara Backovic,https://lh3.googleusercontent.com/a-/AOh14GjYr63WH_E8I_3JLKFvuPtNTPo-T2ojV41oY3Jj8g,"I really like the app, but you need to fix the reminders, they don't work. It doesn't pop up on time, and sometimes not at all.",3,0,2.11.148,2020-02-24 09:28:13,,,most_relevant,com.microsoft.todos +Mike Collins,https://lh3.googleusercontent.com/a-/AOh14Gi6QwNOSqmNyklvErWpT0x3PQ6el5ysDAhJ8gb4,Sharing lists doesn't work nearly as well as it did in Wunderlist. Otherwise ok.,3,1,2.12.149,2020-03-12 16:51:40,,,most_relevant,com.microsoft.todos +Hamid Farahani,https://lh3.googleusercontent.com/-U8_rrktE3VU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMvW19yFCfz94ACC_Qj2KQMrC_muw/photo.jpg,It's easy and friendly . Simple and nice UI. I think it can be better if we define time for doing and the app suggest day or devided to some part . ...,3,0,2.8.145,2020-01-14 11:31:05,,,most_relevant,com.microsoft.todos +Randy Wang,https://lh3.googleusercontent.com/a-/AOh14Ggi7pLIP2D5CyTH2JFkZQ9jiBA3RuhA4pjg2PDysA,Widget does not update itself. Shows up empty and had to replace everytime. Refresh doesn't work. On latest app and os.,3,0,2.11.148,2020-02-18 20:24:43,,,most_relevant,com.microsoft.todos +Izabella Koziell,https://lh3.googleusercontent.com/a-/AOh14GhXau5zGFuMny3-TFzyOOSm9p5ovJQ0kcojF8ISag,It's good but it needs to link to other MS desktop apps rather than online cloud MS. Eg outlook opens in cloud not on desktop.,3,0,2.8.145,2020-01-26 16:28:28,,,most_relevant,com.microsoft.todos +Ahmed Kheyr Moalim,https://lh3.googleusercontent.com/-SaS6xXzwEv0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP_TkO1_O2lJ3D6do-BY9a6dnHAwQ/photo.jpg,"The app looks very ok but it lacks help or support portal. I have accidently hidden the smart list like the planned, how can I unhide them and also how can I assign task to my colleagues or employees?",3,0,2.8.145,2020-01-25 03:20:00,,,most_relevant,com.microsoft.todos +Vivekanand S Durga,https://lh3.googleusercontent.com/a-/AOh14GgqcA8Ih2vdXZhzAFGNjh6Qr6clkKtPAOL8R5uF2w,Need to improve it.... Multiple tasks cannot be copied into a list... User interface looks good..,3,0,2.10.147,2020-02-05 22:16:35,,,most_relevant,com.microsoft.todos +Gavin Pointon,https://lh3.googleusercontent.com/a-/AOh14Gh9tAMc2vzscTsJK1HFV1E7YZRUadW0dkVPHt01cw,"Be better with text slightly smaller, as a simple list takes up more than a full screen...",3,0,2.10.147,2020-02-08 18:44:37,,,most_relevant,com.microsoft.todos +Craig Rickett,https://lh3.googleusercontent.com/a-/AOh14GjWtkev5fP0A49GBS38_JKDaTXcA38e9b3afMPC5A,"So close to being perfect, Missing -Tags -filters -reports Will definitely be keeping an eye out for these!",3,0,2.8.145,2020-01-17 22:17:15,,,most_relevant,com.microsoft.todos +AX,https://lh3.googleusercontent.com/a-/AOh14GhrvYqObhqALBUkXS8XrzM-Jn8j_RyB9nEX1x45dw,"Worse than Wunderlist, no optional add todos to top or bottom, so it's pretty inconvenient for big lists.",3,0,2.10.147,2020-02-10 20:53:22,,,most_relevant,com.microsoft.todos +Helena Lucibello,https://lh3.googleusercontent.com/a-/AOh14GiSe6ZIdRJW7h_ePpukV4ekXNPg2FsLaolAiIBO,I'd mark it higher if the reminder/alarm could tell the time. The alerts pop up a good 15 - 45 minutes late.,3,0,2.11.148,2020-02-18 21:12:16,,,most_relevant,com.microsoft.todos +Renee Ford,https://lh3.googleusercontent.com/a-/AOh14GiZTpkWkrVjFiRmlOvLsVsquWeF_xRJSxu9c6ofLg,App is working great EXCEPT I cannot see my tasks in my calendar. I'll change it to 5 stars after this synching capability is added,3,0,2.11.148,2020-02-22 18:35:42,,,most_relevant,com.microsoft.todos +Rob Patterson,https://lh3.googleusercontent.com/a-/AOh14Gj6vYA1AwtpsmWPE4MXlynVN-5DXO0zOqBQR1HS-g,Is good standalone... But: outlook integration is confusing and ineffective. I have to use onenote as my todo at work.,3,0,2.11.148,2020-02-21 16:51:27,,,most_relevant,com.microsoft.todos +Tellay Prado,https://lh3.googleusercontent.com/a-/AOh14Gilk9TE4LN8Au49866vfBKT4KbmwGAkGUGYD9xl5A,I suddenly can't login on my account and can't sync lists. Suddenly it became so useless.,3,2,2.11.148,2020-02-22 00:43:08,,,most_relevant,com.microsoft.todos +Robin,https://lh3.googleusercontent.com/a-/AOh14GhIFGZUk4VTVcVZNRoFOyriTMzWNqm3nA9jgzsa,Can't find a way for new entries to be added to the top of a list rather than bottom.,3,1,2.11.148,2020-02-14 15:12:23,,,most_relevant,com.microsoft.todos +Mo,https://lh3.googleusercontent.com/-yMrMztQH-ME/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO09rlkDhQPWT4rnsR2L52R3hB4uA/photo.jpg,For some reason I can't exit the app which I press the back button on Lenovo Yoga Smart Tab (only home or app-switch buttons) Please fix,3,0,2.8.145,2020-01-22 16:36:40,,,most_relevant,com.microsoft.todos +Vikas Tiwari,https://lh3.googleusercontent.com/a-/AOh14Gh1JmWUd3WxptYGUj6xzKP-aFONdqa6GWiwYF7wyQ,Wish Microsoft could copy Wunderlist features properly before killing it. I am already missing Wunderlist.,3,0,2.11.148,2020-02-13 17:46:27,,,most_relevant,com.microsoft.todos +JamLyn Company Limited,https://lh3.googleusercontent.com/-x-_6mr95W7M/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMTbtXs_5PJoqrHYJRUIFACD2GMKw/photo.jpg,The should be some kind of dashboard where as administrator monitor progress on particular tasks and also have tasks maned by two or more personal,3,0,2.10.147,2020-02-14 06:03:14,,,most_relevant,com.microsoft.todos +John Chadd,https://lh3.googleusercontent.com/-qtUobVXUuk0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP4uFonScbiZ9frawX1MYEf18XAUg/photo.jpg,The important smart list is all mixed up and doesn't show which list each task is from.,3,0,2.11.148,2020-02-17 13:46:02,,,most_relevant,com.microsoft.todos +Luke De Feo,https://lh3.googleusercontent.com/-98BbTF5eTvM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNkgRCJ4a0PXQo7Gp-XmSVIUcmAww/photo.jpg,But of a downgrade from wunderlist. Please add a button to create a task from the main screen,3,1,2.12.149,2020-03-03 20:04:05,,,most_relevant,com.microsoft.todos +Toney P,https://lh3.googleusercontent.com/a-/AOh14GhZ0qQrkrqvCQVxZGwgIQbfvle1P9LLpk9P0648ATs,I lost all my pictures that I had attached in wunderlist.,3,0,2.14.152,2020-04-04 09:24:18,,,most_relevant,com.microsoft.todos +E J,https://lh3.googleusercontent.com/a-/AOh14Gju71TmdgYnrOLWEYdT_GzZZ-oz4f0zS0naCWrlWxY,5 stars if option available that will allow tasks to automatically show under My Day for the due date or reminder date scheduled.,3,4,2.11.148,2020-02-25 04:01:10,,,most_relevant,com.microsoft.todos +Rebecca Mrowiec,https://lh3.googleusercontent.com/a-/AOh14GiMjsDKhddL1z_bwVFPMv5dArBN6egLm4y6mFkOKg,Needs to have feature where you add the next item to the top of the list not the bottom - Widget version,3,0,2.11.148,2020-02-15 15:04:49,,,most_relevant,com.microsoft.todos +Abin Biju,https://lh3.googleusercontent.com/a-/AOh14Gg6Vw8WAgBXnkBK_cMZeWWCmYQl_-10Jsm9_GfY,"The lines on the to do page makes me wanna touch those to start typing. But, only the '+' addition is permitted",3,0,2.11.148,2020-02-14 16:18:41,,,most_relevant,com.microsoft.todos +Kapil Patel,https://lh3.googleusercontent.com/a-/AOh14GiNBy6O2jWldg4xD6BGI5hxakEPlTHWKP-P-JVBug,Wish they add : copy paste function Remind specified time before due date options,3,0,2.8.145,2020-01-22 17:14:20,,,most_relevant,com.microsoft.todos +Shahrza Mugbilli,https://lh3.googleusercontent.com/-rlWtXp0Foxo/AAAAAAAAAAI/AAAAAAAADFE/AAKWJJN5VZvBxYhpxRSaTJcDB_KFRgQs3A/photo.jpg,Widget doesn't work properly. Pls fix it. Mi A2 lite. Android one,3,0,2.12.149,2020-02-28 12:02:47,,,most_relevant,com.microsoft.todos +jean philip,https://lh3.googleusercontent.com/a-/AOh14Ggd6TF2n76qLecoBHkEwwpkdy9K1wBn7hS_eHqf2rU,1. I didn't get the desktop icon. 2. We tried sharing for shopping but it didn't sync.,3,1,2.13.151,2020-03-13 05:10:47,,,most_relevant,com.microsoft.todos +Alistair Duncan,https://lh3.googleusercontent.com/-rJnevDxyagw/AAAAAAAAAAI/AAAAAAAAABg/AAKWJJMFqzvWo_R3m-_NqA6Mm772n78D_Q/photo.jpg,Please provide a 'today' smart list that shows items due today. It should not be necessary to manually add tasks to a today list. That's a waste of everyone's time.,3,2,2.12.149,2020-02-28 04:22:29,,,most_relevant,com.microsoft.todos +Paul Hooper,https://lh3.googleusercontent.com/a-/AOh14Gj0LgHbe-_kcE8e3Snhnmb2N5RjS2PFCUEaAY89,No email notifications for scheduled tasks! Not good.,3,0,2.10.147,2020-02-13 09:54:31,,,most_relevant,com.microsoft.todos +J S,https://lh3.googleusercontent.com/-MX2WmgBvJJA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMUL76LpN_Yg-mCBKX61h5D_o2ANg/photo.jpg,Missing integration with Google calendar.,3,1,2.12.149,2020-03-12 19:23:29,,,most_relevant,com.microsoft.todos +Alireza Kamyab,https://lh3.googleusercontent.com/-sxM3g9nuBo8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOrzzEsaCtI7U9ONUgyQJ_Ag24wGg/photo.jpg,This app is pretty good and works well but I was wondering if you could make the designing as well as the app on the web.,3,0,2.13.151,2020-03-25 14:48:52,,,most_relevant,com.microsoft.todos +SGR SGR,https://lh3.googleusercontent.com/-vdIYjVc6HVI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPUNIwZDEa1O9NAI0kI51iGHpd0Zg/photo.jpg,"Just started using it, i am more use to wunderlist, but surely i am going to love using to-do and it will be great",3,0,2.10.147,2020-02-09 06:08:43,,,most_relevant,com.microsoft.todos +LIFE& TECH,https://lh3.googleusercontent.com/a-/AOh14Gi5Q0Lq2qe6EINgpIABGxafe2P6D9eXSvYp9xvP,When the system is set to dark theme the home screen widget fails to display the list correctly,3,0,2.10.147,2020-02-07 16:07:30,,,most_relevant,com.microsoft.todos +Timur Fayzullin,https://lh3.googleusercontent.com/a-/AOh14Giz5YhGh3V4mBBMzy72Xjriol7bnp_OP1ZYn0U2Ag,"Add ""all tasks"", as it was in Wunderlist",3,0,2.12.149,2020-03-12 10:02:33,,,most_relevant,com.microsoft.todos +Nick Chebykin,https://lh3.googleusercontent.com/a-/AOh14Gj_R8cEKsNyHgRoS1egwoooucBxHB8PpzOQ9jUbPQ,"Please make an google account login, tired of Microsoft auth shenanigans.",3,1,2.12.149,2020-03-12 13:35:32,,,most_relevant,com.microsoft.todos +Miroslava Klimentova,https://lh3.googleusercontent.com/a-/AOh14GiQ-xokfGmU7ev3Nl3Hxi82hUNWx8eTcaI3thcl2g,There wasn't a synchronization between the app and outlook mail calendar.,3,0,2.11.148,2020-02-26 15:23:05,,,most_relevant,com.microsoft.todos +Doug Oliver,https://lh3.googleusercontent.com/a-/AOh14GgkAjNZxdnB3O3Xzpj18jLmJ7ah9BygJ4BtGI-VyA,This app needs a combined list of all accounts to make it usable...,3,1,2.11.148,2020-02-25 13:01:22,,,most_relevant,com.microsoft.todos +Jay Salvacion,https://lh3.googleusercontent.com/a-/AOh14GjYJ8du8mpdkCLoYyVfuFvR7UoWe6uVBz9BpnUJjw,"This app is a tiny and easy to master planner and organizer. The interface is neat, and it has AMOLED dark theme. Everything is fine until I noticed that repeating tasks are not being repeated when there is no internet connection, which is for a traveller, is a hassle. I wish repeating tasks can be repeated again on the next day once checked even if the device is not connected to the internet.",3,19,2.7.142,2020-01-07 11:16:17,,,most_relevant,com.microsoft.todos +Saumya Banerjee,https://lh3.googleusercontent.com/a-/AOh14GgUqnK_XZNL4DcceB6AqHxo0ZtvRPboB5roszlIbA,Cool app but widgets stopped working so makes it pointless to keep,3,0,2.8.145,2020-01-22 15:05:18,,,most_relevant,com.microsoft.todos +C B,https://lh3.googleusercontent.com/-pakJ9RVspy0/AAAAAAAAAAI/AAAAAAAAQt4/AAKWJJP9BMp4VobuqRxv3lENg17ms5kuJQ/photo.jpg,"While I love this app, there are a few things that I would like to see before I can give it five stars. The first being I would like for a right click to work the same as a long press, so that the app can be used on Chromebooks comfortably.",3,1,2.7.142,2020-01-10 14:16:44,,,most_relevant,com.microsoft.todos +Isobel Durbidge,https://lh3.googleusercontent.com/a-/AOh14GiTDVno7Y0faWj0rd8hY8xTECRxFx1t1Q4PehbQ,Informative but extremely slow.,3,0,2.8.145,2020-01-21 00:03:31,,,most_relevant,com.microsoft.todos +Tina,https://lh3.googleusercontent.com/a-/AOh14GjethpNOshPF8gwsktCbDbChdHF3bh9Yaw5oHj5pw,"I am a long time user and lover of Wunderlis, the predecessor of this app. And I like the new concept, I was using the old app as a to do list as well BUT there are a few things I take issue with: 1. you cannot reange the order of your tasks. 2. in every list you have to check the box: make finished tasks invisible/visible. The combination of the 2 make it impossible to stay organized. I hope they fix this stuff soon, I don't see any reason why this isn't already a feature.",3,36,2.3.135,2019-10-30 07:45:07,,,most_relevant,com.microsoft.todos +Ricardo B,https://lh3.googleusercontent.com/-OWBDyu6ifkE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNbDSwm8shwAYtSdNEFvV4lFiJZkg/photo.jpg,"The app is great, and I´ve started to use it rather than wunderlist. Just 3 stars because I don´t think the My Day section makes sense. Tasks flagged as to be done today, in others lists, should appear in My Day, as those are the tasks for Today, seems My Day only considers tasks added specifically to that list, and that makes it confusing and redundant, as in Planned, the right logic is applied, where you see planned tasks for today and ahead. Shouldn´t the same logic apply to the My Day window? Or I am doing something wrong?",3,22,2.6.141,2019-12-10 10:11:48,,,most_relevant,com.microsoft.todos +Michael Martin,https://lh3.googleusercontent.com/-iWoMc0jqdPY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOOktc414DDNM1KC63nbsY-ZhkPhg/photo.jpg,"Much prefer the look/layout of Wunderlist. Lots of little things in To Do that aren't as good as Wunderlist and it's a huge shame that it is being retired for this. As a minimum, everyone should have the option of making it look exactly the same so we don't notice the difference. As it is, the text is too big, extra items that can't be turned off such as 'My Day' clutter the screen and it just doesn't look/feel as good. Shame",3,283,2.7.142,2019-12-22 10:28:31,,,most_relevant,com.microsoft.todos +Jenifer Haggard,https://lh3.googleusercontent.com/a-/AOh14GgdWZOtyY6dF87Or69gk5kEEjRP35FSqPCFNEgozA,"A Tease. I converted from Wunderlist to ToDo only when I read that I could send my family members lists. When the link is clicked on it states that the ""List Is Not Available Now"" and """"It's not you. It's us."" Then I read that members have to be on the same account. I like the new ToDo but I have tasks and lists assigned to others but no way to communicate that.",3,20,2.3.135,2019-10-26 19:11:55,,,most_relevant,com.microsoft.todos +Mic Watz,https://lh3.googleusercontent.com/a-/AOh14GgGti6NkCT0BqPowaYloE9HIz5tB92NZkLj_NfuLw,I Recently changed from wunderlist. I had no problems whatsoever with Wunderlist it's perfect for me. Today I needed to use my to-do list and it has signed me out !!!. After a load of mucking around with passwords I finally got into it but it was too late to do the task that was required.,3,0,2.3.135,2019-11-21 03:53:21,,,most_relevant,com.microsoft.todos +Seet GZ,https://lh3.googleusercontent.com/-ZGGUBUI_L2w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMUYAmmtJbiADF8I29jY-F3UsrV2Q/photo.jpg,"Really like the account switch function, really smooth. But as a Wunderlist user, I really wish I have option to change back to old interface. Wish for more flexibility on the menu, especially that ""My Day"" fuction quite annoying. That is the function I used least but showed on top of everything and can't hide it",3,4,2.7.142,2020-01-05 23:27:43,,,most_relevant,com.microsoft.todos +M. Andrade,https://lh3.googleusercontent.com/a-/AOh14Gi7rCGBEPMek0Z7yU1aJfCpOq_bFta3OtU87-0jiA,"Please use Wunderlist' s UI! Starred items move to top, and the division between «done» and «to do» tasks was perfect for groceries lists. It destroys the purpose of these functions otherwise.",3,1,2.7.142,2020-01-07 15:10:31,,,most_relevant,com.microsoft.todos +Alexandr Chytil,https://lh3.googleusercontent.com/a-/AOh14GiynLa-FEhhLvJCIrGdxUlThZSHw5WgRaZbplwu,"What I am missing the most is, that I can´t open it directly in web browser just with my login without installing anything. In big industry companies is not alowed to install anything, what is not fully authorized by central IT department. I used Wunderlist in my browser (app in chrome was possible to install without any permission), but I can´t use it now in my work browser. Just in my private smartphone. By transferring wunderlist tasks some old and completed tasks are transferred as uncompleted. So, 3 stars for now.",3,3,2.5.137,2019-12-03 13:36:47,,,most_relevant,com.microsoft.todos +Anja Porter,https://lh3.googleusercontent.com/a-/AOh14GiW98pervmFn6JbpS9oP5KYpxkjv0aC59wLx7z_,"Had to create Microsoft account to use which annoyed me, however, can use Gmail account and can import from Wunderlist which is a plus. Also signed in on a different device that I have office suite on. Next time I signed into Outlook with work credentials, To Do signed me out. Now can't sign into app on my phone, so weird!",3,3,2.6.141,2019-12-16 13:57:25,,,most_relevant,com.microsoft.todos +Hossein Reyhani,https://lh3.googleusercontent.com/a-/AOh14GidUXTntCmsRIkZiuv6tvtH7Gxgnz8UlGy7niLIcQ,"This app keeps getting closed in the background on a clean android. I'm using it on OnePlus 7 with Android 9. Reminder notification doesn't show up at the time I set. Also, adding task is pretty absurd. Please make it look like Wunderlist. With a simple button and lot of features at hand in a big space.",3,2,2.6.141,2019-12-14 06:12:23,,,most_relevant,com.microsoft.todos +Zaid Merc,https://lh3.googleusercontent.com/a-/AOh14GgD3xG6mnMCrAQOeyVYN0qCAevTpf07UObv0-d0Ujk,No auto/custom tags?!!! Really??,3,0,2.13.151,2020-03-20 09:12:08,,,most_relevant,com.microsoft.todos +JustTheBeginning,https://lh3.googleusercontent.com/a-/AOh14Gj-hauhp2-hlD-jaf6opSRSsivX5hkIrxTxUFfJ_Q,How come you can't rearrange things in ALL the list? 😦,3,0,2.13.151,2020-03-15 14:08:39,,,most_relevant,com.microsoft.todos +Harsha Vardhan Guntupalli,https://lh3.googleusercontent.com/a-/AOh14GiGFztfphbidmMnTXPqu2EuW4TlBdF6PDyn3TmpGw,"Inspite of the event or task completed tasks being shown on the list. As per the reminders and their timing auto arrangements of list is not there. The first and most early created event is reflecting on the top rather than time based or priority based. If an event created on my day if that was not completed, its not getting carried over to next day as due.",3,1,2.4.136,2019-11-20 02:41:06,,,most_relevant,com.microsoft.todos +Patturaja K,https://lh3.googleusercontent.com/a-/AOh14GgTlfHsCF2aDZsVJoPpszXkiFs_7-xhR7mixIbadA,"A nice, userfriendly application to organise our To dos and reminders. But please try to add a seperate smart list and a widget called ""Today"" (and ""Week"" too), to view all our To Dos and reminders with today as due date. This is available in Wunderlist. Because of this one feature I would prefer Wunderlist, when compared to Microsoft To Do.",3,6,2.6.141,2019-12-18 05:08:27,,,most_relevant,com.microsoft.todos +Evan Cole,https://lh3.googleusercontent.com/a-/AOh14Ghl14izxmifHIIzwG6SdQS5v9aooHjjepRzzPiGNg,"It's no Wunderlist. Needs a quick add button on the app's home screen. Reminder notifications disappeared when I opened the app. I dislike that I am forced to use Microsoft account to use the app. Other than these issues, it's alright.",3,1,2.7.142,2020-01-04 08:26:24,,,most_relevant,com.microsoft.todos +Sy Gan,https://lh3.googleusercontent.com/-dWUzTnKPais/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNzqgo9a9S2_dpo99-HlBf_ROeU_A/photo.jpg,"This is a good app BUT The list i shared with my friend did not sync. When i completed some of the task, i click complete but my friend still view it as not complete.",3,1,2.7.142,2020-01-07 06:14:55,,,most_relevant,com.microsoft.todos +Egor Litvinchuk,https://lh3.googleusercontent.com/a-/AOh14Ghw03EpTUKtQD7Ryymt0r6tgUpPeZ8bhZbDDu-Ftw,"Overall, app is great. But the worst part is changes are not synced between Android and iOS devices. That's really annoying and causes issues if you rely on Todo. But if you cannot rely, this app doesn't make any sense.",3,0,2.7.142,2020-01-05 14:52:11,,,most_relevant,com.microsoft.todos +Unnathi Nayak,https://lh3.googleusercontent.com/a-/AOh14GjcUzX8IstGutolpBpSitFurJGMSwPtJW_3qd-dig,Please add an option to enable things in the 'planned' to 'my day' makes life a lot easier. It'll make the app less stubborn and more user friendly!,3,0,2.7.142,2020-01-07 14:58:50,,,most_relevant,com.microsoft.todos +narendra adinugraha,https://lh3.googleusercontent.com/a-/AOh14GiiZT0NToOktkt8fVH3Iw2OitnxqrLGvHsPbBc_Ow,Cannot duplicate a list,3,0,2.11.148,2020-02-17 23:31:39,,,most_relevant,com.microsoft.todos +Laurie S,https://lh3.googleusercontent.com/a-/AOh14GhXagmqfHTRuCvuz3CcI-cG0Pp33uA0Wq69um2y,I tried it since it had integrated many features from Wunderlist. It still falls short. There is no option to view all to do's at once. That was the main killer for me. I'm sticking with Wunderlist.,3,1,2.3.135,2019-10-26 02:33:22,,,most_relevant,com.microsoft.todos +Oli,https://lh3.googleusercontent.com/a-/AOh14GicQwm2vyrDNoMMWCjiwIkojAAyI7WQxNYsblgVTw,"A nice slick design, but ticked off tasks are displayed on the list of tasks I have to do. New tasks are also added to the bottom of the task list. This is annoying and I would like there to be a setting to adjust this.",3,0,2.3.135,2019-11-07 15:44:09,,,most_relevant,com.microsoft.todos +John Landfair,https://lh3.googleusercontent.com/a-/AOh14Gjk1wqXX2_8jcb7HhCmNUOdjJYVOHBI4YJz1_9bgQ,"I love this app. I use it for everything. Except every new day, the widget is blank. I go to the app, check the list, confirm I have things to do, go back to my homescreen, and it is still... Blank.",3,0,2.4.136,2019-11-19 13:42:26,,,most_relevant,com.microsoft.todos +Alex Shats,https://lh3.googleusercontent.com/a-/AOh14GisERelV8ldasPf7ze12oRSES869G5hvYhFk6ANYA,Widget is not informative. It shows a text of a task but not date and time. That is not comfortable. User has to open task to see when it is scheduled. Google Tasks widget is much better in this case.,3,0,2.4.136,2019-11-19 21:51:57,,,most_relevant,com.microsoft.todos +JJ Hinterreiter,https://lh3.googleusercontent.com/a-/AOh14GizOMGDwNx-NjMcKlgsoMLX9EzzLT4TLn_TKls4,This is all well and good but it doesn't tell me how to use To Do to do anything. Like making separate list or subcategories for each list?,3,0,2.6.141,2020-01-23 04:19:47,,,most_relevant,com.microsoft.todos +rick huckstep,https://lh3.googleusercontent.com/a-/AOh14GjwvgGSq9_glAkB9H7NPipcfiek4NE_CA5hd5oh,"I don't mind the switch from Wunderlist, but To Do is missing the thing I use most...which is the list of things I have to do today It was so much easier in Wunderlist Everything else is basically the same but I see no benefit to changing this most fundamental of features in wunderlist",3,2,2.4.136,2019-11-08 15:48:59,,,most_relevant,com.microsoft.todos +Dannielyn Buenviaje,https://lh3.googleusercontent.com/a-/AOh14GhhmFBAG5bwiVQrIYBE6hAC_JAbc82OUKtTzsc-,"App is okay, but BA can still enhance this app by adding more features to make it more user friendly. For example: allow the user to drag and drop tasks to their desired schedule or list.",3,0,2.4.136,2019-11-13 10:46:56,,,most_relevant,com.microsoft.todos +Shehzad Khurram,https://lh3.googleusercontent.com/a-/AOh14Gg7hT7lt157Xu3knoHr0MiTgGcie83F4Akt3xSaMQ,"The ability to add due dates and times to sub-tasks is a crucial feature that's missing. Other than that, the app is great. 5 stars when this feature is rolled out.",3,0,2.3.135,2019-10-24 11:59:30,,,most_relevant,com.microsoft.todos +Edgar C.,https://lh3.googleusercontent.com/a-/AOh14GiAbs_jhJHmGZlvxXxmgHkta6VMtT4gwu2Z5e4Inw,Needs some adjustments. In Wunderlist if anyone made any changes to the notes it would be broadcasted to everyone or at least to the person that record within the list belonged to. We might just got back to Wunderlist.,3,1,2.4.136,2019-11-07 16:42:53,,,most_relevant,com.microsoft.todos +JL,https://lh3.googleusercontent.com/a-/AOh14GjoItaYPly8m6EwhsZyEnA1L8i6m1sEeyhzpVunZg,Cannot show all task of different accounts in widgets?,3,0,2.14.152,2020-03-28 15:07:06,,,most_relevant,com.microsoft.todos +Venkat Reddy Kotta,https://lh3.googleusercontent.com/a-/AOh14GiDcpBmtXXd_ixeIbi4ulqkMw4vQ4kIe2dx5FjXwA,"My experience of being on wunderlist was far superior, at least you should have replicated the look and feel. Why kill Wunderlist?",3,0,2.7.142,2020-01-09 02:59:15,,,most_relevant,com.microsoft.todos +shiva kumar,https://lh3.googleusercontent.com/a-/AOh14GjaykhiaOqfuLih7xj0w6DrDplYAH5Jq_zWtQTDJsQ,"App is great though some improvements can be done. I don't know if it's only me or its the for everyone, I am a bit confused with how repeat works.",3,0,2.5.137,2019-12-04 06:18:58,,,most_relevant,com.microsoft.todos +Rick Barreto,https://lh3.googleusercontent.com/a-/AOh14Ggz2jqFtwHxt7oPI53JcftopOt7mfdCgpXH6o1kTf0,"Decent, but Wunderlist seemed easier to use and felt more intuitive. Also find that I have to sync manually in this app for others to see my updates (that's a pain).",3,0,2.7.142,2020-01-05 21:27:57,,,most_relevant,com.microsoft.todos +Kiri Bee,https://lh3.googleusercontent.com/a-/AOh14Gh2W-QjX_GECX1_brlpAkK5THQVobwoakEjJ171Si4,Clear and easy to use but doesn't sync well between PC and phone,3,0,2.7.142,2020-01-11 09:36:42,,,most_relevant,com.microsoft.todos +Zsolt Safrany,https://lh3.googleusercontent.com/a-/AOh14GiA0wYrZeQub2i2vVmEqae3PWDySzmvmBu5FR2K0MA,"a) Add shortcut to home screen is broken on my Pixel 3. b) Please add ""delete all completed task"" to overflow menu (besides the hide feature) c) widgets are seriously broken; their color/theme is incorrect (white but should be dark) and widget is empty even though list it shows is not",3,21,2.5.137,2019-11-26 05:15:20,,,most_relevant,com.microsoft.todos +Michael Kowal,https://lh3.googleusercontent.com/a-/AOh14GgHQ3IT2Zdl6RG_Ocssd3jqyKyAwQCdePaC193F,"We need an option to send and link a task with other people, i.e sending it to them via email. This then should automatically update on your account when the other person makes changed to that specific task.",3,0,2.4.136,2019-11-13 13:07:04,,,most_relevant,com.microsoft.todos +Reece Kokshoorn,https://lh3.googleusercontent.com/a-/AOh14Gjc7q-BlfOcyTBgeomTvwkFXwmsfuANhXb2KSXueg,"Love it, only thing missing is a ""Uncomplete All"" - In the interest of recycling and re-using lists! Cheers.",3,0,2.4.136,2019-11-22 08:48:14,,,most_relevant,com.microsoft.todos +Karina Feuerlein,https://lh3.googleusercontent.com/a-/AOh14Ghf-TGrwcUVc2-dR4v43sXuLroVXYOOZu3SjGuDag,"Why don't you remove the task after it's completed? We have recurring weekly tasks and when we check it off, you have to manually remove the task from the list. Am I supposed to have like 80 completed tasks like a psychopath? 😆 I like things uncluttered. I might be able to let it go if I didn't get a notification EVERY TIME my husband removes an item because he's equally neurotic? I can't change notification settings for that either. I want to be notified of task completion, not removal.",3,0,2.7.142,2020-01-05 05:46:34,,,most_relevant,com.microsoft.todos +Isaac Newton,https://lh3.googleusercontent.com/-eBndUuoVNeA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMX1X9k7MFja6fqyYAKjBeRe9_1Yg/photo.jpg,"Nice, but without calendar integration it is still incomplete.",3,0,2.6.141,2020-01-25 19:30:07,,,most_relevant,com.microsoft.todos +Craig Neal,https://lh3.googleusercontent.com/-D6hjr-Cns_8/AAAAAAAAAAI/AAAAAAAACzU/AAKWJJNaiLOfwEjqvQJ2GDNBxfga_-Rt9g/photo.jpg,"Love it, but it isn't an Add in on Outlook. It's forcing me to use Wunderlist because I like the feature of it syncing with my Outlook calendar.",3,0,2.4.136,2019-11-17 15:13:08,,,most_relevant,com.microsoft.todos +Barbara Cormack,https://lh3.googleusercontent.com/a-/AOh14GjUvIzX0xj4-q_MCmyT3B8PH8nyGvj7_gcsuc3Q,There are functions available that I can't find out how it works ... i.e. assign to me. Otherwise just what I needed. 😊,3,0,2.12.149,2020-03-23 09:09:41,,,most_relevant,com.microsoft.todos +Traf,https://lh3.googleusercontent.com/a-/AOh14GjLhe53YudCTWETAVcYRO-pEk1bPbSnFexZU_z7fw,"So far im loving it, but I could not find a setting to change first day of the week from Sunday to Monday, which is very confusing. Please add this feature!",3,0,2.3.135,2019-10-30 20:48:23,,,most_relevant,com.microsoft.todos +Keith Kohout,https://lh3.googleusercontent.com/a-/AOh14Gi2T64FAIyVSetOw6qZCTS2HsX-yJ_faCKisf3QGQ,Not bad but Wunderlist is better. Like Wunderlist graphics and layout better. Want folders to be collapsed or even better a setting that lets me choose.,3,1,2.6.141,2019-12-14 16:09:23,,,most_relevant,com.microsoft.todos +Mariam Nour,https://lh3.googleusercontent.com/-H6hu1VjAKzo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNYIhlNuJzf4nS8ByI1sOrOz-0lCA/photo.jpg,It's very basic. Why doesn't it have a calendar view if i want to take a look at my week? Overall nice interface though,3,0,2.3.135,2019-10-24 21:26:13,,,most_relevant,com.microsoft.todos +Atish Bhana,https://lh3.googleusercontent.com/a-/AOh14Gh4fyPnmmiadcoisJoj4OhrjL2KU0qhHWfowb3Kvg,Please add folders. Wanderlust has folders. It's an important feature for me otherwise theres too much lists to manage.,3,1,2.7.142,2020-01-14 04:21:11,,,most_relevant,com.microsoft.todos +m0rbid Ghost,https://lh3.googleusercontent.com/-wgFGT-mRoXw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMr6c6-D2uvhRL6l5MQOX1nuCdEgQ/photo.jpg,Not as good as wünderlist sadly.,3,0,2.13.151,2020-03-28 02:41:58,,,most_relevant,com.microsoft.todos +Alex Measures,https://lh3.googleusercontent.com/a-/AOh14GiRa4fcSZFBmDlnl9wkk-iqMnKJ8gmDeuCvuTxQ,"As a replacement for Wunderlist this is OK, but needs a faster way to share lists to known people rather than sending a new invite per list.",3,1,2.6.141,2019-12-15 13:18:24,,,most_relevant,com.microsoft.todos +Mayank Kumar,https://lh3.googleusercontent.com/a-/AOh14GilAvMcRLHfpZRXrDVjFW9fSKfO75xCJW6y2VDQPg,The widget goes blank every now and then. It displays just empty grey spaces instead of my tasks,3,0,2.7.142,2020-01-13 12:02:33,,,most_relevant,com.microsoft.todos +Joe Chu,https://lh3.googleusercontent.com/a-/AOh14GjI8-WnTP9o1jTNzOHJfq5TJ2Av-c5xIyGHu2PKMw,"~ Becoming better and better than before, but still can't fully compatible with Tasks in Outlook on Windows. Looking for to a full functional Outlook on Android.",3,0,2.7.142,2019-12-21 15:31:30,,,most_relevant,com.microsoft.todos +Saeed Anvari,https://lh3.googleusercontent.com/-9S8s3feG0TU/AAAAAAAAAAI/AAAAAAAAARI/AAKWJJOf6GQGClZ69DIkewr9Fj3Or46UJQ/photo.jpg,It is a cosy and user-friendly to-do app!,3,0,2.12.149,2020-03-01 18:36:38,,,most_relevant,com.microsoft.todos +Harry Roginskii,https://lh3.googleusercontent.com/a-/AOh14Gixxo657405wA5g239L7FsT51IBr_TBXXTMKefkSw,Dark mode - done. But why on earth in 2020 I still can't rearrange my sticky notes??,3,0,2.12.149,2020-03-01 12:28:06,,,most_relevant,com.microsoft.todos +Natanya Mitchell,https://lh3.googleusercontent.com/a-/AOh14GiSti26Q85cm2ChgqZ-uQ9oevUPAne4xrC3L6g-008,"The app itself is fine, but the widget is spotty - greetings shows my tasks and other times does not. No real rhyme or reason to why the tasks won't show.",3,1,2.3.135,2019-11-07 05:35:26,,,most_relevant,com.microsoft.todos +Ferdinando Rodriguez,https://lh3.googleusercontent.com/a-/AOh14Gj07HGgkDp5DtmKAEt_rhXqmzhei00r0HlUyxtQ6jY,"The widget is not working at all, this is a great app but the widget displays like if there was nothing when there is",3,0,2.4.136,2019-11-22 21:39:44,,,most_relevant,com.microsoft.todos +Girish Peswani,https://lh3.googleusercontent.com/a-/AOh14GiwTL_OsRjSLXfmXZZZixvZ4ztdwO1lEE4fmXdc4A,"Wunderlist was easy and intutive, don't have to scroll through all the lists to figure out if anything is due or over due",3,0,2.7.142,2019-12-27 17:29:38,,,most_relevant,com.microsoft.todos +Chris Hand,https://lh3.googleusercontent.com/a-/AOh14Gjlr4R6DZ8uqUjzDxVgCUzOcUpdR2vJ_YbOT5t93Q,"I really want to like this app, but crashes a lot. Worse, I deleted multiple messages at once, and it deleted messages I didn't select.",3,24,2.4.136,2019-11-05 15:33:54,,,most_relevant,com.microsoft.todos +bluesky,https://lh3.googleusercontent.com/-bZ3u2g2urrU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOeT4JefNBj6-N4k4_DN7lnl5dxJg/photo.jpg,"The app is easy to use, but lacks the ability to list a task into multiple groups/categorize, to move an existing task into a group/category, and to group by categories in daily to-do lists. The category issue is a big deficit. It's hard to plan without it. (The flexibility with categories is what makes Outlook so outstanding -- such a shame not to find it it's ""sister app."")",3,0,2.14.152,2020-04-05 20:02:44,,,newest,com.microsoft.todos +Oda B,https://lh3.googleusercontent.com/-5mEJOkG9Scc/AAAAAAAAAAI/AAAAAAAAAlE/AAKWJJN0kT4P8JmSdL6YWn8Vi0vtsUn90w/photo.jpg,"Good but could be better. It works well and is very similar to Wunderlist, however it's very annoying that the reminders disappear from the notification bar if you haven't completed your task in a day. So you have to reschedule every day. Would be great if this could be fixed.",3,0,2.14.152,2020-04-05 08:26:40,,,newest,com.microsoft.todos +Toney P,https://lh3.googleusercontent.com/a-/AOh14GhZ0qQrkrqvCQVxZGwgIQbfvle1P9LLpk9P0648ATs,I lost all my pictures that I had attached in wunderlist.,3,0,2.14.152,2020-04-04 09:24:18,,,newest,com.microsoft.todos +Zolkefli Mohamad,https://lh3.googleusercontent.com/a-/AOh14Gh4fu5d2B_QhqmtNUa7OYyy8fiOt-nYWfUnYjC5Aw,Please make checkbox rectangle. its wierd to have a circle checkbox. feel like a bullet point but its not,3,0,2.14.152,2020-04-04 03:25:31,,,newest,com.microsoft.todos +Debra Gilchrist,https://lh3.googleusercontent.com/-jvcyXYvGOKo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNAQbdfeVTwknLP1iYjYyVCSoZ92g/photo.jpg,"Ok, works like Wunderlist, which was wonder-ful, except it doesn't integrate with Google calendar. WTH?",3,0,2.14.152,2020-04-03 05:22:38,,,newest,com.microsoft.todos +ankit porwal,https://lh3.googleusercontent.com/a-/AOh14GgEeo1YOwC04LjONxvPi-IR2qvvPBpcit_9Q0U-Og,Not able to see flagged emails which are overdue or which are due after tomorrow . It would be great if we are able to see all the flagged emails at one place,3,0,2.14.152,2020-04-02 13:28:41,,,newest,com.microsoft.todos +Dr Waribo Edwin Urum,https://lh3.googleusercontent.com/-wpFus4mIJdM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPh8dfKbHP7_CFRm8KhdWpJePLlqQ/photo.jpg,Good.,3,0,2.14.152,2020-04-02 12:33:15,,,newest,com.microsoft.todos +Franco Principe,https://lh3.googleusercontent.com/a-/AOh14GhDmtkUYco0OKNZMwEGC-xFdFOrFQQCgWKNG3iINA,"Update 02.04.20. I was using this for a while but I returned to my old task manager of 15 years (updated versions of course). I like this out because it syncs between android and my macbook pro. works a charm. only issue - doesn't handle recurring tasks such as ""recurs on the second tuesday of the month. ..."" etc. simple recurring tasks are fine (every second monday). overall very good. easy to use. Once recurring tasks are implemented completely this will be superior!",3,5,2.14.152,2020-04-02 07:58:56,,,newest,com.microsoft.todos +Marc Albrecht,https://lh3.googleusercontent.com/a-/AOh14GgNYDHl3h2qmGJWitmNjSfXNbvbbBpcJLzBa7k6,"ok, but feels like untested alpha state software. tricky to navigate quickly when called from a widget, direct call entry for phone calls seems to be missing (though that's the first thing one needs in a todo list), sorting tasks is either impossible or a well hidden feature, sharing and assigning is very rudimentary.",3,0,2.14.152,2020-04-01 21:52:21,,,newest,com.microsoft.todos +Luksa Barovic,https://lh3.googleusercontent.com/a-/AOh14GjsGRx7k63qF9FJErwc8qqZG3zF-T4Eu7UxVAldPVc,"Migrating from Wunderlist couldn't have been more painful. First I had to open Microsoft account just for this app. Then, importing from Wunderlist messed up owners, all lists that were shared to me ended up as mine, I had to re share them to the original owner again. Anyone invited to the list must have MS accounts, I had people leaving because of this. And I don't get any notifications when people add new tasks. It may look the same as Wunderlist, but the app is starting to annoy me...",3,1,2.14.152,2020-04-01 20:17:25,,,newest,com.microsoft.todos +Loretta Love Huff,https://lh3.googleusercontent.com/a-/AOh14GiI1Om4hOUUwhkI3aYZKCbfSk8Zc3uig0qSZ078,I preferred Wunderlist. I wish MS kept more of its functionality.,3,0,2.14.152,2020-04-01 19:39:23,,,newest,com.microsoft.todos +Akshay Kuntewar,https://lh3.googleusercontent.com/-EYWdXzHRk3Y/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMKChzyq5boXz25h1ULVeyajzkUgQ/photo.jpg,"Its good. The only thing that is missing is the time inclusion. Like at what time a particular task is planned. If that can be added, it would be perfect. It would be like a personal calendar and activity planner together. I hope that can be added.",3,0,2.14.152,2020-04-01 18:52:45,,,newest,com.microsoft.todos +james weston,https://lh3.googleusercontent.com/-uFtCEuM9Y40/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOrEYdONNk2CiMp-UDWsjTEE6e5Ag/photo.jpg,Good but preferred Wunderlist before Microsoft bought it out,3,0,2.14.152,2020-04-01 13:01:05,,,newest,com.microsoft.todos +Lex Docks,https://lh3.googleusercontent.com/a-/AOh14GjQk7X_P6pQZtPNv0rxIyeeWO6Ydipjo2ZnM8zIKg,Never used instant delete,3,0,,2020-04-01 05:14:42,,,newest,com.microsoft.todos +Ricardo Briceño,https://lh3.googleusercontent.com/a-/AOh14GjT5gekkKguUaLXpcJoQAk1OXkm98cw8trj4owe,"Disappointing and unreliable. It's sad to see this app struggles to be as great as its predecessor: Wunderlist. If you set a daily reminder and one day forget to mark it as complete, the app will not remind you again about it. If the due date and reminder date are different you will not be reminded about the task. I don't care if I'm receiving a notification about a thing I had to do 3 weeks ago I just wanna be reminded. No one is this strict with dates. I hope this helps improve the app.",3,31,2.14.152,2020-04-01 02:53:17,,,newest,com.microsoft.todos +Tite Páez,https://lh3.googleusercontent.com/a-/AOh14GjQszpGY7153qxztNJrCrbPEFaLsJDVaydawXmTJQ,Resulta incómoda y da pereza usarla. Falta mucho por mejorar. La actualización automática de mi día hace muchísima falta y básicamente uno se tiene que acostumbrar a la app en vez de que a uno le guste.,3,0,,2020-03-31 18:30:13,,,newest,com.microsoft.todos +Rakan Zaid M,https://lh3.googleusercontent.com/a-/AOh14Gg2AVixmAbCAP4GbzPlnSrk35Go5GmOhKm-h3gt8A,"this app is great, but please add the copy list feature on android too, and also ""uncheck all"" feature so i can reuse a routine list without uncheking all one by one",3,0,2.14.152,2020-03-31 17:53:39,,,newest,com.microsoft.todos +Thomas Keeley,https://lh3.googleusercontent.com/-nxOJHakbdbQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPt-L7y53KNIzRdOY-N_G3PNTfKXA/photo.jpg,"Mostly really good, great for sharing tasks between people/phones/desktops, but the widgets on Android keep clearing themselves and have to be re-added to work again, and repeating tasks constantly change the day they alert you on, reminding me the day after or before I set them to. I keep having to edit them back again. Really frustrating. What's the point in a daily reminder if it keeps changing to try and alert you the day before it existed? Edit: and again, anytime there's a clock change!!!",3,44,2.14.152,2020-03-31 17:40:22,,,newest,com.microsoft.todos +Sutirtha Guchait,https://lh3.googleusercontent.com/a-/AOh14GgHUhXvYkidxz_q5PiohERh-o040yldQWvjcNBkVw,Add sub task option...,3,0,2.14.152,2020-03-31 11:40:34,,,newest,com.microsoft.todos +Corbin Tate,https://lh3.googleusercontent.com/a-/AOh14GgQN9ZyjMuRXmvuDe5xg7HrTLdNlrE3o5uQDs13dA,I like this app but I want to make it where I can make it a daily a routine. So the due date should also have time.,3,0,2.14.152,2020-03-31 01:23:52,,,newest,com.microsoft.todos +Neil Curtis,https://lh3.googleusercontent.com/a-/AOh14GiQrIxt9q5DGN6q_OkxgEh0PK_k7OdURzIidx6YMoA,"Before this, l used Wunderlist solely for my do listn I used Workflowy for ongoing notes and events throughout the years. I ike this app, but if you don't get everything done yesterday's then My Day iwhen you wake up the next day, My Day is blank. Imagine making to do list on a posted note and the next morning it was blank? That's not saving me time. Don't know why they didn't put that in when developing the app.",3,1,2.14.152,2020-03-30 12:09:39,,,newest,com.microsoft.todos +Jino Mathew,https://lh3.googleusercontent.com/a-/AOh14GhVTo2wmi5-tlWn6yWeGo5RGP2pcsP1TCK-mmYcjQ,Please add a transparent widet. Swipe to finish tasks would also be nice. It would be really great if we could add comments to individual tasks.,3,0,2.14.152,2020-03-30 03:59:51,,,newest,com.microsoft.todos +Sergio Arone,https://lh3.googleusercontent.com/-5j2BNj_HsPE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMoZSYNs5DQ9wLiUNCqctcD2bwo-g/photo.jpg,"Easy to use, intuitive, has issues to share the kist woth somebidy if one of the use is using a school or work account. Non collaborative.",3,1,2.14.152,2020-03-29 17:26:24,,,newest,com.microsoft.todos +Hubert Vallée,https://lh3.googleusercontent.com/a-/AOh14Gj6SlGWRnu45wbDxteafUXC0K7DoB1LhtaXNxhH,"Coming from Wunderlist, I am disappointed. So much wasted space in the user interface and no way to make elements smaller. The overall look is also less slick. It really is a ""to do"" app while I'm looking for a listing app. Will have to find an alternative.",3,1,2.14.152,2020-03-29 16:21:45,,,newest,com.microsoft.todos +Vinh Nguyen,https://lh3.googleusercontent.com/a-/AOh14Gh6woYZrhpyWvLGL4qowZqHxX3CQBggf8rOM9zTQg,It's good. But coming from wunderljst the spacing in this app between task is too big. When having many task. The list get unnecessary long and cluttered. Please adjust or make it adjustable. Will rate 5 stars if adjusted.,3,0,2.14.152,2020-03-28 22:28:02,,,newest,com.microsoft.todos +Trip Philippines,https://lh3.googleusercontent.com/a-/AOh14Gi3Bi01zNza7W4IkY9W51IKs_wfXTSs7Kdk5Kd0rg,Good enough for a to-do list app. A few additional features would make it even better though: option to re-arrange list; rename/edit an existing item; add a note or comment on an item; sync interval to save battery life,3,0,2.14.152,2020-03-28 16:54:53,,,newest,com.microsoft.todos +JL,https://lh3.googleusercontent.com/a-/AOh14GjoItaYPly8m6EwhsZyEnA1L8i6m1sEeyhzpVunZg,Cannot show all task of different accounts in widgets?,3,0,2.14.152,2020-03-28 15:07:06,,,newest,com.microsoft.todos +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Please add a calendar. It would be great to have outlook calendar sync to it. Having to use outlook calendar & microsoft to do is a bit of a pain. All in one app would be perfect. Some people need to actually see their calendar, so planned and tasks don't really work, although it is a great idea.",3,16,2.14.152,2020-03-28 12:29:49,,,newest,com.microsoft.todos +Tiago Taveira,https://lh3.googleusercontent.com/a-/AOh14GhdwNyiqrqRdHpNm4cf9jBqgQe6IiQAHeQKJkC2Zw,Long time Wunderlist user here. What I feel that can definitely be improved is the snappiness with which each task list opens - right now there's always a small loading delay when clicking on a given list.,3,0,2.14.152,2020-03-28 11:48:58,,,newest,com.microsoft.todos +m0rbid Ghost,https://lh3.googleusercontent.com/-wgFGT-mRoXw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMr6c6-D2uvhRL6l5MQOX1nuCdEgQ/photo.jpg,Not as good as wünderlist sadly.,3,0,2.13.151,2020-03-28 02:41:58,,,newest,com.microsoft.todos +Lisa Tomson,https://lh3.googleusercontent.com/-30nudCFSSkM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNJimX7AVTiPasZ6ih5KmiuJYxlFw/photo.jpg,Wunderlist was more user friendly. The application sticks on one screen and won't let you close out of a list. I have to close out application completely.,3,0,2.12.149,2020-03-28 00:57:28,,,newest,com.microsoft.todos +Saar Oz,https://lh3.googleusercontent.com/a-/AOh14GgVhnS_Xc8yVlkdUFI1XDNWwiYT6NQlCpbfl2jYAw,It replaced Wunderlist but actually the functionality was down graded . Sharing is done with a link instead of directly with a contact,3,0,2.14.152,2020-03-27 19:41:35,,,newest,com.microsoft.todos +AUDREY ESTELOW BOCK,https://lh3.googleusercontent.com/a-/AOh14GjFhrUX1IG2rvEjKw_l_ep95YkBY8kbRPUs_LsXaw,Ok,3,0,2.14.152,2020-03-27 14:30:06,,,newest,com.microsoft.todos +Ania Gozdzik,https://lh3.googleusercontent.com/a-/AOh14Gh0rZyq_CMQFEOjJ8rExdXHraXyvgodweO8uc33,The feature that I liked in Wunderlist is that you could move items around on your list manually. This is missing from this app.,3,0,2.13.151,2020-03-27 01:27:20,,,newest,com.microsoft.todos +1efty,https://lh3.googleusercontent.com/a-/AOh14Gjz9p-KgBPLvfbwl2rBSzniMA8gX_g1Fq30-BEyhQ,Ok,3,0,,2020-03-26 17:26:54,,,newest,com.microsoft.todos +Ikra A,https://lh3.googleusercontent.com/-32MKhrbiUrQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNg8w_Zqf1HmlG-FFpJXZB6HxQkgw/photo.jpg,in middle,3,0,,2020-03-26 14:59:58,,,newest,com.microsoft.todos +Alireza Kamyab,https://lh3.googleusercontent.com/-sxM3g9nuBo8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOrzzEsaCtI7U9ONUgyQJ_Ag24wGg/photo.jpg,This app is pretty good and works well but I was wondering if you could make the designing as well as the app on the web.,3,0,2.13.151,2020-03-25 14:48:52,,,newest,com.microsoft.todos +NJ E,https://lh3.googleusercontent.com/a-/AOh14GiYr8SJw2aM0aqJ3Y2UvXrhnMi7xmOjLsv8PvtQNQ,"++ BUG: confirm to delete doesn't appear after swipe to delete action, but does appear during select item/menu delete. Shouldn't it be the other way around? (easier to accidentally swipe) Or for both? ++ pls add animation to indicate syncing progress so we know when we can force quit ++ pls add option to add tasks to top of list ++ sorting seems random when choosing to show completed tasks; shouldn't all completed tasks be stacked under non completed? Or is it chrono but we can't see it?",3,4,2.14.152,2020-03-25 12:08:29,,,newest,com.microsoft.todos +jumpstart script,https://lh3.googleusercontent.com/-CFQ1v9_4AN0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOziChM9_VNhkSXuVLMR8yAmtqQ1A/photo.jpg,"Please at least put an option to use the previous theme. I like the previous one with flat design (minimalist). If you could also put a feature to have other place a comment on our list, that would be great. Kindly prioritize the option to use the minimalist/flat design theme... It is less distracting which makes me more productive. I recommended this to my friends because of its design... good thing my other device is not set to auto update.. i was able to retain the previous version...",3,3,2.13.151,2020-03-24 12:00:19,,,newest,com.microsoft.todos +Krishan Murari Gaur,https://lh3.googleusercontent.com/a-/AOh14GiFWerutwKlGh5SJOp3NyKdDblppOVmIKa1pIZn,Yas,3,0,,2020-03-24 10:14:39,,,newest,com.microsoft.todos +Zac Stares,https://lh3.googleusercontent.com/-fRi8-vCakHw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMTL_hx-3nywh4x-nKvELsJ-zaRRQ/photo.jpg,"On Wunderlist, your starred/prioritsed list would break down into the original lists they came from - now they all melt together. On the starred/prioritised list you could also reshuffle jobs by holding down - now you can't.",3,0,2.13.151,2020-03-23 14:00:19,,,newest,com.microsoft.todos +Aquib Qureshi,https://lh3.googleusercontent.com/a-/AOh14GhGXkxjwnULD_BAfn3r2cXtuqYbR_6O0PHqFnP8,"Awesome App, if you could add undo feature : if we make any changes to the todo unexpectedly and press back then it saves it and we cannot find what was the original memo.",3,3,2.13.151,2020-03-23 13:07:47,,,newest,com.microsoft.todos +Barbara Cormack,https://lh3.googleusercontent.com/a-/AOh14GjUvIzX0xj4-q_MCmyT3B8PH8nyGvj7_gcsuc3Q,There are functions available that I can't find out how it works ... i.e. assign to me. Otherwise just what I needed. 😊,3,0,2.12.149,2020-03-23 09:09:41,,,newest,com.microsoft.todos +Joe Brangers,https://lh3.googleusercontent.com/a-/AOh14GjIbRp8md9_dSj3NkU7VE5DgfvoOebUo_uATEgC,"Continue to get Sync error on this app only. Can use web and see tasks. Cannot figure out how to fix. I've uninstalled this app sever times, logged in, logged out, stopped app, cleared cache, etc. Nothing corrects it.",3,0,2.13.151,2020-03-22 16:17:58,,,newest,com.microsoft.todos +Naomi Hardeman,https://lh3.googleusercontent.com/-LpLf2QJRRxQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOtpPw8WmQDIWheM9w08HVI0-c8nA/photo.jpg,There is no ability to comment like in Wunderlist. Had to individually share all my synced lists with my husband and then he had to accept and delete all the doubles. Should have just been able to share links with another user.,3,0,2.13.151,2020-03-22 10:23:56,,,newest,com.microsoft.todos +Ashley Artman,https://lh3.googleusercontent.com/a-/AOh14Ghr9irrt4MsvoJ5IhF8WaZLDGoC_6vEy1MKK8Au,"I love how the app is almost exactly like the last one. The only irritating thing is that the ""show completed..."" button is no longer at the bottom of the list. This button was used so much due to my fingers accidentally completing a task. I would just hit the 'show completed' button and my most recent item would be at the top ready to re-add to my list. Now we need to go through a few buttons to find it and it doesn't bring up the most recently deleted item. Very irritating!",3,80,2.13.151,2020-03-22 06:29:56,,,newest,com.microsoft.todos +Matt Czimer,https://lh3.googleusercontent.com/-hSHgCoIRH4o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOQhCNUPDSJ5B-fevfFh0Uosg5H_w/photo.jpg,"App did not properly import all data from Wunderlist as Microsoft claimed it would. All of my 'created dates' for items in my list got wiped amd set to the current month day and year of when I did the import a couple days ago. This would seem to be a simple table record to grab from the Wunderlist database, to transfer over to To Do. I would expect a cleaner and better QA'd experience from a company like Microsoft. This is as of build #151.",3,3,2.13.151,2020-03-21 22:51:14,,,newest,com.microsoft.todos +Marvin Joosten,https://lh3.googleusercontent.com/a-/AOh14Gh3AnO557ncrtiQeRqwyTRjjPpHsEWdmqLupyrkMUI,"fine app, but I'm getting really tired of being forced to use a Microsoft account everywhere",3,0,,2020-03-21 22:25:30,,,newest,com.microsoft.todos +Christina Quigg,https://lh3.googleusercontent.com/a-/AOh14Gi1q3WgDP7FmyWZcvkGavdNQgOE3HYJ49ODYd65,#list #to-do,3,0,,2020-03-21 19:54:59,,,newest,com.microsoft.todos +Nathan Lyle,https://lh3.googleusercontent.com/-g6noRQkoE6U/AAAAAAAAAAI/AAAAAAAAACY/AAKWJJNAz7_qEdtJUUkb2m_tNY_3yJF-nw/photo.jpg,Don't use it much,3,0,,2020-03-21 11:27:11,,,newest,com.microsoft.todos +Loreto Notarantonio,https://lh3.googleusercontent.com/a-/AOh14GipFD6u42VG4-ECh5pfWHawmcgWAazhAQzhm1V1,"Potrebbe essere interessante ma molto lontano da Wunderlist. E' molto tempo che è partito il progetto e non capisco come non si sia riusciti a catturare le cose positive di Wunderlist ed inserirle in questa nuova app. Delete è troppo definitivo, creare un trash per recuperare le note e magari con cancellazione a tempo. Ho scaricato anche la versione desktop ed ha dei problemi che vado a segnalare. Al momento la tengo in stand-by in attesa di verificare le future release.",3,0,2.13.151,2020-03-21 08:08:37,,,newest,com.microsoft.todos +William Ayers,https://lh3.googleusercontent.com/a-/AOh14Ghqe4wGiRR3Rq06ghtPIT_7E3X06XQ0TP5H_S49iw,No Sweet Thanks,3,0,2.13.151,2020-03-21 07:36:57,,,newest,com.microsoft.todos +Joel Hardeman,https://lh3.googleusercontent.com/a-/AOh14Gj-FVkzLqb8WsARdnHeI2YxIrBP0Qd2qHUg4lX7lw,"I miss the Today, Week & All shortcuts that Wunderlist had at the top. The Planned replacement is not as easy to view or follow my week ahead at a glance. The automated transfer seems to have worked well so far. UPDATE: Sharing lists previously shared with my wife now creates a double so that needs to be fixed ASAP. Wunderlist would randomly delete scheduled reminders in bulk, hopefully To Do has put a stop to that.",3,3,2.13.151,2020-03-20 22:57:09,,,newest,com.microsoft.todos +Jeffry C,https://lh3.googleusercontent.com/a-/AOh14GjflDcajDEnpbwtUWWeFBv8FWrPbT7qRAZOYgs,"Mostly works well, but I am rather disappointed with the syncing issues my wife and I are experiencing. I'm unsure as to what Microsoft has changed from the ""Wunderlist"" app that I've been forced to switch from, but this app does not work as quickly and nicely as wunderlist did, which I had been using for 2 to 3 years constantly because it worked so well. Please revise this app so that connectivity problems from servers can be solved. I am unable to sync some/all of my shared lists.",3,13,2.13.151,2020-03-20 11:55:17,,,newest,com.microsoft.todos +Peter Mead,https://lh3.googleusercontent.com/-pQ4IMjCVjtE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOx99D_FQp5X5EiVRQZVZZmRJ_5pw/photo.jpg,"Appears to work the same as Wunderlist, and imports your lists, but if several people share a list, you can't share it anymore.",3,0,2.13.151,2020-03-20 09:46:16,,,newest,com.microsoft.todos +Zaid Merc,https://lh3.googleusercontent.com/a-/AOh14GgD3xG6mnMCrAQOeyVYN0qCAevTpf07UObv0-d0Ujk,No auto/custom tags?!!! Really??,3,0,2.13.151,2020-03-20 09:12:08,,,newest,com.microsoft.todos +Vegeto TrSeven,https://lh3.googleusercontent.com/a-/AOh14Gg7x3D20xoZBvt8LEH5BGuIocQdn_lQj4BOQAgk,Has a lot of potential,3,0,2.13.151,2020-03-20 07:20:07,,,newest,com.microsoft.todos +Amal Shouib,https://lh3.googleusercontent.com/a-/AOh14GidRJvwIxtaZQ81WlF8z7Vx9py5g9tE2LgKYHL16g,Very good app,3,0,2.13.151,2020-03-20 06:14:23,,,newest,com.microsoft.todos +Amanda Pridmore,https://lh3.googleusercontent.com/a-/AOh14GjkWSTrZu7fmiNsPfPWKsgEZJUc5NnzKhU2Lp_W,"Forced to migrate. I'm annoyed that you can't drag and arrange tasks manually if ""sort by"" is on. I need to be able to arrange tomorrow's tasks in the order I want to do them, not whatever order the app decides.",3,0,2.13.151,2020-03-20 03:03:09,,,newest,com.microsoft.todos +Debbie B,https://lh3.googleusercontent.com/a-/AOh14Gi7eEVi4eljv3_hd_XrolcGIdDzxtmZ32d0PiFg,It's ok. When we imported our list from Wunderlist the list was duplicated. My husband and I share a list for shopping. When we connected through this new app every item on the list was duplicated. Frustrating to clean up.,3,1,2.13.151,2020-03-20 00:50:02,,,newest,com.microsoft.todos +Sean Sweeney,https://lh3.googleusercontent.com/a-/AOh14GhAI16JSmRRwdeD6HcOj5WJK09pXaO3usC7_Gqea1I,"Still has bugs that Wunderlist did not. For instance, the widget that I usually keep on my launcher with lists of things to do oftentimes goes blank and stops working. I'm totally fine with replacing a product with a more modern offering, but it needs to work properly.",3,3,2.13.151,2020-03-19 19:50:23,,,newest,com.microsoft.todos +Rachelle P,https://lh3.googleusercontent.com/a-/AOh14GgihwFa5l_eyrDfDYnIoLTEYyPTCHr_bHxGF53r8A,I prefer Wunderlist since you can move around the tasks but app doesn't allow that flexibility; only broad sorting features.,3,0,2.13.151,2020-03-19 14:34:35,,,newest,com.microsoft.todos +Sandor Kacso,https://lh3.googleusercontent.com/a-/AOh14Gj3RV_pw1HUrlu2pc__OI2_-ZfkOpv2HsjsMwIhYQ,"Please, please...weekly plan!!!!",3,0,2.13.151,2020-03-19 04:33:42,,,newest,com.microsoft.todos +Bernice Wong,https://lh3.googleusercontent.com/-6bScoTm90B0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO8MUHxkkMWWUtElZufx7Vn2IFmtA/photo.jpg,I love Wunderlist. One huge feature that To Do is missing is I can't manually reorder individual tasks in the list. I used to be able to move it up and down according to the order I want it done.,3,0,2.13.151,2020-03-18 23:11:58,,,newest,com.microsoft.todos +Gary Kopco,https://lh3.googleusercontent.com/a-/AOh14GiLp7dtLU7owSSrd9oKxpFHxyRZmjZMDwXP2Gc,I prefer the Simplicity and organization of the old Wunderlist app over this new Microsoft app.,3,1,2.13.151,2020-03-17 16:47:17,,,newest,com.microsoft.todos +Jovid Flores,https://lh3.googleusercontent.com/-_agI1F1AGKk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPr9QgpjqKjLh9fstjIwXcE5_Jk_Q/photo.jpg,I like this app. But it would be better if the duplicate list feature is included in the mobile version.,3,0,2.12.149,2020-03-17 08:13:38,,,newest,com.microsoft.todos +Murali N,https://lh3.googleusercontent.com/a-/AOh14GigbqZSvQ-mUSKm2LU_jkAXPnt2XY4Kw4SGq9bpNQ,"I am setting daily targets , it means when i open the app i should able to see it as a list ,weekly target /monthly targets/yearly targets are to be alrady suppose to be designed , my work is assingining task i suppose wishing to add for daily or weekly or monthly or yearly targets",3,0,2.13.151,2020-03-17 06:18:12,,,newest,com.microsoft.todos +A M,https://lh3.googleusercontent.com/-dA01DTWsA0Q/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOmAsBsZpXv6ZxwGe90UvBk4DaruA/photo.jpg,Not happy that when a new task is entered it goes to the bottom of the list instead of automatically to the top like it did in Wunderlist. It's crazy that you have to drag every entry to the top of your list.,3,2,2.13.151,2020-03-15 22:38:17,,,newest,com.microsoft.todos +Paul Johnson,https://lh3.googleusercontent.com/-avbXQddEO7s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNl8n-00cAqHFsaNzfS78AqUH4uZg/photo.jpg,"Whilst *most* of he functionality is there, I preferred the look and feel of Wunderlist much more.",3,1,2.13.151,2020-03-15 17:52:13,,,newest,com.microsoft.todos +Hugo Uchôas Borges,https://lh3.googleusercontent.com/a-/AOh14GiJ7WoJJx5LWkq_4Ij2neirJPfRg0C4hbX5wB6nTSg,"Enquanto o sistema não oferecer no mínimo todas as opções oferecidas pelo Wunderlist (extensões) não fará sentido ter os comprado. A funcionalidade ""Meu Dia"" é boa, mas não faz sentido. Façam com que tarefas que estejam AGENDADAS para o dia sejam automaticamente adicionadas no ""Meu Dia"".",3,0,2.8.145,2020-03-15 14:23:07,,,newest,com.microsoft.todos +JustTheBeginning,https://lh3.googleusercontent.com/a-/AOh14Gj-hauhp2-hlD-jaf6opSRSsivX5hkIrxTxUFfJ_Q,How come you can't rearrange things in ALL the list? 😦,3,0,2.13.151,2020-03-15 14:08:39,,,newest,com.microsoft.todos +Jamie Wightwick,https://lh3.googleusercontent.com/a-/AOh14GhWzc1NqhcmCMcBHj7Fwju6HBVVQiL9nuX0O5nqdg,"Still frustratingly basic compared to Todoist. I'd love to move over and consolidate within the Microsoft ecosystem, but there's still so many quality of life areas that are lacking in To Do. Can I suggest starting with natural language support for setting up tasks though? It makes it so much quicker to use.",3,3,2.13.151,2020-03-13 14:41:48,,,newest,com.microsoft.todos +jean philip,https://lh3.googleusercontent.com/a-/AOh14Ggd6TF2n76qLecoBHkEwwpkdy9K1wBn7hS_eHqf2rU,1. I didn't get the desktop icon. 2. We tried sharing for shopping but it didn't sync.,3,1,2.13.151,2020-03-13 05:10:47,,,newest,com.microsoft.todos +Gail Murphy,https://lh3.googleusercontent.com/a-/AOh14Ggnn5KYBqiJHvSCWrHqfC_nEeKsoBSBo6o2GWbUIA,"You have not made it possible, as far as I can see, to assign certain tasks to separate people inside a list...... When I go shopping with my husband he has his assigned items and I have my assigned items. If you have made it possible to do this then please let me know how to access it. I am not as happy with this app as I was with Wunderlist and I'm sorry to hear that you're getting rid of the perfect app",3,1,2.12.149,2020-03-13 03:36:29,,,newest,com.microsoft.todos +Kushal Poudel,https://lh3.googleusercontent.com/a-/AOh14GiXc5GvEG4hkIcjIZUWgDmhXdhBLnQNHrW8kVcxIQ,"Feature request: Natural Language support: When typing 'today at 3 pm' or 'tomorrow at 10 am', it should understand and set the due dates accordingly as in Wunderlist.",3,1,2.12.149,2020-03-13 03:08:32,,,newest,com.microsoft.todos +Phil Ormsby,https://lh3.googleusercontent.com/a-/AOh14GgDGl7YFShZgdEefcPXxdKFXyLwR1jHxQnPpTBtPH8,"How about letting us pick from a custom color palette for each list. The supplied ones are insipid and limited. Also, sharing. My wife and I keep getting this message when trying to share lists (not all of them - just some, go figure): Unavailable List - It looks like this list isn't available. Try Contacting the person who invited you. Err, okay, then what? Bringing over shared lists from Wunderlist is a disaster. Utterly out of sync.",3,19,2.12.149,2020-03-13 01:49:08,,,newest,com.microsoft.todos +J S,https://lh3.googleusercontent.com/-MX2WmgBvJJA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMUL76LpN_Yg-mCBKX61h5D_o2ANg/photo.jpg,Missing integration with Google calendar.,3,1,2.12.149,2020-03-12 19:23:29,,,newest,com.microsoft.todos +Dave Weintraub,https://lh3.googleusercontent.com/-sMmbeQDsSdk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNJqWDhhjfxvOfcJCYDJS8-nEP-Vw/photo.jpg,"Cannot share lists. Send invitations from both directions, to lists imported from Wunderlist. On both sides, get ""Unavailable List""",3,1,2.12.149,2020-03-12 18:53:35,,,newest,com.microsoft.todos +Mike Collins,https://lh3.googleusercontent.com/a-/AOh14Gi6QwNOSqmNyklvErWpT0x3PQ6el5ysDAhJ8gb4,Sharing lists doesn't work nearly as well as it did in Wunderlist. Otherwise ok.,3,1,2.12.149,2020-03-12 16:51:40,,,newest,com.microsoft.todos +Vijay Govind,https://lh3.googleusercontent.com/a-/AOh14GjGZB5PCKyZ0hNUPubpE4R_nMVi2BdVhoKMZC21,I need the facility to create a new list by duplicating an existing one as available in Wunderlist. I am unable to find it in this app.,3,1,,2020-03-12 16:50:18,,,newest,com.microsoft.todos +Nick Chebykin,https://lh3.googleusercontent.com/a-/AOh14Gj_R8cEKsNyHgRoS1egwoooucBxHB8PpzOQ9jUbPQ,"Please make an google account login, tired of Microsoft auth shenanigans.",3,1,2.12.149,2020-03-12 13:35:32,,,newest,com.microsoft.todos +Timur Fayzullin,https://lh3.googleusercontent.com/a-/AOh14Giz5YhGh3V4mBBMzy72Xjriol7bnp_OP1ZYn0U2Ag,"Add ""all tasks"", as it was in Wunderlist",3,0,2.12.149,2020-03-12 10:02:33,,,newest,com.microsoft.todos +Chase Casey,https://lh3.googleusercontent.com/a-/AOh14GhS5Crw5C0Noq9u10NyqgNnvSjV7jp16jY4BajQ,"For anyone who wants to manually order your list, just long press the task and drag/drop it. It's really easy. My 3 out of 5 is because the widget seems broken. I have a large 3 x 3 widget to see my Planned tasks. The list randomly disappears in the widget. Open the app and it's still there. Go to the widget it's still missing. Randomly it comes back. If this gets fixed, it'll be 5 of 5.",3,9,2.12.149,2020-03-11 23:10:49,,,newest,com.microsoft.todos +Joe Macnaughton,https://lh3.googleusercontent.com/-xHqKEUi4EEQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOnCk5wfqLlObnhViuO0lzvCow0jg/photo.jpg,Easy to use but lacks neccessary functionality to make it really useful. Needs to be able to pull thorough tasks into My Day based on 'repeat' and 'due date' rather than having to maually add to My Day.,3,0,2.12.149,2020-03-11 21:04:07,,,newest,com.microsoft.todos +Ken Bauer,https://lh3.googleusercontent.com/a-/AOh14GirJ_cl9Wa3Mok9DSDGmnVa4FKo3pjkGupGED7Ruw,"This used to be great app for tasks, but with recent update, i can no longer move each task around in widget according to importance or my day. Frustrating as i luv organizing each days tasks in order. Not in wiget anymore.",3,4,2.12.149,2020-03-11 17:28:50,,,newest,com.microsoft.todos +Sidharth Vardhan,https://lh3.googleusercontent.com/a-/AOh14GiTK6f400mB6BFTd-_D5aO9dophIQiovg6bfJ1JiA,Very redundant,3,1,2.7.142,2020-03-10 14:03:47,,,newest,com.microsoft.todos +Shankar Teckchandani,https://lh3.googleusercontent.com/a-/AOh14Gi0O2MNmI_q4-0s7Bbuvod6Aw3upEFNDbJ_n0HlnA,Easy to use,3,0,2.12.149,2020-03-10 12:54:46,,,newest,com.microsoft.todos +Penny Akester,https://lh3.googleusercontent.com/a-/AOh14GgY6rHGcVY79iS4Ogn__SzOr3Dp4r8y_XwQ00p-mA,"Poor - completed tasks stay within the list dotted all around, today shows items due tomorrow before thise due today, tasks dragged from one list to another stay in original list - not very useful, I'm looking for an alternative",3,1,2.12.149,2020-03-10 09:22:26,,,newest,com.microsoft.todos +pam lovejoy,https://lh3.googleusercontent.com/a-/AOh14Ggo-wf_QEb_59W8CPub6KkErE2m-OTzRVvvg23CUQ,have not used the app ...,3,0,2.12.149,2020-03-09 17:49:01,,,newest,com.microsoft.todos +Wendy H Werb,https://lh3.googleusercontent.com/a-/AOh14GiZh_kvk2v0PZ9zDFhCrnAocqh8Ngc1pGg5K5vuBg,"Not happy with the switch from Wunderlist. Why did you remove the option to assign a list to a group at the time you are creating a new list? It is cumbersome and time consuming to have to drag the list to a new group, especially when you have numerous groups and lists as I do and I move them often. What a pain!",3,70,2.13.150,2020-03-09 16:25:08,,,newest,com.microsoft.todos +Kathy Clyne,https://lh3.googleusercontent.com/a-/AOh14Giz75CPR8QM0af1_RNr-To3tsPT-lpieHzTigJOmg,Dont have a microsoft account,3,0,2.12.149,2020-03-08 14:23:39,,,newest,com.microsoft.todos +Mugy Kalm,https://lh3.googleusercontent.com/-W4AFmjp-lJU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPfuVUrjD_O9S-CnlogJcZn30TJtA/photo.jpg,I am examining the possibility of transferring from the excellent Wunderlist app to this Microsoft To Do. It has been a Challenge so far. Question: How do I connect Microsoft To Do with Google and Samsung Calendars just as we did with Wunderlist? Thanks,3,1,2.12.149,2020-03-06 07:22:25,,,newest,com.microsoft.todos +Nadia Dumas,https://lh3.googleusercontent.com/a-/AOh14Gi8m8UsChSo6MsDZJRJfC72MovyRm5QhIW6nxtZnw,"I love the idea of this app but it seems to have issues syncing. I have the app integrated with my Office 365 account and have it installed on my desktop as well. When I update tasks on my phone app, it doesn't consistantly sync to Office. Same thing for my desktop app. I end up having to adjust each platform separately. NOT SMART AT ALL.",3,0,,2020-03-05 23:32:44,,,newest,com.microsoft.todos +Saidinarts,https://lh3.googleusercontent.com/a-/AOh14GiZE7a8BECKvLOdVSrE4T60nM0U5F_G5OOTeuw,"I like this application a lot. It is a very productive too. They only issue I have is with the notifications. They seem to quit working after a while. I don't know what necessarily makes them start working again... Either starting the app back up, restarting my phone, or both. Nothing else seems to have this issue.",3,45,2.12.149,2020-03-05 19:13:38,,,newest,com.microsoft.todos +Rajoo Mannari,https://lh3.googleusercontent.com/a-/AOh14GjfaHLDqip5GpQYzeakRCvqHXM9An5VWPJsNXXxlg,good.one,3,0,2.12.149,2020-03-05 07:41:40,,,newest,com.microsoft.todos +About Islam,https://lh3.googleusercontent.com/a-/AOh14GjRQ25RYjgOM-xbk-OEH39uEOO1J4k0kQFfsvOTzA,"Good, Mazeed behtri lai ja sakti hai.",3,0,2.12.149,2020-03-04 11:45:30,,,newest,com.microsoft.todos +Andrew St.Hilaire,https://lh3.googleusercontent.com/a-/AOh14GjBJebdzTl5hsBpjt53fINoYv6Q0iBPfw6AnzkmR5U,"5 years after acquiring Wunderlist, Microsoft has still failed to replicate the great to do list manager. Critical features missing include natural language support for due dates (not available for Android or desktop), grouping of lists, and email notifications for reminders. The app has come a long way but man, what a shame it's taken 5 yrs and they still haven't even matched the old app and now they're sunsetting WL. That's 5 yrs which could have been used to enhance an already great app.",3,70,2.12.149,2020-03-04 07:39:20,,,newest,com.microsoft.todos +Luke De Feo,https://lh3.googleusercontent.com/-98BbTF5eTvM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNkgRCJ4a0PXQo7Gp-XmSVIUcmAww/photo.jpg,But of a downgrade from wunderlist. Please add a button to create a task from the main screen,3,1,2.12.149,2020-03-03 20:04:05,,,newest,com.microsoft.todos +"Michael Flint, SR",https://lh3.googleusercontent.com/a-/AOh14GhV0TncXrB6ge-vVrX_FFZQZBwjM31Zs4roMnL24hM,Any plans of allowing sub tasks to show up in the widget?,3,0,2.12.149,2020-03-03 16:03:59,,,newest,com.microsoft.todos +Anna Queen,https://lh3.googleusercontent.com/a-/AOh14Gi210UGWXcSYTiRFkfZlRgiZMqQrkf53mpM20In1Q,"Actually a great app, I'm migrating from Wunderlist, and I love the option to add tasks from other lists to ""My Day"" and focus on just those. The 3 stars are from glitches that I'm experiencing, that just make it troublesome for smooth working. First is the ""from today"" tray that keeps coming up endlessly, needing me to force quit the app, only to have it happen repeatedly. Secondly the widget that doesn't update either tasks I've added, or tasks I've marked as completed in the app.",3,23,2.12.149,2020-03-03 09:38:45,,,newest,com.microsoft.todos +Saeed Anvari,https://lh3.googleusercontent.com/-9S8s3feG0TU/AAAAAAAAAAI/AAAAAAAAARI/AAKWJJOf6GQGClZ69DIkewr9Fj3Or46UJQ/photo.jpg,It is a cosy and user-friendly to-do app!,3,0,2.12.149,2020-03-01 18:36:38,,,newest,com.microsoft.todos +Lee Randolph,https://lh3.googleusercontent.com/a-/AOh14GhCWjRu-Oyu6PncCgpPoEcwQe8ssjCZbEasJ9TQEQ,"Missing obvious feature, take a photo and set a reminder. If it had that i wouldn't use google keep anymore. Even Evernote can do that.",3,1,2.12.149,2020-03-01 18:31:49,,,newest,com.microsoft.todos +T Lasa,https://lh3.googleusercontent.com/a-/AOh14Girdr-7_BlR8ks5nQkTR5WYZhShLm8C39DC81fb,Its ok. I've started using it when I found out wunderlist was going to end and be absorbed by Microsoft. I've used wunderlist for years so its a change. What I miss most is being able to manually adjust how my items were arranged I don't care much for alphabetical ordering and going from oldest to newest or newest to oldest as the only other available options are a bit annoying. I liked being able to sort my items as needed on the daily but maybe that's just me. I love'd my lists and now meh.,3,57,2.12.149,2020-03-01 16:43:22,,,newest,com.microsoft.todos +Daniel Zhou,https://lh3.googleusercontent.com/a-/AOh14GjTKJOyBSJINJ2e0JU-KIoCiuOdps0hCGbzjLcEKg,"Does not support advanced repetition like ""every last Friday""",3,0,2.12.149,2020-03-01 15:11:01,,,newest,com.microsoft.todos +Harry Roginskii,https://lh3.googleusercontent.com/a-/AOh14Gixxo657405wA5g239L7FsT51IBr_TBXXTMKefkSw,Dark mode - done. But why on earth in 2020 I still can't rearrange my sticky notes??,3,0,2.12.149,2020-03-01 12:28:06,,,newest,com.microsoft.todos +S S,https://lh3.googleusercontent.com/-mgR4NdqhNW8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNrQ7w_uaZDubXYTCgqei7dYu8ZTw/photo.jpg,Helpful,3,7,2.12.149,2020-02-29 16:06:42,,,newest,com.microsoft.todos +Aashna Bodele,https://lh3.googleusercontent.com/a-/AOh14Gg1mpq6BP81wxeFbZUXjnUhFuaPQddhN7-FVbSqPQ,There's an option to add multiple accounts. But it keeps getting sign out.,3,0,2.12.149,2020-02-29 09:14:05,,,newest,com.microsoft.todos +Tha Filbz,https://lh3.googleusercontent.com/-TWH7ZfoCghw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMi7UGAJkVPzjY8-WaiegWM7RTJvA/photo.jpg,"Average at best. Needs undo option or on touch and that task is lost among all the other completed tasks. Needs links between tasks so dates can push out or come in. Very basic, most will find themselves wanting more from a tasking app.",3,2,2.12.149,2020-02-29 05:57:50,,,newest,com.microsoft.todos +Rakesh Kumar Singh,https://lh3.googleusercontent.com/-qs0tDeZrsgg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNlj6wFDqgBLPGp-p2tZ_i5BNC3zg/photo.jpg,why there isn't a automatic completed task deleter like feature,3,0,2.12.149,2020-02-28 15:14:17,,,newest,com.microsoft.todos +Shahrza Mugbilli,https://lh3.googleusercontent.com/-rlWtXp0Foxo/AAAAAAAAAAI/AAAAAAAADFE/AAKWJJN5VZvBxYhpxRSaTJcDB_KFRgQs3A/photo.jpg,Widget doesn't work properly. Pls fix it. Mi A2 lite. Android one,3,0,2.12.149,2020-02-28 12:02:47,,,newest,com.microsoft.todos +Alistair Duncan,https://lh3.googleusercontent.com/-rJnevDxyagw/AAAAAAAAAAI/AAAAAAAAABg/AAKWJJMFqzvWo_R3m-_NqA6Mm772n78D_Q/photo.jpg,Please provide a 'today' smart list that shows items due today. It should not be necessary to manually add tasks to a today list. That's a waste of everyone's time.,3,2,2.12.149,2020-02-28 04:22:29,,,newest,com.microsoft.todos +Alec Campbell,https://lh3.googleusercontent.com/-tRKUj_TQOK4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN7o1rgUIOXc3YXUK6FTt5okRXvqA/photo.jpg,"Overall, the app does what it's supposed to do, but a few quality of life features would go a long way - for one, a list for ""later this week"" would be nice, as would the ability to nest lists more than one deep. However, the Achilles' heel of the system is definitely its sync. Syncing frequently fails or takes forever, and is often too slow between devices to make the most of the other capabilities of the app. Honestly if a better option came out I'd jump ship in a heartbeat.",3,3,2.11.148,2020-02-28 00:55:47,,,newest,com.microsoft.todos +DR MJ RAHMAN,https://lh3.googleusercontent.com/a-/AOh14GgKuhuiVrpXlBWIritLnSc91CYt-4Fc2eX3ghN9DA,Not so helpful. But the app is good.,3,0,,2020-02-27 12:39:02,,,newest,com.microsoft.todos +Nur Syahirah,https://lh3.googleusercontent.com/-ra_2HBLjt3c/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMqmKyITTZ_hBzKVtCqkV-seI9vrw/photo.jpg,"I love wunderlist, too bad need to transfer to Microsoft to do. UI seems boring, & i tend to forget to use this app. Just make it similar to Wunderlist, the color wallpaper etc. Microsoft UI is too simple, dark is too dark, bright is too boring. Not customizable either. Please improve it",3,1,2.11.148,2020-02-27 05:27:23,,,newest,com.microsoft.todos +Miroslava Klimentova,https://lh3.googleusercontent.com/a-/AOh14GiQ-xokfGmU7ev3Nl3Hxi82hUNWx8eTcaI3thcl2g,There wasn't a synchronization between the app and outlook mail calendar.,3,0,2.11.148,2020-02-26 15:23:05,,,newest,com.microsoft.todos +Ashraf Hamdy,https://lh3.googleusercontent.com/a-/AOh14GhWW7plo6zGfxERswp_x_AuLZ-cy4sqc_SWlg_kj8c,"Decent app, my major problem with it is that I heavily use the app widget from the home screen but the widget is so buggy and it hides all my tasks randomly.",3,0,2.11.148,2020-02-25 14:49:46,,,newest,com.microsoft.todos +Doug Oliver,https://lh3.googleusercontent.com/a-/AOh14GgkAjNZxdnB3O3Xzpj18jLmJ7ah9BygJ4BtGI-VyA,This app needs a combined list of all accounts to make it usable...,3,1,2.11.148,2020-02-25 13:01:22,,,newest,com.microsoft.todos +E J,https://lh3.googleusercontent.com/a-/AOh14Gju71TmdgYnrOLWEYdT_GzZZ-oz4f0zS0naCWrlWxY,5 stars if option available that will allow tasks to automatically show under My Day for the due date or reminder date scheduled.,3,4,2.11.148,2020-02-25 04:01:10,,,newest,com.microsoft.todos +Chou Finch,https://lh3.googleusercontent.com/a-/AOh14GhWUkzGxxX4b59nqzh5qarVjJawNf6ioR_2G6CXHQ,"It did improve over time, but still needs things like ""every other day"", ""5th (or last) Friday of the month"", ""every 3 months"", etc. Went back to ""Tasks & Notes for Office 365"". Much better. I'd this gets THAT good, I'll be back.",3,2,2.11.148,2020-02-25 03:31:57,,,newest,com.microsoft.todos +Tamara Backovic,https://lh3.googleusercontent.com/a-/AOh14GjYr63WH_E8I_3JLKFvuPtNTPo-T2ojV41oY3Jj8g,"I really like the app, but you need to fix the reminders, they don't work. It doesn't pop up on time, and sometimes not at all.",3,0,2.11.148,2020-02-24 09:28:13,,,newest,com.microsoft.todos +asdf_8,https://lh3.googleusercontent.com/a-/AOh14GjKV9QFDyg1MQf_dtyWVXdJVUBTN7MTgzcs_QcHCA,"Great app because i can keep all of my tasks synchronized to my laptop. Great for a student. But on mobile I can't create new tasks with a custom due date, because the keyboard doesn't go away in the calender to chose and I can't select any other dates than those in the first week, can't even reach the save/select button. Simple fixable error but it infuriates me every time it comes up.",3,3,2.11.148,2020-02-24 06:29:43,,,newest,com.microsoft.todos +Cannibal Gurl,https://lh3.googleusercontent.com/a-/AOh14GiARv4LS70X7WZAOY8wJ4IPoSZ_VaRaOqTmCs-1,Leave it to Microsoft to screw up Wunderlist. I used it for my show notes while I was out and about. I could input my note and it would go to the top of the page. Now it goes through the bottom and I have to drag every single note to the top. It's annoying.,3,4,2.11.148,2020-02-24 05:16:57,,,newest,com.microsoft.todos +Renee Ford,https://lh3.googleusercontent.com/a-/AOh14GiZTpkWkrVjFiRmlOvLsVsquWeF_xRJSxu9c6ofLg,App is working great EXCEPT I cannot see my tasks in my calendar. I'll change it to 5 stars after this synching capability is added,3,0,2.11.148,2020-02-22 18:35:42,,,newest,com.microsoft.todos +Kathy Levi,https://lh3.googleusercontent.com/a-/AOh14GirUETVzKODJbJ3GKrPElang3aLT0YWwNj3K81c7w,"Hi. We migrated our lists from wunderlist. We use shared list but now even we shared the lists that were previously shared, they do not sync, so other people don't see the completed items. If they assign a task, they can't see it completed. There are duplicate lists with the same name, one is shared, the other one is not. When creating new shared lists, the people who received the invitation are unable to join. they see an error ""list unavailable"" I tried support, but unavailable.",3,20,2.11.148,2020-02-22 17:35:49,,,newest,com.microsoft.todos +Tellay Prado,https://lh3.googleusercontent.com/a-/AOh14Gilk9TE4LN8Au49866vfBKT4KbmwGAkGUGYD9xl5A,I suddenly can't login on my account and can't sync lists. Suddenly it became so useless.,3,2,2.11.148,2020-02-22 00:43:08,,,newest,com.microsoft.todos +Geraldine Mace,https://lh3.googleusercontent.com/-T7oEWOg2dbA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNS_Qr2k2DU0Nj0SucPtIuRoh2ixA/photo.jpg,I would like a + button easy to access when I open the app in order to add a quick reminder. I don't get the concept of 'my day'. I find annoying that you can't set up the deadline and reminder I one go.,3,1,2.11.148,2020-02-21 23:38:31,,,newest,com.microsoft.todos +Rob Patterson,https://lh3.googleusercontent.com/a-/AOh14Gj6vYA1AwtpsmWPE4MXlynVN-5DXO0zOqBQR1HS-g,Is good standalone... But: outlook integration is confusing and ineffective. I have to use onenote as my todo at work.,3,0,2.11.148,2020-02-21 16:51:27,,,newest,com.microsoft.todos +Daniel Calderon,https://lh3.googleusercontent.com/a-/AOh14GiFFyOIsxcbOKC6HHn2Ob6mc7u5T4i-oNxgas6ObA,"Al migrar de Wunderlist encontré varios elementos. 1) en las listas compartidas se duplicaron las tareas. 2) en el widget no hay indicador de tareas vencidas, en Wunderlist se mostraba la fecha en rojo. Esto último sí se muestra en To Do pero dentro de la aplicación y no en el widget. Ese indicador visual hace falta. 3) hay mayor configuración del widget de Wunderlist. 4) las tareas vencidas de la lista ""Planned"" no se muestran organizadas por fecha de vencimiento. Aún no me voy a pasar a To Do.",3,0,2.11.148,2020-02-21 04:19:07,,,newest,com.microsoft.todos +Vladyslav Kochanov,https://lh3.googleusercontent.com/-rMMVpmtVYlE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOYV62HjHje1T7b6UL5zkZDYIqtYA/photo.jpg,"Dear support! It is a pity that Microsoft is closing Wunderlist, because that app is very simple to use and very fast. Unfortunately your to do app is slower, there is not done job with hashtags. Tasks need to be selected before moving. In Wunderlist everything is much simpler and faster. Guys please take good features from there. It is big pain to lose Wunderlist. At least upgrade your app normally. Thank you.",3,7,2.11.148,2020-02-20 23:23:54,,,newest,com.microsoft.todos +Linda Hamilton,https://lh3.googleusercontent.com/a-/AOh14GgnB46wOfE56x4faabqx2iEL0dccMiK2woQOQVJ,"I miss Wunderlist. Don't like this app because I can't copy a tasks or project by copying to another section. Must write out in manually which is time consuming, plus app doesn't let you cut and paste. Too cumbersome, aloe and tedious. Wunderlist was 10x what this app is. Plus I couldn't move everything over sho lo'day tons of notes. Looking at Evernote as a replacement.",3,8,2.11.148,2020-02-20 08:10:06,,,newest,com.microsoft.todos +Tim Simmance,https://lh3.googleusercontent.com/-6ioQ38bgjEw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP8ZJuNXsuK3RPVFG3Yo_UviOAjvQ/photo.jpg,Not as good as Wunderlist. Simple things make it less usable than its predecessor such as: 1. sharing internet page to a list and the list defaults to My Day instead of one of your choice or the last one you opened - makes adding lots of pages in a row slow. 2. Add new task from the widget puts it at the bottom of the list not the top. 3. Marking a task with a star doesn't move it to the top of the list. Other than that it looks smart and imported my old Wunderlist lists on 2nd attempt.,3,14,2.11.148,2020-02-19 22:27:50,,,newest,com.microsoft.todos +Sean G,https://lh3.googleusercontent.com/-AhyMk2tqeYM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOk6R2fMVs-PyDQD1H84XyMlqeeZA/photo.jpg,You can put tasks on,3,0,2.11.148,2020-02-19 17:18:23,,,newest,com.microsoft.todos +Steve Perkins,https://lh3.googleusercontent.com/-XShCqoLFN74/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPLb1hniWkN9JN2sfxjhFnShSWJVQ/photo.jpg,"Still missing some things from wunderlist. Notably email reminders which I really miss (not always convenient to get reminders on my phone or install the app everywhere), email item to inbox, better sorting (and as an added improvement please remember sorting by folder) and add new task at top of list. A bit early to be claiming you can now do everything you could as clearly you can't. But hopefully getting there.",3,21,2.11.148,2020-02-19 01:15:27,,,newest,com.microsoft.todos +Helena Lucibello,https://lh3.googleusercontent.com/a-/AOh14GiSe6ZIdRJW7h_ePpukV4ekXNPg2FsLaolAiIBO,I'd mark it higher if the reminder/alarm could tell the time. The alerts pop up a good 15 - 45 minutes late.,3,0,2.11.148,2020-02-18 21:12:16,,,newest,com.microsoft.todos +Randy Wang,https://lh3.googleusercontent.com/a-/AOh14Ggi7pLIP2D5CyTH2JFkZQ9jiBA3RuhA4pjg2PDysA,Widget does not update itself. Shows up empty and had to replace everytime. Refresh doesn't work. On latest app and os.,3,0,2.11.148,2020-02-18 20:24:43,,,newest,com.microsoft.todos +Fiat Justicia,https://lh3.googleusercontent.com/a-/AOh14Gj7qjwAunTkNVk6JnwII5NKU854HlMU6v3LVnDi,This app lacks a lot. 🔴 If you make a mistake editing you can't recover!!! This can cause the loss of important information.,3,1,2.11.148,2020-02-18 00:47:09,,,newest,com.microsoft.todos +narendra adinugraha,https://lh3.googleusercontent.com/a-/AOh14GiiZT0NToOktkt8fVH3Iw2OitnxqrLGvHsPbBc_Ow,Cannot duplicate a list,3,0,2.11.148,2020-02-17 23:31:39,,,newest,com.microsoft.todos +John Chadd,https://lh3.googleusercontent.com/-qtUobVXUuk0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP4uFonScbiZ9frawX1MYEf18XAUg/photo.jpg,The important smart list is all mixed up and doesn't show which list each task is from.,3,0,2.11.148,2020-02-17 13:46:02,,,newest,com.microsoft.todos +Jay Libove,https://lh3.googleusercontent.com/a-/AOh14GgHpG2pD7V1TW0nTCmI0F1-tT2XA6tLjeMZW03i,"Good, could be much better. Missing the critical feature to sort first alphabetically and then display all incomplete tasks before all complete tasks. ALSO, should have an option for the ""tasks"" in the To Do lists to NOT appear as Tasks in Outlook/Exchange!",3,0,2.10.147,2020-02-15 21:08:24,,,newest,com.microsoft.todos +Rebecca Mrowiec,https://lh3.googleusercontent.com/a-/AOh14GiMjsDKhddL1z_bwVFPMv5dArBN6egLm4y6mFkOKg,Needs to have feature where you add the next item to the top of the list not the bottom - Widget version,3,0,2.11.148,2020-02-15 15:04:49,,,newest,com.microsoft.todos +Barrington Holmes,https://lh3.googleusercontent.com/-HJunWA6G6zg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPFts0EVhQLMTdYVGo7MRXda8gdQg/photo.jpg,"So as HUGE fan of Wunderlist I was devastated to hear that it was going to cease. Along comes To Do. So most of it works similar to Wunderlist which is good, but there's little things I just don't like. For example, when tapping on a list. Boxes are too BIG and in your face, text too big also. Main screen is ok. When ticking something off on a list how about something to divide to do and done from that list instead of everything together. Give us more customisation options for sizes, colours etc",3,15,2.11.148,2020-02-15 10:34:05,,,newest,com.microsoft.todos +Abin Biju,https://lh3.googleusercontent.com/a-/AOh14Gg6Vw8WAgBXnkBK_cMZeWWCmYQl_-10Jsm9_GfY,"The lines on the to do page makes me wanna touch those to start typing. But, only the '+' addition is permitted",3,0,2.11.148,2020-02-14 16:18:41,,,newest,com.microsoft.todos +Robin,https://lh3.googleusercontent.com/a-/AOh14GhIFGZUk4VTVcVZNRoFOyriTMzWNqm3nA9jgzsa,Can't find a way for new entries to be added to the top of a list rather than bottom.,3,1,2.11.148,2020-02-14 15:12:23,,,newest,com.microsoft.todos +Joe Johnson,https://lh3.googleusercontent.com/a-/AOh14Ghzg0soQb3h5Xkn5C9UE6Un1SjQ-qTuBs5RN0xLYQ,"I would really like to see the inbox feature in Wunderlist brought over. There is currently no efficient way to quickly add tasks so you can sort/organize them later. On the main page, there is only an add list button, and I don't want to add everything to My Day. This gets cluttered and messy. It would also be nice if tasks that you have assigned for a certain day are automatically added to My Day, instead of having to go through and look for tasks that are due and add them to My Day manually.",3,156,2.11.148,2020-02-14 14:38:40,,,newest,com.microsoft.todos +JamLyn Company Limited,https://lh3.googleusercontent.com/-x-_6mr95W7M/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMTbtXs_5PJoqrHYJRUIFACD2GMKw/photo.jpg,The should be some kind of dashboard where as administrator monitor progress on particular tasks and also have tasks maned by two or more personal,3,0,2.10.147,2020-02-14 06:03:14,,,newest,com.microsoft.todos +Vikas Tiwari,https://lh3.googleusercontent.com/a-/AOh14Gh1JmWUd3WxptYGUj6xzKP-aFONdqa6GWiwYF7wyQ,Wish Microsoft could copy Wunderlist features properly before killing it. I am already missing Wunderlist.,3,0,2.11.148,2020-02-13 17:46:27,,,newest,com.microsoft.todos +Dayna VB,https://lh3.googleusercontent.com/-DWaiHj8FYxQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOWCla8CYPqG2AeC05oFt9pBkEVdA/photo.jpg,There needs to be a feature to purge completed tasks. Its cumbersome to to have to delete them one by one or by selected all and deselecting the upcoming tasks. Potential to delete active tasks.,3,1,2.10.147,2020-02-13 16:23:35,,,newest,com.microsoft.todos +Paul Hooper,https://lh3.googleusercontent.com/a-/AOh14Gj0LgHbe-_kcE8e3Snhnmb2N5RjS2PFCUEaAY89,No email notifications for scheduled tasks! Not good.,3,0,2.10.147,2020-02-13 09:54:31,,,newest,com.microsoft.todos +R LM,https://lh3.googleusercontent.com/-zt7CO_vB9ew/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP_a1wyz8XH9Ewf5h4BfftVVeE4iw/photo.jpg,It's suitable for reminders and tasks if you're already in the Microsoft/Office 365 ecosystem. I just don't need another account-based service to make grocery lists.,3,0,,2020-02-11 21:34:16,,,newest,com.microsoft.todos +Ali Ozmen Kasapoglu,https://lh3.googleusercontent.com/a-/AOh14Gh9l9rjZI6jiobVQCRs440bgN1ZQAWn3G6CrDiNGQ,"From an old Wunderkist fan: Design and migration is nice thank you. Please bring back weekly to do widget or at least make possible to select only ""earlier"" tasks to show up in widget. Additionally, in widget if due date is passed please show the task in red color. Thank you.",3,1,2.10.147,2020-02-11 19:05:02,,,newest,com.microsoft.todos +AX,https://lh3.googleusercontent.com/a-/AOh14GhrvYqObhqALBUkXS8XrzM-Jn8j_RyB9nEX1x45dw,"Worse than Wunderlist, no optional add todos to top or bottom, so it's pretty inconvenient for big lists.",3,0,2.10.147,2020-02-10 20:53:22,,,newest,com.microsoft.todos +mahdi kooshesh,https://lh3.googleusercontent.com/a-/AOh14GiIkwQKD6_Gn_DqER_cUMBwp1JNWdpgWsQPwZtt9g,"Near to ideal. But there is some shortage. For example there is no option in settings to add planned tasks to ""My Day"" automatically. Or people usually plan tonight for tomorrow. But when i at the end of the they add tasks to ""My Day"" they add to today not tomorrow. There is must be an optional boundary time in settings that determine the end of day and after that adding tasks to My Day"" go to tomorrow. Another thing, i cant add ""step""s to ""My Day"" its important.",3,4,2.10.147,2020-02-09 06:32:27,,,newest,com.microsoft.todos +SGR SGR,https://lh3.googleusercontent.com/-vdIYjVc6HVI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPUNIwZDEa1O9NAI0kI51iGHpd0Zg/photo.jpg,"Just started using it, i am more use to wunderlist, but surely i am going to love using to-do and it will be great",3,0,2.10.147,2020-02-09 06:08:43,,,newest,com.microsoft.todos +Gavin Pointon,https://lh3.googleusercontent.com/a-/AOh14Gh9tAMc2vzscTsJK1HFV1E7YZRUadW0dkVPHt01cw,"Be better with text slightly smaller, as a simple list takes up more than a full screen...",3,0,2.10.147,2020-02-08 18:44:37,,,newest,com.microsoft.todos +Ian Suave King,https://lh3.googleusercontent.com/a-/AOh14Ghypg1FHr37i8xNhpFMN4I03syzwmZ9ZRi5Lc6pcyQ,Would have given more stars if the add folder option was not removed from the original Wunderlist To Do List. I also used to be able to take photos offline and they will be automatically uploaded when I'm online. Now I must be online to even use my camera. I also do not like the idea that when you add a new note or something it stays at the bottom. These notes should automatically move to the top like how it did in Wunderlist. Otherwise the App is helpful for most of what I do.,3,23,2.10.147,2020-02-08 11:48:22,,,newest,com.microsoft.todos +Craig,https://lh3.googleusercontent.com/a-/AOh14GjMfPkS2i6wVPN83g79hpTpXrjGt47BpbnJEOX8YQ,"This app would be perfect if it had a translucent widget. But naw, it's gotta take up every pixel it can even when I got nothing to do. I do recommend it over others though.",3,1,2.10.147,2020-02-08 06:24:40,,,newest,com.microsoft.todos +LIFE& TECH,https://lh3.googleusercontent.com/a-/AOh14Gi5Q0Lq2qe6EINgpIABGxafe2P6D9eXSvYp9xvP,When the system is set to dark theme the home screen widget fails to display the list correctly,3,0,2.10.147,2020-02-07 16:07:30,,,newest,com.microsoft.todos +五五五弐百四拾九ta,https://lh3.googleusercontent.com/a-/AOh14GjRsTyXO8F2SVdatEi4LL7IAA5ueqos6VVYjydjLA,Try on.,3,0,,2020-02-06 08:27:09,,,newest,com.microsoft.todos +Garth Powelson,https://lh3.googleusercontent.com/a-/AOh14Gi1afugCVY-ZqGzMcFg9RKckEqX5fJCk7MealanKQ,"""To Do"", huh?? ""Yeah, well Hell yeah, join the team, everyone else has! Check in at...."" etc., etc. Now, back to American Terrorism. ""The way I see it, Hamilton....""",3,0,2.10.147,2020-02-06 05:57:30,,,newest,com.microsoft.todos +Vivekanand S Durga,https://lh3.googleusercontent.com/a-/AOh14GgqcA8Ih2vdXZhzAFGNjh6Qr6clkKtPAOL8R5uF2w,Need to improve it.... Multiple tasks cannot be copied into a list... User interface looks good..,3,0,2.10.147,2020-02-05 22:16:35,,,newest,com.microsoft.todos +BTHaniss,https://lh3.googleusercontent.com/-1qaShE7Wo1Y/AAAAAAAAAAI/AAAAAAAAAhg/AAKWJJNxjx_ff6qQQVQdoc0u8tqzSEtvvg/photo.jpg,I suggest you add sub-tasks feature,3,0,2.10.147,2020-02-04 12:34:37,,,newest,com.microsoft.todos +Danie Jacobs,https://lh3.googleusercontent.com/-X2DOfGrCZOc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOzARwdAkAoWAklpaKA7hZzxSq4lA/photo.jpg,I really miss some stuff what is available in Wunderlist: 1) All the tasks in different lists that is available in the general TASK list (not only.planned tasks) 2) The option to show new task on top of list 3) Option to move important tasks to the top 4) Option to show task for the WEEK. Bring that ib and you will definitly get a 5,3,6,2.11.7756.Insiders,2020-02-04 08:50:54,,,newest,com.microsoft.todos +Foad Ayat,https://lh3.googleusercontent.com/a-/AOh14GgcbJt8foDZibrq83iVc8y4oEjQfvy-Ee9XiVs4MA,Why we can't sync SharePoint task list with this or any other task management app.?,3,0,,2020-02-02 19:48:48,,,newest,com.microsoft.todos +Vinay Garg,https://lh3.googleusercontent.com/-V_JMmxTLjPI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMaTz5dJ9lAGvyodxmhub7Xmr1aDQ/photo.jpg,"The app is good. But it has a bug, i use poco f1, in desktop widget, it many times stop showing tasks, just shows a black empty list. When we remove it,and add it back from widget list. It works for some days,but problem keeps on occuring times and again. Please fix it.",3,1,2.10.147,2020-02-02 12:33:56,,,newest,com.microsoft.todos +Jonathan Gonzalez,https://lh3.googleusercontent.com/-TqiROas5RNw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM0n_Da6fwLJgf1l7CHU_t5Al0l6w/photo.jpg,Could be improved dramatically considering I'm in love wit Microsoft,3,0,,2020-02-01 20:05:48,,,newest,com.microsoft.todos +umar ahmad shah,https://lh3.googleusercontent.com/-ueSQpc3O8Qw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN7dTlHBURKj83a-2b49t5uDTaqKA/photo.jpg,"I have been using this app on my samsung for last 2 years, i have found good in it. It's a good app for reminders and to do list. Now i have changed to oppo A9, the only issue i am facing, the reminders notifications which are not completed, disappear from my screen in the night same day. It's annoying for me because I have to find those incomplete reminders in the app one by one and set them again. It would be fine, if unfinished tasks should not disappear. Stars would be 5😊. Thanks",3,4,2.8.145,2020-02-01 03:07:02,,,newest,com.microsoft.todos +A Del Turco,https://lh3.googleusercontent.com/-P15Ar0HTwF0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNwt6WcCT4vDAzslIrcvwLZ2wwghw/photo.jpg,"As a to do list it works ok. Devs need to allow manual sorting of priority though. I think this app has much greater potential if it were to be integrated with Outlook including meetings & appointments along with tasks becoming more of an overall assistant rather than a to do list. One major gripe though, the point type on the widget is miniscule and barely readable.",3,5,2.10.147,2020-01-30 13:05:57,,,newest,com.microsoft.todos +Trick2 Tech,https://lh3.googleusercontent.com/a-/AOh14GhVX4EuWMqUDCphRavxj1xoeRngnbGb0CYp83Iq_Q,Everything thing is customizable but there is no timer i want timer for every sub task that i create every single task i do i want a time and daily stats for the same need to download some other providing the same for now when you include this mail me i will download again!!!,3,0,2.8.145,2020-01-29 13:30:55,,,newest,com.microsoft.todos +Naveen Yadlapalli,https://lh3.googleusercontent.com/-GV-RW3XS9Gw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNy9JO8V2Z03HcWaTV6qRAgO0HtnA/photo.jpg,"Missing some key features - having the ability to have the same task in multiple lists, and an 'undo' button to undo completions/deletions done by mistake.",3,0,2.8.145,2020-01-28 10:32:00,,,newest,com.microsoft.todos +Kiril Lukiyan,https://lh3.googleusercontent.com/a-/AOh14GjVxLR0NAmwlMEP9Lv8BuDmIT2L43uKNVG__Va_Ha0,"Gave it a chance. Still quite raw. No proper planning and no way to see all tasks at once. Please take some inspiration from Any.Do. Win10 store application however is epic, the best. Very bad that there is no tomorrow, and incomplete tasks from my day, disappear.",3,1,2.8.145,2020-01-28 07:33:23,,,newest,com.microsoft.todos +Tim K,https://lh3.googleusercontent.com/a-/AOh14Gje7vHzFSr-2mFoc1lqsVtzPyXNZ3y3khYDIGLNQQ,"Great app, but there are constant bugs in the widget (cannot add tasks from the widget, selecting the list to display in the widget is too sensitive and often redirects you back to the app instead of the list select drop down).",3,0,2.8.145,2020-01-26 18:40:27,,,newest,com.microsoft.todos +Izabella Koziell,https://lh3.googleusercontent.com/a-/AOh14GhXau5zGFuMny3-TFzyOOSm9p5ovJQ0kcojF8ISag,It's good but it needs to link to other MS desktop apps rather than online cloud MS. Eg outlook opens in cloud not on desktop.,3,0,2.8.145,2020-01-26 16:28:28,,,newest,com.microsoft.todos +Squeaky B,https://lh3.googleusercontent.com/a-/AOh14GjgLmYUQFPTgAi-jw4UQyXamKwpZF0qO2TXXVsdFQ,I like it and to be honest for a free app it's Pretty good. My only gripe is that the home screen widget doesn't update. However it's good enough for me to leave tick tick !,3,0,2.8.145,2020-01-26 14:25:22,,,newest,com.microsoft.todos +Isaac Newton,https://lh3.googleusercontent.com/-eBndUuoVNeA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMX1X9k7MFja6fqyYAKjBeRe9_1Yg/photo.jpg,"Nice, but without calendar integration it is still incomplete.",3,0,2.6.141,2020-01-25 19:30:07,,,newest,com.microsoft.todos +Anastasiya Ermolina,https://lh3.googleusercontent.com/-Il0HyQKm_NQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNPq_WUaSOJ4vF7G82A0STNfR-N8Q/photo.jpg,"I'm trying to add a task, press ""add button"" (the arrow) and the task just disappeares. Quite simple functionality and even this with bugs",3,0,2.8.145,2020-01-25 04:32:57,,,newest,com.microsoft.todos +Ahmed Kheyr Moalim,https://lh3.googleusercontent.com/-SaS6xXzwEv0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP_TkO1_O2lJ3D6do-BY9a6dnHAwQ/photo.jpg,"The app looks very ok but it lacks help or support portal. I have accidently hidden the smart list like the planned, how can I unhide them and also how can I assign task to my colleagues or employees?",3,0,2.8.145,2020-01-25 03:20:00,,,newest,com.microsoft.todos +Alan Gibson,https://lh3.googleusercontent.com/a-/AOh14GgHdQKUXUpTSz4yBht0_oJW-nuA5F2diM7oZunMrhw,"There's a bug where I can't add tasks from the widget. Tasks only get added if I actually open the app. Pixel 3a. Also items get added to the bottom of the list by default. What the hell, Microsoft?",3,0,2.8.145,2020-01-24 23:05:57,,,newest,com.microsoft.todos +S Higgins,https://lh3.googleusercontent.com/a-/AOh14GgAAGhzkcFCl2dqqFPzmF-Rnp9ygeCfXttfHEe6fQ,"Longtime Wunderlist user. Slowly getting used to the ToDo app. So far it is ok. There are still some features that were not included from Wunderlist such as when a task is checked as completed, it has to be manually moved into a folder I created called Completed Tasks. In Wunderlist a completed task was automatically moved to a completed task folder. Would like to see this executed in ToDo. Thank you",3,0,,2020-01-24 15:52:23,,,newest,com.microsoft.todos +Javi Bonet,https://lh3.googleusercontent.com/a-/AOh14GgxY1cPDaaxXH3UTMlyYEIntTyNMPbangzdU8gF,"When trying to add from the widget, it does not add to the selected list, instead it adds to tasks. Very annoying. This makes the widget borderline useless.",3,0,2.8.145,2020-01-24 07:06:26,,,newest,com.microsoft.todos +Robert Tortorelli,https://lh3.googleusercontent.com/a-/AOh14Gixqg7AEDwypLGI2BRcFrVzR1N9urNcDTA5LlKkJg,"Update: The accidental deletion problem described below is compounded by my now finding a ""confirm before deleting"" setting that simply does not work. The app is nice, but when starring or opening a list item it's easy to delete it. That's because deleting happens when you slide an item left, and that can happen by accident. Either add a working setting to optionally require confirmations of deletes, or provide a trash can from which you can recover deleted items.",3,3,2.8.145,2020-01-23 22:47:01,,,newest,com.microsoft.todos +Michael Berndt,https://lh3.googleusercontent.com/a-/AOh14GhSZ1LyvixPm9gAZCDprHH-R-jgm71xkYJqs1Sgew,"Being constantly prompted to ""Share List!"" Is a big pain in the butt. My wife and I share our info with each other, and it's a big nag that may cause us to abandon MS todo.",3,0,2.8.145,2020-01-23 13:42:20,,,newest,com.microsoft.todos +JJ Hinterreiter,https://lh3.googleusercontent.com/a-/AOh14GizOMGDwNx-NjMcKlgsoMLX9EzzLT4TLn_TKls4,This is all well and good but it doesn't tell me how to use To Do to do anything. Like making separate list or subcategories for each list?,3,0,2.6.141,2020-01-23 04:19:47,,,newest,com.microsoft.todos +Kapil Patel,https://lh3.googleusercontent.com/a-/AOh14GiNBy6O2jWldg4xD6BGI5hxakEPlTHWKP-P-JVBug,Wish they add : copy paste function Remind specified time before due date options,3,0,2.8.145,2020-01-22 17:14:20,,,newest,com.microsoft.todos +Mo,https://lh3.googleusercontent.com/-yMrMztQH-ME/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO09rlkDhQPWT4rnsR2L52R3hB4uA/photo.jpg,For some reason I can't exit the app which I press the back button on Lenovo Yoga Smart Tab (only home or app-switch buttons) Please fix,3,0,2.8.145,2020-01-22 16:36:40,,,newest,com.microsoft.todos +Saumya Banerjee,https://lh3.googleusercontent.com/a-/AOh14GgUqnK_XZNL4DcceB6AqHxo0ZtvRPboB5roszlIbA,Cool app but widgets stopped working so makes it pointless to keep,3,0,2.8.145,2020-01-22 15:05:18,,,newest,com.microsoft.todos +Liubko Mykh,https://lh3.googleusercontent.com/a-/AOh14GgW9HCPrZkdoVxQNQj1y04IFS7HUS8GvrVCdSaoe5c,no integration with google assistant =(,3,0,2.8.145,2020-01-21 20:00:47,,,newest,com.microsoft.todos +SirDavo,https://lh3.googleusercontent.com/--r1PQ61UQTM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMoN_3nSIzdzMeTK4fLANB16MnhYw/photo.jpg,"Good app but I like Wunderlist better. Microsoft should have changed the name of Wunderlist to Microsoft To Do, added their integrations, updated the program inline with user requests and it would be Great! The My Day feature is odd since I plan my day the night before so My Day events are gone the day I actually need them. I don' use My Day any longer, instead I use Important and Planner as a replacement for My Day and I use Task as an inbox.",3,5,2.8.145,2020-01-21 14:30:04,,,newest,com.microsoft.todos +Isobel Durbidge,https://lh3.googleusercontent.com/a-/AOh14GiTDVno7Y0faWj0rd8hY8xTECRxFx1t1Q4PehbQ,Informative but extremely slow.,3,0,2.8.145,2020-01-21 00:03:31,,,newest,com.microsoft.todos +Jessica Hamm,https://lh3.googleusercontent.com/-eg_cdA1qRQw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNfUASo0YL4v3mnFWEUV1NNGHDr_A/photo.jpg,"Not as useful as Wunderlist... Yet!! Would prefer to have a tab for the ""week"". Not just day, that way I can anticipate. Also wish items would show up in my calendar.",3,1,2.8.145,2020-01-20 20:03:23,,,newest,com.microsoft.todos +Tim Gooding,https://lh3.googleusercontent.com/a-/AOh14GjGSLfOERLWxIzK9DCHtGg3ONLIggaO_EqfrUIV2w,"Microsoft forces you to use your Microsoft account to use it, then never keeps you logged in long enough to get notifications. Sharing via text feels like I'm back on my Droid phone, and trying to get updates to shared lists suffers from the forced log outs as well. Also can't customize ""smart lists"" that are stuck at the top. My Day and Tasks? That's the same thing for me, either let me put it at the bottom or let me remove them. Microsoft took Wunderlist and ruined it.",3,24,2.8.145,2020-01-19 16:19:27,,,newest,com.microsoft.todos +Ramy Ahmed,https://lh3.googleusercontent.com/a-/AOh14GhNMct_wCUQiOiUCH4U6JgHlJCPaT8ao1pNO_4jPQ,"Repeating tasks seriously need to be automatically added to 'My Day' view on their due date, each time. It would also be useful if there's an additional option to automatically delete completed tasks, instead of just hiding them.",3,7,2.8.145,2020-01-19 10:57:58,,,newest,com.microsoft.todos +Mikaela Olaguera,https://lh3.googleusercontent.com/a-/AOh14GjUFx8RT0G3dgI2ZOiWBH6TGVUd1Yu_1vTuYN3MKA,"User-friendly. STEPS and GROUPS are smart features! Options for repeat reminder are comprehensive. Love the colors! Suggestions: 1. Retain THEME COLOR for TASK. So when opening Planned, easier to distunguish which tasks are under Acads, Orgs, etc. 2. A better font style for tasks. 3. PLANNED. Please classify Next Week to specific days. It will also be great if I will be able to move tasks from Today to Tuesday next week with a press, hold, and swipe. Automatically updates the due date.",3,7,2.8.145,2020-01-18 11:09:46,,,newest,com.microsoft.todos +Craig Rickett,https://lh3.googleusercontent.com/a-/AOh14GjWtkev5fP0A49GBS38_JKDaTXcA38e9b3afMPC5A,"So close to being perfect, Missing -Tags -filters -reports Will definitely be keeping an eye out for these!",3,0,2.8.145,2020-01-17 22:17:15,,,newest,com.microsoft.todos +Rahul Kulkarni,https://lh3.googleusercontent.com/a-/AOh14GiJqpNEipRUAzL93vmBL4bldkGDHXFsZ5YV9TJwhw,Nice app. However one important feature missing in App is you can not assign the task to some other person. This feature is there in desktop version and very useful in corporate environment.,3,1,2.8.145,2020-01-16 23:42:23,,,newest,com.microsoft.todos +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Needs option to sort by due date AND time. Should be able to set some tasks/items to move into next day automatically. Should have custom sort or dedicated grocery store shopping list option so you can sort items by how they're arranged in the store. Please add these options & this would be the best to do app ever!,3,0,2.8.145,2020-01-16 20:53:54,,,newest,com.microsoft.todos +Panagiotis Gazis,https://lh3.googleusercontent.com/a-/AOh14GhlmsFlaCamnPN4o-Xi7tHfkW3ipVnIRYl4fkOXCwM,Bigger fonts at widget plz!! Connect One Drive with to do & Outlook Calendar too !!!!,3,0,2.7.142,2020-01-16 08:32:11,,,newest,com.microsoft.todos +Melinda J.,https://lh3.googleusercontent.com/-xLV_4fAKS1Y/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM9vGQJ2Ep--UCYQfPTynKBFdHHww/photo.jpg,"I'm giving it three stars right now til I know how to properly use all the features, but so far it's the best app I've used so far. You can organize lists for home and work and other things so it's not confusing and easy to set dates",3,0,2.8.145,2020-01-16 03:27:08,,,newest,com.microsoft.todos +Lushia Kyobi,https://lh3.googleusercontent.com/a-/AOh14GhCHN89MLe5BpHADosdw9irin7R3uWOFUKrb-p6d2Y,"It's just okay. I much preferred Wunderlist. I'd give a 5 star rating if Microsoft To-Do added new items to the top of the list, not the bottom, and allow you to move any item to the top by pressing the ""star"" on that item, similar to Wunderlist. Needless to say, I'm gonna be using this app a whole lot less than I had used Wunderlist, until this is fixed. It's a huge inconvenience for me to have to keep dragging each new item to the top of my lists, which tend to be VERY long.",3,36,2.8.145,2020-01-15 08:58:17,,,newest,com.microsoft.todos +Jon Bach,https://lh3.googleusercontent.com/-1kf2mOiRVKQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN4ync39BPF5SzetHkp5wNgUMEJwQ/photo.jpg,Not working on my chromebook. I cannot open any lists to view the contents. EDIT: Issue seems to be resolved in the latest update. Though still only giving 3 stars since this is taking over wunderlists but is still comparatively lacking in design and ease of use.,3,3,2.8.145,2020-01-15 02:05:04,,,newest,com.microsoft.todos +Serge van Neck,https://lh3.googleusercontent.com/a-/AOh14GjPWMuI6fn-l_Ku9n2DXjdTb2tksjkwStfZLGIZvg,"It's finally getting better, although still doesn't measure up to Wunderlist. But the latest update broke the widget! Please fix!",3,0,2.8.145,2020-01-14 14:30:17,,,newest,com.microsoft.todos +Marcy L,https://lh3.googleusercontent.com/-QBl9NLxg4tU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPQzDPdMS6e4GlXXOuJTCAeCJty-Q/photo.jpg,"I loved wunderlist. For the most part, I also like To Do and think they've done a good job transferring things over. One feature I do not like is that the Today list has to be made the day of. I like to make my ""today"" list the night before--makes it easier to plan and be prepared. When I do that now, I wake up in the AM and my list isn't visible.",4,104,2.13.151,2020-03-16 02:12:36,,,most_relevant,com.microsoft.todos +Tadeáš Tuháček,https://lh3.googleusercontent.com/a-/AOh14GhGKIuccMdYWTF-27VR-7nVJv3KB_dBZE37B6rF_w,"Sure could use a ""completed tasks"" tab. I hide my completed tasks in tabs as it just gets messy and when I wanna check what is done, I gotta manually untick the ""hide completed"" and then tick it again. I'd also appreciate if you could see when the task was completed. Overall a great multiplatform tool, been using it since I found it.",4,2,2.13.151,2020-03-22 09:28:19,,,most_relevant,com.microsoft.todos +Tim Stone,https://lh3.googleusercontent.com/a-/AOh14GiQbZtO-ueNJtJlszHTkpel1luKe73tkvvDbQD6Z0U,I came across from Wunderlist and it does everything I need it to do except for one really annoying feature - on Wunderlist when you added a new item you had the option for it to go to the top or bottom of the list. I always want my newest entries to go to the top (especially in very long lists) as they are the things I want to action first. Include a simple option to allow this and your app will do everything Wunderlist did and I will be a happy man!,4,14,2.13.151,2020-03-21 01:00:44,,,most_relevant,com.microsoft.todos +Dan Smeiska,https://lh3.googleusercontent.com/a-/AOh14GhwyAA9-RF8hP4ApMdg41nUs0cPxnM3iZw-zHh3AA,"For those coming from Wunderlist: To transfer your data, log on to a computer (not a phone or tablet) to transfer your data if you're having transfer trouble. Seems similar to the glory that was Wunderlist. But still not as good.",4,2,2.14.152,2020-03-30 23:30:07,,,most_relevant,com.microsoft.todos +Dèanta ann an Alba,https://lh3.googleusercontent.com/a-/AOh14Gjg-N8HiKEjPvGpuVCOLUvwKXxjFdtgyEPX5wss,Love this app! Didn't think I could find something as good as Wunderlist but this app is better! Just a couple of things would make it perfect. Option to change font size and option to add new items to top of list.,4,0,2.13.151,2020-03-25 01:29:20,,,most_relevant,com.microsoft.todos +C G ANOOP,https://lh3.googleusercontent.com/a-/AOh14GjessBX6XgVUXcxm3B4jWwcbv-_lp3D5Y_1Tvg2Tw,"Very good... Excellent features. Especially for the subtask, the option to add step for achieving the task/subtask. Kindly add a calendar feature to get an overview of what is ahead. Also, some ready made quick reminders like a call, payment, email, a template for grocery, etc would add cheery to the cake",4,4,2.14.152,2020-03-27 07:14:03,,,most_relevant,com.microsoft.todos +Brent Jenkins,https://lh3.googleusercontent.com/a-/AOh14Ghy8OR6F_6ggmgSB75w-90zvsN_ak-Ni6ICPyC831Y,I was using Wunderlist but this seems to be a great replacement. It integrates very well with Outlook 365 and the reminders are easy to manage. Would certainly recommend it for anyone looking to manage task lists.,4,0,2.13.151,2020-03-15 12:46:09,,,most_relevant,com.microsoft.todos +Margaritis,https://lh3.googleusercontent.com/a-/AOh14Gi65CEZUCPb7skP8EsC3hLUXNDCaTgTr4bFv2GJ,"Pretty good app, lets you organize tasks by categories, prioritize based on due dates and set reminders for each specific task. However, sometimes, reminders fail to notify you in the specified time and come rather delayed.",4,1,2.14.152,2020-03-28 14:57:30,,,most_relevant,com.microsoft.todos +Jo Storch,https://lh3.googleusercontent.com/-xk4iQkuF4YA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMa-CzFIW1DViBj_MqFIYjDQPUWmg/photo.jpg,I love that I can break a task into steps. I didnt like that they moved the completed task button from the bottom of list to side menu. All in all it is a good tool and it has improved a lot since I started using it.,4,0,2.13.151,2020-03-25 13:14:10,,,most_relevant,com.microsoft.todos +Mazen mohammed,https://lh3.googleusercontent.com/a-/AOh14GhmYxEXByRuF_OiCqtyDKUfhHtGXRzQtE4-2G6I,It's a great app almost providing everything you want for free not like other apps. I just wish if there was a timer beside each task you do such that you can spend tasks more efficiently and switch between them . Anyway great job guys 😉,4,1,2.13.151,2020-03-23 13:38:06,,,most_relevant,com.microsoft.todos +Maribelle Martinez,https://lh3.googleusercontent.com/a-/AOh14Gh09xT87a3qC2UZc035bscYGUmP7bMiRHLWCbYx,"I hate change to begin with, but everything has been good SO FAR. My only gripe right now is with the themes! I wish we could custom pick a color or choose a photo from our phone gallery.",4,0,2.13.151,2020-03-15 17:00:00,,,most_relevant,com.microsoft.todos +Rohan Gada,https://lh3.googleusercontent.com/a-/AOh14Gi1T7IgVRfeIY5QfUUH2c0_Bysr22py1hqjCZfDMH4,"The best to do app I've used by far. One tiny feature/design request : Can you please show the subtask count (total and completed) in the widget as well. Currently I need to click the task in the widget, which leads me to the task screen on app which shows the subtask count.",4,0,2.14.152,2020-04-03 18:36:29,,,most_relevant,com.microsoft.todos +Kishore Mukherjee,https://lh3.googleusercontent.com/a-/AOh14GgRPzSoLrxzcCeBBCA345ejlK_4HuOX85v1pdJLmA,"Awesome upgrade from Wunderlist. I couldn't expect I can live without Wunderlist. I just give it a try and now I don't regret for it. Truly a great successor of wunderlist. But if u can,please make the font size Customization option. It will be really helpful",4,1,2.13.151,2020-03-16 13:58:26,,,most_relevant,com.microsoft.todos +Ma Nu,https://lh3.googleusercontent.com/a-/AOh14GhMymoQ_crX_EupvQ6xpAkYDOe5EiI6OcqKdcJQYA,"I preferred Wunderlist. But in general this is working too. Please allow the user to set a default time for reminder suggestions. Currently it suggests for example 3am in the morning, not very useful.",4,0,2.13.151,2020-03-21 23:11:42,,,most_relevant,com.microsoft.todos +Abhijit Jagtap,https://lh3.googleusercontent.com/a-/AOh14GjxMd6VpsTfO-XUV9kvZOM-k3slEtMxsjnyAC5Z7A,Reminder doesn't work as per expectations. If we set any task with due date and if get completed before due date and try to mark it completed...that task get completed but new task get added with same name and same due date till that due date.,4,0,2.14.152,2020-04-03 12:32:43,,,most_relevant,com.microsoft.todos +Lane Laucomer,https://lh3.googleusercontent.com/a-/AOh14Gio8uP5cNlczdDrTF_GWIvFWHoJTbm8e81-Sq0x5g,"The app worked better when it was Wunderlist. It often has problems syncing, which is inconvenient for shared lists. Overall the features are really nice though.",4,0,2.13.151,2020-03-25 00:08:31,,,most_relevant,com.microsoft.todos +cath queen,https://lh3.googleusercontent.com/a-/AOh14GjLUSRaysSA7F5KQCqyImMUhj7WCho_Z0YF2bVqjQ,I love this app. It's easy to customise. Can you add a feature for a timer? That way people can measure how long they did a certain task for.,4,0,2.13.151,2020-03-24 10:27:56,,,most_relevant,com.microsoft.todos +Gurcharanpreet Singh,https://lh3.googleusercontent.com/a-/AOh14GjhlSAxNLPwgpZr0tOe1qFNChclXFZ4ZAiGguTPIA,almost perfect but need time setting for due dates as most students using it will require to have proper time input of their assignments. cheers to the team! did a great job!,4,0,2.14.152,2020-04-01 03:40:50,,,most_relevant,com.microsoft.todos +Karen Diaz,https://lh3.googleusercontent.com/a-/AOh14GiZ0RXszPLMs0nJNas1H-70qZ40t597kkt7rgXN,"Good replacement app for Wunderlist. Perhaps even better. I just got it a couple of weeks ago, so we shall see. It's easy to use and I like the look of it.",4,0,2.13.151,2020-03-24 12:23:26,,,most_relevant,com.microsoft.todos +Dawn Bateman,https://lh3.googleusercontent.com/-5eEiGUyhjHQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOlXjslQ6uxzY8MzTnbrea9w6bc4Q/photo.jpg,"I use this app everyday to track my errands and tasks. I wish it had more features like connection to email and phone. Even so, app is easy to use and keeps me organized.",4,1,2.13.151,2020-03-15 03:09:13,,,most_relevant,com.microsoft.todos +Brenda P,https://lh3.googleusercontent.com/-yPDnI14ddMY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNx2Xj6P-_gxVP_DNUSMtkDBOC2dw/photo.jpg,Microsoft is like Wanderlist. Originally had issues sharing and syncing this To Do List app. Appears to be settling down. We like to it now.,4,1,2.13.151,2020-03-17 20:15:14,,,most_relevant,com.microsoft.todos +Taz Vdw,https://lh3.googleusercontent.com/a-/AOh14GgkZHG2Oulxaj7dHwMGNWKNklbB4Tzf-vcMB-Xl,"Would be good to have a ""Tomorrow"" list. So when in bed clearing mind at the end of the day, the default list, ""my day"" isn't cleared.",4,0,2.14.152,2020-03-27 08:44:35,,,most_relevant,com.microsoft.todos +Dlassie,https://lh3.googleusercontent.com/-QIe1efPWGyw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOMiieCRnzDOEyHmbYJhN0U-W8jtQ/photo.jpg,Like all the other users of Wunderlist i had no choice but to switch. It took time to figure out how to be able to create lists without having to have due dates & reminders-shut them off in settings. I already had a Microsoft account which I used to sign into Wunderlist so I used it to automatically sign into To Do. That made it easy to import the Wunderlist lists to To Do {pop up at bottom}. I panicked at first but I was able to figure out how to use To Do in about an hour after installing it,4,13,2.12.149,2020-03-07 19:22:49,,,most_relevant,com.microsoft.todos +Robert Powell,https://lh3.googleusercontent.com/a-/AOh14GgpIXLFkfRIDTzNVOzuEk5G8IXwOyJ9Egv9SK09,Nice design but...have been a happy wunderlist customer for a long time and the feature very important to me...being able to sort my list with a long press and slide up or down ...made it fast and easy to prioritize my day and make quick changes. The inbox was also a feature which was very important to me and gave me the confidence of not losing important info while on the fly. I realize that MiCrosoft To Do is NOT Wunderlist but hoping for these features to be restored,4,9,2.12.149,2020-03-12 14:10:21,,,most_relevant,com.microsoft.todos +Erica Henkel,https://lh3.googleusercontent.com/a-/AOh14GiyIBCIhcSNoz3_UkUxUPurDDK3HnSUjXCPYbwC-A,"We had some syncing issues with our shared lists that came in from Wunderlist, but once we had them syncing things have worked great!!!",4,0,2.13.151,2020-03-24 11:55:48,,,most_relevant,com.microsoft.todos +Maryam Azadeh,https://lh3.googleusercontent.com/a-/AOh14Gh35pVWI7rE8xNrfSOruVmxhh1BORyPqfBiKGxEmA,"Moving from the wonderful wunderlist to To Do app was easy and now some other feature are added, among which I like ""Add to My Day"" and ""Tasks"".",4,0,2.13.151,2020-04-03 07:44:48,,,most_relevant,com.microsoft.todos +Fresh Hot Muffin,https://lh3.googleusercontent.com/-jSulTL3GjRA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOi9AZL_RVoNLHKeFx1eCIvLuRlyA/photo.jpg,The app is perfect but one tiny problem: the reload icon is sometimes peeking out at the bottom of the list title.,4,0,2.13.151,2020-03-15 12:57:17,,,most_relevant,com.microsoft.todos +Renata Michlova,https://lh3.googleusercontent.com/a-/AOh14GgWpsx_eFGkbgW-Z9apS37gtEYjhzdGvS569GZLyg,"Switch to 'to do' because wunderlist is being discontinued. It is a lovely app, easy to navigate interface. However, the function of 'today' smart list is not integrated. In wunderlist, this is the hat I was working from. It would be great to see 'today' smart list again! By the way, ""My day"" smart list doesn't automatically pick up the day's tasks, instead you have to add them. 🤷‍♀️",4,84,2.12.149,2020-03-08 17:59:13,,,most_relevant,com.microsoft.todos +Alexandra Natasha,https://lh3.googleusercontent.com/a-/AOh14Gg3AaK25GAmKL075oJvrLEdJZBq7sBUrbJLguTe,The widget sometimes shows my list as empty. And it always need to be removed and replace to show the content of the list properly.,4,0,2.14.152,2020-03-27 04:01:49,,,most_relevant,com.microsoft.todos +Nardos zebene,https://lh3.googleusercontent.com/a-/AOh14Gj0RsTBBAIq-2AOXlwrxncLNVmo4WoWSc_3d8-BYg,Love this app Can guys add this features please 1. Task priority tag (red for important) 2. More notifications options ( sometimes a single clicking sound is not enough wish you add alarm settings) Thanks,4,0,2.14.152,2020-04-02 04:55:24,,,most_relevant,com.microsoft.todos +NAVJOT SINGH,https://lh3.googleusercontent.com/-b9fqFOJyWtk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNVVOHPoob5ApM7iOUXFHmysuKytg/photo.jpg,It helped me a lot to stay ahead of my schedule. A productive app. But after some time some reminders don't work and I have to set them again.,4,1,2.13.151,2020-03-24 00:08:34,,,most_relevant,com.microsoft.todos +Xiangling Liao,https://lh3.googleusercontent.com/-cqSX7Q5K6-4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOcVgwKaRWPvO_yuNIn4zdRN2xQig/photo.jpg,Not as good as its old version wunderlist. Especially when you want to upload and download files through this app.,4,0,2.14.152,2020-03-29 16:03:05,,,most_relevant,com.microsoft.todos +Fiona Meller,https://lh3.googleusercontent.com/-HTQHvGuzfps/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMXXu9Khbk854pdijQ3udfZatP9QA/photo.jpg,Missing one key feature: custom sorting of lists. Otherwise quite good. Search capability is excellent.,4,0,2.13.151,2020-03-15 18:53:55,,,most_relevant,com.microsoft.todos +Josh Danns,https://lh3.googleusercontent.com/a-/AOh14GifvYTQt0os19LdP1-_T3NDMT8UO8R0Nye9Hzon8w,Great app! Simple and neat UI. It would however be nice if you could also include a passcode lock.,4,0,2.14.152,2020-04-04 07:23:20,,,most_relevant,com.microsoft.todos +Timberly Orbell,https://lh3.googleusercontent.com/a-/AOh14GgmfuWfuYL2sCVcWRT6GN6rUds_HSW8678Y9FFFeQ,I migrated to this app a few months ago from Wunderlist which I absolutely loved! Im still getting used to this version and the Microsoft integration as I have been a GSuite user for a few years now. While I love this app I took one star for the MyDay list. I get the developers want you to be more intentional BUT I plan my day the night before so this list is useless to me. And with the due dates not auto loading in it also makes it difficult. Nice thought but does not work for night planners.,4,13,2.12.149,2020-03-09 01:54:35,,,most_relevant,com.microsoft.todos +Chad Johnson,https://lh3.googleusercontent.com/-UQup1SvgPt8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPUQxosheEjPvJ_vOdY46JBfLj2Ag/photo.jpg,"Thus far, I'm finding To Do useful. It feels a step up from Wunderlist. Time will tell for sure.",4,0,2.13.151,2020-03-19 18:05:13,,,most_relevant,com.microsoft.todos +Rick Pietersma,https://lh3.googleusercontent.com/-3Dxd93RVZ2c/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN64DXKB9v--CR3bS2W0hVwyI5fLA/photo.jpg,"Great to do app, seemless integration with Windows. Would love to see the option to open the mobile app with the My Day tab already open.",4,0,2.13.151,2020-03-17 22:22:26,,,most_relevant,com.microsoft.todos +Martin Kissil,https://lh3.googleusercontent.com/-aVPDLSWBDjA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPx2CQpTArJ9StJEXA_-hxgj0EPRQ/photo.jpg,"It's a good start, but I miss some of the simple capability of Wunderlist.",4,0,2.14.152,2020-03-31 05:21:28,,,most_relevant,com.microsoft.todos +Jake Way,https://lh3.googleusercontent.com/a-/AOh14Ghl6b2PTqNMw0SGJc7jqqTlZIy6hXVhOpn5Vst6vE0,"One of the better cleaner to do apps Could you please add recurring tasks based on day or date. As an example: ""Recurring Every Wednesday : Take out trash"".",4,0,2.13.151,2020-03-21 10:43:09,,,most_relevant,com.microsoft.todos +Samuel Owusu,https://lh3.googleusercontent.com/a-/AOh14GhnuL_GE0oa0plo_ItdzGVxDJnbWcxJCSw5gQPN,"This app is great, and I'm sticking to it. The only issue I have with it is the notification, it doesn't work when the app is closed. Please fix that.",4,0,2.14.152,2020-03-31 21:13:33,,,most_relevant,com.microsoft.todos +David Leis,https://lh3.googleusercontent.com/a-/AOh14GiIOJtm-O2yridwMnRAaPshOc8vZhZsiGirZ_Pt,Very nice app. Almost as good as Apple 😁. Would be nice if I could schedule task on calendar. But great that I can have on phone and laptop. Dumped other apps that do more for this simple straight forward app that allows me to capture stream of consciousness things I need to do like reschedule doctor apt. Got rid of paper tablet on my desk in favor of this.,4,1,2.8.145,2020-01-28 14:50:01,,,most_relevant,com.microsoft.todos +dalilah garcia,https://lh3.googleusercontent.com/a-/AOh14GjtmrYfZuCYtMTgb-85JlX27PjkEPPic4HYi-PpOA,I wish there was an option to create a to-do list for tomorrow. Like I wish there was a my tomorrow that would turn into my day instead of me having to manually add all the things I wrote the day before if that makes sense,4,0,2.13.151,2020-03-17 03:35:33,,,most_relevant,com.microsoft.todos +Neil Robinson,https://lh3.googleusercontent.com/-Njvpsm87t24/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOJBCGwNrKoueHk4OLcHe7uGsrG1g/photo.jpg,Microsoft version of Wunderlist. Lists can be shared and sync'd between users. Needs drag and drop feature to allow items in lists to be prioritised based on position.,4,1,2.13.151,2020-03-17 22:59:29,,,most_relevant,com.microsoft.todos +Daniel Pilone,https://lh3.googleusercontent.com/-Xhqlp_15wEw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNIRD6c2xALsClOTYknSe8PLa2msg/photo.jpg,"Easy transition from Wunderlist, and it covers the vast majority of functionality.",4,0,2.13.151,2020-03-25 23:03:36,,,most_relevant,com.microsoft.todos +Grinch456,https://lh3.googleusercontent.com/-nSY4CrFGVz4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNibegQrWmo_hUxdp4wQpu07J043g/photo.jpg,"Very good. I love that flagged emails appear as tasks in this app. I would love an option to bring all of the day before's task to today in one go, instead of having to add them back to ""My Day"" one by one. I love the, ""Planned tasks"" feature, too, so I can see all of the tasks with due dates assigned to them. Lists can be added for different contexts, subjects and people. I would prefer a few more options than, ""Today"" , ""Tomorrow "" and next week. This is a great app.",4,32,2.8.145,2020-01-19 15:26:43,,,most_relevant,com.microsoft.todos +Jack Kahler,https://lh3.googleusercontent.com/a-/AOh14GgFcp9ePyRukv4E7QitRkhim9o_S0F83YVdz_5gvX0,"Finally an excellent personal workflow tool from Microsoft! To Do is a great tool for smartphones, syncing with Outlook tasks and flagged email to deliver a dedicated task management dashboard. The My Day feature promotes a GTD approach, but might be improved by sorting on a numbered list rather than simply on high or normal priority. Each task can have subtasks, but subtasks lack due dates, notifications, etc. Projects are not explicitly addressed but can be managed by adding task lists.",4,3,2.10.147,2020-02-01 15:37:23,,,most_relevant,com.microsoft.todos +GoDawgs GoDawgs,https://lh3.googleusercontent.com/a-/AOh14Gjm2DPIiq4FsthWC4hZxWBBmg68QY3hBh4vhNt4EA,"I learned about the Wunderlist buyout. So I transferred over to MS To Do List. I love it & will surely miss my Wunderlist. MS To Do List is almost identical. I wasn't too afraid of the change. MS works great, but my biggest complaint is when you add something new to a list, it adds it to the bottom instead of the top. I didn't think it added it so I added it again & again. Then saw 3 same things on the bottom. I can sort based on date added, but it mixes up. Plz hurry the add to top option. Thx",4,74,2.11.148,2020-02-27 01:41:24,,,most_relevant,com.microsoft.todos +Andrew Cohen,https://lh3.googleusercontent.com/-SE3J5mTsa6o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNbD5ffYLd7AgFxr60B5WGNwjVaYA/photo.jpg,"I have only had this app for a few days. The more I search for solutions the more I find. This is a great app, but it needs a way to give each task a sortable priority number. I love the My Day page which gives me the most important subset of all my tasks. I never put more than 5 things there. If I complete them before the end of the day, I add more. One of my favorite features is the ability to hide completed tasks. The biggest fault is I haven't found a tutorial for all the features.",4,22,2.11.148,2020-02-22 16:20:40,,,most_relevant,com.microsoft.todos +Christian Fenner,https://lh3.googleusercontent.com/a-/AOh14GiVQZabEKLpr0yBnGTGtvtmmwj8HP_D20-c5wzFHds,Good replacement for Wunderlist. Missing the possibility to create to-do by sending email.,4,0,2.13.151,2020-03-22 09:49:37,,,most_relevant,com.microsoft.todos +Marsharee Williamson,https://lh3.googleusercontent.com/a-/AOh14Gh8SNGenbp5Pn1lTW1Bq2_av-rYRjbL4Ohp58zbSA,"So now that you're Microsoft, please expand basic features like + button to create a task from the main screen, I want to start recording my task PRIOR to selecting a list or any other options. Allow hard press on task to see options rather than having to go in each to make changes after creation. Provide 'separation' function so I can group items on the same list, no overly complicated group option required.",4,9,2.11.148,2020-02-13 12:53:21,,,most_relevant,com.microsoft.todos +Amirul Azizol,https://lh3.googleusercontent.com/a-/AOh14GjDeeYislQbQZ42MUZsiu0_y9-V-vN10yfgykOUEA,Great app. Only complaint is that I'd like the AMOLED dark mode in the app to match the widget.,4,0,2.13.151,2020-03-21 12:51:06,,,most_relevant,com.microsoft.todos +Danielle Kidwell Cuculic,https://lh3.googleusercontent.com/-u4kfJQKSlG8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP4d18n11WP4pTMyL29obKupMPnxA/photo.jpg,"I tried out several to do apps to replace my sun-setting Wunderlist and liked this one the best. The only feature I'm missing at this point (and it is a big one, thus the 4 instead of 5 stars) is a list of all tasks/to dos. One master list of everything from all other lists is a crucial feature and very much needed! For now I am marking all tasks as important so they are all captured there as a workaround. P.s. I am loving the tags feature, and the audio when you check a task off. So fulfilling!",4,46,2.8.145,2020-01-21 19:31:01,,,most_relevant,com.microsoft.todos +Suzi,https://lh3.googleusercontent.com/-JluJU1ebtfE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN4X5AKIwI8xKEG9S7ragZOeLmodQ/photo.jpg,"Such a useful app. Never again will I miss reminders, or find it too much hassle to add a task. Would like to be able to change the default reminder time without having to amend every one, and would like to see support for tasks from non exchange accounts (e.g hotmail etc.) but even with these unavailable to me the app is still amazing. I thoroughly recommend this.",4,4,2.8.145,2020-01-21 08:24:01,,,most_relevant,com.microsoft.todos +Alejandro Castellano,https://lh3.googleusercontent.com/a-/AOh14GjFpPtZA6jpoVjr9QGNcFq1O7BX-p0Xm4rJMEPRng,"I like it but sometimes does not response correctly, and need more options to do the daily use easier",4,0,2.14.152,2020-03-31 04:15:23,,,most_relevant,com.microsoft.todos +ASWIN M,https://lh3.googleusercontent.com/-5KM49BjriLg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP0WVS9d_m52V5XGY-YamHJ9B1snA/photo.jpg,"Please add a feature like task has to be divided based on categories inside ""planned"" and ""importent"" list",4,0,2.14.152,2020-04-02 01:13:10,,,most_relevant,com.microsoft.todos +Debjoy Sarkar,https://lh3.googleusercontent.com/a-/AOh14GhsmecPtNZKEJJDAf6ERfo-ANj8fw5P3U4dQcG-suM,Give more features on par with Google Keep. Dark mode too is an essential tool that's sorely missing.,4,0,2.14.152,2020-04-02 14:15:11,,,most_relevant,com.microsoft.todos +David Marshall,https://lh3.googleusercontent.com/a-/AOh14GjjabRFw30p5yr_ymowbJr8thdec0g4r4p_k4QmgQ,"I use it as an integral part of Office365 online services and especially the Outlook/One Note combination as a means of staying on top of tasks within longer term projects. I don't find it helpful for short term todo lists and I can't seem to ""program"" future tasks to show up in ""my day"". But I wouldn't want to be without it.",4,3,2.8.145,2020-01-14 13:38:04,,,most_relevant,com.microsoft.todos +Shashwat Sinha,https://lh3.googleusercontent.com/-9rwtWpYZpiM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPbGNffrpI1gkcTaWtg1uEC4mvdsA/photo.jpg,Some functionality is not seamless. There is no feature to order the tasks in a custom order or group tasks within a list,4,0,2.14.152,2020-04-04 08:10:25,,,most_relevant,com.microsoft.todos +Jane Petermann,https://lh3.googleusercontent.com/a-/AOh14GhzYx2mQsqefkODi3GKd-tZHLmkaDoZDWHFutch8A,"I like having the choice of what to add to my To Day every morning. It gives me a chance to review and decide what is important today. One negative..when you check off a reaccuring task, the next scheduled one pops up. Every time I review the list my eye has to stop and check the little date to make sure it isn't a task for today.",4,4,2.10.147,2020-01-31 01:36:33,,,most_relevant,com.microsoft.todos +Petr Podlešák,https://lh3.googleusercontent.com/a-/AOh14GiYiRbf8LtCeAdTN-2Qe0Z0C3KBl0MFCHQi8Nnsgfc,"Looks like a good app. I've been using Wunderlist for many years. BUT, I miss a lot sending emails to To do list like I was used to in Wunderlist. I use this feature in Wunderlist and Evernote a cannot imagine living without it. Otherwise I would give 5*. Flagging in Outlook is not an option as I don't use Outlook.",4,7,2.8.145,2020-01-19 12:15:35,,,most_relevant,com.microsoft.todos +Paola Zanotto,https://lh3.googleusercontent.com/a-/AOh14GiiduacpB97wUwVOA-GwAfBwnWOuuGpciYiL-l8lg,"Good app overall but still doesn't recognise the date of reminder from plain text, this needs to Improve",4,0,2.14.152,2020-03-30 08:10:29,,,most_relevant,com.microsoft.todos +John Martin,https://lh3.googleusercontent.com/-4czXzpoPJqo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP5BaV4v6oLwgpwOKq7skk-MDVzEw/photo.jpg,Good app but a big improvement would be to have categories for a grocery shopping list. I add things as I run out but that is not how they are found in the store. I would like to group item by product type so I don't miss getting something or have to backtrack.,4,2,2.11.148,2020-02-22 13:34:38,,,most_relevant,com.microsoft.todos +Anupkumar,https://lh3.googleusercontent.com/-13xNBWZ4iag/AAAAAAAAAAI/AAAAAAAADi4/AAKWJJPQsgoMT1C6LVZ3CWhOvbS1hnDFnA/photo.jpg,"Everything is good, only one feature shall be add. We should be able to customise Reminder Notification tone",4,0,2.14.152,2020-04-02 00:49:14,,,most_relevant,com.microsoft.todos +Mae Lon Ding,https://lh3.googleusercontent.com/a-/AOh14GiSr9EsPm_4eK9MyUHEhF-wC8amI3C_iPGCk-Gi4A,Mostly works well as replacement for Wunderlist. Import worked well from Wunderlist. However I wish that you had a choice to automatically add new items at the top of the list instead of the bottom. You can sort by date added but then you lose your customized order of items.,4,22,2.8.145,2020-01-17 06:37:45,,,most_relevant,com.microsoft.todos +Laurence Filo,https://lh3.googleusercontent.com/a-/AOh14Ghdj0jxThPVQJX9Zmop4w0nk74ahtBjZV1GTwmWSg,Works well overall but recently won't add entry from widget on homescreen. It would be great if items from the Planned/Task categories with a due date would automatically be added to My Day on said due date rather than having to open the Planned/Task categories and adding to My Day from there. Just a thought!,4,1,2.8.145,2020-01-16 14:21:56,,,most_relevant,com.microsoft.todos +Andrew Huxley,https://lh3.googleusercontent.com/a-/AOh14GiIQd6aaWKX7kRbYFKEQGApt1JwZQemyxAceyt7Og,"Still needs some work to get it up to par with Wunderlist, but works ok",4,1,2.13.151,2020-03-23 22:00:38,,,most_relevant,com.microsoft.todos +Zachary Isom,https://lh3.googleusercontent.com/a-/AOh14Gj0VUNgdLDIOs21t3zCd1-myP-d_ClkLq5_c62kMcg,Purely task management; not Google Keep Competitor. I'd switch today if I was able to create quick notes as well. OneNote is too rich in features and has too heavy of a UI navigation to be a valid alternative. It's not stepping on OneNote's if it were to have this added.,4,0,2.10.147,2020-02-10 02:55:18,,,most_relevant,com.microsoft.todos +Emilia Bogdacenco,https://lh3.googleusercontent.com/a-/AOh14GiiDeBhjqNB56krCQ2wk1EmTW228-3mBiu9jU2fQA,"It's a bit redundant when dealing with recurrent tasks, doesn't allow scheduling those recurrent tasks to specific times of the day or set an expiry date for the recurrence, but otherwise quite functional and useful.",4,0,2.12.149,2020-03-10 09:25:08,,,most_relevant,com.microsoft.todos +Prashant Ujjainnia,https://lh3.googleusercontent.com/-yEYst5m_Xao/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNigkTqmYtvcBenJOsjYD7hdedhcQ/photo.jpg,Please add two factor authentication. I couldn't post my request through app because I don't have a Facebook account to log in.,4,0,2.14.152,2020-04-03 08:06:10,,,most_relevant,com.microsoft.todos +Neel Pithva,https://lh3.googleusercontent.com/a-/AOh14GgE9HyS98jRIiGHadtPzIH-V7GeTpz-IFEN2WZXcg,"This is and exact representation of how a To Do app should be. I love the widget, from which i can add a new task without getting into the app. There is no clutter in the interface, everything can be accessed from one page.",4,1,2.8.145,2020-01-15 09:16:20,,,most_relevant,com.microsoft.todos +Mishal Ch,https://lh3.googleusercontent.com/-CUu-82sY-AE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOzmjgqewWeSqVYMtMn4WLqlsuoXw/photo.jpg,I love the app. But the only thing I hate about this app is that 1) Does not have a start and end time for tasks. 2) Stop showing task for the next day. 3) Sort the tasks based on start time.(or reminder time.),4,1,2.8.145,2020-01-22 11:33:11,,,most_relevant,com.microsoft.todos +Todd M,https://lh3.googleusercontent.com/a-/AOh14Gj-IDGwmrLwnWA7flj_-h9330Np92A59gmD94-nMA,"I am a Wunderlist native. I do like this move except for one simple thing (as if now), I wish items were added at the top instead of the bottom. I realize I can sort, but I put some lists in a specific order for a reason.",4,6,2.12.149,2020-02-25 20:21:44,,,most_relevant,com.microsoft.todos +Shawn Gillespie,https://lh3.googleusercontent.com/a-/AOh14GhSt3hvJN2klTj-_tHo2yvWFxwdKbYIxpBGGJF-Y5w,"Overall a decent Todo app. It does have some things or desperately needs. 1) why can't I see the event time in the list. I can see the day but not the time. 2) why can't I sort by time? Again, I can sort by date but I can't look at the list and see what's coming next",4,38,2.11.148,2020-02-28 04:56:00,,,most_relevant,com.microsoft.todos +Aniket Patel,https://lh3.googleusercontent.com/a-/AOh14GgbykzD-880OgsyR_da1TqGv-MDQdE05bwH7fa9bZg,This is the best reminders app that I've come across (and I've tried a few). It falls short of 5 stars as there are some simple usability changes they could make which would make the experience a little bit better. It doesn't feel like many updates are being made though.,4,7,2.8.145,2020-01-12 19:22:33,,,most_relevant,com.microsoft.todos +Ava Vasyliev,https://lh3.googleusercontent.com/-uohF7J5l54c/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPlW-1rwIRND5ZA_l6964w-OeMB_w/photo.jpg,"I still really miss being able to synch important to-do's (i.e. exams) with my calendar app, as I believe Wunderlist was able to do. Besides that, I'm very happy with the ease of use and functionality of this app, helps me everyday.",4,0,2.8.145,2020-01-26 19:44:56,,,most_relevant,com.microsoft.todos +Hamed Zakeri,https://lh3.googleusercontent.com/a-/AOh14GjBDt9Hu7_Ce9aNgntJ446cc52DSOvqo32XopgDQA,"It very easy to use, but we should be able to merge tasks for all accounts in one location. Changing account from personal to work or school is really annoying. I once lost all my data when my school account became inactive!",4,3,2.11.148,2020-02-18 00:32:34,,,most_relevant,com.microsoft.todos +Denis Krylov,https://lh3.googleusercontent.com/-f2O0O5mUbLc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM6zjeBTAXit7Mb1ETg8dBeUt3JCQ/photo.jpg,"It is a pretty nice app. I really like it. But why don't you you make the ""delete completed tasks"" button? Is it something too difficult? If this function will not appear in the nearest updates I will change the app for sure.",4,1,2.8.145,2020-01-26 12:39:52,,,most_relevant,com.microsoft.todos +Sergio GH,https://lh3.googleusercontent.com/a-/AOh14GjaHMDT7K5zb9-cSIvMVO1IQNqkXaUZ3_BpMvy4Dw,Adding tasks from Widget fails. After last update when adding a task from Widget goes directly to TASKS LIST by default instedad of going to the list you are watching in the Widget. I prefered when the task was added to the list shown at the moment. Edited 2/2/2020: corrected.,4,1,2.10.147,2020-02-02 18:28:10,,,most_relevant,com.microsoft.todos +Brian H,https://lh3.googleusercontent.com/-kSU1IrK3CAg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPMc7JCB036hGfnY5jO9z7SlYUseg/photo.jpg,Works as well as Wunderlist for the most part. For shared lists though I would like to be able to disable notifications. It can get annoying when you share a list for grocery items and each deletion is sending a notification.,4,2,2.10.147,2020-02-04 19:32:18,,,most_relevant,com.microsoft.todos +Shelly Lai,https://lh3.googleusercontent.com/a-/AOh14GhMYrhfQsftS2miUAWBPWB9FRSgFUzAgUtNe0Eivg,"I'm a Wunderlist user for years. Generally this app is good, just lack 2 important features: (1) Weekly view that includes overdue tasks, (2) Mark overdue task date in red on widget.",4,0,2.12.149,2020-03-13 03:53:55,,,most_relevant,com.microsoft.todos +Geetanjali Rao,https://lh3.googleusercontent.com/-wc3zRc0Ot60/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO1I_sUG0c8TKj24-YmrLjhT9AHyA/photo.jpg,"Very nice app. It would be helpful if it is integrated with outlook calender, or can be added to outlook calender, just like evernote and wunderlist are connected to it.",4,0,2.12.149,2020-03-19 02:31:01,,,most_relevant,com.microsoft.todos +perry martin-loat,https://lh3.googleusercontent.com/-D8plqCI3-0s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOKdublUkS8zugdvkdoGZfpZv05Cw/photo.jpg,"Clean easy interface, connected to an Alexa skill allows listings to sync. The planning side of things I am still trying to daisy chain To Do, Alexa and Outlook so I get a mutable event horizon where I input by voice and have the Outlook toolset available.",4,0,2.8.145,2020-01-14 22:21:26,,,most_relevant,com.microsoft.todos +Roger Garcia Maldonado,https://lh3.googleusercontent.com/a-/AOh14GhQExhP1TslR6kkGDE7r6yl-HKUQNe54AiCZGeybkk,"Widget improvement needed. If I'm in the 'Groceries' tab, when I add a task in the widget, it should add the task in the current tab 'Groceries'. Now it add tasks on the 'tasks' tab by default when it should add tasks to the current tab by default. The App is good, but needs improvements.",4,0,2.8.145,2020-01-23 11:07:33,,,most_relevant,com.microsoft.todos +Sayantan Sinharay,https://lh3.googleusercontent.com/a-/AOh14GhRdO97H2sMK4AwQ8aaZBUWfSBky6O2WpS3618SeA,"Hey , i have an suggestions for your app ... i am calling it bug ...and i would be highly appreciated if u can fix it ... according to me the ticked task must get deleted by its own ... Else everything is ok and deserves a 4 star ... if u can fix it i will give it a 5 star rating...",4,0,2.10.147,2020-02-03 05:03:49,,,most_relevant,com.microsoft.todos +Wess Kilker,https://lh3.googleusercontent.com/a-/AOh14Gjbnk1YFhw_J-XIY-O0_qbF4NSLQOGH4416GqH-pA,"Great app for sharing lists. Having the iOS, Android and Windows options makes it easy for everyone to manage and view the shared lists. Wish it had location based reminder and built-in spell check then it would be 5*..",4,0,2.10.147,2020-01-31 12:21:17,,,most_relevant,com.microsoft.todos +Sasa Jovanovic,https://lh3.googleusercontent.com/a-/AOh14GgwoIQdRYG6A3LLB94-rAayrprfAifDfSb03lRN,"In the ""important"" category add option ""sort by group and list name"". Do the same for the widget. It is possibol to have important things from different category so categorising it in ""important"" segment make's it cleaner and easyer to track.",4,0,2.12.149,2020-02-28 22:02:20,,,most_relevant,com.microsoft.todos +Dan Ohlemacher,https://lh3.googleusercontent.com/a-/AOh14Gg9qqins-gVlk0sIH298qXXUiS4WEOdoz6xi6q5BQ,"Great except for ""Flagged Email"" setting. I get a lot of spam messages that are flagged. Therefore, we should be able to select and/or exclude certain folders.",4,0,2.10.147,2020-02-04 19:41:50,,,most_relevant,com.microsoft.todos +Jack Martin,https://lh3.googleusercontent.com/-L_qEINoX2fM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNS3GsQF2DPto1iHGoa-boM2WNRGA/photo.jpg,Would be 5 stars if the list sorting had more functionality (could sort by more than one criteria simultaneously) but apart from that it is a very user friendly and effective tool which I use multiple times per day.,4,1,2.11.148,2020-02-16 01:17:22,,,most_relevant,com.microsoft.todos +steve karvanis,https://lh3.googleusercontent.com/-Q5phtULAZ9Y/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOShB1f2yCmqlQc6OPjAO_lBswHjw/photo.jpg,"Very good app, similar to a very basic project management system you can move your tasks around so you can manage them better could have more functionality in that area not overboard you want to keep it simple but overall Excellence application",4,0,2.11.148,2020-02-26 22:16:19,,,most_relevant,com.microsoft.todos +Robert Viviano,https://lh3.googleusercontent.com/a-/AOh14GjhFfo2jaiYqd68mFZ67jSsxODqifLcELD8XD5usdk,Great app except for one huge issue: you cannot customize the snooze time. You can only snooze up to an hour in specified increments. Fix this issue and the app would be nearly perfect.,4,0,2.8.145,2020-01-24 11:11:07,,,most_relevant,com.microsoft.todos +Mike M,https://lh3.googleusercontent.com/-3frXEK02rrU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPbO22-OI7GLiSrbjAVAyj6Yx_V6g/photo.jpg,"Switched to using this few weeks back after reading positive reviews as replacement for Wunderlist. Much better than Android equivalents, but ability to plan 'My tomorrow' would be really helpful as I like to plan evening before.",4,0,2.10.147,2020-02-13 20:09:18,,,most_relevant,com.microsoft.todos +Kari Oliver,https://lh3.googleusercontent.com/-qs9NBnkUbR8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOnhsqZ99IWvI0QQM14_P0spA5wvg/photo.jpg,"It is easy to use. I am sure I have more to learn though. I just wish that the color coding would show on the home page. When I open one list I can see it's color, but not until I open it.",4,0,2.10.147,2020-02-04 02:22:07,,,most_relevant,com.microsoft.todos +Christopher,https://lh3.googleusercontent.com/a-/AOh14GiHxePLvorvItrZzCEryMzuV6clWFRssPVfRcjpKg,"Great app, just like Wunderlist and more. The only thing I am missing is the ability to arrange my important tasks in the order that I would like. Please add this!",4,1,2.12.149,2020-03-11 00:00:17,,,most_relevant,com.microsoft.todos +David A Brown,https://lh3.googleusercontent.com/a-/AOh14Gh8h1OLuicG5ZS7EvWkwJymHsabFqzwbQu1RsI,on android - It still won't let me add tasks to top of list where the list actually opens,4,0,2.14.152,2020-03-28 21:29:34,,,most_relevant,com.microsoft.todos +Carlos Velarde,https://lh3.googleusercontent.com/a-/AOh14GiNf7MhL6yT_rjfi8A8qIwlmFh2rMmR05BewVReyfk,"Functionality is great, however after certain periods of time, the widget goes blank. I have to remove and re-apply widget in the home screen to get tasks to appear again.",4,0,2.8.145,2020-01-20 00:21:03,,,most_relevant,com.microsoft.todos +Francisco del Valle Gracia,https://lh3.googleusercontent.com/-puGIUVVce2w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOuScwM4PT8U9XJNY17j6SFxZIoRg/photo.jpg,"Very useful for making To Dos and not forgetting anything. It syncs perfectly across several platforms (web, IOS, Android) and also allows for easy sharing and collaboration of tasks.",4,1,2.8.145,2020-01-21 08:29:30,,,most_relevant,com.microsoft.todos +Christine Clement,https://lh3.googleusercontent.com/a-/AOh14GizjxzQopnWUAcgx1vAvFCmEiWJLZfX21zJrat5UwI,"Very helpful and useful. I made use of the widget very often, but it stopped working and only started back to work when I uninstalled and then reinstalled the app. Otherwise, this is is a 5-star app.",4,0,2.8.145,2020-01-25 22:35:38,,,most_relevant,com.microsoft.todos +Clint Artes,https://lh3.googleusercontent.com/a-/AOh14Gi7cR9C8eKzBm3Darj0NAL8oImfHGSLtU3bK_TYzw,"Didn't like it at first, too complicated (compared to your previous super- minimal Reminder applet, attached to Launcher). I like it now, especially since I know how most bits work.",4,1,2.8.145,2020-02-05 23:43:38,,,most_relevant,com.microsoft.todos +Atiqah Rahim,https://lh3.googleusercontent.com/a-/AOh14GjEDFA_C9bHzTy7mXulI3B6d_vxve7135hIpHxSnQ,I am using this Appa past few months & seems good to me.This apps helps me in organising my stuff..I love it☺,4,0,2.13.151,2020-03-21 12:01:52,,,most_relevant,com.microsoft.todos +Fabricio Luciano Castillo,https://lh3.googleusercontent.com/a-/AOh14GhOyFVCGXIP3o-IES0c7wVx16SDjHnO4-U--7BFpA,"I'm coming from Wunderlist and I feel quite comfortable with the feel of the app, except that I miss the main view of one selected list's tems. It'll be cool if you added an alternative to the home view",4,0,2.8.145,2020-01-15 22:56:39,,,most_relevant,com.microsoft.todos +Angelo Gamaliel Carullo,https://lh3.googleusercontent.com/a-/AOh14Gjn0AKJho7K7VKBh7fq1KP0kRlaiwW5u9yVtrnz,Great for organizing milestones and to do lists,4,0,2.14.152,2020-04-06 06:29:33,,,newest,com.microsoft.todos +Ahmad Abdo,https://lh3.googleusercontent.com/-JjhZq9G-Rdo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMMGuBae8VBN-cjnjGmCMOTk5c6Qw/photo.jpg,Helpful. Not like Wunderlist which was the best todo I ever used. Please add a feature to show my repeated daily tasks in My Day section automatically without adding it manually.,4,0,2.14.152,2020-04-06 03:05:39,,,newest,com.microsoft.todos +Yuley Burrow,https://lh3.googleusercontent.com/a-/AOh14GgRmyvgNA-NivGgDgomSm-cqXAP6lwUISUllm1d,Make life easier to keep track of everything,4,0,2.11.148,2020-04-05 17:57:29,,,newest,com.microsoft.todos +Abd El amr,https://lh3.googleusercontent.com/a-/AOh14Ghpe-Dki1zFAhu111ii5NmPkN2k4K_OCVGvjdUctQ,"It's wonderful but when i download it last time ,it doesn't sign in ,there is a big problem,i do not know what to do",4,0,2.14.152,2020-04-05 17:34:49,,,newest,com.microsoft.todos +Anand Kabra,https://lh3.googleusercontent.com/a-/AOh14GgaU2JlfIZRqWp_oDRZ2vs8YOtUNG_QsAL-f4rUH4I,"All the activities planned or unplanned for today should appear under ""My Day""...",4,0,2.14.152,2020-04-05 13:03:03,,,newest,com.microsoft.todos +Ofri Sela,https://lh3.googleusercontent.com/a-/AOh14GjDjdhkAHyQTLVf67bB8U5vJb4YheXPdUhByUIN11Q,Coming from good old Wunderlist and this one is definitely a noticeable refinement. One feature I'm missing from good old Wunderlist is the ability to manually order tasks (this comes handy at times). In addition it would make sense to create a default reminder on the date of the task if such date is defined. With this couple of additions it's an easy 5 stars for me.,4,0,2.14.152,2020-04-05 10:26:41,,,newest,com.microsoft.todos +Recy Cel,https://lh3.googleusercontent.com/-iXLCdgWhmWA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMLbO14FWThygK3ltpJjCWjN3-5Pw/photo.jpg,"It's ok, I guess not much different than many other calendar apps, still getting used to it",4,0,1.45.98,2020-04-05 09:36:25,,,newest,com.microsoft.todos +May Ling,https://lh3.googleusercontent.com/a-/AOh14GiTtHF6faTXVqRINFRtLHXrOv13SGuxDk1DPw4_bw,Works well - just what I need.,4,0,2.14.152,2020-04-05 06:13:18,,,newest,com.microsoft.todos +Hamid Ziaei,https://lh3.googleusercontent.com/a-/AOh14GglSvjpz9kyv1hRGO9MXLGZpHjwVfqDxzElP3B4KQ,It's great bud it doesn't have task category or labales,4,0,2.14.152,2020-04-05 05:22:48,,,newest,com.microsoft.todos +Muhammad Risky Pahlevi,https://lh3.googleusercontent.com/a-/AOh14Gj1L1H9dp4hnFWcxteG6wgZ9-5_RL4H2gGRKMlZzA,"Please update the sorting algorithm to sort by due date including the reminder time in the to-do so I can see in a day which to-do comes first on top of the list. And also pls make the Planned section sortable as it's only sorted alphabetically, I want to sort by due date including the to-do reminder time.",4,0,2.14.152,2020-04-05 03:54:38,,,newest,com.microsoft.todos +syaifudi riza,https://lh3.googleusercontent.com/a-/AOh14GjLsFMsbNpTjgkAuOCQt9iACuXlDFbF0-UIim3S8g,Easy to use,4,0,,2020-04-04 22:10:35,,,newest,com.microsoft.todos +Ramsaay,https://lh3.googleusercontent.com/a-/AOh14GguMvnyDSqGPa_7zHFksGvwVy2yIToAlQwsPgqH1w,Need some more designs in app,4,0,2.14.152,2020-04-04 17:31:42,,,newest,com.microsoft.todos +Can't Think of a Good Screen Name,https://lh3.googleusercontent.com/-1rNeeNkI_Yg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNkjOuQrrkYRP5fExvHZpFOFgK5Gg/photo.jpg,"good except notifications also vibrate, and there's no way to disable vibrations for this app!",4,0,,2020-04-04 16:07:28,,,newest,com.microsoft.todos +Malak Amjad,https://lh3.googleusercontent.com/-PRY1ZmfWmpI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPq6XukPdVjqZJ-aAYq_U9jIBbhyg/photo.jpg,Organized App,4,0,2.14.152,2020-04-04 12:05:08,,,newest,com.microsoft.todos +Shashwat Sinha,https://lh3.googleusercontent.com/-9rwtWpYZpiM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPbGNffrpI1gkcTaWtg1uEC4mvdsA/photo.jpg,Some functionality is not seamless. There is no feature to order the tasks in a custom order or group tasks within a list,4,0,2.14.152,2020-04-04 08:10:25,,,newest,com.microsoft.todos +Josh Danns,https://lh3.googleusercontent.com/a-/AOh14GifvYTQt0os19LdP1-_T3NDMT8UO8R0Nye9Hzon8w,Great app! Simple and neat UI. It would however be nice if you could also include a passcode lock.,4,0,2.14.152,2020-04-04 07:23:20,,,newest,com.microsoft.todos +Kuya Nerd,https://lh3.googleusercontent.com/a-/AOh14GhYs0_wfJpenIDXbSBJdYlpXHVDFmge4dG3XDtyDw,Please fix the Note part. It always crash on my phone 😢,4,0,2.14.152,2020-04-04 00:26:02,,,newest,com.microsoft.todos +Rohan Gada,https://lh3.googleusercontent.com/a-/AOh14Gi1T7IgVRfeIY5QfUUH2c0_Bysr22py1hqjCZfDMH4,"The best to do app I've used by far. One tiny feature/design request : Can you please show the subtask count (total and completed) in the widget as well. Currently I need to click the task in the widget, which leads me to the task screen on app which shows the subtask count.",4,0,2.14.152,2020-04-03 18:36:29,,,newest,com.microsoft.todos +Abhijit Jagtap,https://lh3.googleusercontent.com/a-/AOh14GjxMd6VpsTfO-XUV9kvZOM-k3slEtMxsjnyAC5Z7A,Reminder doesn't work as per expectations. If we set any task with due date and if get completed before due date and try to mark it completed...that task get completed but new task get added with same name and same due date till that due date.,4,0,2.14.152,2020-04-03 12:32:43,,,newest,com.microsoft.todos +Prashant Ujjainnia,https://lh3.googleusercontent.com/-yEYst5m_Xao/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNigkTqmYtvcBenJOsjYD7hdedhcQ/photo.jpg,Please add two factor authentication. I couldn't post my request through app because I don't have a Facebook account to log in.,4,0,2.14.152,2020-04-03 08:06:10,,,newest,com.microsoft.todos +Maryam Azadeh,https://lh3.googleusercontent.com/a-/AOh14Gh35pVWI7rE8xNrfSOruVmxhh1BORyPqfBiKGxEmA,"Moving from the wonderful wunderlist to To Do app was easy and now some other feature are added, among which I like ""Add to My Day"" and ""Tasks"".",4,0,2.13.151,2020-04-03 07:44:48,,,newest,com.microsoft.todos +Debjoy Sarkar,https://lh3.googleusercontent.com/a-/AOh14GhsmecPtNZKEJJDAf6ERfo-ANj8fw5P3U4dQcG-suM,Give more features on par with Google Keep. Dark mode too is an essential tool that's sorely missing.,4,0,2.14.152,2020-04-02 14:15:11,,,newest,com.microsoft.todos +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Really needs and undo button, gesture or shake to undo. It's hell of a problem to find accidentally completed tasks.",4,10,2.14.152,2020-04-02 13:37:44,,,newest,com.microsoft.todos +Mohammed Omar,https://lh3.googleusercontent.com/-fyFOf9kJQBw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMQEGKbC7WC5CPk-sGYkjLyLU4vmA/photo.jpg,It is so good If thtere is alarm it will be better,4,0,2.14.152,2020-04-02 09:37:01,,,newest,com.microsoft.todos +Cliff Leach,https://lh3.googleusercontent.com/a-/AOh14Ghoqt83rmoCOOYsB9-5d-DZ9Y6ZvD65y5LBud0d,"Good app, usefull.",4,0,2.14.152,2020-04-02 08:04:47,,,newest,com.microsoft.todos +Nardos zebene,https://lh3.googleusercontent.com/a-/AOh14Gj0RsTBBAIq-2AOXlwrxncLNVmo4WoWSc_3d8-BYg,Love this app Can guys add this features please 1. Task priority tag (red for important) 2. More notifications options ( sometimes a single clicking sound is not enough wish you add alarm settings) Thanks,4,0,2.14.152,2020-04-02 04:55:24,,,newest,com.microsoft.todos +ASWIN M,https://lh3.googleusercontent.com/-5KM49BjriLg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP0WVS9d_m52V5XGY-YamHJ9B1snA/photo.jpg,"Please add a feature like task has to be divided based on categories inside ""planned"" and ""importent"" list",4,0,2.14.152,2020-04-02 01:13:10,,,newest,com.microsoft.todos +Anupkumar,https://lh3.googleusercontent.com/-13xNBWZ4iag/AAAAAAAAAAI/AAAAAAAADi4/AAKWJJPQsgoMT1C6LVZ3CWhOvbS1hnDFnA/photo.jpg,"Everything is good, only one feature shall be add. We should be able to customise Reminder Notification tone",4,0,2.14.152,2020-04-02 00:49:14,,,newest,com.microsoft.todos +Janki Patel,https://lh3.googleusercontent.com/a-/AOh14Gg7efYNkXP7T4WBL5QUAHGvjaVIfLZy6_W3QCqLwQ,I don't Like how the due date doesn't change for the next day.,4,0,,2020-04-01 13:51:29,,,newest,com.microsoft.todos +Gurcharanpreet Singh,https://lh3.googleusercontent.com/a-/AOh14GjhlSAxNLPwgpZr0tOe1qFNChclXFZ4ZAiGguTPIA,almost perfect but need time setting for due dates as most students using it will require to have proper time input of their assignments. cheers to the team! did a great job!,4,0,2.14.152,2020-04-01 03:40:50,,,newest,com.microsoft.todos +Bill Price,https://lh3.googleusercontent.com/a-/AOh14GiBWpbQJ8WeChvvfLQI_e9xWX1voJXybcsvyidNKw,Transfer was seamless from Wunderlist ( last appt) to To Do,4,0,2.14.152,2020-03-31 21:31:38,,,newest,com.microsoft.todos +Samuel Owusu,https://lh3.googleusercontent.com/a-/AOh14GhnuL_GE0oa0plo_ItdzGVxDJnbWcxJCSw5gQPN,"This app is great, and I'm sticking to it. The only issue I have with it is the notification, it doesn't work when the app is closed. Please fix that.",4,0,2.14.152,2020-03-31 21:13:33,,,newest,com.microsoft.todos +Julian Craddock,https://lh3.googleusercontent.com/a-/AOh14Gg0p71YNtOe3kff3_lsiITo7074aPdjw_68Rq1WvQ,Works.,4,0,2.14.152,2020-03-31 18:51:45,,,newest,com.microsoft.todos +Michele Barzey,https://lh3.googleusercontent.com/a-/AOh14Gjbyiv_596dCh8YbvQK5-elmsSqz_DFYVQUOTM6,Helpful for planning.,4,0,2.13.151,2020-03-31 07:39:22,,,newest,com.microsoft.todos +Martin Kissil,https://lh3.googleusercontent.com/-aVPDLSWBDjA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPx2CQpTArJ9StJEXA_-hxgj0EPRQ/photo.jpg,"It's a good start, but I miss some of the simple capability of Wunderlist.",4,0,2.14.152,2020-03-31 05:21:28,,,newest,com.microsoft.todos +Alejandro Castellano,https://lh3.googleusercontent.com/a-/AOh14GjFpPtZA6jpoVjr9QGNcFq1O7BX-p0Xm4rJMEPRng,"I like it but sometimes does not response correctly, and need more options to do the daily use easier",4,0,2.14.152,2020-03-31 04:15:23,,,newest,com.microsoft.todos +Dan Smeiska,https://lh3.googleusercontent.com/a-/AOh14GhwyAA9-RF8hP4ApMdg41nUs0cPxnM3iZw-zHh3AA,"For those coming from Wunderlist: To transfer your data, log on to a computer (not a phone or tablet) to transfer your data if you're having transfer trouble. Seems similar to the glory that was Wunderlist. But still not as good.",4,2,2.14.152,2020-03-30 23:30:07,,,newest,com.microsoft.todos +Vivek Dadu,https://lh3.googleusercontent.com/-T132ZssDa6Y/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPSArLZgjmvPANqNwsXEaeGepTuyA/photo.jpg,Nice,4,0,2.14.152,2020-03-30 12:47:54,,,newest,com.microsoft.todos +Paola Zanotto,https://lh3.googleusercontent.com/a-/AOh14GiiduacpB97wUwVOA-GwAfBwnWOuuGpciYiL-l8lg,"Good app overall but still doesn't recognise the date of reminder from plain text, this needs to Improve",4,0,2.14.152,2020-03-30 08:10:29,,,newest,com.microsoft.todos +Xiangling Liao,https://lh3.googleusercontent.com/-cqSX7Q5K6-4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOcVgwKaRWPvO_yuNIn4zdRN2xQig/photo.jpg,Not as good as its old version wunderlist. Especially when you want to upload and download files through this app.,4,0,2.14.152,2020-03-29 16:03:05,,,newest,com.microsoft.todos +David A Brown,https://lh3.googleusercontent.com/a-/AOh14Gh8h1OLuicG5ZS7EvWkwJymHsabFqzwbQu1RsI,on android - It still won't let me add tasks to top of list where the list actually opens,4,0,2.14.152,2020-03-28 21:29:34,,,newest,com.microsoft.todos +Margaritis,https://lh3.googleusercontent.com/a-/AOh14Gi65CEZUCPb7skP8EsC3hLUXNDCaTgTr4bFv2GJ,"Pretty good app, lets you organize tasks by categories, prioritize based on due dates and set reminders for each specific task. However, sometimes, reminders fail to notify you in the specified time and come rather delayed.",4,1,2.14.152,2020-03-28 14:57:30,,,newest,com.microsoft.todos +Ahmed Elshorpagy,https://lh3.googleusercontent.com/a-/AOh14GgMvKBTRfOkfarGYTc1sG8S6xxdjPj_wz9XHvN90A,حلو جدا,4,0,2.14.152,2020-03-28 12:57:27,,,newest,com.microsoft.todos +Victor M. Fernandez,https://lh3.googleusercontent.com/a-/AOh14GiqsfXTpcfwDfvYWkFazE8V5a4NggTG3gTnNS4K,Could be better if the tasks overdue would automatically show in Today,4,0,2.14.152,2020-03-28 12:22:37,,,newest,com.microsoft.todos +Aron Jones,https://lh3.googleusercontent.com/a-/AOh14Gjlx0LxfSs3i0o4e2YTNg9F_xVW7M4WOKR7rJPw-g,"Very Nice App ... But who really needs to be reminded of and check off things we do all the time in daily life? If something is important next week or whenever, we normally remember it without fail - or we write it down. This App, while very nice indeed, typifies and feeds society's obsession with mobiles and tablets - and it renders people even more stupidly 'dependent' upon help - instead of what used to be 'common sense.' 🤔",4,0,,2020-03-27 20:31:09,,,newest,com.microsoft.todos +giorgi shengelaia,https://lh3.googleusercontent.com/a-/AOh14Giz5QnHeVAq_F9XhP7xB02cY0A1PuTkOa7BCvoDrDA,"I would like to see tags (they are already in the app, but need a better implementation), filters and location-based notifications, please.",4,1,2.14.152,2020-03-27 20:14:20,,,newest,com.microsoft.todos +Taz Vdw,https://lh3.googleusercontent.com/a-/AOh14GgkZHG2Oulxaj7dHwMGNWKNklbB4Tzf-vcMB-Xl,"Would be good to have a ""Tomorrow"" list. So when in bed clearing mind at the end of the day, the default list, ""my day"" isn't cleared.",4,0,2.14.152,2020-03-27 08:44:35,,,newest,com.microsoft.todos +C G ANOOP,https://lh3.googleusercontent.com/a-/AOh14GjessBX6XgVUXcxm3B4jWwcbv-_lp3D5Y_1Tvg2Tw,"Very good... Excellent features. Especially for the subtask, the option to add step for achieving the task/subtask. Kindly add a calendar feature to get an overview of what is ahead. Also, some ready made quick reminders like a call, payment, email, a template for grocery, etc would add cheery to the cake",4,4,2.14.152,2020-03-27 07:14:03,,,newest,com.microsoft.todos +Alexandra Natasha,https://lh3.googleusercontent.com/a-/AOh14Gg3AaK25GAmKL075oJvrLEdJZBq7sBUrbJLguTe,The widget sometimes shows my list as empty. And it always need to be removed and replace to show the content of the list properly.,4,0,2.14.152,2020-03-27 04:01:49,,,newest,com.microsoft.todos +Nick WGash,https://lh3.googleusercontent.com/-uROheicj-L8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOrdJIzDlVzj1HhLqsvQskjJ_mKeg/photo.jpg,Works well,4,0,2.13.151,2020-03-26 17:25:56,,,newest,com.microsoft.todos +Bill Brindley,https://lh3.googleusercontent.com/-1XwZ6YZw-IA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPD3ZPo7hBrJOfJTPVe4wkwH6Qdzw/photo.jpg,Good,4,0,2.13.151,2020-03-26 13:05:28,,,newest,com.microsoft.todos +Nelson Anderson,https://lh3.googleusercontent.com/-IIRyW33FQBU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO8LtlbUXCIxHqbmUl0Lo8zl-_RCA/photo.jpg,Easy to quickly find and use,4,0,2.14.152,2020-03-26 04:14:32,,,newest,com.microsoft.todos +Daniel Pilone,https://lh3.googleusercontent.com/-Xhqlp_15wEw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNIRD6c2xALsClOTYknSe8PLa2msg/photo.jpg,"Easy transition from Wunderlist, and it covers the vast majority of functionality.",4,0,2.13.151,2020-03-25 23:03:36,,,newest,com.microsoft.todos +Shrisha Shrestha,https://lh3.googleusercontent.com/a-/AOh14GjXjOaERYUMcYNp2559uued00TNLjS6Y9fbtgZOrQ,Motivating app Would love it if it had more functional tools,4,0,2.14.152,2020-03-25 17:08:18,,,newest,com.microsoft.todos +cesmed,https://lh3.googleusercontent.com/a-/AOh14GjR5QWQ5FHZLl5IUiUmvyaWjBdKvz0ftiePYBefbg,Best personal assistant app,4,0,2.14.152,2020-03-25 16:12:16,,,newest,com.microsoft.todos +Lucas Inocencio Pires,https://lh3.googleusercontent.com/a-/AOh14Gg8ZKiE3Fd0szShZF6thwySchMGgSWlMfy3Re3fcg,"O app é bastante funcional e cumpre o prometido. Acho que seria interessante ter features que integrem serviços, como um calendário. Ou seja, agendamos uma tarefa e isso irá constar no calendário escolhido. Isso evita ter que abrir dois apps pra ver os afazeres do dia. Precisa de tema dark no modo web.",4,0,2.13.151,2020-03-25 15:59:13,,,newest,com.microsoft.todos +tedi Ted,https://lh3.googleusercontent.com/-af6NgxCdd9c/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOYjPmPhF_6FRpCMtRW1WrxQujSaQ/photo.jpg,Please add two options : 1- tag or label in task and list 2- password to enter application Thanks for free,4,0,2.11.148,2020-03-25 15:17:32,,,newest,com.microsoft.todos +Jo Storch,https://lh3.googleusercontent.com/-xk4iQkuF4YA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMa-CzFIW1DViBj_MqFIYjDQPUWmg/photo.jpg,I love that I can break a task into steps. I didnt like that they moved the completed task button from the bottom of list to side menu. All in all it is a good tool and it has improved a lot since I started using it.,4,0,2.13.151,2020-03-25 13:14:10,,,newest,com.microsoft.todos +Glenn Wilson,https://lh3.googleusercontent.com/-k9VhGFQMEcs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN_fMI-tCj0o1tbqbKmtjKmwSUPCw/photo.jpg,"Not quite Wunderlist but I'm pretty happy overall with how it works. One suggestion would be having a ""Tomorrow"" option similar to my day so you can add stuff to your ""My Day"" the night before.",4,2,2.13.151,2020-03-25 12:43:32,,,newest,com.microsoft.todos +Gmco,https://lh3.googleusercontent.com/-QJpHkzfKDrI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPFh-Xs2dShHJ-fO2O6TCxoP3tFbA/photo.jpg,Good but it an be better if we can add contact no. Also ..,4,0,2.13.151,2020-03-25 10:05:26,,,newest,com.microsoft.todos +Kaka Sepahi,https://lh3.googleusercontent.com/a-/AOh14GhGK8ghegpUKzjpgj3-skuozJTW7SehvtQLK0Xf,Noice,4,0,2.13.151,2020-03-25 08:46:24,,,newest,com.microsoft.todos +Dèanta ann an Alba,https://lh3.googleusercontent.com/a-/AOh14Gjg-N8HiKEjPvGpuVCOLUvwKXxjFdtgyEPX5wss,Love this app! Didn't think I could find something as good as Wunderlist but this app is better! Just a couple of things would make it perfect. Option to change font size and option to add new items to top of list.,4,0,2.13.151,2020-03-25 01:29:20,,,newest,com.microsoft.todos +Lane Laucomer,https://lh3.googleusercontent.com/a-/AOh14Gio8uP5cNlczdDrTF_GWIvFWHoJTbm8e81-Sq0x5g,"The app worked better when it was Wunderlist. It often has problems syncing, which is inconvenient for shared lists. Overall the features are really nice though.",4,0,2.13.151,2020-03-25 00:08:31,,,newest,com.microsoft.todos +Karen Diaz,https://lh3.googleusercontent.com/a-/AOh14GiZ0RXszPLMs0nJNas1H-70qZ40t597kkt7rgXN,"Good replacement app for Wunderlist. Perhaps even better. I just got it a couple of weeks ago, so we shall see. It's easy to use and I like the look of it.",4,0,2.13.151,2020-03-24 12:23:26,,,newest,com.microsoft.todos +Erica Henkel,https://lh3.googleusercontent.com/a-/AOh14GiyIBCIhcSNoz3_UkUxUPurDDK3HnSUjXCPYbwC-A,"We had some syncing issues with our shared lists that came in from Wunderlist, but once we had them syncing things have worked great!!!",4,0,2.13.151,2020-03-24 11:55:48,,,newest,com.microsoft.todos +Majwethata Memorial Stones,https://lh3.googleusercontent.com/a-/AOh14GjoSHLXiDIjZ03xHxiNR9bf-h91pGPqBkrkpmVG,Good app for daily planning.,4,0,2.13.151,2020-03-24 10:49:23,,,newest,com.microsoft.todos +cath queen,https://lh3.googleusercontent.com/a-/AOh14GjLUSRaysSA7F5KQCqyImMUhj7WCho_Z0YF2bVqjQ,I love this app. It's easy to customise. Can you add a feature for a timer? That way people can measure how long they did a certain task for.,4,0,2.13.151,2020-03-24 10:27:56,,,newest,com.microsoft.todos +Skye Enters,https://lh3.googleusercontent.com/-c2H_QKxmggQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOIbRvx8roCJwya04PBQSIW-V1KSw/photo.jpg,"This is a nice app, it does what I needed to do and it's there when I need to use it.",4,0,1.45.98,2020-03-24 02:45:43,,,newest,com.microsoft.todos +NAVJOT SINGH,https://lh3.googleusercontent.com/-b9fqFOJyWtk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNVVOHPoob5ApM7iOUXFHmysuKytg/photo.jpg,It helped me a lot to stay ahead of my schedule. A productive app. But after some time some reminders don't work and I have to set them again.,4,1,2.13.151,2020-03-24 00:08:34,,,newest,com.microsoft.todos +Andrew Huxley,https://lh3.googleusercontent.com/a-/AOh14GiIQd6aaWKX7kRbYFKEQGApt1JwZQemyxAceyt7Og,"Still needs some work to get it up to par with Wunderlist, but works ok",4,1,2.13.151,2020-03-23 22:00:38,,,newest,com.microsoft.todos +{{PEACEPOTMIKADOTZ}} {{CRAZYFROG}},https://lh3.googleusercontent.com/a-/AOh14Giay_dBe1kwKyi0gdMuMEQ9bkuvUKFuvzCmlCnzcw,Good,4,0,2.13.151,2020-03-23 20:24:56,,,newest,com.microsoft.todos +Thomas Schmidt,https://lh3.googleusercontent.com/a-/AOh14GiT1-uDdX9pBVhIiq3GuMay7ch7CvxFsSyNaQ2DAQ,"Great for collaboration and communication, especially since we cant meet face to face",4,1,2.13.151,2020-03-23 18:16:16,,,newest,com.microsoft.todos +Mazen mohammed,https://lh3.googleusercontent.com/a-/AOh14GhmYxEXByRuF_OiCqtyDKUfhHtGXRzQtE4-2G6I,It's a great app almost providing everything you want for free not like other apps. I just wish if there was a timer beside each task you do such that you can spend tasks more efficiently and switch between them . Anyway great job guys 😉,4,1,2.13.151,2020-03-23 13:38:06,,,newest,com.microsoft.todos +Shafiqul Islam Suny,https://lh3.googleusercontent.com/a-/AOh14GhX7Xo_1T6UjkBND2X_criKg5hb9MHAd_bXfcvAzw,Why this app sends me notifications 30 seconds late?,4,0,2.13.151,2020-03-23 09:08:12,,,newest,com.microsoft.todos +Christian Fenner,https://lh3.googleusercontent.com/a-/AOh14GiVQZabEKLpr0yBnGTGtvtmmwj8HP_D20-c5wzFHds,Good replacement for Wunderlist. Missing the possibility to create to-do by sending email.,4,0,2.13.151,2020-03-22 09:49:37,,,newest,com.microsoft.todos +Tadeáš Tuháček,https://lh3.googleusercontent.com/a-/AOh14GhGKIuccMdYWTF-27VR-7nVJv3KB_dBZE37B6rF_w,"Sure could use a ""completed tasks"" tab. I hide my completed tasks in tabs as it just gets messy and when I wanna check what is done, I gotta manually untick the ""hide completed"" and then tick it again. I'd also appreciate if you could see when the task was completed. Overall a great multiplatform tool, been using it since I found it.",4,2,2.13.151,2020-03-22 09:28:19,,,newest,com.microsoft.todos +Ma Nu,https://lh3.googleusercontent.com/a-/AOh14GhMymoQ_crX_EupvQ6xpAkYDOe5EiI6OcqKdcJQYA,"I preferred Wunderlist. But in general this is working too. Please allow the user to set a default time for reminder suggestions. Currently it suggests for example 3am in the morning, not very useful.",4,0,2.13.151,2020-03-21 23:11:42,,,newest,com.microsoft.todos +AJ,https://lh3.googleusercontent.com/a-/AOh14Ghe0OIrgg7hAcHpnGl5_rmtxISnnquOQIOWpJWalQ,It helped me to plan my day and also more productive,4,0,2.12.149,2020-03-21 14:28:43,,,newest,com.microsoft.todos +Amirul Azizol,https://lh3.googleusercontent.com/a-/AOh14GjDeeYislQbQZ42MUZsiu0_y9-V-vN10yfgykOUEA,Great app. Only complaint is that I'd like the AMOLED dark mode in the app to match the widget.,4,0,2.13.151,2020-03-21 12:51:06,,,newest,com.microsoft.todos +Atiqah Rahim,https://lh3.googleusercontent.com/a-/AOh14GjEDFA_C9bHzTy7mXulI3B6d_vxve7135hIpHxSnQ,I am using this Appa past few months & seems good to me.This apps helps me in organising my stuff..I love it☺,4,0,2.13.151,2020-03-21 12:01:52,,,newest,com.microsoft.todos +Jake Way,https://lh3.googleusercontent.com/a-/AOh14Ghl6b2PTqNMw0SGJc7jqqTlZIy6hXVhOpn5Vst6vE0,"One of the better cleaner to do apps Could you please add recurring tasks based on day or date. As an example: ""Recurring Every Wednesday : Take out trash"".",4,0,2.13.151,2020-03-21 10:43:09,,,newest,com.microsoft.todos +Tim Stone,https://lh3.googleusercontent.com/a-/AOh14GiQbZtO-ueNJtJlszHTkpel1luKe73tkvvDbQD6Z0U,I came across from Wunderlist and it does everything I need it to do except for one really annoying feature - on Wunderlist when you added a new item you had the option for it to go to the top or bottom of the list. I always want my newest entries to go to the top (especially in very long lists) as they are the things I want to action first. Include a simple option to allow this and your app will do everything Wunderlist did and I will be a happy man!,4,14,2.13.151,2020-03-21 01:00:44,,,newest,com.microsoft.todos +Babak Ebrahimi,https://lh3.googleusercontent.com/a-/AOh14GhMO3uxhPNfxGq2zWXhr44r6kmN3z9Oh5Pp8AMp,"Good app, could be better",4,0,2.13.151,2020-03-20 18:24:52,,,newest,com.microsoft.todos +David Meow,https://lh3.googleusercontent.com/a-/AOh14Ggsg7QMzjq9yCw8LH22AAdX1XAIkdnC9Ki3WO5elg,Useful. Integrated.,4,0,2.13.151,2020-03-20 03:06:42,,,newest,com.microsoft.todos +Chad Johnson,https://lh3.googleusercontent.com/-UQup1SvgPt8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPUQxosheEjPvJ_vOdY46JBfLj2Ag/photo.jpg,"Thus far, I'm finding To Do useful. It feels a step up from Wunderlist. Time will tell for sure.",4,0,2.13.151,2020-03-19 18:05:13,,,newest,com.microsoft.todos +Geetanjali Rao,https://lh3.googleusercontent.com/-wc3zRc0Ot60/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO1I_sUG0c8TKj24-YmrLjhT9AHyA/photo.jpg,"Very nice app. It would be helpful if it is integrated with outlook calender, or can be added to outlook calender, just like evernote and wunderlist are connected to it.",4,0,2.12.149,2020-03-19 02:31:01,,,newest,com.microsoft.todos +kumar gaurav,https://lh3.googleusercontent.com/a-/AOh14GgFeVPf_jFqAn0A-D5phEvnBccVps65eIvSVQbr9w,Good,4,0,2.13.151,2020-03-18 05:19:50,,,newest,com.microsoft.todos +Seth Gregory,https://lh3.googleusercontent.com/a-/AOh14Gg4_kQ0QSG8817qmOxUoSkGkfwDjlydk2RcVciP,Great for general use and getting better.,4,0,2.13.151,2020-03-17 23:05:24,,,newest,com.microsoft.todos +Neil Robinson,https://lh3.googleusercontent.com/-Njvpsm87t24/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOJBCGwNrKoueHk4OLcHe7uGsrG1g/photo.jpg,Microsoft version of Wunderlist. Lists can be shared and sync'd between users. Needs drag and drop feature to allow items in lists to be prioritised based on position.,4,1,2.13.151,2020-03-17 22:59:29,,,newest,com.microsoft.todos +Rick Pietersma,https://lh3.googleusercontent.com/-3Dxd93RVZ2c/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN64DXKB9v--CR3bS2W0hVwyI5fLA/photo.jpg,"Great to do app, seemless integration with Windows. Would love to see the option to open the mobile app with the My Day tab already open.",4,0,2.13.151,2020-03-17 22:22:26,,,newest,com.microsoft.todos +Brenda P,https://lh3.googleusercontent.com/-yPDnI14ddMY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNx2Xj6P-_gxVP_DNUSMtkDBOC2dw/photo.jpg,Microsoft is like Wanderlist. Originally had issues sharing and syncing this To Do List app. Appears to be settling down. We like to it now.,4,1,2.13.151,2020-03-17 20:15:14,,,newest,com.microsoft.todos +dalilah garcia,https://lh3.googleusercontent.com/a-/AOh14GjtmrYfZuCYtMTgb-85JlX27PjkEPPic4HYi-PpOA,I wish there was an option to create a to-do list for tomorrow. Like I wish there was a my tomorrow that would turn into my day instead of me having to manually add all the things I wrote the day before if that makes sense,4,0,2.13.151,2020-03-17 03:35:33,,,newest,com.microsoft.todos +Who Knows,https://lh3.googleusercontent.com/a-/AOh14GiGALVQ8QgwjNlesL4b09P14pw4PzzK3EyzgWRV-Q,Serves it's purpose.,4,0,2.13.151,2020-03-16 20:51:53,,,newest,com.microsoft.todos +Kishore Mukherjee,https://lh3.googleusercontent.com/a-/AOh14GgRPzSoLrxzcCeBBCA345ejlK_4HuOX85v1pdJLmA,"Awesome upgrade from Wunderlist. I couldn't expect I can live without Wunderlist. I just give it a try and now I don't regret for it. Truly a great successor of wunderlist. But if u can,please make the font size Customization option. It will be really helpful",4,1,2.13.151,2020-03-16 13:58:26,,,newest,com.microsoft.todos +Henrique de Almeida,https://lh3.googleusercontent.com/-tdbmNDkz8lY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNGJqamSckChzaswJ9fjl_MQ63J2Q/photo.jpg,Easy to use.,4,0,2.13.151,2020-03-16 13:10:00,,,newest,com.microsoft.todos +Marcy L,https://lh3.googleusercontent.com/-QBl9NLxg4tU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPQzDPdMS6e4GlXXOuJTCAeCJty-Q/photo.jpg,"I loved wunderlist. For the most part, I also like To Do and think they've done a good job transferring things over. One feature I do not like is that the Today list has to be made the day of. I like to make my ""today"" list the night before--makes it easier to plan and be prepared. When I do that now, I wake up in the AM and my list isn't visible.",4,104,2.13.151,2020-03-16 02:12:36,,,newest,com.microsoft.todos +Fiona Meller,https://lh3.googleusercontent.com/-HTQHvGuzfps/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMXXu9Khbk854pdijQ3udfZatP9QA/photo.jpg,Missing one key feature: custom sorting of lists. Otherwise quite good. Search capability is excellent.,4,0,2.13.151,2020-03-15 18:53:55,,,newest,com.microsoft.todos +Maribelle Martinez,https://lh3.googleusercontent.com/a-/AOh14Gh09xT87a3qC2UZc035bscYGUmP7bMiRHLWCbYx,"I hate change to begin with, but everything has been good SO FAR. My only gripe right now is with the themes! I wish we could custom pick a color or choose a photo from our phone gallery.",4,0,2.13.151,2020-03-15 17:00:00,,,newest,com.microsoft.todos +Fresh Hot Muffin,https://lh3.googleusercontent.com/-jSulTL3GjRA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOi9AZL_RVoNLHKeFx1eCIvLuRlyA/photo.jpg,The app is perfect but one tiny problem: the reload icon is sometimes peeking out at the bottom of the list title.,4,0,2.13.151,2020-03-15 12:57:17,,,newest,com.microsoft.todos +Brent Jenkins,https://lh3.googleusercontent.com/a-/AOh14Ghy8OR6F_6ggmgSB75w-90zvsN_ak-Ni6ICPyC831Y,I was using Wunderlist but this seems to be a great replacement. It integrates very well with Outlook 365 and the reminders are easy to manage. Would certainly recommend it for anyone looking to manage task lists.,4,0,2.13.151,2020-03-15 12:46:09,,,newest,com.microsoft.todos +D. A. Soward,https://lh3.googleusercontent.com/a-/AOh14Ggy3njg2SPlbJnoPoT34HI61u5g4TF9tEjd4qMk,"I use it everyday and completely love it. It is very simplistic to use and understand, even for older folks like me! If I'm putting together a list of projects I want to get done; it's allows me to take a picture or a screenshot, then title and save it by Category! Extremely helpful for users of all age groups; and with the Backup & Sync features you just can't go wrong with this app!",5,16,2.14.152,2020-04-01 21:03:22,,,most_relevant,com.microsoft.todos +Annette Marie,https://lh3.googleusercontent.com/a-/AOh14GjHBURH44pC4EiKLGBTnd_wPs-6CSR-1aGkdcHxQQ,I love making lists and this application makes it much more accessible to do so... 🟢I don't have to worry about which pocket my hand written list was last put into. 🟢I don't have to worry about keeping a pen on me or losing it in the store for the tenth time. Lol 😜 🟢AND I dont have to check things off!!!! The app just checks it off for me with a single tap.,5,7,2.14.152,2020-04-03 02:43:05,,,most_relevant,com.microsoft.todos +TD CPA PhD,https://lh3.googleusercontent.com/a-/AOh14Ghy-2FwLL0IrQdf-rqtHusq_WjCmSGB22OvEpRn,"As always MS makes the best thing, but fails to offer video training and integration and some basic CRM features. Needs imporvement on 1) multi importance/priority level with drop down box and for sorting.... 2) ""Repeat"" doesn't add today's to-dos, just an alert. ... 3) Beable to organize more than just today....add wk mo & yr. .. 4) CRM and Calendar need upgrading and integration with Outlook app..... 5) Training??",5,0,2.14.152,2020-04-03 00:39:16,,,most_relevant,com.microsoft.todos +Sarah Mekjian,https://lh3.googleusercontent.com/a-/AOh14Gi8ZIiD6sC9sClmSrpuOijEhredE5XXOaeyyGpd,"I was skeptical at first, but wow! Yes, the req to have a Microsoft account didn't thrill me, but this has all the features Wunderlist did and more - you just need to find them. You CAN move the order of tasks manually - just do an extra long tap on the task and drag. There is also a an inbox - here it is just called ""tasks"". This app is much more flexible in terms of themes than Wunderlist was and it makes it really easy to both delete tasks and steps within a task. Switching was easy too!",5,42,2.13.151,2020-03-16 21:41:24,,,most_relevant,com.microsoft.todos +Shashank Srivastava,https://lh3.googleusercontent.com/a-/AOh14GjGh27_0BLzE4CcRW_sJvdEbif6A4wlrI9HE9b1wx0,"Started using it after having used many To-Do apps. The UI is beautiful. Syncing is quite fast. The companion apps are available for every major operating system plus it is also available on the web, which is a big advantage over Google Tasks. However, I'd love to have natural language processing and a way to prioritise the tasks.",5,0,2.13.151,2020-03-25 04:36:20,,,most_relevant,com.microsoft.todos +Evie Bartlett,https://lh3.googleusercontent.com/-jhBzyXD36SI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN9mFZ7ArRaB0zpa7LUi3kTXT8fIg/photo.jpg,"I LOVE IT! This app us so simple and easy to use, it's so clear to see what needs to be done. I love how you can carry tasks over from one day to another or carry over tasks from over lists. I also love how you can add steps to a task and set a due date. I LOVE IT :)",5,0,2.14.152,2020-04-01 14:37:21,,,most_relevant,com.microsoft.todos +Nelson Ombuya,https://lh3.googleusercontent.com/a-/AOh14Gj72IOvLS-9dd1fTlWr-lg7Kd8tGdPnhQSkM3aVdw,"This is quite frankly the best to-do app I've ever used. It has features I didn't even know I needed, like searching for tasks, or the my day tasks list. It syncs really well and worked even better than I'd hoped. Great Job.",5,0,2.14.152,2020-03-30 08:37:13,,,most_relevant,com.microsoft.todos +Ashen Soul,https://lh3.googleusercontent.com/a-/AOh14GhuJ5CFY30fDIkat3Aa6wAJlf2WmTeLTlfA8NNchA,"Amazing simple effective. It would be nice that if it had a option that could set priority . For examplr priority 1 , 2 , 3. 1 with color red 2 with color orange and 3 with yellow. Like todoist app. I love miceosoft todo becuase its cross platform and 100percent free",5,0,2.13.151,2020-03-26 19:37:16,,,most_relevant,com.microsoft.todos +Alberto Cruces,https://lh3.googleusercontent.com/a-/AOh14GjjFA0wEp9I3ztAN4b96CtTcPZt9z-OSromQvpG,Extremely well design! This is an amazing tool for the people who needs a good way to keep track of all your tasks in a day. Super helpful and very well integrated with Office 365 layout. This has boosted my progress tremendously. Thank you @Microsoft Office 365 Team.,5,1,2.13.151,2020-03-18 02:22:57,,,most_relevant,com.microsoft.todos +Baratha Kamban S,https://lh3.googleusercontent.com/a-/AOh14GgHwYMBbtiOl7M1x92KF55Y1HT4VCto-7FzU4-p7Q,"This app is very useful. Minimalist, yet almost everything is available. I could group my activities sub-activities and tasks as per my wish and use them to plan accordingly. A calendar option would make it complete.",5,0,2.14.152,2020-03-30 15:41:13,,,most_relevant,com.microsoft.todos +B8 STUDY CIRCLE,https://lh3.googleusercontent.com/a-/AOh14GiJ6PJaO-Mv2-76-eq64lYjE79dlcLhGhg68W5t3g,The user interface of this app is high level and the way in which I can see my task is awesome but I think there must be some options in which I could be able to make quick notes of those although there is that option but it must be enhanced so that the user interface would be augmented,5,1,2.13.151,2020-03-15 04:13:46,,,most_relevant,com.microsoft.todos +AZ Tech,https://lh3.googleusercontent.com/a-/AOh14Gg1FFn-0S_lAv-PzOXM4I84RhVPRmsW8Cz92IbLWQ,"Suggestion: . In my one of task, Status of the task, progressing stage is very important to us. So please to add the feature in it. Example, 60% Completed in Task. (Manually user mention or drag the Percentage bar in his task) It will be useful to us. Thank you To Do Team..",5,2,2.13.151,2020-03-18 07:39:36,,,most_relevant,com.microsoft.todos +amruth sagar,https://lh3.googleusercontent.com/-K_8wI3cQuXc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNa9WgYcRhqDznLjiDFYdX3H3-Qqg/photo.jpg,"I have tried a lot of to do App's but not a single one has all these features In built reminders sub Tasks support customizable moving of tasks in the list and most important sync across all devices like phone, tablet etc Even if some app has we have to buy premium to enjoy those features Highly recommend this app.",5,0,2.14.152,2020-03-26 10:42:50,,,most_relevant,com.microsoft.todos +Hoà Nguyễn,https://lh3.googleusercontent.com/a-/AOh14GipHWYl8r0itOU23-lHNoEiPVFTp7L8Ax_UjvwSTg,"I have found it's useful for you who want to manage your works or studies. Now I don't need to write all down on the papers. So, a solution to save papers = save our trees ;) More important, this app is free and no ads banners. That's good.",5,1,2.13.151,2020-03-18 15:58:06,,,most_relevant,com.microsoft.todos +James Herring,https://lh3.googleusercontent.com/--o85VxVGs1c/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMQM79Y_7cYIqBN8JvQeUvJn_vZaQ/photo.jpg,"I don't know why everyone's complaining that you can't re-order tasks and lists. Drag-and-drop with a long press works just fine for me. At first glance, I seem to have FINALLY found a suitable replacement for GTasks.",5,1,2.13.151,2020-03-18 00:14:00,,,most_relevant,com.microsoft.todos +Baimboh Divine bainkong,https://lh3.googleusercontent.com/a-/AOh14GjaW8zLtreBWZAnlJhU978IrzgJ14966lklcbHB,The app is splendid i love. It helps me to plane my day and my work ahead of time and reminds me of what i had planned to do. This makes me to be effective in my life. I can easily access my to do list where ever i go,5,1,2.13.151,2020-03-18 20:06:15,,,most_relevant,com.microsoft.todos +Samantha Calcagni,https://lh3.googleusercontent.com/a-/AOh14GiOoqXkgmFGdD3abuwWH9lyZ5kFIcwDJKSeOBneBw,This app is awesome. At the moment while we're in quarantine. I have to do a whole bunch of school work and it's just easier for me to make sure I'm doing everything. Make sure I'm getting everything done and it's just really great. Thank you so much!,5,0,2.14.152,2020-04-02 16:24:22,,,most_relevant,com.microsoft.todos +El Knight,https://lh3.googleusercontent.com/a-/AOh14GiFwQoL9PKqK_4Zqd4w1wf7B_ZbZveVoEfRBZUQCw,"It's such a helpful app because I always use this so that I can become more productive and finish what I have to do on time, it's also helpful because it helps me remember what I have to do.😃😃😃",5,0,2.13.151,2020-03-16 07:48:32,,,most_relevant,com.microsoft.todos +IAmGaming,https://lh3.googleusercontent.com/a-/AOh14Gh1kTW7473mPAvNwtAD2bFES1umNOcKw6ysos8n1g,The best to-do app ever. It is so well synced with the desktop version and vice versa. The UI is awesome and smooth. It really feels good to use this app.,5,0,2.13.151,2020-03-25 02:43:22,,,most_relevant,com.microsoft.todos +Michael Joshua Gealon,https://lh3.googleusercontent.com/a-/AOh14GgRQy5UMocIP8fACgaWHTxroQayyxdq3QfjgoGG,"Great app. I suggest that you will add a calendar view feature, sychronized with the created tasks, so that users can visualize their tasks. Thanks in advance.",5,0,2.14.152,2020-03-28 17:25:57,,,most_relevant,com.microsoft.todos +Natalia Vanegas,https://lh3.googleusercontent.com/a-/AOh14GijFumYifeo4i90XgUSc6yas8J4Y8QSUlAonaCwQg4,Realizing Wunderlist was going away was unfortunate but this app does a great job at replacing it. I really like the graphics and the background image of the needle.,5,0,2.14.152,2020-04-02 23:51:08,,,most_relevant,com.microsoft.todos +P. KUMAR,https://lh3.googleusercontent.com/a-/AOh14GhiJGT8t2Z99tdKVhXQx3pQxxm7__y_c1jvMfpuBg,"Really very very great, useful and highly customised app. Above all it's free and developed by the World leader in customisation. Developer is so helpful to provide individual attention. HAPPY TO HAVE THIS GREAT APP.",5,1,2.13.151,2020-03-16 15:13:28,,,most_relevant,com.microsoft.todos +Francesco Valentini,https://lh3.googleusercontent.com/a-/AOh14GiEw2HoIttMvCw8z3axy0ufo8tArGXapKYZC_uD4-4,"Excellent app, really useful for writing down what you have to do! It lets you manage your to-dos in convenient groups, and the feature ""My day"" is awesome for planning your day ahead",5,0,2.13.151,2020-03-19 16:32:23,,,most_relevant,com.microsoft.todos +Chris Gibson,https://lh3.googleusercontent.com/-Qj9inrk--xg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMO1ukeSAnY5V5pUoigeEttbWZjdg/photo.jpg,"Excellent - This is even better than Wunderlist which I really loved, they've taken it up another level. Brilliant cross platform tool for managing all my tasks",5,0,2.14.152,2020-03-31 18:45:45,,,most_relevant,com.microsoft.todos +gusviantoko dali purwanto,https://lh3.googleusercontent.com/a-/AOh14GidG8yu3K8xh-6wWdIp6w3d1W-quMCQnD0_ulOZXg,"I'm migrated user from wunderlist. Hasn't found any issue with this app I use this from mobile and pc's browser, I can say that the sync is fast, very like it",5,1,2.13.151,2020-03-28 16:13:33,,,most_relevant,com.microsoft.todos +Richard Mwambanga,https://lh3.googleusercontent.com/a-/AOh14Ghi_WW0kUFuKYbjkDYr3o-31mnahLwdFrrpmQStmw,What a great app! It has completely made my days more productive and organized. Thank you so much Microsoft! I can't wait to see it linked to OneNote 😊,5,0,2.13.151,2020-03-28 10:32:36,,,most_relevant,com.microsoft.todos +Khaled Hassan,https://lh3.googleusercontent.com/-CEtQUkdFlKY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM6v2_kKodHO5hMPVh3pjj12aECOQ/photo.jpg,Brilliant app. All you need to keep on top of things. One thing I would add: the ability to delete bulk tasks.,5,0,2.13.151,2020-03-16 21:40:50,,,most_relevant,com.microsoft.todos +Ryan Royce,https://lh3.googleusercontent.com/a-/AOh14GgYEAj1_tPz_tfSg7nXhHP_vvOTDcmzEyMwq4LE,"The best to do list app I've used to date. I'd used a lot before without any luck, I'm glad to say I don't think I'll be looking for any other apps now!",5,0,2.14.152,2020-03-28 23:24:32,,,most_relevant,com.microsoft.todos +Mahavir Gorti,https://lh3.googleusercontent.com/a-/AOh14Ghv_MOagSBPzthWLi5cNyYojxyIqiBPm4Nh39ir,Super easy to use and very addictive. Strongly recommend to anyone looking for a uncomplicated and easy tinuse to-do app.,5,0,2.13.151,2020-03-26 16:02:09,,,most_relevant,com.microsoft.todos +Andrew Klien,https://lh3.googleusercontent.com/--uZEHMxvYEk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP_lBhjOuiTajHpc_lnSCJEa5E7_w/photo.jpg,"Works much better than the desktop version, as it doesn't close itself suddenly when you're not on it!",5,0,2.14.152,2020-03-26 20:24:08,,,most_relevant,com.microsoft.todos +Kaitlyn M.,https://lh3.googleusercontent.com/a-/AOh14Ghvfpzbt2EuyqUZr8C3KZ661-mtGlvsTUt7WmdR,"Exactly like Wunderlist where I came from, because that's being discontinued. Happy I have a viable replacement but sad to see Wunderlist go.",5,0,2.13.151,2020-03-16 12:15:21,,,most_relevant,com.microsoft.todos +Amir Hosein Ramezani,https://lh3.googleusercontent.com/a-/AOh14Gjv5o55EUE2eORkF2xdd6cGJ-nwNTgJJjeOGVrs,"Even for me that I have Android 5 in my phone is totally full option and useful. Dark theme and many necessary optional things make it best ""to do list"" ever!",5,0,2.13.151,2020-03-18 08:05:48,,,most_relevant,com.microsoft.todos +David O,https://lh3.googleusercontent.com/-fUPwarO6Jag/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOaD2iI0yVV6ckiooB5dMfna5RefQ/photo.jpg,Phew the transition from Wunderlist went just fine. Everything is imported and after a bit of tweaking in the settings the app works like Wunderlist did. And the app icon is easy to find.,5,1,2.13.151,2020-03-23 23:19:11,,,most_relevant,com.microsoft.todos +Sk Anowar Hossain,https://lh3.googleusercontent.com/a-/AOh14Ghw9rJO6HuEZQ2KWTF7yDEPZ74H4YyNA1auwQlADA,This is a good app for note and everything as you want.... I am so happy for using this app....but it is more better if have search options...so currently improve it..,5,0,2.14.152,2020-04-02 08:10:02,,,most_relevant,com.microsoft.todos +Arisa Kittle,https://lh3.googleusercontent.com/a-/AOh14Gg0Tr5zc0YktuzIVGVesUgv2y2B3tKSAO026gYNAGI,I've been really enjoying this app. The My Day feature is really useful for managing my tasks and Its so easy to just add new tasks as I get them. I especially love that you can add tasks from the previous day to your current My Day. It has a simple and streamlined design and seamlessly integrates my phones theme. The only thing I would improve would be the ability to add tasks to My Day in advance.,5,6,2.12.149,2020-03-11 23:32:03,,,most_relevant,com.microsoft.todos +schettleraa,https://lh3.googleusercontent.com/a-/AOh14GiSWSdo14aBgu7nFoHoce2KnHfLQS2sNJEK6Gz-UCw,It's different from Wunderlist but pretty close. Its like changing from Gmail to outlook but it's working for me.,5,0,2.14.152,2020-04-02 17:24:32,,,most_relevant,com.microsoft.todos +Kervens Volcy,https://lh3.googleusercontent.com/a-/AOh14GiMcmngS3Se0qgy-xqXgkNBEeonio8zgT1uQt7t0A,"The application is great! The UI is clean, easy to follow. It does exactly what it is intended to do. I have one suggestion. Alongside the possibility to add steps to the tasks, it would be great to be able to arbitrarily set the level of completion of one task with something like a slider. Say for example you set yourself the goal to watch a full youtube playlist. Everyday you move this task to ""My day"". You will want to be able to measure your progress each day without predefined steps.",5,16,2.10.147,2020-02-07 00:12:54,,,most_relevant,com.microsoft.todos +Darius Sas,https://lh3.googleusercontent.com/a-/AOh14GimoRjdDUNiKS4_9-Zkia62PSXUjwEfRUoms21h9Q,"Useful, fast, and complete with all the essential features of a todo app.",5,0,2.13.151,2020-03-19 10:00:12,,,most_relevant,com.microsoft.todos +Dawn Kyle,https://lh3.googleusercontent.com/-HpMjJCTNNy8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP5DjluzWSZQHQhb2a7x_tFABc3pA/photo.jpg,I was a very big fan of Wunderlist and this replacement has a lot more functionality and is still easy to use,5,1,2.13.151,2020-03-25 17:20:48,,,most_relevant,com.microsoft.todos +Ofentse Tladinyane,https://lh3.googleusercontent.com/a-/AOh14GjkPtsRLSZWJN9h0SRuSQouOXw5BowA2PjwFRmJ-g,This is a very cool app. Perfect! Although it should have more link options for other apps as well.,5,0,2.14.152,2020-04-02 02:21:56,,,most_relevant,com.microsoft.todos +Lonnie McCain,https://lh3.googleusercontent.com/a-/AOh14GimW0FWJHdPX_EID1ro6HFBW2KS4V6dBDWioT0Hpg,Being able to sync shopping lists between various shoppers in one household is such a blessing. Keeps us from overspending. 😊,5,0,2.13.151,2020-03-16 18:51:27,,,most_relevant,com.microsoft.todos +Gabriella Stenson,https://lh3.googleusercontent.com/-hum-oYcdNCs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMhr_THZCor8wE1MQltInukeoISWQ/photo.jpg,Just swapped from Wunderlist to Microsoft To Do. So far happy with it and not really noticing any difference or loss of functionality.,5,0,2.14.152,2020-03-27 19:45:49,,,most_relevant,com.microsoft.todos +Lazaros Nikolaidis,https://lh3.googleusercontent.com/a-/AOh14GgeziysATu-x1qrb1twNlzC31Jnfm-dodT6WEwXxw,"Just moved from Wunderlist. Transition was easy. To Do is different in layout, but also intuitive & works fine on many platforms. I wish they have 2 things fixed/updated to meet Wunderlist feel: 1) Importance mark (the renown star) should be entered while typing a task. Importance mark should also put automatically the task on top of the list. 2) 'Show completed tasks' must be more 'handy', with a button, symbol or shortcut. Not as part of the menu (top right). 5 stars. Hope above of a help.",5,9,2.10.147,2020-02-13 08:12:51,,,most_relevant,com.microsoft.todos +MAKSIM,https://lh3.googleusercontent.com/a-/AOh14Gg45VKU180G4kkhZh-cS3bJsAia_2U6meJywE6mFA,"It's an amazing app, i love it and find it extremely useful. Just discovered it recently and totally enjoying the productivity it gives me. I very much like the simplicity compared to other To-Do apps with too cluttered UI. Miscoroft ToDo on the other hand is perfectly balanced! One small thing i would personally want to see is the ability to assign more levels of priority, not just 'Important' and the rest. There could be importance levels like 'A', 'B', 'C' etc, or some color-coding, for example. Thanks and keep up the great work!!!!!! Microsoft on Android is doing a great job!",5,36,2.10.147,2020-02-03 22:08:45,,,most_relevant,com.microsoft.todos +Kat B,https://lh3.googleusercontent.com/-cAQbAscQO2Q/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNO0hFl5dldhVPBOTVx6CXUU88hPA/photo.jpg,"Awesome app. Allows for custom lists and allows collaboration on ones you specifiy for group projects/tasks. The interface is clean, crisp, but also allows you to make it your own by adding color themes to the accents of the task pages. The only thing I wish this would include is a customizable ""smart list"" based on certain parameters. This would make the app even better, though out of the box - this has everything you need to get your tasks and projects done!",5,26,2.11.148,2020-02-27 22:19:20,,,most_relevant,com.microsoft.todos +Jeffrey Buwalda,https://lh3.googleusercontent.com/a-/AOh14GiYxVWsXbqSPI7TceubtI1eoHGWDsC5YuOKUZnO_Q,I've tried many to do list apps and this one is the best so far and is helping me with getting more productive with life and school work.,5,1,2.14.152,2020-03-27 22:27:04,,,most_relevant,com.microsoft.todos +Shy BP,https://lh3.googleusercontent.com/a-/AOh14GjUpHBTarpUaHnHqXpVdsft0vf2QNT2fspxW6_1yQ,"This app is as good as Trello and almost works the same with some minor differences. I love it. It would be great if it combined the features of Trello Boards as well as Evernote. Still givin deserves 5 stars on its own merits. It can get overwhelming the more items that are put into it, but that's my own problem of having so much to do more than the app. This is the best automated To Do list I have found. I use it in combination with my handwritten lists.",5,9,2.8.145,2020-01-24 09:09:42,,,most_relevant,com.microsoft.todos +Caroline Richardson,https://lh3.googleusercontent.com/a-/AOh14GgY6XZH-yf_-BQ4jlqb1oDis_vV74a0V8nSqY-HPY0,"I came from Wunderlist as I got an email said it was shutting down on March 6th. I was expecting a sub par experience, having to re-enter all of my tasks and data. I was very surprised as it was a great switch over experience with very little input from me! It also has a very similar widget which im very happy with! Thank you for considering Wunderlist users!",5,8,2.11.148,2020-02-18 12:52:59,,,most_relevant,com.microsoft.todos +J vS,https://lh3.googleusercontent.com/a-/AOh14GgpvxTZrx43t-BVivFm9rP3cXCudvD9Zbge5YLGO1Y,"This app is just excellent! A truly powerful task and project manager. Don't be filled by its apparent simplicity - there are a lot of features and flexibility hidden in this little gem. Try it out! What I would like added though is if the My Day planning feature can be extended so I can plan for the next day, not only the same day, so I can populate my following day's My Day view in the evening before going to bed, instead of having to wait to plan on the morning only.",5,59,2.10.147,2020-02-11 23:25:49,,,most_relevant,com.microsoft.todos +Gary Mute,https://lh3.googleusercontent.com/a-/AOh14GiioBkj6NQFECHBY9Vs37s_T3k_iYS5Btp4snxQ0Q,"Still a great app though coming from wunderlist I don't understand the crappy import. In wunderlist you add new tasks at the top of the list. In todo at the bottom. Yet it imports the list as if it was wunderlist. So all your lists will get new items added in todo at the bottom, where you had your oldest entries in wunderlist. All lists are basically inverted.",5,3,2.12.149,2020-03-12 13:19:52,,,most_relevant,com.microsoft.todos +Abd elrahman Waleed,https://lh3.googleusercontent.com/a-/AOh14Gi_3GzH-XWwniTN0_5kkkmxlzgdr6Ldoc3hqWsleg,"Best to do app 1. You don't have to pay for the main things There no things to buy already 2. It is simple 3. Design is fantastic 4. They have main things of any todo app (List ,hashtags ,reminders, my day tasks , important task , due date ,....) Okay , there are features in another todo app you won't find it here like ""sub-sub tasks"" But another app you have to buy another nesscery feature like reminder ... So I suggest this app ""microsoft to do"" is the best to do app💙💙",5,2,2.10.147,2020-02-08 00:24:36,,,most_relevant,com.microsoft.todos +Guybrush Threepwood,https://lh3.googleusercontent.com/-BfN-PRUI5Ew/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJME0IAPa1-CaDb18kdbijz-hUDU0w/photo.jpg,"When Microsoft announced they were killing Wunderlist, my expectations for the New Thing were soooo low. But they did a great job! It has all the familiar featues plus some new ones like subtasks, and the user experience is pretty solid! Importing was easy. Great job! The one negative is Microsoft's strongheaded wrong assumption that everyone wants ""one Microsoft account for everything."" Please preserve the ability to create different accounts for different purposes!",5,20,2.11.148,2020-02-25 18:44:49,,,most_relevant,com.microsoft.todos +TT mozek,https://lh3.googleusercontent.com/a-/AOh14GjHtIFqNRwgC5dKJTQETyGVns2qb-r1iRTD6DnruQ,Helps me remember things and keep them organized. It can really work cross devices - hassle free!,5,0,2.13.151,2020-03-25 07:09:37,,,most_relevant,com.microsoft.todos +MUHAMMAD AFZAAL,https://lh3.googleusercontent.com/a-/AOh14Gg87DPNoyGqdQ_l5cQ_rUuI1cOq0V4aeWUr4Igp1g,"Wonderfully app, I have a suggestion to add Sticky in this app instead of Office, or make a Spreat Sticky App Sync with Microsoft Windows",5,0,2.14.152,2020-03-26 11:47:27,,,most_relevant,com.microsoft.todos +Ruth Pearson,https://lh3.googleusercontent.com/a-/AOh14GgvdIj31PSXk2HCkq_jq4CG27dwdAvgjkmZixBdIQ,I was mortified when I heard Wunderlist was going to be withdrawn. I downloaded this as suggested and I am pleased with it. It is much the same with a few little extras. Easy to use and well organised without a lot of extra clutter that other apps give you. I have decided to use this app immediately instead of waiting until Wunderlist ends.,5,23,2.10.147,2020-02-09 22:03:30,,,most_relevant,com.microsoft.todos +Ricardo Gouveia-Mendes,https://lh3.googleusercontent.com/a-/AOh14GgUGOFoYR8pVWA7NzAh__ez-Q-yY-pXryssLonHug,"I've tested several tasks apps and this is my favourite. Super simple though effective! The views are just great. Plan by project and execute by due date. Overwhelmed? Add to My Day just what you feel you can accomplish. I would just suggest a ""delete done tasks"" button, because though you can already hide them the list can become quite big if you use, as I do, recurring daily tasks.",5,19,2.10.147,2020-02-12 23:06:35,,,most_relevant,com.microsoft.todos +Corey Oleary,https://lh3.googleusercontent.com/-3XcDk4QZtok/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMojUn6NkAMv_0E0YrXI3B975f1eA/photo.jpg,"Awesome to do list, makes things like grocerie lists very simple the way list can be compiled as a page of single swipeable tabs.",5,0,2.13.151,2020-03-16 19:52:12,,,most_relevant,com.microsoft.todos +Don Holbrook,https://lh3.googleusercontent.com/a-/AOh14GgpHEs-BqDX_fdHbjGrMkcrkGnKf7MbBnRJHb59,THE BEST TO DO APP EVER! Now I don't forget any important things on my mind. I can write or record at anytime or anywhere. Thanks MS,5,0,2.14.152,2020-04-04 18:20:14,,,most_relevant,com.microsoft.todos +Samwel Ehr marsha,https://lh3.googleusercontent.com/a-/AOh14GhzU3Cp_Bxevl1JW3cckdHJxi_TT05zZkFjesh3,"I Love this app. It helps me stay organized and reminds me about every single task I have. The UI is great, and integration with Outlook (flagged emails) and windows is exceptional I'd also love the idea option to 'review my day' to know exactly how much I got done; and integration with Outlook's calenders - that would be nice... Microsoft has some amazing apps and getting to use them all ends up feeling natural... Hats off to the developers",5,22,2.10.147,2020-01-31 06:14:07,,,most_relevant,com.microsoft.todos +Austin Lapp,https://lh3.googleusercontent.com/-hdG6zxVrW0c/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNS1l2VdsdWUhZuXLcf2EBHGCHtww/photo.jpg,"I use To Do to track my college assignments and projects. I had tried several other systems but none had the organizational power of To Do. I love that I can have a list for each class and attach a due date to each assignment it. The built-in Planned list pulls all assignments from my different classes into one list and sorts them by due date. I'm also planning to start using it for my Getting Things Done system (David Allen), which I currently have in Evernote. It's a huge win for me!!",5,19,2.10.147,2020-02-09 12:29:02,,,most_relevant,com.microsoft.todos +Travor Miller,https://lh3.googleusercontent.com/-FZFVAps-VWc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMzc4PS4rKfld-LP5jlB2ToCRvmTA/photo.jpg,"""Microsoft To Do"" keeps my wife and I on the same page! We use it, increasingly, to help us plan and track routine tasks or specific projects around the house, through shared lists! Because ""Microsoft To Do"" lets you create customizable list, it can be adapted to almost any purpose or project; more specifically we share a, grocery/shopping list, chore list, meal planning list (including ingredients/recipe), a travel checklist, and a gift tracking lists. The ""attach file"" option is a big bonus!",5,50,2.11.148,2020-02-24 15:32:52,,,most_relevant,com.microsoft.todos +BOBO,https://lh3.googleusercontent.com/a-/AOh14Gi0fu5TcALsCSqmN6G4fKQDZJV2r7kTBYaP0ghFqw,Great app. I like it just make a better looking widget and allow us to connect to samsung calendar,5,0,2.14.152,2020-03-27 17:49:10,,,most_relevant,com.microsoft.todos +Robert Fitzgibbon III,https://lh3.googleusercontent.com/a-/AOh14Gh4YLo-P_5nYvgMzC_6HRLs580yMbG3Jk8CAAOP,This is a great organizational tool. It literally combines all my relevant tasks in one place.,5,0,2.13.151,2020-03-24 22:47:42,,,most_relevant,com.microsoft.todos +Sue Adlam,https://lh3.googleusercontent.com/a-/AOh14Ghz-0vJJG-TbtH8xrXT9jlkyGe5gPFX6vvmArzH9eM,"Love this simple app. It works well..apart from the odd inconsequential blip. It has helped me to organise my day, list all my to-dos so they're not in my head. It's simple enough to learn how to use quickly and I've got my daily schedule on repeat so regular events pop up daily, weekly, monthly or as one off dates.",5,24,2.10.147,2020-02-14 08:09:27,,,most_relevant,com.microsoft.todos +Kaih Casie,https://lh3.googleusercontent.com/-Pj82yDJjnnU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMKq_-EC9h_O9dlPXc7oRgI_kLi_w/photo.jpg,"Easy to use and access. Helpful reminder, especially on busy days.",5,0,2.13.151,2020-03-24 18:41:58,,,most_relevant,com.microsoft.todos +Jasmine Lee,https://lh3.googleusercontent.com/-pGBch9ZaEyM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO0PsC09YBfjJxGdK63vL1sW5skbQ/photo.jpg,Using this app is a great way to organize assignments/ daily tasks/ appointments/ to-do lists. You can keep track of what is due and what has been completed. I use it to keep track of assignments for all of my classes and it's so easily accessible and user-friendly. This app has helped me break my terrible habit of procrastinating. I actually look forward to doing my homework just so that I can check off all the tasks on my list 😋,5,4,2.8.145,2020-01-23 04:27:08,,,most_relevant,com.microsoft.todos +Maria Mathews,https://lh3.googleusercontent.com/-MVf9gnmqmz8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMYtkHSubIvWq-BEdh-qMGmvXXiXg/photo.jpg,"I find this an excellent to-do app with sharing capabilities. I love how there is even an option to have completed tasks ""crossed off"" or disappear altogether from a list. I find myself turning up the volume to hear that sweet bell tune when a task is completed, lol.",5,0,2.10.147,2020-02-10 11:22:05,,,most_relevant,com.microsoft.todos +Jonathan Morris,https://lh3.googleusercontent.com/a-/AOh14GiISbGYyW-FyEg3tBA9nM5ufsTNeu_8pmRoBVkDIA,"Very competent App. I have actually migrated from Todoist after 3 years. Why? Because I piled everything into Todoist because of its wide functionality but couldn't see wood for the trees. Any one item could be a project header, a complicated task or a trivial one off task. I have now reverted to managing projects in appropriate software (in my case mindmanager with a task export to outlook and synch to ToDo ) and tasks in the very neat and focused ToDo app which grows on you as you use it.",5,5,2.11.148,2020-02-15 16:02:07,,,most_relevant,com.microsoft.todos +James Edwards,https://lh3.googleusercontent.com/a-/AOh14GijrBuQlfKd3bmE0AGCdeBaI111K1GPmApHI1iYVQ,The task list is so easy to use and it synchs my phone to my laptop.,5,0,2.13.151,2020-03-17 11:56:36,,,most_relevant,com.microsoft.todos +Michael Rourke,https://lh3.googleusercontent.com/-v8h2UL8WbVE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPQ98r1SWPSgSu3R2MQsTevnyuAlQ/photo.jpg,Easy to use. For quick list with reminders for daily or last minute reminders.,5,0,2.14.152,2020-04-04 14:13:16,,,most_relevant,com.microsoft.todos +Viren S,https://lh3.googleusercontent.com/-ik60KKB-6Rs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO8y1SXvIg2JKbpcuvtkYlpDH1Pjg/photo.jpg,"Overall fine, Search option only on main screen, pl give it inside Task list, user list also, also data export option",5,0,2.14.152,2020-03-27 06:47:54,,,most_relevant,com.microsoft.todos +paul steel,https://lh3.googleusercontent.com/a-/AOh14GiMR4FlS8evdg6rYTIYT9d6ADvL_MJS9qJs7Cpq,"Recently replaced Wunderlist with this app, after getting used to it I have to say I prefer this app. I like that once you pick a sorting sequence for each category it automatically carries out this function when you add a further entry ie due date. I would have preferred that a folder for completed tasks etc was retained but other than that I'm happy with this app.",5,17,2.11.148,2020-02-14 07:13:42,,,most_relevant,com.microsoft.todos +Andrew Grant,https://lh3.googleusercontent.com/a-/AOh14GjFFVdQ2ZS3ly62o2RgVUyuLP5FbZm_Zu51vvMCqg,"A little gem of an App. It is simple to use yet offers plenty of options for getting yourself organised and for list management. I find the 4 level hierarchy so useful. The hierarchies are Groups > Lists > Tasks > Steps but you can leave out level 1 if a particular list is not part of a group. I also like the fact that ""My Day"" is managed manually as this ensures that I actually bother to review it. Integration with Office 365 makes your plan available on all your devices and gives you a backup.",5,8,2.10.147,2020-02-09 09:37:45,,,most_relevant,com.microsoft.todos +vivek artist,https://lh3.googleusercontent.com/a-/AOh14GilF4vniJBZN9cNqXW-M494fGlk8nT85p0flitlkQ,Simple. Best and optimum. The best to do list notifier and noting app.,5,0,2.13.151,2020-03-24 09:22:29,,,most_relevant,com.microsoft.todos +Alexander Kuntsevych,https://lh3.googleusercontent.com/a-/AOh14GicJrMjVghLikdGj2aiPRP76UJQTWRuycc7koemKzQ,Great task app. Still don't know how to integrate in to outlook on pc. Wunderlist had integration,5,0,2.14.152,2020-04-03 04:24:43,,,most_relevant,com.microsoft.todos +R S,https://lh3.googleusercontent.com/a-/AOh14GiOlK-06RFwAJ4j9AqZ0o83zH0lg3mMGYA6q-P5PXs,"Though it started bland sometime ago, To-Do is getting better and better. I find myself using it more and more as it is very convenient for me in my Microsoft Ecosystem. Developers are also responding well for user feedback and ideas for improvements.",5,1,2.8.145,2020-01-28 13:01:16,,,most_relevant,com.microsoft.todos +Kennedy Wheller,https://lh3.googleusercontent.com/-7o52swAtCBw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOwF4PUJweNYVGazPXO_aRZdhEq3g/photo.jpg,Really great for staying organized! Super easy to use.,5,0,2.14.152,2020-04-03 17:32:23,,,most_relevant,com.microsoft.todos +The Caring Angel Stargrl232,https://lh3.googleusercontent.com/a-/AOh14Gg2J-rGCvPxrWmD8DtqbJ-JJjfjfk9pP5zTHLj9iQ,Loved how everything is that u offer now. And loved the themes backgrounds and also that u can change the colors. I love pink I changed it to that. I will recommend this apo to other's. Hope u stay forever. This is the best app of the to do ever. And the only one I use. And will ever use.,5,0,2.10.147,2020-02-11 19:43:06,,,most_relevant,com.microsoft.todos +Simon Gilford,https://lh3.googleusercontent.com/a-/AOh14GggqabOMgvf4Q2dhe3uu4uuxdRV_TvHnpY6cOlDPw,"Great app, very useful for both personal and work reminders.",5,0,2.14.152,2020-03-27 12:30:17,,,most_relevant,com.microsoft.todos +Aaron Chubb,https://lh3.googleusercontent.com/a-/AOh14GjKvQPLsCCc-9H8mXxykmqHsFMHC37b4CauK_-w,"Outstanding app. It's difficult to suggest any features I would add as it has everything I need. The more I use it, the more uses and features I find. If there were more stars, I would rate it higher. Update: one feature I would add is a static ""completed"" folder.",5,1,2.8.145,2020-01-28 18:15:27,,,most_relevant,com.microsoft.todos +Crystal Hill,https://lh3.googleusercontent.com/-cBL9LBRdXuM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMAyKve62IGhEAsOISdI4mAUMM2zg/photo.jpg,"I absolutely love this app. I am a sorter at heart, so being able to divide my list into the different sections of my life is very helpful. I also LOVE that I can add others people to my lists. This helps me keep everyone on the same page. Thank you Microsoft for helping me organize my life.",5,2,2.11.148,2020-02-18 01:44:11,,,most_relevant,com.microsoft.todos +Kyle Martin,https://lh3.googleusercontent.com/-tOsVm_Z6sic/AAAAAAAAAAI/AAAAAAAAIj4/AAKWJJOjt2pKd_ZHTKRbWDM3iw9pzXeVSA/photo.jpg,Super easy to use. Amazing interface. Great for anyone who likes to stay organized,5,0,2.13.151,2020-03-18 02:55:53,,,most_relevant,com.microsoft.todos +Elbert Howard,https://lh3.googleusercontent.com/-YDPeL9FJCYY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOrbnPttAIc2_pMwTjhHRUy2gXxvg/photo.jpg,Because it lists everything in alphabetical order it is now the perfect app. Thank you microsoft.,5,1,2.13.151,2020-03-23 20:53:01,,,most_relevant,com.microsoft.todos +NDA 4077,https://lh3.googleusercontent.com/a-/AOh14GhMFkudy2D4KzAKDyrwMnjhMNW1SwLdVfnO7-_S8w,"Such a great app for reminders etc. All the functionality and features I would like to have seen in the now redundant Cortana for Android are in this app. Nice UI, great features and a pleasure to use. Would like to see integration with calender and a feature to add travel such as flights etc but in the meantime still an excellent app.",5,2,2.10.147,2020-02-05 14:38:42,,,most_relevant,com.microsoft.todos +Sean Belanger,https://lh3.googleusercontent.com/a-/AOh14GiRH5piV9bfFOiK2XQ3h9SeAoFgCHVZx6dxqmzQ,"Keeps everything organized between my wife and me. Now she can even tell me what to do when im not home. Really though, keeps us totally coordinated and stops us wasting time. Live ut for my own lists too. I live by lists so this is a dream come true.",5,0,2.13.151,2020-03-15 11:37:05,,,most_relevant,com.microsoft.todos +Ramadhan Hamad,https://lh3.googleusercontent.com/a-/AOh14GjO_BUe6Ytlvd-dS0Opkvc2ua_s_yGB_nA2zbFD,"Very useful, and it syncs accross all of my devices. This is now my must have app",5,0,2.13.151,2020-03-21 05:34:05,,,most_relevant,com.microsoft.todos +Eve Salo,https://lh3.googleusercontent.com/a-/AOh14Gh4crr9nZTWWDevfGsHD8kFlNS6zO9hgP5VaQcleA,"Brilliant app! Allows me to achieve my goals, big ones as well as daily ones.",5,0,2.13.151,2020-03-18 16:20:16,,,most_relevant,com.microsoft.todos +Pammie B,https://lh3.googleusercontent.com/a-/AOh14GhE3vbFHg__UyvyMhfumIjaCkpovfccQ68GRGRl1CU,"I like, but I am still trying to figure out how to assign a task to me, in the ""Assign to Me"". Instructions given, does not work.",5,0,2.13.151,2020-03-21 00:58:56,,,most_relevant,com.microsoft.todos +Barton Atwood,https://lh3.googleusercontent.com/-SOJIWbY4iCo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOkoXaDehA7awvSFJV18qVT_xWQeA/photo.jpg,Great app easy to use and keeps us all in sync with our tasks at work,5,0,2.13.151,2020-03-23 04:45:45,,,most_relevant,com.microsoft.todos +MacroCrypto1,https://lh3.googleusercontent.com/a-/AOh14GgE1qBoapGoHPoZIVn_WBLutJLyS_T4ffDnU_YhtQ,"Every day I use it more and in conjunction with the the array of over flowing product offerings vailable. My level of appreciation for what I see coming from Microsoft going forward continues to deepen, hand in hand as my level of understanding in the solutions increase",5,0,2.12.149,2020-03-13 02:43:11,,,most_relevant,com.microsoft.todos +Jenn Papke,https://lh3.googleusercontent.com/a-/AOh14Gg3JEBUMtfrZVQE6HVSaGcztGMRs30FzgXBSzTiwA,"I use this app everyday. So many lists... camp, groceries, movies to watch!",5,0,2.13.151,2020-03-21 00:06:11,,,most_relevant,com.microsoft.todos +Daokun Jiang,https://lh3.googleusercontent.com/a-/AOh14GinSsPMHt4sVwlqhXqwMhZyTUrpCL1PJLjeg7dl,Easy to use. Solid synchronization. Really good.,5,0,2.14.152,2020-03-30 23:46:36,,,most_relevant,com.microsoft.todos +Andrea Zemrau,https://lh3.googleusercontent.com/a-/AOh14GiCbPgwFmkeFJaARYWBHvJB8vChTZYnVnzdr4ss9w,"Perfect to do app. Wish it integrated with chrome though, would be nice to have it on my desktop.",5,0,2.13.151,2020-03-21 19:44:15,,,most_relevant,com.microsoft.todos +David Firth,https://lh3.googleusercontent.com/--ZgsirOtKSc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPzM1cbzEWr1W0cbwx5MTrkLwfn0A/photo.jpg,Easy to use and cross platform synching makes this app one of the best for managing to do activities,5,0,2.14.152,2020-04-03 17:37:05,,,most_relevant,com.microsoft.todos +DiracSpace,https://lh3.googleusercontent.com/a-/AOh14Gjcgf--DiX2NFBjzC92t5_haZjKixPf8Ql9DyoxCOE,"Really awesome app, it helps my team and I go through all our important chores on the date and time we need it. The notifications about changes and new chores also really helps because you know exactly when something changes.",5,0,2.8.145,2020-01-27 02:32:12,,,most_relevant,com.microsoft.todos +Mojtaba Javan,https://lh3.googleusercontent.com/a-/AOh14GgFYb9DRV1rnyh3lh9JAQyEpyAvEaqUDS7RAAsjfg,"Simply the most delightful app I worked with for my tasks. It's minimal, but it has a wide range of features, specially how we can repeat a task anyway we want. That's exactly what I was looking for.",5,1,2.10.147,2020-02-15 03:55:45,,,most_relevant,com.microsoft.todos +PAWAN SAINI,https://lh3.googleusercontent.com/a-/AOh14GhBCPnqfvXUPvmwAltOHjnUycgxWYYp1YamlnyS,Very exciting app. Very helpful for my daily or weekly shedule. 🌟🌟🌟🌟👍👍👍👍,5,0,2.14.152,2020-03-31 13:16:29,,,most_relevant,com.microsoft.todos +Phetole Mogale,https://lh3.googleusercontent.com/a-/AOh14GgJ6k4nN60lXA8ex0xawsjlhkFiulxZgW86K-UDQE8,"Best Todo app I've used ever. I love the concept of starting each day afresh, makes me feel like I'm actually accomplishing something unlike when you see the same task on your list day after day after day.",5,0,2.8.145,2020-01-25 07:40:09,,,most_relevant,com.microsoft.todos +JR H,https://lh3.googleusercontent.com/a-/AOh14GiAyUSoikqow7jsFOMM9u437Kd51yt10YJtqE8w0A,"Great list organizer! I've used any.do for several years, and frankly I like the organization and features of Microsoft To Do better. The only feature I miss is a total task count. Microsoft will likely add it in time.",5,0,2.10.147,2020-02-09 05:01:38,,,most_relevant,com.microsoft.todos +Peter Heap,https://lh3.googleusercontent.com/a-/AOh14Ggdttyw6beDJFUlNoI-Q9EsOlg82OSTKto1dHf2,Works a treat! Especially useful for planning what I need to do on a daily basis.,5,0,2.13.151,2020-03-26 00:27:04,,,most_relevant,com.microsoft.todos +Chris Faulkner,https://lh3.googleusercontent.com/a-/AOh14GgqRQA_138W7EWpREovQM9hFLYqi_us_91YtobE,"Best to do app I have found so far. MS doesn't always get it right, but they hit it out of the park with this one!",5,0,2.14.152,2020-04-06 18:02:47,,,newest,com.microsoft.todos +dan parker,https://lh3.googleusercontent.com/-A_QMNxm_YX8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMznmXBYWzFZpN6XCge-aErAIaGvQ/photo.jpg,Easy to use and has all basic functions required,5,0,2.14.152,2020-04-06 16:21:45,,,newest,com.microsoft.todos +LHMPR Radio,https://lh3.googleusercontent.com/a-/AOh14Gj8acr-TkvoWaIkhpYvqEMjXQ3Dhl3xXX9HCjxI9Q,Love it and I use it every day,5,0,2.14.152,2020-04-06 15:58:37,,,newest,com.microsoft.todos +Laura Taylor,https://lh3.googleusercontent.com/-Sd_F3LF0hjk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOvghjzf_e70cdIb1ZlCZ1HHP0iug/photo.jpg,I got this app to write my schedule on it. it works great!! my children liked it too!!,5,0,2.14.152,2020-04-06 10:51:34,,,newest,com.microsoft.todos +Markus Besold,https://lh3.googleusercontent.com/a-/AOh14Ggj5qEwjzaqy_YkkkW4TNhzVS9DOxmn_hMR6Ajj,"The original app (WunderList) was a bit better, but this one still does the job. It's particularly interesting for unorganized households.",5,0,2.14.152,2020-04-06 09:03:06,,,newest,com.microsoft.todos +Fred Bian,https://lh3.googleusercontent.com/a-/AOh14GgJXb6XgXKOLP4hsSz1Z0WPUqN70stI868Uz5ZeZQ,"Easy to use and neat interface, great supplement to sort your days out, also a great reminder replacement (for the long dead Cortana)",5,0,,2020-04-06 08:30:57,,,newest,com.microsoft.todos +Sherry Secker,https://lh3.googleusercontent.com/a-/AOh14Gjhry_MIpbjSznoV15zU6_mRo0uVkPUWBUwOy3gB8M,Great for managing to do list.,5,0,2.14.152,2020-04-06 06:36:32,,,newest,com.microsoft.todos +Raneesh Mohan,https://lh3.googleusercontent.com/a-/AOh14Gh6P5GlLgRkHZFdN5cTpavAdQBqOWyz6poKKESZ7w,Great job 👌,5,0,2.14.152,2020-04-06 05:58:48,,,newest,com.microsoft.todos +DeeDee Miller,https://lh3.googleusercontent.com/-mrbfEuqvZWQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOMN5MRH7muoU16YkvK53KVT4mVGQ/photo.jpg,Does everything I need.,5,0,2.14.152,2020-04-06 04:16:03,,,newest,com.microsoft.todos +Ameer Hyder,https://lh3.googleusercontent.com/a-/AOh14GiEH0_ErTlJ2ONSm0oRhLalx2ffmQQFOCCn19rX,Awsome,5,0,2.14.152,2020-04-06 02:51:54,,,newest,com.microsoft.todos +Omar pinedaflores,https://lh3.googleusercontent.com/a-/AOh14GgWXHidtf8I9Fuj_u0LJir0TAr-TloAXlOoWDRXGw,trying dont hack,5,0,2.14.152,2020-04-05 20:14:24,,,newest,com.microsoft.todos +Timothy Crowley,https://lh3.googleusercontent.com/-fNWKWqvAuIE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMCQLadrM5Ho_G8mBguBvjuv7tUIA/photo.jpg,Great app,5,0,2.14.152,2020-04-05 19:49:33,,,newest,com.microsoft.todos +by AEGHD,https://lh3.googleusercontent.com/a-/AOh14Gh1pTvkb6d3Sw9xf6dvHz8zdx9I8fIy7Kaovg9Uug,Its the place where I take notes of my homework and projects I've got to do so pretty useful for me,5,0,2.14.152,2020-04-05 18:23:17,,,newest,com.microsoft.todos +Sounak Roy,https://lh3.googleusercontent.com/a-/AOh14Gi_n5XAKHrVLlrKmoMgxcXUdqIeIgWPq2l07RwR,It makes your life easier.,5,0,2.14.152,2020-04-05 18:02:20,,,newest,com.microsoft.todos +Prakash C.V.S,https://lh3.googleusercontent.com/a-/AOh14Gi1WwsnPjLDJwyoBWChEIV-5pPyxXqUKqwW7g72iA,Thank you Microsoft due this great app. I wish the feedback section is more active,5,0,2.14.152,2020-04-05 17:40:27,,,newest,com.microsoft.todos +Mike Rivera,https://lh3.googleusercontent.com/a-/AOh14GhSrul3A4DiQDupY_2PSQD24EhhYQNhYqhvg7DT4g,A fantastic way of sharing tasks with the family and Alexa.,5,0,2.14.152,2020-04-05 14:00:41,,,newest,com.microsoft.todos +Elisabeth Munroe,https://lh3.googleusercontent.com/a-/AOh14GiutTGfF47wwoW0IBaqOc0RIfoME7J70p6oq7MNMr8,"I really like this app. Even when you are retired one needs some order to keep balance in one life. I have learned to appreciate its benefits: tasks (the little things we seem to forget every day), shopping lists, reminders and the themes that makes it fun. 👍👍",5,0,2.14.152,2020-04-05 12:41:12,,,newest,com.microsoft.todos +JUST ME,https://lh3.googleusercontent.com/a-/AOh14Gj8pX0MhbzUJJ5mnlvYFtLlZYYqHAGw-4Nzq42r_g,"If you can customize the colur of the title of the list (the name that you see in the bar) it would be a nice feature, other than that great app",5,0,2.14.152,2020-04-05 08:42:40,,,newest,com.microsoft.todos +Sally Ryan,https://lh3.googleusercontent.com/-g5XdjEZmLHw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPK-nsxoMbXzLNYpe5ePlDXuUSf7w/photo.jpg,Was sad to replace Wunderlist but this app is really good. I particularly like the My day feature and the fact you can see all your To dos for today all together.,5,0,2.14.152,2020-04-05 08:07:31,,,newest,com.microsoft.todos +Rahul Sisodiya,https://lh3.googleusercontent.com/a-/AOh14Ggshyvibfk0DnDCsXhFHnYzKjbpsIgypzGVVvBxoQ,Love it,5,0,2.14.152,2020-04-05 06:34:35,,,newest,com.microsoft.todos +Masud Rana,https://lh3.googleusercontent.com/-2gBNJ21p-qI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPcEJdpmJU9Xu-2bsC-7sve6_H8zQ/photo.jpg,"After trying a few other apps, I decided to us this one. The things that attracted me were very easy to use and have all the features I needed.",5,0,2.14.152,2020-04-05 02:25:31,,,newest,com.microsoft.todos +Heather Srigley,https://lh3.googleusercontent.com/a-/AOh14Gi9qVD_GUZnI5Jx6ed_LfBLy_AbRcY_5YGS-6MlBA,super helpful!!,5,0,2.2.133,2020-04-05 01:36:49,,,newest,com.microsoft.todos +Mukulsinh Chavda,https://lh3.googleusercontent.com/a-/AOh14GgrxOQ0lHGQsNYGygCRm7U-p5As2GxND6lH_CkYVA,Amazing,5,0,2.14.152,2020-04-04 23:04:15,,,newest,com.microsoft.todos +James Fuller,https://lh3.googleusercontent.com/a-/AOh14Gi01twje0fkB0BH-b8kyK3ScUwcFQpywHUbg7Q,Great for organising my work life balance,5,0,2.14.152,2020-04-04 22:21:10,,,newest,com.microsoft.todos +Djordje Pejic,https://lh3.googleusercontent.com/a-/AOh14Gj8CfB1FdiCzIgMgYdhckTVRh_iMuwOcFy07wIEfQ,"I absolutely love this app! It looks amazing, the dark theme is a great addition. It's also really cool to be able to make lists within lists. 5 out of 5",5,0,2.14.152,2020-04-04 20:28:36,,,newest,com.microsoft.todos +Don Holbrook,https://lh3.googleusercontent.com/a-/AOh14GgpHEs-BqDX_fdHbjGrMkcrkGnKf7MbBnRJHb59,THE BEST TO DO APP EVER! Now I don't forget any important things on my mind. I can write or record at anytime or anywhere. Thanks MS,5,0,2.14.152,2020-04-04 18:20:14,,,newest,com.microsoft.todos +khadija Hh,https://lh3.googleusercontent.com/-IHXtK84HrcA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOJivZzGKlayjS_Jkr_r4jCWyA9tQ/photo.jpg,Greatttt💗💗👍🏼👍🏼,5,0,2.14.152,2020-04-04 17:38:35,,,newest,com.microsoft.todos +Michael Rourke,https://lh3.googleusercontent.com/-v8h2UL8WbVE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPQ98r1SWPSgSu3R2MQsTevnyuAlQ/photo.jpg,Easy to use. For quick list with reminders for daily or last minute reminders.,5,0,2.14.152,2020-04-04 14:13:16,,,newest,com.microsoft.todos +rohit deshmukh,https://lh3.googleusercontent.com/-VLNu4bfPIYA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOOGsEi5uEqt5mbEXKxx19m4-KLxg/photo.jpg,Wonderful app,5,0,2.14.152,2020-04-04 13:18:56,,,newest,com.microsoft.todos +Mohamad Raihan Praba Tahir,https://lh3.googleusercontent.com/a-/AOh14Ggagm7f6lfT4V2oRR9l4tqBrOKgzDimUoWy1UjO3Q,I Love it,5,0,2.8.145,2020-04-04 11:45:31,,,newest,com.microsoft.todos +banan soliman,https://lh3.googleusercontent.com/a-/AOh14Ghtz8PTaGTleMWfAbsEDvpwwplkjJQl5HrTWBV5,Gooooooooooooood niceeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee,5,0,2.14.152,2020-04-04 09:40:19,,,newest,com.microsoft.todos +Michael Cauthern,https://lh3.googleusercontent.com/-y-vbk6zOLiw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPrVN0VifaYq8RE0CZGOZ6GSZkAZw/photo.jpg,Great app.,5,0,2.14.152,2020-04-04 05:59:00,,,newest,com.microsoft.todos +Jennifer Hill,https://lh3.googleusercontent.com/a-/AOh14GgHYcWx3zrOyT88MsQOVP-cSLYvY5U30moAlsmw4w,I love it,5,0,2.14.152,2020-04-04 05:31:53,,,newest,com.microsoft.todos +CP Wong,https://lh3.googleusercontent.com/-a0k25SNvyWY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOAIBHIKXsyjI0ayb5zGIhUl62Jww/photo.jpg,Exactly what I have been looking for. Love it,5,0,2.14.152,2020-04-04 04:05:53,,,newest,com.microsoft.todos +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Fantastic and simple app,5,0,2.14.152,2020-04-03 20:08:59,,,newest,com.microsoft.todos +Ravi Dubey,https://lh3.googleusercontent.com/a-/AOh14Gj2bhONCMHSHl1gU_g_hk7xh9_U6fmOLM1zPELIpA,"I feel good with this app, it's A great note app.",5,0,2.14.152,2020-04-03 17:39:51,,,newest,com.microsoft.todos +David Firth,https://lh3.googleusercontent.com/--ZgsirOtKSc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPzM1cbzEWr1W0cbwx5MTrkLwfn0A/photo.jpg,Easy to use and cross platform synching makes this app one of the best for managing to do activities,5,0,2.14.152,2020-04-03 17:37:05,,,newest,com.microsoft.todos +Kennedy Wheller,https://lh3.googleusercontent.com/-7o52swAtCBw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOwF4PUJweNYVGazPXO_aRZdhEq3g/photo.jpg,Really great for staying organized! Super easy to use.,5,0,2.14.152,2020-04-03 17:32:23,,,newest,com.microsoft.todos +Andrés Villenas,https://lh3.googleusercontent.com/-I6ygPS3XkiA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMGzDQKoR7-72TwOIrdGsjZ2GZ5sA/photo.jpg,It is great! Simple as that.,5,0,2.14.152,2020-04-03 15:06:48,,,newest,com.microsoft.todos +Soft Fun,https://lh3.googleusercontent.com/a-/AOh14GhDSxKyZxwbXDzyUVsVnFawwRWUa1S6ezMfC6pxrA,Very good app in our life,5,0,2.14.152,2020-04-03 12:26:42,,,newest,com.microsoft.todos +Lei LI,https://lh3.googleusercontent.com/a-/AOh14Givop3rqIASi9sUquyv3CTGcdLx-jq-mBKz2QqCwg,"Fantastic, it saves my life",5,0,2.12.149,2020-04-03 10:53:33,,,newest,com.microsoft.todos +jennifer thurstan,https://lh3.googleusercontent.com/a-/AOh14GifeI0croVzmaGaU4xxTJjU7DDsKCorZdbUcuw,Really useful and easy to use.,5,0,2.14.152,2020-04-03 09:35:17,,,newest,com.microsoft.todos +Trinity Sanders,https://lh3.googleusercontent.com/-bAF_7HPIwhk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMNW4BIQ1Cq4mD2MuqKl14WiQFp_g/photo.jpg,I love the organzation,5,0,2.14.152,2020-04-03 09:27:50,,,newest,com.microsoft.todos +Sheila Becker,https://lh3.googleusercontent.com/-PHZhB4gvohY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNmhkalKel9g2iRQXU6vTnDrmjeDg/photo.jpg,Perfect. Wonderful idea,5,0,2.14.152,2020-04-03 08:44:49,,,newest,com.microsoft.todos +Alexander Kuntsevych,https://lh3.googleusercontent.com/a-/AOh14GicJrMjVghLikdGj2aiPRP76UJQTWRuycc7koemKzQ,Great task app. Still don't know how to integrate in to outlook on pc. Wunderlist had integration,5,0,2.14.152,2020-04-03 04:24:43,,,newest,com.microsoft.todos +Annette Marie,https://lh3.googleusercontent.com/a-/AOh14GjHBURH44pC4EiKLGBTnd_wPs-6CSR-1aGkdcHxQQ,I love making lists and this application makes it much more accessible to do so... 🟢I don't have to worry about which pocket my hand written list was last put into. 🟢I don't have to worry about keeping a pen on me or losing it in the store for the tenth time. Lol 😜 🟢AND I dont have to check things off!!!! The app just checks it off for me with a single tap.,5,7,2.14.152,2020-04-03 02:43:05,,,newest,com.microsoft.todos +TD CPA PhD,https://lh3.googleusercontent.com/a-/AOh14Ghy-2FwLL0IrQdf-rqtHusq_WjCmSGB22OvEpRn,"As always MS makes the best thing, but fails to offer video training and integration and some basic CRM features. Needs imporvement on 1) multi importance/priority level with drop down box and for sorting.... 2) ""Repeat"" doesn't add today's to-dos, just an alert. ... 3) Beable to organize more than just today....add wk mo & yr. .. 4) CRM and Calendar need upgrading and integration with Outlook app..... 5) Training??",5,0,2.14.152,2020-04-03 00:39:16,,,newest,com.microsoft.todos +Natalia Vanegas,https://lh3.googleusercontent.com/a-/AOh14GijFumYifeo4i90XgUSc6yas8J4Y8QSUlAonaCwQg4,Realizing Wunderlist was going away was unfortunate but this app does a great job at replacing it. I really like the graphics and the background image of the needle.,5,0,2.14.152,2020-04-02 23:51:08,,,newest,com.microsoft.todos +Karen Olson,https://lh3.googleusercontent.com/a-/AOh14GjOrp7Fyyr2cCUNEBkiTT9goa42oLUgcTereqjKlg,It's awesome!,5,0,2.14.152,2020-04-02 23:30:47,,,newest,com.microsoft.todos +Justin Adams,https://lh3.googleusercontent.com/-dDPQQbNpVfI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPkD_SRh_Inc4C0-UTjVrKn2BeDew/photo.jpg,Inspired by Today and Tomorrow and my life Is I can do the one I sent was her last name correctly Lawson you in the people in and always and my lifetime ago I think it's the same time for you to come home now Yes Love in the people who went to sleep at my house I will be in touch with you in the morning and always my favorite person I know when you're ready to talk with me about Working and I will there today Yes sounds great idea for Yes Love Love Love Love in the one who went to the PEOPLE'SN,5,0,2.14.152,2020-04-02 23:05:48,,,newest,com.microsoft.todos +Ameet A,https://lh3.googleusercontent.com/a-/AOh14GikomQuLXyUCielml38M-QngCTZKZnzhtL_tmDJ4A,Wow Too Good,5,0,2.12.149,2020-04-02 17:47:06,,,newest,com.microsoft.todos +schettleraa,https://lh3.googleusercontent.com/a-/AOh14GiSWSdo14aBgu7nFoHoce2KnHfLQS2sNJEK6Gz-UCw,It's different from Wunderlist but pretty close. Its like changing from Gmail to outlook but it's working for me.,5,0,2.14.152,2020-04-02 17:24:32,,,newest,com.microsoft.todos +GA Joaquin,https://lh3.googleusercontent.com/-GrxjfXK5Pcg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP8NR5Fr-JQdC86YduzJIkLpbQ1Ag/photo.jpg,"Sencilla, práctica, y cumple como debería. Si buscás una app para anotar tareas o recordatorios está es la indicada. Lo mejor es que puedes tener la app tanto en celular como en ordenador y lo que anotas en uno se actualiza en el otro.",5,0,2.13.151,2020-04-02 17:00:39,,,newest,com.microsoft.todos +Hjr Obispo,https://lh3.googleusercontent.com/a-/AOh14GgeISQVtRAg2688gHXOu0pDJfIP2uGso38BnRhPMw,Very useful,5,0,2.14.152,2020-04-02 16:59:13,,,newest,com.microsoft.todos +Samantha Calcagni,https://lh3.googleusercontent.com/a-/AOh14GiOoqXkgmFGdD3abuwWH9lyZ5kFIcwDJKSeOBneBw,This app is awesome. At the moment while we're in quarantine. I have to do a whole bunch of school work and it's just easier for me to make sure I'm doing everything. Make sure I'm getting everything done and it's just really great. Thank you so much!,5,0,2.14.152,2020-04-02 16:24:22,,,newest,com.microsoft.todos +T. Nasibi,https://lh3.googleusercontent.com/a-/AOh14GjKTfkv9N2DgJqSbC8thoNEQFg6Ktclzhwga66g_Q,Best to do list app so far. I like it,5,0,2.14.152,2020-04-02 12:43:26,,,newest,com.microsoft.todos +akanksha singh,https://lh3.googleusercontent.com/-Ti8A8Kzt69M/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPa0oA5Alq4grwtXzqX8mezB9AVVA/photo.jpg,"Easy to use, has many features, perfect planner app",5,0,2.14.152,2020-04-02 11:24:01,,,newest,com.microsoft.todos +Võ Thùy Trang,https://lh3.googleusercontent.com/a-/AOh14Gg3CEAH6LUSSlFyqK2rLLgEKSy0x0S_u7wB7yfsjDs,Extremely appropriate for those who enjoy time management ❤,5,0,2.14.152,2020-04-02 09:20:39,,,newest,com.microsoft.todos +Sk Anowar Hossain,https://lh3.googleusercontent.com/a-/AOh14Ghw9rJO6HuEZQ2KWTF7yDEPZ74H4YyNA1auwQlADA,This is a good app for note and everything as you want.... I am so happy for using this app....but it is more better if have search options...so currently improve it..,5,0,2.14.152,2020-04-02 08:10:02,,,newest,com.microsoft.todos +Ofentse Tladinyane,https://lh3.googleusercontent.com/a-/AOh14GjkPtsRLSZWJN9h0SRuSQouOXw5BowA2PjwFRmJ-g,This is a very cool app. Perfect! Although it should have more link options for other apps as well.,5,0,2.14.152,2020-04-02 02:21:56,,,newest,com.microsoft.todos +Jennifer Smith,https://lh3.googleusercontent.com/-oGhEi-j41B4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOWSurH3Y53P8nc2AWsnbW0sYSX_g/photo.jpg,Very useful.,5,0,2.14.152,2020-04-02 00:15:25,,,newest,com.microsoft.todos +Seyedali Hosseinizadeh,https://lh3.googleusercontent.com/a-/AOh14GhewKwwF_Ng7l_NO8HEVGDfVYxOxI3Kzxldjj1PMB0,It's top notch! But I removed it just because other outlook-related apps not working well in outlook,5,0,1.60.121,2020-04-01 23:49:12,,,newest,com.microsoft.todos +D. A. Soward,https://lh3.googleusercontent.com/a-/AOh14Ggy3njg2SPlbJnoPoT34HI61u5g4TF9tEjd4qMk,"I use it everyday and completely love it. It is very simplistic to use and understand, even for older folks like me! If I'm putting together a list of projects I want to get done; it's allows me to take a picture or a screenshot, then title and save it by Category! Extremely helpful for users of all age groups; and with the Backup & Sync features you just can't go wrong with this app!",5,16,2.14.152,2020-04-01 21:03:22,,,newest,com.microsoft.todos +ali fazelinia,https://lh3.googleusercontent.com/a-/AOh14Ghx_x_MaqMkaUqzfqcyv5T0_NuhCGjHazOOzuAw,excellent,5,0,2.14.152,2020-04-01 19:00:00,,,newest,com.microsoft.todos +محمد مرادی,https://lh3.googleusercontent.com/a-/AOh14GgE-o89gD-jatNh1z-Rpanb34vZG0g5L5YAgN9ZiQ,Wonderful,5,0,2.14.152,2020-04-01 17:11:42,,,newest,com.microsoft.todos +Robert Marsh,https://lh3.googleusercontent.com/a-/AOh14GjekLxPdje34nVu-n4ml82CtInyzbApg_8fdtyG_Q,You rock! From Grumpy Grandma. Than you SO MUCH!,5,0,2.14.152,2020-04-01 17:01:17,,,newest,com.microsoft.todos +Evie Bartlett,https://lh3.googleusercontent.com/-jhBzyXD36SI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN9mFZ7ArRaB0zpa7LUi3kTXT8fIg/photo.jpg,"I LOVE IT! This app us so simple and easy to use, it's so clear to see what needs to be done. I love how you can carry tasks over from one day to another or carry over tasks from over lists. I also love how you can add steps to a task and set a due date. I LOVE IT :)",5,0,2.14.152,2020-04-01 14:37:21,,,newest,com.microsoft.todos +zakir islam,https://lh3.googleusercontent.com/a-/AOh14Gij8juXZiOlcMFlIJDJuIOnK6_u7D3jf3RPMZt5,"I like so much BUT i have a advice. Like, if you make completed task go down automatically",5,0,2.14.152,2020-04-01 12:20:26,,,newest,com.microsoft.todos +Laurence Baker,https://lh3.googleusercontent.com/a-/AOh14Gh59oiSZYLBCqrsoWKz7wlWA-QDv9No_9XR1sZJYkU,Pretty good,5,0,2.14.152,2020-04-01 10:19:59,,,newest,com.microsoft.todos +Douglas Petry,https://lh3.googleusercontent.com/a-/AOh14GiN5KsJU9PZkTNGEBTJY7VxFrzQYaOObPdwk84W,Awesome,5,0,2.11.148,2020-04-01 05:29:54,,,newest,com.microsoft.todos +Chris Gibson,https://lh3.googleusercontent.com/-Qj9inrk--xg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMO1ukeSAnY5V5pUoigeEttbWZjdg/photo.jpg,"Excellent - This is even better than Wunderlist which I really loved, they've taken it up another level. Brilliant cross platform tool for managing all my tasks",5,0,2.14.152,2020-03-31 18:45:45,,,newest,com.microsoft.todos +Olubisi David Oladapo,https://lh3.googleusercontent.com/a-/AOh14Gj1yTiDrUjkTftIn7FKpGopy01SxRj-9drPTIc5Ow,To-do list,5,0,,2020-03-31 18:14:44,,,newest,com.microsoft.todos +Moncef El Asmaay,https://lh3.googleusercontent.com/a-/AOh14GhQvV3H_cUgDNeDhB53EgGiBxv0kXTjw4h8IO5S,I Love it🌠,5,0,2.14.152,2020-03-31 17:43:29,,,newest,com.microsoft.todos +sonja,https://lh3.googleusercontent.com/a-/AOh14GhZIWlWZOAUcFSoECdeJ4q5QmqixhRWYQJa6xNKCw,THE BEST TODO APP I'VE EVER USED 100/10 WOULD RECOMMEND!!!,5,0,2.14.152,2020-03-31 16:00:16,,,newest,com.microsoft.todos +Bob Hunt,https://lh3.googleusercontent.com/-nghduqp3xkQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO2Q-_82BD_upFpAusRr0FUXPfZTQ/photo.jpg,Helps keep me organized,5,0,2.12.149,2020-03-31 14:58:01,,,newest,com.microsoft.todos +Thurston Stemmerman,https://lh3.googleusercontent.com/a-/AOh14GjKFBZ2P3f9cVdzyMOC8lCzED7fnEUBRdnUoWRFnw,Awesome 😊 since we have online school I can use this for a schedule!,5,0,2.14.152,2020-03-31 14:18:33,,,newest,com.microsoft.todos +PAWAN SAINI,https://lh3.googleusercontent.com/a-/AOh14GhBCPnqfvXUPvmwAltOHjnUycgxWYYp1YamlnyS,Very exciting app. Very helpful for my daily or weekly shedule. 🌟🌟🌟🌟👍👍👍👍,5,0,2.14.152,2020-03-31 13:16:29,,,newest,com.microsoft.todos +Rahul Dharnia,https://lh3.googleusercontent.com/a-/AOh14GgHVFyO3YCExMl2Gwfl4i8UmlEVTZ0SDi5STMjuGg,Really useful app,5,0,,2020-03-31 12:34:24,,,newest,com.microsoft.todos +Subrananyam Reddy,https://lh3.googleusercontent.com/a-/AOh14GgTj_dUyPMcDXgjh8QK1bS5qzTeSmGByKKEmoKwAg,Very nice App,5,0,2.14.152,2020-03-31 10:52:30,,,newest,com.microsoft.todos +Rup,https://lh3.googleusercontent.com/a-/AOh14GjHh3zr1irhCmWxLmF3He439GiarbYF2JHPXWkhSQ,Simple and amazing,5,0,2.14.152,2020-03-31 08:40:22,,,newest,com.microsoft.todos +Paula Lopes,https://lh3.googleusercontent.com/a-/AOh14GiyF_umFgv35Y71pM4Fb8h9Wuy84O73pRBsJDIh1CM,"Apresenta problemas de autenticacao direto e, o pior: qd desinstalei o programa e o reinstalei,na tentativa de conseguir autenticar e logar na conta,perdi todas as minhas informacoes anteriores,ja q a unica alternativa de importacao que eu tive era a do wunderlist,nao a da conta da microsoft salva na internet.",5,0,2.14.152,2020-03-31 04:06:56,,,newest,com.microsoft.todos +Mohamed Abo Obaya,https://lh3.googleusercontent.com/a-/AOh14Gj0pw3DFl675SAlo7f481iRHH242yjYZ4qv1X8e,Very good app really 🖤,5,0,2.14.152,2020-03-31 02:51:45,,,newest,com.microsoft.todos +Javid Khasizada,https://lh3.googleusercontent.com/a-/AOh14GilC_Iv_1veJ4HFFuiFPfS5sFzh8zn0tfVNxYGEXw,Lovely,5,0,2.14.152,2020-03-31 01:14:31,,,newest,com.microsoft.todos +Daokun Jiang,https://lh3.googleusercontent.com/a-/AOh14GinSsPMHt4sVwlqhXqwMhZyTUrpCL1PJLjeg7dl,Easy to use. Solid synchronization. Really good.,5,0,2.14.152,2020-03-30 23:46:36,,,newest,com.microsoft.todos +Angela Finch,https://lh3.googleusercontent.com/-BCZ2i6osl6o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO5opgMrNinRaS3dGtGc_gyWUtNeQ/photo.jpg,Love this app!!,5,0,2.14.152,2020-03-30 22:39:36,,,newest,com.microsoft.todos +Sandy Hill,https://lh3.googleusercontent.com/a-/AOh14GgNnqdXkYEr_XeJ4ftVv4XqQFSXLesY9GdxWVN6jw,Loving how this is organized.,5,0,2.14.152,2020-03-30 19:44:06,,,newest,com.microsoft.todos +Steve Cooper,https://lh3.googleusercontent.com/-PmG2n1V8zzE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJODjF4PZhpdW-5L8dffSbLn9t3opQ/photo.jpg,Great app,5,0,2.14.152,2020-03-30 19:41:14,,,newest,com.microsoft.todos +shimul zadid28,https://lh3.googleusercontent.com/a-/AOh14GgqFJlwELLqiSCpPJIQWOa5tZg9Yq268YATwKINtw,Best app for daily life.,5,0,2.14.152,2020-03-30 18:29:23,,,newest,com.microsoft.todos +Chrissy Varotsi,https://lh3.googleusercontent.com/a-/AOh14GiLx7LeRUPIN4Kj2bfaNEMcA17WdTL5ykHlqam-Xg,Very easy to use.,5,0,2.14.152,2020-03-30 16:29:53,,,newest,com.microsoft.todos +Baratha Kamban S,https://lh3.googleusercontent.com/a-/AOh14GgHwYMBbtiOl7M1x92KF55Y1HT4VCto-7FzU4-p7Q,"This app is very useful. Minimalist, yet almost everything is available. I could group my activities sub-activities and tasks as per my wish and use them to plan accordingly. A calendar option would make it complete.",5,0,2.14.152,2020-03-30 15:41:13,,,newest,com.microsoft.todos +Helena Janguiê,https://lh3.googleusercontent.com/-3h-hakBvDso/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNILVarJ-rmjunQb7i8Ch_QECr6-w/photo.jpg,Amazing app to take notes and make to do lists.,5,0,2.14.152,2020-03-30 11:12:42,,,newest,com.microsoft.todos +Nelson Ombuya,https://lh3.googleusercontent.com/a-/AOh14Gj72IOvLS-9dd1fTlWr-lg7Kd8tGdPnhQSkM3aVdw,"This is quite frankly the best to-do app I've ever used. It has features I didn't even know I needed, like searching for tasks, or the my day tasks list. It syncs really well and worked even better than I'd hoped. Great Job.",5,0,2.14.152,2020-03-30 08:37:13,,,newest,com.microsoft.todos +Les Wright,https://lh3.googleusercontent.com/-p6HXvkZvg1o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOhxSOvol11tPv8cOmWm_-BPJHPTw/photo.jpg,Better than previous app I used,5,0,2.14.152,2020-03-30 08:00:49,,,newest,com.microsoft.todos +R C,https://lh3.googleusercontent.com/a-/AOh14Gh2lKnDUQTQ15vcS3ZW9FN2oy-tlW5IpL2YMNwudQ,Super awesome 👍,5,0,2.14.152,2020-03-30 02:00:01,,,newest,com.microsoft.todos +ABABA _TeCH,https://lh3.googleusercontent.com/a-/AOh14Gi2GXZEo35zMEqiTWOCEY187TSylgGQ7_5yYzsG,Very useful,5,0,2.14.152,2020-03-30 00:53:18,,,newest,com.microsoft.todos +Lincoln Law,https://lh3.googleusercontent.com/-b3Bd-nZd4Pk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOdLPlSD-9kHPjgNuwSRVpzIqgLxA/photo.jpg,Works great,5,0,,2020-03-29 23:24:24,,,newest,com.microsoft.todos +Martin Elchanan Rotstain,https://lh3.googleusercontent.com/a-/AOh14Gjj5uVCdgMxDaEBeZg57tIr3JvOKNUJ3Lndlpc9_g,I have tried few. This is my choice for work and private use,5,0,2.14.152,2020-03-29 19:56:12,,,newest,com.microsoft.todos +Richard B,https://lh3.googleusercontent.com/-ShVjSRud9WI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMYCYxuKW60mJtTT5OS7x6gkglZzg/photo.jpg,Great!!,5,0,2.14.152,2020-03-29 17:15:21,,,newest,com.microsoft.todos +Annette Gamston,https://lh3.googleusercontent.com/-QRWDGDIEoL0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM2qqkJl1Ddl4FAhKzOdApjcVAmFQ/photo.jpg,Simple to use and seemless sync with outlook,5,0,2.14.152,2020-03-29 15:21:07,,,newest,com.microsoft.todos +sajjad bakhshipour,https://lh3.googleusercontent.com/-7oz2YEE-tCc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO5Kz9AeVnMuCS3A8MeXt-0vZJYvQ/photo.jpg,Very useful,5,0,2.13.151,2020-03-29 15:19:54,,,newest,com.microsoft.todos +GirlyTodd,https://lh3.googleusercontent.com/a-/AOh14GjztaxKLwNAvv22TW_ANKtHOw3YaCx0j35Rl3SjhzQ,Not what I thought it was... This only blocks out time for your calendars. I was looking for something that would help with daily routines. 😕. I even tried to use the calendar before giving up... But it refused to sync. So it's useless,1,0,5.14.1,2020-04-03 19:53:38,,,most_relevant,prox.lab.calclock +Nomoketuo esreveR,https://lh3.googleusercontent.com/a-/AOh14GgGu68l4HLR6H9-q1QoDVUs5hM07qpjxXrHQAut,"dependant on another calendar app. Why? why do I need to have another app to use this app? I can't add plans or schedule without this app throwing the task to Google Calendar. Besides, I don't use G.C anymore since I once missed an event which I put a reminder through the G.C app because it never reminded me. I read one comment for this app that it never gave a reminder for a scheduled task and yes I have an idea why it happened.",1,6,5.14.1,2020-02-28 07:51:44,"This application uses any calendar application that is on the device. Including the standard application ""Calendar"", which is 100% devices. This app is suitable for users who already plan on the calendar. The application does what it promises in the description and screenshots 100%.",2020-02-28 08:02:20,most_relevant,prox.lab.calclock +Brandon Hanson,https://lh3.googleusercontent.com/-eCbHWVGJ7oU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN7gmnsE0IuNtNZp6SLXYNhisrLnA/photo.jpg,"Doesnt work on ALL android Wear OS devices. Specifically, doesnt work with the Watch Active2.",1,0,5.14.1,2020-03-07 02:13:18,,,most_relevant,prox.lab.calclock +Denver Naidoo,https://lh3.googleusercontent.com/a-/AOh14GiKHcf2UOzTG_6zBib97eSq85sZG8GXXJHXbx1YuIQ,"Too complicated. It probably has a lot of, but it's not intuitive enough.",1,0,5.14.1,2020-03-22 11:57:02,"""Do the other things, not because they are easy, but because they are hard; because that goal will serve to organize and measure the best of our energies and skills .."" - J. Kennedy",2020-03-22 12:18:03,most_relevant,prox.lab.calclock +Lauren Wickert,https://lh3.googleusercontent.com/a-/AOh14GjtdadCCRhoQvYCZtBCuOzVsJZJlU-xVvFP-Fo5Rg,"cool visual but doesn't work the way I thought it would. I don't like organizing my hour-by-hour tasks through my calendar because it clutters it up and makes me miss my important events. I wanted to use this app thinking that it would allow me to plan my dialy tasks just through the app. But every time I want to plan an event it forces me to do it through my calendar which I don't like. good concept, but I don't see a reason to use it since it just wants me to use my calendar anyway.",1,82,5.13.2,2020-01-31 19:47:56,This app does what it promises. Please read the application description before installation.,2020-01-31 22:47:36,most_relevant,prox.lab.calclock +Clive Adams,https://lh3.googleusercontent.com/a-/AOh14GgkC3XC7-D76tF9Oqrud4R2TovKLMVwd8rbNg_e4A,"I wanted to like it, iinitially it looked great but it has such a limited window of time view it's no good for planning. A few hours view and that's it. Scrolling hour by hour day by day? Useless. Its sole function appears to be to tell you what you've got coming up in the next few hours which frankly is not much use to anyone as far as I can see. Cloud Cal uses similar circles with a view of the whole month which would be great but sadly the pro version doesn't work so no go there either.",1,6,5.13.2,2020-02-09 21:46:15,"The idea of ​​the application is not just in the circular output of the maximum number of events, but in the intuitive concept of repeating the real 12/24-hour clock. +And displaying the month on a similar dial is utopia. +For multi-day planning, there is a tabular form. +About usefulness for users. +More than 40k of our users like this.",2020-02-10 00:41:58,most_relevant,prox.lab.calclock +Jethro Boey,https://lh3.googleusercontent.com/-vox9_neSuSk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMXC1Ar6clWfkC7bcuzDAAhnLtvSw/photo.jpg,"Used to love it, but the latest version broke it. Couldn't get it to work. All widget face buttons would work for a few seconds then break. Tried all settings, didn't work. Fix it and I'll reconsider my rating.",1,2,5.13.2,2020-01-30 23:57:50,"Hi, +We made the default ability to click on sectors of the widget. +To return, click on the widget button (upper right corner of the widget) and ""Customize widget buttons"". Choose the first option. If the problem persists, write to me at 27applab@gmail.com",2020-01-31 02:11:17,most_relevant,prox.lab.calclock +rana abdullah,https://lh3.googleusercontent.com/a-/AOh14GikW8UFzJ4Yq0svF6Rb5ppzf8Syw59hnYywiw,There should be add different time schedule in app not be in mobile colander,1,0,5.14.1,2020-03-31 17:14:34,"Hi, We will do it.",2020-04-02 14:52:49,most_relevant,prox.lab.calclock +Google Account,https://lh3.googleusercontent.com/-fxd51mrrukE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPXtL2PVQ_IBvaKzt5kgiJbRLV4mg/photo.jpg,Puts all info in default Google calendar.,1,0,5.14.1,2020-03-03 16:51:31,,,most_relevant,prox.lab.calclock +Eriss Menace,https://lh3.googleusercontent.com/a-/AOh14GimKANnRHLkqsDRpe4DoLzfhXrN85zLhbYw7PnTYZU,"It has a lot of functionality bugs. Some of my events were not adding, after restaring the app, other events just disappeared etc. I m really sorry i had to delete it because it looked nice and could be very useful but it s not working. Thanks!",1,3,5.13.2,2020-01-05 20:37:30,"Hi. The 12-hour app displays upcoming events for the future 12 hours. Rather, 10 hours ahead and 2 hours back from the clockwise (past events no more than 2 hours ago). +The list under the dial is exactly the same. +Events will not be displayed if they took place more than 2 hours ago or more than 12 hours are left",2020-01-06 01:02:17,most_relevant,prox.lab.calclock +Kia Caballero,https://lh3.googleusercontent.com/-uJtEXpOqRzU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN774Lk7iuqyxTsuBV-FBYzaSFnJQ/photo.jpg,"I like this app. It's just that whenever I enter something in my calendar, it would not sink right away.",1,0,5.13.2,2020-02-14 22:22:12,Hi. Email me at 27applab@gmail.com I will help,2020-02-14 22:27:05,most_relevant,prox.lab.calclock +Fernando Flores,https://lh3.googleusercontent.com/a-/AOh14GgX6WVTZbm1n7--ll7uZHafnWb8vy72wG9NcmSsGw,"does not work properly , does not update wit hcalendar entries , worst thing , cannot aak my money back!!!!!!!",1,2,5.13.2,2020-01-14 00:32:04,"Hi, Email me at 27applab@gmail.com I will help or refund the payment.",2020-01-14 02:20:15,most_relevant,prox.lab.calclock +Mason Jayden Minion,https://lh3.googleusercontent.com/-S7vmBGHNr_M/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMjNuVKlGHmU1StwONkDbE3QP5zfg/photo.jpg,Cannot use without existing calendar,1,0,5.14.1,2020-04-04 10:43:58,"Hi, +The app is intended for calendar users. +It is written in the description. The application does what it promises.",2020-04-04 13:10:20,most_relevant,prox.lab.calclock +S. Sander,https://lh3.googleusercontent.com/a-/AOh14GiOiV1_3YHE9kM2DMe-gka3oozlMY9JzLsjcOkxrw,Clicking on the widget doesn't open the app anymore :( :(,1,1,5.13.2,2020-01-28 22:31:25,"Hello. +We made the default ability to click on sectors of the widget. +To return, click on the widget button (upper right corner of the widget) and ""Customize widget buttons"". Choose the first option.",2020-01-28 22:51:28,most_relevant,prox.lab.calclock +Yohanes As,https://lh3.googleusercontent.com/-vBqroyTPCpQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNIX09TcBVOuN6AhqyaT85ekoanvw/photo.jpg,"Won't sync with my Calendar, Sam-Note 10",1,1,5.13.2,2020-01-13 13:14:38,"Hello, +Are there events for the next 12 hours? If not, the dial will be empty. + Go to the ""My calendars"" menu, make sure that the calendars you need are selected",2020-01-13 13:47:05,most_relevant,prox.lab.calclock +amirahsolehah shokri,https://lh3.googleusercontent.com/a-/AOh14GiKyGc1IKt6NmuzRfMaVIfEAtm1drpaPewdbxbE,Not sync with Google Calendar,1,0,5.13.2,2020-02-19 10:29:10,"Hi. He is for this created. +Email me at 27applab@gmail.com, I will help",2020-02-19 10:38:39,most_relevant,prox.lab.calclock +Jennifer B,https://lh3.googleusercontent.com/-sx_BoTw7aCM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM96SQ0fOaOi5EDXxyMWWRR4aTuSA/photo.jpg,"Uninstalled...Not at all what I thought it was. This entire app is basically just a fancy way to look at the calendars you already have. Everything syncs both ways, so if you add your actually daily schedule minute by minute to this app you are also cluttering up your calendar(s) with the same things. Would've been neat if it actually had some kind of function, but I don't need to waste sd card space on a calendar viewing app.",1,1,,2020-02-27 17:46:35,I always write the same thing in response to such comments. The application does what it promises in the description and screenshots. Please read application description before installation. Then you insure yourself against wasting time on something that does not suit you.,2020-02-27 21:50:29,most_relevant,prox.lab.calclock +Amber Lightning,https://lh3.googleusercontent.com/a-/AOh14GgmNb3f0vF2U_puVldzZBDiwdyp8G-_jWsrNOjz_Q,"How it SHOULD work is fantastic and perfect for me. But whenever I have my schedule laid out and planned, the app deletes them or forgets them and i have to start over, only to have them deleted again. I really really want to use it. Why does it make it so unable to?",1,0,,2020-03-02 05:08:45,"Hi, +Please write to me at 27applab@gmail.com, I will give some tips on the application",2020-03-02 05:37:05,most_relevant,prox.lab.calclock +Keely Vaughan,https://lh3.googleusercontent.com/a-/AOh14GhREgp69JFaqhFoprM6odmG_YnKyuZZhtWhcTpV,It gives the option to add a local calendar but doesn't let you use it unless you also give permission to use a Google or Outlook calendar. Kind of defeats the purpose of doing a local-only calendar if I can't actually use it.,1,2,,2020-01-23 06:20:32,,,most_relevant,prox.lab.calclock +Gloria,https://lh3.googleusercontent.com/a-/AOh14GivuAiGLysFHyEQgyPiXuTsKbCdDMFaTNdcv9gY7w,"Good on paper, tried it out and off the bat wouldn't sync any news items, wish it had an option to at least input items directly. Either way didnt work",1,2,,2020-01-28 22:24:46,"Hi, +Please email me at 27applab@gmail.com I will help.",2020-01-28 22:52:52,most_relevant,prox.lab.calclock +Catherine Aensland,https://lh3.googleusercontent.com/a-/AOh14GjpOJdwTXNwPLVxCjfu7XJ4JhFAUP0CgHNxapjJ,"Dude. Don't we all want people to pay us for everything we come up with. XXXXXXX Hi! Thanks for the attentive reply. Though this app was not worth the payment or storage space for me, I did find one that works nicely. Looking forward to more replies, hopefully relevant, or none at all.",1,1,5.12.1,2019-11-15 22:44:45,"Only for what is worthily realized and worth it, and only if desired.",2019-11-13 09:02:39,most_relevant,prox.lab.calclock +Furkan Koç,https://lh3.googleusercontent.com/a-/AOh14Gj99ZEPLJqMhs1mSjUmXy-DtXozk4GlJLbL5aZj,"Most of My Google calendar events doesn't appear in the sectograph app. If i try to delete some events which is appeared, it cannot remove in the app also. I prefer if the app has own calendar so that events that ill creat might able show easier.",1,0,5.12.1,2019-10-25 01:50:50,"Hi Please write to me at 27applab@gmail.com, I will say what needs to be done",2019-10-25 02:47:36,most_relevant,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Edit: Still doesn't work. I suggest adding proper integration with Outlook because it is leaps and bounds ahead of Google in terms of usability and ease. - Before Edit: Doesn't show me the events already listed on my Outlook calendar. Every day is blank. When I go to add an event with only Outlook calendar selected it wants me to add an event into another calendar. I don't care about adding events (I can do it on another platform) but if can't even see my Outlook events then this is useless. Gave it all necessary permissions and checked dates and synced.,1,16,5.9.1,2019-02-23 12:38:59,"One moment. Let me explain. Outlook support appeared less than a month ago. A bug was found: if there are no events in the google calendar, Outlook events are not drawn. We will fix in 1-2 weeks. For the time being, create 1 daily google event lasting 30 days. It will help.",2019-02-23 12:32:31,most_relevant,prox.lab.calclock +Maja Čuić,https://lh3.googleusercontent.com/-G4USmXvKhVU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMSTENAFSRioXtIgc7P0WmaoyKBxw/photo.jpg,"The idea is great, however it adds only event to my calendar. I like circle planer idea and that I simply can put work and then event at work and that it reflects on this circle. This has potential but make it simple and functional. I was used to test some apps and for me this was not functional and easy going. Make it that 7 years old kid can use it.",1,0,,2019-09-29 08:13:43,"Hello! We will strive for this! +Please support us with a more positive rating.",2019-09-29 08:52:04,most_relevant,prox.lab.calclock +Uddipana Baishya,https://lh3.googleusercontent.com/a-/AOh14GgNlMyI503jV_2vqiYUOVd_fpAGYxiue4zYMHWLUUY,Love this app. Got the pro version. It will save a lot of my cognitive work! Please fix this bug: The colour of events are set to blue when the event is created using the default colour of the (sub) calendar. Overall the app needs better UX design w.r.t the complex menu for customization and some other things e.g it was hard to figure out how to get separate widget for different calendars. But in terms of functionality it is awesome!,1,8,5.10.3,2019-05-29 16:25:03,,,most_relevant,prox.lab.calclock +Esther Gabrielle,https://lh3.googleusercontent.com/a-/AOh14GjGWcnWjf1ij2xRp6PXvQyUtdJJpny0ZqteahhePQ,"What appealed to me the most about this app was the promise that we get to see the clock on your home screen. However the settings doesn't offer that option... Now it's just another app callendar you have to tap to see what's coming up... I liked the idea I could just turn on my phone and bang! the clock would just simply show me my schedule... Idk if it's a bug or just a false promise, either way it's disappointing.",1,1,5.10.3,2019-07-25 21:32:40,"Hi +To place the widget on the home screen, make a long press on the free space of the home screen and click ""Widgets"". Find the widget and drag it to the home screen. +After that, make a long press on the widget and drag it to the desired size.",2019-07-26 00:24:40,most_relevant,prox.lab.calclock +Jason Haller,https://lh3.googleusercontent.com/-fI7VEIEIGFE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO6HWeVWVdCDO3PHlEL7tZpvpSIrw/photo.jpg,"Purchased the full version which did nothing. Opted for a 24 hour face, again nothing. Tried to add additional events in upcoming days, did not show up at all.",1,3,5.12.1,2019-11-05 22:19:26,"Hello. Events should be for the next 12 hours, then you will see. Please email me at 27applab@gmail.com, I will help with the full version or refund the payment",2019-11-05 22:32:14,most_relevant,prox.lab.calclock +Tarun Srivastava,https://lh3.googleusercontent.com/a-/AOh14GiOdu9ldP-AtwpHLkjZdvPgylQHHrODtMncgF7ugGc,Bought the Paid version. The app fails to get data from anything except Gmail. Good concept but lacks in across provider connectivity.,1,4,5.12.1,2019-11-18 14:16:06,Hello. Please send the purchase code (GPA.XXX.XXX ...) to 27applab@gmail.com,2019-11-18 14:50:54,most_relevant,prox.lab.calclock +Douglas Trevino,https://lh3.googleusercontent.com/-ZQWgexSwqMc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNlSame2VKn3u8GgN-_MpeSv4wDiQ/photo.jpg,"I wanted to like this app. It's a very convenient way to see all the info I need right on the screen, but when I click on the task button I get trapped on the task screen with no way back. I have to kill the app to restart it in the clock visualization mode.",1,1,5.10.3,2019-06-26 23:02:26,"Hi, Please take me a couple of screenshots at 27applab@gmail.com, I will help",2019-06-27 00:08:35,most_relevant,prox.lab.calclock +Vladislav B,https://lh3.googleusercontent.com/a-/AOh14GhQRhU5j9AzKZqaElmR7dDSyqSy9GE07kHkojKk,"Does not integrate month calendar view and 24hrs view within the circular widget graphics: it only shows 24hrs (12hrs in free version). Very restrictive: the widget shows full info for one day, and no info ahead, unless you select a different day. For the days ahead you need to leave the widget, and work in a different environment. Why complicate your life? Find a calendar app you like, stay with it, come back to Sectograph when (and if) the widget fully implements time and task management.",1,1,,2019-05-12 09:18:39,,,most_relevant,prox.lab.calclock +wojtek wolinski,https://lh3.googleusercontent.com/-q6bs_kltP5c/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN-CFXqOF7Y9bFhnXp7L_SXxNOLXg/photo.jpg,"Poor settings options. I tried to set a schedule for an entire day to be more productive. Kept getting emails for each task at the time I scheduled it. I also got notification pop-ups on my MacBook calendar app which seemed to sync itself with my Google calendar. I went to Google calendar to turn it off but it wouldn't let me. I had to delete all 10 emails, hide the notifications and now I will be uninstall this app. It should have an option to disable syncing. Nice idea. Lazy developers.",1,9,5.10.3,2019-07-07 06:38:26,"Included email notifications in the google calendar itself. Turn off notifications for the necessary accounts in the settings of the google calendar application. +Email me at 27applab@gmail.com, if difficulties arise, I will help",2019-07-07 06:44:59,most_relevant,prox.lab.calclock +Darnell Johnson,https://lh3.googleusercontent.com/a-/AOh14GjALFGvajtEz8wDmYlgRakaGXtoRRVxc4HG3RVQNA,"After installing the app, i check to see if my reacurring event would show up. And it did that one time. So minutes after i insalled i had to let it go.",1,0,,2019-11-01 02:11:48,,,most_relevant,prox.lab.calclock +Danniy King,https://lh3.googleusercontent.com/-Vge-mW32mIE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMW4PoY1nEFtotoNfBZmjTsvXylGA/photo.jpg,"Great Concept but executed poorly. I added 2 events between 6.30am and 9.30 but when I tried adding one for 10.30am it would let me, saying it overlapped with another event which it did not. I even checked my calendar and nothing was there for that time. It's now 11.42am, I tried adding an event for 3.30pm and it said its saved but hasn't showed on the clock or anything so it's pretty useless at this point.",1,60,5.10.3,2019-07-22 10:43:30,"These messages are not generated by the Sectograph, but by your system calendar application. Sectograph simply displays the added events from the device’s calendar. It looks like your calendar is behaving strangely. Try an alternative, reliable calendar from Google. https://play.google.com/store/apps/details?id=com.google.android.calendar",2019-07-22 12:40:45,most_relevant,prox.lab.calclock +Suzy Wedley,https://lh3.googleusercontent.com/a-/AOh14GhLMDyyMJlyh75e4CdDCdIWcvmkJ6O6cqT4ofbq2w,Worked fab until recently then I noticed the time in the centre was an hour wrong although when I went into the app it had the time right. So I uninstalled and tried to reinstall but when I tried to put the widget on my home screen it now puts on a blank box that's resizable but invisible otherwise! Very disappointed.,1,15,5.9.1,2019-03-16 08:53:12,"Hi. Your device is killing the widget's background process. You need to give permission for background work and make energy saving settings for the application. Email me at 27applab@gmail.com, I will help",2019-03-16 09:07:04,most_relevant,prox.lab.calclock +Peter Lidström,https://lh3.googleusercontent.com/a-/AOh14GhYwLZ8Fb8C52Gsf9OVbwPu2YlEauZgHpYl7qIJZ6M,"It's pure discriminating to have to BUY an extension to be able to use 24-hour mode! Either make it free or let EVERYONE pay for the app! I would love to try this app because it really looks like it has a really nice concept, but since the devs choose to make just SOME people pay for it, then I'll gladly give it a bad review instead..",1,3,4.4,2018-11-16 00:44:31,"Discrimination is to fill the app with advertising (which overlaps the screen), and then demand money to turn it off. +24-hour mode is an option, without which the app was several years in a row and liked by users. +It works like a 12-hour watch on your hand, and it was originally intended. +Thanks for the star from the sky! Have a nice day, Peter!",2018-11-16 00:57:26,most_relevant,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,I don't know why I can't seem to be able to adjust the hours correctly. when I updated the time to wake up at 7.30 am but the app keep displaying I'm to wake up at 6.30am...what's wrong? wasted my time keep trying to update it. This is good effort for developer to create this app but can pls fix all the issue...may seem minor but to me it's confusing and thus rendering it less useful. tq.,1,1,5.8,2019-01-06 14:39:55,"Hi. +Please send me a couple of screenshots at 27applab@gmail.com, I need to look",2019-01-06 15:12:56,most_relevant,prox.lab.calclock +Al V,https://lh3.googleusercontent.com/-k-oKo3R8LvE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOg71dOPXH2F135HPKP2CnGz7TCfg/photo.jpg,"BESTApp ever super useful the only reason for the bad review, is because I already paid for the pro-version of this app because it's that useful*!!..BUT it's very disappointing This app is not supported by my Google watch its not compatible with my Ax Armani connected smart watch please fix ; it would be very useful to see my appointments and errands displayed on my watch. without having to open my phone to view than thanks alot I'll removed the bad feed back onces its fixed- 5 stars!",1,1,5.10.3,2019-05-15 22:36:47,"Hi, +Please email me at 27applab@gmail.com, I will help",2019-05-15 22:08:47,most_relevant,prox.lab.calclock +Amy Barker,https://lh3.googleusercontent.com/a-/AOh14GhMKKYccfh9L4DAk4tLGtfN54rttwRTU8Ds1OelXQ,So it's just a demo to see if you would like to purchase the app. It says it does this so you can learn how to use the app. BUT it doesn't allow you to do anything because none of my info or calenders can be added to it because it's just a demo. So it's really hard to tell if I like something if I can't do anything on it. Something to think about if you actually want to make money selling an app. Just saying. Thanks for wasting my time while I'm trying to save time.,1,8,5.7.2,2018-10-12 21:05:59,"Hello, Amy +Demo mode is disabled simply. You just need to press the button ""X"" in the lower right corner of the application. Look at the 3rd screenshot on the Google Play app page. +If something went wrong, reinstall the application. (This button should be there) +If write to me at 27applab@gmail.com, I will help with screenshots and advice.",2018-10-12 23:32:33,most_relevant,prox.lab.calclock +ハシーブˑ アクラム,https://lh3.googleusercontent.com/a-/AOh14Gh9H3EUCpnNE8rYAyka9ORqLVBPC6kuU_JQIgTmyQ,Only certain Google calendar entries show in the sectograph making this absolutely pointless. A great idea that is flawed in execution.,1,2,,2019-10-17 05:48:39,,,most_relevant,prox.lab.calclock +Chris Woolley,https://lh3.googleusercontent.com/a-/AOh14Gi6RrW3WGg7IAIEfIGVrcx2GzwHpam0tdsxgsShIw,Uninstalled as calendar events keep appearing under the wrong date. Disappointing.,1,1,,2020-02-06 12:47:19,"Hi, +Please send me a couple of screenshots at 27applab@gmail.com",2020-02-06 12:57:21,most_relevant,prox.lab.calclock +Nayeem Ather,https://lh3.googleusercontent.com/a-/AOh14Gg6QbA-1bwHWyd6SsqjoSBtZMdXDhwqga5dMcto,"it shows you all the features, very helpful and everything and as a final blow... it will tell you that 24 hour widget is only available via in app purchase. This is very very misleading for someone who have given their time, signed in with google, synced their events etc. frustrated.",1,1,5.8,2019-01-05 20:23:10,"I want to draw your attention that all the functions described in the description and in the screenshots of the application are free. You install, relying on this data, and you get it for free. No cheating, no advertising in the application.",2019-01-05 23:56:04,most_relevant,prox.lab.calclock +MinHu pnt,https://lh3.googleusercontent.com/a-/AOh14GgWswTecl9nXPkg4Phva_18YqiPsSpw1yYihait,"Nothing work, I have my calendar prepared for months, and nothing come inside the Sectograph, Even I added new one, nothing appeared",1,1,5.12.1,2019-11-27 00:47:20,"Hi, Go to the ""My calendars"" menu in the application and verify that the calendars you want are selected. +Next, make sure you have events for the next 12 hours. The list below also displays events for 12 future hours. +Please send me some screenshots at 27applab@gmail.com",2019-11-27 01:23:15,most_relevant,prox.lab.calclock +Darin Walker,https://lh3.googleusercontent.com/a-/AOh14GgEB61ZomoI7b4QhQn6Ju2gGZC_006TjdYPvFHNHA,"This program does not work, PERIOD! Installed. Opened. Just sits there at the start screen, frozen and does nothing. No available controls or menu. Nothing. Do not use it. There is nothing to use.",1,0,5.10.3,2019-08-04 10:31:44,"Hello, +Please send me a screenshot at 27applab@gmail.com",2019-08-04 17:21:00,most_relevant,prox.lab.calclock +Steve Goodwin,https://lh3.googleusercontent.com/a-/AOh14GiAZVUSGURhbtSc7N-hWpbBTinDmv8TNL0srtvi,Inaccurate - always says activity overlaps with another activity when it doesn't.,1,1,5.12.1,2019-11-29 10:37:46,This message displays your calendar. Not a Sectograph.,2019-11-29 11:22:17,most_relevant,prox.lab.calclock +Maricela A,https://lh3.googleusercontent.com/a-/AOh14GjAFAJHZubf39GX2ft7tVmudIe9K5zfgDpo0b_vuQ,"Not sure how this app received such high ratings. It is just making you add events in your Google calendar to create a pie. I don't want to add daily tasks to my Google calendar. I thought this app was going to be more efficient, but it's not.",1,4,5.7.2,2018-10-28 04:12:23,"Hello. For example, when I do the installation of a new app at random, and not reading description of the app before install, I understand that this may be not what I want to.",2018-10-28 05:42:37,most_relevant,prox.lab.calclock +Laisa Paxton,https://lh3.googleusercontent.com/-cP-8PdB5Oe8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMaL8IshGiv0xUxNb_63U-OHgtUiA/photo.jpg,I wasted my time and money because it doesn't sync to my watch. I spent hours trying to get it to work. I emailed the developer a few times but it took a few emails before he realized that his program doesn't sync to the gears s3.,1,3,,2019-04-14 20:45:13,"Hi. In description of the application says that only Android Weat is currently supported. In the smartwatch sync settings written ""Android Wear"". Everything is fair, everything is clear. +Smartwatch support is free. Email me, I will make a refund.",2019-04-14 22:47:16,most_relevant,prox.lab.calclock +judith,https://lh3.googleusercontent.com/-jdeiiR71hZk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPni40Q-WRIcn1TYqEEKh67Kpco8A/photo.jpg,Great idea but doesn't show all events for the day; doesn't show events in designated colours (all look the same); doesn't show repeat events! No use really. I'm removing it from my phone.,1,0,,2019-09-06 20:00:02,,,most_relevant,prox.lab.calclock +Soscha Hoen,https://lh3.googleusercontent.com/a-/AOh14GjZjPOms20mflRBK7iorfjQDl1ZP3Tl-cxSNZlWGQ,"installed, looked like what I was looking for, loved the design. but the app makes me use the standard alarms and calander of my phone to put every bit of planning in, and I HATE the calendar on my phone, thats why I came here... to bad",1,4,5.8,2018-12-24 01:11:48,"Unfortunately, your criticism says only that you do not read the description of the application before installation. +For example, when I do a new application installation at random, without reading the application description before installation, I understand that this may not be what I want.",2018-12-24 01:22:32,most_relevant,prox.lab.calclock +sharlyn papica,https://lh3.googleusercontent.com/-dmZ__DW8qEk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOfOMksmGnGFoYqol6G6pQs--uBPg/photo.jpg,"It's not working unfortunately. At first it was reflecting then when I added more items, it's no longer working. It just keeps adding the data in the calendar but no graph is being created",1,52,5.12.1,2019-09-27 08:14:57,"Hello. Please email me at 27applab@gmail.com, I will help",2019-09-27 08:42:40,most_relevant,prox.lab.calclock +Jay Lokhande,https://lh3.googleusercontent.com/a-/AOh14Gg_1KVmp_vjR9p-Jn2LJzn_4HEiP83rU97_dDShoL4,"Dear Developer, I have paid the amount for Pro version. After deduction still app is not get updated to Pro version. I have mail you the same issue & asked you to look into. Expecting immediate responce from you.",1,0,5.10.3,2019-06-09 04:28:56,"Hi, +I answered you by email. Please take a look",2019-06-09 06:34:28,most_relevant,prox.lab.calclock +Joe ex working poor tax payer,https://lh3.googleusercontent.com/-u-MQH58VAJQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPgKQmZmDsAolugu-VIZQqF1eh3Kg/photo.jpg,Worked for 2 days. Now I can't enter anything. I enter date time description hit save it says saved but nothing shows up on the lo k dial thingy. too bad nice. oncept. tho,1,1,5.9.1,2019-03-13 17:23:53,Hi. Check that there are events added to the current 12-hour range. Please send me a couple of screenshots of events that are not displayed on 27applab@gmail.com so that I can tell you more precisely,2019-03-13 22:35:04,most_relevant,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"If you love complex chronographs and a tiny slice of color tells you all, then this app is for you. This is NOT a user friendly interface . Does not play well with 9.0 pie (but not much does).",1,3,,2019-03-17 03:32:30,"Hi. If there are problems with the application, send me a couple of screenshots and a bit of specifics to 27applab@gmail.com",2019-03-17 03:38:11,most_relevant,prox.lab.calclock +tac canz,https://lh3.googleusercontent.com/a-/AOh14Gh6m0J0lfPKCt2lfX8GUT-Jzz01GUhRTPplvKE9Fg,It's a good app but there should be downloadble templates since it would take time and a lot harder to create your own design.,1,0,5.7.1,2019-03-29 09:25:14,Hi. We will do it. We hope for a more positive rating from you :),2019-03-29 10:40:54,most_relevant,prox.lab.calclock +Brad Hembree,https://lh3.googleusercontent.com/-rbd3h5qPxao/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMDat0NOY64DHfs91uKQEupRht8eA/photo.jpg,The wigit doesn't come with the free version. It does the same thing your Google Calendar can do. I was looking for something for time blocking ... this is time flopping,1,0,5.7.2,2018-09-20 19:34:30,"Hello, Brad. The widget is absolutely free. To place the widget on the home screen, make a long press on the screen (on the home screen), click ""Widgets"", find the widget and transfer it to the home screen.",2018-09-20 22:27:09,most_relevant,prox.lab.calclock +Hi Bob,https://lh3.googleusercontent.com/-xJfW1Smj33I/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMKvocNpSnQmzSBOSrESRM3FqXDSQ/photo.jpg,I just bought pro on my tablet 15 minutes ago and then installed Sectograph on my phone and it says I have to buy pro again. What the heck happened with syncing google accounts,1,2,5.12.1,2019-09-21 11:54:32,Hi. Please email me at 27applab@gmail.com,2019-09-21 11:57:08,most_relevant,prox.lab.calclock +Robert van Tol,https://lh3.googleusercontent.com/a-/AOh14GiSdPwIZHGo-mcwhr0WF3rF6rHDPairrO5bCeGk1w,Would love this to work. It says it is working (ticks against my Google calendars). Shows a few. Doesn't show most. Disappointing.,1,0,5.10.3,2019-05-08 03:28:32,"Hi. The widget conceptually shows the events in the current 12 hours. Not in 24 hours. Please email me at 27applab@gmail.com, I will help",2019-05-08 04:35:18,most_relevant,prox.lab.calclock +Artur Iuonoiu,https://lh3.googleusercontent.com/-CXgpcAr6PEE/AAAAAAAAAAI/AAAAAAAAlUc/AAKWJJOAB_H11gBcMNBxw6yXbTgJPBk-tQ/photo.jpg,"Very nice app. Could be very useful, but unfortunately does not sync. :(",1,0,5.10.3,2019-09-17 01:31:12,,,most_relevant,prox.lab.calclock +Athina Angelica,https://lh3.googleusercontent.com/-SUwJig7IkC4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPnuwbQ_l2F0BDWzM6L7a2DGap9AQ/photo.jpg,Looks good but it doesn't sync with events from existing calendars. It only syncs the holiday calendar but not my personal calendar.,1,6,5.10.3,2019-06-03 12:25:42,"Hi, +Please email me at 27applab@gmail.com, I will help",2019-06-03 12:30:12,most_relevant,prox.lab.calclock +Ruxo Zheng,https://lh3.googleusercontent.com/a-/AOh14Gj7C5aMXavt4WT7JhpehroYmZM-whzJHu7uN1KxRw,"No longer work in Android 9. It can""t load meetings from Outlook or even from Google accounts. Interface is badly designed too.",1,2,5.10.3,2019-06-25 00:03:04,"Hello. +Please email me at 27applab@gmail.com, I will help",2019-06-25 02:16:34,most_relevant,prox.lab.calclock +Minwoo Shim,https://lh3.googleusercontent.com/-rbZqCXNsHuk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM8a3ujzlypaQgZz9UGUSGN8Hu-5A/photo.jpg,"the planner does not work well. when I set it as every Monday, it shows different days.",1,2,5.8,2018-12-31 18:58:59,"Hello! +Please send me a couple of screenshots at 27applab@gmail.com, I will help",2019-01-01 01:02:52,most_relevant,prox.lab.calclock +Joshua Samson,https://lh3.googleusercontent.com/a-/AOh14GgyjJvW520vxMwiLQWz79JT2w1TAC-AHlac9N1XKQ,I dont get it in google callender i set a goal to run 4:30 every morning but why on earth is it so that the app sets time on its own and when i edit it it is edited only for one day not the others,1,8,5.9.1,2019-03-08 11:18:06,"Hi. If you edit a recurring event in the Google calendar, it will ask you: do you make a change in the current event or in the entire thread. Email me at 27applab@gmail.com, I will help you if it fails",2019-03-08 11:27:12,most_relevant,prox.lab.calclock +brett zimmer,https://lh3.googleusercontent.com/-x6Wr_ZQYiM4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNxQllh8OVUb_XOM8-bV0oAbKdXaA/photo.jpg,Did not work on my Amazon Fire 8. app just flashed abou a mile a minute and nothing could be selected.,1,2,5.9.1,2019-03-24 11:09:41,,,most_relevant,prox.lab.calclock +Praveen Kumar,https://lh3.googleusercontent.com/a-/AOh14Gg_3bQnyYpcKAYhaOQp6bWslL7Pouulh-sPBxoB3Nc,There is an issue in syncing and the events are lost in few mins post adding it. The app could have had their own calendar without syncing to android calendar. Please improvise,1,0,,2019-02-18 19:03:11,,,most_relevant,prox.lab.calclock +Taylor Shead,https://lh3.googleusercontent.com/a-/AOh14GhgS3s5p08Be1fToF9KrkjN7UV_jnk0lLM-3IIPTQ,Won't show events I add to it. Makes different events random flags or sectors for no particular reason. Really annoying.,1,1,,2019-04-18 08:11:17,"Hi, Taylor! Make sure that the desired calendars are selected in the ""My Calendars"" menu. Also, there must be events for the next 12 hours. Sectors are breaking for a duration of 6 hours and more. This is customizable. Read the FAQ or email me at 27applab@gmail.com, I will answer any questions.",2019-04-18 09:38:32,most_relevant,prox.lab.calclock +karmjit kaur,https://lh3.googleusercontent.com/a-/AOh14GgMbmE_iPo7VOF9fI2bYBugVPR6lpWJY3jjYDGYhA,Uninstalled in 5 minutes. It didn't populate anything that I had on my calender. I even tried to manually put in events and it wouldn't show on widget,1,0,,2019-05-18 03:39:11,"Hi. Please email me at 27applab@gmail.com, I will help",2019-05-18 04:00:23,most_relevant,prox.lab.calclock +sun shine,https://lh3.googleusercontent.com/-YaDBBpCrfkM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO4SHbA8wNcurRTFSEFttT3b2OjMw/photo.jpg,Lnot friendly interface,1,0,5.13.2,2020-01-26 18:13:08,,,most_relevant,prox.lab.calclock +RJ Horner,https://lh3.googleusercontent.com/a-/AOh14GgfvBkjkBu9NugtTgHmumZDtwPQUkESC2qJh2u-bQ,Cant access calendar. Allow access to calendar? Crashes. Waiti or Close app.,1,0,5.8,2018-12-17 22:38:51,"Hello! +Please email me at 27applab@gmail.com, I will help with synchronization.",2018-12-17 23:52:25,most_relevant,prox.lab.calclock +lodo yam,https://lh3.googleusercontent.com/a-/AOh14Gg1p9mrhzNBCnSg3tv3VdCrUIReTDZQd9hFND_6Qw,hard to use. if we could make some changes just by sliding the clock or smthn that would be awesome,1,0,5.10.3,2019-07-31 23:24:34,It is in the plans,2019-08-01 14:01:50,most_relevant,prox.lab.calclock +Marographics,https://lh3.googleusercontent.com/a-/AOh14GhV75KjsKwmsqCMpK8_XPmndVt1D6xB1jc07VGlRA,"the whole app is based on the system calendar app..when adding, showing... tasks..use APIs but personnalize the design..",1,1,5.9.1,2019-03-06 11:53:30,"Yes. The application is designed for calendar users who need a circular shape. All this is written in the description of the application. All honest, without cheating.",2019-03-06 11:59:48,most_relevant,prox.lab.calclock +Marguerite Pear,https://lh3.googleusercontent.com/-TpmVgNAFvAg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPeWvVxEriP4BIwlrdri579zH1PkQ/photo.jpg,"Not a stand alone app. Must use calendar on mobile, my pout was to use it on its own.",1,0,,2019-08-14 15:27:32,,,most_relevant,prox.lab.calclock +Nils Grønkjær,https://lh3.googleusercontent.com/a-/AOh14Gip_acyxcz4vPDGlD0kHrgPIjirIGMw4uupkDZs,No Outlook Calendar support. Most business people use Outlook...,1,0,5.10.3,2019-08-18 09:53:53,"Hello. +There is support. Go to ""My calendars"" and click ""Add more""",2019-08-18 11:06:28,most_relevant,prox.lab.calclock +Anitha Rangasamy,https://lh3.googleusercontent.com/a-/AOh14GiFib_Fya9azp52-I_c46ucRd7FaU0D990fN-IRUQ,Should have an option to add reminders. it only displays events,1,0,5.10.3,2019-06-30 04:36:15,"Hello, +Unfortunately, Google currently does not allow the use of reminders to external applications. No public API",2019-07-01 01:06:59,most_relevant,prox.lab.calclock +Kah Yit Pang,https://lh3.googleusercontent.com/a-/AOh14GjGwlHdD3HyDLCkzh7Lcs_7fNF0Yyrc1whiyj4nwoU,Unable to see the widget on Huawei Honor Play... After adding the widget to my Microsoft launcher... It does not appear...,1,1,5.7.2,2018-11-06 08:04:48,"Hello. Make a long press on the screen and click ""Widgets"". Find and drag the widget to your home screen. +But if the widget is not listed, then the application is installed on the SD card. Go to the list of installed applications and on the application page, click ""Move to device"".",2018-10-05 14:49:26,most_relevant,prox.lab.calclock +Paloma Dalbon,https://lh3.googleusercontent.com/a-/AOh14GhA5-jqUcRkc9XbTdFnOoBKsmvfbZ4TA7_puNI86A,it only lets you use it linked with Google calendar. You can't have 2 separate things.,1,0,,2019-06-21 15:33:08,"Hi. The app is designed for calendar users. +Please read the application description before installing any applications. +And if you do not read the description, be ready that the application may not suit you. +Have a nice day!",2019-06-21 15:37:11,most_relevant,prox.lab.calclock +Yview31,https://lh3.googleusercontent.com/-PdP3qDHjhbQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMf0oAUSv0RXYzwCWLquGDgvXhEzQ/photo.jpg,Deleted app due to not putting things in I was looking forward to using this app I am getting the same issues as sharlyn,1,2,,2019-10-06 14:07:31,"Hello. Please email me at 27applab@gmail.com, I will help",2019-10-06 14:52:18,most_relevant,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Needs to access data on device, events can't be entered manually",1,0,5.8,2019-01-29 10:05:15,"Hello. The application is designed for Google Calendar users. +Please read the application description before installing any applications. +And if you do not read the description, be ready that the application may not suit you. +Have a nice day!",2019-01-29 10:14:05,most_relevant,prox.lab.calclock +sreejesh sreenivas,https://lh3.googleusercontent.com/-LBYQomEgn-0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOzXm4fwcr22ltPfRA-qPUa_gPn2g/photo.jpg,This App is good but the setting is not understandable ... i might not even give it a single star,1,0,,2019-04-24 17:36:51,,,most_relevant,prox.lab.calclock +Andrew DiCola,https://lh3.googleusercontent.com/-ESQhm8klLTQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOg6LiO4eWxbPkspD4PeAQ-spFogg/photo.jpg,i almost tried this. when it opened google calendar so i could create a new event im writing this then uninstalling.,1,0,5.8,2019-01-08 02:01:38,"Hi. Yes, this app is designed for google calendar users. +For example, when I do a new application installation at random, without reading the application description before installation, I understand that this may not be what I want.",2019-01-08 03:21:20,most_relevant,prox.lab.calclock +Darrin Evans,https://lh3.googleusercontent.com/-m8KaHIEZjys/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNVaBLiPBlIWg_r20sRTwnXste_aw/photo.jpg,paid for the pro version but can't keep the changes I make to the settings.,1,1,5.10.3,2019-05-25 18:12:42,"Hi, +If you are talking about a palette. It changes the appearance of the home screen widget (not the clock face in the application itself). After the changes are made, click on the diskette icon in the upper right corner to save. +Have a nice day!",2019-05-25 23:58:02,most_relevant,prox.lab.calclock +Charlie Angel,https://lh3.googleusercontent.com/a-/AOh14GgB01OUNz7Iru3oJR4UTaicqyH76qo4HWh_7KXyyZA,Doesn't Sync Anymore! & I Paid For The Pro Version... 😤,1,0,5.10.3,2019-07-16 01:52:11,"Hi! +The device may have put the widget's background process to sleep. Please email me at 27applab@gmail.com, I will help",2019-07-16 01:57:47,most_relevant,prox.lab.calclock +Arshad Usmani,https://lh3.googleusercontent.com/a-/AOh14GiDpN2HS1ma7mIEuOqPHbgFFPo3IYMTo1Ner4mmRQ,foolish app. steals data. doesn't have anything of itself. takes everything from Google calendar,1,0,,2019-07-28 23:59:42,"If you had read the description before installation, then the fact that the application for visualizing a round chart uses Google calendar events would not be news for you. +About data steals - defamation. +Read to start the privacy policy of the application http://sectograph.com/privacy",2019-07-29 03:29:45,most_relevant,prox.lab.calclock +Anton R,https://lh3.googleusercontent.com/a-/AOh14Gh_jKmhxU-IGp41bPft74cyxkJsAvNWz-jXMHFgOg,"cool idea, but it forces you to use Google calendar",1,0,5.6.2,2019-05-20 17:11:05,,,most_relevant,prox.lab.calclock +Alexis Shambrook,https://lh3.googleusercontent.com/-ra4ONUfq9Xg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNaMHqG2Xrf4YDi17u8TrfcCzICyA/photo.jpg,"Doesn't import anything from my calendar despite my calendar being ticked as a source, so pretty much pointless. I'm not double entering everything.",1,7,5.10.3,2019-05-15 05:21:58,"Hi, +The application works like a 12 hour clock. You must have events for the next 12 hours. Please email me at 27applab@gmail.com, I will be pleased to answer your questions +Have a nice day!",2019-05-15 08:17:15,most_relevant,prox.lab.calclock +Apoorva Pachori,https://lh3.googleusercontent.com/a-/AOh14GiM3BHLes1zOMWpwZ8ZyFIWYS0vWbX_hDfFpLCdsw,"The most complicated routine managing app ever, stay away from this one.",1,84,5.10.3,2019-05-02 13:13:39,"Hi. Please write me any question you are interested in at 27applab@gmail.com, I will help",2019-05-03 01:51:01,most_relevant,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,This app only connects you with google calendar and that's it. Not useful,1,0,,2018-10-05 00:16:34,"Hey. Yes, it works through Google. No cheating. The description of the application says how it works. +But the benefit of one or another tool is a matter of taste. And tastes - an individual thing that can not be objectively evaluated. + +Have a good day!",2018-10-05 01:29:47,most_relevant,prox.lab.calclock +Karen Balkin,https://lh3.googleusercontent.com/a-/AOh14Gh7hENou27Y6g83wrvn_SPNhy78yQ73_sdScGTZ7A,it wouldnt sync to my Google calendar I had it set up and everything,1,0,,2019-09-18 01:56:55,"Hello. Please write to me at 27 applab@gmail.com, I will help",2019-09-18 12:18:52,most_relevant,prox.lab.calclock +Neha Gupta,https://lh3.googleusercontent.com/a-/AOh14Gif-I8dJkOFAeTm2XhinpqirLqdFyfFMAd18RO6,Language of the app doesn't change at all places,1,0,,2020-01-04 21:27:26,"Hi. The application borrows the language that is set in the system. After a change in the system settings or in the settings of the application itself, completely restart the application (swap it from the list of running application)",2020-01-05 00:23:15,most_relevant,prox.lab.calclock +Stve Rdge,https://lh3.googleusercontent.com/-Yqm4j1MeMWQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOMz1QbEg_EvvXgFzq8Tb4kjMpKWg/photo.jpg,Want to customize colors buy the pro version. Not a chance. Thanks for nothing b,1,0,,2019-11-20 07:11:04,,,most_relevant,prox.lab.calclock +Ralph Bigio,https://lh3.googleusercontent.com/a-/AOh14GjcF0s_NwUKXsIJWiepRhzL0rBtyuaSMJI6vRumzg,"Edit: Reply from developer says sorry if they ""offended my feelings""? Really? This isn't a dispute about feelings. To suggest such is a fallacy. Personal attacks are not welcome when discussing dislike of your pay model. Original: Everything is extra. 24h mode, colors, any default functionality will cost you more! Bad model! Because they can add and remove features and make you pay again or more. Let us pay ONCE for the app instead of you being sneaky and greedy.",1,2,5.9.1,2019-02-24 12:45:31,Useless argument about someone else's model :) Have a nice day.,2019-02-24 13:18:23,most_relevant,prox.lab.calclock +SHIVAJI Dora Alla,https://lh3.googleusercontent.com/a-/AOh14GgAlkUOqqsG3_ybTt8ZMWDFxNG9EJweYibUmBf1NQ,"There is no time setting in this graph only dates, that's while.......",1,1,5.11.5,2019-08-06 15:59:37,"He has a time setting, otherwise it would be pointless. Take a closer look, maybe you are adding an event for the whole day.",2019-08-06 16:15:33,most_relevant,prox.lab.calclock +7G Ramki,https://lh3.googleusercontent.com/a-/AOh14GhYVdJN99QIoPoaYia4mdwx2181rq-yL_Zg_YkSYg,Not felt user friendly,1,2,5.13.2,2020-01-02 05:02:10,Happy New Year!,2020-01-02 07:44:27,most_relevant,prox.lab.calclock +Shasiru Anuhara,https://lh3.googleusercontent.com/a-/AOh14Gh9zCQOKCN4lZCM6XKfS7VImSM55IRv2IPzhpuZOA,Really frustating configuration...,1,0,,2020-03-28 04:16:39,😥,2020-03-28 00:53:14,most_relevant,prox.lab.calclock +TOM D,https://lh3.googleusercontent.com/a-/AOh14GjQfXhM2D92BZ-x13GOd4XzmRVKWduFVtbYXGef4Q,demo demo ..not compatible with outlook..,1,5,5.10.2,2019-04-14 14:47:56,"Hi. This is not a demo. The application is compatible with Outlook. Go to the application, ""My calendars"", ""Add more."" Add an Outlook account. If you can't, email me at 27applab@gmail.com",2019-04-14 14:50:29,most_relevant,prox.lab.calclock +smart mrdu,https://lh3.googleusercontent.com/a-/AOh14GhmTEpDIg-eywDeCO2drVZJwlt9vpBcBxE3zol6hA,Unable to understand the planner,1,2,5.10.3,2019-06-18 14:33:50,"Hi! +It works like your wrist watch. +This is the usual 12-hour dial. +But the application takes events from the calendar of your smartphone over the next 12 hours and imposes them on the dial (exactly at the time when your events will take place). +Thus, the application visualizes events on ordinary analogue clocks. +Also, use home screen widget",2019-06-18 14:57:02,most_relevant,prox.lab.calclock +Vaishnavi Soni,https://lh3.googleusercontent.com/-Z6yXt7no23Q/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMND8g16hI9BxE6RNwvEGlQjYsKHg/photo.jpg,In this app it is very hard to use,1,0,,2020-03-12 15:34:14,,,most_relevant,prox.lab.calclock +albert sebin,https://lh3.googleusercontent.com/a-/AOh14Gippt2EjDi1SsQqoDF_8uV7gEU9kwaRinEVi1z_8A,just an unwanted extension of calendar,1,0,,2019-08-12 08:44:45,,,most_relevant,prox.lab.calclock +Pratiwi Kusuma,https://lh3.googleusercontent.com/a-/AOh14GiY2VJhx4dithoIeXzuy3qVjmRV3wT8j4l1yxKQ6w,It's not working :((,1,1,5.12.1,2019-10-07 02:12:17,"Hello. Please email me at 27applab@gmail.com, I will help",2019-10-07 02:56:58,most_relevant,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,very bad .. don't download very complicated app,1,0,,2018-12-21 17:47:06,,,most_relevant,prox.lab.calclock +Leopold Li,https://lh3.googleusercontent.com/a-/AOh14GjYNhbSZ_PUb2fvDVVuoAbBxhsLzS25SYZ3TkAegA,Does not connect with your phone's calendar,1,0,5.8,2018-12-09 21:43:11,"Hi Leo! +The application works well, see reviews from other users. +Please email me at 27applab@gmail.com, I will help with solving this problem",2018-12-09 21:55:33,most_relevant,prox.lab.calclock +adepu mrudhul,https://lh3.googleusercontent.com/-ZwQk37vbXsQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJORiiMnSGHa2r5Ew4LWGZWhsn9E3A/photo.jpg,Unable to use the widget,1,0,5.8,2018-11-18 12:04:18,"Hello. Please email me at 27applab@gmail.com, I will help",2018-11-18 13:03:18,most_relevant,prox.lab.calclock +microwaven,https://lh3.googleusercontent.com/a-/AOh14Gjaem6zT2fGz0zeiNtxh7Tbl18APACdmppRr7XV,I'm sure this would be a great app... if you could actually use it. But it only allows you do add things from another calendar making it useless if you don't have one.,1,0,5.14.1,2020-04-06 16:30:40,,,newest,prox.lab.calclock +Mason Jayden Minion,https://lh3.googleusercontent.com/-S7vmBGHNr_M/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMjNuVKlGHmU1StwONkDbE3QP5zfg/photo.jpg,Cannot use without existing calendar,1,0,5.14.1,2020-04-04 10:43:58,"Hi, +The app is intended for calendar users. +It is written in the description. The application does what it promises.",2020-04-04 13:10:20,newest,prox.lab.calclock +GirlyTodd,https://lh3.googleusercontent.com/a-/AOh14GjztaxKLwNAvv22TW_ANKtHOw3YaCx0j35Rl3SjhzQ,Not what I thought it was... This only blocks out time for your calendars. I was looking for something that would help with daily routines. 😕. I even tried to use the calendar before giving up... But it refused to sync. So it's useless,1,0,5.14.1,2020-04-03 19:53:38,,,newest,prox.lab.calclock +rana abdullah,https://lh3.googleusercontent.com/a-/AOh14GikW8UFzJ4Yq0svF6Rb5ppzf8Syw59hnYywiw,There should be add different time schedule in app not be in mobile colander,1,0,5.14.1,2020-03-31 17:14:34,"Hi, We will do it.",2020-04-02 14:52:49,newest,prox.lab.calclock +Shasiru Anuhara,https://lh3.googleusercontent.com/a-/AOh14Gh9zCQOKCN4lZCM6XKfS7VImSM55IRv2IPzhpuZOA,Really frustating configuration...,1,0,,2020-03-28 04:16:39,😥,2020-03-28 00:53:14,newest,prox.lab.calclock +Denver Naidoo,https://lh3.googleusercontent.com/a-/AOh14GiKHcf2UOzTG_6zBib97eSq85sZG8GXXJHXbx1YuIQ,"Too complicated. It probably has a lot of, but it's not intuitive enough.",1,0,5.14.1,2020-03-22 11:57:02,"""Do the other things, not because they are easy, but because they are hard; because that goal will serve to organize and measure the best of our energies and skills .."" - J. Kennedy",2020-03-22 12:18:03,newest,prox.lab.calclock +Vaishnavi Soni,https://lh3.googleusercontent.com/-Z6yXt7no23Q/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMND8g16hI9BxE6RNwvEGlQjYsKHg/photo.jpg,In this app it is very hard to use,1,0,,2020-03-12 15:34:14,,,newest,prox.lab.calclock +Brandon Hanson,https://lh3.googleusercontent.com/-eCbHWVGJ7oU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN7gmnsE0IuNtNZp6SLXYNhisrLnA/photo.jpg,"Doesnt work on ALL android Wear OS devices. Specifically, doesnt work with the Watch Active2.",1,0,5.14.1,2020-03-07 02:13:18,,,newest,prox.lab.calclock +Eduardo Garmendia,https://lh3.googleusercontent.com/-3nFpcI_dhqg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPKLPiSDu3_fhMka-niIe3HXMG6wA/photo.jpg,No es intuitiva,1,0,,2020-03-05 20:29:36,,,newest,prox.lab.calclock +Google Account,https://lh3.googleusercontent.com/-fxd51mrrukE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPXtL2PVQ_IBvaKzt5kgiJbRLV4mg/photo.jpg,Puts all info in default Google calendar.,1,0,5.14.1,2020-03-03 16:51:31,,,newest,prox.lab.calclock +Amber Lightning,https://lh3.googleusercontent.com/a-/AOh14GgmNb3f0vF2U_puVldzZBDiwdyp8G-_jWsrNOjz_Q,"How it SHOULD work is fantastic and perfect for me. But whenever I have my schedule laid out and planned, the app deletes them or forgets them and i have to start over, only to have them deleted again. I really really want to use it. Why does it make it so unable to?",1,0,,2020-03-02 05:08:45,"Hi, +Please write to me at 27applab@gmail.com, I will give some tips on the application",2020-03-02 05:37:05,newest,prox.lab.calclock +Nomoketuo esreveR,https://lh3.googleusercontent.com/a-/AOh14GgGu68l4HLR6H9-q1QoDVUs5hM07qpjxXrHQAut,"dependant on another calendar app. Why? why do I need to have another app to use this app? I can't add plans or schedule without this app throwing the task to Google Calendar. Besides, I don't use G.C anymore since I once missed an event which I put a reminder through the G.C app because it never reminded me. I read one comment for this app that it never gave a reminder for a scheduled task and yes I have an idea why it happened.",1,6,5.14.1,2020-02-28 07:51:44,"This application uses any calendar application that is on the device. Including the standard application ""Calendar"", which is 100% devices. This app is suitable for users who already plan on the calendar. The application does what it promises in the description and screenshots 100%.",2020-02-28 08:02:20,newest,prox.lab.calclock +Jennifer B,https://lh3.googleusercontent.com/-sx_BoTw7aCM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM96SQ0fOaOi5EDXxyMWWRR4aTuSA/photo.jpg,"Uninstalled...Not at all what I thought it was. This entire app is basically just a fancy way to look at the calendars you already have. Everything syncs both ways, so if you add your actually daily schedule minute by minute to this app you are also cluttering up your calendar(s) with the same things. Would've been neat if it actually had some kind of function, but I don't need to waste sd card space on a calendar viewing app.",1,1,,2020-02-27 17:46:35,I always write the same thing in response to such comments. The application does what it promises in the description and screenshots. Please read application description before installation. Then you insure yourself against wasting time on something that does not suit you.,2020-02-27 21:50:29,newest,prox.lab.calclock +amirahsolehah shokri,https://lh3.googleusercontent.com/a-/AOh14GiKyGc1IKt6NmuzRfMaVIfEAtm1drpaPewdbxbE,Not sync with Google Calendar,1,0,5.13.2,2020-02-19 10:29:10,"Hi. He is for this created. +Email me at 27applab@gmail.com, I will help",2020-02-19 10:38:39,newest,prox.lab.calclock +Mabafasa Al Khuluqiy,https://lh3.googleusercontent.com/a-/AOh14GgzSonYoz4H0fcJm2vQ-HPkxfyTYGB33tpzxHUpeQ,This is Demo Only,1,0,5.13.2,2020-02-18 13:08:11,"This is not a demo. In the lower right corner of the application, the ""Close the demo"" button",2020-02-18 13:35:45,newest,prox.lab.calclock +Kia Caballero,https://lh3.googleusercontent.com/-uJtEXpOqRzU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN774Lk7iuqyxTsuBV-FBYzaSFnJQ/photo.jpg,"I like this app. It's just that whenever I enter something in my calendar, it would not sink right away.",1,0,5.13.2,2020-02-14 22:22:12,Hi. Email me at 27applab@gmail.com I will help,2020-02-14 22:27:05,newest,prox.lab.calclock +Clive Adams,https://lh3.googleusercontent.com/a-/AOh14GgkC3XC7-D76tF9Oqrud4R2TovKLMVwd8rbNg_e4A,"I wanted to like it, iinitially it looked great but it has such a limited window of time view it's no good for planning. A few hours view and that's it. Scrolling hour by hour day by day? Useless. Its sole function appears to be to tell you what you've got coming up in the next few hours which frankly is not much use to anyone as far as I can see. Cloud Cal uses similar circles with a view of the whole month which would be great but sadly the pro version doesn't work so no go there either.",1,6,5.13.2,2020-02-09 21:46:15,"The idea of ​​the application is not just in the circular output of the maximum number of events, but in the intuitive concept of repeating the real 12/24-hour clock. +And displaying the month on a similar dial is utopia. +For multi-day planning, there is a tabular form. +About usefulness for users. +More than 40k of our users like this.",2020-02-10 00:41:58,newest,prox.lab.calclock +Chris Woolley,https://lh3.googleusercontent.com/a-/AOh14Gi6RrW3WGg7IAIEfIGVrcx2GzwHpam0tdsxgsShIw,Uninstalled as calendar events keep appearing under the wrong date. Disappointing.,1,1,,2020-02-06 12:47:19,"Hi, +Please send me a couple of screenshots at 27applab@gmail.com",2020-02-06 12:57:21,newest,prox.lab.calclock +Lauren Wickert,https://lh3.googleusercontent.com/a-/AOh14GjtdadCCRhoQvYCZtBCuOzVsJZJlU-xVvFP-Fo5Rg,"cool visual but doesn't work the way I thought it would. I don't like organizing my hour-by-hour tasks through my calendar because it clutters it up and makes me miss my important events. I wanted to use this app thinking that it would allow me to plan my dialy tasks just through the app. But every time I want to plan an event it forces me to do it through my calendar which I don't like. good concept, but I don't see a reason to use it since it just wants me to use my calendar anyway.",1,82,5.13.2,2020-01-31 19:47:56,This app does what it promises. Please read the application description before installation.,2020-01-31 22:47:36,newest,prox.lab.calclock +Jethro Boey,https://lh3.googleusercontent.com/-vox9_neSuSk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMXC1Ar6clWfkC7bcuzDAAhnLtvSw/photo.jpg,"Used to love it, but the latest version broke it. Couldn't get it to work. All widget face buttons would work for a few seconds then break. Tried all settings, didn't work. Fix it and I'll reconsider my rating.",1,2,5.13.2,2020-01-30 23:57:50,"Hi, +We made the default ability to click on sectors of the widget. +To return, click on the widget button (upper right corner of the widget) and ""Customize widget buttons"". Choose the first option. If the problem persists, write to me at 27applab@gmail.com",2020-01-31 02:11:17,newest,prox.lab.calclock +S. Sander,https://lh3.googleusercontent.com/a-/AOh14GiOiV1_3YHE9kM2DMe-gka3oozlMY9JzLsjcOkxrw,Clicking on the widget doesn't open the app anymore :( :(,1,1,5.13.2,2020-01-28 22:31:25,"Hello. +We made the default ability to click on sectors of the widget. +To return, click on the widget button (upper right corner of the widget) and ""Customize widget buttons"". Choose the first option.",2020-01-28 22:51:28,newest,prox.lab.calclock +Gloria,https://lh3.googleusercontent.com/a-/AOh14GivuAiGLysFHyEQgyPiXuTsKbCdDMFaTNdcv9gY7w,"Good on paper, tried it out and off the bat wouldn't sync any news items, wish it had an option to at least input items directly. Either way didnt work",1,2,,2020-01-28 22:24:46,"Hi, +Please email me at 27applab@gmail.com I will help.",2020-01-28 22:52:52,newest,prox.lab.calclock +sun shine,https://lh3.googleusercontent.com/-YaDBBpCrfkM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO4SHbA8wNcurRTFSEFttT3b2OjMw/photo.jpg,Lnot friendly interface,1,0,5.13.2,2020-01-26 18:13:08,,,newest,prox.lab.calclock +Keely Vaughan,https://lh3.googleusercontent.com/a-/AOh14GhREgp69JFaqhFoprM6odmG_YnKyuZZhtWhcTpV,It gives the option to add a local calendar but doesn't let you use it unless you also give permission to use a Google or Outlook calendar. Kind of defeats the purpose of doing a local-only calendar if I can't actually use it.,1,2,,2020-01-23 06:20:32,,,newest,prox.lab.calclock +Fernando Flores,https://lh3.googleusercontent.com/a-/AOh14GgX6WVTZbm1n7--ll7uZHafnWb8vy72wG9NcmSsGw,"does not work properly , does not update wit hcalendar entries , worst thing , cannot aak my money back!!!!!!!",1,2,5.13.2,2020-01-14 00:32:04,"Hi, Email me at 27applab@gmail.com I will help or refund the payment.",2020-01-14 02:20:15,newest,prox.lab.calclock +Yohanes As,https://lh3.googleusercontent.com/-vBqroyTPCpQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNIX09TcBVOuN6AhqyaT85ekoanvw/photo.jpg,"Won't sync with my Calendar, Sam-Note 10",1,1,5.13.2,2020-01-13 13:14:38,"Hello, +Are there events for the next 12 hours? If not, the dial will be empty. + Go to the ""My calendars"" menu, make sure that the calendars you need are selected",2020-01-13 13:47:05,newest,prox.lab.calclock +Eriss Menace,https://lh3.googleusercontent.com/a-/AOh14GimKANnRHLkqsDRpe4DoLzfhXrN85zLhbYw7PnTYZU,"It has a lot of functionality bugs. Some of my events were not adding, after restaring the app, other events just disappeared etc. I m really sorry i had to delete it because it looked nice and could be very useful but it s not working. Thanks!",1,3,5.13.2,2020-01-05 20:37:30,"Hi. The 12-hour app displays upcoming events for the future 12 hours. Rather, 10 hours ahead and 2 hours back from the clockwise (past events no more than 2 hours ago). +The list under the dial is exactly the same. +Events will not be displayed if they took place more than 2 hours ago or more than 12 hours are left",2020-01-06 01:02:17,newest,prox.lab.calclock +Neha Gupta,https://lh3.googleusercontent.com/a-/AOh14Gif-I8dJkOFAeTm2XhinpqirLqdFyfFMAd18RO6,Language of the app doesn't change at all places,1,0,,2020-01-04 21:27:26,"Hi. The application borrows the language that is set in the system. After a change in the system settings or in the settings of the application itself, completely restart the application (swap it from the list of running application)",2020-01-05 00:23:15,newest,prox.lab.calclock +Ananya Barman,https://lh3.googleusercontent.com/-NoH8loRRbAI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMdE9WC3WqwwAm4NXChu3HPfEmuOQ/photo.jpg,Its really hard to shedule,1,0,,2020-01-03 04:32:01,,,newest,prox.lab.calclock +7G Ramki,https://lh3.googleusercontent.com/a-/AOh14GhYVdJN99QIoPoaYia4mdwx2181rq-yL_Zg_YkSYg,Not felt user friendly,1,2,5.13.2,2020-01-02 05:02:10,Happy New Year!,2020-01-02 07:44:27,newest,prox.lab.calclock +Veluvali Padma,https://lh3.googleusercontent.com/-yK4NGFyORx4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMG4NTZLQyPKEmYRF0GJeVmoKw-4A/photo.jpg,V.V.V.V.BAD,1,0,,2019-12-25 12:44:35,🙁,2019-12-25 13:16:18,newest,prox.lab.calclock +Thiago Guedes,https://lh3.googleusercontent.com/a-/AOh14GgW9CNGFH6faAyKxIiSPqk4PacY8edR3GrvTDOyivk,Instalei de novo e não mudou muito minha ideia. Quero um calendário e não uma ferramenta pra integração com o calendário do Google. tá de sacanagem,1,0,5.13.2,2019-12-17 20:17:36,,,newest,prox.lab.calclock +Steve Goodwin,https://lh3.googleusercontent.com/a-/AOh14GiAZVUSGURhbtSc7N-hWpbBTinDmv8TNL0srtvi,Inaccurate - always says activity overlaps with another activity when it doesn't.,1,1,5.12.1,2019-11-29 10:37:46,This message displays your calendar. Not a Sectograph.,2019-11-29 11:22:17,newest,prox.lab.calclock +MinHu pnt,https://lh3.googleusercontent.com/a-/AOh14GgWswTecl9nXPkg4Phva_18YqiPsSpw1yYihait,"Nothing work, I have my calendar prepared for months, and nothing come inside the Sectograph, Even I added new one, nothing appeared",1,1,5.12.1,2019-11-27 00:47:20,"Hi, Go to the ""My calendars"" menu in the application and verify that the calendars you want are selected. +Next, make sure you have events for the next 12 hours. The list below also displays events for 12 future hours. +Please send me some screenshots at 27applab@gmail.com",2019-11-27 01:23:15,newest,prox.lab.calclock +Stve Rdge,https://lh3.googleusercontent.com/-Yqm4j1MeMWQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOMz1QbEg_EvvXgFzq8Tb4kjMpKWg/photo.jpg,Want to customize colors buy the pro version. Not a chance. Thanks for nothing b,1,0,,2019-11-20 07:11:04,,,newest,prox.lab.calclock +Sythysto,https://lh3.googleusercontent.com/a-/AOh14GgVv4DqxevGHlWybND4Jj1cH8cEIP8dLqaHyst5cQ,24 hour mode is a PRO feature?!,1,0,5.12.1,2019-11-19 22:37:28,Yes,2019-11-20 08:44:04,newest,prox.lab.calclock +Tarun Srivastava,https://lh3.googleusercontent.com/a-/AOh14GiOdu9ldP-AtwpHLkjZdvPgylQHHrODtMncgF7ugGc,Bought the Paid version. The app fails to get data from anything except Gmail. Good concept but lacks in across provider connectivity.,1,4,5.12.1,2019-11-18 14:16:06,Hello. Please send the purchase code (GPA.XXX.XXX ...) to 27applab@gmail.com,2019-11-18 14:50:54,newest,prox.lab.calclock +Nafis Cloud,https://lh3.googleusercontent.com/a-/AOh14GiwWZ7qAZbta7N0n9NqLgCacrmVS58qEbFxseg9C-U,I can't synchronized to my calendar.,1,0,5.12.1,2019-11-16 05:44:25,,,newest,prox.lab.calclock +Catherine Aensland,https://lh3.googleusercontent.com/a-/AOh14GjpOJdwTXNwPLVxCjfu7XJ4JhFAUP0CgHNxapjJ,"Dude. Don't we all want people to pay us for everything we come up with. XXXXXXX Hi! Thanks for the attentive reply. Though this app was not worth the payment or storage space for me, I did find one that works nicely. Looking forward to more replies, hopefully relevant, or none at all.",1,1,5.12.1,2019-11-15 22:44:45,"Only for what is worthily realized and worth it, and only if desired.",2019-11-13 09:02:39,newest,prox.lab.calclock +Jason Haller,https://lh3.googleusercontent.com/-fI7VEIEIGFE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO6HWeVWVdCDO3PHlEL7tZpvpSIrw/photo.jpg,"Purchased the full version which did nothing. Opted for a 24 hour face, again nothing. Tried to add additional events in upcoming days, did not show up at all.",1,3,5.12.1,2019-11-05 22:19:26,"Hello. Events should be for the next 12 hours, then you will see. Please email me at 27applab@gmail.com, I will help with the full version or refund the payment",2019-11-05 22:32:14,newest,prox.lab.calclock +Darnell Johnson,https://lh3.googleusercontent.com/a-/AOh14GjALFGvajtEz8wDmYlgRakaGXtoRRVxc4HG3RVQNA,"After installing the app, i check to see if my reacurring event would show up. And it did that one time. So minutes after i insalled i had to let it go.",1,0,,2019-11-01 02:11:48,,,newest,prox.lab.calclock +Furkan Koç,https://lh3.googleusercontent.com/a-/AOh14Gj99ZEPLJqMhs1mSjUmXy-DtXozk4GlJLbL5aZj,"Most of My Google calendar events doesn't appear in the sectograph app. If i try to delete some events which is appeared, it cannot remove in the app also. I prefer if the app has own calendar so that events that ill creat might able show easier.",1,0,5.12.1,2019-10-25 01:50:50,"Hi Please write to me at 27applab@gmail.com, I will say what needs to be done",2019-10-25 02:47:36,newest,prox.lab.calclock +kiShiva,https://lh3.googleusercontent.com/a-/AOh14GhI6XT_HQzwT0ydU5wkTVmgbycvbvpEFBkzzA19,приложение путает am и pm,1,0,5.12.1,2019-10-21 18:06:50,"Здравствуйте. Пожалуйста, пришлите мне пару скриншотов на 27applab@gmail.com",2019-10-21 22:41:34,newest,prox.lab.calclock +ハシーブˑ アクラム,https://lh3.googleusercontent.com/a-/AOh14Gh9H3EUCpnNE8rYAyka9ORqLVBPC6kuU_JQIgTmyQ,Only certain Google calendar entries show in the sectograph making this absolutely pointless. A great idea that is flawed in execution.,1,2,,2019-10-17 05:48:39,,,newest,prox.lab.calclock +Alhaj Khaled,https://lh3.googleusercontent.com/-nQ54pimsxsg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNfQw2Qf2h0JiffP6iMwsouRIry_w/photo.jpg,wew,1,0,5.12.1,2019-10-13 06:38:37,thank,2019-10-13 07:21:32,newest,prox.lab.calclock +tarun dhushiya,https://lh3.googleusercontent.com/a-/AOh14GiJZCmnwbsyUEzz40-f9FaTLV79chZSNvu_VqP6,Alarm nahi he,1,0,,2019-10-12 13:55:44,"Hello. Please write to me at 27applab@gmail.com, I will help with any question",2019-10-12 14:17:32,newest,prox.lab.calclock +Pratiwi Kusuma,https://lh3.googleusercontent.com/a-/AOh14GiY2VJhx4dithoIeXzuy3qVjmRV3wT8j4l1yxKQ6w,It's not working :((,1,1,5.12.1,2019-10-07 02:12:17,"Hello. Please email me at 27applab@gmail.com, I will help",2019-10-07 02:56:58,newest,prox.lab.calclock +Yview31,https://lh3.googleusercontent.com/-PdP3qDHjhbQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMf0oAUSv0RXYzwCWLquGDgvXhEzQ/photo.jpg,Deleted app due to not putting things in I was looking forward to using this app I am getting the same issues as sharlyn,1,2,,2019-10-06 14:07:31,"Hello. Please email me at 27applab@gmail.com, I will help",2019-10-06 14:52:18,newest,prox.lab.calclock +Maja Čuić,https://lh3.googleusercontent.com/-G4USmXvKhVU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMSTENAFSRioXtIgc7P0WmaoyKBxw/photo.jpg,"The idea is great, however it adds only event to my calendar. I like circle planer idea and that I simply can put work and then event at work and that it reflects on this circle. This has potential but make it simple and functional. I was used to test some apps and for me this was not functional and easy going. Make it that 7 years old kid can use it.",1,0,,2019-09-29 08:13:43,"Hello! We will strive for this! +Please support us with a more positive rating.",2019-09-29 08:52:04,newest,prox.lab.calclock +sharlyn papica,https://lh3.googleusercontent.com/-dmZ__DW8qEk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOfOMksmGnGFoYqol6G6pQs--uBPg/photo.jpg,"It's not working unfortunately. At first it was reflecting then when I added more items, it's no longer working. It just keeps adding the data in the calendar but no graph is being created",1,52,5.12.1,2019-09-27 08:14:57,"Hello. Please email me at 27applab@gmail.com, I will help",2019-09-27 08:42:40,newest,prox.lab.calclock +Hi Bob,https://lh3.googleusercontent.com/-xJfW1Smj33I/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMKvocNpSnQmzSBOSrESRM3FqXDSQ/photo.jpg,I just bought pro on my tablet 15 minutes ago and then installed Sectograph on my phone and it says I have to buy pro again. What the heck happened with syncing google accounts,1,2,5.12.1,2019-09-21 11:54:32,Hi. Please email me at 27applab@gmail.com,2019-09-21 11:57:08,newest,prox.lab.calclock +Karen Balkin,https://lh3.googleusercontent.com/a-/AOh14Gh7hENou27Y6g83wrvn_SPNhy78yQ73_sdScGTZ7A,it wouldnt sync to my Google calendar I had it set up and everything,1,0,,2019-09-18 01:56:55,"Hello. Please write to me at 27 applab@gmail.com, I will help",2019-09-18 12:18:52,newest,prox.lab.calclock +Artur Iuonoiu,https://lh3.googleusercontent.com/-CXgpcAr6PEE/AAAAAAAAAAI/AAAAAAAAlUc/AAKWJJOAB_H11gBcMNBxw6yXbTgJPBk-tQ/photo.jpg,"Very nice app. Could be very useful, but unfortunately does not sync. :(",1,0,5.10.3,2019-09-17 01:31:12,,,newest,prox.lab.calclock +judith,https://lh3.googleusercontent.com/-jdeiiR71hZk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPni40Q-WRIcn1TYqEEKh67Kpco8A/photo.jpg,Great idea but doesn't show all events for the day; doesn't show events in designated colours (all look the same); doesn't show repeat events! No use really. I'm removing it from my phone.,1,0,,2019-09-06 20:00:02,,,newest,prox.lab.calclock +Abdul Khalid,https://lh3.googleusercontent.com/-qSCHgYjEwPw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPGgZ7ClcHiITyGmKm2uOua1oW2OA/photo.jpg,this is very good,1,0,5.10.3,2019-08-24 11:39:57,Then we expect a more positive rating from you :),2019-08-25 01:18:44,newest,prox.lab.calclock +Harjeet Singh,https://lh3.googleusercontent.com/-u_AgykUULhI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPwqf-rl8q1PaYyjdWHAxp-3b9eTQ/photo.jpg,Difficult to understand. Bit complicated,1,0,5.10.3,2019-08-18 16:54:03,,,newest,prox.lab.calclock +Nils Grønkjær,https://lh3.googleusercontent.com/a-/AOh14Gip_acyxcz4vPDGlD0kHrgPIjirIGMw4uupkDZs,No Outlook Calendar support. Most business people use Outlook...,1,0,5.10.3,2019-08-18 09:53:53,"Hello. +There is support. Go to ""My calendars"" and click ""Add more""",2019-08-18 11:06:28,newest,prox.lab.calclock +Marguerite Pear,https://lh3.googleusercontent.com/-TpmVgNAFvAg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPeWvVxEriP4BIwlrdri579zH1PkQ/photo.jpg,"Not a stand alone app. Must use calendar on mobile, my pout was to use it on its own.",1,0,,2019-08-14 15:27:32,,,newest,prox.lab.calclock +albert sebin,https://lh3.googleusercontent.com/a-/AOh14Gippt2EjDi1SsQqoDF_8uV7gEU9kwaRinEVi1z_8A,just an unwanted extension of calendar,1,0,,2019-08-12 08:44:45,,,newest,prox.lab.calclock +deepak dhamija,https://lh3.googleusercontent.com/-3acDtSiWluY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPAwu7QR9IE42IQiPT21BbzXYqyXg/photo.jpg,no use,1,0,,2019-08-07 12:24:04,"Given the diversity of the needs of millions of people, usefulness is a very relative concept.",2019-08-07 12:46:24,newest,prox.lab.calclock +SHIVAJI Dora Alla,https://lh3.googleusercontent.com/a-/AOh14GgAlkUOqqsG3_ybTt8ZMWDFxNG9EJweYibUmBf1NQ,"There is no time setting in this graph only dates, that's while.......",1,1,5.11.5,2019-08-06 15:59:37,"He has a time setting, otherwise it would be pointless. Take a closer look, maybe you are adding an event for the whole day.",2019-08-06 16:15:33,newest,prox.lab.calclock +Darin Walker,https://lh3.googleusercontent.com/a-/AOh14GgEB61ZomoI7b4QhQn6Ju2gGZC_006TjdYPvFHNHA,"This program does not work, PERIOD! Installed. Opened. Just sits there at the start screen, frozen and does nothing. No available controls or menu. Nothing. Do not use it. There is nothing to use.",1,0,5.10.3,2019-08-04 10:31:44,"Hello, +Please send me a screenshot at 27applab@gmail.com",2019-08-04 17:21:00,newest,prox.lab.calclock +Anshu Ashish,https://lh3.googleusercontent.com/-sdeGNpC5kIU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOVxNXihWi8tA66QuU_HQveqG7pDg/photo.jpg,Poor interface.,1,0,,2019-08-03 17:06:43,I like,2019-08-03 19:03:49,newest,prox.lab.calclock +Shrikant Gangamwar,https://lh3.googleusercontent.com/a-/AOh14Gh5i5FSfJ7Jv9L5HT_Mb0EwiXKS5LUDltoVUM0_EQ,not good,1,0,,2019-08-02 08:55:38,Not bad enough.,2019-08-02 14:52:23,newest,prox.lab.calclock +lodo yam,https://lh3.googleusercontent.com/a-/AOh14Gg1p9mrhzNBCnSg3tv3VdCrUIReTDZQd9hFND_6Qw,hard to use. if we could make some changes just by sliding the clock or smthn that would be awesome,1,0,5.10.3,2019-07-31 23:24:34,It is in the plans,2019-08-01 14:01:50,newest,prox.lab.calclock +Arshad Usmani,https://lh3.googleusercontent.com/a-/AOh14GiDpN2HS1ma7mIEuOqPHbgFFPo3IYMTo1Ner4mmRQ,foolish app. steals data. doesn't have anything of itself. takes everything from Google calendar,1,0,,2019-07-28 23:59:42,"If you had read the description before installation, then the fact that the application for visualizing a round chart uses Google calendar events would not be news for you. +About data steals - defamation. +Read to start the privacy policy of the application http://sectograph.com/privacy",2019-07-29 03:29:45,newest,prox.lab.calclock +Esther Gabrielle,https://lh3.googleusercontent.com/a-/AOh14GjGWcnWjf1ij2xRp6PXvQyUtdJJpny0ZqteahhePQ,"What appealed to me the most about this app was the promise that we get to see the clock on your home screen. However the settings doesn't offer that option... Now it's just another app callendar you have to tap to see what's coming up... I liked the idea I could just turn on my phone and bang! the clock would just simply show me my schedule... Idk if it's a bug or just a false promise, either way it's disappointing.",1,1,5.10.3,2019-07-25 21:32:40,"Hi +To place the widget on the home screen, make a long press on the free space of the home screen and click ""Widgets"". Find the widget and drag it to the home screen. +After that, make a long press on the widget and drag it to the desired size.",2019-07-26 00:24:40,newest,prox.lab.calclock +Danniy King,https://lh3.googleusercontent.com/-Vge-mW32mIE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMW4PoY1nEFtotoNfBZmjTsvXylGA/photo.jpg,"Great Concept but executed poorly. I added 2 events between 6.30am and 9.30 but when I tried adding one for 10.30am it would let me, saying it overlapped with another event which it did not. I even checked my calendar and nothing was there for that time. It's now 11.42am, I tried adding an event for 3.30pm and it said its saved but hasn't showed on the clock or anything so it's pretty useless at this point.",1,60,5.10.3,2019-07-22 10:43:30,"These messages are not generated by the Sectograph, but by your system calendar application. Sectograph simply displays the added events from the device’s calendar. It looks like your calendar is behaving strangely. Try an alternative, reliable calendar from Google. https://play.google.com/store/apps/details?id=com.google.android.calendar",2019-07-22 12:40:45,newest,prox.lab.calclock +Charlie Angel,https://lh3.googleusercontent.com/a-/AOh14GgB01OUNz7Iru3oJR4UTaicqyH76qo4HWh_7KXyyZA,Doesn't Sync Anymore! & I Paid For The Pro Version... 😤,1,0,5.10.3,2019-07-16 01:52:11,"Hi! +The device may have put the widget's background process to sleep. Please email me at 27applab@gmail.com, I will help",2019-07-16 01:57:47,newest,prox.lab.calclock +marie zoe,https://lh3.googleusercontent.com/a-/AOh14GiIJaLHoUFqn0VmRWpybvVaT7xoR2OMaDDVnrlk6g,didn't like it.. it's connected to the calinder..,1,0,,2019-07-14 01:22:23,"Hi, Yes, it is intended for calendar users. Please read the description before installing any applications.",2019-07-14 03:14:53,newest,prox.lab.calclock +KOUSHIK VENKAT SANKARASETTY,https://lh3.googleusercontent.com/-DjbykMo3zY4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO2yv6mwRGex7WtVfUBPtTEae4c2g/photo.jpg,too useless,1,0,,2019-07-09 19:21:35,"Given the diversity of the needs of millions of people, usefulness is a very relative concept.",2019-07-10 04:22:14,newest,prox.lab.calclock +wojtek wolinski,https://lh3.googleusercontent.com/-q6bs_kltP5c/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN-CFXqOF7Y9bFhnXp7L_SXxNOLXg/photo.jpg,"Poor settings options. I tried to set a schedule for an entire day to be more productive. Kept getting emails for each task at the time I scheduled it. I also got notification pop-ups on my MacBook calendar app which seemed to sync itself with my Google calendar. I went to Google calendar to turn it off but it wouldn't let me. I had to delete all 10 emails, hide the notifications and now I will be uninstall this app. It should have an option to disable syncing. Nice idea. Lazy developers.",1,9,5.10.3,2019-07-07 06:38:26,"Included email notifications in the google calendar itself. Turn off notifications for the necessary accounts in the settings of the google calendar application. +Email me at 27applab@gmail.com, if difficulties arise, I will help",2019-07-07 06:44:59,newest,prox.lab.calclock +Gareth Smith,https://lh3.googleusercontent.com/-Q3JT_3aCubU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO-XWJFRw7DY0G8BctR_5Y1DzEFOA/photo.jpg,no instructions..,1,1,5.10.3,2019-07-02 11:04:09,"Hi, +Go to the app menu (left curtain) and click ""FAQ"". +Please email me at 27applab@gmail.com, if you have any questions, I will help",2019-07-02 13:02:26,newest,prox.lab.calclock +Anitha Rangasamy,https://lh3.googleusercontent.com/a-/AOh14GiFib_Fya9azp52-I_c46ucRd7FaU0D990fN-IRUQ,Should have an option to add reminders. it only displays events,1,0,5.10.3,2019-06-30 04:36:15,"Hello, +Unfortunately, Google currently does not allow the use of reminders to external applications. No public API",2019-07-01 01:06:59,newest,prox.lab.calclock +Douglas Trevino,https://lh3.googleusercontent.com/-ZQWgexSwqMc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNlSame2VKn3u8GgN-_MpeSv4wDiQ/photo.jpg,"I wanted to like this app. It's a very convenient way to see all the info I need right on the screen, but when I click on the task button I get trapped on the task screen with no way back. I have to kill the app to restart it in the clock visualization mode.",1,1,5.10.3,2019-06-26 23:02:26,"Hi, Please take me a couple of screenshots at 27applab@gmail.com, I will help",2019-06-27 00:08:35,newest,prox.lab.calclock +Ruxo Zheng,https://lh3.googleusercontent.com/a-/AOh14Gj7C5aMXavt4WT7JhpehroYmZM-whzJHu7uN1KxRw,"No longer work in Android 9. It can""t load meetings from Outlook or even from Google accounts. Interface is badly designed too.",1,2,5.10.3,2019-06-25 00:03:04,"Hello. +Please email me at 27applab@gmail.com, I will help",2019-06-25 02:16:34,newest,prox.lab.calclock +Paloma Dalbon,https://lh3.googleusercontent.com/a-/AOh14GhA5-jqUcRkc9XbTdFnOoBKsmvfbZ4TA7_puNI86A,it only lets you use it linked with Google calendar. You can't have 2 separate things.,1,0,,2019-06-21 15:33:08,"Hi. The app is designed for calendar users. +Please read the application description before installing any applications. +And if you do not read the description, be ready that the application may not suit you. +Have a nice day!",2019-06-21 15:37:11,newest,prox.lab.calclock +smart mrdu,https://lh3.googleusercontent.com/a-/AOh14GhmTEpDIg-eywDeCO2drVZJwlt9vpBcBxE3zol6hA,Unable to understand the planner,1,2,5.10.3,2019-06-18 14:33:50,"Hi! +It works like your wrist watch. +This is the usual 12-hour dial. +But the application takes events from the calendar of your smartphone over the next 12 hours and imposes them on the dial (exactly at the time when your events will take place). +Thus, the application visualizes events on ordinary analogue clocks. +Also, use home screen widget",2019-06-18 14:57:02,newest,prox.lab.calclock +This Is Ranit,https://lh3.googleusercontent.com/a-/AOh14Ggaesn4ilkEDv8I7CILFWWEO9W1EX2mP-CsSpvyRd4,can anyone tell me how to use this app?,1,0,,2019-06-12 10:57:12,"Hello. +It works like your wrist watch. This is the usual 12-hour dial. +But the application takes events from the calendar of your smartphone over the next 12 hours and imposes them on the dial (exactly at the time when your events will take place). Use the home screen widget. +(Make a long press on the screen and click ""Widgets"")",2019-06-12 11:07:00,newest,prox.lab.calclock +Jay Lokhande,https://lh3.googleusercontent.com/a-/AOh14Gg_1KVmp_vjR9p-Jn2LJzn_4HEiP83rU97_dDShoL4,"Dear Developer, I have paid the amount for Pro version. After deduction still app is not get updated to Pro version. I have mail you the same issue & asked you to look into. Expecting immediate responce from you.",1,0,5.10.3,2019-06-09 04:28:56,"Hi, +I answered you by email. Please take a look",2019-06-09 06:34:28,newest,prox.lab.calclock +Athina Angelica,https://lh3.googleusercontent.com/-SUwJig7IkC4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPnuwbQ_l2F0BDWzM6L7a2DGap9AQ/photo.jpg,Looks good but it doesn't sync with events from existing calendars. It only syncs the holiday calendar but not my personal calendar.,1,6,5.10.3,2019-06-03 12:25:42,"Hi, +Please email me at 27applab@gmail.com, I will help",2019-06-03 12:30:12,newest,prox.lab.calclock +Estelle,https://lh3.googleusercontent.com/a-/AOh14Gj7xMWMAT6aQRs_Gld6wc4pGWi6g90JRdDjMx4H7Q,its too complicated,1,0,,2019-05-30 11:13:00,😿,2019-05-30 11:29:45,newest,prox.lab.calclock +Uddipana Baishya,https://lh3.googleusercontent.com/a-/AOh14GgNlMyI503jV_2vqiYUOVd_fpAGYxiue4zYMHWLUUY,Love this app. Got the pro version. It will save a lot of my cognitive work! Please fix this bug: The colour of events are set to blue when the event is created using the default colour of the (sub) calendar. Overall the app needs better UX design w.r.t the complex menu for customization and some other things e.g it was hard to figure out how to get separate widget for different calendars. But in terms of functionality it is awesome!,1,8,5.10.3,2019-05-29 16:25:03,,,newest,prox.lab.calclock +Darrin Evans,https://lh3.googleusercontent.com/-m8KaHIEZjys/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNVaBLiPBlIWg_r20sRTwnXste_aw/photo.jpg,paid for the pro version but can't keep the changes I make to the settings.,1,1,5.10.3,2019-05-25 18:12:42,"Hi, +If you are talking about a palette. It changes the appearance of the home screen widget (not the clock face in the application itself). After the changes are made, click on the diskette icon in the upper right corner to save. +Have a nice day!",2019-05-25 23:58:02,newest,prox.lab.calclock +Aarti jaju,https://lh3.googleusercontent.com/a-/AOh14GgNWlMyE8YVYZ6dhH30jnvAlPLzHyBOwGSFgFf3HQ,where is the alarm tone setting in this.,1,0,5.10.3,2019-05-24 10:56:52,,,newest,prox.lab.calclock +Anton R,https://lh3.googleusercontent.com/a-/AOh14Gh_jKmhxU-IGp41bPft74cyxkJsAvNWz-jXMHFgOg,"cool idea, but it forces you to use Google calendar",1,0,5.6.2,2019-05-20 17:11:05,,,newest,prox.lab.calclock +Eugene Burak,https://lh3.googleusercontent.com/-CUPoRBGJLa4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPvFy3X_kU6Fs8AibFA7G9FrONjaQ/photo.jpg,I dont understand anything. it's super complicated,1,0,5.10.3,2019-05-18 14:48:26,,,newest,prox.lab.calclock +karmjit kaur,https://lh3.googleusercontent.com/a-/AOh14GgMbmE_iPo7VOF9fI2bYBugVPR6lpWJY3jjYDGYhA,Uninstalled in 5 minutes. It didn't populate anything that I had on my calender. I even tried to manually put in events and it wouldn't show on widget,1,0,,2019-05-18 03:39:11,"Hi. Please email me at 27applab@gmail.com, I will help",2019-05-18 04:00:23,newest,prox.lab.calclock +Al V,https://lh3.googleusercontent.com/-k-oKo3R8LvE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOg71dOPXH2F135HPKP2CnGz7TCfg/photo.jpg,"BESTApp ever super useful the only reason for the bad review, is because I already paid for the pro-version of this app because it's that useful*!!..BUT it's very disappointing This app is not supported by my Google watch its not compatible with my Ax Armani connected smart watch please fix ; it would be very useful to see my appointments and errands displayed on my watch. without having to open my phone to view than thanks alot I'll removed the bad feed back onces its fixed- 5 stars!",1,1,5.10.3,2019-05-15 22:36:47,"Hi, +Please email me at 27applab@gmail.com, I will help",2019-05-15 22:08:47,newest,prox.lab.calclock +Alexis Shambrook,https://lh3.googleusercontent.com/-ra4ONUfq9Xg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNaMHqG2Xrf4YDi17u8TrfcCzICyA/photo.jpg,"Doesn't import anything from my calendar despite my calendar being ticked as a source, so pretty much pointless. I'm not double entering everything.",1,7,5.10.3,2019-05-15 05:21:58,"Hi, +The application works like a 12 hour clock. You must have events for the next 12 hours. Please email me at 27applab@gmail.com, I will be pleased to answer your questions +Have a nice day!",2019-05-15 08:17:15,newest,prox.lab.calclock +Vladislav B,https://lh3.googleusercontent.com/a-/AOh14GhQRhU5j9AzKZqaElmR7dDSyqSy9GE07kHkojKk,"Does not integrate month calendar view and 24hrs view within the circular widget graphics: it only shows 24hrs (12hrs in free version). Very restrictive: the widget shows full info for one day, and no info ahead, unless you select a different day. For the days ahead you need to leave the widget, and work in a different environment. Why complicate your life? Find a calendar app you like, stay with it, come back to Sectograph when (and if) the widget fully implements time and task management.",1,1,,2019-05-12 09:18:39,,,newest,prox.lab.calclock +Robert van Tol,https://lh3.googleusercontent.com/a-/AOh14GiSdPwIZHGo-mcwhr0WF3rF6rHDPairrO5bCeGk1w,Would love this to work. It says it is working (ticks against my Google calendars). Shows a few. Doesn't show most. Disappointing.,1,0,5.10.3,2019-05-08 03:28:32,"Hi. The widget conceptually shows the events in the current 12 hours. Not in 24 hours. Please email me at 27applab@gmail.com, I will help",2019-05-08 04:35:18,newest,prox.lab.calclock +Dark Moon,https://lh3.googleusercontent.com/a-/AOh14GjVrEdmdCmQgUvE1xCxwZ5kGpjdInqVZHALApLtIQ,not working,1,0,5.10.3,2019-05-05 10:32:14,"Hi, +Please email me at 27applab@gmail.com, I will help",2019-05-05 11:33:14,newest,prox.lab.calclock +Apoorva Pachori,https://lh3.googleusercontent.com/a-/AOh14GiM3BHLes1zOMWpwZ8ZyFIWYS0vWbX_hDfFpLCdsw,"The most complicated routine managing app ever, stay away from this one.",1,84,5.10.3,2019-05-02 13:13:39,"Hi. Please write me any question you are interested in at 27applab@gmail.com, I will help",2019-05-03 01:51:01,newest,prox.lab.calclock +sreejesh sreenivas,https://lh3.googleusercontent.com/-LBYQomEgn-0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOzXm4fwcr22ltPfRA-qPUa_gPn2g/photo.jpg,This App is good but the setting is not understandable ... i might not even give it a single star,1,0,,2019-04-24 17:36:51,,,newest,prox.lab.calclock +Taylor Shead,https://lh3.googleusercontent.com/a-/AOh14GhgS3s5p08Be1fToF9KrkjN7UV_jnk0lLM-3IIPTQ,Won't show events I add to it. Makes different events random flags or sectors for no particular reason. Really annoying.,1,1,,2019-04-18 08:11:17,"Hi, Taylor! Make sure that the desired calendars are selected in the ""My Calendars"" menu. Also, there must be events for the next 12 hours. Sectors are breaking for a duration of 6 hours and more. This is customizable. Read the FAQ or email me at 27applab@gmail.com, I will answer any questions.",2019-04-18 09:38:32,newest,prox.lab.calclock +Laisa Paxton,https://lh3.googleusercontent.com/-cP-8PdB5Oe8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMaL8IshGiv0xUxNb_63U-OHgtUiA/photo.jpg,I wasted my time and money because it doesn't sync to my watch. I spent hours trying to get it to work. I emailed the developer a few times but it took a few emails before he realized that his program doesn't sync to the gears s3.,1,3,,2019-04-14 20:45:13,"Hi. In description of the application says that only Android Weat is currently supported. In the smartwatch sync settings written ""Android Wear"". Everything is fair, everything is clear. +Smartwatch support is free. Email me, I will make a refund.",2019-04-14 22:47:16,newest,prox.lab.calclock +TOM D,https://lh3.googleusercontent.com/a-/AOh14GjQfXhM2D92BZ-x13GOd4XzmRVKWduFVtbYXGef4Q,demo demo ..not compatible with outlook..,1,5,5.10.2,2019-04-14 14:47:56,"Hi. This is not a demo. The application is compatible with Outlook. Go to the application, ""My calendars"", ""Add more."" Add an Outlook account. If you can't, email me at 27applab@gmail.com",2019-04-14 14:50:29,newest,prox.lab.calclock +Mel D'Cruz,https://lh3.googleusercontent.com/a-/AOh14GgbYBtfsxhsqFqd-X64RVGqw_cLRhu3g6oTdi7yPA,took too long to sync. uninstalled.,1,1,5.9.1,2019-03-30 03:33:57,"Hi. Synchronization occurs automatically and instantly. If there are problems with synchronization, write to me at 27applab@gmail.ru, I will be happy to help you.",2019-03-30 04:07:36,newest,prox.lab.calclock +tac canz,https://lh3.googleusercontent.com/a-/AOh14Gh6m0J0lfPKCt2lfX8GUT-Jzz01GUhRTPplvKE9Fg,It's a good app but there should be downloadble templates since it would take time and a lot harder to create your own design.,1,0,5.7.1,2019-03-29 09:25:14,Hi. We will do it. We hope for a more positive rating from you :),2019-03-29 10:40:54,newest,prox.lab.calclock +Shaun Teo,https://lh3.googleusercontent.com/a-/AOh14Gic8-pUQeY0JGff5L18E7qzGHLYeqMY1hMz0e6INg,The widget doesn't auto update after I add an event. Always need to click the manual refresh button. Same goes for when I delete an event.,2,0,5.14.1,2020-03-06 13:00:15,"Hi, +There are problems with the Google calendar application. Please email me at 27applab@gmail.com, I will give instructions. Or go to the FAQ section in the app - to the ""Slow Sync"" item",2020-03-06 13:07:09,most_relevant,prox.lab.calclock +Dalin Williams,https://lh3.googleusercontent.com/a-/AOh14GirtCZW0Z5nVB8yy6vzj7KuNC6hM_g8ovdsEhb8tX8,"I have been using the fully unlocked version of this application for over a year. This is a fantastic app! However, it lacks the capability to sync with outlook calendars. For example, if I have subscribed to my work outlook calendar in Google calendar, the events will not be synchronized with Sectograph. This would be fine if this was the documented behavior of this application. However, subscribed-outlook calendars are selectable from the calendar selection menu...",2,18,5.13.2,2020-02-10 21:56:14,,,most_relevant,prox.lab.calclock +Karen Browning,https://lh3.googleusercontent.com/a-/AOh14GjCr_X12Evc-fpTWrSf8gfTxR0f78yj4XDo_Cpo1XU,"After last update the widget became very small, and clicking on it does not open up the full app. Also won't sync to my calendar anymore. Uninstalling.",2,42,5.13.2,2019-12-21 03:18:10,"Hi, +We made the default ability to click on sectors of the widget. +To return, click on the widget button (upper right corner of the widget) and ""Customize widget buttons"". Choose the first option. +To enlarge the widget, long press on it and drag it out. +By synchronization I can help if you write to me in the mail at 27applab@gmail.com",2019-12-21 04:31:43,most_relevant,prox.lab.calclock +Whitney Simmons,https://lh3.googleusercontent.com/a-/AOh14GiLGuPQZO5pyQ20LmGkEMG4t0sKRPddzW_n_oTwzA,"Ok good to know, thanks! It still won't show all of my calendar items on the clock. I'll put some on and it will take them off as I add more.",2,0,5.13.2,2020-01-07 06:54:30,Hi. There is no bug The application displays upcoming events 12 hours ahead and not per day. On this evening of the 10th day you will already see the events for tomorrow. You can send me a screenshot at 27applab@gmail.com I tell you more precisely,2020-01-06 07:52:16,most_relevant,prox.lab.calclock +Quinntanna Calleo,https://lh3.googleusercontent.com/a-/AOh14Gj_J2t4cs3bASRDdQ4QZTsCk7kBWnDXMqXGFAQH1Q,It was a good app until this most recent update now my widget doesn't work it's not syncing with my calendars I'm losing dates appointments,2,10,5.13.2,2020-01-01 22:57:25,"Hello, Check that in the menu my calendars the necessary calendars are selected and there are events for the current 12 hours. If nothing, reinstall the application. We had no messages from users with widget synchronization problems",2020-01-02 01:11:05,most_relevant,prox.lab.calclock +icarus,https://lh3.googleusercontent.com/a-/AOh14Gg6YpdbUo-UxkybVMCweFoLZLilNJyc_7w6nbHMjA,"very complex ui, it needs Google calendar and doesn't work without it. I needed a app like this but as a daily planner! not just showing the calendar events from Google Calendar stupidly on a clock.",2,0,,2020-03-07 11:01:54,"It works with any calendar. First of all, with the Calendar system application, which is available on 100% devices. But you can optionally use Google Calendar or another calendar application.",2020-03-07 11:30:52,most_relevant,prox.lab.calclock +Samm Davidson,https://lh3.googleusercontent.com/a-/AOh14GhCUJ6zS8FHqsz5go32mrR3m656ZHLP_b1zaEk,"This is exactly the app I was looking for to visual my day, as the clock face just makes sense. However, only being able to add to the schedule via external calendar apps makes this completely unusable. I tried to use it to better manage my routine, but my calendar app became so full of menial tasks that I was unable to see my upcoming appointments and events of most importance. It has amazing potential, but is currently only good for basic planning. Very disappointing.",2,6,5.12.1,2019-11-29 17:46:31,,,most_relevant,prox.lab.calclock +Sam Smith,https://lh3.googleusercontent.com/a-/AOh14Gjue98xqB-fiEfzjsgVE798zB97gwX-4QAv7_mPAg,"I'm going to start by saying who segments their hours on a clock into fifths? That's not standard and just annoying. Second, why can't I add events from the app? It ALWAYS redirects to Google Calendar, so what is this app even good for? I'll just use my calendar, AND it will be easier......",2,0,,2019-10-10 15:24:10,,,most_relevant,prox.lab.calclock +Samantha Menza,https://lh3.googleusercontent.com/a-/AOh14GijPh7FaS8NFBRvQVU6hWB1Sm3sW3bxyozZHGqjew,Can't sync calendar unless you pay which makes the unpaid version useless to me. I'm not going to go through my entire calendar and add my events by hand to a second calendar. Pointless.,2,0,,2020-03-05 16:59:07,"The purchase does not affect the synchronization. If there are problems with synchronization, please email me at 27applab@gmail.com, I will help",2020-03-05 22:00:33,most_relevant,prox.lab.calclock +Jade L,https://lh3.googleusercontent.com/a-/AOh14GiHl2RXlVY62JGlP_UrLfflSZ-mmnS31DJ9Mb2G8A,"Events won't show up on the clock after I adjust the time of the event. They show up, and then I change the time and they disappear. So, so frustrating. :( I wanted to save time, not waste it. :( Why? Why?? ? ?? :( Why?? 🤦‍♀️🤦‍♀️🤦‍♀️ :( 🤦‍♀️ I used this app for 5 minutes and then hit a roadblock. Why?",2,0,5.12.1,2019-11-19 02:30:54,"Hello. Please email me at 27applab@gmail.com, I will help",2019-11-19 03:03:39,most_relevant,prox.lab.calclock +Keaton Aymar,https://lh3.googleusercontent.com/a-/AOh14GiouN4xaal2Ai8SK95XpmL2omNo7BxisqYVTy7s,Wish it didnt have to connect to the calandar. I wanted to keep my phones calandar widget separate from this but its impossible. Disappointing.,2,0,,2020-03-10 14:34:39,We will soon make internal storage optional,2020-03-11 14:34:37,most_relevant,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"This app doesn't show all the activities of my Google Calender, so to me the app is quite useless. I even checked all the available calendars to make sure the settings were right. However, the concept seems to be great for people with a busy agenda, but since it has no use I unfortunately had to delete this app.",2,7,5.8,2018-11-12 20:40:52,"Hello! +The application should display all calendar events within 12 hours, which are currently displayed on the widget. Please send me a couple of screenshots at 27applab@gmail.com, I will help",2018-11-12 22:10:54,most_relevant,prox.lab.calclock +Nomad Wolf,https://lh3.googleusercontent.com/a-/AOh14GgMxwk_0vC1vF_rFSnpr4WjEX_Zms0hHalGfv4pRA,"The app itself is really nice. I like how the widget displays my schedule for the day, it.gives me a very nice grasp of my time. The bad thing is that it slows down my smartphone, I have a S9, and it drains a lot of battery. It makes my phone lag and ""stutter"" when I try to open it. I uninstalled ans reinstalled apps to check my theories, so I uninstalled this one, the phone was doing so much better. And I even PAID for the Pro version!!!",2,0,,2019-04-04 22:42:59,"I absolutely disagree with what you said. Charge consumption close to 0%. It does not even have a background process, but updates the time 1 time per minute along with the clock. If you go with the application information, in the section the battery will be 0%. Attach a link to the screenshot of this page to the comment to confirm your words",2019-04-04 22:55:49,most_relevant,prox.lab.calclock +Simeon Simeon,https://lh3.googleusercontent.com/a-/AOh14GhaQXX12Hf-iKyz_-a-I0kd1qnuy5GtZWMQU1s8uQ,Not in sync with my google account. Bad in regards to automatically getting what I planned and plus I can't use it when i am using my PC!!! But thumbs up for this Sectogragh the idea is brilliant. Please work on updates because very soon i might not use it if i still have to re-enter all my days task and activities!!! It should be able to get data from my google account and i should be able to use it on PC. PC is really perfect use for this kind of app!!!,2,2,5.10.3,2019-08-26 16:26:56,,,most_relevant,prox.lab.calclock +Sunday Kemp,https://lh3.googleusercontent.com/-kXv9enMQt_I/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNaPyYLPeypuDb_OyUdjf6yzr_xkA/photo.jpg,"This app was exactly what I was looking for. a visual of the day in clock form. Only issue is, if I add something to the clock it adds it to my calendar. I don't want that. I want an app where the calendar and app are separate. This was supposed to be for studying and exercise. I didn't want to have to add those things as into my ready packed calendar. it was a fast uninstall. Iif there was an option to disconnect the two, I'd reinstall.",2,0,,2019-07-29 16:58:33,"The application is designed for calendar users. +This is written in the description. The app does what it promises. +It is normal that the application does not fit all. Everyone has their own tasks and needs",2019-07-29 20:35:47,most_relevant,prox.lab.calclock +music cater,https://lh3.googleusercontent.com/a-/AOh14Gh2ULToilINLIs_EDxpkibU1rewpxhxEWx11VP8,Not a fan - liked the idea of diving into main areas and percentage of your day it occupates but what flipped me up was scheduling a reminder - daily. I started getting a morning reminder of the task for the next day schedule for i.e 7pm!!!!! -i mean what about task i have for this day ahead!!! i don't need to be notified 27hrs ahead of my daily rutine - seriously🤮,2,0,,2019-05-17 18:41:14,,,most_relevant,prox.lab.calclock +Kaivalya Dance,https://lh3.googleusercontent.com/a-/AOh14GhV_OpiZklujzHVO5-Svr0aS5futgRyjNgKEKnjIg,"Really beautiful and great idea. It is unfortunate for anyone who doesn't buy into all things Google and don't use Google Callander. In this day, building your app to only one service is not a good idea unless it's for the iPhone. Now if I could get my work calendar on this app, wow, what a great way to visualize your day. Just playing with the demo showed me the power of this style.",2,17,5.8,2019-01-07 21:19:06,,,most_relevant,prox.lab.calclock +William Seneshen,https://lh3.googleusercontent.com/a-/AOh14GhYi5wIpxagnqWByEPDktBRSt4EuxkUy5t45Ok4rg,"I granted this app full access to my google calendar, but none of my events show up in the diagram. It remains completely empty except for national holidays (like National Tartan Day on April 6th. Yay!) I've given this two stars instead of one because this •could• be awesome. The design is great.",2,2,5.10.2,2019-04-03 03:37:52,"Hi, William! The application works as a 12-hour dial. You must have events for the next 12 hours. If the problem still persists, please email me at 27applab@gmail.com, I will help",2019-04-03 08:14:55,most_relevant,prox.lab.calclock +Shashwat Khare,https://lh3.googleusercontent.com/a-/AOh14Gg9Lebh53qgYf1xGyVESG8jERDtuuIxGAmYBpsM,"This app doesn't seem to show multiple calenders for the same google account. P.S. In my Google calendar, the desired calendar has got Sync enabled still the issue exists. P.S. 2- In the My Calenders menu, it is not even showing the second calender which I have made for the same google account.",2,0,5.10.3,2019-08-24 12:32:39,"Hi. And in Sectograph, in the ""My Calendars"" menu, is a calendar selected? Check that it has events for the next 12 hours. +If it does not help, go to the device settings and to your account settings. Press the sync button and wait for it to finish.",2019-08-20 04:40:49,most_relevant,prox.lab.calclock +Takuge,https://lh3.googleusercontent.com/a-/AOh14Giwvm3Xt5vkTKTdT-y_1SiVOP7LAeqF7eFWU5H0,"i love the ideia but the executation is not good, i want to put reminders for every day and know what i need to do in a clock like that, this app needs his own callendar and clock for we customize without messing up anything on the original apps in the phone, this need a every day reminder, routine and stuff",2,4,,2019-07-12 03:11:04,,,most_relevant,prox.lab.calclock +Dheeraj Yadav,https://lh3.googleusercontent.com/a-/AOh14Gjgvbmx0pisXcNQS2wLvq3H3PB4qzDoVEwp5fFiZQ,"Correct idea worng execution. The watch face UI cannont be operated like manually moving clock hands. The time zone stick moves at an interval of 1hr, I wanted to set it at any choosen time and add reminder from there. Big flop was it did not read my calender event and yes I did give necessary permission. phone - one plus 7 OS build- Oxygen OS 9.5.5 GM57AA Further Action- Uninstalling Outlook- Would like to try it post improvement",2,161,5.10.3,2019-06-18 09:05:04,,,most_relevant,prox.lab.calclock +Abdul Rahman Shahab,https://lh3.googleusercontent.com/a-/AOh14GiwijddnR9LneKyaa2PRE7gei7HNqH6fCiAR2pr,"I have problem with purchasing the pro version. When I click on ""Buy Pro"" button, it says ""Already purchased. Please restart the app"". I have not yet purchased it though, and nothing happens when I restart the app.",2,9,5.12,2019-09-19 16:37:54,,,most_relevant,prox.lab.calclock +P K,https://lh3.googleusercontent.com/-CSjWsQG1CCI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP6TqvslxRrQzL6E41TtPZrBzRjTQ/photo.jpg,"It would be a great app if it had an option to use it without syncing it to your calendar like TimeTune. I don't want all my tasks to show up on my calendar, and their solution wasn't working.",2,16,5.9.1,2019-02-26 13:44:42,"Hello! Please email me at 27applab@gmail.com, I will help",2019-01-31 05:57:59,most_relevant,prox.lab.calclock +Siddharth Das,https://lh3.googleusercontent.com/a-/AOh14GjlG1I6DnOqTJlpvUlFFgngmt2qxvYeoCoYGHiLnw,otherwise the app is good but i bought the full version and did i exepet to get customization fratures atleast give to feature to mark different sectors with different colours... very disappointed ... you guys should consider making the user interface less complicated...,2,6,5.9.1,2019-02-28 13:37:31,"Hi, +Please email me at 27applab@gmail.com, I will help",2019-02-28 14:43:12,most_relevant,prox.lab.calclock +Jonny Wilson,https://lh3.googleusercontent.com/-Z0WH7kOwk3o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNm7abvCwSs7PCQo7WxxsqKYzOy2g/photo.jpg,Great idea in principle but it's so hard to work out what's going on that that so far it's useless :-(,2,3,5.12.1,2019-11-02 13:36:46,,,most_relevant,prox.lab.calclock +Jason Cazes,https://lh3.googleusercontent.com/a-/AOh14Gim_rBVJVu1GvLxPvG1e3SM6V4TG6d3VeYeO-YvlTc,"Cool concept, but unusable for Google business users because all of your coworkers calendars are selected by default and there's no bulk ""deselect all"" button.",2,15,5.12.1,2019-09-22 19:40:15,"Hi +In the ""My calendars"" menu, you can turn off / leave any number of calendars to display. In pro mode, this can also be configured for each copy of the widget specifically. If I misunderstood you, write to me at 27applab@gmail.com, I will try to help",2019-09-22 21:12:51,most_relevant,prox.lab.calclock +Nick Joint,https://lh3.googleusercontent.com/a-/AOh14GieaWE9FMGWyErRxX1zVyN2dilk9GqNVsd_HH_W,"There's no simple reminders or ability to add to do task, everything has to be added via calendar which is irritating me...app is useless right now",2,7,5.8,2019-01-27 12:01:11,,,most_relevant,prox.lab.calclock +Jaclyn Zarrella,https://lh3.googleusercontent.com/-mUaynb2oGQE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMZ7ptmdPn-jgMDA9Je-3wCdAHNIQ/photo.jpg,Doesn't let you choose specific calendar events to ignore. No way to track how you actually spent your time if it didn't match your calendar,2,7,5.8,2018-11-26 14:33:45,"There is still a lot of things. Do not worry, over time, we add everything. ""Cities are not built right away"". Have a good day, Jaclyn!",2018-11-26 14:37:51,most_relevant,prox.lab.calclock +trending technology 2019,https://lh3.googleusercontent.com/-r08l3OVkixQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPTZtlqV9b3T2meVjoMan3-lXsYIQ/photo.jpg,useful for organizing the activities of the day but don't have setting on sound to notify the time of activity,2,4,5.9.1,2019-02-07 07:45:02,"Hi. +Go to the device settings - ""Sounds"" - ""Notification sounds"" - ""Calendar notification"". Adjust the sound. +Have a nice day!",2019-02-07 07:51:52,most_relevant,prox.lab.calclock +G. MacKenzie Strickland,https://lh3.googleusercontent.com/a-/AOh14GjlBA8a_x3TZ0a3rXwJ8ahdT1WRoDsKjxNVZYhoiA,"No graph showing - shows the task sector on phone app, but on watch its just the bare bones time with no events charted.",2,1,5.8,2018-12-18 16:51:38,"Hello. +You need to enable synchronization with a smart watch in the application settings. After that, the smart watch will duplicate the widget on the smartphone. Email me at 27applab@gmail.com, I will help",2018-12-18 21:54:28,most_relevant,prox.lab.calclock +Amanda Wass,https://lh3.googleusercontent.com/-0y3_UXZookA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOP2UCN88MgnOkakbPzkh75p7B4Kg/photo.jpg,"Not a single event, appointment, meeting, etc...is showing up. going to uninstall after rating.",2,4,5.10.2,2019-04-18 10:33:33,Do you have events for the next 12 hours?,2019-04-18 10:51:53,most_relevant,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,It only works when linked to another calendar app....and it's difficult to change the time from am to pm.....,2,0,5.7.2,2018-11-04 02:06:16,,,most_relevant,prox.lab.calclock +Leila Ahmadi,https://lh3.googleusercontent.com/-sXHt-kRyZbw/AAAAAAAAAAI/AAAAAAAAAvY/AAKWJJPATVYmei5SDQCeTIHFKd1OXcIhSg/photo.jpg,"I like the idea, but it's not working with Outlook calendar properly. This a big drawback for me.",2,0,5.7.2,2018-09-20 19:47:37,"Hello! +The application does not deceive anyone. This tool is created for users of the google calendar and this is written in the application description.",2018-09-20 23:39:43,most_relevant,prox.lab.calclock +C Clare,https://lh3.googleusercontent.com/-9BBgXU7FOY0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPNF3dLE_EaNpOiLiY_QxI6FrNMdg/photo.jpg,Couldn't get the rest of my calendars to appear. Feedback help wasn't clear as well. Uninstalling,2,1,5.7.2,2018-10-09 05:26:33,"My instructions that I sent you were simple enough. +I am 100% ready to help you solve your problem. But it seems you yourself do not want this. +Thanks for the 2 star.",2018-10-09 05:54:50,most_relevant,prox.lab.calclock +Allina Tracey,https://lh3.googleusercontent.com/a-/AOh14GjBbHEcn1mE2TdwFH5g4p6EfPO0T05PVaQFRyP7BQ,the current day shows events for the next day and seemingly no option to change it. very annoying.,2,11,5.10.3,2019-05-22 02:29:44,,,most_relevant,prox.lab.calclock +Caro H,https://lh3.googleusercontent.com/-HUvj0ToNU9Y/AAAAAAAAAAI/AAAAAAAAIJ0/AAKWJJPFadsyaz0Pu7JsZpi_qTU2r2__gA/photo.jpg,I really like how amazing it is on my phone. But I'm so disappointed to see that it can't be downloaded or visualized on my new galaxy active watch...,2,2,5.12.1,2019-10-07 17:07:53,,,most_relevant,prox.lab.calclock +nightlady2001,https://lh3.googleusercontent.com/-pzKErtWkE7g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMF5BYA7D55koTWPYyA5w7k6trlRA/photo.jpg,tutorial did not explain much and too confusing to figure out the benefit of using this app.,2,2,5.9.1,2019-03-04 04:59:40,"Hi! +Please email me at 27applab@gmail.com, I will help",2019-03-04 07:00:15,most_relevant,prox.lab.calclock +Harshit Paliwal,https://lh3.googleusercontent.com/a-/AOh14GjexEB8uDwlM1LASPnGsBpHlu9iQx10BJBLhdPR2Q,Was working fine before. . But it's not working now..not registering my events,2,1,,2019-10-07 19:09:39,"Hello. +Try to add events not through the Google calendar application, but through the standard calendar application. +The Google Calendar app has started to sync with a delay recently.",2019-10-08 00:15:01,most_relevant,prox.lab.calclock +Sam Hughes,https://lh3.googleusercontent.com/a-/AOh14GgLT28vFMOY8Pmy8C93J6BVz2hfatx3FpjqgtcVTQ,"I dont like that it only works with calendar. i dont want a calendar even called ""sleep"" just to keep it on the graph",2,8,5.10.3,2019-06-04 15:09:45,"Hi, While the application works with only calendar. We will soon add a proprietary repository for tasks, independent of the calendar. It will be optional",2019-06-04 15:14:42,most_relevant,prox.lab.calclock +Shelley Storm,https://lh3.googleusercontent.com/a-/AOh14GgcYn0umMlSdkO5QZIgHWfOKrbqcaYNfHT7H_-zwQ,not exactly useful. was hoping it would be easier to see or more customizable.,2,2,5.9.1,2019-03-31 12:24:29,"Hi, +Please email me at 27applab@gmail.com, I’m happy to help you set it up.",2019-03-31 15:31:53,most_relevant,prox.lab.calclock +Kylie Choong,https://lh3.googleusercontent.com/a-/AOh14GjkPTOxz_JfoFXSI9YPptbitAz6tiqtGt7yomemrA,"Certain of the event doesn't show up in the clock, just recorded in my calender.",2,0,,2019-08-26 22:44:06,,,most_relevant,prox.lab.calclock +Frank Obose,https://lh3.googleusercontent.com/a-/AOh14GizRmH9zLWMPOoLxefxnyuxMu78TydRjyo_exrm,I like this app but it's always saying it has stopped on my phone,2,0,5.8,2019-02-06 03:40:21,,,most_relevant,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I loved this app, but after the new update I am unable to use the widget. Uninstalled.",2,1,5.8,2018-11-11 15:52:51,Hello. Perhaps crookedly updated. Just reinstall the app. This should help.,2018-11-12 10:23:56,most_relevant,prox.lab.calclock +Pradhumn Singh,https://lh3.googleusercontent.com/a-/AOh14Gi50cxF1kYLQykeWE7BYekJW4Jtq9Fm3tpCIX2wBrM,"No option for reminders, it doesn't show reminders of my google calendar. And i dont wanna create events for my daily habits LOL",2,0,5.10.3,2019-07-27 14:26:31,"Hello! We would love to add reminders, but they cannot be added at the moment. +Google has not yet released a public API for external applications, for working with reminders. We expect it to happen sooner or later.",2019-07-27 14:29:28,most_relevant,prox.lab.calclock +Mohit Saini,https://lh3.googleusercontent.com/a-/AOh14GiW1Q1OrsnGAL6mtVa_wFA1teoy6HyTOo6-NuaFRw,"Hello Team, I am not able to set different colours for different sectors. Could you please help me show how its done?? I purchased your app in light that It will give me option for above.",2,1,5.9.1,2019-03-16 07:33:33,Hi. Please email me at 27applab@gmail.com,2019-03-16 07:34:26,most_relevant,prox.lab.calclock +Jay Kay,https://lh3.googleusercontent.com/-J9gE9mI56po/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNFFTPuPGGYGDHgyttmXuEx45W4Zg/photo.jpg,Wish it didn't force me to use Google calendar. I wanted to start a new calender off of this app,2,0,,2019-12-01 21:52:56,,,most_relevant,prox.lab.calclock +A sword,https://lh3.googleusercontent.com/a-/AOh14GikDn_7vloDujNFJ0-gRRlpibi4U-8Qpa0EWcoA,when adding a task it transferring you to Google calendar then after adding the event it doesn't appear on the widget?,2,0,5.10.2,2019-04-21 15:33:54,Hi. Please email me at 27applab@gmail.com I will help,2019-04-22 00:08:08,most_relevant,prox.lab.calclock +Amornrat P,https://lh3.googleusercontent.com/-qg2H18SrH0w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPocCi0eV1zqlGMZQhl0ALq7EB46g/photo.jpg,hi i can add just 1 event why i try to add more in google calendar it shown but in this app it's not show up,2,0,5.8,2019-01-15 13:11:46,"Hello. Please email me at 27applab@gmail.com, I will help",2019-01-15 13:43:16,most_relevant,prox.lab.calclock +Timur Muminov,https://lh3.googleusercontent.com/a-/AOh14Gi0Sl-KKenwvemSL8soTSgA5pDn5gOb_HJGycowUQ,Does not support more than only one Outlook calendar,2,2,5.10.3,2019-09-04 04:31:56,"There is support. Go to ""My calendars"" in the app and click ""Add more."" Choose Outlook",2019-08-21 05:44:30,most_relevant,prox.lab.calclock +Lee Alexander,https://lh3.googleusercontent.com/a-/AOh14Gi3rxT9EYNsictoA1ZNe9V5yTP3Yxa3j0LlLfEZUmA,I'm just not finding time to work with this app. So by no means the star rank im giving the apl is just a TEMP ranking.,2,0,5.10.3,2019-07-22 04:47:05,"Hello. If you will have any questions, please email me at 27applab@gmail.com",2019-07-22 07:06:26,most_relevant,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,doesn't sync to my smartwatch 😞,2,0,5.9.1,2019-03-29 02:40:53,"Hi. Please Email me at 27applab@gmail.com, I will help",2019-03-29 03:02:40,most_relevant,prox.lab.calclock +Alessandro Nero,https://lh3.googleusercontent.com/a-/AOh14GiTSTDS3l8Ves19HmediZ12xIQNMPvcfdXDlwMO9g,Once installed the app was showing another time zone.,2,0,,2018-12-03 18:15:43,"Hello! Please email me at 27applab@gmail.com, I will help.",2018-12-03 22:26:46,most_relevant,prox.lab.calclock +Karolina Mach,https://lh3.googleusercontent.com/-yFH-zz2RasE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMifkUF61lbP2cID_uTXStOgGJKhQ/photo.jpg,The widget is feezing after every night,2,1,5.10.3,2019-06-27 04:59:17,"Hi, +At night, the power saving mode works on the device and the applications fall asleep. Please email me at 27applab@gmail.com, I will help set it up",2019-06-27 06:37:15,most_relevant,prox.lab.calclock +Rein Gaming,https://lh3.googleusercontent.com/a-/AOh14GgWRIadUCINty5Z6w-Gb6dfdWFK9FlhL011OZlF,No adding option for the time,2,0,5.12.1,2019-11-03 04:33:44,,,most_relevant,prox.lab.calclock +Briana Bolling,https://lh3.googleusercontent.com/a-/AOh14GjJ2sQ06faTAjFBhCu_Q-bSJw2eS1Dzds-a-MHX,"couldn't change time zone, its an hour ahead and no setting to select my time zone",2,0,,2019-06-20 20:34:24,,,most_relevant,prox.lab.calclock +Malekah Elbarasy,https://lh3.googleusercontent.com/-MMZMp5Aq6Ok/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPCcbgZN5Ip8ct6OreYXaICkyVVww/photo.jpg,It good and useful app,2,0,5.10.3,2019-08-06 09:33:47,"If so, we rely on a more positive rating from you :)",2019-08-06 15:28:00,most_relevant,prox.lab.calclock +Klarissa Brown,https://lh3.googleusercontent.com/a-/AOh14Gg4uPOTITZxc3Iod2M7Tu-SDC03s65q_4Mq9-lY__M,it is so stupid that i have to be coneccted to my calender and cant just create what i want. to much work not worth it,2,0,,2020-03-07 23:24:02,"Yes, this works with the user's system calendar. The application does what it promises in the description and screenshots.",2020-03-08 01:36:55,most_relevant,prox.lab.calclock +Salman Sikander,https://lh3.googleusercontent.com/-mz0TqXKnEdU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPl4xpsOM8y1Dh9rm0KYznWz2l8sQ/photo.jpg,I downloaded it but don't know how to use it ...really messed up app,2,0,5.10.3,2019-08-17 14:44:46,,,most_relevant,prox.lab.calclock +Asad Gondal,https://lh3.googleusercontent.com/-8t4AKAjL8MI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN2eUY0IX36F2kxvJvwF1SOvwi7nQ/photo.jpg,couldn't exactly figure out how to use it,2,0,5.9,2019-05-23 22:47:23,,,most_relevant,prox.lab.calclock +ALPHA GAMING,https://lh3.googleusercontent.com/a-/AOh14GhSe9q18zGV_wJqRT-e80hGHHwmzaMLQzhnR4n0Dw,Don't know how to use,2,0,,2019-12-01 17:33:00,"Hi. It works like your wristwatch. This is a regular 12-hour dial. +But the application takes events from the calendar of your smartphone for the next 12 hours and automatically imposes them on the dial (exactly at the time when your events will take place). Also use a convenient widget (long press on the home screen - widgets)",2019-12-01 21:50:28,most_relevant,prox.lab.calclock +moh R,https://lh3.googleusercontent.com/a-/AOh14GgMnoc1M02CwiTiFinoL1fsoKELK-wP5htzM0oW,Does not show reminders,2,0,5.10.3,2019-06-18 22:30:36,"Hello. +At the moment, Google does not allow you to work with reminders - any external applications. There is simply no public API. +You can add task to events. +Either use events for the whole day, or set the time, for example, from 14:00 to 14:00",2019-06-19 07:19:09,most_relevant,prox.lab.calclock +Saheba Khatoon,https://lh3.googleusercontent.com/-IFSGR0LkxKE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOPNnxg2OLjCpAlobo2rJ_hV90YfQ/photo.jpg,It dont have Alarm feature,2,0,,2019-09-20 10:53:18,"Hi. If you talk about sound notifications for events, go to the device settings - ""Sounds"" - ""Notification sounds"" - ""Notification Calendar"". Adjust the sound. Have a nice day!",2019-09-20 12:43:45,most_relevant,prox.lab.calclock +Sever Sava,https://lh3.googleusercontent.com/a-/AOh14GjfPHFOWYVd9rZy7H7_uouke4uyjnFvovbc0uXq,Never tried it yet,2,0,5.10.3,2019-09-11 08:48:07,,,most_relevant,prox.lab.calclock +Jennifer Kim,https://lh3.googleusercontent.com/a-/AOh14GiZ-PcckJ5cOImjQpQPUvI7yoRuBMTFfWvlPhnNRw,too confusing not neat,2,0,,2019-01-08 23:22:38,"Dear friend. Any instrument is individual. Unfortunately, the world is 90% of things that do not suit us. Sorry that the app disappointed you. I wish you well.",2019-01-08 23:38:37,most_relevant,prox.lab.calclock +Tha T,https://lh3.googleusercontent.com/a-/AOh14GjcbnWxJ1Qlj5ZDt0ziYrey850GotbjJWxf8Lh3-g,It does not ync eith al the calendars,2,0,,2019-08-18 18:59:30,,,most_relevant,prox.lab.calclock +Claudiu Caulea,https://lh3.googleusercontent.com/a-/AOh14Gh3a1IxWYcQdS9g32Fj7xItAbMjJyRkRxHHVDB0,Sync is not good,2,0,5.12.1,2019-10-03 06:15:51,,,most_relevant,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Updated: I want to love this but like others have said, it doesn't work with all calendars as claimed. To get Outlook or any other calendar to work, you have to have your calendar sync with Google, which not everyone wants or can do. It also only works with Google's smart watch, not Android Wear OS smart watches. Great look and idea, but very limited by being Google only.",2,1,5.9.1,2019-04-01 22:11:05,"Hi! Today your application will update to version 5.10. Synchronization with Outlook will work well. Synchronization with the device calendar is needed - formally. You can then turn off the display of events from any cadrend, leaving only Outlook. The application works with any watch on the OS Android Wear. I guarantee it. Have a nice day!",2019-04-01 22:50:49,most_relevant,prox.lab.calclock +dilukshaa logeshwaran,https://lh3.googleusercontent.com/a-/AOh14GgnBVEsgfFO5foLAZ6V5kgMVGZYCrzd1j5lK_P4,😶😶😶😶,2,0,5.9.1,2019-02-07 08:17:56,,,most_relevant,prox.lab.calclock +Issam Elkhorchani,https://lh3.googleusercontent.com/a-/AOh14GhPdRStChHugZpo8_TrOL-Gqdh5n2GewT2Nv0A60g,Acceptable,2,0,5.9.1,2019-03-31 20:51:34,,,most_relevant,prox.lab.calclock +KRISHNA KANT WAGHADE,https://lh3.googleusercontent.com/a-/AOh14Gh_KQVnE_Zbrbi39zD8coeZB1yRQ_ocDFpNLUHc,good,2,0,5.9.1,2019-02-22 17:28:48,,,most_relevant,prox.lab.calclock +Mohammed Fawzy,https://lh3.googleusercontent.com/a-/AOh14GjLbrQ3sCwX0nDROiX6P3khCFIoT1EucsmQ8wC7,Not good,2,0,5.8,2019-01-19 17:43:15,Sorry if our app disappointed you :(,2019-01-20 00:43:26,most_relevant,prox.lab.calclock +kaly Monty,https://lh3.googleusercontent.com/a-/AOh14GizUVNRr6QvCfEQXGtZXVmSKCaWMPCPM3robNGPVOo,"Beutiful and easy to use once you get used to it however I wished creating +an event was a bit more simple and quick. Update: no longer syncs to my +calender and the dates are all messed up....too bad I loved it",2,4,5.6.2,2018-08-01 23:11:07,,,most_relevant,prox.lab.calclock +Christiana,https://lh3.googleusercontent.com/a-/AOh14GjyKbFNUpPhScJPLGTfIwSJ15_W2SmWOrb4k098lw,Very confusing. When problems occur the resolution isnt made clear.,2,0,5.6.2,2018-08-03 05:29:42,,,most_relevant,prox.lab.calclock +Shea,https://lh3.googleusercontent.com/-Gj5Jqez7wTk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMvYrP-FaWja4meVVcLFNgMkke4zw/photo.jpg,"I got this thinking I could use it as a gear 2 watch face. It's a cool idea +but would be much better if I could use it on my gear 2.",2,0,5.6.2,2018-08-15 11:24:24,"Hey. We are not deceiving anyone. In the description of the application it is written that support only for Android Wear watches. +Do not take this as discrimination of Gear users, just the application interaction on Android os with the watch application on Tizen os, - the task is very hard to implement.",2018-08-15 12:52:23,most_relevant,prox.lab.calclock +Kyana Rose De Asis,https://lh3.googleusercontent.com/a-/AOh14Gi7_84Ni8KVzFhKt6_KKt7--HFIVv4gShPGqdZfUg,"Doesn't work on my ASUS ZenFone 5 (ZE620KL) It doesn't show up whenever I +add the widget in my home screen.",2,0,5.5.1,2018-07-02 05:32:44,,,most_relevant,prox.lab.calclock +Echo Raven,https://lh3.googleusercontent.com/a-/AOh14GgfMHT0s5w8S-sAt9NNgnIkBJohUTL4fzSuoEKJCw,"I'm sure it would be great if it didn't pick and chose what events to display from my calendar. I have multiple events logged in my calendar, the only calendar it's synced to and the only calendar those events are logged on, yet just one of them shows up. It has a lovely design, but that doesn't mean anything when the app doesn't actually work for what it's intended for.",2,16,5.4,2018-03-22 22:54:08,,,most_relevant,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Can't adjust center clock size. Can't open alarms by touching the center clock. The image for opening the app on the play store doesn't represent what you can customize the clock to look like as a widget. Augh. Cool but lacking necessary functions. EDIT - I was not able to click the center clock and open my alarms. Not sure why. But the developer said it is possible.,2,29,5.4,2018-01-27 13:42:23,"Thanks for the criticism. We will work! +On the second point. It is possible to set the opening of alarms by clicking on the center. +P.S Please support us with a more positive rating",2018-01-27 05:06:00,most_relevant,prox.lab.calclock +Liyana Sapphire,https://lh3.googleusercontent.com/a-/AOh14GhwKo-Du3HmOe1cPTsjv7b-y-E97CWvHP09DXv4Qw,"In my last phone, Asus Zenfone C, I can use this app well, but after I changed my phone to Samsung J7 (2016), it automatically connects with either Samsung or Google calendar, where I can't edit the event colors freely on the clock. I'm very disappointed, so I had to uninstall. Sorry.",2,2,5.4,2018-02-04 08:54:22,"Hi. Application for adding events uses the calendar installed on the smartphone. When adding an event, simply do not use the calendar ""My Calendar"", which does not support colors. Use the account calendar.",2018-02-04 08:59:37,most_relevant,prox.lab.calclock +Recheal Rhea Valderama,https://lh3.googleusercontent.com/a-/AOh14GgqJtk4UYrMCOIA9W_5QtraADorIzaetusVTPUj6g,I couldn't sync this with my work email and doesn't seem to give me the option to.,2,3,5.4,2018-01-28 11:38:33,,,most_relevant,prox.lab.calclock +31 Witches,https://lh3.googleusercontent.com/a-/AOh14Gh5G0M_40OP0n7_qixaUzHEvAuI4lk1MLBgHRtPB8M,To complicated and let's you set things up only to then tell u It's not available,2,0,5.4,2018-03-06 01:13:46,"Thank you. +You can always ask for help from me by e-mail.",2018-03-06 01:26:06,most_relevant,prox.lab.calclock +Ankit Vishwakarma,https://lh3.googleusercontent.com/a-/AOh14GiO9v8BqGhm-IToO9TflS_x2gAqgJeY6TL8L_piT2c,It just keep on showing only one event whereas there are more than one events,2,0,5.4,2019-11-24 01:16:46,"Hello. Check that there are events for the next 12 hours. Please email me at 27applab@gmail.com, I will help",2019-11-24 02:38:48,most_relevant,prox.lab.calclock +Maciej Czekaj,https://lh3.googleusercontent.com/a-/AOh14GgT-AuQnpTUHKIymkEmlsOcAdldhG24yyawRidhhg,The only thing that is missing is to open specified event after click on a widget. For now I can give for stars. I'll give more when this feature will be available :) Edit: after upgrade adding widget to homescreen only allocates place but is invisible. When it finally showed up it doesn't have promissed functionality,2,6,5.3.2,2017-12-16 16:57:16,"Hello! We will do it! Please, support us with a more positive rating +UPD: Thank you :) We will do it!",2017-09-29 00:48:56,most_relevant,prox.lab.calclock +blackrose7784,https://lh3.googleusercontent.com/a-/AOh14GjAi6PSZGEjFQ7CFtfL2BP4PY7PHnTliVH2JXWd,I love the idea but there are syncing issues. Events take forever to show on the graph regardless of whether i entered them in the sectograph app or my google calendar. They show up in my google calender almost automatically regardless of the same. Also i think 12 hour clock makes it tricky to read since the switch from am to pm is in the middle of the day. I have something starting at 12:30 and i cant see it on the sectograph but there is a little arrow at that start time with the first letter of that event and nothing else. It's confusing.,2,1,5.3.2,2018-01-05 16:02:54,,,most_relevant,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Good app, missing vital a feature - it shows meetings not being attended. I.e. Going = No. That is an obvious feature that stops me from giving a good rating, I must keep company meetings in the calendar that I'm not attending for posterity - not unreasonable I think? So this is a must.",2,1,5.3.2,2017-12-19 05:54:25,Hello! We will make the setting of the display of the rejected events!,2017-12-19 23:50:04,most_relevant,prox.lab.calclock +陈晓宇,https://lh3.googleusercontent.com/-lyjxatEnWGI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNe3RURevIeyHyBIrHnXtc22iEavg/photo.jpg,The idea is amazing and it's useful except it stop working(can't show its widget) after update...,2,0,5.3.2,2017-11-28 17:08:49,"Hey. Have you tried reinstalling? +Also For Android 8 Go to ""Settings"" - ""Applications and notifications"" - ""Advanced settings"" - ""Special access"" - ""Battery saving"". Turn off the savings. Also (!) Check that the application is not installed on the SD card. (On the application page in the Application Manager) +Please write to us at 27applab@gmail.com",2017-11-28 22:53:17,most_relevant,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Could not get app to consistently stay connected to my Google calendars,2,0,5.3.2,2018-01-17 01:32:25,,,most_relevant,prox.lab.calclock +Mickey W,https://lh3.googleusercontent.com/a-/AOh14Gh9xBbPGkwz5Okya8gsIIGwZ8OWqPEYYSenk6q7MA,"The widget doesn't update with the system time, often stuck until I interact with it, greatly impacting usability. I have locked the app to not be closed in recents, and a fix to this issue will change my rating. I did pay to customize the clock face, and it's far better than the default choices though.",2,22,5.2.4,2017-09-05 16:50:22,"Hello! I can say that in your device (somewhere in the ""Battery"" menu) there must be a white list of applications. If the application is not on this list, its widgets will freeze when the screen turns off. +Please write to 27applab@gmail.com what you got.",2017-09-05 21:31:46,most_relevant,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"It displays awkwardly, has backwards date, malfunctions to a point where the widget does not display, has a small central area, has no 1x1 option, has complicated descriptions for functionality that should be easy to understand, but I can buy a widget pallet, which many apps have as standard for free, for $3. What's not to love?",2,0,5.2.4,2017-10-31 19:38:44,Thank you for your criticism!,2017-10-31 21:41:23,most_relevant,prox.lab.calclock +Alex,https://lh3.googleusercontent.com/a-/AOh14GiLZ3cQJzRSbUeHmBgqS41lRcvxVTLVxlzJ_qhuI14,It could be a very useful app but it is not very intuitive. Why should I set up the date in google calendar and not directly in the app?,2,0,5.2.4,2017-10-28 21:40:22,"Hello! Really. This function is delegated to Google Calendar. But in one of the following updates, we plan to optionally add an internal interface for adding events. +Please, support us with a more positive rating :)",2017-10-31 04:42:53,most_relevant,prox.lab.calclock +arabinda moni,https://lh3.googleusercontent.com/a-/AOh14Gjke7DffZ7BYN5Hr9q3J7HTI9FzsEOw3u-Lrxw-5g,It doesn't show reminders. Not much useful without reminder display support.,2,0,5.2.4,2017-11-02 04:36:36,"There were difficulties with reminders. We will add them soon. Please, support us with a more positive rating",2017-11-02 04:39:24,most_relevant,prox.lab.calclock +pratik goenka,https://lh3.googleusercontent.com/a-/AOh14Gg7j3x0l0nIDL9tMCD7Ifd4iDCVHJUdPBHoUS62dg,I was expecting it to sync Google reminders also from google calender. I use them a lot. It has so much to do but since it cannot sync reminders like how it does for events. It's not what I am looking for.,2,0,5.2.4,2017-10-06 03:47:11,"Hello. We are very sorry. But Google does not provide an api interface for accessing user reminders. We would be happy to add, but it is now impossible to do :(",2017-10-06 05:20:07,most_relevant,prox.lab.calclock +Christina Waldén,https://lh3.googleusercontent.com/a-/AOh14GgRPkTXmeMxQkS45S7RLRCRWR7bxGxLMJ1Wc2SJQA,"24 hrs shouldn't be extra cost, can't import from my Google calendar and too many left and right arrows, confusing, too few colours for the sectors.",2,0,5.2.4,2017-10-30 17:57:19,,,most_relevant,prox.lab.calclock +Milko Georgiev,https://lh3.googleusercontent.com/a-/AOh14GhWb5ea3E3XLKhGV5u2HuAKM9df4Eex29vOVAjLIA,"Interesting idea, but useless.",2,0,5.2.4,2017-10-06 08:33:50,"Hello! As they say, ""To taste and color, - there are no comrades"" :)",2017-10-08 10:28:39,most_relevant,prox.lab.calclock +Amy Bookaholic,https://lh3.googleusercontent.com/a-/AOh14GhNyFZqE_CNmzEN3_FWO9MFF7cerle4WTkoN_idWw,How does it work ?,2,0,5.2.4,2017-11-21 22:30:47,"Hello. The application receives events from your calendar and applies them to the 12-hour clock. In this form, you control the upcoming events, see when they happen and how long they will last. +Read more in the FAQ in the application, or write to us at 27applab@gmail.com questions you are interested in.",2017-11-22 00:30:05,most_relevant,prox.lab.calclock +Rajiv Daga,https://lh3.googleusercontent.com/a-/AOh14GgmqHTH8ngnNXwgu1W5z9-B8FAHKZc6ds_wl2SMSg,"It was a great app but after today's update I am finding few menu items in some other language, even after setting the default language to english it is not helping. Team please help....",2,4,5.2.1,2017-08-22 22:26:02,Hello! We fixed this!,2017-08-28 06:21:54,most_relevant,prox.lab.calclock +Kim Schupp,https://lh3.googleusercontent.com/a-/AOh14Ghc-ZiHoIS_w5M3AIJiZSKucppIoaxuw65m4GGO,Purchased app palette. When I try to use it app stops every time.,2,0,5.1.1,2017-07-06 00:37:58,,,most_relevant,prox.lab.calclock +Dave Frankland,https://lh3.googleusercontent.com/a-/AOh14GgrmnhbkU5SHZxD46POeeJ8IElbFh6S-9Dj1hCFiQ,Does not show morning event's,2,0,5.1.1,2017-08-16 13:47:07,"Hey. There is a feature. The widget shows the events for 12 hours. (9 hours new and 3 hours old events). And while the dotted arrow does not pass the 00:00 mark, the events for ""all day"" (only they) will not be displayed.",2017-08-16 23:25:26,most_relevant,prox.lab.calclock +Shiva Shankaran,https://lh3.googleusercontent.com/a-/AOh14GjFt9y7Yhg1kczseAtNk7-9_d9ipGYoGhrPXYwfvw,Not that good after using,2,0,5.1.1,2019-08-23 05:56:59,,,most_relevant,prox.lab.calclock +Wade Barrett,https://lh3.googleusercontent.com/a-/AOh14Gh7C4keeexHQwWYMjTEpylSYtLe-3YO7Uv9bhEl3A,"Interesting, just not for me.",2,0,5.1.1,2017-08-12 04:07:50,We are sorry that our app has not met your expectations :(,2017-08-16 04:22:43,most_relevant,prox.lab.calclock +mia momo,https://lh3.googleusercontent.com/a-/AOh14GhvuFgh7w6Czfi97tkmpIbTlGo0bzz6gfKzmLWGUA,Stupid app,2,0,5.1.1,2017-08-09 14:32:07,We are sorry that our app has not met your expectations :(,2017-08-16 04:26:06,most_relevant,prox.lab.calclock +Keaton Aymar,https://lh3.googleusercontent.com/a-/AOh14GiouN4xaal2Ai8SK95XpmL2omNo7BxisqYVTy7s,Wish it didnt have to connect to the calandar. I wanted to keep my phones calandar widget separate from this but its impossible. Disappointing.,2,0,,2020-03-10 14:34:39,We will soon make internal storage optional,2020-03-11 14:34:37,newest,prox.lab.calclock +Klarissa Brown,https://lh3.googleusercontent.com/a-/AOh14Gg4uPOTITZxc3Iod2M7Tu-SDC03s65q_4Mq9-lY__M,it is so stupid that i have to be coneccted to my calender and cant just create what i want. to much work not worth it,2,0,,2020-03-07 23:24:02,"Yes, this works with the user's system calendar. The application does what it promises in the description and screenshots.",2020-03-08 01:36:55,newest,prox.lab.calclock +icarus,https://lh3.googleusercontent.com/a-/AOh14Gg6YpdbUo-UxkybVMCweFoLZLilNJyc_7w6nbHMjA,"very complex ui, it needs Google calendar and doesn't work without it. I needed a app like this but as a daily planner! not just showing the calendar events from Google Calendar stupidly on a clock.",2,0,,2020-03-07 11:01:54,"It works with any calendar. First of all, with the Calendar system application, which is available on 100% devices. But you can optionally use Google Calendar or another calendar application.",2020-03-07 11:30:52,newest,prox.lab.calclock +Shaun Teo,https://lh3.googleusercontent.com/a-/AOh14Gic8-pUQeY0JGff5L18E7qzGHLYeqMY1hMz0e6INg,The widget doesn't auto update after I add an event. Always need to click the manual refresh button. Same goes for when I delete an event.,2,0,5.14.1,2020-03-06 13:00:15,"Hi, +There are problems with the Google calendar application. Please email me at 27applab@gmail.com, I will give instructions. Or go to the FAQ section in the app - to the ""Slow Sync"" item",2020-03-06 13:07:09,newest,prox.lab.calclock +Samantha Menza,https://lh3.googleusercontent.com/a-/AOh14GijPh7FaS8NFBRvQVU6hWB1Sm3sW3bxyozZHGqjew,Can't sync calendar unless you pay which makes the unpaid version useless to me. I'm not going to go through my entire calendar and add my events by hand to a second calendar. Pointless.,2,0,,2020-03-05 16:59:07,"The purchase does not affect the synchronization. If there are problems with synchronization, please email me at 27applab@gmail.com, I will help",2020-03-05 22:00:33,newest,prox.lab.calclock +Dalin Williams,https://lh3.googleusercontent.com/a-/AOh14GirtCZW0Z5nVB8yy6vzj7KuNC6hM_g8ovdsEhb8tX8,"I have been using the fully unlocked version of this application for over a year. This is a fantastic app! However, it lacks the capability to sync with outlook calendars. For example, if I have subscribed to my work outlook calendar in Google calendar, the events will not be synchronized with Sectograph. This would be fine if this was the documented behavior of this application. However, subscribed-outlook calendars are selectable from the calendar selection menu...",2,18,5.13.2,2020-02-10 21:56:14,,,newest,prox.lab.calclock +Whitney Simmons,https://lh3.googleusercontent.com/a-/AOh14GiLGuPQZO5pyQ20LmGkEMG4t0sKRPddzW_n_oTwzA,"Ok good to know, thanks! It still won't show all of my calendar items on the clock. I'll put some on and it will take them off as I add more.",2,0,5.13.2,2020-01-07 06:54:30,Hi. There is no bug The application displays upcoming events 12 hours ahead and not per day. On this evening of the 10th day you will already see the events for tomorrow. You can send me a screenshot at 27applab@gmail.com I tell you more precisely,2020-01-06 07:52:16,newest,prox.lab.calclock +Quinntanna Calleo,https://lh3.googleusercontent.com/a-/AOh14Gj_J2t4cs3bASRDdQ4QZTsCk7kBWnDXMqXGFAQH1Q,It was a good app until this most recent update now my widget doesn't work it's not syncing with my calendars I'm losing dates appointments,2,10,5.13.2,2020-01-01 22:57:25,"Hello, Check that in the menu my calendars the necessary calendars are selected and there are events for the current 12 hours. If nothing, reinstall the application. We had no messages from users with widget synchronization problems",2020-01-02 01:11:05,newest,prox.lab.calclock +Karen Browning,https://lh3.googleusercontent.com/a-/AOh14GjCr_X12Evc-fpTWrSf8gfTxR0f78yj4XDo_Cpo1XU,"After last update the widget became very small, and clicking on it does not open up the full app. Also won't sync to my calendar anymore. Uninstalling.",2,42,5.13.2,2019-12-21 03:18:10,"Hi, +We made the default ability to click on sectors of the widget. +To return, click on the widget button (upper right corner of the widget) and ""Customize widget buttons"". Choose the first option. +To enlarge the widget, long press on it and drag it out. +By synchronization I can help if you write to me in the mail at 27applab@gmail.com",2019-12-21 04:31:43,newest,prox.lab.calclock +Jay Kay,https://lh3.googleusercontent.com/-J9gE9mI56po/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNFFTPuPGGYGDHgyttmXuEx45W4Zg/photo.jpg,Wish it didn't force me to use Google calendar. I wanted to start a new calender off of this app,2,0,,2019-12-01 21:52:56,,,newest,prox.lab.calclock +ALPHA GAMING,https://lh3.googleusercontent.com/a-/AOh14GhSe9q18zGV_wJqRT-e80hGHHwmzaMLQzhnR4n0Dw,Don't know how to use,2,0,,2019-12-01 17:33:00,"Hi. It works like your wristwatch. This is a regular 12-hour dial. +But the application takes events from the calendar of your smartphone for the next 12 hours and automatically imposes them on the dial (exactly at the time when your events will take place). Also use a convenient widget (long press on the home screen - widgets)",2019-12-01 21:50:28,newest,prox.lab.calclock +Samm Davidson,https://lh3.googleusercontent.com/a-/AOh14GhCUJ6zS8FHqsz5go32mrR3m656ZHLP_b1zaEk,"This is exactly the app I was looking for to visual my day, as the clock face just makes sense. However, only being able to add to the schedule via external calendar apps makes this completely unusable. I tried to use it to better manage my routine, but my calendar app became so full of menial tasks that I was unable to see my upcoming appointments and events of most importance. It has amazing potential, but is currently only good for basic planning. Very disappointing.",2,6,5.12.1,2019-11-29 17:46:31,,,newest,prox.lab.calclock +Ankit Vishwakarma,https://lh3.googleusercontent.com/a-/AOh14GiO9v8BqGhm-IToO9TflS_x2gAqgJeY6TL8L_piT2c,It just keep on showing only one event whereas there are more than one events,2,0,5.4,2019-11-24 01:16:46,"Hello. Check that there are events for the next 12 hours. Please email me at 27applab@gmail.com, I will help",2019-11-24 02:38:48,newest,prox.lab.calclock +Jade L,https://lh3.googleusercontent.com/a-/AOh14GiHl2RXlVY62JGlP_UrLfflSZ-mmnS31DJ9Mb2G8A,"Events won't show up on the clock after I adjust the time of the event. They show up, and then I change the time and they disappear. So, so frustrating. :( I wanted to save time, not waste it. :( Why? Why?? ? ?? :( Why?? 🤦‍♀️🤦‍♀️🤦‍♀️ :( 🤦‍♀️ I used this app for 5 minutes and then hit a roadblock. Why?",2,0,5.12.1,2019-11-19 02:30:54,"Hello. Please email me at 27applab@gmail.com, I will help",2019-11-19 03:03:39,newest,prox.lab.calclock +Rein Gaming,https://lh3.googleusercontent.com/a-/AOh14GgWRIadUCINty5Z6w-Gb6dfdWFK9FlhL011OZlF,No adding option for the time,2,0,5.12.1,2019-11-03 04:33:44,,,newest,prox.lab.calclock +Jonny Wilson,https://lh3.googleusercontent.com/-Z0WH7kOwk3o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNm7abvCwSs7PCQo7WxxsqKYzOy2g/photo.jpg,Great idea in principle but it's so hard to work out what's going on that that so far it's useless :-(,2,3,5.12.1,2019-11-02 13:36:46,,,newest,prox.lab.calclock +Sam Smith,https://lh3.googleusercontent.com/a-/AOh14Gjue98xqB-fiEfzjsgVE798zB97gwX-4QAv7_mPAg,"I'm going to start by saying who segments their hours on a clock into fifths? That's not standard and just annoying. Second, why can't I add events from the app? It ALWAYS redirects to Google Calendar, so what is this app even good for? I'll just use my calendar, AND it will be easier......",2,0,,2019-10-10 15:24:10,,,newest,prox.lab.calclock +Harshit Paliwal,https://lh3.googleusercontent.com/a-/AOh14GjexEB8uDwlM1LASPnGsBpHlu9iQx10BJBLhdPR2Q,Was working fine before. . But it's not working now..not registering my events,2,1,,2019-10-07 19:09:39,"Hello. +Try to add events not through the Google calendar application, but through the standard calendar application. +The Google Calendar app has started to sync with a delay recently.",2019-10-08 00:15:01,newest,prox.lab.calclock +Caro H,https://lh3.googleusercontent.com/-HUvj0ToNU9Y/AAAAAAAAAAI/AAAAAAAAIJ0/AAKWJJPFadsyaz0Pu7JsZpi_qTU2r2__gA/photo.jpg,I really like how amazing it is on my phone. But I'm so disappointed to see that it can't be downloaded or visualized on my new galaxy active watch...,2,2,5.12.1,2019-10-07 17:07:53,,,newest,prox.lab.calclock +Claudiu Caulea,https://lh3.googleusercontent.com/a-/AOh14Gh3a1IxWYcQdS9g32Fj7xItAbMjJyRkRxHHVDB0,Sync is not good,2,0,5.12.1,2019-10-03 06:15:51,,,newest,prox.lab.calclock +Jason Cazes,https://lh3.googleusercontent.com/a-/AOh14Gim_rBVJVu1GvLxPvG1e3SM6V4TG6d3VeYeO-YvlTc,"Cool concept, but unusable for Google business users because all of your coworkers calendars are selected by default and there's no bulk ""deselect all"" button.",2,15,5.12.1,2019-09-22 19:40:15,"Hi +In the ""My calendars"" menu, you can turn off / leave any number of calendars to display. In pro mode, this can also be configured for each copy of the widget specifically. If I misunderstood you, write to me at 27applab@gmail.com, I will try to help",2019-09-22 21:12:51,newest,prox.lab.calclock +Saheba Khatoon,https://lh3.googleusercontent.com/-IFSGR0LkxKE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOPNnxg2OLjCpAlobo2rJ_hV90YfQ/photo.jpg,It dont have Alarm feature,2,0,,2019-09-20 10:53:18,"Hi. If you talk about sound notifications for events, go to the device settings - ""Sounds"" - ""Notification sounds"" - ""Notification Calendar"". Adjust the sound. Have a nice day!",2019-09-20 12:43:45,newest,prox.lab.calclock +Abdul Rahman Shahab,https://lh3.googleusercontent.com/a-/AOh14GiwijddnR9LneKyaa2PRE7gei7HNqH6fCiAR2pr,"I have problem with purchasing the pro version. When I click on ""Buy Pro"" button, it says ""Already purchased. Please restart the app"". I have not yet purchased it though, and nothing happens when I restart the app.",2,9,5.12,2019-09-19 16:37:54,,,newest,prox.lab.calclock +Sever Sava,https://lh3.googleusercontent.com/a-/AOh14GjfPHFOWYVd9rZy7H7_uouke4uyjnFvovbc0uXq,Never tried it yet,2,0,5.10.3,2019-09-11 08:48:07,,,newest,prox.lab.calclock +Timur Muminov,https://lh3.googleusercontent.com/a-/AOh14Gi0Sl-KKenwvemSL8soTSgA5pDn5gOb_HJGycowUQ,Does not support more than only one Outlook calendar,2,2,5.10.3,2019-09-04 04:31:56,"There is support. Go to ""My calendars"" in the app and click ""Add more."" Choose Outlook",2019-08-21 05:44:30,newest,prox.lab.calclock +Kylie Choong,https://lh3.googleusercontent.com/a-/AOh14GjkPTOxz_JfoFXSI9YPptbitAz6tiqtGt7yomemrA,"Certain of the event doesn't show up in the clock, just recorded in my calender.",2,0,,2019-08-26 22:44:06,,,newest,prox.lab.calclock +Simeon Simeon,https://lh3.googleusercontent.com/a-/AOh14GhaQXX12Hf-iKyz_-a-I0kd1qnuy5GtZWMQU1s8uQ,Not in sync with my google account. Bad in regards to automatically getting what I planned and plus I can't use it when i am using my PC!!! But thumbs up for this Sectogragh the idea is brilliant. Please work on updates because very soon i might not use it if i still have to re-enter all my days task and activities!!! It should be able to get data from my google account and i should be able to use it on PC. PC is really perfect use for this kind of app!!!,2,2,5.10.3,2019-08-26 16:26:56,,,newest,prox.lab.calclock +Shashwat Khare,https://lh3.googleusercontent.com/a-/AOh14Gg9Lebh53qgYf1xGyVESG8jERDtuuIxGAmYBpsM,"This app doesn't seem to show multiple calenders for the same google account. P.S. In my Google calendar, the desired calendar has got Sync enabled still the issue exists. P.S. 2- In the My Calenders menu, it is not even showing the second calender which I have made for the same google account.",2,0,5.10.3,2019-08-24 12:32:39,"Hi. And in Sectograph, in the ""My Calendars"" menu, is a calendar selected? Check that it has events for the next 12 hours. +If it does not help, go to the device settings and to your account settings. Press the sync button and wait for it to finish.",2019-08-20 04:40:49,newest,prox.lab.calclock +Shiva Shankaran,https://lh3.googleusercontent.com/a-/AOh14GjFt9y7Yhg1kczseAtNk7-9_d9ipGYoGhrPXYwfvw,Not that good after using,2,0,5.1.1,2019-08-23 05:56:59,,,newest,prox.lab.calclock +Tha T,https://lh3.googleusercontent.com/a-/AOh14GjcbnWxJ1Qlj5ZDt0ziYrey850GotbjJWxf8Lh3-g,It does not ync eith al the calendars,2,0,,2019-08-18 18:59:30,,,newest,prox.lab.calclock +Salman Sikander,https://lh3.googleusercontent.com/-mz0TqXKnEdU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPl4xpsOM8y1Dh9rm0KYznWz2l8sQ/photo.jpg,I downloaded it but don't know how to use it ...really messed up app,2,0,5.10.3,2019-08-17 14:44:46,,,newest,prox.lab.calclock +Malekah Elbarasy,https://lh3.googleusercontent.com/-MMZMp5Aq6Ok/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPCcbgZN5Ip8ct6OreYXaICkyVVww/photo.jpg,It good and useful app,2,0,5.10.3,2019-08-06 09:33:47,"If so, we rely on a more positive rating from you :)",2019-08-06 15:28:00,newest,prox.lab.calclock +Sunday Kemp,https://lh3.googleusercontent.com/-kXv9enMQt_I/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNaPyYLPeypuDb_OyUdjf6yzr_xkA/photo.jpg,"This app was exactly what I was looking for. a visual of the day in clock form. Only issue is, if I add something to the clock it adds it to my calendar. I don't want that. I want an app where the calendar and app are separate. This was supposed to be for studying and exercise. I didn't want to have to add those things as into my ready packed calendar. it was a fast uninstall. Iif there was an option to disconnect the two, I'd reinstall.",2,0,,2019-07-29 16:58:33,"The application is designed for calendar users. +This is written in the description. The app does what it promises. +It is normal that the application does not fit all. Everyone has their own tasks and needs",2019-07-29 20:35:47,newest,prox.lab.calclock +Pradhumn Singh,https://lh3.googleusercontent.com/a-/AOh14Gi50cxF1kYLQykeWE7BYekJW4Jtq9Fm3tpCIX2wBrM,"No option for reminders, it doesn't show reminders of my google calendar. And i dont wanna create events for my daily habits LOL",2,0,5.10.3,2019-07-27 14:26:31,"Hello! We would love to add reminders, but they cannot be added at the moment. +Google has not yet released a public API for external applications, for working with reminders. We expect it to happen sooner or later.",2019-07-27 14:29:28,newest,prox.lab.calclock +Lee Alexander,https://lh3.googleusercontent.com/a-/AOh14Gi3rxT9EYNsictoA1ZNe9V5yTP3Yxa3j0LlLfEZUmA,I'm just not finding time to work with this app. So by no means the star rank im giving the apl is just a TEMP ranking.,2,0,5.10.3,2019-07-22 04:47:05,"Hello. If you will have any questions, please email me at 27applab@gmail.com",2019-07-22 07:06:26,newest,prox.lab.calclock +Takuge,https://lh3.googleusercontent.com/a-/AOh14Giwvm3Xt5vkTKTdT-y_1SiVOP7LAeqF7eFWU5H0,"i love the ideia but the executation is not good, i want to put reminders for every day and know what i need to do in a clock like that, this app needs his own callendar and clock for we customize without messing up anything on the original apps in the phone, this need a every day reminder, routine and stuff",2,4,,2019-07-12 03:11:04,,,newest,prox.lab.calclock +Karolina Mach,https://lh3.googleusercontent.com/-yFH-zz2RasE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMifkUF61lbP2cID_uTXStOgGJKhQ/photo.jpg,The widget is feezing after every night,2,1,5.10.3,2019-06-27 04:59:17,"Hi, +At night, the power saving mode works on the device and the applications fall asleep. Please email me at 27applab@gmail.com, I will help set it up",2019-06-27 06:37:15,newest,prox.lab.calclock +Briana Bolling,https://lh3.googleusercontent.com/a-/AOh14GjJ2sQ06faTAjFBhCu_Q-bSJw2eS1Dzds-a-MHX,"couldn't change time zone, its an hour ahead and no setting to select my time zone",2,0,,2019-06-20 20:34:24,,,newest,prox.lab.calclock +moh R,https://lh3.googleusercontent.com/a-/AOh14GgMnoc1M02CwiTiFinoL1fsoKELK-wP5htzM0oW,Does not show reminders,2,0,5.10.3,2019-06-18 22:30:36,"Hello. +At the moment, Google does not allow you to work with reminders - any external applications. There is simply no public API. +You can add task to events. +Either use events for the whole day, or set the time, for example, from 14:00 to 14:00",2019-06-19 07:19:09,newest,prox.lab.calclock +Dheeraj Yadav,https://lh3.googleusercontent.com/a-/AOh14Gjgvbmx0pisXcNQS2wLvq3H3PB4qzDoVEwp5fFiZQ,"Correct idea worng execution. The watch face UI cannont be operated like manually moving clock hands. The time zone stick moves at an interval of 1hr, I wanted to set it at any choosen time and add reminder from there. Big flop was it did not read my calender event and yes I did give necessary permission. phone - one plus 7 OS build- Oxygen OS 9.5.5 GM57AA Further Action- Uninstalling Outlook- Would like to try it post improvement",2,161,5.10.3,2019-06-18 09:05:04,,,newest,prox.lab.calclock +Sam Hughes,https://lh3.googleusercontent.com/a-/AOh14GgLT28vFMOY8Pmy8C93J6BVz2hfatx3FpjqgtcVTQ,"I dont like that it only works with calendar. i dont want a calendar even called ""sleep"" just to keep it on the graph",2,8,5.10.3,2019-06-04 15:09:45,"Hi, While the application works with only calendar. We will soon add a proprietary repository for tasks, independent of the calendar. It will be optional",2019-06-04 15:14:42,newest,prox.lab.calclock +Asad Gondal,https://lh3.googleusercontent.com/-8t4AKAjL8MI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN2eUY0IX36F2kxvJvwF1SOvwi7nQ/photo.jpg,couldn't exactly figure out how to use it,2,0,5.9,2019-05-23 22:47:23,,,newest,prox.lab.calclock +Allina Tracey,https://lh3.googleusercontent.com/a-/AOh14GjBbHEcn1mE2TdwFH5g4p6EfPO0T05PVaQFRyP7BQ,the current day shows events for the next day and seemingly no option to change it. very annoying.,2,11,5.10.3,2019-05-22 02:29:44,,,newest,prox.lab.calclock +music cater,https://lh3.googleusercontent.com/a-/AOh14Gh2ULToilINLIs_EDxpkibU1rewpxhxEWx11VP8,Not a fan - liked the idea of diving into main areas and percentage of your day it occupates but what flipped me up was scheduling a reminder - daily. I started getting a morning reminder of the task for the next day schedule for i.e 7pm!!!!! -i mean what about task i have for this day ahead!!! i don't need to be notified 27hrs ahead of my daily rutine - seriously🤮,2,0,,2019-05-17 18:41:14,,,newest,prox.lab.calclock +A sword,https://lh3.googleusercontent.com/a-/AOh14GikDn_7vloDujNFJ0-gRRlpibi4U-8Qpa0EWcoA,when adding a task it transferring you to Google calendar then after adding the event it doesn't appear on the widget?,2,0,5.10.2,2019-04-21 15:33:54,Hi. Please email me at 27applab@gmail.com I will help,2019-04-22 00:08:08,newest,prox.lab.calclock +Amanda Wass,https://lh3.googleusercontent.com/-0y3_UXZookA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOP2UCN88MgnOkakbPzkh75p7B4Kg/photo.jpg,"Not a single event, appointment, meeting, etc...is showing up. going to uninstall after rating.",2,4,5.10.2,2019-04-18 10:33:33,Do you have events for the next 12 hours?,2019-04-18 10:51:53,newest,prox.lab.calclock +Nomad Wolf,https://lh3.googleusercontent.com/a-/AOh14GgMxwk_0vC1vF_rFSnpr4WjEX_Zms0hHalGfv4pRA,"The app itself is really nice. I like how the widget displays my schedule for the day, it.gives me a very nice grasp of my time. The bad thing is that it slows down my smartphone, I have a S9, and it drains a lot of battery. It makes my phone lag and ""stutter"" when I try to open it. I uninstalled ans reinstalled apps to check my theories, so I uninstalled this one, the phone was doing so much better. And I even PAID for the Pro version!!!",2,0,,2019-04-04 22:42:59,"I absolutely disagree with what you said. Charge consumption close to 0%. It does not even have a background process, but updates the time 1 time per minute along with the clock. If you go with the application information, in the section the battery will be 0%. Attach a link to the screenshot of this page to the comment to confirm your words",2019-04-04 22:55:49,newest,prox.lab.calclock +William Seneshen,https://lh3.googleusercontent.com/a-/AOh14GhYi5wIpxagnqWByEPDktBRSt4EuxkUy5t45Ok4rg,"I granted this app full access to my google calendar, but none of my events show up in the diagram. It remains completely empty except for national holidays (like National Tartan Day on April 6th. Yay!) I've given this two stars instead of one because this •could• be awesome. The design is great.",2,2,5.10.2,2019-04-03 03:37:52,"Hi, William! The application works as a 12-hour dial. You must have events for the next 12 hours. If the problem still persists, please email me at 27applab@gmail.com, I will help",2019-04-03 08:14:55,newest,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Updated: I want to love this but like others have said, it doesn't work with all calendars as claimed. To get Outlook or any other calendar to work, you have to have your calendar sync with Google, which not everyone wants or can do. It also only works with Google's smart watch, not Android Wear OS smart watches. Great look and idea, but very limited by being Google only.",2,1,5.9.1,2019-04-01 22:11:05,"Hi! Today your application will update to version 5.10. Synchronization with Outlook will work well. Synchronization with the device calendar is needed - formally. You can then turn off the display of events from any cadrend, leaving only Outlook. The application works with any watch on the OS Android Wear. I guarantee it. Have a nice day!",2019-04-01 22:50:49,newest,prox.lab.calclock +Issam Elkhorchani,https://lh3.googleusercontent.com/a-/AOh14GhPdRStChHugZpo8_TrOL-Gqdh5n2GewT2Nv0A60g,Acceptable,2,0,5.9.1,2019-03-31 20:51:34,,,newest,prox.lab.calclock +Shelley Storm,https://lh3.googleusercontent.com/a-/AOh14GgcYn0umMlSdkO5QZIgHWfOKrbqcaYNfHT7H_-zwQ,not exactly useful. was hoping it would be easier to see or more customizable.,2,2,5.9.1,2019-03-31 12:24:29,"Hi, +Please email me at 27applab@gmail.com, I’m happy to help you set it up.",2019-03-31 15:31:53,newest,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,doesn't sync to my smartwatch 😞,2,0,5.9.1,2019-03-29 02:40:53,"Hi. Please Email me at 27applab@gmail.com, I will help",2019-03-29 03:02:40,newest,prox.lab.calclock +Mohit Saini,https://lh3.googleusercontent.com/a-/AOh14GiW1Q1OrsnGAL6mtVa_wFA1teoy6HyTOo6-NuaFRw,"Hello Team, I am not able to set different colours for different sectors. Could you please help me show how its done?? I purchased your app in light that It will give me option for above.",2,1,5.9.1,2019-03-16 07:33:33,Hi. Please email me at 27applab@gmail.com,2019-03-16 07:34:26,newest,prox.lab.calclock +nightlady2001,https://lh3.googleusercontent.com/-pzKErtWkE7g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMF5BYA7D55koTWPYyA5w7k6trlRA/photo.jpg,tutorial did not explain much and too confusing to figure out the benefit of using this app.,2,2,5.9.1,2019-03-04 04:59:40,"Hi! +Please email me at 27applab@gmail.com, I will help",2019-03-04 07:00:15,newest,prox.lab.calclock +Siddharth Das,https://lh3.googleusercontent.com/a-/AOh14GjlG1I6DnOqTJlpvUlFFgngmt2qxvYeoCoYGHiLnw,otherwise the app is good but i bought the full version and did i exepet to get customization fratures atleast give to feature to mark different sectors with different colours... very disappointed ... you guys should consider making the user interface less complicated...,2,6,5.9.1,2019-02-28 13:37:31,"Hi, +Please email me at 27applab@gmail.com, I will help",2019-02-28 14:43:12,newest,prox.lab.calclock +P K,https://lh3.googleusercontent.com/-CSjWsQG1CCI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP6TqvslxRrQzL6E41TtPZrBzRjTQ/photo.jpg,"It would be a great app if it had an option to use it without syncing it to your calendar like TimeTune. I don't want all my tasks to show up on my calendar, and their solution wasn't working.",2,16,5.9.1,2019-02-26 13:44:42,"Hello! Please email me at 27applab@gmail.com, I will help",2019-01-31 05:57:59,newest,prox.lab.calclock +KRISHNA KANT WAGHADE,https://lh3.googleusercontent.com/a-/AOh14Gh_KQVnE_Zbrbi39zD8coeZB1yRQ_ocDFpNLUHc,good,2,0,5.9.1,2019-02-22 17:28:48,,,newest,prox.lab.calclock +dilukshaa logeshwaran,https://lh3.googleusercontent.com/a-/AOh14GgnBVEsgfFO5foLAZ6V5kgMVGZYCrzd1j5lK_P4,😶😶😶😶,2,0,5.9.1,2019-02-07 08:17:56,,,newest,prox.lab.calclock +trending technology 2019,https://lh3.googleusercontent.com/-r08l3OVkixQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPTZtlqV9b3T2meVjoMan3-lXsYIQ/photo.jpg,useful for organizing the activities of the day but don't have setting on sound to notify the time of activity,2,4,5.9.1,2019-02-07 07:45:02,"Hi. +Go to the device settings - ""Sounds"" - ""Notification sounds"" - ""Calendar notification"". Adjust the sound. +Have a nice day!",2019-02-07 07:51:52,newest,prox.lab.calclock +Frank Obose,https://lh3.googleusercontent.com/a-/AOh14GizRmH9zLWMPOoLxefxnyuxMu78TydRjyo_exrm,I like this app but it's always saying it has stopped on my phone,2,0,5.8,2019-02-06 03:40:21,,,newest,prox.lab.calclock +Nick Joint,https://lh3.googleusercontent.com/a-/AOh14GieaWE9FMGWyErRxX1zVyN2dilk9GqNVsd_HH_W,"There's no simple reminders or ability to add to do task, everything has to be added via calendar which is irritating me...app is useless right now",2,7,5.8,2019-01-27 12:01:11,,,newest,prox.lab.calclock +Mohammed Fawzy,https://lh3.googleusercontent.com/a-/AOh14GjLbrQ3sCwX0nDROiX6P3khCFIoT1EucsmQ8wC7,Not good,2,0,5.8,2019-01-19 17:43:15,Sorry if our app disappointed you :(,2019-01-20 00:43:26,newest,prox.lab.calclock +Amornrat P,https://lh3.googleusercontent.com/-qg2H18SrH0w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPocCi0eV1zqlGMZQhl0ALq7EB46g/photo.jpg,hi i can add just 1 event why i try to add more in google calendar it shown but in this app it's not show up,2,0,5.8,2019-01-15 13:11:46,"Hello. Please email me at 27applab@gmail.com, I will help",2019-01-15 13:43:16,newest,prox.lab.calclock +Jennifer Kim,https://lh3.googleusercontent.com/a-/AOh14GiZ-PcckJ5cOImjQpQPUvI7yoRuBMTFfWvlPhnNRw,too confusing not neat,2,0,,2019-01-08 23:22:38,"Dear friend. Any instrument is individual. Unfortunately, the world is 90% of things that do not suit us. Sorry that the app disappointed you. I wish you well.",2019-01-08 23:38:37,newest,prox.lab.calclock +Kaivalya Dance,https://lh3.googleusercontent.com/a-/AOh14GhV_OpiZklujzHVO5-Svr0aS5futgRyjNgKEKnjIg,"Really beautiful and great idea. It is unfortunate for anyone who doesn't buy into all things Google and don't use Google Callander. In this day, building your app to only one service is not a good idea unless it's for the iPhone. Now if I could get my work calendar on this app, wow, what a great way to visualize your day. Just playing with the demo showed me the power of this style.",2,17,5.8,2019-01-07 21:19:06,,,newest,prox.lab.calclock +G. MacKenzie Strickland,https://lh3.googleusercontent.com/a-/AOh14GjlBA8a_x3TZ0a3rXwJ8ahdT1WRoDsKjxNVZYhoiA,"No graph showing - shows the task sector on phone app, but on watch its just the bare bones time with no events charted.",2,1,5.8,2018-12-18 16:51:38,"Hello. +You need to enable synchronization with a smart watch in the application settings. After that, the smart watch will duplicate the widget on the smartphone. Email me at 27applab@gmail.com, I will help",2018-12-18 21:54:28,newest,prox.lab.calclock +Alessandro Nero,https://lh3.googleusercontent.com/a-/AOh14GiTSTDS3l8Ves19HmediZ12xIQNMPvcfdXDlwMO9g,Once installed the app was showing another time zone.,2,0,,2018-12-03 18:15:43,"Hello! Please email me at 27applab@gmail.com, I will help.",2018-12-03 22:26:46,newest,prox.lab.calclock +Jaclyn Zarrella,https://lh3.googleusercontent.com/-mUaynb2oGQE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMZ7ptmdPn-jgMDA9Je-3wCdAHNIQ/photo.jpg,Doesn't let you choose specific calendar events to ignore. No way to track how you actually spent your time if it didn't match your calendar,2,7,5.8,2018-11-26 14:33:45,"There is still a lot of things. Do not worry, over time, we add everything. ""Cities are not built right away"". Have a good day, Jaclyn!",2018-11-26 14:37:51,newest,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"This app doesn't show all the activities of my Google Calender, so to me the app is quite useless. I even checked all the available calendars to make sure the settings were right. However, the concept seems to be great for people with a busy agenda, but since it has no use I unfortunately had to delete this app.",2,7,5.8,2018-11-12 20:40:52,"Hello! +The application should display all calendar events within 12 hours, which are currently displayed on the widget. Please send me a couple of screenshots at 27applab@gmail.com, I will help",2018-11-12 22:10:54,newest,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I loved this app, but after the new update I am unable to use the widget. Uninstalled.",2,1,5.8,2018-11-11 15:52:51,Hello. Perhaps crookedly updated. Just reinstall the app. This should help.,2018-11-12 10:23:56,newest,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,It only works when linked to another calendar app....and it's difficult to change the time from am to pm.....,2,0,5.7.2,2018-11-04 02:06:16,,,newest,prox.lab.calclock +C Clare,https://lh3.googleusercontent.com/-9BBgXU7FOY0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPNF3dLE_EaNpOiLiY_QxI6FrNMdg/photo.jpg,Couldn't get the rest of my calendars to appear. Feedback help wasn't clear as well. Uninstalling,2,1,5.7.2,2018-10-09 05:26:33,"My instructions that I sent you were simple enough. +I am 100% ready to help you solve your problem. But it seems you yourself do not want this. +Thanks for the 2 star.",2018-10-09 05:54:50,newest,prox.lab.calclock +Leila Ahmadi,https://lh3.googleusercontent.com/-sXHt-kRyZbw/AAAAAAAAAAI/AAAAAAAAAvY/AAKWJJPATVYmei5SDQCeTIHFKd1OXcIhSg/photo.jpg,"I like the idea, but it's not working with Outlook calendar properly. This a big drawback for me.",2,0,5.7.2,2018-09-20 19:47:37,"Hello! +The application does not deceive anyone. This tool is created for users of the google calendar and this is written in the application description.",2018-09-20 23:39:43,newest,prox.lab.calclock +Adrian Aguilar,https://lh3.googleusercontent.com/a-/AOh14Ggd9ZIu9Gf4rjtbDUrZQc7cFqGDJ6CXYtCambrYLA,Does not sync with MS Exchange calendar,2,0,,2018-09-06 04:21:48,Hello. This was not stated in the description of the application. But soon we plan to add support.,2018-09-06 08:05:55,newest,prox.lab.calclock +Shea,https://lh3.googleusercontent.com/-Gj5Jqez7wTk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMvYrP-FaWja4meVVcLFNgMkke4zw/photo.jpg,"I got this thinking I could use it as a gear 2 watch face. It's a cool idea +but would be much better if I could use it on my gear 2.",2,0,5.6.2,2018-08-15 11:24:24,"Hey. We are not deceiving anyone. In the description of the application it is written that support only for Android Wear watches. +Do not take this as discrimination of Gear users, just the application interaction on Android os with the watch application on Tizen os, - the task is very hard to implement.",2018-08-15 12:52:23,newest,prox.lab.calclock +Jeevesh Ghatode,https://lh3.googleusercontent.com/-cDPH6FZM2ZY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOhFWT24qQreuALs9oidH_rvmEbBg/photo.jpg,Pllllzzzzz make it for ios also,2,0,,2018-08-12 23:19:42,"We are already working on this. Please, support us with a more positive rating :)",2018-08-13 04:48:32,newest,prox.lab.calclock +Christiana,https://lh3.googleusercontent.com/a-/AOh14GjyKbFNUpPhScJPLGTfIwSJ15_W2SmWOrb4k098lw,Very confusing. When problems occur the resolution isnt made clear.,2,0,5.6.2,2018-08-03 05:29:42,,,newest,prox.lab.calclock +kaly Monty,https://lh3.googleusercontent.com/a-/AOh14GizUVNRr6QvCfEQXGtZXVmSKCaWMPCPM3robNGPVOo,"Beutiful and easy to use once you get used to it however I wished creating +an event was a bit more simple and quick. Update: no longer syncs to my +calender and the dates are all messed up....too bad I loved it",2,4,5.6.2,2018-08-01 23:11:07,,,newest,prox.lab.calclock +Raptor Fox,https://lh3.googleusercontent.com/a-/AOh14GiiDVm9kfx_AWZedYek_-9dGtcWhVLZHi-5P1Zrog,"The app is fine but the widget never became available on my phone or watch. +The widget was the whole reason I used this app.",2,0,,2018-08-01 17:51:06,,,newest,prox.lab.calclock +Sai Gayatri Vemuri,https://lh3.googleusercontent.com/a-/AOh14GiiO23fAG0xa_LEYoOeUXUluQFYHjVnULuVvmSeYQ,"Even after entering an event into the app, it is not displaying on the +clock face, and it says 'no events'. What's the point of the app when it +doesn't do what it says it can?",2,0,,2018-07-21 18:17:48,,,newest,prox.lab.calclock +Kyana Rose De Asis,https://lh3.googleusercontent.com/a-/AOh14Gi7_84Ni8KVzFhKt6_KKt7--HFIVv4gShPGqdZfUg,"Doesn't work on my ASUS ZenFone 5 (ZE620KL) It doesn't show up whenever I +add the widget in my home screen.",2,0,5.5.1,2018-07-02 05:32:44,,,newest,prox.lab.calclock +Echo Raven,https://lh3.googleusercontent.com/a-/AOh14GgfMHT0s5w8S-sAt9NNgnIkBJohUTL4fzSuoEKJCw,"I'm sure it would be great if it didn't pick and chose what events to display from my calendar. I have multiple events logged in my calendar, the only calendar it's synced to and the only calendar those events are logged on, yet just one of them shows up. It has a lovely design, but that doesn't mean anything when the app doesn't actually work for what it's intended for.",2,16,5.4,2018-03-22 22:54:08,,,newest,prox.lab.calclock +31 Witches,https://lh3.googleusercontent.com/a-/AOh14Gh5G0M_40OP0n7_qixaUzHEvAuI4lk1MLBgHRtPB8M,To complicated and let's you set things up only to then tell u It's not available,2,0,5.4,2018-03-06 01:13:46,"Thank you. +You can always ask for help from me by e-mail.",2018-03-06 01:26:06,newest,prox.lab.calclock +Liyana Sapphire,https://lh3.googleusercontent.com/a-/AOh14GhwKo-Du3HmOe1cPTsjv7b-y-E97CWvHP09DXv4Qw,"In my last phone, Asus Zenfone C, I can use this app well, but after I changed my phone to Samsung J7 (2016), it automatically connects with either Samsung or Google calendar, where I can't edit the event colors freely on the clock. I'm very disappointed, so I had to uninstall. Sorry.",2,2,5.4,2018-02-04 08:54:22,"Hi. Application for adding events uses the calendar installed on the smartphone. When adding an event, simply do not use the calendar ""My Calendar"", which does not support colors. Use the account calendar.",2018-02-04 08:59:37,newest,prox.lab.calclock +Recheal Rhea Valderama,https://lh3.googleusercontent.com/a-/AOh14GgqJtk4UYrMCOIA9W_5QtraADorIzaetusVTPUj6g,I couldn't sync this with my work email and doesn't seem to give me the option to.,2,3,5.4,2018-01-28 11:38:33,,,newest,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Can't adjust center clock size. Can't open alarms by touching the center clock. The image for opening the app on the play store doesn't represent what you can customize the clock to look like as a widget. Augh. Cool but lacking necessary functions. EDIT - I was not able to click the center clock and open my alarms. Not sure why. But the developer said it is possible.,2,29,5.4,2018-01-27 13:42:23,"Thanks for the criticism. We will work! +On the second point. It is possible to set the opening of alarms by clicking on the center. +P.S Please support us with a more positive rating",2018-01-27 05:06:00,newest,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Could not get app to consistently stay connected to my Google calendars,2,0,5.3.2,2018-01-17 01:32:25,,,newest,prox.lab.calclock +blackrose7784,https://lh3.googleusercontent.com/a-/AOh14GjAi6PSZGEjFQ7CFtfL2BP4PY7PHnTliVH2JXWd,I love the idea but there are syncing issues. Events take forever to show on the graph regardless of whether i entered them in the sectograph app or my google calendar. They show up in my google calender almost automatically regardless of the same. Also i think 12 hour clock makes it tricky to read since the switch from am to pm is in the middle of the day. I have something starting at 12:30 and i cant see it on the sectograph but there is a little arrow at that start time with the first letter of that event and nothing else. It's confusing.,2,1,5.3.2,2018-01-05 16:02:54,,,newest,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,JUST works with Google calendar. Can't use it without it! Uninstalled,2,0,,2017-12-28 17:20:50,We do not deceive anyone. This is written in the description of the app.,2017-12-28 21:30:20,newest,prox.lab.calclock +ASHISH YADAV,https://lh3.googleusercontent.com/a-/AOh14Gjg4hIwOcwEo2vrCEgzwfUrZS5Shic62Hlw808Jlw,not working properly on redmi note 4,2,0,,2017-12-21 20:21:08,,,newest,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Good app, missing vital a feature - it shows meetings not being attended. I.e. Going = No. That is an obvious feature that stops me from giving a good rating, I must keep company meetings in the calendar that I'm not attending for posterity - not unreasonable I think? So this is a must.",2,1,5.3.2,2017-12-19 05:54:25,Hello! We will make the setting of the display of the rejected events!,2017-12-19 23:50:04,newest,prox.lab.calclock +Maciej Czekaj,https://lh3.googleusercontent.com/a-/AOh14GgT-AuQnpTUHKIymkEmlsOcAdldhG24yyawRidhhg,The only thing that is missing is to open specified event after click on a widget. For now I can give for stars. I'll give more when this feature will be available :) Edit: after upgrade adding widget to homescreen only allocates place but is invisible. When it finally showed up it doesn't have promissed functionality,2,6,5.3.2,2017-12-16 16:57:16,"Hello! We will do it! Please, support us with a more positive rating +UPD: Thank you :) We will do it!",2017-09-29 00:48:56,newest,prox.lab.calclock +Lia `,https://lh3.googleusercontent.com/a-/AOh14GhBLbx8q6tkma_w04UR6sJ3uZVqmlIK9XrSaYNIfzU,I couldn't understand it probably my fault but I find it complicate and I like to organize my day like without go and add on my calender just on this app but like I said it's probably my fault / gonna try this app again later maybe like after couple of different updates,2,0,,2017-12-14 21:38:52,"Hello! Maybe you need advice on working with the application. Write to me at 27applab@gmail.com, I will tell you how it works and how to work with it conveniently.",2017-12-15 01:03:40,newest,prox.lab.calclock +陈晓宇,https://lh3.googleusercontent.com/-lyjxatEnWGI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNe3RURevIeyHyBIrHnXtc22iEavg/photo.jpg,The idea is amazing and it's useful except it stop working(can't show its widget) after update...,2,0,5.3.2,2017-11-28 17:08:49,"Hey. Have you tried reinstalling? +Also For Android 8 Go to ""Settings"" - ""Applications and notifications"" - ""Advanced settings"" - ""Special access"" - ""Battery saving"". Turn off the savings. Also (!) Check that the application is not installed on the SD card. (On the application page in the Application Manager) +Please write to us at 27applab@gmail.com",2017-11-28 22:53:17,newest,prox.lab.calclock +Amy Bookaholic,https://lh3.googleusercontent.com/a-/AOh14GhNyFZqE_CNmzEN3_FWO9MFF7cerle4WTkoN_idWw,How does it work ?,2,0,5.2.4,2017-11-21 22:30:47,"Hello. The application receives events from your calendar and applies them to the 12-hour clock. In this form, you control the upcoming events, see when they happen and how long they will last. +Read more in the FAQ in the application, or write to us at 27applab@gmail.com questions you are interested in.",2017-11-22 00:30:05,newest,prox.lab.calclock +arabinda moni,https://lh3.googleusercontent.com/a-/AOh14Gjke7DffZ7BYN5Hr9q3J7HTI9FzsEOw3u-Lrxw-5g,It doesn't show reminders. Not much useful without reminder display support.,2,0,5.2.4,2017-11-02 04:36:36,"There were difficulties with reminders. We will add them soon. Please, support us with a more positive rating",2017-11-02 04:39:24,newest,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"It displays awkwardly, has backwards date, malfunctions to a point where the widget does not display, has a small central area, has no 1x1 option, has complicated descriptions for functionality that should be easy to understand, but I can buy a widget pallet, which many apps have as standard for free, for $3. What's not to love?",2,0,5.2.4,2017-10-31 19:38:44,Thank you for your criticism!,2017-10-31 21:41:23,newest,prox.lab.calclock +Christina Waldén,https://lh3.googleusercontent.com/a-/AOh14GgRPkTXmeMxQkS45S7RLRCRWR7bxGxLMJ1Wc2SJQA,"24 hrs shouldn't be extra cost, can't import from my Google calendar and too many left and right arrows, confusing, too few colours for the sectors.",2,0,5.2.4,2017-10-30 17:57:19,,,newest,prox.lab.calclock +Alex,https://lh3.googleusercontent.com/a-/AOh14GiLZ3cQJzRSbUeHmBgqS41lRcvxVTLVxlzJ_qhuI14,It could be a very useful app but it is not very intuitive. Why should I set up the date in google calendar and not directly in the app?,2,0,5.2.4,2017-10-28 21:40:22,"Hello! Really. This function is delegated to Google Calendar. But in one of the following updates, we plan to optionally add an internal interface for adding events. +Please, support us with a more positive rating :)",2017-10-31 04:42:53,newest,prox.lab.calclock +Milko Georgiev,https://lh3.googleusercontent.com/a-/AOh14GhWb5ea3E3XLKhGV5u2HuAKM9df4Eex29vOVAjLIA,"Interesting idea, but useless.",2,0,5.2.4,2017-10-06 08:33:50,"Hello! As they say, ""To taste and color, - there are no comrades"" :)",2017-10-08 10:28:39,newest,prox.lab.calclock +Reid Goeman,https://lh3.googleusercontent.com/a-/AOh14GjsKQ-vtuSsZT05lbpKKR2-NJHcdAk0-gZva6Ta9A,"I love this app ; the only thing that would make me like it more would be if the text wrapping on the sections made more sense. Sometimes the titles of my events get cut off and placed in odd spots in the sectors. Also I've found the colors are very limited. When it looks into my calendar to match the color my calendar has for events, it gets it wrong or doesn't have the color.",3,28,5.14.1,2020-03-01 16:35:20,,,most_relevant,prox.lab.calclock +Darvid Torres,https://lh3.googleusercontent.com/a-/AOh14Gh_J-w_P7OwAaIMwYMdLOQFa9zN6V8fOn_x57TbWQ,"It is good, but you should add some predefined themes in the palette and not only allow the user experiment",3,0,5.14.1,2020-03-08 22:05:27,"Hi. +We will do it.",2020-03-08 23:32:17,most_relevant,prox.lab.calclock +Cory Gage,https://lh3.googleusercontent.com/a-/AOh14GijXgCB0IiSeaSTOTD9fZbCoeFqOz8opQ5-VfQEbw,"Confusing without a lot of explanation on what is what. Might be good when I figure it out, but it's not a real intuitive app and has a figure it out curve.",3,0,5.14.1,2020-03-02 16:42:39,,,most_relevant,prox.lab.calclock +Joshua Little,https://lh3.googleusercontent.com/-mtWppDheyhY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMpfB-qnPykKyLScPsINWplUQ_peQ/photo.jpg,"I like this app a lot, it is refreshing but to be 5 stars I should have more flexibility in setting intervals, like selecting days of the week so I can have work and nonwork day schedules that easily repeat. When I add something to a schedule a 10min before alarm should not be default, I'm using the app to plan my day primarily. Finally each new entry should default its begin time to the last entry's end time, with the new end time shortly after, say 30 min later. That would be a 5 star app.",3,2,5.13.2,2020-01-29 18:51:49,,,most_relevant,prox.lab.calclock +Bilal Ahsan,https://lh3.googleusercontent.com/a-/AOh14GhKpXJrjffa5fl3v4SdKgfCiywTj0kjIPN-h7MYTA,Well this is awkward but I cant even find widget option for this app in phone. Downloaded just an hour ago so this has to be the latest version I believe. The whole purpose was to have a clock on my homescreen that has my calender synced. It doesnt seem to that. May be I'm missing something here? I'll definite give an update of this review if I can figured it out.,3,3,5.13.2,2020-01-13 09:13:16,"Hi, +To place the widget on the home screen, long press on an empty spot on the home screen and click on ""Widgets"". +Find the widget and drag it to your home screen. +After that, make a long press on the widget and stretch it to the desired size",2020-01-13 09:34:45,most_relevant,prox.lab.calclock +Yang Chen,https://lh3.googleusercontent.com/a-/AOh14GiT_DQ7Jt41M6B3jPMc9czL2HKFkG8zuPkW1ePTIQ,"Great app and well thought of, love the wear os integration. However paying for the full version, I wish there was more customizable options such as custom background or custom font for the numbers. Would be great to include that.",3,1,5.13.2,2020-01-21 06:13:45,,,most_relevant,prox.lab.calclock +Susanna LeBeau,https://lh3.googleusercontent.com/a-/AOh14GiEY_rkvx990T9QG2UwFRtb7zp4kgJTos1b_4Sggg,"When I first downloaded this app I loved it. I enjoyed being able to see my day at a glance and everything was working fine. For some reason the widget will not open the app for me anymore and I have no idea how to fix it. I tried to uninstall the app and install it again and it still doesn't work. Anybody has any suggestions, I'm open to them. I use an android. Just to clarify, the app itself is still working, the widget is not.",3,3,5.13.2,2019-12-09 06:02:04,"Hello. +We made the default ability to click on sectors of the widget. +To return, click on the widget button (upper right corner of the widget) and ""Customize widget buttons"". Choose the first option",2019-12-09 06:48:31,most_relevant,prox.lab.calclock +Vic S,https://lh3.googleusercontent.com/-9EgY5HoUaVc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO4BGkGunUC1dv1WT0k_Bj98s8CfQ/photo.jpg,"Seems like a good idea but the widget is invisible. It is there, I can see the edges when I try to move it but it's completely invisible. I tried decreasing the widget transparency and deleting cache but to no avail. Devs, any clues? Thank you",3,0,5.13.2,2019-12-11 22:06:19,"Hi, +It seems your device killed the background process of the widget to update. +Check the energy saving and background applications settings in the Battery settings and on the application page. +You need to add the application to the white list.",2019-12-12 01:13:21,most_relevant,prox.lab.calclock +Neil Tank,https://lh3.googleusercontent.com/-QYtjvIOmMb4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNeuUCna6LfsKjwikxk1QCe1tr-yQ/photo.jpg,"Limited use so far, every time I i touch the calendar icon the app changes to calendar but will not revert back to watch face unless i uninstall and reinstall no back button",3,2,5.13.2,2020-02-17 21:10:25,,,most_relevant,prox.lab.calclock +Eszti UK,https://lh3.googleusercontent.com/-drW8tcRVEhE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNRVhlU1ltMBbswCSzIz8fnyVwwJA/photo.jpg,"pretty app and probably useful too, I just don't like having to create calendar entries. I thought tasks would be managed within the app",3,0,5.13.2,2019-12-31 06:43:16,Happy New Year!,2019-12-31 06:59:00,most_relevant,prox.lab.calclock +Camilo SH,https://lh3.googleusercontent.com/a-/AOh14GgDmRijBKtczgcmcswlePuzU19SB-3obBGt9wxnMQ,It's a cool way of getting at a glance your schedule. The theme could be more colorful,3,0,5.13.2,2020-01-21 17:45:53,,,most_relevant,prox.lab.calclock +Bhavesh Budhiraja,https://lh3.googleusercontent.com/a-/AOh14GieroIa2NAYzxb1mRVNT9vAN2HDiDq6tm-78GEJHw,Not able to open events into another calender app. It always opens events in my native mobile calender app,3,0,5.13.2,2020-02-06 15:27:13,"Hi, +Go to the ""Application Details"" of your first calendar (the calendar you want to unpin from the application). +Scroll to ""Default Usage"", click ""Reset Defaults."" +After that, again click “+” in Sectograph and “introduce” it to the new calendar.",2020-02-06 15:34:10,most_relevant,prox.lab.calclock +Georgia Zanti,https://lh3.googleusercontent.com/a-/AOh14Gh_gVvhF6wqucdNZUhX7bplJx5gC-rODT8RIrhQppA,Good idea but I cannot connect it with my smartwatch,3,1,5.13.2,2020-01-14 04:57:09,,,most_relevant,prox.lab.calclock +Willis Greaves,https://lh3.googleusercontent.com/a-/AOh14GjISREAc0vuZ4ukrGmK0E29mgU4T4qCv9xVC-Sk,It is useful but very user friendly,3,0,5.13.2,2020-01-29 11:51:13,,,most_relevant,prox.lab.calclock +Katherine Phillips,https://lh3.googleusercontent.com/-fg1_6VkH6Qg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP5UhpcQy75u0ljI18CQa4PHXs2ew/photo.jpg,"We need an update!! I love this app and use it daily but the fact that we haven't had an update in months bothers me. Here are some suggestions I have: add a settings option to default the amount of time you spend on a task (I use 45 min.), more color options for tasks, an option to change the notification sounds for each entry, a 'push all back an hour' option, and more widget options! Thank you I love this app but we could definitely use some upgrades!",3,8,5.12.1,2019-11-27 16:03:12,,,most_relevant,prox.lab.calclock +Shafi anwar,https://lh3.googleusercontent.com/a-/AOh14GiU83ztG0owgr83DNdwLANiEAK0veeXdcHd5p5nLQ,"The app is really useful, one must download it but it just have one problem that we need to refresh the widget all the time to see current time, unless we don't refresh the widget we cannot check the upcoming event through widget, if you can solve this, this is one of the best app for daily use and surely you'll get more pro version users of this app. Thank you.",3,5,5.12.1,2019-11-04 04:22:21,"Hello. +Please email me at 27applab@gmail.com, I will help",2019-11-04 08:22:29,most_relevant,prox.lab.calclock +ankush choudhary,https://lh3.googleusercontent.com/a-/AOh14GhS4vKKYA_H5RFgWP0T8vwZ6vszTU2jhsTcxteKXg,Felt very complicated when i am flying high.,3,0,5.13.2,2020-02-22 18:18:52,,,most_relevant,prox.lab.calclock +The shadow,https://lh3.googleusercontent.com/a-/AOh14GhFhhEDgLAEEM42V0vznz2zf9vmJ4Ep_1_bIQeGKg,"Good idea but there is on reapeat routine, i have to add evertime so make me hang more. And its work only 12 hours basis",3,0,5.13.2,2020-02-26 16:35:15,,,most_relevant,prox.lab.calclock +Joanne Burrage,https://lh3.googleusercontent.com/a-/AOh14GiJjUvpHXnxhh7nuhe6CgalPOUAU2rqJtv5T6yL_w,"Seemed like a good app, but doesn't always show your plans. It's linked to my calender and I've added quite a few things for the month, but it only shows on this app once and then disappears next time I look at it.",3,94,5.12.1,2019-10-30 09:55:25,,,most_relevant,prox.lab.calclock +Sean Sanchez,https://lh3.googleusercontent.com/a-/AOh14GjaDHNF0aJu4KElHF2BM9prFI2hXgogccE5Ew9pLw,"This app is actually wonderful. I'm hoping you can add the ""forward"" and ""backward"" buttons on the widget (potentially just as another available function of those virtual buttons) like we have access to in the full app. It would be nice to click forward through the calendar and then, say, click the clock center to refresh and reload with the current time.",3,0,5.7.2,2018-11-04 22:23:03,Hello! We will try to do something similar.,2018-11-05 00:44:29,most_relevant,prox.lab.calclock +NorthernStar ASMR,https://lh3.googleusercontent.com/a-/AOh14Gid2O1H0PjFMjqPCEfJ8jQ9eZUM2tqXU47stiO4mg,"If you want something that syncs to your calendar, you are in luck! It really is beautiful and such a wonderful idea. However my 3 star review comes from the fact you can't use it without syncing to your calendar, and there by having it affect your calendar. I was hoping to use this as an hourly time management tool, much like a block system, but I can't have it be that AND have my calendar be a place for just appointments. It makes the actual calendar look too full and messy. Basically in short, can you please add an offline tool as well?",3,0,,2018-11-15 16:36:39,,,most_relevant,prox.lab.calclock +Kristen Beavers,https://lh3.googleusercontent.com/-LuqwQaf7Zm8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMXXzum3h6a6wOHW37trv-plBbE4w/photo.jpg,"I really have wanted this app to work, I'd really prefer to see my day filled on a clock in such a way so I even came back to try again, however I'm having trouble putting tasks in! After a certain amount they stop saving. I'm also struggling to see the clock in a way that makes sense. It looks very jumbled. Best of luck, I love the concept!",3,2,5.9.1,2019-03-10 01:38:32,,,most_relevant,prox.lab.calclock +Barbi B.,https://lh3.googleusercontent.com/a-/AOh14GjrR_Ya588U95dflgt35SMzRod7k-PlFyJ_XcHpoAk,"I love the overall concept, and, the diverse options for setup. Though, so many setting options are a little overwhelming to sort out. I've had the app for a few weeks and I am still trying tweak my layout ... visuals are everything for me. I believe, when originally setting up a few weeks ago, I was a bit annoyed to have spent time choosing colors for the widget to find out it is a premium feature (To Developer: plz be upfront on the premium feature options). I think once I get it really working for me it will be a fave app.",3,1,5.7.2,2018-10-09 17:27:00,,,most_relevant,prox.lab.calclock +Luna R,https://lh3.googleusercontent.com/a-/AOh14GiKXsolfSaq5u7IiWPnXNAbr_EOjJWuCKbQVivWG4o,"a little confusing at first, but it transfers your calendar and alarms to the app. one bad part is it adds everything on your calendar. like if you add ""eat breakfast"" it'll go on your calendar. so that's only a little annoying since my calendar needs to be clear and easy to read. but besides that. it works well",3,5,5.9.1,2019-02-25 07:48:58,"Hello! You may find it useful to create a separate calendar for your routine. Go to the application, to the page ""My calendars"", click ""+ Add more."" Create calendars for any purpose.",2019-02-25 08:00:48,most_relevant,prox.lab.calclock +A R,https://lh3.googleusercontent.com/--K5A7Af9euo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOsX3jJyI_bYGfLbV4e6kbejWtddw/photo.jpg,Wile installing on my Note 9 it imported / shows promptly each allready existing entry from each of my Calendars. But It does not import / synchronize any new entry ( via any calendar ). ( Within Android I already removed the app from being affected by the Battery saving-option ) ( 'Close the Demo' pop-up is not present ) Thank You very much for helping out because this way of visualization by merging Agenda and Clock-face is how my mind needs it (used it many years ago and never found it back again as a contemporary app. If only I get it to work..,3,0,5.7.2,2018-10-23 20:19:42,"Hi, Alain! I responded to your email.",2018-10-25 04:17:24,most_relevant,prox.lab.calclock +Ariel Lothlorien,https://lh3.googleusercontent.com/a-/AOh14GiRE0XoC8zMJMUuheLMLWZV5A77sZhXZNCq3gWbMw,"I do like this widget a lot however I left two stars blank for very specific features. First and most importantly I left a star empty for the ability to display battery status on the widget as I use this as my primary smartwatch face. Thus without this feature it is very hard for me to see the status of my battery at a glance and know when I should try to get a little bit of charging. The second feature is integration with Outlook calendar without asking for permission for the entire account if it needs to ask for permissions at all, as my workplace has very high security requirements. For each of these features implemented I will add another star.",3,22,5.7.2,2018-10-07 00:27:13,Hello. Thanks for the review. Let's try to provide these options.,2018-10-08 05:50:36,most_relevant,prox.lab.calclock +sbcontt,https://lh3.googleusercontent.com/a-/AOh14Gg_G8mRNDyqbEwYT8TRxis0RZCNE_eZLg5w5NIbOw,Just a fancy Calender widget. Sure it looks fancy. But it doesn't add any functionality. It can't do much else. It can't track progress.,3,0,5.12.1,2019-10-15 01:51:33,,,most_relevant,prox.lab.calclock +Habib Forootan,https://lh3.googleusercontent.com/a-/AOh14GgyZtRJ2jU39mfXeUd1YPXGB8wJNEEY2CXk-rm-vA,"This is a great app but... I purchased it to be able to use it with my Samsung gear s3, little did I know that I can't use it with my watch bc this app was made to be used with android wear (which I found out later my bad). So, will you be working on making this app compatible with Samsung gear? That would open your market quite a lot with Samsung gear users. I've been using the wearable app with my watch but it doesn't work smoothly at all. Please work on that if you can, thanks!",3,13,5.9.1,2019-02-22 22:38:01,"Hi! We will work on it. We need Samsung users. +I also apologize that the application has misled you: (",2019-02-23 14:25:25,most_relevant,prox.lab.calclock +Johnny Sanngoen,https://lh3.googleusercontent.com/a-/AOh14Gh8mywlCkPPafgkOf15pJ9ClmjmDAKGqqVIhwIOtA,"It's pretty neat. I love the how everything pops out on the clock. Only thing is I tried scheduling things after 12 PM and it wouldn't pop up and I notice it only shows 12 hours at a time. If you buy the pro version it comes with the 24 hour feature, which I think is totally worth it. Seeing 24 hour option you can see everything from start to finish and not miss anything.",3,0,,2019-07-26 06:56:30,"Hello. +Yes you are right. It works like a 12-hour clock. +That is why it displays exactly 12 hours. 24 hours we added much later, at the request of users.",2019-07-26 07:23:17,most_relevant,prox.lab.calclock +Mikayla Hellwich,https://lh3.googleusercontent.com/-FgH_JjKZ5gE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOcnultmDz38gV7Migq6-wbD2Wc5w/photo.jpg,"It doesnt seem to be possible to delete a single event in a series. So if I want to block off an hour every day for the same thing, but then I have to schedule a one-off thing during that time, I can't just delete one occurence and leave the rest of the future occurences alone. I love the app otherwise but this problem is pushing me toward a different app.",3,0,5.10.3,2019-09-12 05:35:05,,,most_relevant,prox.lab.calclock +Mark Bennetts,https://lh3.googleusercontent.com/a-/AOh14Gjjm4EfCLP8f3xGs8cYd_LyMl92wKTyBdBAq6HxTw,I'm liking it but it seems to have some bugs. It's currently 01:13am but the widget and app are still showing yesterday's calendar sectors and event list.,3,1,5.12.1,2019-10-23 00:15:26,,,most_relevant,prox.lab.calclock +Marc Jackson,https://lh3.googleusercontent.com/-Zg87qmwjZ5w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOCO4VGlMiB4ijsNPtTZLi01rBPlw/photo.jpg,"Nice app! I just cannot work out what these random numbers are within the pieces of the pie... 35, 30, 7:35, 30, 8:35, 30, 8:35. it is clearly a countdown of some sort but bears no relevance to anything obvious. How can I remove these? UPDATE TO REPLY: Thank you, but I am seeing 7x this info around the pie and personally it serves little use. Can this function be disabled?",3,1,5.10.3,2019-07-22 04:40:16,Hello. Please send me a screenshot at 27applab@gmail.com,2019-07-22 06:07:24,most_relevant,prox.lab.calclock +Felix R Rivera,https://lh3.googleusercontent.com/a-/AOh14GgljBQNm3lGIDrE9e5ZYKJiGo7h9PvmsxuzEPt6cA,I love the design and the app in general. I would give it 5 stars if it would allow to size the image and the information displayed.,3,1,5.12.1,2019-10-11 18:40:26,Hello. You can resize the home screen widget. Long press on the widget and drag it to the desired size.,2019-10-11 22:05:26,most_relevant,prox.lab.calclock +R L,https://lh3.googleusercontent.com/-1APuHvRhYtY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMJxnkPMIHUj10dhxc5_OD7lRt-ww/photo.jpg,"The app is useful on the phone and tablet. I purchased it believing that it would also work on my smartwatch as displayed in the pictures. You will only get reminders, not a watch face. The picture of the smartwatch is misleading. Either develop the watch face app or remove the picture of it.",3,0,5.7.2,2018-11-03 12:57:53,"Hello! +The app is compatible with any watch on the OS Android Wear. (Samsung Gear watches on OS Tizen are unfortunately not supported by the application). +If you have Android Wear, activate synchronization with smartwatch in the application settings on your smartphone. Go to the Play Market on smartwatch and install the app.",2018-11-03 13:04:09,most_relevant,prox.lab.calclock +Reagan Downing,https://lh3.googleusercontent.com/-anEtfxi9b_s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOnHksmCOkOmH0zxjxqLfBnyk-SeA/photo.jpg,"I would give this 5 stars, if not for the misleading in-app ""smartwatch settings"" extension purchase option. I love the app, but I purchased the extension to use it on my galaxy watch and I have been unable to connect it to my watch and use any of the settings for a ""wearable"". If this app can be used on the galaxy smartwatches I would love to know how.",3,0,5.8,2019-01-10 05:45:07,"Hello! +Smart watch support is completely free. +Please email me at 27applab@gmail.com",2019-01-10 06:32:16,most_relevant,prox.lab.calclock +Kristianna Stevens,https://lh3.googleusercontent.com/a-/AOh14Gjg-9PkeDk_OL-YjuJj6x8vIFpEfGch3m_yn9Pe,"I love this app and use it with my watch but have been having a few problems. firstly I purchased the pro version off of my main google account. But the app is connecting to the other google account I have on my phone. I dont want to purchase pro a second time and the only way that I have found to disconnect it from that second account is by removing that account from my phone. Secondly, since daylight saving my events have been an hour off until I sync my events. Will change if probs are fixed",3,0,,2019-04-04 16:06:31,"Hi, sorry for the long wait for my answer :( +Please email me at 27applab@gmail.com, I will help with rebinding the purchase to another account.",2019-04-08 04:34:11,most_relevant,prox.lab.calclock +Lord Kaiser,https://lh3.googleusercontent.com/a-/AOh14GikSEkYlEN93FhJfMOLu9pMEkZFNNLNEbHXWTSDsw,I do not understand how I will add events. I tried adding events but it only shows up in my calendar not at the sectograph. It seems to be useful but I need to know how to make it work.,3,1,5.12.1,2019-10-24 13:47:41,,,most_relevant,prox.lab.calclock +Io,https://lh3.googleusercontent.com/a-/AOh14GhunsHj_IMGonug0948SOOxedFrW_qvGVZOKG4dTA,I would've liked to use this app but sadly it doesn't seem to recognize European daylight saving time. I've gone through the settings twice. This is a deal breaker I'm afraid. I would still recommend people try the app however if the live in location where DST is rightfully ignored. The main concept is really clever and the widget is beautifully designed 👌👌,3,30,5.10.3,2019-04-27 17:51:01,,,most_relevant,prox.lab.calclock +Srihari Ravi,https://lh3.googleusercontent.com/-F-RDNzh-IEI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPyLrOhPeVz7LNp0MUL8AgzBAGoKg/photo.jpg,This just displays your calendar as a time sector. Whenever you click on + it redirects to calendar.,3,0,,2020-02-20 21:48:36,,,most_relevant,prox.lab.calclock +Zoe Lockett,https://lh3.googleusercontent.com/-BrOew8rANvk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPfcM5BhJAMTPqP3TIlL2c2wCOfQw/photo.jpg,"I have changed my mind and have bought the 24hr clock version. once the app is fully updated and is working how I want it to use, I will review accordingly. I have gave 3 stars as it is the ""middle ground"" for now.",3,0,5.8,2019-01-28 19:05:11,,,most_relevant,prox.lab.calclock +Andrew Nelson,https://lh3.googleusercontent.com/a-/AOh14GhLJyNB-8-QKyA_ixAIAz7IEEwJ0N5geFMOS-nO1w,updated:. was confused that the event list in the actual app wasn't showing events scheduled for the next few days. The widget will only show events in the next 12h. The event list in the app also only shows events in the next 12h. I think this list should list events for that entire day. this means i still depend on other apps for an agenda view.,3,2,5.10.3,2019-07-18 02:02:44,"Hello +Please email me at 27applab@gmail.com, I will help",2019-07-17 23:03:27,most_relevant,prox.lab.calclock +Peggy Crofut,https://lh3.googleusercontent.com/a-/AOh14GhgTQhj56jTPFx5NYas76Lge1XrQbnwy3x_-yxd_w,"Got this, loved the free version. paid $3.99 for PRO and still don't have the ability (or can't figure out how and there are no instructions) to set different calendars on two widgets on my phone. I'll be happy to give you 5 stars if you send me a how-to. Also, it says there is time tracking. Does that mean I should be able to do a start-stop on something while I'm doing an activity?",3,2,5.10.3,2019-08-16 15:05:50,"Hello. +Place the widget on the home screen and click the widget button (in the upper right corner). After that, in the menu that opens, click ""Select calendars for widget."" +Tracking, here we are talking about visualizing time periods. It’s like a general concept and not a concrete function :)",2019-08-17 04:28:08,most_relevant,prox.lab.calclock +Arjun Batra,https://lh3.googleusercontent.com/-zSALO7gS5_g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPt4Wau39pamp0iYglMQd3gPhpsvw/photo.jpg,Everything good simple and easy to use the best one but you dont get reminder as alarm so that you can actually know the schedule its just give a notification which can be easily ignored by mistake .....please fix this and link it up with alarm too just like you did with default calendar app,3,11,5.12.1,2019-10-02 14:12:39,,,most_relevant,prox.lab.calclock +Patrik Bodó,https://lh3.googleusercontent.com/a-/AOh14GiXRxMmbmk7QSPH3X-4vGZyxiZPynZ8nAtY6PXb,"Hi! the range of the nuce coloured sectors does not cover the time interval of my events. It had been the best reason why I chose this app, to have an easy, straightforward overview of my plans. Why doesn't ut work as it is shown on the pictures?",3,1,5.9.1,2019-03-14 13:40:04,,,most_relevant,prox.lab.calclock +Paul Kelly,https://lh3.googleusercontent.com/a-/AOh14GhA7AIB5BIIG9jFslB5omS8m_1PS_fRgYsGeXqOlQ,"I had to pay for the option to change the colours, then I had to pay more to customise it further... exploitative money grabbing like this ensures I'll never recommend it to anyone else. Works well though",3,1,5.9.1,2019-03-02 01:49:13,,,most_relevant,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Not really what I was going for. It's ok I guess if you want to use Google or your phones calender, but I wanted a detailed schedual with alarms to remind me to go to the next event. Love the look, but not useful to me.",3,0,,2018-11-04 20:46:47,"Hello. All right, the app is created for Google Calendar users. Everyone has different preferences. Have a nice day!",2018-11-05 00:42:45,most_relevant,prox.lab.calclock +Kelin KO,https://lh3.googleusercontent.com/-yMznOLOa6uI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMMUJgfsQeT8IIqOFRluV_PFD1qaQ/photo.jpg,"Would be better if it didn't rely solely on Google calendar. Great concept, but would prefer adding events directly to the clock myself rather than having to put it on Google calendar first.",3,2,5.7.2,2018-10-04 14:54:44,,,most_relevant,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,good app but had to uninstall. kept adding reminders to all off my tasks and scheduled events even when repeatedly de-selecting them. very frustrating and inconvenient to get the notification and the email notification.,3,205,5.9.1,2019-02-20 03:01:29,"Hello. +You have enabled the creation of reminders when creating new events. +Disable reminders on the add / edit events page. +You can also customize the sound of notifications. +Go to the device settings - ""Sounds"" - ""Notification sounds"" - ""Calendar notification"". Adjust the sound.",2019-02-20 03:20:48,most_relevant,prox.lab.calclock +Kathy B,https://lh3.googleusercontent.com/-ZXxDNzLpZ14/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMrtJA2yKuAlIaBr2f2B1Mk6fNxMQ/photo.jpg,"Don't know why, but weather shown is for 750 miles away, for a region I've never been, and can't find a way to adjust it. Also can't use Google tasks. Not as useful as I'd hoped.",3,2,5.7.2,2018-10-04 15:57:56,"Hi. There is no weather in the application. +Perhaps weather shows by your system calendar.",2018-10-05 03:40:05,most_relevant,prox.lab.calclock +Aleksandra N,https://lh3.googleusercontent.com/a-/AOh14GiAjnRabSlYKk84g8kaf_jH3pRgimECHgsxTIipbA,After the recent update displays alarms an hour earlier than they actually are. Been using the app for more than a year now and love it.,3,0,5.8,2018-11-15 00:20:37,Hello! Please email me at 27applab@gmail.com,2018-11-15 04:13:50,most_relevant,prox.lab.calclock +Alex Qxi,https://lh3.googleusercontent.com/a-/AOh14GgdGdwCNvNbKnyJDmpXeMlwkmNue9bSE2QgNhyV3Q,It's an interesting tool but having one or 2 things on my calendar per day it does really make sense for me to use it. Looks nice.,3,0,,2019-05-16 02:01:16,,,most_relevant,prox.lab.calclock +Elise in the Attic,https://lh3.googleusercontent.com/a-/AOh14GjoGVHjmnOMPUgHfeQXCmoUql5REi7U6LmqqAKpFQ,Sorry I dont get it. I have no idea why seeing my schedule on a circle is somehow better than a rectangle. What am I missing?,3,0,5.9.1,2019-03-31 18:22:54,,,most_relevant,prox.lab.calclock +Christopher Deering,https://lh3.googleusercontent.com/a-/AOh14GhQluaf1GbU72sMlIlL7uKLRc3-q03mWpjhGfwS,It would be much better with an ability to have a report at the end of the month as to what was worked on and when. Ie statistics.,3,0,5.9.1,2019-03-28 19:53:45,,,most_relevant,prox.lab.calclock +Didi G.,https://lh3.googleusercontent.com/a-/AOh14GiSXY3NhIpekczc15F_gSo3-5yTvjmsuv34tr4u,It would have been better if it kept its own database rather than relying on the calendar. I don't want to put trivial things to plan my day in my calendar. Uninstalling.,3,1,5.8,2018-12-10 22:43:08,"Hello! +Hello. We will add an optional native repository soon. +Have a nice day :)",2018-12-11 00:32:38,most_relevant,prox.lab.calclock +Mamoru Tanida,https://lh3.googleusercontent.com/a-/AOh14GhArhtddXywTYjNi5Li4XNMFjv4tXEAaGfA8B-M,Works well until you purchase Pro. After this all your calendar dates are displayed one day ahead (your events on a Monday in your Calendar are displayed on Sunday).,3,2,5.12.1,2019-09-21 07:34:22,"Hello, +Pro mode has been around for over a year. Everything should work stably. Please send me a couple of screenshots at 27applab@gmail.com",2019-09-21 09:47:10,most_relevant,prox.lab.calclock +Beli Daza,https://lh3.googleusercontent.com/-OFq4lpgr6ME/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNsyqY_FepKFoF2Wk9W0qeHy0aHLw/photo.jpg,"This is a good planner because it's easy to use and understand, but the widget consumes a lot of the phone's battery.",3,0,,2019-08-26 22:21:35,,,most_relevant,prox.lab.calclock +Daniel Reed,https://lh3.googleusercontent.com/-l4_XWls4-x4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP9yIGJ96A7TAYI65vaxy0uOGCe-w/photo.jpg,it is difficult to set an event or goal without a tutorial,3,0,5.12.1,2019-11-13 14:52:51,,,most_relevant,prox.lab.calclock +Sathish Subramani,https://lh3.googleusercontent.com/a-/AOh14Gg5Jsmlz9mq_kGNuxsQtwD97JRh2_VFA2bZoeWLNg,"At times it doesn't work as expected, hut the app can be great potential if scrutinized aptly.",3,0,5.7.2,2018-10-17 05:35:42,Hello. You can write to us if you have any questions. I will answer with pleasure :),2018-10-18 00:24:16,most_relevant,prox.lab.calclock +Akash Das,https://lh3.googleusercontent.com/a-/AOh14GjAFZ654Cp1AJAKQNu0lukuxmNYqJgF_cDEhJRY8g,app is great but the events are not getting created . Only one two events for a day is created than even it shows created its not,3,0,5.10.3,2019-05-07 07:46:59,,,most_relevant,prox.lab.calclock +Kankonde Ndahiro,https://lh3.googleusercontent.com/-eEbQbVqvkkc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOsOpUx7CiuUpwjeKbHVv7p04NmNA/photo.jpg,"So far, its working for me. I needed something that could ring or vibrate.",3,1,5.8,2018-12-30 17:41:55,,,most_relevant,prox.lab.calclock +Bea Z,https://lh3.googleusercontent.com/a-/AOh14GioM5UEDmxINTXtIuWV5bJcpVidbVZQQx55Fr7YfQ,Looks cool but I do not find it actually helpful unless you write down everything you do every hour every day.,3,2,,2019-04-04 00:26:01,,,most_relevant,prox.lab.calclock +Michael Große,https://lh3.googleusercontent.com/-pEMwD_CwWUc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMM2BJpMMx6xO3msECO067m53p4LQ/photo.jpg,"nice, but there seems to be no way to hide declined events? that makes it much less useful. Would give 5/5 otherwise",3,0,5.10.3,2019-07-24 08:08:51,,,most_relevant,prox.lab.calclock +Hitesh Basera,https://lh3.googleusercontent.com/a-/AOh14GiDISMdYQLHJpN6at7fmU9J4UG0skrxfG1_W4dS,Its a nice app. Liked the design also. No option to copy paste same schedule to next day.,3,0,5.10.3,2019-08-27 03:16:27,,,most_relevant,prox.lab.calclock +Jian Li,https://lh3.googleusercontent.com/a-/AOh14Gh4cJlDu4VpemTjaHGi9BfEjAD0elQARsN97kDCmtk,any way to resize font so short events can still have a complete (or at least longer than 2 words) display?,3,1,5.8,2018-12-19 15:11:52,,,most_relevant,prox.lab.calclock +CEO Drymix,https://lh3.googleusercontent.com/-kTG26N7nlE8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMpdiq2FGxzoYqcnIBrK5YCL4awcA/photo.jpg,"Added feature synchronizer Connect, added the note writing feature during the call, added a feature synchronized with the mail",3,0,5.10.3,2019-05-01 21:12:49,,,most_relevant,prox.lab.calclock +Samarpit Masih,https://lh3.googleusercontent.com/-2DRa7TJK-mY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNH8y9GWRIseGpAMlm-ULjaNOGLcA/photo.jpg,"The time in the center of the widget, most of the time does not get updated. You have to open the app and then the widget is updated.",3,0,,2019-09-20 08:29:07,"Hello. +Please write to me at 27applab@gmail.com, I will help",2019-09-20 08:30:00,most_relevant,prox.lab.calclock +Deepak Khetwal,https://lh3.googleusercontent.com/a-/AOh14Gg17Tm3X39Cx-NkQbwR1XDr30rb9GeIAvGDu2oYCQ,great app just need one thing is second hand also like minutes and hours the. i will 5 star and its best app,3,0,5.10.3,2019-07-19 17:30:34,Hi We will try to add,2019-07-19 21:27:55,most_relevant,prox.lab.calclock +COSCO,https://lh3.googleusercontent.com/a-/AOh14GhEpQ6SkKrSr472ZmXIYL1gmYqZD2UcQvUTm1ez,really great concept but .......not much useful and not even that beautifully eye-catching thing,3,0,5.10.3,2019-06-20 11:35:53,,,most_relevant,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"can you make this app a separated planner and can make an event without using calendar? i really like this app, but i want this app as my daily task organizer and my calendar as a big event organizer, so it won't jumble up in my calendar.",3,2,5.9.1,2019-03-28 05:29:26,"Hi. We are planning to add our proprietary storage to events. +Temporarily you can create in your calendar a second calendar for the routine.",2019-03-29 10:47:19,most_relevant,prox.lab.calclock +Ben Foley,https://lh3.googleusercontent.com/a-/AOh14Gi3eIM-tTvXgidexIc-_zF9KDdprt29DMbo_vBq,Seems good but I would need admin approval to access my work Outlook calendar so it's pretty unusable for me.,3,1,5.10.3,2019-06-22 23:24:08,"Hi +The application is powerless here. This is a feature of your corporate policy. In this case, you generally have to get administrator permission for any application that receives Outlook events.",2019-06-23 00:38:27,most_relevant,prox.lab.calclock +TheSmunfa73,https://lh3.googleusercontent.com/a-/AOh14GgUvCPNhTlRPS_gXR9-gZzoU-eMU76D6MCNXRnP5Q,needed a standalone platform which does not connect to any of my calendars.,3,2,5.10.3,2019-06-27 15:25:43,,,most_relevant,prox.lab.calclock +Janine Paradiso,https://lh3.googleusercontent.com/a-/AOh14Ghd3ZzjdiDJn-_XLePLs9Oa7SXo__ueiaWo7LXd,I really like the visual round of this app however I would love to be able to personalise it more easily...,3,0,5.10.3,2019-06-17 10:01:16,,,most_relevant,prox.lab.calclock +venki karai,https://lh3.googleusercontent.com/a-/AOh14GjVMBSjgYiYVHb9MdLHAZi0ZlUpDEY29VErAJ2e,Lot of difficult methods to organize.🙅‍♂️,3,0,,2020-02-16 03:54:16,,,most_relevant,prox.lab.calclock +Shweta Singh,https://lh3.googleusercontent.com/a-/AOh14GhOkPfKr5cPoX__f4bLFWO-pAGtOtpHy24RYeeA58Y,Best app to mannage your time,3,0,5.13.2,2020-02-12 09:20:46,Please support us with a more positive rating ;),2020-02-12 09:45:00,most_relevant,prox.lab.calclock +Ahmed Mahana أحمد مهنى,https://lh3.googleusercontent.com/a-/AOh14GjF8ObT0LjCj30XfVqaL0VHV0KX0NNWGcTsb_oSfg,It don't work with Samsung gear s3 smart watch even after i bought tge widget!,3,1,5.8,2018-11-14 13:44:07,"Hello! +Samsung Gear - based on OS Tizen. 100% of apps for watches on Google Play will not be compatible with Samsung Gear. +The application, both for the smartphone and for the Watch, has been developed for Android (Wear) OS and free. The applications for Gear distributed through the Samsung Store. +For a refund, please email me at 27applab@gmail.com",2018-11-14 14:13:51,most_relevant,prox.lab.calclock +Tevis Palmer,https://lh3.googleusercontent.com/a-/AOh14GiyInWohTyfQO_VTk-XLHVp4QvVQPxPBla0QCWKIg,Haven't used it enough to truly rate it but it just seems like there could be some big innovation if you put more thought into it. A lot of potential if you ask me though.,3,0,5.8,2018-12-04 13:25:39,"Hello! +If you have any questions, please feel free to write me at 27applab@gmail.com. +Have a nice day!",2018-12-04 22:48:27,most_relevant,prox.lab.calclock +Ayse Sahsivar,https://lh3.googleusercontent.com/a-/AOh14Gg3_L15RaV-awSvQDbO9c8ZmOIWEWuQsFMVOEoFvQ,I uninstalled because the app was a little confusing. it has a great idea and all bit I just didnt quite get how to use it...,3,0,,2019-07-20 03:53:04,,,most_relevant,prox.lab.calclock +Anssi Nevalainen,https://lh3.googleusercontent.com/a-/AOh14GjFK_ajlvqfpMyBmwEyTRthuX5BN7NZRkxUgfU0sA,Time zones not supported? Missed a meeting today... :(,3,4,5.9.1,2019-02-08 12:19:43,,,most_relevant,prox.lab.calclock +OBI NICHOLAS,https://lh3.googleusercontent.com/a-/AOh14GjaktDD_NaRh3WbV-7lWb6dRoyQq60E1zkCJuMP,Good app but needs to add daily To do List,3,0,5.9.1,2019-03-04 05:55:36,"Hi. +On the event add / edit page, use the event repeat option (by day of the week). Thus, repeated events will need to be added only 1 time. +Have a nice day!",2019-03-04 06:59:09,most_relevant,prox.lab.calclock +Alfie Zikry,https://lh3.googleusercontent.com/-OvKaKt9UdHA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMGF06VOZAa4uEPryZWDdvl3FGS8g/photo.jpg,"the app work just fine, it was my commitment that had problem 😂😂😂",3,0,,2019-08-20 13:09:06,,,most_relevant,prox.lab.calclock +Kevin Wood,https://lh3.googleusercontent.com/-DAC10X39xUM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO51uCjqi9MXgpPo80SfSYJMkV_eQ/photo.jpg,"it just opens a-calender, so I'm not sure why I need something between me and my regular calendar app.",3,0,5.10.3,2019-07-24 00:17:10,"Hello. +The application visualizes calendar events in a round shape. It is intended for this purpose, because calendars offer only a linear form.",2019-07-24 00:55:33,most_relevant,prox.lab.calclock +Dmitrii,https://lh3.googleusercontent.com/a-/AOh14GhQquckQF_L0Au47kY98dAtjXm-Agpj0ZfTuR--nsM,Wish i could add events without having anything to do with Google calendar,3,0,5.10.2,2019-04-13 06:21:29,,,most_relevant,prox.lab.calclock +Abbie Sydes,https://lh3.googleusercontent.com/a-/AOh14Gh2dFMwR08RCFl3hrFo_bkVimrr6KsE7o1d7eVJ,good so far. only used a few times may review later on.,3,0,5.10.3,2019-05-27 21:22:26,,,most_relevant,prox.lab.calclock +Liz Storm,https://lh3.googleusercontent.com/a-/AOh14GjdumwseCW7HeG7846jxOjg7wXwUyVSZ1FdaLjh9w,It won't allow me to sync it with my Android watch and there is nowhere to ask questions!?,3,0,5.7.2,2018-10-19 16:53:06,"Hi. Synchronization with Android watches works well. Email me at 27applab@gmail.com, I will help",2018-10-20 00:58:31,most_relevant,prox.lab.calclock +Naval Kishore,https://lh3.googleusercontent.com/a-/AOh14Gi7WHUdbE_QZsMYjUU0LRQzMqAqjBZrqBgsHio,"For 24 hour version, need to buy app. no free trials",3,0,,2019-01-26 20:22:57,,,most_relevant,prox.lab.calclock +Gayle Washburn,https://lh3.googleusercontent.com/-gAL1YmOiRBk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMFO6x2UMRsU5cfsGf6jSiKhPiTQg/photo.jpg,Didn't really get a chance to test it...but it forced me to do a review to uninstall.,3,1,5.7.2,2018-10-15 03:16:12,"Did not take the time to test, but took the time to leave a 3-star review. Well, thanks :)",2018-10-15 04:13:56,most_relevant,prox.lab.calclock +L W,https://lh3.googleusercontent.com/a-/AOh14Gizgqf2ftvJ24aUzoMzN6Iz2OS0N8SNuK9Vn3_zHQ,"Sometimes it shows wrong time, make me confused most of the time",3,0,5.10.3,2019-05-23 02:36:55,,,most_relevant,prox.lab.calclock +Undefined Undefined,https://lh3.googleusercontent.com/-Ckjm6Bl2XDY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOmc4BFDmta1jMCvfuCl8lNP9E22g/photo.jpg,cant get demo to play .its probably a great app..,3,0,,2019-04-12 21:56:12,,,most_relevant,prox.lab.calclock +mister Raccoon,https://lh3.googleusercontent.com/-LUJ0bv4VhrQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPFuq-FPfHw4UPR4G33bPQoOqtWhg/photo.jpg,Good app but need improvement,3,0,5.10.3,2019-09-06 20:24:01,,,most_relevant,prox.lab.calclock +David Campelo,https://lh3.googleusercontent.com/a-/AOh14Gj-8jr5d1egefexPgiJAVVG3AC1YlIhtXz4aGwIFA,I don't like to put on google calendar every schedule,3,2,5.10.3,2019-05-14 17:27:57,,,most_relevant,prox.lab.calclock +Akanbi Bamikole Williams,https://lh3.googleusercontent.com/a-/AOh14Gg4yGWgVLr5Yh8oVL-GDpeqa4CH_MRWoFqTiA-j,Nice visualization of personal activities,3,0,5.8,2019-01-09 18:39:00,"Hello! +Thanks for your support. We will be grateful for a more positive rating from you 😃👍",2019-01-10 06:26:10,most_relevant,prox.lab.calclock +Christian Brooker,https://lh3.googleusercontent.com/a-/AOh14GgpqhkQVIHKV5zvaOzIWMr77JnmogyoNMN7n3Qz2Lw,cool idea. woupd be good if it could access my outlook calendar,3,0,,2018-12-18 11:26:02,Hello. We will add this option soon. Have a nice day!,2018-12-18 16:02:01,most_relevant,prox.lab.calclock +Rickston Edinberry,https://lh3.googleusercontent.com/a-/AOh14GhLG2HQsSLUVCLibvzw_LkjKMhSQA5_CyGEVDhU,"Not sure yet,still testing it",3,0,5.13,2019-12-04 11:59:53,,,most_relevant,prox.lab.calclock +April H,https://lh3.googleusercontent.com/a-/AOh14GjLjyScGZp2XMfQDj6vaCKb099fGfAcEUCYixkE,Widget doesn't work,3,1,5.12.1,2019-10-24 03:43:05,"Hello. Please email me at 27applab@gmail.com, I will help",2019-10-24 10:13:06,most_relevant,prox.lab.calclock +Robert Caperton,https://lh3.googleusercontent.com/-LmrB15WdelE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOZGemT33szZSXcGnvuerxL4_tTXQ/photo.jpg,I don't friggin know yet. I JUST installed it. Note. I haven't spent any time on it!,3,0,5.12.1,2019-11-05 22:52:57,,,most_relevant,prox.lab.calclock +Gareth Seymour,https://lh3.googleusercontent.com/a-/AOh14GjOwaoonwMmP7SB3TOODTqZtOP14e-e5btCqJBRoA,Please can you integrate with Outlook calendar,3,0,5.7.2,2018-09-25 12:28:23,We will try,2018-09-25 12:39:23,most_relevant,prox.lab.calclock +Lode ATe,https://lh3.googleusercontent.com/a-/AOh14GgjeuD0sTx1rQOGBcI8X8xZbKH31KhLM0HXUE5d,too tricky. complicated ..not immediate.. maybe isnt what i need...i need something more simple..,3,0,,2019-09-27 15:44:59,,,most_relevant,prox.lab.calclock +Keshani dasanayaka,https://lh3.googleusercontent.com/a-/AOh14GhHnO5uwGA4t7Zs9qZsIweKmeL2XrUgetwZbyBM,i cant set widget on homescreen can you help me plz..,3,0,5.7.2,2018-11-03 14:20:10,"Hello. Make a long press on the home screen and click ""Widgets"". Find and drag the widget to your home screen.",2018-11-05 00:36:46,most_relevant,prox.lab.calclock +Sachin Rajkuvar,https://lh3.googleusercontent.com/a-/AOh14Gii_Jlmjuj3yp9A-YU7s9Co9hWm-V6HL85vVGYSEw,Still want to go thoroughly with this app,3,0,5.8,2018-12-21 09:33:19,,,most_relevant,prox.lab.calclock +Abhishek Gupta,https://lh3.googleusercontent.com/a-/AOh14Gj8ubqPTBsDv8wZAQHow1dMFvKDmg4FwjwNu8NP,Reminder is not working what I should do,3,0,5.7.2,2018-10-16 11:53:59,"Hello! +I wrote about the reminders in the application in the section FAQ. Please read this information. +Have a good day!",2018-10-17 05:59:11,most_relevant,prox.lab.calclock +Statica Sativa,https://lh3.googleusercontent.com/a-/AOh14Gi551nyfhCYHz07yB7YNRrYCt_ESACtlnSSW7KFxg,Still trying figure it out,3,0,5.7.2,2018-11-05 01:36:05,"If you have any questions, please email me (27applab@gmail.com)",2018-11-05 01:47:25,most_relevant,prox.lab.calclock +Burhanuddin Alias,https://lh3.googleusercontent.com/a-/AOh14Ghp_JfBSkG5JLoU-tt1yWLDxK7j1D3fHpYqR_e2,ok but need to improve,3,0,5.8,2019-01-08 15:54:00,,,most_relevant,prox.lab.calclock +Patrick,https://lh3.googleusercontent.com/a-/AOh14Gi0C8szha6zxYT5hn9TOhOtpSmvFQgePqjeSg1Ttg,It's great. I love it.,3,0,5.8,2018-11-27 12:12:50,,,most_relevant,prox.lab.calclock +Deepak kumar,https://lh3.googleusercontent.com/a-/AOh14Gig1s9f0GqKCHFKpKld77Y_Hm0rV0XauG0nxJthog,it 's good,3,0,5.10.3,2019-06-02 13:11:02,,,most_relevant,prox.lab.calclock +Rio Wong,https://lh3.googleusercontent.com/a-/AOh14Gimu7xtD_DRL0ndwVKOZ2-GdCAMaziSUC2zHutCq5M,A blue flag ?,3,0,5.7.2,2018-09-23 04:26:54,Maybe,2018-09-23 07:48:55,most_relevant,prox.lab.calclock +Brajeswar Das,https://lh3.googleusercontent.com/-bevuBpPqsT4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOrQ0hls15dmHjRpoWgymhZnLEAAA/photo.jpg,Not as I required,3,0,5.9.1,2019-02-07 05:46:04,,,most_relevant,prox.lab.calclock +Mayur Chavan,https://lh3.googleusercontent.com/-ioNkrj90-nQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPETDzXCNVIBc1mARCsReIefGbyUA/photo.jpg,Pls add 24 hour view,3,0,5.8,2018-12-04 08:38:13,,,most_relevant,prox.lab.calclock +Mrs. Kathleen Gilbert,https://lh3.googleusercontent.com/a-/AOh14Gjsct5k253kHWbreGVf-iwcY4X-tmAOLWhaReDD2Q,its db un to use,3,0,5.9.1,2019-02-05 20:35:15,,,most_relevant,prox.lab.calclock +Onuh Chibike,https://lh3.googleusercontent.com/-KsCiWKwfHs8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOVnnISH7bnDd4W0Zdxh4hM5Jx8xQ/photo.jpg,Great app👌🏿👌🏿👌🏿,3,0,5.12.1,2019-10-03 15:36:32,,,most_relevant,prox.lab.calclock +Abdullahi bala Abdulrasheed,https://lh3.googleusercontent.com/a-/AOh14GivuUge1umdhlCDEXFmFUhs8XPT2H3Ct0h56JWbYQ,Good,3,0,5.12.1,2019-11-08 14:42:15,,,most_relevant,prox.lab.calclock +redsun selassie,https://lh3.googleusercontent.com/a-/AOh14Ghq0oUP6aotAsD69nP0t0l2M_mkRTD2jYzdyOOW,its ok,3,0,5.10.3,2019-05-16 13:11:15,,,most_relevant,prox.lab.calclock +Ross Jaeckel,https://lh3.googleusercontent.com/-R2f-us0QQtU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNqnXvNV2wxA4gJjcf79qF9O4waGw/photo.jpg,still trying,3,0,5.10.3,2019-08-19 03:00:18,,,most_relevant,prox.lab.calclock +cute itcampus,https://lh3.googleusercontent.com/-GQFX4TvA6aw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMbfgD7qajyJrJUTI17QgrrrapErA/photo.jpg,average features,3,0,5.10.3,2019-08-15 06:03:15,,,most_relevant,prox.lab.calclock +Nikunj Mangukiya,https://lh3.googleusercontent.com/a-/AOh14GhfYp44fSEUD0Mf2C_seiUJQnHdnPLhby81u8LQsg,okk,3,0,5.9.1,2019-03-22 02:33:11,,,most_relevant,prox.lab.calclock +aarif hussain,https://lh3.googleusercontent.com/a-/AOh14GhjZ3bbUvWgeFw93HNXQeEVwzc-YpCHQik3MJZySg,awesome app,3,0,5.9.1,2019-03-29 02:25:52,Thank :),2019-03-29 03:03:29,most_relevant,prox.lab.calclock +Baibhav Agrawal,https://lh3.googleusercontent.com/a-/AOh14GjwIkWKJiPjBJccD3lcPhxb934-wjbxQcSsNhC2sg,Is the feature of different colours for different tasks available for the free version too ?? I m actually not able to set it that way. No sir... I did the way u told me to do... It is still not showing different colours,3,0,5.8,2019-01-29 07:33:07,"Hello! It's available. +On the page for adding / editing an event, do not use the standard calendar of the device ""My Calendar"", because it may not support the color. +Use the account calendar (... @ gmail.com) and the color selection should appear.",2018-06-13 10:47:55,most_relevant,prox.lab.calclock +Emmanuel Nicholas,https://lh3.googleusercontent.com/a-/AOh14GidQ_puYXmcOvUoGzyobh76bhXCbNoveNlqNjExag,"Impressive.Could be better if it had its inbuilt calendar which is linked with events of Google calendar .it should also have to do list with with alerts,a weekly planner.thia will make it perfect",3,0,5.8,2018-12-07 05:46:05,"Hi. Will do +Thanks for the support",2018-10-20 15:32:49,most_relevant,prox.lab.calclock +Malik Muhammad Younis,https://lh3.googleusercontent.com/a-/AOh14GilQe7Og0oBGpasbUY0nAsogRSBdqDNgDJTiykx0A,fine,3,0,5.8,2019-01-10 16:42:45,Our team thanks you for your support!,2019-01-10 22:47:05,most_relevant,prox.lab.calclock +Thierry Bakuatshilela,https://lh3.googleusercontent.com/a-/AOh14Gg_fwCgHVGzDBCDzwDXRYm-nT80uG76Zdo2V1YADw,C'est très bien... mais ça devrait être moins lourd en daya,3,0,5.7.2,2018-10-03 08:19:16,,,most_relevant,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Not free,3,0,5.7.2,2018-09-18 16:26:27,Hello. Is free. Paid only non-mandatory extensions without which the application and so fully functional.,2018-09-18 22:34:37,most_relevant,prox.lab.calclock +Times of India,https://lh3.googleusercontent.com/a-/AOh14Gj5IR3frTpCKabMXnmIkZG6CuBFIL1IHxVrQucZEQ,Super💯,3,0,5.7.2,2018-10-02 01:10:56,"Thank you! 👍 +Why 3? 😃",2018-10-02 02:32:43,most_relevant,prox.lab.calclock +pravin k,https://lh3.googleusercontent.com/a-/AOh14GiZpB9nLVOgHbG2Z0Ck_dErfbF_acbpbt8FvADGXw,Ni,3,0,5.7.2,2018-10-22 15:11:47,,,most_relevant,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Nice,3,0,5.7.2,2018-10-29 08:20:27,,,most_relevant,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I think that this is a great idea, but it’s one better suited for a larger screen. A lot of display real estate is utilized to (beautifully) display a very limited amount of information.",3,0,5.6.2,2018-08-22 20:07:18,,,most_relevant,prox.lab.calclock +Sanchit Goel,https://lh3.googleusercontent.com/a-/AOh14Gj3Tk7StkDR8XNaYLHjX6xlwgz_71PphiUK_4zviA,"The widget is not getting updated until I go into the application. The app +is good but this is irritating. Please fix this. I have already bought Pro +and widget pallete.",3,0,5.6.2,2018-08-08 20:17:25,"Hey. Probably background work is blocked by the power saving function of the device. +Please write me at 27applab@gmail.com I'll try to help.",2018-08-09 00:09:07,most_relevant,prox.lab.calclock +Alberto Ancona,https://lh3.googleusercontent.com/a-/AOh14Ggmrh6qfPTbkTMKBCrDZKqB-5F_VlOx5ACSVVkUORs,"love the interface, great smartwatch integration but cant change the color +palette for some reason tried reinstalling and resetting app no luck",3,0,5.6.2,2018-07-25 03:11:18,,,most_relevant,prox.lab.calclock +Pierse Ari,https://lh3.googleusercontent.com/a-/AOh14GjQw0J0FgeeU5qZJ2YZw7SGShDLt6-UBdMSskLNXA,"Its ok, bought it, sadly need another payment to customise palette, sad, hope more update come",3,0,5.6.2,2018-09-05 00:58:15,,,most_relevant,prox.lab.calclock +Stacey Morgan,https://lh3.googleusercontent.com/a-/AOh14GiJ1vrp_LVXSbTRLWWWI3XwHz43S2lFEZXY-uvN8w,"I like that it is easy and convenience which is what I'm looking for but I +also need a way to run analytics of times spent on each task. Will change +to 5 stars if that is possible.",3,0,5.6.2,2018-07-30 19:56:24,,,most_relevant,prox.lab.calclock +Lizza,https://lh3.googleusercontent.com/a-/AOh14GjObIZyfjcNY_4mrSRZkO11C9wd_eQCTHnGl-Tdtw,"Great idea, but would be better if it was stand alone and not dependent on +Google calendar to input times/events.",3,0,5.6.2,2018-08-11 03:02:43,Hello Elizabeth! We will soon add an optional autonomy.,2018-08-13 04:54:52,most_relevant,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I can't get the widget to appear in the background wallpaper screen ,, +purchased the app only for that feature ,,, any help ?",3,0,5.6.2,2018-07-20 13:41:43,,,most_relevant,prox.lab.calclock +Nam Trịnh,https://lh3.googleusercontent.com/a-/AOh14Gjpqa6D3b6b5nF_Okohbsyh8aZ4ppCFcuebzLhoxA,"I think it will be better when it has a circle on the background, no need +to open to see the timetable",3,0,5.6.2,2018-07-19 11:42:28,,,most_relevant,prox.lab.calclock +Bellal Hossain,https://lh3.googleusercontent.com/-RhVcRfDjRmM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO8r6hbvhTMS8mdb2uM_RXEgmtUWQ/photo.jpg,Good,3,0,5.6.2,2018-07-26 20:52:19,,,most_relevant,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"The app works with the exception of showing all events on the app. The widget show 12 (9 hours ahead and 3 hours passed.) So when one views tomorrow's schedule in the evening, the app does not show tomorrow mornings event or anything prior to 3 hours before the current time the next day. (A bit of a mouthful but those with full schedule will know what I mean)",3,35,5.4,2018-03-09 09:37:03,,,most_relevant,prox.lab.calclock +Sufyaan Kazi,https://lh3.googleusercontent.com/a-/AOh14Gj1nJTQX1gzqBzbUyngApUmUi9Av1oYu9YqmU9N,"I love the idea of this app, is quite unique in the way it visually shows +my upcoming events. Sadly, try as I might, I can't get it to refresh +correctly with my calendar, its always wing despite following all the steps.",3,0,5.4,2018-05-17 09:08:43,,,most_relevant,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"The app has started causing toasters to pop up frequently saying ""This widget will not be updated. Maximum memory is used for the same widgets."" I only have one instance of the widget running and plenty of free space. I've removed it from my home screen for now, the notifications are too annoying.",3,9,5.4,2018-01-27 16:36:32,"Hey. You may have invisible copies of the widget. 100% way to solve this problem, reinstall the application. Messages will stop showing. Please try it",2018-01-27 23:29:07,most_relevant,prox.lab.calclock +ane pham,https://lh3.googleusercontent.com/a-/AOh14Gir8txzSHsSvYTeaInEtl2m5NWtM74IKvcMicqM,"This app is good, however the reason I need a calendar app is to share it with someone else, and this app doesn't seem to have a shared calendar function. Which is a shame because it's a really decent app.",3,0,5.4,2018-04-28 01:24:37,,,most_relevant,prox.lab.calclock +Scott Lee,https://lh3.googleusercontent.com/-Ip2qb_RR8Eo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNjJzHurcRejbZvjY29iL2-mqJvTw/photo.jpg,I cannot get the widget I designed to show up on the screen. I went through the FAQ with no success. I have a galaxy S8 plus with android 7.,3,1,5.4,2018-03-03 21:53:38,"If your problem is not related to installing the application on the sd card, then probably you have a custom launcher that does not update the list of widgets. Try restarting the launcher",2018-03-11 09:37:46,most_relevant,prox.lab.calclock +Munish Kumar,https://lh3.googleusercontent.com/a-/AOh14Gj-0b-puN03Bp7lxn7igCUOryIokQkeOCz7QsXF,Appearance good. Sometimes lags and don't update the time even after an hour.,3,0,5.4,2018-02-27 22:32:49,,,most_relevant,prox.lab.calclock +Bitya Trejger,https://lh3.googleusercontent.com/a-/AOh14GiIOWEwnDuRoH-3CtPozQRajMW7nF1VlkP2F0jN7g,I wish it wasn't conected to Google Callander which I don't like at all.. Overall realy awesome concept. Wish I could use it... If only it was a Callander on its own.,3,0,5.4,2018-02-24 21:26:59,,,most_relevant,prox.lab.calclock +N N,https://lh3.googleusercontent.com/-psff93yJF2w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPTRgjdtxSJpqhQu03ONx4ardQo8g/photo.jpg,"Can you make the graph fully editable eg without importing from calendars? +I want to be able to add stuff without it having to access my calendar",3,0,5.4,2018-04-18 04:41:52,"Hello! Thank you for your review! +Synchronization with the calendar server is very convenient for working on several devices. +But, of course, our proprietary, editable regime should be, we agree! We will do it.",2018-04-25 01:13:15,most_relevant,prox.lab.calclock +Sumit sharma,https://lh3.googleusercontent.com/a-/AOh14GicAfHisBjkuggVmpxbBfnQO89h3nieOpyP8PFMdA,Unable to give color to events. Only blue color is coming,3,0,5.4,2018-04-16 16:58:35,"Hello. On the page of adding / editing events, you use the standard smartphone calendar ""My Calendar"", which does not support colors. +Use the calendar of your account ""...@gmail.com"", and the choice of colors will appear on this page. +Contact Us 27applab@gmail.com",2018-04-25 01:23:37,most_relevant,prox.lab.calclock +Marc-Antoine D.Gagnon,https://lh3.googleusercontent.com/-x-LnumtQhdI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPtVc5uhHctWtHf_ew99EdB6HPGcA/photo.jpg,"Is there no way to have weekly rasks, but only week days? Other apps have this option...",3,0,5.4,2018-02-13 14:59:41,,,most_relevant,prox.lab.calclock +Nadine Maritz,https://lh3.googleusercontent.com/a-/AOh14GgtjoYmtSmpuI_wiJnIL7SJCZlmX4jeG1wb3g4YSA,How do you get it to sync with your ms outlook calender? What does it mean you detailed it in #8,3,0,5.4,2018-03-01 08:16:24,"Hey. I put the instruction in the FAQ section in the application, item # 8",2018-03-01 03:56:21,most_relevant,prox.lab.calclock +Derek Nguyen,https://lh3.googleusercontent.com/a-/AOh14GieZlHVGrUAdAYJax0jKGeAGXqBOyjfE8eiezMlUQ,I can't not choose another calendar besides Google calendar to sync with app,3,1,5.4,2018-02-03 15:19:01,,,most_relevant,prox.lab.calclock +Alex Madjarov,https://lh3.googleusercontent.com/a-/AOh14GgfvAj6KuTGU3w-adF4yKm-7GWGNpYLdax4XlWxuQ,Would gladly pay for this if it was Outlook compatible.,3,0,5.4,2018-05-18 18:04:14,,,most_relevant,prox.lab.calclock +Kushan Ponugumati,https://lh3.googleusercontent.com/a-/AOh14Ginma5KFDsV9ZteCCPpBxOBaG8TJIEnQ7qeXOIDug,Good planner And reminder,3,0,5.4,2018-04-18 00:56:24,Thank you! But why the rating is 3? :(,2018-04-25 01:17:00,most_relevant,prox.lab.calclock +Antonio De Cinque,https://lh3.googleusercontent.com/a-/AOh14GiFp3w_U1biJpU5vV8gJUcph_PHmkASuPYgLLumwCs,"The app itself is very good. Nevertheless, there's a problem: I can't seem to make it work on my Sony Smartwatch 3. In fact, as soon as I install the app on my phone, the watch face appears on the watch but after a while (about a minute) it suddenly disappears.",3,13,5.3.2,2017-12-03 16:09:34,,,most_relevant,prox.lab.calclock +Tao Guthrie,https://lh3.googleusercontent.com/a-/AOh14GgH4K2P9kHHenu8gLSveiBe-OMcLivpwOmOBh5l,I can't figure out how to make it work on my S2 watch. There are no clear instructions.,3,0,5.3.2,2017-12-19 18:13:33,"Hello! Samsung Gear - based on OS Tizen. 100% of apps on the Google Play store will not be compatible with Samsung Gear. +The application, both for the smartphone and for smart watches, is developed for Android OS (for Android Wear). +Only 1 way to install applications from the Play Store to Gear, it's to change the OS on your watch to Android Wear 2",2017-12-19 23:36:48,most_relevant,prox.lab.calclock +Dave Jewett,https://lh3.googleusercontent.com/-hoH9hyJrPBs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOfUy5qa93GO9HBwDgNjEci7xcHJA/photo.jpg,It's such a bummer it doesn't work on the Samsung sport watch.,3,0,5.3.2,2017-12-02 21:36:26,,,most_relevant,prox.lab.calclock +Chassity Feist,https://lh3.googleusercontent.com/a-/AOh14Gh_4HfjBpKPDupAmwcw564LMsdlStAfBMPCVcLyeg,I LOVE the idea of the app. Cantake a minute to figure out. Wish it had its own calander or was able to sync with others other than Google calendar.,3,0,5.3.2,2017-12-07 13:12:47,"Hello! We are already working on supporting different calendars. Please, support us with a more positive rating :)",2017-12-09 01:16:59,most_relevant,prox.lab.calclock +Tim Waugh,https://lh3.googleusercontent.com/a-/AOh14GgLmOVwnb_z0B8t-sU7IRStiU-mef0w0_UMPQl0DA,Would be better if it could hide declined events,3,0,5.3.2,2018-01-16 12:37:45,,,most_relevant,prox.lab.calclock +Sudesh Kumar,https://lh3.googleusercontent.com/a-/AOh14Gi7BxKO8ihnCQKO7It061oggU9ijEXO-dVtsIW-5A,Different colors are not available for different tasks.,3,0,5.3.2,2018-01-15 02:56:32,,,most_relevant,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I really like the concept, but the app/widget doesn't recognise 'reminders', only 'events'. If my day was organised hour by hour with events then this would be ideal, but I rarely have more than 2 events per half day. Reminders I use all the time, if the widget recognised those then it would be far more useful to me. Would still recommend despite this.",3,5,5.2.4,2017-10-10 07:59:32,,,most_relevant,prox.lab.calclock +Benjámin Bartha-Tóth,https://lh3.googleusercontent.com/a-/AOh14Ghb7qGQFKk82rGVbfYD5WjFuVjf0ocjhHVgzKxsZA,"So, I did not get it. Does this app only import events from Calendar? Can't I create my own daily routine within this app? That would be way cooler to be honest, as I barely use Calendar.",3,12,5.2.4,2017-08-31 09:13:57,"Hello! The application is an add-on for Google Calendar, because it is universal. It is by default on all smartphones and is able to synchronize all the user's devices. Google Calendar forms routines with ease! You need to use event repeats (once a day, once a week, on specific days, set the number of repetitions) and duration. +Have a nice day!",2017-09-03 13:50:00,most_relevant,prox.lab.calclock +Daimean Naidu,https://lh3.googleusercontent.com/a-/AOh14Ggr9UUVReZTX_SNCPsRFGVuDt7gjtfhk4a4Hbeo,Excellent concept which has huge potential. Only problem is that the hour hand does not keep time correctly in 24 hour time. It shows 1400 instead of 1600 (2 hour difference).,3,0,5.2.4,2017-08-31 06:00:03,Hello! Can not be ... Send us a screenshot on email 27applab@gmail.com,2017-08-31 06:11:22,most_relevant,prox.lab.calclock +Alex Kaduk,https://lh3.googleusercontent.com/a-/AOh14Gg0tXgwPSj21FrKetC4qmXqXEjHhu_wml6-YMck1jE,"App idea and design is great, but it is not possible to add calendar from Work Profile account anyhow - it is just invisible. Android 7.1.1. Promise rating 5, if fixed. Upd: thanks for prompt reply, but it is about Google Calendar in Work Profile - it creates a separate copies of Google Apps for it. Please have a look at work profile specifics for Android 7+",3,0,5.2.4,2017-10-18 08:23:31,"Hi, thanks for your comment! +Google Calendar is very friendly with many other calendars. +In the web interface of your Google Calendar, you can set up synchronization with other calendars other than Google, add URL calendars in the format ""iCalendar"". After that, your work calendar will begin to deliver events to your Google Calendar.",2017-10-16 06:48:06,most_relevant,prox.lab.calclock +J Montano,https://lh3.googleusercontent.com/-06tT_vHyGYs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPoujFbZuziwOci0mNGV_qLxtwfIQ/photo.jpg,Good premise. Just doesn't sync with any calendars. Unhelpful guide,3,0,5.2.4,2017-10-01 18:31:24,"Hello! Please, write to us at 27applab@gmail.com, we will help.",2017-10-02 01:30:27,most_relevant,prox.lab.calclock +Charinthip Aiim,https://lh3.googleusercontent.com/-FmV8xg-eVso/AAAAAAAAAAI/AAAAAAAAQHo/AAKWJJMw_nOF4SNbZiKRSXqcXNwVstGOeQ/photo.jpg,"Very useful, great clock widget with my schedule. It is better if can open calendar app by touched widget.",3,4,5.2.4,2017-09-08 13:57:12,"Hi, you can do it. +You need to go to the widget menu (button at the top-right of the widget) and go to the settings of the widget buttons. +On this page you can customize the different areas and actions of clicks on the widget. (By clicking, you can open a calendar or add an event)",2017-09-08 22:26:34,most_relevant,prox.lab.calclock +Frenchsilverfox,https://lh3.googleusercontent.com/a-/AOh14Gjo3ml1Dx9QOE_2Zv0wW83xejlzDAAZnbHB2zGP,I downloaded S.Graph but I do not have any widgets with it. I have google calendar. I can open the app but there is no Home screen widget. Any way I can fix that? I have a Samsung S6 Active. Thanks a lot!,3,0,5.2.4,2017-09-16 17:20:06,"Hello. Make a long press on the screen and click ""Widgets"". Find and transfer the widget to your home screen. +But if the widget is not in the list, then the application is for some reason installed on the SD card. Go to the list of installed applications (""Application manager"") and on the page of the application, click ""Move to device"".",2017-09-17 01:39:12,most_relevant,prox.lab.calclock +Iavor Hristov,https://lh3.googleusercontent.com/-C0trx1kmKQg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPLfeuwAlSI5F2HQj14_7tSBKJ0og/photo.jpg,"Great idea, but really needs to be able to incorporate reminders - way easier to set up in my opinion, especially for repeat events.",3,0,5.2.4,2017-09-05 09:28:54,,,most_relevant,prox.lab.calclock +KhelaKuda & SabKuch,https://lh3.googleusercontent.com/a-/AOh14Ghr-V5zbcrbJaMlLd4vRtyK_nVD3gCby3zvPMsp-A,It's good but complicated a bit,3,0,5.2.4,2017-11-01 03:32:31,"In any case, if you have any questions in using the application, write to us at 27applab@gmail.com",2017-11-01 03:40:46,most_relevant,prox.lab.calclock +swarup chatterjee,https://lh3.googleusercontent.com/a-/AOh14GibOxEhovfr4pTw25F62UwHbmJy9naGn3sotOXtoA,size should be more large...nd alarm needed,3,0,5.2.4,2017-09-02 08:41:07,"Hey. Widget is rubber. :) Make a long press on the widget and stretch it to the size 3x3, 4x4 and others. +So in the settings you can give an additional increase for the widget 4x4.",2017-09-02 12:48:40,most_relevant,prox.lab.calclock +Vaibhav Joshi,https://lh3.googleusercontent.com/a-/AOh14GgYMjdZPPtXwZVOiKhGSK4uw2KK2jNoM7-QtUD7dQ,This cannot sync Outlook :(,3,0,5.2.4,2017-11-06 06:08:56,Hello. You can configure Google Calendar synchronization with outlook. Please read about this in the eighth paragraph in the FAQ in the app. Google will be synchronized with Outlook 2 times a day.,2017-11-12 23:54:35,most_relevant,prox.lab.calclock +Daniel Adams,https://lh3.googleusercontent.com/-DWaQ-YXaVao/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOfGxmHH-8l2Q8u1f20WdhlvaK0gA/photo.jpg,Glitchy but good,3,0,5.2.4,2017-11-18 10:17:53,Hello! In the next update we will try to make the application even more stable!,2017-11-20 23:08:11,most_relevant,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"it's a great app but it has glitches. I tried setting my work hours for tomorrow's date. but when I clicked save and went back to the graph, it had the hours set for today, not tomorrow.",3,1,5.1.1,2017-07-23 12:06:54,,,most_relevant,prox.lab.calclock +Subramaniyam Vishwanath,https://lh3.googleusercontent.com/-1uBP7iJ8AG8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNNiVTedFmgaIxl6Au5oo8D5sO_6w/photo.jpg,"Loved the concept, beautiful design, and has taken its place on my home screen after a clarification from the Dev on syncing other calendars. I also love the fact that you can just jump in and use the widget, or you can opt for deep customisation of the look, feel and functionality.",3,1,5.1.1,2017-07-22 11:17:54,"Hello! Recently wrote about this in the FAQ section inside the application. Read, maybe this solution will be useful to you :)",2017-07-22 05:51:27,most_relevant,prox.lab.calclock +Swarup Tripathy,https://lh3.googleusercontent.com/a-/AOh14GhFtrXXltG1X976by7BbsBwORFC4DxM-zXW8Z5Djg,"It show the full day events on next day actual, which is incorrect. Otherwise it's good. There should be option for alert tone.",3,1,5.1.1,2017-06-26 21:19:29,Hello! We will do!,2017-06-30 00:33:41,most_relevant,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,The time displayed does not automatically update. One has to cluck on the widget and enter the app for it to sync with actual time.,3,0,5.1.1,2017-07-07 19:43:12,"Hello! Sorry for the tedious wait :( In your device, in the battery section there should be a list of applications that are allowed to work and update when the screen turns off. (But maybe in another place) you need to add the application to this whitelist and the clock will stop stopping.",2017-07-22 06:10:29,most_relevant,prox.lab.calclock +Lackshan satheesh khan,https://lh3.googleusercontent.com/a-/AOh14GjHZIQAXZSAAF8vCR0mOxGM0eXSqJ6g503dja8F,App is good but have some error it's no refresh automatically on widget home screen we have to open app to refresh apps hour line please fix tht error,3,0,5.1.1,2017-07-18 06:46:32,"Hello! In your device, in the battery section there should be a list of applications that are allowed to work and update when the screen turns off. (But maybe in another place) you need to add the application to this whitelist and the clock will stop stopping.",2017-07-22 05:57:19,most_relevant,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,I wish the clock looked simpler. The point of downloading the app was to be able to see what my day is like just by looking at it once. The sectors should be more defined.,3,0,5.1.1,2017-08-03 19:29:14,Hello! We will consider how to make the display more simple and clear.,2017-08-08 23:47:09,most_relevant,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I'd really like to use this app, but there's no option to sync with other calendar services like Microsoft's.",3,0,5.1.1,2017-08-16 15:13:52,,,most_relevant,prox.lab.calclock +Conner Carlson,https://lh3.googleusercontent.com/a-/AOh14GiFt1eb3nCsBk0JZS2kK43vRrJHUUL25Tr2pH1FKA,I wish it was easier to figure out. I can't figure out how to make it look like the photos on here where the time is color blocked out.,3,0,5.1.1,2017-07-16 21:39:41,,,most_relevant,prox.lab.calclock +Peter Raja,https://lh3.googleusercontent.com/-fjcmMAxNxPM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO2VIL63W8UHXcVmgc8wCdHy8j4Zg/photo.jpg,Works well and syncs well with the chosen calenders.,3,0,5.1.1,2017-07-20 06:39:26,"Hello! Thanks for the review! But if you like, why the rating is 3? :)",2017-07-22 05:47:41,most_relevant,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Nice app but how to put red color?? T-T,3,0,5.1.1,2017-08-21 17:50:51,,,most_relevant,prox.lab.calclock +David morrison,https://lh3.googleusercontent.com/a-/AOh14GhM-NUbb1KQHO_CQ5iOLI2qhZGjLHZgITOoiTt45g,Great But missing Exchange tasks on widget. Please add.,3,0,5.1.1,2017-06-16 01:25:12,,,most_relevant,prox.lab.calclock +Brittany Billups,https://lh3.googleusercontent.com/a-/AOh14GieZRzS0T_UfpMIVie9L0LK8V5w8lw2RCQq1pIs,"I really love this app. With my busy schedule it's so great to have all my day's events plotted out in one great visual. BUT, it drains my battery like crazy! I've lost 10% just typing this out. I have to un-install it. Please. Find a way to fix this so I can re-install!",3,11,4.5,2017-05-03 17:15:16,"Hello! Our application is very energy-saving. All that it does is instantly update the widget 1 time in one minute. +We checked the power consumption using different programs and they confirmed it. However, some programs may display incorrect data. Use the standard ""Battery"" utility.",2017-05-05 01:05:24,most_relevant,prox.lab.calclock +Aleksey Novykov,https://lh3.googleusercontent.com/a-/AOh14GgEaA9ZBLW0yrr9OILRqj2lgztW2PfPowztYjWxcw,Do you have plan to make it available as soon for Android Wear watches? Than it probably will be 5-star app :),3,0,4.5,2017-05-15 22:00:05,"Hello! Yes, support for smart watches will be available soon!",2017-05-15 23:24:46,most_relevant,prox.lab.calclock +nono O.,https://lh3.googleusercontent.com/-J8gnapR_Wdw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMMxrJPDV9ysPgxt2XxRT8_DrZrgw/photo.jpg,"Its seem complex in the first time. Anyway, can see all activity in the big picture",3,0,4.5,2017-05-24 16:37:01,,,most_relevant,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"It's a great idea. The options need more explanation. I can't tell what half of them do. Also the widget while very useful, it doesn't update properly. It falls hours behind and doesn't update unless I run the app and hit refresh sometimes.",3,3,4.4,2017-03-07 19:21:56,"Hello! We will add documentation! +Also, some devices may have power saving options, such as ""Protected apps"". Applications that are not included in the list stop functioning and are updated after the screen is turned off. Adding an application to the list of allowed.",2017-03-09 04:25:29,most_relevant,prox.lab.calclock +Chintan Jain,https://lh3.googleusercontent.com/a-/AOh14GhUyPKjW2H-VuVd-qBLRC2vxh4BK2h1RfT0MUGSAnI,App looks very interesting and the way it is displayed is ibteresting. But i am unable to place the widget on screen.. each time i try to add it to my homescreen it disappears.. i mean it does bot get placed on my home screen. Help me with this.. my phone is One Plus 3 with Android 7.1 Noughat,3,0,4.4,2017-03-28 15:51:13,"Hello! Some devices may have power saving options, such as - ""Protected apps"". Applications that are not included in the list stop functioning and are updated after the screen turns off or goes into deep sleep. Add the applications to the allowed list.",2017-03-28 23:09:45,most_relevant,prox.lab.calclock +punnen punnoose,https://lh3.googleusercontent.com/a-/AOh14GjTQHvJn7q9qmU9jKMFbyKqFWxUsAa1cgV4qUw2KA,The app idea is quite great. The app itself needs to be improved thought. The clock keeps getting stuck on fixed times and updates the time only when we open the app itself. This defeats the whole purpose of the app. Definitely a 5 star idea. Needs better execution.,3,0,4.4,2017-03-21 11:13:46,"Hello! Some devices may have power saving options, such as - ""Protected apps"". Applications that are not included in the list stop functioning and are updated after the screen is turned off. Add the applications to the allowed list.",2017-03-21 12:47:21,most_relevant,prox.lab.calclock +Roberto R.,https://lh3.googleusercontent.com/a-/AOh14GhE3NA229ZCMSadJpYKmvmaCu6Jo7nmi97X67Espw,"I was very excited for this app but there are a couple of things that have disappointed me. I really need a 24 hours clock, I have many events after working hours so as it is now it's useless to me. Moreover, don't know if this is my problem, I can't see reminders. I see them inside the calendar app but not here. Hope they will improve so I can finally give a sweet 5 stars, the idea itself is brilliant!",3,0,4.4,2017-02-26 11:57:06,,,most_relevant,prox.lab.calclock +Rajeev Juta,https://lh3.googleusercontent.com/a-/AOh14GhFz9S2qriDenII8FFCiRJRP4c6CRMvcxcCFG9NYQ,"Like the concept, but was hoping to see the full widget on my phone. Unfortunately does not display like the screenshot you show above on a samsung s7 edge (not sure if it is settings i need to change). I would also like better integration with microsoft outlook. Currently it takes me to the calendar but none of my meetings show up on the widget. Integrates well to samsung planner and google calendar but not my work app calendar. Finally like some of the ideas below of changing to a 24h calendar.",3,0,4.4,2017-04-17 08:55:14,"Hello! +In the next update, you can zoom the widget to the full width of the screen. +We can synchronize google calendar and outlook, with the help of the iCalendar (.ics) protocol. Read on the Internet how to do it. +A 24-hour version of the widget will be required!",2017-04-19 01:05:44,most_relevant,prox.lab.calclock +Kartikeya Agarwal,https://lh3.googleusercontent.com/a-/AOh14GiLdh3fH-MfclHCo4EZxPWnDtAUNLdgV4vSBXIzCw,I believe that u should introduce a better interface to explain its working and an optoon to create day plans accaording to ur schedule and not with a calender..i mean a time planner...ao that i can plan my time accordingly by a pie chart,3,0,4.4,2017-03-15 08:28:02,,,most_relevant,prox.lab.calclock +Ralen Gao,https://lh3.googleusercontent.com/a-/AOh14Gh6lzeHMgKNGWSqi9TAjgMvmzp_zKKVzV6HCjMkfw,"Won't update information from Google Calendar no matter what. One event out of an entire day. Have restarted several times, checked the permissions, nothing :-| UPDATE: I think I understand what you mean. I'll play with it for another day and will re-rate :)",3,0,4.4,2017-02-27 03:59:47,"Hello! An application can not display the event in 24 hours. It is a 12-hour clock and displays events for 12 hours. (Move clockwise). Now the app only does not display a reminder. Check how many calendars, see the app. So as to ensure that, in good applications, the arrow indicates the right time and create an event using the ""+"" button.",2017-02-27 03:52:34,most_relevant,prox.lab.calclock +Shay Syafiq,https://lh3.googleusercontent.com/a-/AOh14GiP9RyG3t7ktdBW0pIw4zoHwFlT3QZr0tb8wMHPMxo,Have not fully tried this app yet but the images and graphical user interface is appealing to me. Hopefully this app would be able to meet my requirements in my daily life chores.,3,0,4.4,2017-04-12 18:34:32,Hello! Sorry for the tedious wait! Write us a little more about your problem at 27applab@gmail.com. Let's try to help,2017-04-17 00:19:13,most_relevant,prox.lab.calclock +Steven Neusse,https://lh3.googleusercontent.com/-IfHSS9S4XMU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN1kwby3TpY2x_DYv_rIDRktMXCuQ/photo.jpg,"Finds all but my primary account on my phone, therefore I'm unable to even try. :/",3,0,4.4,2017-02-18 02:39:38,Hello! Check whether calendars are synchronized to your device. And check whether all calendars displays standard Google Calendar on your device?,2017-02-18 07:33:06,most_relevant,prox.lab.calclock +Mike St,https://lh3.googleusercontent.com/a-/AOh14GgaYSupdWqXrd3RSh7iKsw4Ed0VY4VeghjobUYZoA,Pretty but useless as the display is picking up calender events and putting them a day late.,3,0,4.4,2017-02-17 07:23:53,"Hey. I do not quite understand the problem. Perhaps the event was created in a different time zone, then the time zone has changed. +No offset should be no problem. +We are sorry that our app has not met your expectations.",2017-02-18 07:56:01,most_relevant,prox.lab.calclock +Thinus Botha,https://lh3.googleusercontent.com/a-/AOh14Gjm30-4_vIhDF3GOKrNsdkKtpQCJRyfXzk5L1BRjHI,Widget not making full use of size.,3,0,4.4,2017-05-08 22:26:49,Hello! Make a long press on the widget and stretch it to 4x4. Then go to the application settings and the slider further increase the size to the maximum.,2017-05-09 00:58:06,most_relevant,prox.lab.calclock +Rafa Zatel,https://lh3.googleusercontent.com/a-/AOh14GjfiUgTX8Iyk-twoypbm90zZ_4CmQylkEwX2qYj9g,The widget is not updating automatically,3,0,4.4,2017-04-04 19:14:13,"Hello! +Some devices may have power saving options, such as - ""Protected applications (Protected applications or other)"". Applications that are not included in the list stop functioning and are updated after the screen is turned off. +Please add the applications to the list of allowed.",2017-04-04 22:50:56,most_relevant,prox.lab.calclock +Preety,https://lh3.googleusercontent.com/a-/AOh14GhmnqI9VpyRnnNFqiQ6dQvFN-8uacI28el1vCkMWw,"Nice idea but the widget's ain't showing on my home screen, tried everything but hell, doesn't works.",3,0,4.4,2017-02-15 09:03:23,"Hello! In some cases, Android can automatically install applications on the SD card. In this case, these widgets applications will not work. +You must open the ""Application Manager"", open the application page and click the ""Move to the device."" (Some devices require an additional restart afterwards)",2017-02-15 09:06:18,most_relevant,prox.lab.calclock +Lukas,https://lh3.googleusercontent.com/a-/AOh14GjbBBD5XUGA1u7N0ENXhJDX8mJgO9JomyVsJ_a4bg,"I love the app, but sometimes the widget just freezes.",3,0,4.4,2017-02-14 12:26:43,"Some devices may have energy-saving options such as - ""Protected apps"". Applications that are not included in the list, cease to function, and updated after the display is turned off. Adding an application to the allowed list. +Good luck!",2017-02-14 12:30:39,most_relevant,prox.lab.calclock +Johan Rocklind,https://lh3.googleusercontent.com/a-/AOh14Gjbz3aAFefWJYjkcQMasxFxSNP-tG6Mq4TPb_BYoA,"Really nice, great new take on daily calendar but causes constant appcrashes",3,0,4.4,2017-02-06 17:04:13,Hello! Thanks for the comment! Please write to us about the crash on email 27applab@gmail.com,2017-02-07 06:08:40,most_relevant,prox.lab.calclock +Khaled Dostzada,https://lh3.googleusercontent.com/a-/AOh14Gi2Gw2NdRxf0orEAV0OyMowbiJEzrdfaNz0FLao6Go,Why isn't this also an Android wear watchface?,3,0,4.4,2017-02-12 19:56:55,"With your support, we will release this version. All you need is a little patience.",2017-02-13 12:01:45,most_relevant,prox.lab.calclock +Stefano the CAT,https://lh3.googleusercontent.com/a-/AOh14GiaI8gNXTkMvCIZE98SehY2FqijdOf0GKIxxMCzXw,What about Reminders?,3,0,4.4,2017-02-25 13:51:39,Hello! There are difficulties with a reminder. But we're working on it!,2017-02-26 01:04:23,most_relevant,prox.lab.calclock +malcolm macarthur,https://lh3.googleusercontent.com/-Z9MPRbDl-Wc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNzMpYhxx9AXcwwJBMtfciEFFMBnA/photo.jpg,The font is too small to be useful,3,0,4.4,2017-02-12 09:56:07,"Hello! Drag the widget to a larger area, and all texts will be larger. +So is email us any text you would like to make larger. (27applab@gmail.com)",2017-02-12 12:41:21,most_relevant,prox.lab.calclock +ဧရာ ေအာင္ခ်မ္း,https://lh3.googleusercontent.com/-_QUAl7G5g6I/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPskWOOI-wLWzn8byYHzbIhQfT4ww/photo.jpg,Good for Me .,3,0,4.4,2017-02-06 20:31:57,Thanks for the comment! Then we want to count on the good rating from you :),2017-02-07 05:55:31,most_relevant,prox.lab.calclock +Gopi Chilakamarri,https://lh3.googleusercontent.com/a-/AOh14Gj4LR5H5XdRvCIpYSEH6OWtFkCgrg_WEXMOUtkVdw,Dear developer. I'm unable to view my calendar events in this. Why it happens? How and why its happened. What is the alternative? Otherwise I would give 5 stars.,3,1,4.3.1,2017-01-08 15:44:01,,,most_relevant,prox.lab.calclock +Gilbert R. E5,https://lh3.googleusercontent.com/-VhqSa763YOQ/AAAAAAAAAAI/AAAAAAAArmE/AAKWJJNX2kKIZbzQVvSj5n9wu8m_YPIFHQ/photo.jpg,That's right. Nice addon but haven't really seen its power yet as I still don't have those colorful sectors show on the app,3,1,4.3.1,2017-01-12 02:38:28,"Thank you for message! A part from the fact that you asked - colored sectors. We added it to application. To do this, go to the app Settings and turn it on (""Use color events"" and ""Use color calendar""). +If you have any suggestions, please email us about them on 27applab@gmail.com",2017-01-12 04:08:04,most_relevant,prox.lab.calclock +Muhammad Ndaru Wibowo,https://lh3.googleusercontent.com/a-/AOh14GgJReay3AfC0RcOanE4eE5Dxdjl1frDkWhfX5renA,"It is a good app, but idk the widget keep freezing (not changing hour) in my device till i clicked the widget. But it when i get out, it freeze again. Plz fix it ASAP.",3,0,4.3.1,2017-01-13 19:54:42,"Hello! The widget itself does not freeze because it is automatically updated once a minute. Perhaps you have a case like device users - ""Meizu"". The system settings can be configured limit on the renewal of all the widgets in order to save resources and battery. +Check it out yourself. +I hope this information will help you!",2017-01-14 14:23:10,most_relevant,prox.lab.calclock +TECH UPS,https://lh3.googleusercontent.com/a-/AOh14GhGHQWzUqYgF_Lj27qIXKDyRmrTobG9KdjtL9LF,Average app,3,0,,2020-03-28 02:55:31,😥,2020-03-28 00:52:58,newest,prox.lab.calclock +Darvid Torres,https://lh3.googleusercontent.com/a-/AOh14Gh_J-w_P7OwAaIMwYMdLOQFa9zN6V8fOn_x57TbWQ,"It is good, but you should add some predefined themes in the palette and not only allow the user experiment",3,0,5.14.1,2020-03-08 22:05:27,"Hi. +We will do it.",2020-03-08 23:32:17,newest,prox.lab.calclock +Cory Gage,https://lh3.googleusercontent.com/a-/AOh14GijXgCB0IiSeaSTOTD9fZbCoeFqOz8opQ5-VfQEbw,"Confusing without a lot of explanation on what is what. Might be good when I figure it out, but it's not a real intuitive app and has a figure it out curve.",3,0,5.14.1,2020-03-02 16:42:39,,,newest,prox.lab.calclock +Reid Goeman,https://lh3.googleusercontent.com/a-/AOh14GjsKQ-vtuSsZT05lbpKKR2-NJHcdAk0-gZva6Ta9A,"I love this app ; the only thing that would make me like it more would be if the text wrapping on the sections made more sense. Sometimes the titles of my events get cut off and placed in odd spots in the sectors. Also I've found the colors are very limited. When it looks into my calendar to match the color my calendar has for events, it gets it wrong or doesn't have the color.",3,28,5.14.1,2020-03-01 16:35:20,,,newest,prox.lab.calclock +The shadow,https://lh3.googleusercontent.com/a-/AOh14GhFhhEDgLAEEM42V0vznz2zf9vmJ4Ep_1_bIQeGKg,"Good idea but there is on reapeat routine, i have to add evertime so make me hang more. And its work only 12 hours basis",3,0,5.13.2,2020-02-26 16:35:15,,,newest,prox.lab.calclock +ankush choudhary,https://lh3.googleusercontent.com/a-/AOh14GhS4vKKYA_H5RFgWP0T8vwZ6vszTU2jhsTcxteKXg,Felt very complicated when i am flying high.,3,0,5.13.2,2020-02-22 18:18:52,,,newest,prox.lab.calclock +Srihari Ravi,https://lh3.googleusercontent.com/-F-RDNzh-IEI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPyLrOhPeVz7LNp0MUL8AgzBAGoKg/photo.jpg,This just displays your calendar as a time sector. Whenever you click on + it redirects to calendar.,3,0,,2020-02-20 21:48:36,,,newest,prox.lab.calclock +Neil Tank,https://lh3.googleusercontent.com/-QYtjvIOmMb4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNeuUCna6LfsKjwikxk1QCe1tr-yQ/photo.jpg,"Limited use so far, every time I i touch the calendar icon the app changes to calendar but will not revert back to watch face unless i uninstall and reinstall no back button",3,2,5.13.2,2020-02-17 21:10:25,,,newest,prox.lab.calclock +venki karai,https://lh3.googleusercontent.com/a-/AOh14GjVMBSjgYiYVHb9MdLHAZi0ZlUpDEY29VErAJ2e,Lot of difficult methods to organize.🙅‍♂️,3,0,,2020-02-16 03:54:16,,,newest,prox.lab.calclock +Shweta Singh,https://lh3.googleusercontent.com/a-/AOh14GhOkPfKr5cPoX__f4bLFWO-pAGtOtpHy24RYeeA58Y,Best app to mannage your time,3,0,5.13.2,2020-02-12 09:20:46,Please support us with a more positive rating ;),2020-02-12 09:45:00,newest,prox.lab.calclock +Bhavesh Budhiraja,https://lh3.googleusercontent.com/a-/AOh14GieroIa2NAYzxb1mRVNT9vAN2HDiDq6tm-78GEJHw,Not able to open events into another calender app. It always opens events in my native mobile calender app,3,0,5.13.2,2020-02-06 15:27:13,"Hi, +Go to the ""Application Details"" of your first calendar (the calendar you want to unpin from the application). +Scroll to ""Default Usage"", click ""Reset Defaults."" +After that, again click “+” in Sectograph and “introduce” it to the new calendar.",2020-02-06 15:34:10,newest,prox.lab.calclock +Joshua Little,https://lh3.googleusercontent.com/-mtWppDheyhY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMpfB-qnPykKyLScPsINWplUQ_peQ/photo.jpg,"I like this app a lot, it is refreshing but to be 5 stars I should have more flexibility in setting intervals, like selecting days of the week so I can have work and nonwork day schedules that easily repeat. When I add something to a schedule a 10min before alarm should not be default, I'm using the app to plan my day primarily. Finally each new entry should default its begin time to the last entry's end time, with the new end time shortly after, say 30 min later. That would be a 5 star app.",3,2,5.13.2,2020-01-29 18:51:49,,,newest,prox.lab.calclock +Willis Greaves,https://lh3.googleusercontent.com/a-/AOh14GjISREAc0vuZ4ukrGmK0E29mgU4T4qCv9xVC-Sk,It is useful but very user friendly,3,0,5.13.2,2020-01-29 11:51:13,,,newest,prox.lab.calclock +Camilo SH,https://lh3.googleusercontent.com/a-/AOh14GgDmRijBKtczgcmcswlePuzU19SB-3obBGt9wxnMQ,It's a cool way of getting at a glance your schedule. The theme could be more colorful,3,0,5.13.2,2020-01-21 17:45:53,,,newest,prox.lab.calclock +Yang Chen,https://lh3.googleusercontent.com/a-/AOh14GiT_DQ7Jt41M6B3jPMc9czL2HKFkG8zuPkW1ePTIQ,"Great app and well thought of, love the wear os integration. However paying for the full version, I wish there was more customizable options such as custom background or custom font for the numbers. Would be great to include that.",3,1,5.13.2,2020-01-21 06:13:45,,,newest,prox.lab.calclock +Georgia Zanti,https://lh3.googleusercontent.com/a-/AOh14Gh_gVvhF6wqucdNZUhX7bplJx5gC-rODT8RIrhQppA,Good idea but I cannot connect it with my smartwatch,3,1,5.13.2,2020-01-14 04:57:09,,,newest,prox.lab.calclock +Bilal Ahsan,https://lh3.googleusercontent.com/a-/AOh14GhKpXJrjffa5fl3v4SdKgfCiywTj0kjIPN-h7MYTA,Well this is awkward but I cant even find widget option for this app in phone. Downloaded just an hour ago so this has to be the latest version I believe. The whole purpose was to have a clock on my homescreen that has my calender synced. It doesnt seem to that. May be I'm missing something here? I'll definite give an update of this review if I can figured it out.,3,3,5.13.2,2020-01-13 09:13:16,"Hi, +To place the widget on the home screen, long press on an empty spot on the home screen and click on ""Widgets"". +Find the widget and drag it to your home screen. +After that, make a long press on the widget and stretch it to the desired size",2020-01-13 09:34:45,newest,prox.lab.calclock +Eszti UK,https://lh3.googleusercontent.com/-drW8tcRVEhE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNRVhlU1ltMBbswCSzIz8fnyVwwJA/photo.jpg,"pretty app and probably useful too, I just don't like having to create calendar entries. I thought tasks would be managed within the app",3,0,5.13.2,2019-12-31 06:43:16,Happy New Year!,2019-12-31 06:59:00,newest,prox.lab.calclock +Vic S,https://lh3.googleusercontent.com/-9EgY5HoUaVc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO4BGkGunUC1dv1WT0k_Bj98s8CfQ/photo.jpg,"Seems like a good idea but the widget is invisible. It is there, I can see the edges when I try to move it but it's completely invisible. I tried decreasing the widget transparency and deleting cache but to no avail. Devs, any clues? Thank you",3,0,5.13.2,2019-12-11 22:06:19,"Hi, +It seems your device killed the background process of the widget to update. +Check the energy saving and background applications settings in the Battery settings and on the application page. +You need to add the application to the white list.",2019-12-12 01:13:21,newest,prox.lab.calclock +Susanna LeBeau,https://lh3.googleusercontent.com/a-/AOh14GiEY_rkvx990T9QG2UwFRtb7zp4kgJTos1b_4Sggg,"When I first downloaded this app I loved it. I enjoyed being able to see my day at a glance and everything was working fine. For some reason the widget will not open the app for me anymore and I have no idea how to fix it. I tried to uninstall the app and install it again and it still doesn't work. Anybody has any suggestions, I'm open to them. I use an android. Just to clarify, the app itself is still working, the widget is not.",3,3,5.13.2,2019-12-09 06:02:04,"Hello. +We made the default ability to click on sectors of the widget. +To return, click on the widget button (upper right corner of the widget) and ""Customize widget buttons"". Choose the first option",2019-12-09 06:48:31,newest,prox.lab.calclock +Rickston Edinberry,https://lh3.googleusercontent.com/a-/AOh14GhLG2HQsSLUVCLibvzw_LkjKMhSQA5_CyGEVDhU,"Not sure yet,still testing it",3,0,5.13,2019-12-04 11:59:53,,,newest,prox.lab.calclock +Katherine Phillips,https://lh3.googleusercontent.com/-fg1_6VkH6Qg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP5UhpcQy75u0ljI18CQa4PHXs2ew/photo.jpg,"We need an update!! I love this app and use it daily but the fact that we haven't had an update in months bothers me. Here are some suggestions I have: add a settings option to default the amount of time you spend on a task (I use 45 min.), more color options for tasks, an option to change the notification sounds for each entry, a 'push all back an hour' option, and more widget options! Thank you I love this app but we could definitely use some upgrades!",3,8,5.12.1,2019-11-27 16:03:12,,,newest,prox.lab.calclock +Daniel Reed,https://lh3.googleusercontent.com/-l4_XWls4-x4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP9yIGJ96A7TAYI65vaxy0uOGCe-w/photo.jpg,it is difficult to set an event or goal without a tutorial,3,0,5.12.1,2019-11-13 14:52:51,,,newest,prox.lab.calclock +Abdullahi bala Abdulrasheed,https://lh3.googleusercontent.com/a-/AOh14GivuUge1umdhlCDEXFmFUhs8XPT2H3Ct0h56JWbYQ,Good,3,0,5.12.1,2019-11-08 14:42:15,,,newest,prox.lab.calclock +Robert Caperton,https://lh3.googleusercontent.com/-LmrB15WdelE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOZGemT33szZSXcGnvuerxL4_tTXQ/photo.jpg,I don't friggin know yet. I JUST installed it. Note. I haven't spent any time on it!,3,0,5.12.1,2019-11-05 22:52:57,,,newest,prox.lab.calclock +Shafi anwar,https://lh3.googleusercontent.com/a-/AOh14GiU83ztG0owgr83DNdwLANiEAK0veeXdcHd5p5nLQ,"The app is really useful, one must download it but it just have one problem that we need to refresh the widget all the time to see current time, unless we don't refresh the widget we cannot check the upcoming event through widget, if you can solve this, this is one of the best app for daily use and surely you'll get more pro version users of this app. Thank you.",3,5,5.12.1,2019-11-04 04:22:21,"Hello. +Please email me at 27applab@gmail.com, I will help",2019-11-04 08:22:29,newest,prox.lab.calclock +Joanne Burrage,https://lh3.googleusercontent.com/a-/AOh14GiJjUvpHXnxhh7nuhe6CgalPOUAU2rqJtv5T6yL_w,"Seemed like a good app, but doesn't always show your plans. It's linked to my calender and I've added quite a few things for the month, but it only shows on this app once and then disappears next time I look at it.",3,94,5.12.1,2019-10-30 09:55:25,,,newest,prox.lab.calclock +Lord Kaiser,https://lh3.googleusercontent.com/a-/AOh14GikSEkYlEN93FhJfMOLu9pMEkZFNNLNEbHXWTSDsw,I do not understand how I will add events. I tried adding events but it only shows up in my calendar not at the sectograph. It seems to be useful but I need to know how to make it work.,3,1,5.12.1,2019-10-24 13:47:41,,,newest,prox.lab.calclock +April H,https://lh3.googleusercontent.com/a-/AOh14GjLjyScGZp2XMfQDj6vaCKb099fGfAcEUCYixkE,Widget doesn't work,3,1,5.12.1,2019-10-24 03:43:05,"Hello. Please email me at 27applab@gmail.com, I will help",2019-10-24 10:13:06,newest,prox.lab.calclock +Mark Bennetts,https://lh3.googleusercontent.com/a-/AOh14Gjjm4EfCLP8f3xGs8cYd_LyMl92wKTyBdBAq6HxTw,I'm liking it but it seems to have some bugs. It's currently 01:13am but the widget and app are still showing yesterday's calendar sectors and event list.,3,1,5.12.1,2019-10-23 00:15:26,,,newest,prox.lab.calclock +sbcontt,https://lh3.googleusercontent.com/a-/AOh14Gg_G8mRNDyqbEwYT8TRxis0RZCNE_eZLg5w5NIbOw,Just a fancy Calender widget. Sure it looks fancy. But it doesn't add any functionality. It can't do much else. It can't track progress.,3,0,5.12.1,2019-10-15 01:51:33,,,newest,prox.lab.calclock +Felix R Rivera,https://lh3.googleusercontent.com/a-/AOh14GgljBQNm3lGIDrE9e5ZYKJiGo7h9PvmsxuzEPt6cA,I love the design and the app in general. I would give it 5 stars if it would allow to size the image and the information displayed.,3,1,5.12.1,2019-10-11 18:40:26,Hello. You can resize the home screen widget. Long press on the widget and drag it to the desired size.,2019-10-11 22:05:26,newest,prox.lab.calclock +Onuh Chibike,https://lh3.googleusercontent.com/-KsCiWKwfHs8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOVnnISH7bnDd4W0Zdxh4hM5Jx8xQ/photo.jpg,Great app👌🏿👌🏿👌🏿,3,0,5.12.1,2019-10-03 15:36:32,,,newest,prox.lab.calclock +Arjun Batra,https://lh3.googleusercontent.com/-zSALO7gS5_g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPt4Wau39pamp0iYglMQd3gPhpsvw/photo.jpg,Everything good simple and easy to use the best one but you dont get reminder as alarm so that you can actually know the schedule its just give a notification which can be easily ignored by mistake .....please fix this and link it up with alarm too just like you did with default calendar app,3,11,5.12.1,2019-10-02 14:12:39,,,newest,prox.lab.calclock +Lode ATe,https://lh3.googleusercontent.com/a-/AOh14GgjeuD0sTx1rQOGBcI8X8xZbKH31KhLM0HXUE5d,too tricky. complicated ..not immediate.. maybe isnt what i need...i need something more simple..,3,0,,2019-09-27 15:44:59,,,newest,prox.lab.calclock +Mamoru Tanida,https://lh3.googleusercontent.com/a-/AOh14GhArhtddXywTYjNi5Li4XNMFjv4tXEAaGfA8B-M,Works well until you purchase Pro. After this all your calendar dates are displayed one day ahead (your events on a Monday in your Calendar are displayed on Sunday).,3,2,5.12.1,2019-09-21 07:34:22,"Hello, +Pro mode has been around for over a year. Everything should work stably. Please send me a couple of screenshots at 27applab@gmail.com",2019-09-21 09:47:10,newest,prox.lab.calclock +Samarpit Masih,https://lh3.googleusercontent.com/-2DRa7TJK-mY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNH8y9GWRIseGpAMlm-ULjaNOGLcA/photo.jpg,"The time in the center of the widget, most of the time does not get updated. You have to open the app and then the widget is updated.",3,0,,2019-09-20 08:29:07,"Hello. +Please write to me at 27applab@gmail.com, I will help",2019-09-20 08:30:00,newest,prox.lab.calclock +Mikayla Hellwich,https://lh3.googleusercontent.com/-FgH_JjKZ5gE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOcnultmDz38gV7Migq6-wbD2Wc5w/photo.jpg,"It doesnt seem to be possible to delete a single event in a series. So if I want to block off an hour every day for the same thing, but then I have to schedule a one-off thing during that time, I can't just delete one occurence and leave the rest of the future occurences alone. I love the app otherwise but this problem is pushing me toward a different app.",3,0,5.10.3,2019-09-12 05:35:05,,,newest,prox.lab.calclock +mister Raccoon,https://lh3.googleusercontent.com/-LUJ0bv4VhrQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPFuq-FPfHw4UPR4G33bPQoOqtWhg/photo.jpg,Good app but need improvement,3,0,5.10.3,2019-09-06 20:24:01,,,newest,prox.lab.calclock +Hitesh Basera,https://lh3.googleusercontent.com/a-/AOh14GiDISMdYQLHJpN6at7fmU9J4UG0skrxfG1_W4dS,Its a nice app. Liked the design also. No option to copy paste same schedule to next day.,3,0,5.10.3,2019-08-27 03:16:27,,,newest,prox.lab.calclock +Beli Daza,https://lh3.googleusercontent.com/-OFq4lpgr6ME/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNsyqY_FepKFoF2Wk9W0qeHy0aHLw/photo.jpg,"This is a good planner because it's easy to use and understand, but the widget consumes a lot of the phone's battery.",3,0,,2019-08-26 22:21:35,,,newest,prox.lab.calclock +Alfie Zikry,https://lh3.googleusercontent.com/-OvKaKt9UdHA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMGF06VOZAa4uEPryZWDdvl3FGS8g/photo.jpg,"the app work just fine, it was my commitment that had problem 😂😂😂",3,0,,2019-08-20 13:09:06,,,newest,prox.lab.calclock +Ross Jaeckel,https://lh3.googleusercontent.com/-R2f-us0QQtU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNqnXvNV2wxA4gJjcf79qF9O4waGw/photo.jpg,still trying,3,0,5.10.3,2019-08-19 03:00:18,,,newest,prox.lab.calclock +Peggy Crofut,https://lh3.googleusercontent.com/a-/AOh14GhgTQhj56jTPFx5NYas76Lge1XrQbnwy3x_-yxd_w,"Got this, loved the free version. paid $3.99 for PRO and still don't have the ability (or can't figure out how and there are no instructions) to set different calendars on two widgets on my phone. I'll be happy to give you 5 stars if you send me a how-to. Also, it says there is time tracking. Does that mean I should be able to do a start-stop on something while I'm doing an activity?",3,2,5.10.3,2019-08-16 15:05:50,"Hello. +Place the widget on the home screen and click the widget button (in the upper right corner). After that, in the menu that opens, click ""Select calendars for widget."" +Tracking, here we are talking about visualizing time periods. It’s like a general concept and not a concrete function :)",2019-08-17 04:28:08,newest,prox.lab.calclock +cute itcampus,https://lh3.googleusercontent.com/-GQFX4TvA6aw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMbfgD7qajyJrJUTI17QgrrrapErA/photo.jpg,average features,3,0,5.10.3,2019-08-15 06:03:15,,,newest,prox.lab.calclock +Johnny Sanngoen,https://lh3.googleusercontent.com/a-/AOh14Gh8mywlCkPPafgkOf15pJ9ClmjmDAKGqqVIhwIOtA,"It's pretty neat. I love the how everything pops out on the clock. Only thing is I tried scheduling things after 12 PM and it wouldn't pop up and I notice it only shows 12 hours at a time. If you buy the pro version it comes with the 24 hour feature, which I think is totally worth it. Seeing 24 hour option you can see everything from start to finish and not miss anything.",3,0,,2019-07-26 06:56:30,"Hello. +Yes you are right. It works like a 12-hour clock. +That is why it displays exactly 12 hours. 24 hours we added much later, at the request of users.",2019-07-26 07:23:17,newest,prox.lab.calclock +Michael Große,https://lh3.googleusercontent.com/-pEMwD_CwWUc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMM2BJpMMx6xO3msECO067m53p4LQ/photo.jpg,"nice, but there seems to be no way to hide declined events? that makes it much less useful. Would give 5/5 otherwise",3,0,5.10.3,2019-07-24 08:08:51,,,newest,prox.lab.calclock +Kevin Wood,https://lh3.googleusercontent.com/-DAC10X39xUM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO51uCjqi9MXgpPo80SfSYJMkV_eQ/photo.jpg,"it just opens a-calender, so I'm not sure why I need something between me and my regular calendar app.",3,0,5.10.3,2019-07-24 00:17:10,"Hello. +The application visualizes calendar events in a round shape. It is intended for this purpose, because calendars offer only a linear form.",2019-07-24 00:55:33,newest,prox.lab.calclock +Marc Jackson,https://lh3.googleusercontent.com/-Zg87qmwjZ5w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOCO4VGlMiB4ijsNPtTZLi01rBPlw/photo.jpg,"Nice app! I just cannot work out what these random numbers are within the pieces of the pie... 35, 30, 7:35, 30, 8:35, 30, 8:35. it is clearly a countdown of some sort but bears no relevance to anything obvious. How can I remove these? UPDATE TO REPLY: Thank you, but I am seeing 7x this info around the pie and personally it serves little use. Can this function be disabled?",3,1,5.10.3,2019-07-22 04:40:16,Hello. Please send me a screenshot at 27applab@gmail.com,2019-07-22 06:07:24,newest,prox.lab.calclock +Ayse Sahsivar,https://lh3.googleusercontent.com/a-/AOh14Gg3_L15RaV-awSvQDbO9c8ZmOIWEWuQsFMVOEoFvQ,I uninstalled because the app was a little confusing. it has a great idea and all bit I just didnt quite get how to use it...,3,0,,2019-07-20 03:53:04,,,newest,prox.lab.calclock +Deepak Khetwal,https://lh3.googleusercontent.com/a-/AOh14Gg17Tm3X39Cx-NkQbwR1XDr30rb9GeIAvGDu2oYCQ,great app just need one thing is second hand also like minutes and hours the. i will 5 star and its best app,3,0,5.10.3,2019-07-19 17:30:34,Hi We will try to add,2019-07-19 21:27:55,newest,prox.lab.calclock +Andrew Nelson,https://lh3.googleusercontent.com/a-/AOh14GhLJyNB-8-QKyA_ixAIAz7IEEwJ0N5geFMOS-nO1w,updated:. was confused that the event list in the actual app wasn't showing events scheduled for the next few days. The widget will only show events in the next 12h. The event list in the app also only shows events in the next 12h. I think this list should list events for that entire day. this means i still depend on other apps for an agenda view.,3,2,5.10.3,2019-07-18 02:02:44,"Hello +Please email me at 27applab@gmail.com, I will help",2019-07-17 23:03:27,newest,prox.lab.calclock +TheSmunfa73,https://lh3.googleusercontent.com/a-/AOh14GgUvCPNhTlRPS_gXR9-gZzoU-eMU76D6MCNXRnP5Q,needed a standalone platform which does not connect to any of my calendars.,3,2,5.10.3,2019-06-27 15:25:43,,,newest,prox.lab.calclock +Ben Foley,https://lh3.googleusercontent.com/a-/AOh14Gi3eIM-tTvXgidexIc-_zF9KDdprt29DMbo_vBq,Seems good but I would need admin approval to access my work Outlook calendar so it's pretty unusable for me.,3,1,5.10.3,2019-06-22 23:24:08,"Hi +The application is powerless here. This is a feature of your corporate policy. In this case, you generally have to get administrator permission for any application that receives Outlook events.",2019-06-23 00:38:27,newest,prox.lab.calclock +COSCO,https://lh3.googleusercontent.com/a-/AOh14GhEpQ6SkKrSr472ZmXIYL1gmYqZD2UcQvUTm1ez,really great concept but .......not much useful and not even that beautifully eye-catching thing,3,0,5.10.3,2019-06-20 11:35:53,,,newest,prox.lab.calclock +Janine Paradiso,https://lh3.googleusercontent.com/a-/AOh14Ghd3ZzjdiDJn-_XLePLs9Oa7SXo__ueiaWo7LXd,I really like the visual round of this app however I would love to be able to personalise it more easily...,3,0,5.10.3,2019-06-17 10:01:16,,,newest,prox.lab.calclock +Deepak kumar,https://lh3.googleusercontent.com/a-/AOh14Gig1s9f0GqKCHFKpKld77Y_Hm0rV0XauG0nxJthog,it 's good,3,0,5.10.3,2019-06-02 13:11:02,,,newest,prox.lab.calclock +Abbie Sydes,https://lh3.googleusercontent.com/a-/AOh14Gh2dFMwR08RCFl3hrFo_bkVimrr6KsE7o1d7eVJ,good so far. only used a few times may review later on.,3,0,5.10.3,2019-05-27 21:22:26,,,newest,prox.lab.calclock +L W,https://lh3.googleusercontent.com/a-/AOh14Gizgqf2ftvJ24aUzoMzN6Iz2OS0N8SNuK9Vn3_zHQ,"Sometimes it shows wrong time, make me confused most of the time",3,0,5.10.3,2019-05-23 02:36:55,,,newest,prox.lab.calclock +redsun selassie,https://lh3.googleusercontent.com/a-/AOh14Ghq0oUP6aotAsD69nP0t0l2M_mkRTD2jYzdyOOW,its ok,3,0,5.10.3,2019-05-16 13:11:15,,,newest,prox.lab.calclock +Alex Qxi,https://lh3.googleusercontent.com/a-/AOh14GgdGdwCNvNbKnyJDmpXeMlwkmNue9bSE2QgNhyV3Q,It's an interesting tool but having one or 2 things on my calendar per day it does really make sense for me to use it. Looks nice.,3,0,,2019-05-16 02:01:16,,,newest,prox.lab.calclock +David Campelo,https://lh3.googleusercontent.com/a-/AOh14Gj-8jr5d1egefexPgiJAVVG3AC1YlIhtXz4aGwIFA,I don't like to put on google calendar every schedule,3,2,5.10.3,2019-05-14 17:27:57,,,newest,prox.lab.calclock +Akash Das,https://lh3.googleusercontent.com/a-/AOh14GjAFZ654Cp1AJAKQNu0lukuxmNYqJgF_cDEhJRY8g,app is great but the events are not getting created . Only one two events for a day is created than even it shows created its not,3,0,5.10.3,2019-05-07 07:46:59,,,newest,prox.lab.calclock +CEO Drymix,https://lh3.googleusercontent.com/-kTG26N7nlE8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMpdiq2FGxzoYqcnIBrK5YCL4awcA/photo.jpg,"Added feature synchronizer Connect, added the note writing feature during the call, added a feature synchronized with the mail",3,0,5.10.3,2019-05-01 21:12:49,,,newest,prox.lab.calclock +Io,https://lh3.googleusercontent.com/a-/AOh14GhunsHj_IMGonug0948SOOxedFrW_qvGVZOKG4dTA,I would've liked to use this app but sadly it doesn't seem to recognize European daylight saving time. I've gone through the settings twice. This is a deal breaker I'm afraid. I would still recommend people try the app however if the live in location where DST is rightfully ignored. The main concept is really clever and the widget is beautifully designed 👌👌,3,30,5.10.3,2019-04-27 17:51:01,,,newest,prox.lab.calclock +Dmitrii,https://lh3.googleusercontent.com/a-/AOh14GhQquckQF_L0Au47kY98dAtjXm-Agpj0ZfTuR--nsM,Wish i could add events without having anything to do with Google calendar,3,0,5.10.2,2019-04-13 06:21:29,,,newest,prox.lab.calclock +Undefined Undefined,https://lh3.googleusercontent.com/-Ckjm6Bl2XDY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOmc4BFDmta1jMCvfuCl8lNP9E22g/photo.jpg,cant get demo to play .its probably a great app..,3,0,,2019-04-12 21:56:12,,,newest,prox.lab.calclock +Kristianna Stevens,https://lh3.googleusercontent.com/a-/AOh14Gjg-9PkeDk_OL-YjuJj6x8vIFpEfGch3m_yn9Pe,"I love this app and use it with my watch but have been having a few problems. firstly I purchased the pro version off of my main google account. But the app is connecting to the other google account I have on my phone. I dont want to purchase pro a second time and the only way that I have found to disconnect it from that second account is by removing that account from my phone. Secondly, since daylight saving my events have been an hour off until I sync my events. Will change if probs are fixed",3,0,,2019-04-04 16:06:31,"Hi, sorry for the long wait for my answer :( +Please email me at 27applab@gmail.com, I will help with rebinding the purchase to another account.",2019-04-08 04:34:11,newest,prox.lab.calclock +Bea Z,https://lh3.googleusercontent.com/a-/AOh14GioM5UEDmxINTXtIuWV5bJcpVidbVZQQx55Fr7YfQ,Looks cool but I do not find it actually helpful unless you write down everything you do every hour every day.,3,2,,2019-04-04 00:26:01,,,newest,prox.lab.calclock +Elise in the Attic,https://lh3.googleusercontent.com/a-/AOh14GjoGVHjmnOMPUgHfeQXCmoUql5REi7U6LmqqAKpFQ,Sorry I dont get it. I have no idea why seeing my schedule on a circle is somehow better than a rectangle. What am I missing?,3,0,5.9.1,2019-03-31 18:22:54,,,newest,prox.lab.calclock +aarif hussain,https://lh3.googleusercontent.com/a-/AOh14GhjZ3bbUvWgeFw93HNXQeEVwzc-YpCHQik3MJZySg,awesome app,3,0,5.9.1,2019-03-29 02:25:52,Thank :),2019-03-29 03:03:29,newest,prox.lab.calclock +Christopher Deering,https://lh3.googleusercontent.com/a-/AOh14GhQluaf1GbU72sMlIlL7uKLRc3-q03mWpjhGfwS,It would be much better with an ability to have a report at the end of the month as to what was worked on and when. Ie statistics.,3,0,5.9.1,2019-03-28 19:53:45,,,newest,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"can you make this app a separated planner and can make an event without using calendar? i really like this app, but i want this app as my daily task organizer and my calendar as a big event organizer, so it won't jumble up in my calendar.",3,2,5.9.1,2019-03-28 05:29:26,"Hi. We are planning to add our proprietary storage to events. +Temporarily you can create in your calendar a second calendar for the routine.",2019-03-29 10:47:19,newest,prox.lab.calclock +Nikunj Mangukiya,https://lh3.googleusercontent.com/a-/AOh14GhfYp44fSEUD0Mf2C_seiUJQnHdnPLhby81u8LQsg,okk,3,0,5.9.1,2019-03-22 02:33:11,,,newest,prox.lab.calclock +Patrik Bodó,https://lh3.googleusercontent.com/a-/AOh14GiXRxMmbmk7QSPH3X-4vGZyxiZPynZ8nAtY6PXb,"Hi! the range of the nuce coloured sectors does not cover the time interval of my events. It had been the best reason why I chose this app, to have an easy, straightforward overview of my plans. Why doesn't ut work as it is shown on the pictures?",3,1,5.9.1,2019-03-14 13:40:04,,,newest,prox.lab.calclock +Kristen Beavers,https://lh3.googleusercontent.com/-LuqwQaf7Zm8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMXXzum3h6a6wOHW37trv-plBbE4w/photo.jpg,"I really have wanted this app to work, I'd really prefer to see my day filled on a clock in such a way so I even came back to try again, however I'm having trouble putting tasks in! After a certain amount they stop saving. I'm also struggling to see the clock in a way that makes sense. It looks very jumbled. Best of luck, I love the concept!",3,2,5.9.1,2019-03-10 01:38:32,,,newest,prox.lab.calclock +OBI NICHOLAS,https://lh3.googleusercontent.com/a-/AOh14GjaktDD_NaRh3WbV-7lWb6dRoyQq60E1zkCJuMP,Good app but needs to add daily To do List,3,0,5.9.1,2019-03-04 05:55:36,"Hi. +On the event add / edit page, use the event repeat option (by day of the week). Thus, repeated events will need to be added only 1 time. +Have a nice day!",2019-03-04 06:59:09,newest,prox.lab.calclock +Paul Kelly,https://lh3.googleusercontent.com/a-/AOh14GhA7AIB5BIIG9jFslB5omS8m_1PS_fRgYsGeXqOlQ,"I had to pay for the option to change the colours, then I had to pay more to customise it further... exploitative money grabbing like this ensures I'll never recommend it to anyone else. Works well though",3,1,5.9.1,2019-03-02 01:49:13,,,newest,prox.lab.calclock +Luna R,https://lh3.googleusercontent.com/a-/AOh14GiKXsolfSaq5u7IiWPnXNAbr_EOjJWuCKbQVivWG4o,"a little confusing at first, but it transfers your calendar and alarms to the app. one bad part is it adds everything on your calendar. like if you add ""eat breakfast"" it'll go on your calendar. so that's only a little annoying since my calendar needs to be clear and easy to read. but besides that. it works well",3,5,5.9.1,2019-02-25 07:48:58,"Hello! You may find it useful to create a separate calendar for your routine. Go to the application, to the page ""My calendars"", click ""+ Add more."" Create calendars for any purpose.",2019-02-25 08:00:48,newest,prox.lab.calclock +Habib Forootan,https://lh3.googleusercontent.com/a-/AOh14GgyZtRJ2jU39mfXeUd1YPXGB8wJNEEY2CXk-rm-vA,"This is a great app but... I purchased it to be able to use it with my Samsung gear s3, little did I know that I can't use it with my watch bc this app was made to be used with android wear (which I found out later my bad). So, will you be working on making this app compatible with Samsung gear? That would open your market quite a lot with Samsung gear users. I've been using the wearable app with my watch but it doesn't work smoothly at all. Please work on that if you can, thanks!",3,13,5.9.1,2019-02-22 22:38:01,"Hi! We will work on it. We need Samsung users. +I also apologize that the application has misled you: (",2019-02-23 14:25:25,newest,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,good app but had to uninstall. kept adding reminders to all off my tasks and scheduled events even when repeatedly de-selecting them. very frustrating and inconvenient to get the notification and the email notification.,3,205,5.9.1,2019-02-20 03:01:29,"Hello. +You have enabled the creation of reminders when creating new events. +Disable reminders on the add / edit events page. +You can also customize the sound of notifications. +Go to the device settings - ""Sounds"" - ""Notification sounds"" - ""Calendar notification"". Adjust the sound.",2019-02-20 03:20:48,newest,prox.lab.calclock +Anssi Nevalainen,https://lh3.googleusercontent.com/a-/AOh14GjFK_ajlvqfpMyBmwEyTRthuX5BN7NZRkxUgfU0sA,Time zones not supported? Missed a meeting today... :(,3,4,5.9.1,2019-02-08 12:19:43,,,newest,prox.lab.calclock +Brajeswar Das,https://lh3.googleusercontent.com/-bevuBpPqsT4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOrQ0hls15dmHjRpoWgymhZnLEAAA/photo.jpg,Not as I required,3,0,5.9.1,2019-02-07 05:46:04,,,newest,prox.lab.calclock +Mrs. Kathleen Gilbert,https://lh3.googleusercontent.com/a-/AOh14Gjsct5k253kHWbreGVf-iwcY4X-tmAOLWhaReDD2Q,its db un to use,3,0,5.9.1,2019-02-05 20:35:15,,,newest,prox.lab.calclock +Baibhav Agrawal,https://lh3.googleusercontent.com/a-/AOh14GjwIkWKJiPjBJccD3lcPhxb934-wjbxQcSsNhC2sg,Is the feature of different colours for different tasks available for the free version too ?? I m actually not able to set it that way. No sir... I did the way u told me to do... It is still not showing different colours,3,0,5.8,2019-01-29 07:33:07,"Hello! It's available. +On the page for adding / editing an event, do not use the standard calendar of the device ""My Calendar"", because it may not support the color. +Use the account calendar (... @ gmail.com) and the color selection should appear.",2018-06-13 10:47:55,newest,prox.lab.calclock +Zoe Lockett,https://lh3.googleusercontent.com/-BrOew8rANvk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPfcM5BhJAMTPqP3TIlL2c2wCOfQw/photo.jpg,"I have changed my mind and have bought the 24hr clock version. once the app is fully updated and is working how I want it to use, I will review accordingly. I have gave 3 stars as it is the ""middle ground"" for now.",3,0,5.8,2019-01-28 19:05:11,,,newest,prox.lab.calclock +Naval Kishore,https://lh3.googleusercontent.com/a-/AOh14Gi7WHUdbE_QZsMYjUU0LRQzMqAqjBZrqBgsHio,"For 24 hour version, need to buy app. no free trials",3,0,,2019-01-26 20:22:57,,,newest,prox.lab.calclock +Malik Muhammad Younis,https://lh3.googleusercontent.com/a-/AOh14GilQe7Og0oBGpasbUY0nAsogRSBdqDNgDJTiykx0A,fine,3,0,5.8,2019-01-10 16:42:45,Our team thanks you for your support!,2019-01-10 22:47:05,newest,prox.lab.calclock +Reagan Downing,https://lh3.googleusercontent.com/-anEtfxi9b_s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOnHksmCOkOmH0zxjxqLfBnyk-SeA/photo.jpg,"I would give this 5 stars, if not for the misleading in-app ""smartwatch settings"" extension purchase option. I love the app, but I purchased the extension to use it on my galaxy watch and I have been unable to connect it to my watch and use any of the settings for a ""wearable"". If this app can be used on the galaxy smartwatches I would love to know how.",3,0,5.8,2019-01-10 05:45:07,"Hello! +Smart watch support is completely free. +Please email me at 27applab@gmail.com",2019-01-10 06:32:16,newest,prox.lab.calclock +Akanbi Bamikole Williams,https://lh3.googleusercontent.com/a-/AOh14Gg4yGWgVLr5Yh8oVL-GDpeqa4CH_MRWoFqTiA-j,Nice visualization of personal activities,3,0,5.8,2019-01-09 18:39:00,"Hello! +Thanks for your support. We will be grateful for a more positive rating from you 😃👍",2019-01-10 06:26:10,newest,prox.lab.calclock +Burhanuddin Alias,https://lh3.googleusercontent.com/a-/AOh14Ghp_JfBSkG5JLoU-tt1yWLDxK7j1D3fHpYqR_e2,ok but need to improve,3,0,5.8,2019-01-08 15:54:00,,,newest,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,not bad,3,0,,2019-01-04 13:49:17,,,newest,prox.lab.calclock +Kankonde Ndahiro,https://lh3.googleusercontent.com/-eEbQbVqvkkc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOsOpUx7CiuUpwjeKbHVv7p04NmNA/photo.jpg,"So far, its working for me. I needed something that could ring or vibrate.",3,1,5.8,2018-12-30 17:41:55,,,newest,prox.lab.calclock +Sachin Rajkuvar,https://lh3.googleusercontent.com/a-/AOh14Gii_Jlmjuj3yp9A-YU7s9Co9hWm-V6HL85vVGYSEw,Still want to go thoroughly with this app,3,0,5.8,2018-12-21 09:33:19,,,newest,prox.lab.calclock +Jian Li,https://lh3.googleusercontent.com/a-/AOh14Gh4cJlDu4VpemTjaHGi9BfEjAD0elQARsN97kDCmtk,any way to resize font so short events can still have a complete (or at least longer than 2 words) display?,3,1,5.8,2018-12-19 15:11:52,,,newest,prox.lab.calclock +Christian Brooker,https://lh3.googleusercontent.com/a-/AOh14GgpqhkQVIHKV5zvaOzIWMr77JnmogyoNMN7n3Qz2Lw,cool idea. woupd be good if it could access my outlook calendar,3,0,,2018-12-18 11:26:02,Hello. We will add this option soon. Have a nice day!,2018-12-18 16:02:01,newest,prox.lab.calclock +Didi G.,https://lh3.googleusercontent.com/a-/AOh14GiSXY3NhIpekczc15F_gSo3-5yTvjmsuv34tr4u,It would have been better if it kept its own database rather than relying on the calendar. I don't want to put trivial things to plan my day in my calendar. Uninstalling.,3,1,5.8,2018-12-10 22:43:08,"Hello! +Hello. We will add an optional native repository soon. +Have a nice day :)",2018-12-11 00:32:38,newest,prox.lab.calclock +Emmanuel Nicholas,https://lh3.googleusercontent.com/a-/AOh14GidQ_puYXmcOvUoGzyobh76bhXCbNoveNlqNjExag,"Impressive.Could be better if it had its inbuilt calendar which is linked with events of Google calendar .it should also have to do list with with alerts,a weekly planner.thia will make it perfect",3,0,5.8,2018-12-07 05:46:05,"Hi. Will do +Thanks for the support",2018-10-20 15:32:49,newest,prox.lab.calclock +Tevis Palmer,https://lh3.googleusercontent.com/a-/AOh14GiyInWohTyfQO_VTk-XLHVp4QvVQPxPBla0QCWKIg,Haven't used it enough to truly rate it but it just seems like there could be some big innovation if you put more thought into it. A lot of potential if you ask me though.,3,0,5.8,2018-12-04 13:25:39,"Hello! +If you have any questions, please feel free to write me at 27applab@gmail.com. +Have a nice day!",2018-12-04 22:48:27,newest,prox.lab.calclock +Mayur Chavan,https://lh3.googleusercontent.com/-ioNkrj90-nQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPETDzXCNVIBc1mARCsReIefGbyUA/photo.jpg,Pls add 24 hour view,3,0,5.8,2018-12-04 08:38:13,,,newest,prox.lab.calclock +Patrick,https://lh3.googleusercontent.com/a-/AOh14Gi0C8szha6zxYT5hn9TOhOtpSmvFQgePqjeSg1Ttg,It's great. I love it.,3,0,5.8,2018-11-27 12:12:50,,,newest,prox.lab.calclock +Larona Bahitile,https://lh3.googleusercontent.com/a-/AOh14GjwKUoQHjRAU5PTgAoxCfUbImrpoMwvps__lZeQkA,Recommend,3,0,,2018-11-27 09:41:50,,,newest,prox.lab.calclock +NorthernStar ASMR,https://lh3.googleusercontent.com/a-/AOh14Gid2O1H0PjFMjqPCEfJ8jQ9eZUM2tqXU47stiO4mg,"If you want something that syncs to your calendar, you are in luck! It really is beautiful and such a wonderful idea. However my 3 star review comes from the fact you can't use it without syncing to your calendar, and there by having it affect your calendar. I was hoping to use this as an hourly time management tool, much like a block system, but I can't have it be that AND have my calendar be a place for just appointments. It makes the actual calendar look too full and messy. Basically in short, can you please add an offline tool as well?",3,0,,2018-11-15 16:36:39,,,newest,prox.lab.calclock +Aleksandra N,https://lh3.googleusercontent.com/a-/AOh14GiAjnRabSlYKk84g8kaf_jH3pRgimECHgsxTIipbA,After the recent update displays alarms an hour earlier than they actually are. Been using the app for more than a year now and love it.,3,0,5.8,2018-11-15 00:20:37,Hello! Please email me at 27applab@gmail.com,2018-11-15 04:13:50,newest,prox.lab.calclock +Ahmed Mahana أحمد مهنى,https://lh3.googleusercontent.com/a-/AOh14GjF8ObT0LjCj30XfVqaL0VHV0KX0NNWGcTsb_oSfg,It don't work with Samsung gear s3 smart watch even after i bought tge widget!,3,1,5.8,2018-11-14 13:44:07,"Hello! +Samsung Gear - based on OS Tizen. 100% of apps for watches on Google Play will not be compatible with Samsung Gear. +The application, both for the smartphone and for the Watch, has been developed for Android (Wear) OS and free. The applications for Gear distributed through the Samsung Store. +For a refund, please email me at 27applab@gmail.com",2018-11-14 14:13:51,newest,prox.lab.calclock +Vivek Dau,https://lh3.googleusercontent.com/a-/AOh14Gh7vxMjzS1QN40DrHgsBOUvWEsiIC6ksgsy3B6N,Good,3,0,,2018-11-08 07:20:31,,,newest,prox.lab.calclock +Statica Sativa,https://lh3.googleusercontent.com/a-/AOh14Gi551nyfhCYHz07yB7YNRrYCt_ESACtlnSSW7KFxg,Still trying figure it out,3,0,5.7.2,2018-11-05 01:36:05,"If you have any questions, please email me (27applab@gmail.com)",2018-11-05 01:47:25,newest,prox.lab.calclock +Sean Sanchez,https://lh3.googleusercontent.com/a-/AOh14GjaDHNF0aJu4KElHF2BM9prFI2hXgogccE5Ew9pLw,"This app is actually wonderful. I'm hoping you can add the ""forward"" and ""backward"" buttons on the widget (potentially just as another available function of those virtual buttons) like we have access to in the full app. It would be nice to click forward through the calendar and then, say, click the clock center to refresh and reload with the current time.",3,0,5.7.2,2018-11-04 22:23:03,Hello! We will try to do something similar.,2018-11-05 00:44:29,newest,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Not really what I was going for. It's ok I guess if you want to use Google or your phones calender, but I wanted a detailed schedual with alarms to remind me to go to the next event. Love the look, but not useful to me.",3,0,,2018-11-04 20:46:47,"Hello. All right, the app is created for Google Calendar users. Everyone has different preferences. Have a nice day!",2018-11-05 00:42:45,newest,prox.lab.calclock +Keshani dasanayaka,https://lh3.googleusercontent.com/a-/AOh14GhHnO5uwGA4t7Zs9qZsIweKmeL2XrUgetwZbyBM,i cant set widget on homescreen can you help me plz..,3,0,5.7.2,2018-11-03 14:20:10,"Hello. Make a long press on the home screen and click ""Widgets"". Find and drag the widget to your home screen.",2018-11-05 00:36:46,newest,prox.lab.calclock +R L,https://lh3.googleusercontent.com/-1APuHvRhYtY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMJxnkPMIHUj10dhxc5_OD7lRt-ww/photo.jpg,"The app is useful on the phone and tablet. I purchased it believing that it would also work on my smartwatch as displayed in the pictures. You will only get reminders, not a watch face. The picture of the smartwatch is misleading. Either develop the watch face app or remove the picture of it.",3,0,5.7.2,2018-11-03 12:57:53,"Hello! +The app is compatible with any watch on the OS Android Wear. (Samsung Gear watches on OS Tizen are unfortunately not supported by the application). +If you have Android Wear, activate synchronization with smartwatch in the application settings on your smartphone. Go to the Play Market on smartwatch and install the app.",2018-11-03 13:04:09,newest,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Nice,3,0,5.7.2,2018-10-29 08:20:27,,,newest,prox.lab.calclock +A R,https://lh3.googleusercontent.com/--K5A7Af9euo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOsX3jJyI_bYGfLbV4e6kbejWtddw/photo.jpg,Wile installing on my Note 9 it imported / shows promptly each allready existing entry from each of my Calendars. But It does not import / synchronize any new entry ( via any calendar ). ( Within Android I already removed the app from being affected by the Battery saving-option ) ( 'Close the Demo' pop-up is not present ) Thank You very much for helping out because this way of visualization by merging Agenda and Clock-face is how my mind needs it (used it many years ago and never found it back again as a contemporary app. If only I get it to work..,3,0,5.7.2,2018-10-23 20:19:42,"Hi, Alain! I responded to your email.",2018-10-25 04:17:24,newest,prox.lab.calclock +pravin k,https://lh3.googleusercontent.com/a-/AOh14GiZpB9nLVOgHbG2Z0Ck_dErfbF_acbpbt8FvADGXw,Ni,3,0,5.7.2,2018-10-22 15:11:47,,,newest,prox.lab.calclock +Liz Storm,https://lh3.googleusercontent.com/a-/AOh14GjdumwseCW7HeG7846jxOjg7wXwUyVSZ1FdaLjh9w,It won't allow me to sync it with my Android watch and there is nowhere to ask questions!?,3,0,5.7.2,2018-10-19 16:53:06,"Hi. Synchronization with Android watches works well. Email me at 27applab@gmail.com, I will help",2018-10-20 00:58:31,newest,prox.lab.calclock +Sathish Subramani,https://lh3.googleusercontent.com/a-/AOh14Gg5Jsmlz9mq_kGNuxsQtwD97JRh2_VFA2bZoeWLNg,"At times it doesn't work as expected, hut the app can be great potential if scrutinized aptly.",3,0,5.7.2,2018-10-17 05:35:42,Hello. You can write to us if you have any questions. I will answer with pleasure :),2018-10-18 00:24:16,newest,prox.lab.calclock +Abhishek Gupta,https://lh3.googleusercontent.com/a-/AOh14Gj8ubqPTBsDv8wZAQHow1dMFvKDmg4FwjwNu8NP,Reminder is not working what I should do,3,0,5.7.2,2018-10-16 11:53:59,"Hello! +I wrote about the reminders in the application in the section FAQ. Please read this information. +Have a good day!",2018-10-17 05:59:11,newest,prox.lab.calclock +Gayle Washburn,https://lh3.googleusercontent.com/-gAL1YmOiRBk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMFO6x2UMRsU5cfsGf6jSiKhPiTQg/photo.jpg,Didn't really get a chance to test it...but it forced me to do a review to uninstall.,3,1,5.7.2,2018-10-15 03:16:12,"Did not take the time to test, but took the time to leave a 3-star review. Well, thanks :)",2018-10-15 04:13:56,newest,prox.lab.calclock +Barbi B.,https://lh3.googleusercontent.com/a-/AOh14GjrR_Ya588U95dflgt35SMzRod7k-PlFyJ_XcHpoAk,"I love the overall concept, and, the diverse options for setup. Though, so many setting options are a little overwhelming to sort out. I've had the app for a few weeks and I am still trying tweak my layout ... visuals are everything for me. I believe, when originally setting up a few weeks ago, I was a bit annoyed to have spent time choosing colors for the widget to find out it is a premium feature (To Developer: plz be upfront on the premium feature options). I think once I get it really working for me it will be a fave app.",3,1,5.7.2,2018-10-09 17:27:00,,,newest,prox.lab.calclock +Ariel Lothlorien,https://lh3.googleusercontent.com/a-/AOh14GiRE0XoC8zMJMUuheLMLWZV5A77sZhXZNCq3gWbMw,"I do like this widget a lot however I left two stars blank for very specific features. First and most importantly I left a star empty for the ability to display battery status on the widget as I use this as my primary smartwatch face. Thus without this feature it is very hard for me to see the status of my battery at a glance and know when I should try to get a little bit of charging. The second feature is integration with Outlook calendar without asking for permission for the entire account if it needs to ask for permissions at all, as my workplace has very high security requirements. For each of these features implemented I will add another star.",3,22,5.7.2,2018-10-07 00:27:13,Hello. Thanks for the review. Let's try to provide these options.,2018-10-08 05:50:36,newest,prox.lab.calclock +Kathy B,https://lh3.googleusercontent.com/-ZXxDNzLpZ14/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMrtJA2yKuAlIaBr2f2B1Mk6fNxMQ/photo.jpg,"Don't know why, but weather shown is for 750 miles away, for a region I've never been, and can't find a way to adjust it. Also can't use Google tasks. Not as useful as I'd hoped.",3,2,5.7.2,2018-10-04 15:57:56,"Hi. There is no weather in the application. +Perhaps weather shows by your system calendar.",2018-10-05 03:40:05,newest,prox.lab.calclock +Kelin KO,https://lh3.googleusercontent.com/-yMznOLOa6uI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMMUJgfsQeT8IIqOFRluV_PFD1qaQ/photo.jpg,"Would be better if it didn't rely solely on Google calendar. Great concept, but would prefer adding events directly to the clock myself rather than having to put it on Google calendar first.",3,2,5.7.2,2018-10-04 14:54:44,,,newest,prox.lab.calclock +Thierry Bakuatshilela,https://lh3.googleusercontent.com/a-/AOh14Gg_fwCgHVGzDBCDzwDXRYm-nT80uG76Zdo2V1YADw,C'est très bien... mais ça devrait être moins lourd en daya,3,0,5.7.2,2018-10-03 08:19:16,,,newest,prox.lab.calclock +Times of India,https://lh3.googleusercontent.com/a-/AOh14Gj5IR3frTpCKabMXnmIkZG6CuBFIL1IHxVrQucZEQ,Super💯,3,0,5.7.2,2018-10-02 01:10:56,"Thank you! 👍 +Why 3? 😃",2018-10-02 02:32:43,newest,prox.lab.calclock +Gareth Seymour,https://lh3.googleusercontent.com/a-/AOh14GjOwaoonwMmP7SB3TOODTqZtOP14e-e5btCqJBRoA,Please can you integrate with Outlook calendar,3,0,5.7.2,2018-09-25 12:28:23,We will try,2018-09-25 12:39:23,newest,prox.lab.calclock +Rio Wong,https://lh3.googleusercontent.com/a-/AOh14Gimu7xtD_DRL0ndwVKOZ2-GdCAMaziSUC2zHutCq5M,A blue flag ?,3,0,5.7.2,2018-09-23 04:26:54,Maybe,2018-09-23 07:48:55,newest,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Not free,3,0,5.7.2,2018-09-18 16:26:27,Hello. Is free. Paid only non-mandatory extensions without which the application and so fully functional.,2018-09-18 22:34:37,newest,prox.lab.calclock +Pierse Ari,https://lh3.googleusercontent.com/a-/AOh14GjQw0J0FgeeU5qZJ2YZw7SGShDLt6-UBdMSskLNXA,"Its ok, bought it, sadly need another payment to customise palette, sad, hope more update come",3,0,5.6.2,2018-09-05 00:58:15,,,newest,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I think that this is a great idea, but it’s one better suited for a larger screen. A lot of display real estate is utilized to (beautifully) display a very limited amount of information.",3,0,5.6.2,2018-08-22 20:07:18,,,newest,prox.lab.calclock +Lizza,https://lh3.googleusercontent.com/a-/AOh14GjObIZyfjcNY_4mrSRZkO11C9wd_eQCTHnGl-Tdtw,"Great idea, but would be better if it was stand alone and not dependent on +Google calendar to input times/events.",3,0,5.6.2,2018-08-11 03:02:43,Hello Elizabeth! We will soon add an optional autonomy.,2018-08-13 04:54:52,newest,prox.lab.calclock +Sanchit Goel,https://lh3.googleusercontent.com/a-/AOh14Gj3Tk7StkDR8XNaYLHjX6xlwgz_71PphiUK_4zviA,"The widget is not getting updated until I go into the application. The app +is good but this is irritating. Please fix this. I have already bought Pro +and widget pallete.",3,0,5.6.2,2018-08-08 20:17:25,"Hey. Probably background work is blocked by the power saving function of the device. +Please write me at 27applab@gmail.com I'll try to help.",2018-08-09 00:09:07,newest,prox.lab.calclock +Stacey Morgan,https://lh3.googleusercontent.com/a-/AOh14GiJ1vrp_LVXSbTRLWWWI3XwHz43S2lFEZXY-uvN8w,"I like that it is easy and convenience which is what I'm looking for but I +also need a way to run analytics of times spent on each task. Will change +to 5 stars if that is possible.",3,0,5.6.2,2018-07-30 19:56:24,,,newest,prox.lab.calclock +Bellal Hossain,https://lh3.googleusercontent.com/-RhVcRfDjRmM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO8r6hbvhTMS8mdb2uM_RXEgmtUWQ/photo.jpg,Good,3,0,5.6.2,2018-07-26 20:52:19,,,newest,prox.lab.calclock +Alberto Ancona,https://lh3.googleusercontent.com/a-/AOh14Ggmrh6qfPTbkTMKBCrDZKqB-5F_VlOx5ACSVVkUORs,"love the interface, great smartwatch integration but cant change the color +palette for some reason tried reinstalling and resetting app no luck",3,0,5.6.2,2018-07-25 03:11:18,,,newest,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Good idea, and attractive interface, but events have to be in your calendar +to sync - there isn't an option to add an event directly through the app. I +don't wish to put work time, etc. into my calendar.",3,0,,2018-07-22 21:55:37,,,newest,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I can't get the widget to appear in the background wallpaper screen ,, +purchased the app only for that feature ,,, any help ?",3,0,5.6.2,2018-07-20 13:41:43,,,newest,prox.lab.calclock +Nam Trịnh,https://lh3.googleusercontent.com/a-/AOh14Gjpqa6D3b6b5nF_Okohbsyh8aZ4ppCFcuebzLhoxA,"I think it will be better when it has a circle on the background, no need +to open to see the timetable",3,0,5.6.2,2018-07-19 11:42:28,,,newest,prox.lab.calclock +Victor Kyllesbech,https://lh3.googleusercontent.com/-X-jlu2o99kw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPT_FOqulhVzHCKhsdMX9YG99JqeQ/photo.jpg,"Whould be nice if I can set the view old event larger numbers than 3 hours, +this is kind of a deal breaker for what I use it for",3,0,,2018-05-29 08:43:13,,,newest,prox.lab.calclock +Alex Madjarov,https://lh3.googleusercontent.com/a-/AOh14GgfvAj6KuTGU3w-adF4yKm-7GWGNpYLdax4XlWxuQ,Would gladly pay for this if it was Outlook compatible.,3,0,5.4,2018-05-18 18:04:14,,,newest,prox.lab.calclock +Sufyaan Kazi,https://lh3.googleusercontent.com/a-/AOh14Gj1nJTQX1gzqBzbUyngApUmUi9Av1oYu9YqmU9N,"I love the idea of this app, is quite unique in the way it visually shows +my upcoming events. Sadly, try as I might, I can't get it to refresh +correctly with my calendar, its always wing despite following all the steps.",3,0,5.4,2018-05-17 09:08:43,,,newest,prox.lab.calclock +ane pham,https://lh3.googleusercontent.com/a-/AOh14Gir8txzSHsSvYTeaInEtl2m5NWtM74IKvcMicqM,"This app is good, however the reason I need a calendar app is to share it with someone else, and this app doesn't seem to have a shared calendar function. Which is a shame because it's a really decent app.",3,0,5.4,2018-04-28 01:24:37,,,newest,prox.lab.calclock +Josian Mendez,https://lh3.googleusercontent.com/a-/AOh14GjLUxb2klWE5pP98C20Y3oAMFT97MHHt1fgkH4n,7t,3,0,,2018-04-22 22:17:11,,,newest,prox.lab.calclock +N N,https://lh3.googleusercontent.com/-psff93yJF2w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPTRgjdtxSJpqhQu03ONx4ardQo8g/photo.jpg,"Can you make the graph fully editable eg without importing from calendars? +I want to be able to add stuff without it having to access my calendar",3,0,5.4,2018-04-18 04:41:52,"Hello! Thank you for your review! +Synchronization with the calendar server is very convenient for working on several devices. +But, of course, our proprietary, editable regime should be, we agree! We will do it.",2018-04-25 01:13:15,newest,prox.lab.calclock +Kushan Ponugumati,https://lh3.googleusercontent.com/a-/AOh14Ginma5KFDsV9ZteCCPpBxOBaG8TJIEnQ7qeXOIDug,Good planner And reminder,3,0,5.4,2018-04-18 00:56:24,Thank you! But why the rating is 3? :(,2018-04-25 01:17:00,newest,prox.lab.calclock +Sumit sharma,https://lh3.googleusercontent.com/a-/AOh14GicAfHisBjkuggVmpxbBfnQO89h3nieOpyP8PFMdA,Unable to give color to events. Only blue color is coming,3,0,5.4,2018-04-16 16:58:35,"Hello. On the page of adding / editing events, you use the standard smartphone calendar ""My Calendar"", which does not support colors. +Use the calendar of your account ""...@gmail.com"", and the choice of colors will appear on this page. +Contact Us 27applab@gmail.com",2018-04-25 01:23:37,newest,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"The app works with the exception of showing all events on the app. The widget show 12 (9 hours ahead and 3 hours passed.) So when one views tomorrow's schedule in the evening, the app does not show tomorrow mornings event or anything prior to 3 hours before the current time the next day. (A bit of a mouthful but those with full schedule will know what I mean)",3,35,5.4,2018-03-09 09:37:03,,,newest,prox.lab.calclock +Scott Lee,https://lh3.googleusercontent.com/-Ip2qb_RR8Eo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNjJzHurcRejbZvjY29iL2-mqJvTw/photo.jpg,I cannot get the widget I designed to show up on the screen. I went through the FAQ with no success. I have a galaxy S8 plus with android 7.,3,1,5.4,2018-03-03 21:53:38,"If your problem is not related to installing the application on the sd card, then probably you have a custom launcher that does not update the list of widgets. Try restarting the launcher",2018-03-11 09:37:46,newest,prox.lab.calclock +Mohammad Sanie,https://lh3.googleusercontent.com/a-/AOh14GjjLxJtdi-MBIt0np_nUJ-LSt3poeIGQG9h1MZc0w,Hard to use,3,0,,2018-03-03 04:18:35,,,newest,prox.lab.calclock +Nadine Maritz,https://lh3.googleusercontent.com/a-/AOh14GgtjoYmtSmpuI_wiJnIL7SJCZlmX4jeG1wb3g4YSA,How do you get it to sync with your ms outlook calender? What does it mean you detailed it in #8,3,0,5.4,2018-03-01 08:16:24,"Hey. I put the instruction in the FAQ section in the application, item # 8",2018-03-01 03:56:21,newest,prox.lab.calclock +Munish Kumar,https://lh3.googleusercontent.com/a-/AOh14Gj-0b-puN03Bp7lxn7igCUOryIokQkeOCz7QsXF,Appearance good. Sometimes lags and don't update the time even after an hour.,3,0,5.4,2018-02-27 22:32:49,,,newest,prox.lab.calclock +Bitya Trejger,https://lh3.googleusercontent.com/a-/AOh14GiIOWEwnDuRoH-3CtPozQRajMW7nF1VlkP2F0jN7g,I wish it wasn't conected to Google Callander which I don't like at all.. Overall realy awesome concept. Wish I could use it... If only it was a Callander on its own.,3,0,5.4,2018-02-24 21:26:59,,,newest,prox.lab.calclock +Marc-Antoine D.Gagnon,https://lh3.googleusercontent.com/-x-LnumtQhdI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPtVc5uhHctWtHf_ew99EdB6HPGcA/photo.jpg,"Is there no way to have weekly rasks, but only week days? Other apps have this option...",3,0,5.4,2018-02-13 14:59:41,,,newest,prox.lab.calclock +Derek Nguyen,https://lh3.googleusercontent.com/a-/AOh14GieZlHVGrUAdAYJax0jKGeAGXqBOyjfE8eiezMlUQ,I can't not choose another calendar besides Google calendar to sync with app,3,1,5.4,2018-02-03 15:19:01,,,newest,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"The app has started causing toasters to pop up frequently saying ""This widget will not be updated. Maximum memory is used for the same widgets."" I only have one instance of the widget running and plenty of free space. I've removed it from my home screen for now, the notifications are too annoying.",3,9,5.4,2018-01-27 16:36:32,"Hey. You may have invisible copies of the widget. 100% way to solve this problem, reinstall the application. Messages will stop showing. Please try it",2018-01-27 23:29:07,newest,prox.lab.calclock +Tim Waugh,https://lh3.googleusercontent.com/a-/AOh14GgLmOVwnb_z0B8t-sU7IRStiU-mef0w0_UMPQl0DA,Would be better if it could hide declined events,3,0,5.3.2,2018-01-16 12:37:45,,,newest,prox.lab.calclock +Sudesh Kumar,https://lh3.googleusercontent.com/a-/AOh14Gi7BxKO8ihnCQKO7It061oggU9ijEXO-dVtsIW-5A,Different colors are not available for different tasks.,3,0,5.3.2,2018-01-15 02:56:32,,,newest,prox.lab.calclock +Osmar Souza,https://lh3.googleusercontent.com/a-/AOh14GgcV0U2vekqMdYUZ_8Tm_tQvjEN84Qrcd4doM7W2wQ,The circle widget should be bigger.,3,1,,2018-01-15 02:08:00,,,newest,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Really hard to read when you have overlapping calendar items, which is a shame as the concept of a circular 'clock' calendar is a good one.",3,0,,2018-01-03 19:57:18,,,newest,prox.lab.calclock +Visual Selma,https://lh3.googleusercontent.com/a-/AOh14Gh_RdAzMQWRbwMC5S-gQlzTX6OCCdAAJmiZ9I50,It would be better if I could see a whole day shedule at once (maybe with applying two widgets that doesn't show the same period of time) or if I could croll time not only in the app but on the widget too.,3,0,,2018-01-01 00:31:20,Hello! Use the 24-hour mode in the application settings.,2018-01-01 14:47:17,newest,prox.lab.calclock +Tao Guthrie,https://lh3.googleusercontent.com/a-/AOh14GgH4K2P9kHHenu8gLSveiBe-OMcLivpwOmOBh5l,I can't figure out how to make it work on my S2 watch. There are no clear instructions.,3,0,5.3.2,2017-12-19 18:13:33,"Hello! Samsung Gear - based on OS Tizen. 100% of apps on the Google Play store will not be compatible with Samsung Gear. +The application, both for the smartphone and for smart watches, is developed for Android OS (for Android Wear). +Only 1 way to install applications from the Play Store to Gear, it's to change the OS on your watch to Android Wear 2",2017-12-19 23:36:48,newest,prox.lab.calclock +Chassity Feist,https://lh3.googleusercontent.com/a-/AOh14Gh_4HfjBpKPDupAmwcw564LMsdlStAfBMPCVcLyeg,I LOVE the idea of the app. Cantake a minute to figure out. Wish it had its own calander or was able to sync with others other than Google calendar.,3,0,5.3.2,2017-12-07 13:12:47,"Hello! We are already working on supporting different calendars. Please, support us with a more positive rating :)",2017-12-09 01:16:59,newest,prox.lab.calclock +Antonio De Cinque,https://lh3.googleusercontent.com/a-/AOh14GiFp3w_U1biJpU5vV8gJUcph_PHmkASuPYgLLumwCs,"The app itself is very good. Nevertheless, there's a problem: I can't seem to make it work on my Sony Smartwatch 3. In fact, as soon as I install the app on my phone, the watch face appears on the watch but after a while (about a minute) it suddenly disappears.",3,13,5.3.2,2017-12-03 16:09:34,,,newest,prox.lab.calclock +Dave Jewett,https://lh3.googleusercontent.com/-hoH9hyJrPBs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOfUy5qa93GO9HBwDgNjEci7xcHJA/photo.jpg,It's such a bummer it doesn't work on the Samsung sport watch.,3,0,5.3.2,2017-12-02 21:36:26,,,newest,prox.lab.calclock +Daniel Adams,https://lh3.googleusercontent.com/-DWaQ-YXaVao/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOfGxmHH-8l2Q8u1f20WdhlvaK0gA/photo.jpg,Glitchy but good,3,0,5.2.4,2017-11-18 10:17:53,Hello! In the next update we will try to make the application even more stable!,2017-11-20 23:08:11,newest,prox.lab.calclock +Vaibhav Joshi,https://lh3.googleusercontent.com/a-/AOh14GgYMjdZPPtXwZVOiKhGSK4uw2KK2jNoM7-QtUD7dQ,This cannot sync Outlook :(,3,0,5.2.4,2017-11-06 06:08:56,Hello. You can configure Google Calendar synchronization with outlook. Please read about this in the eighth paragraph in the FAQ in the app. Google will be synchronized with Outlook 2 times a day.,2017-11-12 23:54:35,newest,prox.lab.calclock +KhelaKuda & SabKuch,https://lh3.googleusercontent.com/a-/AOh14Ghr-V5zbcrbJaMlLd4vRtyK_nVD3gCby3zvPMsp-A,It's good but complicated a bit,3,0,5.2.4,2017-11-01 03:32:31,"In any case, if you have any questions in using the application, write to us at 27applab@gmail.com",2017-11-01 03:40:46,newest,prox.lab.calclock +Alex Kaduk,https://lh3.googleusercontent.com/a-/AOh14Gg0tXgwPSj21FrKetC4qmXqXEjHhu_wml6-YMck1jE,"App idea and design is great, but it is not possible to add calendar from Work Profile account anyhow - it is just invisible. Android 7.1.1. Promise rating 5, if fixed. Upd: thanks for prompt reply, but it is about Google Calendar in Work Profile - it creates a separate copies of Google Apps for it. Please have a look at work profile specifics for Android 7+",3,0,5.2.4,2017-10-18 08:23:31,"Hi, thanks for your comment! +Google Calendar is very friendly with many other calendars. +In the web interface of your Google Calendar, you can set up synchronization with other calendars other than Google, add URL calendars in the format ""iCalendar"". After that, your work calendar will begin to deliver events to your Google Calendar.",2017-10-16 06:48:06,newest,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I really like the concept, but the app/widget doesn't recognise 'reminders', only 'events'. If my day was organised hour by hour with events then this would be ideal, but I rarely have more than 2 events per half day. Reminders I use all the time, if the widget recognised those then it would be far more useful to me. Would still recommend despite this.",3,5,5.2.4,2017-10-10 07:59:32,,,newest,prox.lab.calclock +J Montano,https://lh3.googleusercontent.com/-06tT_vHyGYs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPoujFbZuziwOci0mNGV_qLxtwfIQ/photo.jpg,Good premise. Just doesn't sync with any calendars. Unhelpful guide,3,0,5.2.4,2017-10-01 18:31:24,"Hello! Please, write to us at 27applab@gmail.com, we will help.",2017-10-02 01:30:27,newest,prox.lab.calclock +leanne duncan,https://lh3.googleusercontent.com/a-/AOh14Gg_xO4cVLuiKTgvFSm0NuRHTuT_It5W1bycvCEK-Q,"I loved the look of this widget and can see the potential, but it made my phone completely crash , turning itself off and constantly trying to turn on but would only stay on for 2 minutes I had to delete it. Please help me so this doesn't happen, because I would love to be able to use this.",3,0,,2017-09-23 07:11:37,"Hello. Thank you for message! Please send a report at the time of crash. In the commentary to the report, indicate your name as in this comment. We will try to establish the cause and fix it. +So you can also write to us at 27applab@gmail.com",2017-09-23 09:41:20,newest,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,I better have it all,3,0,,2017-09-19 22:13:09,Hello. We did not fully understand you. Please write to us at 27applab@gmail.com,2017-09-21 05:27:42,newest,prox.lab.calclock +Frenchsilverfox,https://lh3.googleusercontent.com/a-/AOh14Gjo3ml1Dx9QOE_2Zv0wW83xejlzDAAZnbHB2zGP,I downloaded S.Graph but I do not have any widgets with it. I have google calendar. I can open the app but there is no Home screen widget. Any way I can fix that? I have a Samsung S6 Active. Thanks a lot!,3,0,5.2.4,2017-09-16 17:20:06,"Hello. Make a long press on the screen and click ""Widgets"". Find and transfer the widget to your home screen. +But if the widget is not in the list, then the application is for some reason installed on the SD card. Go to the list of installed applications (""Application manager"") and on the page of the application, click ""Move to device"".",2017-09-17 01:39:12,newest,prox.lab.calclock +Charinthip Aiim,https://lh3.googleusercontent.com/-FmV8xg-eVso/AAAAAAAAAAI/AAAAAAAAQHo/AAKWJJMw_nOF4SNbZiKRSXqcXNwVstGOeQ/photo.jpg,"Very useful, great clock widget with my schedule. It is better if can open calendar app by touched widget.",3,4,5.2.4,2017-09-08 13:57:12,"Hi, you can do it. +You need to go to the widget menu (button at the top-right of the widget) and go to the settings of the widget buttons. +On this page you can customize the different areas and actions of clicks on the widget. (By clicking, you can open a calendar or add an event)",2017-09-08 22:26:34,newest,prox.lab.calclock +Iavor Hristov,https://lh3.googleusercontent.com/-C0trx1kmKQg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPLfeuwAlSI5F2HQj14_7tSBKJ0og/photo.jpg,"Great idea, but really needs to be able to incorporate reminders - way easier to set up in my opinion, especially for repeat events.",3,0,5.2.4,2017-09-05 09:28:54,,,newest,prox.lab.calclock +swarup chatterjee,https://lh3.googleusercontent.com/a-/AOh14GibOxEhovfr4pTw25F62UwHbmJy9naGn3sotOXtoA,size should be more large...nd alarm needed,3,0,5.2.4,2017-09-02 08:41:07,"Hey. Widget is rubber. :) Make a long press on the widget and stretch it to the size 3x3, 4x4 and others. +So in the settings you can give an additional increase for the widget 4x4.",2017-09-02 12:48:40,newest,prox.lab.calclock +Benjámin Bartha-Tóth,https://lh3.googleusercontent.com/a-/AOh14Ghb7qGQFKk82rGVbfYD5WjFuVjf0ocjhHVgzKxsZA,"So, I did not get it. Does this app only import events from Calendar? Can't I create my own daily routine within this app? That would be way cooler to be honest, as I barely use Calendar.",3,12,5.2.4,2017-08-31 09:13:57,"Hello! The application is an add-on for Google Calendar, because it is universal. It is by default on all smartphones and is able to synchronize all the user's devices. Google Calendar forms routines with ease! You need to use event repeats (once a day, once a week, on specific days, set the number of repetitions) and duration. +Have a nice day!",2017-09-03 13:50:00,newest,prox.lab.calclock +Daimean Naidu,https://lh3.googleusercontent.com/a-/AOh14Ggr9UUVReZTX_SNCPsRFGVuDt7gjtfhk4a4Hbeo,Excellent concept which has huge potential. Only problem is that the hour hand does not keep time correctly in 24 hour time. It shows 1400 instead of 1600 (2 hour difference).,3,0,5.2.4,2017-08-31 06:00:03,Hello! Can not be ... Send us a screenshot on email 27applab@gmail.com,2017-08-31 06:11:22,newest,prox.lab.calclock +Lalit Nyati,https://lh3.googleusercontent.com/a-/AOh14GivjvCdEkH3qhbgUZYuKJlEBUk8fcFUXoYSr3p0sQ,It's very nice view but I need also 'to done list' in which feature I can input what I did and review after that myself..,3,0,,2017-08-28 17:06:05,,,newest,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Nice app but how to put red color?? T-T,3,0,5.1.1,2017-08-21 17:50:51,,,newest,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I'd really like to use this app, but there's no option to sync with other calendar services like Microsoft's.",3,0,5.1.1,2017-08-16 15:13:52,,,newest,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,I wish the clock looked simpler. The point of downloading the app was to be able to see what my day is like just by looking at it once. The sectors should be more defined.,3,0,5.1.1,2017-08-03 19:29:14,Hello! We will consider how to make the display more simple and clear.,2017-08-08 23:47:09,newest,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"it's a great app but it has glitches. I tried setting my work hours for tomorrow's date. but when I clicked save and went back to the graph, it had the hours set for today, not tomorrow.",3,1,5.1.1,2017-07-23 12:06:54,,,newest,prox.lab.calclock +Subramaniyam Vishwanath,https://lh3.googleusercontent.com/-1uBP7iJ8AG8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNNiVTedFmgaIxl6Au5oo8D5sO_6w/photo.jpg,"Loved the concept, beautiful design, and has taken its place on my home screen after a clarification from the Dev on syncing other calendars. I also love the fact that you can just jump in and use the widget, or you can opt for deep customisation of the look, feel and functionality.",3,1,5.1.1,2017-07-22 11:17:54,"Hello! Recently wrote about this in the FAQ section inside the application. Read, maybe this solution will be useful to you :)",2017-07-22 05:51:27,newest,prox.lab.calclock +Peter Raja,https://lh3.googleusercontent.com/-fjcmMAxNxPM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO2VIL63W8UHXcVmgc8wCdHy8j4Zg/photo.jpg,Works well and syncs well with the chosen calenders.,3,0,5.1.1,2017-07-20 06:39:26,"Hello! Thanks for the review! But if you like, why the rating is 3? :)",2017-07-22 05:47:41,newest,prox.lab.calclock +Lackshan satheesh khan,https://lh3.googleusercontent.com/a-/AOh14GjHZIQAXZSAAF8vCR0mOxGM0eXSqJ6g503dja8F,App is good but have some error it's no refresh automatically on widget home screen we have to open app to refresh apps hour line please fix tht error,3,0,5.1.1,2017-07-18 06:46:32,"Hello! In your device, in the battery section there should be a list of applications that are allowed to work and update when the screen turns off. (But maybe in another place) you need to add the application to this whitelist and the clock will stop stopping.",2017-07-22 05:57:19,newest,prox.lab.calclock +Conner Carlson,https://lh3.googleusercontent.com/a-/AOh14GiFt1eb3nCsBk0JZS2kK43vRrJHUUL25Tr2pH1FKA,I wish it was easier to figure out. I can't figure out how to make it look like the photos on here where the time is color blocked out.,3,0,5.1.1,2017-07-16 21:39:41,,,newest,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,The time displayed does not automatically update. One has to cluck on the widget and enter the app for it to sync with actual time.,3,0,5.1.1,2017-07-07 19:43:12,"Hello! Sorry for the tedious wait :( In your device, in the battery section there should be a list of applications that are allowed to work and update when the screen turns off. (But maybe in another place) you need to add the application to this whitelist and the clock will stop stopping.",2017-07-22 06:10:29,newest,prox.lab.calclock +Swarup Tripathy,https://lh3.googleusercontent.com/a-/AOh14GhFtrXXltG1X976by7BbsBwORFC4DxM-zXW8Z5Djg,"It show the full day events on next day actual, which is incorrect. Otherwise it's good. There should be option for alert tone.",3,1,5.1.1,2017-06-26 21:19:29,Hello! We will do!,2017-06-30 00:33:41,newest,prox.lab.calclock +Wendy Gallagher,https://lh3.googleusercontent.com/-o4tM7uk-f7w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPECngRP0Br82yKCD1vVWpPARfNTA/photo.jpg,"This is one of the few circular calendar widgets available, but it has a little ways to go before I'd want to keep it. Possible Improvements: -Sync to Outlook -Easy color coding options for each scheduled event: would be nice to see Red for gym, Orange for meal times, green for Bill paying, blue for sleep, etc. -Would prefer a widget that I can tap on without it opening the app. Small dot next to the widget is fine to open apps. -Would also prefer a 3D widget that appeared to be hanging, so when I tapped it, it reacted to the tap. -Double sided widget, AM on one side, PM on the other. -Drag to reschedule events -Hold to add events -Hold to edit events.",3,1,,2017-06-24 22:54:43,"Hello! I received your message on the mail also. Thanks for the great suggestions! Some of the items on your list will appear in the app soon. +So, even if not in full, but you can customize the colors of events. To do this, create events in the calendar of your account ...@gmail.com. You will be able to set the color for any event.",2017-06-26 00:16:50,newest,prox.lab.calclock +David morrison,https://lh3.googleusercontent.com/a-/AOh14GhM-NUbb1KQHO_CQ5iOLI2qhZGjLHZgITOoiTt45g,Great But missing Exchange tasks on widget. Please add.,3,0,5.1.1,2017-06-16 01:25:12,,,newest,prox.lab.calclock +Javed Akhtar,https://lh3.googleusercontent.com/-7VJnIWDWOVI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOAR52hy1Wg6r6yWgfVkg3lik_oEQ/photo.jpg,"I like it but I would have liked to have the option of using it as a homepage, like an interactive wallpaper. Secondly this should also be an Android Wear watch face.",3,0,,2017-06-10 15:36:27,Hello! We will do!,2017-06-13 05:30:44,newest,prox.lab.calclock +nono O.,https://lh3.googleusercontent.com/-J8gnapR_Wdw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMMxrJPDV9ysPgxt2XxRT8_DrZrgw/photo.jpg,"Its seem complex in the first time. Anyway, can see all activity in the big picture",3,0,4.5,2017-05-24 16:37:01,,,newest,prox.lab.calclock +Aleksey Novykov,https://lh3.googleusercontent.com/a-/AOh14GgEaA9ZBLW0yrr9OILRqj2lgztW2PfPowztYjWxcw,Do you have plan to make it available as soon for Android Wear watches? Than it probably will be 5-star app :),3,0,4.5,2017-05-15 22:00:05,"Hello! Yes, support for smart watches will be available soon!",2017-05-15 23:24:46,newest,prox.lab.calclock +Thinus Botha,https://lh3.googleusercontent.com/a-/AOh14Gjm30-4_vIhDF3GOKrNsdkKtpQCJRyfXzk5L1BRjHI,Widget not making full use of size.,3,0,4.4,2017-05-08 22:26:49,Hello! Make a long press on the widget and stretch it to 4x4. Then go to the application settings and the slider further increase the size to the maximum.,2017-05-09 00:58:06,newest,prox.lab.calclock +Brittany Billups,https://lh3.googleusercontent.com/a-/AOh14GieZRzS0T_UfpMIVie9L0LK8V5w8lw2RCQq1pIs,"I really love this app. With my busy schedule it's so great to have all my day's events plotted out in one great visual. BUT, it drains my battery like crazy! I've lost 10% just typing this out. I have to un-install it. Please. Find a way to fix this so I can re-install!",3,11,4.5,2017-05-03 17:15:16,"Hello! Our application is very energy-saving. All that it does is instantly update the widget 1 time in one minute. +We checked the power consumption using different programs and they confirmed it. However, some programs may display incorrect data. Use the standard ""Battery"" utility.",2017-05-05 01:05:24,newest,prox.lab.calclock +Rajeev Juta,https://lh3.googleusercontent.com/a-/AOh14GhFz9S2qriDenII8FFCiRJRP4c6CRMvcxcCFG9NYQ,"Like the concept, but was hoping to see the full widget on my phone. Unfortunately does not display like the screenshot you show above on a samsung s7 edge (not sure if it is settings i need to change). I would also like better integration with microsoft outlook. Currently it takes me to the calendar but none of my meetings show up on the widget. Integrates well to samsung planner and google calendar but not my work app calendar. Finally like some of the ideas below of changing to a 24h calendar.",3,0,4.4,2017-04-17 08:55:14,"Hello! +In the next update, you can zoom the widget to the full width of the screen. +We can synchronize google calendar and outlook, with the help of the iCalendar (.ics) protocol. Read on the Internet how to do it. +A 24-hour version of the widget will be required!",2017-04-19 01:05:44,newest,prox.lab.calclock +Shay Syafiq,https://lh3.googleusercontent.com/a-/AOh14GiP9RyG3t7ktdBW0pIw4zoHwFlT3QZr0tb8wMHPMxo,Have not fully tried this app yet but the images and graphical user interface is appealing to me. Hopefully this app would be able to meet my requirements in my daily life chores.,3,0,4.4,2017-04-12 18:34:32,Hello! Sorry for the tedious wait! Write us a little more about your problem at 27applab@gmail.com. Let's try to help,2017-04-17 00:19:13,newest,prox.lab.calclock +Rafa Zatel,https://lh3.googleusercontent.com/a-/AOh14GjfiUgTX8Iyk-twoypbm90zZ_4CmQylkEwX2qYj9g,The widget is not updating automatically,3,0,4.4,2017-04-04 19:14:13,"Hello! +Some devices may have power saving options, such as - ""Protected applications (Protected applications or other)"". Applications that are not included in the list stop functioning and are updated after the screen is turned off. +Please add the applications to the list of allowed.",2017-04-04 22:50:56,newest,prox.lab.calclock +Chintan Jain,https://lh3.googleusercontent.com/a-/AOh14GhUyPKjW2H-VuVd-qBLRC2vxh4BK2h1RfT0MUGSAnI,App looks very interesting and the way it is displayed is ibteresting. But i am unable to place the widget on screen.. each time i try to add it to my homescreen it disappears.. i mean it does bot get placed on my home screen. Help me with this.. my phone is One Plus 3 with Android 7.1 Noughat,3,0,4.4,2017-03-28 15:51:13,"Hello! Some devices may have power saving options, such as - ""Protected apps"". Applications that are not included in the list stop functioning and are updated after the screen turns off or goes into deep sleep. Add the applications to the allowed list.",2017-03-28 23:09:45,newest,prox.lab.calclock +Kryptonian citizen,https://lh3.googleusercontent.com/a-/AOh14GgYgTHj_GcT6Al7C2nAICG8j2aRDp8ZhV9YegYVNg,Better tips: it will great we can customize without google calender,3,0,,2017-03-23 22:57:45,Hello! We will think about what can be done.,2017-03-28 15:33:14,newest,prox.lab.calclock +Antonia C,https://lh3.googleusercontent.com/-BiY_JG4r8xk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPiBtGDYJjP3Bh74eBI6OF0owhYfA/photo.jpg,"Good app, but not exactly what I was looking for. This app uses your calendar events and organizes them in the circle. The controls are great, I love when I move the red time bar it scrolls through all the things and shows the time changing. Love the widget. I wanted this to work out a homeschool schedule. I ended up having to make a new calendar and syncing only that one. I was able to change the colors of each event in the app. Very easy to use overall.",4,12,5.14.1,2020-03-28 17:50:34,,,most_relevant,prox.lab.calclock +Tara H,https://lh3.googleusercontent.com/a-/AOh14GiTvFPXgzzcvBeVLU2xMn69YmY9mcWGxBr8glvB,"It took me a while to understand how to use certain features, but once I did I found it to be EXACTLY what I needed! If Google would allow reminders to come through, it would be the PERFECT time management tool! My only thought would be if there was some sort of tutorial or guide to help know what some things were for (like when I'm changing the color scheme, I can't always tell what's what) For those not wanting their calendar clogged up, just make those things hidden after you've added them.",4,59,5.14.1,2020-02-29 17:19:21,,,most_relevant,prox.lab.calclock +afshin bahramy,https://lh3.googleusercontent.com/a-/AOh14GiXmEs52GpWxYmYic-0wmF-LdxY5vZhSmuAWOpSOg,"thanks to you, this app makes me more concentrated and schedulable in my days, and its efficient visual time widget on the home screen is really practical. But sync between calendar and app is a little time-consuming.",4,2,5.14.1,2020-02-28 06:09:14,,,most_relevant,prox.lab.calclock +todd adolph,https://lh3.googleusercontent.com/a-/AOh14GhguHOTiPH4vZVig63Iuzi2PsoFzRt-Bw3DQV9FTMw,"Now realize will not show appointments over 12 hours out, however would think should see them in overall list, but not on widget....good but could be just tad better.",4,1,5.14.1,2020-03-08 02:50:31,"Hi, +Check that there are events for the current 12 hours. Email me at 27applab@gmail.com, I will help",2020-03-08 01:38:52,most_relevant,prox.lab.calclock +Thuany Moreira,https://lh3.googleusercontent.com/a-/AOh14GgVkgIhKsfGVpfYzwv6iP1NthghhBVSFcssBjayFg,"Very good Well, it's a great app. I just wish we had more free features. It would be a rmgrest investment.",4,0,5.14.1,2020-03-27 22:41:25,,,most_relevant,prox.lab.calclock +Achyut Pran Das,https://lh3.googleusercontent.com/-mcU3aaN8kjg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOUMe0Jn86qsLr5swVGP-c-dw1Jcw/photo.jpg,"You can add one thing, when we'll touch on particular time period then the particular task should be displayed.",4,0,5.14.1,2020-03-27 00:48:17,,,most_relevant,prox.lab.calclock +scott ackerman,https://lh3.googleusercontent.com/-35twuX9os2c/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM9tfHITsGkLWg2wOPqetP9iOq2zA/photo.jpg,I really like the app. it's pretty cool! How do I get the 24 HR clock on my Android wear? 5 stars if the 24hr face can is possible on the watch! 🙂,4,0,5.14.1,2020-03-17 10:43:32,"Hi, +It is possible. Go to the settings for synchronizing with the smart watch (on the device). And configure the action by tapping on the screen. Set the mode to 12/24. Voila 😎",2020-03-17 11:13:13,most_relevant,prox.lab.calclock +Nilesh S,https://lh3.googleusercontent.com/-H-UWt26N5LE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNZ0qlSsIBiXCFqxl1Ped2DtnUDWA/photo.jpg,"Nice App but not able to use widget (Nokia 2.1 , Android Pie)",4,0,5.14.1,2020-03-19 07:29:24,,,most_relevant,prox.lab.calclock +Hannah Cameron,https://lh3.googleusercontent.com/a-/AOh14GgIMGuWpZpBJkl3vRZAokPGP9goyXt6Uy-NE6vqlQ,Very good app! Helps me stay organized.,4,0,5.14.1,2020-03-19 21:25:27,,,most_relevant,prox.lab.calclock +Yves Pairiot,https://lh3.googleusercontent.com/a-/AOh14Gg511-EelZOktx8A0tUY3Q-UPQc17esfOwOGxuF4Q,"Best watch once you understand it. It takes a while to set up just the way you want it and to actually ""get it"", but once you do it does exactly what it promises. Its sleek yet informative and by far the best ""at a glance"" app for your homescreen. The watch addon is the cherry on the cake. Only improvement in my opinion would be to add multiple different widgets. Like give me the option for a small simple one on my home screen and a bigger more detailed one on my office screen for instance.",4,40,5.13.2,2020-02-18 16:00:32,,,most_relevant,prox.lab.calclock +Angela Archambeault,https://lh3.googleusercontent.com/a-/AOh14GhKrhm3i8MCHeprUQku0ONbVnmOuCn7XxITDus5fLs,I love this widget!! It's such a clear picture of the time and schedule!! My only thing is I wish it was compatible for the galaxy watch! I got the app because I saw it on the watch I'm the pictures but it doesn't work with the galaxy watch. 😕 If this was improved to work with the watch I would give it 5++ stars.,4,3,5.13.2,2020-02-18 13:46:13,,,most_relevant,prox.lab.calclock +Andres Hernandez,https://lh3.googleusercontent.com/a-/AOh14GjuXxCtFFGzgZO24wqwjbCJI0ioV5-5BvFaNexCURY,"Cool app! Can almost replace the other widgets I have on my home screen, but missing one feature (which is not the fault of the app, but a shortcoming for my particular needs): weather. Include weather and I can easily pay for this app! Still keeping as it is a good app!",4,3,5.13.2,2020-02-06 05:58:44,,,most_relevant,prox.lab.calclock +Shafiq NobodyHome,https://lh3.googleusercontent.com/a-/AOh14GgAL3c1KTJrKZy0CieKJvPEVvJIxz5j4N0VDnSXBA,"I've been using this app and the watch face on my Moto 360 for close to about a year now. With all my events for the day (and the next day) visible on my wrist, I can keep track of my calendar easily. However recently, the watch face is defaulting to 'Simple Clock' (default watch face) whenever I use the watch. It only affects Sectograph and it has been bugging me since.",4,8,5.13.2,2019-12-13 10:34:37,"Hi, Reinstall the app on the smart watch. +Must be version 5.13.2",2019-12-13 11:00:51,most_relevant,prox.lab.calclock +Marcel Montagné,https://lh3.googleusercontent.com/a-/AOh14GjqFW_bUwUvY45OP5OR-7-_yh5HErP3WAzAlm4Brg,"I bought the pro version and like it so far. For now what I'm really missing is the ability to change days from the widget itself, with the left and right arrows, and not only from inside the app. Why wouldn't you enable the left and right arrows to change day as default? Having to go into the app to review past or coming days defeats the purpose of the widget, and forces you to use something else other than the widget itself. Other than that, the app seems to be very practical. If the ability to swipe from one day to the next day or to the last day from the widget gets implemented, it would be a 5 star app for me. Thanks.",4,16,5.13.2,2019-12-18 15:50:17,,,most_relevant,prox.lab.calclock +LuyandoPhoto&Video,https://lh3.googleusercontent.com/a-/AOh14GgpNqPcty1YzzW2lZxHACjAVysePq0sOTcifsG4Pw,"I like it, also I would like, like a wedget but for the block screen. Then you don't need to open the phone, only activate the screen in order to see the next task in your calendar",4,0,5.13.2,2020-02-24 03:58:14,,,most_relevant,prox.lab.calclock +Ian Barrow,https://lh3.googleusercontent.com/-GBX7LkKasHU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNLGEykBCpgeqogOKy9mML3-QVsPw/photo.jpg,A great tool to see what's going on in your day. I linked work and personal calendars into one. The customisable buttons are a nice touch and allow you to make it work the way you want it to.,4,0,5.13.2,2020-02-11 09:47:01,,,most_relevant,prox.lab.calclock +Majid Alashari,https://lh3.googleusercontent.com/-C6QS3Ogeoo4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM0ONkjcWq-euTBBsBAw_68hBcNtQ/photo.jpg,"I think it's pretty cool how this app communicate with the calender, smart watch greatly enhanced the experience as well, good job. I just wish there was a galaxy watch version of it. :(",4,0,5.13.2,2020-02-10 10:56:39,,,most_relevant,prox.lab.calclock +yash gupta,https://lh3.googleusercontent.com/a-/AOh14Gibj28MtubUdfxVHAUgdX78_7bMv8_WIPzMzQpHtA,A very good Pie chart graphical view of your schedule with nice colours and everything is good about the app specially the graphical side. I'm not a pro owner but also rating 4 stars because of the glitch in app today. My whole sector were invisible today and it just showed blue colour filled circle with only an area of 45° looking as faded blue. And nothing else was there. I also have screen shot of the error if developers need it. Else it's a great app. Soon will buy the pro version.,4,2,5.13.2,2019-12-31 15:29:00,,,most_relevant,prox.lab.calclock +Callie Oister,https://lh3.googleusercontent.com/a-/AOh14Gi7aJplmbWn4Wo9zyrTnUIz1j8_yPtA5s9Ju8lIL8w,This is so helpful! I use this with the forest app to stay on task. You can add different calenders from Google and keep work and personal separate.,4,0,5.13.2,2020-02-13 15:04:08,,,most_relevant,prox.lab.calclock +Eavan Howard,https://lh3.googleusercontent.com/-JPKdhlKty4Y/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPfBBySiMNr9SxUZS0hgQF5xpp3rQ/photo.jpg,"Its your calendar on a clock, best if you have a smart watch...I dont. But still a great app if your a visual person. 5 star if I ever get a smart watch!",4,0,5.13.2,2020-02-22 15:17:48,,,most_relevant,prox.lab.calclock +Barb French,https://lh3.googleusercontent.com/a-/AOh14GgNu4kXFtp4od0fFH64fSTd36QSjdIFhhBHRWEn7G0,I used to be able to tap on the widget and it opened but now it doesn't. What's the point of the widget if it doesn't open? *Was able to quickly fix in the settings. Thanks for the comment.,4,0,5.13.2,2019-12-19 15:41:18,"Hi, +We made the default ability to click on sectors of the widget. +To return, click on the widget button (upper right corner of the widget) and ""Customize widget buttons"". Choose the first option",2019-12-19 12:55:49,most_relevant,prox.lab.calclock +Willie Carmichael,https://lh3.googleusercontent.com/a-/AOh14GgqtUNGyG8qlXhw-_TExf9uBDG3jLQWygqjPk4NeQ,Good visual representation of my daily schedule and to-do list. A great way to remain mindful of how time is spent during the day.,4,0,5.13.2,2020-01-02 13:39:24,,,most_relevant,prox.lab.calclock +dinesh kumar,https://lh3.googleusercontent.com/a-/AOh14GiUcPfHH8JyfqFa0ozQQgtdnc-82j6UOkT0blwv7w,Lot more easy and practical... maintaining calendar is fun...loved the widget,4,0,5.13.2,2020-02-19 02:44:20,,,most_relevant,prox.lab.calclock +Sindre Flø Hunnes,https://lh3.googleusercontent.com/a-/AOh14Gh4ZJbnZ91ltNj9tL1WQw3M29ODlSnYq9jXMCgQ,Very useful! Syncs with calendar and lets you easily see upcoming events and tasks,4,0,5.13.2,2019-12-24 14:10:56,,,most_relevant,prox.lab.calclock +Umesh Patil,https://lh3.googleusercontent.com/a-/AOh14GiWWhtG6YvYSnPSKjuSGBlTB2UQpwf36YGsN8wQ7w,Very nice app and easy to use,4,0,5.14.1,2020-03-19 00:38:33,,,most_relevant,prox.lab.calclock +Kyle,https://lh3.googleusercontent.com/a-/AOh14GgmIUpoeHYcjjtFKn8Nt0_GQQmiD5K0RF3OAnEwSwk,Doesn't really sync with my calendar as events are added... *Edit: user error with delay in google calendar.,4,1,5.13.2,2020-01-06 07:31:06,"Hi. +Go to the ""My calendars"" menu in the application and verify that the calendars you want are selected. Next, make sure you have events for the next 12 hours. The list below also displays events for 12 future hours. +If the problem persists, please write to me at 27applab@gmail.com, I will give more advanced instructions",2020-01-06 01:05:17,most_relevant,prox.lab.calclock +Florian Elsenhans,https://lh3.googleusercontent.com/a-/AOh14GgkJKsVb0IavsJEMAs1RZAi-t47ZD9zBcyDYzeB0A,"It is a good app, really ok, but I don't like that, you oblige me to rate. This is a no go...",4,0,5.14.1,2020-04-03 13:33:13,Sorry for that. And yet thanks for your rating 😊,2020-04-03 13:36:56,most_relevant,prox.lab.calclock +Kamonchanok Boonin,https://lh3.googleusercontent.com/a-/AOh14Gg4t_SroQB8hKjfU3qRsm0yCNNkxcw5d20Eu_68,This app is very helpful but you need to control yourself to done schedule on time.,4,0,5.13.2,2020-02-24 08:02:41,,,most_relevant,prox.lab.calclock +Konskrypt,https://lh3.googleusercontent.com/-9bXuPto47ZI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPQ8ZfcM2kd1zEWrSGXyYmiGUAtJw/photo.jpg,Unable to tap widget to open app and open calender since update!!!!! Thank you for response. Sorted,4,0,5.13.2,2019-12-13 09:00:37,"Hi +We made the default ability to click on sectors of the widget. +To return, click on the widget button (upper right corner of the widget) and ""Customize widget buttons"". Choose the first option",2019-12-13 04:29:22,most_relevant,prox.lab.calclock +Neeru Agarwal,https://lh3.googleusercontent.com/-Cg4XQXQk3T8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMN6txujYdyeNWqI3U3wb1k74JzVg/photo.jpg,Nice app but haven't been able to explore it's full potential,4,0,5.13.2,2020-01-27 14:55:10,,,most_relevant,prox.lab.calclock +Jeronimo Meanus,https://lh3.googleusercontent.com/-HhRKHFbAGQI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMaZkxtpmsWI0HixLSRzh-MZcYtcA/photo.jpg,Its great app & it should be complete free but of course nor maybe few updates.... Than I'll rate 5,4,0,5.13.2,2019-12-28 19:46:24,,,most_relevant,prox.lab.calclock +Birru Ashenafi,https://lh3.googleusercontent.com/a-/AOh14GgH0q3dZlR3WvwflPe-j4Y_3mnz87iRyVlsWqHUyQ,Very helpful for busy scheduled hard workers.,4,0,5.13.2,2020-02-06 14:56:22,,,most_relevant,prox.lab.calclock +Mahmoud Osman,https://lh3.googleusercontent.com/-R9BCMt5lE2I/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPcN3uYiTA5T4RHXZc24wD5IKgUGA/photo.jpg,Good app but need to something more,4,1,5.14.1,2020-03-20 18:06:01,,,most_relevant,prox.lab.calclock +Sylvia Genders,https://lh3.googleusercontent.com/a-/AOh14GhZBIkYUqt7kQRDQjxgchm6lVC3CHXiTHLmSk3IdQ,It gives a nice visual look at the day.,4,0,5.14.1,2020-03-30 11:53:00,,,most_relevant,prox.lab.calclock +Aditya Dabhade,https://lh3.googleusercontent.com/-0Yow8nwTmmo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP6eTegFMnQe4vua--FmDpdxKi3Jg/photo.jpg,I started using this app in 11th std & I'm getting its benifit but the only thing is that it doesnt shows the tasks we have to complete in some monutes or if two tasks are to be completed simultaneously in a hour. So I humbly request to make some more changes in this app so that everyone can use it more comfortably.,4,0,,2020-03-17 04:18:12,,,most_relevant,prox.lab.calclock +Tammi Lentz,https://lh3.googleusercontent.com/a-/AOh14Ggsq88sLsxnbk4yB_mlzV3untYXWbSGuhlVyXncBA,"Neat, but I don't put that much stuff on my calendar.. Looking for more of a scheduling tool for everyday routines. Don't want to add all that stuff to my calendar.",4,0,,2020-03-09 15:51:34,,,most_relevant,prox.lab.calclock +Kalparaj Biswal,https://lh3.googleusercontent.com/a-/AOh14Gjr7z_GohAUnpSAHoQ_85yqdFLi-OydrHXiq1Zy9w,"Pros: I loved the visual representation of events and Integration with Google calendar. Cons: It isn't integrated with Google tasks. Most of the users would use Tasks to track their activities, along with Calendars. I would love to purchase the Pro version and rate it 5 stars if integrated with Google Tasks.",4,7,5.12.1,2019-11-08 12:15:30,,,most_relevant,prox.lab.calclock +Chris Gray,https://lh3.googleusercontent.com/a-/AOh14GhFoxAVE7w95F6-PuZ8hriuN5WHu_y77MvmYfLh0A,Very nice setup. Thought enough of it to pay for premium. Couple things - add ability to change watch hand colors (arms match scheduled event making it impossible to see) - add ability to increase watch face inner diameter digital time (difficult to read). Watch = Ticwatch Pro 4g Phone = Moto Z3 w/Pie,4,0,5.12.1,2019-12-05 01:24:27,,,most_relevant,prox.lab.calclock +Shashi Kant,https://lh3.googleusercontent.com/a-/AOh14GjVO3oMjYPNQhMkf3cQRMxErec5Uqdsti_dZOEm,Overall impressive app but it does not updated in real time. Always showing delayed time until manual update.,4,0,,2020-03-18 08:10:17,,,most_relevant,prox.lab.calclock +Clay Chen,https://lh3.googleusercontent.com/a-/AOh14GgehwX3lCZQ3MpHvciuMHAf0uu3GLzkc9OU5WPFXrg,Only the first event added to the calendar gets synced to the sectograph app instantly. All other events takes quite a while to be synced to the app. Clicking manual update or relaunching the app doesn't solve the issue.,4,0,5.12.1,2019-11-16 18:42:43,"Hi, If you use the Google Calendar app for editing events, the problem is in it. He began to slowly give events to the calendar provider on the device. Email me at 27applab@gmail.com, I will tell you what can be done.",2019-11-16 22:43:05,most_relevant,prox.lab.calclock +Balint Marek,https://lh3.googleusercontent.com/a-/AOh14Gjp1qjavWfOwsnM7tUrrpmP28mUKdFf6FX_dC0t,"Very nice and useful. Would be even better to be able to set less than 12 hour cycle, as series of short events inside short time period (e. g. a few consecutive stand-ups) are not easy to see.",4,0,5.12.1,2019-10-29 09:59:19,,,most_relevant,prox.lab.calclock +Koryne Muston,https://lh3.googleusercontent.com/a-/AOh14GixDLtKBRrEoUdb-SYprBg7mlMBVrdlNUjavwjW,Great for to do's and keeping on track with schedules. Notifications need to be adjusted. I don't always hear when they go off. And sometimes miss my stuff.,4,1,5.12.1,2019-10-23 15:17:00,,,most_relevant,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I really love this app for so many reasons. Above all it's keeps me organized and punctual. What I wish I could change, or maybe I can and just can figure out how, is how to make the widget color pallet settings the same on my OS Wear. thats why I bought the extra options innthe first place. My watch face doesnt even look like it does in the photos. Can I change this!?",4,9,5.8,2019-01-16 15:47:30,"Hello! +Please email me at 27applab@gmail.com, I will help",2019-01-16 22:26:39,most_relevant,prox.lab.calclock +Rakesh Nanjappa,https://lh3.googleusercontent.com/-dw6DYyY6UkU/AAAAAAAAAAI/AAAAAAAAQtk/AAKWJJPehX7MhHIycwdEF5eKNzUhtNV2FQ/photo.jpg,"This app is amazing. I use it to show all my Google calendar events as sectors on a 24 hour clock. I just have one feedback, I wish there was an option to divide the clock into two colored sector, based on from when sunlight is available and when it's not. The idea of ligh/dark period seems more practical than the usual AM/PM. Or maybe, provide a custom rotation to the dial, for eg., i would want the day to start from the time I go to bed. And thanks for this great app. Highly recommended.",4,20,5.9.1,2019-02-23 01:20:01,,,most_relevant,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Really love the app. Helps me organize my time and schedule. If you could just make the hours numbering in front of the sector, and adding an option for showing minute division lines would really help to read it better. Setting the hours numbering outside the clock makes it look kinda crowded, and with some of the hour numbers (12, 3, 6, 9) not shown kinda bothers me. Also please make a preview of the clock in the settings so we won't need to switch from the app to the homescreen to see the changes. Really looking forward to see these features fixed. Overall, great app!",4,16,5.7.2,2018-09-17 14:26:02,,,most_relevant,prox.lab.calclock +Yufei Quek,https://lh3.googleusercontent.com/a-/AOh14GhL0yHNrIzwuJ1Mblyf8KsWuKvkZu6Vk9D0Hr4i,"EDITED - read second paragraph. Hi, not sure if I'm missing out a setting but the app does not display all the events in a day. It makes sense to show only the events in a 12 hr time frame on the clock face, but the list of events should include all tasks of the day -- instead of us having to ""fast forward"" the day until the events appear. I did not mean ""tasks"", poor choice of words on my part. I meant that if I have an event at 9pm today, and the time now is 6am, I will not see this at all. The clock face only shows 12 hrs: this makes sense. The list of events below the clock should probably show events for the whole day, though.",4,11,5.8,2018-11-14 06:28:34,"Hello. +Yes, now I understand. I agree with you, it will be really useful. +We have already planned a combined widget that will display the widget and the list of events for 24 hours (and more) - next to the widget. +We will try to implement this option during 2 updates.",2018-11-14 06:26:12,most_relevant,prox.lab.calclock +NajaNatrix,https://lh3.googleusercontent.com/a-/AOh14GgQC5zlyi0ZkHA4F1A5NRgnFkvgpiRkp1Ybd4lX,"I think it's by far one of the best apps out there. It integrates well with the default calendar app, and really helps you to track your day. Tons of customizable buttons, and even the clock face itself from the hour/minute arms colour and thickness/length, to the placement of the numbers on the clockface. I love how it displays the time remaining to your next meeting, task or alarm. Widget is pretty good and you have full functionality from the comfort of your home screen. Lock Screen display??",4,212,5.10.2,2019-04-07 19:26:03,Hi Thanks for the great review!,2019-04-08 02:57:46,most_relevant,prox.lab.calclock +Jaiprakash Sewram,https://lh3.googleusercontent.com/a-/AOh14GgZuPWExcq8Wve-F5uVDSyBk9MbMa9b8MnOpDAS7A,"Been using this app for a short while. So far so good. It's purely a visual of events, time, and alarms, while all the actual event management still happens through the Google Calendar app, and which I think is brilliant. Still figuring out the app.... Like how does one track time on it? 🤔",4,3,5.8,2018-11-16 03:50:34,,,most_relevant,prox.lab.calclock +Jake Sway,https://lh3.googleusercontent.com/a-/AOh14GjguU0gkxYoMWLg2jmYyn30mOck6X1GIwyIaL86,And this is definitely a good app for finding out your full day from start to finish in great detail. It has some pretty nice visual effects too.,4,0,5.12.1,2019-10-09 19:30:42,,,most_relevant,prox.lab.calclock +leeju hsu,https://lh3.googleusercontent.com/a-/AOh14GhrvbfMSPTO6vhIubF6c68Dgn8l8f7vDh56JSRbDyY,I like it so far and I bought the 24 hours extension. The only complain that I have is the buttons that sit on the four corners of the widget is very hard to precisely click. I got very frustrated every time I try to click it. Most of the time it'lll trigger to move the widget itself. ☹️,4,1,5.8,2018-12-05 17:01:20,,,most_relevant,prox.lab.calclock +Peter van der Meulen,https://lh3.googleusercontent.com/a-/AOh14GjKVTxniVwkWjlEMTpqSxJ4fW-ncuO-s9RAx8kmnZM,"Made outlook play nicely by just importing my outlook calendars to google calendar. so that was pretty easy really. I love the widget on my phone, it looks good, works nicely, it's awesome. The phone-clockface however can't be configured I can't find any option to add my business-calendar and some shared calendars to the clock face, it seems to only show my primary calendar (which apart from my own birthday is completely emtpy). (I'm aware that on Android one can select calendars, they just don't reflect over to the android watchface)",4,2,5.9.1,2019-03-29 10:00:46,,,most_relevant,prox.lab.calclock +Nathan Bullen,https://lh3.googleusercontent.com/a-/AOh14Gjdkd17D5cH4OLFWjHRgmsEdo2S70HpmbtWuQP2ooY,"Really great app, love being able to visualise my day! But it would be fantastic if the app (and widget!!) Could now sync with the systemwide dark mode on Android 10!",4,1,5.12.1,2019-10-11 03:59:52,,,most_relevant,prox.lab.calclock +Jeremy Bork,https://lh3.googleusercontent.com/a-/AOh14GiVDHIUZ-6zI9hUe_RJNOYWan6jGyfKAudUCvc_HSk,"This is an excellent application. The interface is fresh and new, and provides a new way to look at your day. I only wish that it could be made to be resized a little larger, as well as show all day events below in a list format as they are small around the bezel. Apart from that, it is a solid 5 stars!!",4,3,5.9.1,2019-03-07 02:48:11,"Hello. To see the list below, this is a good idea! In addition, you can increase the size of the widget. Make a long press on it and drag it to the desired size. Thanks for your review :)",2019-03-07 02:55:37,most_relevant,prox.lab.calclock +Leah Cooper,https://lh3.googleusercontent.com/a-/AOh14Gg6JADnqBPwXo_bMQnjpBzs7PJSWqBH7SsbtiNx5g,"Excellent and useful! I wish I had a smart watch to put it on but it's good on my phone too. Occasionally the widget can glitch and turn invisible but it will come back. The outside clock face numbers are only black? Can't see them on my background and can't figure out how to change them. The widget palette is great, but I can imagine customization with background images of clock faces, different hand shapes, and/or color gradients to make it look really impressive!",4,2,5.10.3,2019-07-13 22:47:02,,,most_relevant,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,This app is the simplest thing yet it makes such a big difference in my daily life. I would only add the option to see the details of each task on the widget (right now it opens the app by default which is not a major issue but It would be an improvement). Thank you for making my life easier!,4,2,5.8,2018-12-07 16:00:18,,,most_relevant,prox.lab.calclock +John Cole,https://lh3.googleusercontent.com/a-/AOh14Gjwc8_EENJuR5jom4s1bwKcNBxBknLmR_Dokf-ybA,"Awesome new idea for a productivity widget. Significantly more useful than a calendar or list of upcoming events. the one thing I would like to change would be the display of numbers on arcs. It looks kind of silly near the center of the circle when the numbers twist and overlap. Change that, 5 stars.",4,21,5.9.1,2019-02-04 16:05:11,,,most_relevant,prox.lab.calclock +Daniel Lee,https://lh3.googleusercontent.com/a-/AOh14GhJPhYPeCkpW_qcb2gkgLqS6Fj4YpaZwJeddYpY,"I like it a lot until you have overlapping times for your schedule or events.... It's too hard to tell which one you are looking at cuz it only shows one. Unless you touch it or open it but that defeats the purpose of it, it's for a quick glance. Fix that n ur golden.",4,2,5.7.2,2018-10-26 18:01:25,,,most_relevant,prox.lab.calclock +Satheesh Kumar,https://lh3.googleusercontent.com/a-/AOh14Gh1Dj2yhHrHek9qR7k8gsdb6npFKO-7B7vYcfafbQ,"Do you have plans to support Office 365 and outlook calendars directly. Currently, I am syncing my calendars to Google but it's not a pleasant experience as the sync keeps failing on one or other calendar. Due to this reason, I am stopping sectograph and moving to outlook widget :-( For those who are on google calendar, it's an excellent app and the developer support is awesome. I'm rating 4 only for the dependency on google calendar.",4,5,5.10.3,2019-05-19 06:13:35,,,most_relevant,prox.lab.calclock +Betsy Rackliffe,https://lh3.googleusercontent.com/a-/AOh14GjRHIBiIN5cOEmM1DJ0ooidVDVzJF30UtDonRUpwg,I use this to help me see what my day looks like. The circular shape helps me related to easier. I know and I have open spots and I know and I am busy. It sinks with Google so I don't have to import information multiple times. Really like it.,4,0,5.7.2,2018-10-14 16:00:30,,,most_relevant,prox.lab.calclock +Leelou Marsh,https://lh3.googleusercontent.com/-l624iETYs28/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPMEmCNB2e-toooP0DQOfwcuSZyag/photo.jpg,"Quite useful little widget. I only wish I had control over which calendar it used. it seems to only pick up the Google/Samsung and I would like to use the widget for my repetitive schedule AND a second widget for my daily planner. There is the ability to select which calendar within the Google app I want to use, but that just makes the calendar side messy. Two separate app calendar selection would solve this for me, unless anyone has a better idea how I can get around this? Still, thank you dev",4,2,5.10.3,2019-06-01 23:47:07,,,most_relevant,prox.lab.calclock +Wes Poteet,https://lh3.googleusercontent.com/a-/AOh14GjqrNk-r0qtsFm3OanLd1Ab1PRnqRUffJemZuKx,Very helpful. A bit hard to completely customize but much of that is due to how much flexibility there is.,4,0,5.12.1,2019-11-28 14:46:30,,,most_relevant,prox.lab.calclock +Raymond Kidd,https://lh3.googleusercontent.com/a-/AOh14GixGP_zncTHbzbm87UGzZzOXQtpJf519Ah2z8mRYA,"great so far, it would be nice to allow the 5 buttons on the widget have an option to skip a day, week or month forward or backward, if i would like to look ahead i have to open one or two apps when it could be a button you set on the widget. maybe even a button option that allows one widget to switch between multiple calendars, just thought id include that suggestion.",4,77,5.10.3,2019-05-07 05:53:56,,,most_relevant,prox.lab.calclock +Bethany B,https://lh3.googleusercontent.com/a-/AOh14GilBGA_d_g5hBnj-t90jrD7HsW1Y1Cm6OPCBBnL,I really love this free app. It's so cool to see my schedule visually and know how much time I have until the next event. The only thing I would change (and this may already be available in the paid version) is the ability to choose different colors for each event.,4,1,5.9.1,2019-02-25 11:52:45,,,most_relevant,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,I give it 4 stars but needs main edits: 1. There got to be alerts to remind one of the activity.. not just notifications. 2. Widget should be on lock screen beside being on the home screen. 3. This app can have the option of overcoming or controlling other apps; as to prevent distraction of following the routine.,4,0,5.7.2,2018-10-15 23:32:42,,,most_relevant,prox.lab.calclock +Alfangelo Hickey,https://lh3.googleusercontent.com/a-/AOh14Gie89Wudk8ImXls2WgZAdV-Hg34oZ2NWpyDpif8CQ,"Great app, switch between the widget and calendar directly. It can be improved, but is great in its current form. For some reason the widget disappears sometimes, needing to be re-added, which is annoying.",4,1,5.8,2019-01-26 01:03:27,,,most_relevant,prox.lab.calclock +Yoshi Maeshiro,https://lh3.googleusercontent.com/a-/AOh14GiPhF0Qs4Q-thTC00hdjyZftx526j72hrN2wh6S,"Had written a bad review because I spent a week trying to make the app show two widgets with different calendars. Couldn't do it (and wasted hours!) until I noticed a nearly invisible dot (at least on my screen, I'm using the iblue app) near the widgets. Pressed it and discovered the widget menu! They should really make it stick out or write clear instructions about it on the app. I imagine they try to make it subtle in order to not affect how the app looks, but it took a week to find it.",4,3,5.10.3,2019-06-26 16:34:38,"Hi! We would not publish the application with obviously not working functions. We are not enemies of our rating :) +Please email me at 27applab@gmail.com. I will help set up this feature. +I am sure that everything will work fine!",2019-06-21 23:24:14,most_relevant,prox.lab.calclock +Егор Ивановский,https://lh3.googleusercontent.com/a-/AOh14Gg6GvewRT1MKCT30bmfmM1tW8bwsgiHcLwYPCPyXA,"Nice app, 4 stars for interface, somewhere overmuch filled with great variety of little numbers, quotes, and other things , which sometimes could cause eyes-bleeding, as an evident consequence of an attempt to find out what for they are here.",4,1,5.9.1,2019-02-13 15:42:02,,,most_relevant,prox.lab.calclock +*Kim Zick,https://lh3.googleusercontent.com/a-/AOh14Gj0x6Hpi_VHqfH642TReMj42azZp3usH36BqJ797kE,"It's probably the closest app to what I'm looking for. I'd really like to be able to either style or disable monochrome mode, and have the option to use the same style between the watch face and home widget so I don't have to go back and forth in the settings to make them match",4,0,5.8,2018-11-27 16:35:14,,,most_relevant,prox.lab.calclock +Katie Bergen,https://lh3.googleusercontent.com/a-/AOh14GiA4C6qGkhhg84etXzsRwZm3Q6p97RzIhTto4xi,My favorite aspect of this app is the visual organization of my daily events! It's a great little widget for people who need to keep track of their life but literally always forget to open the calendar app. I would like to see more color custom options 😊,4,0,5.8,2019-01-14 19:13:48,,,most_relevant,prox.lab.calclock +Martijn Poot,https://lh3.googleusercontent.com/a-/AOh14GjTCyEq9ilCK85OoQRBaSZof-M6aRX8A43r4Shk_Qo,"It's a great app and the watchface is a perfect addition, but it would be even more perfect if the 24h mode was a feature of the watchface. (And an option to switch between 12h/24h mode and open meetings by tapping the sector.)",4,0,5.7.2,2018-10-23 10:34:47,,,most_relevant,prox.lab.calclock +SHUBHAM SHARMA,https://lh3.googleusercontent.com/a-/AOh14GgOE1SNHWxerzCdPMCxr481Eh9Gj8lGfrz7oI2Z,overall a good app to manage your tasks. A good planner with nice UI and charts.,4,0,5.12.1,2019-10-21 17:51:18,,,most_relevant,prox.lab.calclock +Angela Perez,https://lh3.googleusercontent.com/a-/AOh14GhEZTzJh9WE1vjl931eLmeOI2VmoU1kDlBPoGGBo7M,It's a neat idea and I've I tweeked the display settings I was able to make it easier to read. There are some features that could be explained better though. overall it's a interesting way to see what's on your schedule.,4,2,5.10.3,2019-07-04 14:29:35,,,most_relevant,prox.lab.calclock +Jose Ortiz,https://lh3.googleusercontent.com/a-/AOh14Gh7LYSwD09slqQ7Z0MbG2evjwkSN4dNWAOqIbX8,Very cool app! Only thing I found is that when I update and remove an event from my calendar the widget doesn't update. the event stays in the widget. Also wish it had a setting to show battery percentage. Still like the app though:),4,3,5.10.3,2019-05-06 17:36:10,,,most_relevant,prox.lab.calclock +Sarah Wattrus,https://lh3.googleusercontent.com/-REuxi9EWaI8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNqNT45XXVDpj4QEVTNY6pbAEBJYg/photo.jpg,"Im really keen to use this app, but the fact that it doesnt have an alarm bugs me a lot. I tend to glance over things easily so an alarm that I have to stop after reading my next event will be incredibly helpful.",4,1,5.8,2018-12-20 07:15:18,,,most_relevant,prox.lab.calclock +sou venty,https://lh3.googleusercontent.com/a-/AOh14GgjF-AAfPmHYXqu_lLJ9zAKIQm4PMWMlCvpJZLF,"Nice app. Nice design. But, I don't understand what is a point of ""notice"", cuz if I want to see it I need to be into the app. Notice need to come with ""notification"".",4,1,5.9.1,2019-03-15 10:59:03,,,most_relevant,prox.lab.calclock +Chaplain Wade,https://lh3.googleusercontent.com/a-/AOh14GitC7Hq50RkjmR5rrjZ5LqfWEquAiXLJoI8TEhrTg,"it is a very nice way to look at your schedule. It also helps you determine productivity, whether you are scheduling efficiently and are you allowing yourself some downtime. It can use some improvements and I believe that they will happen.",4,0,5.8,2018-12-21 17:30:13,,,most_relevant,prox.lab.calclock +Munir Ibrahim,https://lh3.googleusercontent.com/a-/AOh14GisGgESTfPZhNHya5CPurFs0zLBZUYDTcbMat2DiQA,This is a great application to view the events in your day. Easier to see compared to the traditional calendar app. One improvement that I would like to see is the ability to see future events by pressing on the widget itself instead of going into the application.,4,0,5.10.3,2019-06-25 10:16:18,,,most_relevant,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,I've really enjoyed this visual approach. This is the first time I've used a digital schedule of anytype and been successful. I bullet journal and use a planner.,4,0,5.7.2,2018-10-22 00:38:10,,,most_relevant,prox.lab.calclock +Валентин Караманчев,https://lh3.googleusercontent.com/a-/AOh14GgqTZKrqAtUJtrfJif-3ly6RCPSjGwBTOAgQGMFOXo,"The most effective way to organize and follow your tasks, it is brilliant,! The only downside is that it does not have desktop version, I hope they will fix this gap soon.",4,0,5.7.2,2018-11-06 09:39:57,,,most_relevant,prox.lab.calclock +Jeff Frank,https://lh3.googleusercontent.com/a-/AOh14GjI0Ho7S_s1-dQ2GoBZhq8a9t1Wr_fhfTGvqduG,"Love this app, has really helped with sorting out school, work, fitness, and study time into my schedule. Only reason it isn't a 5 star is the lack of a watch face for my Galaxy watch.",4,1,5.9.1,2019-03-21 12:24:51,,,most_relevant,prox.lab.calclock +Mary Anne Morriberon,https://lh3.googleusercontent.com/a-/AOh14GgjHcvO6BMfhP16FrGUlFgga6-nY3rwEbqfbWS_4g,helpful for those who are visual or have a hard time grasping timeframes. still learning all the features. Demo mode is helpful but a full tutorial video would be more helpful.,4,0,5.8,2019-01-17 10:34:40,,,most_relevant,prox.lab.calclock +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,love it. however when it says homescreen I thought it would show up on the homescreen of my phone... but I order for me to see it I have to open the app. so not as helpful as I thought it would be. is there a way to make it part of my homescreen where is is always present?,4,1,5.9.1,2019-03-29 17:25:46,"Hi, +To place the widget on the home screen, make a long press on the free space of the home screen and click ""Widgets"". Find the widget and drag it to the home screen. +After that, make a long press on the widget and drag it to the desired size.",2019-03-30 04:02:15,most_relevant,prox.lab.calclock +Challa Fletcher,https://lh3.googleusercontent.com/a-/AOh14GjlQMnSBPLpngxfT0nXPGpPKQOKCa7vBupGS_BLhk0,I like this app. I wish the 24 hour mode wasn't a part of the pro version I would like to try it before I purchased but I like the visual of my day on the graph and the sync with my calendar or is now my main screen in my phones screen.,4,1,5.12.1,2019-10-02 03:28:46,,,most_relevant,prox.lab.calclock +Britton Redline,https://lh3.googleusercontent.com/a-/AOh14Ggo5dklGa-CmalrnTrBeBBCTFxRFaOoZqh3ra8xZQ,"This app's PERFECT for helping manage one's time! I'm amazing how much better I do, when I can actually look at it and literally see my time ""flying"" by.",4,0,5.7.2,2018-10-26 17:45:18,,,most_relevant,prox.lab.calclock +Jordyn Tanner,https://lh3.googleusercontent.com/a-/AOh14GifNu_3oNikdUSkgBjDX7nF1O5zJWSZEguRtZF00Q,"I like it, but I wish I could go to the days ahead and see everything planned instead of what is just at or ahead of the time right now. For example, it is 5pm right now, and I can only see what's happening after 5pm tomorrow.",4,1,5.7.2,2018-10-28 22:58:07,,,most_relevant,prox.lab.calclock +Brian Albrecht,https://lh3.googleusercontent.com/a-/AOh14GgdVM5EEN31nO3L97_ovbyPPzR9NJO6bRSQf2_FHA,I love the look of it and how it helps me see my schedule! I don't like that not all my events show up on the widget. If it worked like it was supposed to it's a five star app!,4,0,5.10.3,2019-08-09 12:58:17,,,most_relevant,prox.lab.calclock +Angela Loupe,https://lh3.googleusercontent.com/a-/AOh14Gh1Jh06NmjwuDQin_OiiLTeUIjR1UA-xyJDV6b0IYk,"Love the design, although the rolling 12-hours takes some getting used to. Very helpful for me to be aware of how much time I have available before an event",4,1,5.8,2018-12-09 20:53:41,,,most_relevant,prox.lab.calclock +Algirdas Davidavičius,https://lh3.googleusercontent.com/a-/AOh14GjAfK_lAScgm87tOm2Db-UAfMiseVOMAzIsEYfK3w,"Does not include connectivity with Google tasks or similar tasks software, which is, at least for G-calendar users, lamentable! The very idea and design are superb though!",4,2,5.9.1,2019-03-20 19:54:29,,,most_relevant,prox.lab.calclock +W,https://lh3.googleusercontent.com/a-/AOh14GgUs-AY4F4lis_Py-cXb8yx_Rwrpc2ho54aR7A,"I'm still getting my way around the app/functions. so far, its proving its worth. like to find a way to connect to alarms n reminders.",4,1,5.10.3,2019-04-26 19:17:59,,,most_relevant,prox.lab.calclock +Rohit Agrawal,https://lh3.googleusercontent.com/a-/AOh14Gi1yO_VNcdt2zkw21G8TkQrV8bwQTeWEo5uxb2t-A,The only drawback of this app is that you need to add events or tasks or routine to your Google calendar in order for it to show it in the app. It would be great if such events could be added on the app itself.,4,0,5.10.3,2019-09-13 10:30:34,,,most_relevant,prox.lab.calclock +David Sawitsky,https://lh3.googleusercontent.com/a-/AOh14Gie9KA6Htcl4Uh5UqEZGGHT2WFQ7cE5-XgOFA4uSvg,"Great idea... functional & easier to read vs. traditional calendars/reminders. Still learning it, but I think that I am going to really like how useful it is. Thank you!",4,0,5.8,2019-01-30 14:18:23,,,most_relevant,prox.lab.calclock +Vikram Kanth,https://lh3.googleusercontent.com/a-/AOh14Gh7u1KeiA7W6Uy-FO5_Ys8Sa6pNX9jR3JZmo0xZVw,Excellent time management and gives you a real sense of your day. I would however had liked to be able to change dates to see how other days are looking.,4,0,5.9.1,2019-03-21 12:43:00,,,most_relevant,prox.lab.calclock +Lawrence Billings,https://lh3.googleusercontent.com/a-/AOh14GhI5tbWzNDU_bfwk8SatHx5nltltWEGLloLI13SxA,I like how it gives a different visual of my schedule the only thing I would do differently is make it scalable for phones. It doesn't expand to the boundary box like it should when resizing,4,2,5.8,2018-12-04 01:26:03,,,most_relevant,prox.lab.calclock +Samuel Burns,https://lh3.googleusercontent.com/a-/AOh14Gg0msdT0SG8z1G5MZMV3l8b0Q2bFCfqCuO0spsE,I wish there were a few basic color options in the free version. But this is good enough that I'll buy the full version when I catch up on other bills lol.,4,0,5.10.3,2019-05-10 16:12:21,,,most_relevant,prox.lab.calclock +anjali verma,https://lh3.googleusercontent.com/a-/AOh14Gj6KJ1hUGTEy8ROFbcPc7yH1CMn1KlXtdoC87S2aw,it's a really good app it helps you keep track your meeting or work and it is really good for students they can manage there time really well with this app and the good thing about this is that it reminds you 15 min earlier that the timer,4,3,5.9.1,2019-02-13 04:18:19,,,most_relevant,prox.lab.calclock +Rahul Kumar,https://lh3.googleusercontent.com/-IF5fWWvd38w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMbxrwBK1PUBwWcmoW5n_xlyzmUSg/photo.jpg,"Instead of just giving me a clock for practice. Give me an app for accountability, something in which I can see my entire day at one place and I can manage accordingly. Make it simpler guys.",4,0,5.8,2018-12-14 07:10:02,,,most_relevant,prox.lab.calclock +Nitin MEHROTRA,https://lh3.googleusercontent.com/a-/AOh14Gh7kCs_sQN95CjBpJ7z3f5ZQTwTIwHEq9swJO5hono,Superb concept. But not able to sync outlook calendar with app. Rather it's picking events from local mobile (oppo) calendar. Want to sync outlook & gmail calendars. Please help,4,1,5.9.1,2019-03-25 18:00:53,,,most_relevant,prox.lab.calclock +Elizabeth Gist,https://lh3.googleusercontent.com/a-/AOh14GjL4OsYRHVWClvPD5XzxVWcsn8dCUDGsnMcms0N,Great App. Keeps me on task and organized. Freezes a bit and didn't show all of my planned events. I had to reprogram but other than that no issues at all.,4,3,5.9.1,2019-02-06 12:59:36,,,most_relevant,prox.lab.calclock +Václav Pokorný,https://lh3.googleusercontent.com/a-/AOh14Gg3pFc-Ih-XbuI00s4s0nKicS88z6E2It0hllc0Bck,"Great app, the only two features that would make it even better: 1) Add option to hide declined events (this should be simple) 2) Recreate it as Samsung Gear watchface.",4,6,5.10.2,2019-04-09 15:54:44,,,most_relevant,prox.lab.calclock +Azeem Khan,https://lh3.googleusercontent.com/-aHL3pApKK0c/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMYZ4dwlNDu8QK5u3dmvCbOdpPmcA/photo.jpg,"Great visualization of my day , but feel there's a little too much at once, maybe more options to toggle parts - widget is the best part",4,1,5.8,2018-11-28 00:18:31,,,most_relevant,prox.lab.calclock +Mohammed siddiqui,https://lh3.googleusercontent.com/-Vq0EorV5TLA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOzw5wvnqVpOP24j9kjskrx5hIFkw/photo.jpg,Good app,4,0,5.14.1,2020-04-04 10:07:19,,,newest,prox.lab.calclock +Florian Elsenhans,https://lh3.googleusercontent.com/a-/AOh14GgkJKsVb0IavsJEMAs1RZAi-t47ZD9zBcyDYzeB0A,"It is a good app, really ok, but I don't like that, you oblige me to rate. This is a no go...",4,0,5.14.1,2020-04-03 13:33:13,Sorry for that. And yet thanks for your rating 😊,2020-04-03 13:36:56,newest,prox.lab.calclock +Inna Yazy,https://lh3.googleusercontent.com/a-/AOh14GgG7oJXqg6Mb1NsJbaLJ2omgjLu6dy_WBnk244b5Ic,Nice app. Quite original,4,0,5.14.1,2020-04-02 09:13:53,,,newest,prox.lab.calclock +Sylvia Genders,https://lh3.googleusercontent.com/a-/AOh14GhZBIkYUqt7kQRDQjxgchm6lVC3CHXiTHLmSk3IdQ,It gives a nice visual look at the day.,4,0,5.14.1,2020-03-30 11:53:00,,,newest,prox.lab.calclock +Antonios Armaou,https://lh3.googleusercontent.com/a-/AOh14GhmLo-386dJGZk-WuHhuHSQZl04ozoIcsbPfF5phw,"Good app. I agree with other reviews, the addition of tasks will make it great. Update: The new edition seems to be less useful. It seems one need the pro version to get it to work well.",4,0,5.14.1,2020-03-29 08:34:49,,,newest,prox.lab.calclock +Antonia C,https://lh3.googleusercontent.com/-BiY_JG4r8xk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPiBtGDYJjP3Bh74eBI6OF0owhYfA/photo.jpg,"Good app, but not exactly what I was looking for. This app uses your calendar events and organizes them in the circle. The controls are great, I love when I move the red time bar it scrolls through all the things and shows the time changing. Love the widget. I wanted this to work out a homeschool schedule. I ended up having to make a new calendar and syncing only that one. I was able to change the colors of each event in the app. Very easy to use overall.",4,12,5.14.1,2020-03-28 17:50:34,,,newest,prox.lab.calclock +Thuany Moreira,https://lh3.googleusercontent.com/a-/AOh14GgVkgIhKsfGVpfYzwv6iP1NthghhBVSFcssBjayFg,"Very good Well, it's a great app. I just wish we had more free features. It would be a rmgrest investment.",4,0,5.14.1,2020-03-27 22:41:25,,,newest,prox.lab.calclock +2.5 M Views,https://lh3.googleusercontent.com/a-/AOh14GgwurWrlmEc0fuQPlG35Uv3qRoFdFYqDzAbXtBH,Needs improvement,4,0,5.14.1,2020-03-27 11:22:59,,,newest,prox.lab.calclock +Roger Silva,https://lh3.googleusercontent.com/a-/AOh14Gg5-6RLrMD5zxefG008GaJPbJWx-xqTMOZaTrdyrg,Its a neat app,4,0,5.14.1,2020-03-27 06:59:37,,,newest,prox.lab.calclock +Achyut Pran Das,https://lh3.googleusercontent.com/-mcU3aaN8kjg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOUMe0Jn86qsLr5swVGP-c-dw1Jcw/photo.jpg,"You can add one thing, when we'll touch on particular time period then the particular task should be displayed.",4,0,5.14.1,2020-03-27 00:48:17,,,newest,prox.lab.calclock +Mahmoud Osman,https://lh3.googleusercontent.com/-R9BCMt5lE2I/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPcN3uYiTA5T4RHXZc24wD5IKgUGA/photo.jpg,Good app but need to something more,4,1,5.14.1,2020-03-20 18:06:01,,,newest,prox.lab.calclock +Hannah Cameron,https://lh3.googleusercontent.com/a-/AOh14GgIMGuWpZpBJkl3vRZAokPGP9goyXt6Uy-NE6vqlQ,Very good app! Helps me stay organized.,4,0,5.14.1,2020-03-19 21:25:27,,,newest,prox.lab.calclock +Nilesh S,https://lh3.googleusercontent.com/-H-UWt26N5LE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNZ0qlSsIBiXCFqxl1Ped2DtnUDWA/photo.jpg,"Nice App but not able to use widget (Nokia 2.1 , Android Pie)",4,0,5.14.1,2020-03-19 07:29:24,,,newest,prox.lab.calclock +Umesh Patil,https://lh3.googleusercontent.com/a-/AOh14GiWWhtG6YvYSnPSKjuSGBlTB2UQpwf36YGsN8wQ7w,Very nice app and easy to use,4,0,5.14.1,2020-03-19 00:38:33,,,newest,prox.lab.calclock +Shashi Kant,https://lh3.googleusercontent.com/a-/AOh14GjVO3oMjYPNQhMkf3cQRMxErec5Uqdsti_dZOEm,Overall impressive app but it does not updated in real time. Always showing delayed time until manual update.,4,0,,2020-03-18 08:10:17,,,newest,prox.lab.calclock +scott ackerman,https://lh3.googleusercontent.com/-35twuX9os2c/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM9tfHITsGkLWg2wOPqetP9iOq2zA/photo.jpg,I really like the app. it's pretty cool! How do I get the 24 HR clock on my Android wear? 5 stars if the 24hr face can is possible on the watch! 🙂,4,0,5.14.1,2020-03-17 10:43:32,"Hi, +It is possible. Go to the settings for synchronizing with the smart watch (on the device). And configure the action by tapping on the screen. Set the mode to 12/24. Voila 😎",2020-03-17 11:13:13,newest,prox.lab.calclock +Aditya Dabhade,https://lh3.googleusercontent.com/-0Yow8nwTmmo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP6eTegFMnQe4vua--FmDpdxKi3Jg/photo.jpg,I started using this app in 11th std & I'm getting its benifit but the only thing is that it doesnt shows the tasks we have to complete in some monutes or if two tasks are to be completed simultaneously in a hour. So I humbly request to make some more changes in this app so that everyone can use it more comfortably.,4,0,,2020-03-17 04:18:12,,,newest,prox.lab.calclock +Ashafa Abubakar,https://lh3.googleusercontent.com/a-/AOh14GgLx15PAIImrWQ0wrWKYPH-YO-ya-H9Qw_dwGsUNQ,Ok,4,0,,2020-03-09 22:05:52,,,newest,prox.lab.calclock +Tammi Lentz,https://lh3.googleusercontent.com/a-/AOh14Ggsq88sLsxnbk4yB_mlzV3untYXWbSGuhlVyXncBA,"Neat, but I don't put that much stuff on my calendar.. Looking for more of a scheduling tool for everyday routines. Don't want to add all that stuff to my calendar.",4,0,,2020-03-09 15:51:34,,,newest,prox.lab.calclock +todd adolph,https://lh3.googleusercontent.com/a-/AOh14GhguHOTiPH4vZVig63Iuzi2PsoFzRt-Bw3DQV9FTMw,"Now realize will not show appointments over 12 hours out, however would think should see them in overall list, but not on widget....good but could be just tad better.",4,1,5.14.1,2020-03-08 02:50:31,"Hi, +Check that there are events for the current 12 hours. Email me at 27applab@gmail.com, I will help",2020-03-08 01:38:52,newest,prox.lab.calclock +Sai sumanth Sunnam,https://lh3.googleusercontent.com/a-/AOh14Gj6Ne0vy7pF-7kX39Sdj-OXH2a-gNi1rSHZqUX8gA,Nice,4,0,5.14.1,2020-03-06 13:13:22,,,newest,prox.lab.calclock +Tara H,https://lh3.googleusercontent.com/a-/AOh14GiTvFPXgzzcvBeVLU2xMn69YmY9mcWGxBr8glvB,"It took me a while to understand how to use certain features, but once I did I found it to be EXACTLY what I needed! If Google would allow reminders to come through, it would be the PERFECT time management tool! My only thought would be if there was some sort of tutorial or guide to help know what some things were for (like when I'm changing the color scheme, I can't always tell what's what) For those not wanting their calendar clogged up, just make those things hidden after you've added them.",4,59,5.14.1,2020-02-29 17:19:21,,,newest,prox.lab.calclock +أبو جويرية سليمان,https://lh3.googleusercontent.com/a-/AOh14GiHnxpGoNAYUbztgwp1bZMRgjETb-pvgUKewwYrWw,Useful,4,0,5.14.1,2020-02-28 21:06:55,,,newest,prox.lab.calclock +afshin bahramy,https://lh3.googleusercontent.com/a-/AOh14GiXmEs52GpWxYmYic-0wmF-LdxY5vZhSmuAWOpSOg,"thanks to you, this app makes me more concentrated and schedulable in my days, and its efficient visual time widget on the home screen is really practical. But sync between calendar and app is a little time-consuming.",4,2,5.14.1,2020-02-28 06:09:14,,,newest,prox.lab.calclock +Kamonchanok Boonin,https://lh3.googleusercontent.com/a-/AOh14Gg4t_SroQB8hKjfU3qRsm0yCNNkxcw5d20Eu_68,This app is very helpful but you need to control yourself to done schedule on time.,4,0,5.13.2,2020-02-24 08:02:41,,,newest,prox.lab.calclock +LuyandoPhoto&Video,https://lh3.googleusercontent.com/a-/AOh14GgpNqPcty1YzzW2lZxHACjAVysePq0sOTcifsG4Pw,"I like it, also I would like, like a wedget but for the block screen. Then you don't need to open the phone, only activate the screen in order to see the next task in your calendar",4,0,5.13.2,2020-02-24 03:58:14,,,newest,prox.lab.calclock +luiz miguel,https://lh3.googleusercontent.com/a-/AOh14GhBE0oQDS2p1KgxUf4Jln_uZ61TLFEowMl5eBjN3g,"ótimo o app, porém ele é meio que um relógio de estudo que marcar cada segundo",4,0,5.12.1,2020-02-23 21:47:00,,,newest,prox.lab.calclock +Eavan Howard,https://lh3.googleusercontent.com/-JPKdhlKty4Y/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPfBBySiMNr9SxUZS0hgQF5xpp3rQ/photo.jpg,"Its your calendar on a clock, best if you have a smart watch...I dont. But still a great app if your a visual person. 5 star if I ever get a smart watch!",4,0,5.13.2,2020-02-22 15:17:48,,,newest,prox.lab.calclock +dinesh kumar,https://lh3.googleusercontent.com/a-/AOh14GiUcPfHH8JyfqFa0ozQQgtdnc-82j6UOkT0blwv7w,Lot more easy and practical... maintaining calendar is fun...loved the widget,4,0,5.13.2,2020-02-19 02:44:20,,,newest,prox.lab.calclock +Yves Pairiot,https://lh3.googleusercontent.com/a-/AOh14Gg511-EelZOktx8A0tUY3Q-UPQc17esfOwOGxuF4Q,"Best watch once you understand it. It takes a while to set up just the way you want it and to actually ""get it"", but once you do it does exactly what it promises. Its sleek yet informative and by far the best ""at a glance"" app for your homescreen. The watch addon is the cherry on the cake. Only improvement in my opinion would be to add multiple different widgets. Like give me the option for a small simple one on my home screen and a bigger more detailed one on my office screen for instance.",4,40,5.13.2,2020-02-18 16:00:32,,,newest,prox.lab.calclock +Angela Archambeault,https://lh3.googleusercontent.com/a-/AOh14GhKrhm3i8MCHeprUQku0ONbVnmOuCn7XxITDus5fLs,I love this widget!! It's such a clear picture of the time and schedule!! My only thing is I wish it was compatible for the galaxy watch! I got the app because I saw it on the watch I'm the pictures but it doesn't work with the galaxy watch. 😕 If this was improved to work with the watch I would give it 5++ stars.,4,3,5.13.2,2020-02-18 13:46:13,,,newest,prox.lab.calclock +Rad Black,https://lh3.googleusercontent.com/-POHKK0XvqFc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNoloIkZej-sF4CYRapetZpsQDjuA/photo.jpg,تطبيق جميل ويساعد حقا,4,0,,2020-02-18 02:48:01,,,newest,prox.lab.calclock +Tâm Minh,https://lh3.googleusercontent.com/a-/AOh14Gh9DA-XY1Jf45OAC-clDtpRj4hM8NKshjBtWvfF,Good 👍,4,0,5.13.2,2020-02-16 02:11:19,,,newest,prox.lab.calclock +prem kumar,https://lh3.googleusercontent.com/-GyOqllM0gtk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOojF62auQH6B01XkyMX17uGCGWog/photo.jpg,Good,4,0,,2020-02-13 16:31:28,,,newest,prox.lab.calclock +Callie Oister,https://lh3.googleusercontent.com/a-/AOh14Gi7aJplmbWn4Wo9zyrTnUIz1j8_yPtA5s9Ju8lIL8w,This is so helpful! I use this with the forest app to stay on task. You can add different calenders from Google and keep work and personal separate.,4,0,5.13.2,2020-02-13 15:04:08,,,newest,prox.lab.calclock +Simon Morton,https://lh3.googleusercontent.com/a-/AOh14GjiXgKiN57rALzBr6Z241rko_7VHDbDCuNru8CRLg,Really good,4,0,5.13.2,2020-02-13 02:48:59,,,newest,prox.lab.calclock +Utpal Biswas,https://lh3.googleusercontent.com/a-/AOh14GjLeq5JJu-Uj2geWj1g4oRl_vnw9Ql2zAsM8S5kIw,Good application 👍,4,0,5.13.2,2020-02-12 11:54:39,,,newest,prox.lab.calclock +andré Soares,https://lh3.googleusercontent.com/a-/AOh14GjdL6Jb3iya8HAZT-UUkW_N4d-1Vsg7BJH888sZbw,É um aplicativo pra quem é visual se você ê mais chegado a listas não recomendo o uso. Mas é um aplicativo muito bom para ver seu tempo livre e o tempo que você gasta com tarefas relacionadas a eventos,4,0,5.13.2,2020-02-11 21:27:37,,,newest,prox.lab.calclock +Ian Barrow,https://lh3.googleusercontent.com/-GBX7LkKasHU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNLGEykBCpgeqogOKy9mML3-QVsPw/photo.jpg,A great tool to see what's going on in your day. I linked work and personal calendars into one. The customisable buttons are a nice touch and allow you to make it work the way you want it to.,4,0,5.13.2,2020-02-11 09:47:01,,,newest,prox.lab.calclock +Majid Alashari,https://lh3.googleusercontent.com/-C6QS3Ogeoo4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM0ONkjcWq-euTBBsBAw_68hBcNtQ/photo.jpg,"I think it's pretty cool how this app communicate with the calender, smart watch greatly enhanced the experience as well, good job. I just wish there was a galaxy watch version of it. :(",4,0,5.13.2,2020-02-10 10:56:39,,,newest,prox.lab.calclock +Birru Ashenafi,https://lh3.googleusercontent.com/a-/AOh14GgH0q3dZlR3WvwflPe-j4Y_3mnz87iRyVlsWqHUyQ,Very helpful for busy scheduled hard workers.,4,0,5.13.2,2020-02-06 14:56:22,,,newest,prox.lab.calclock +Andres Hernandez,https://lh3.googleusercontent.com/a-/AOh14GjuXxCtFFGzgZO24wqwjbCJI0ioV5-5BvFaNexCURY,"Cool app! Can almost replace the other widgets I have on my home screen, but missing one feature (which is not the fault of the app, but a shortcoming for my particular needs): weather. Include weather and I can easily pay for this app! Still keeping as it is a good app!",4,3,5.13.2,2020-02-06 05:58:44,,,newest,prox.lab.calclock +Ariel,https://lh3.googleusercontent.com/a-/AOh14GiKv7qL8PHYVbezLgz4T0pU_-BOQoJneL3CT5Oz,Doesn't support Fossil sport watch anymore?,4,0,5.13.2,2020-01-30 19:40:07,,,newest,prox.lab.calclock +Neeru Agarwal,https://lh3.googleusercontent.com/-Cg4XQXQk3T8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMN6txujYdyeNWqI3U3wb1k74JzVg/photo.jpg,Nice app but haven't been able to explore it's full potential,4,0,5.13.2,2020-01-27 14:55:10,,,newest,prox.lab.calclock +Hjshj Shjhj,https://lh3.googleusercontent.com/-YFgezjtmaOo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOFv_p0F9z23rpZpbDc-3TeTHaYaw/photo.jpg,Excellent,4,0,5.13.2,2020-01-10 10:33:41,,,newest,prox.lab.calclock +Paweł Grabowski,https://lh3.googleusercontent.com/a-/AOh14GhMEXdcVEK1oVGGkGDwsXNi2FkhPgZwkToc2QyEmNw,It's a good tool.,4,0,5.13.2,2020-01-08 18:00:20,,,newest,prox.lab.calclock +Kyle,https://lh3.googleusercontent.com/a-/AOh14GgmIUpoeHYcjjtFKn8Nt0_GQQmiD5K0RF3OAnEwSwk,Doesn't really sync with my calendar as events are added... *Edit: user error with delay in google calendar.,4,1,5.13.2,2020-01-06 07:31:06,"Hi. +Go to the ""My calendars"" menu in the application and verify that the calendars you want are selected. Next, make sure you have events for the next 12 hours. The list below also displays events for 12 future hours. +If the problem persists, please write to me at 27applab@gmail.com, I will give more advanced instructions",2020-01-06 01:05:17,newest,prox.lab.calclock +Willie Carmichael,https://lh3.googleusercontent.com/a-/AOh14GgqtUNGyG8qlXhw-_TExf9uBDG3jLQWygqjPk4NeQ,Good visual representation of my daily schedule and to-do list. A great way to remain mindful of how time is spent during the day.,4,0,5.13.2,2020-01-02 13:39:24,,,newest,prox.lab.calclock +yash gupta,https://lh3.googleusercontent.com/a-/AOh14Gibj28MtubUdfxVHAUgdX78_7bMv8_WIPzMzQpHtA,A very good Pie chart graphical view of your schedule with nice colours and everything is good about the app specially the graphical side. I'm not a pro owner but also rating 4 stars because of the glitch in app today. My whole sector were invisible today and it just showed blue colour filled circle with only an area of 45° looking as faded blue. And nothing else was there. I also have screen shot of the error if developers need it. Else it's a great app. Soon will buy the pro version.,4,2,5.13.2,2019-12-31 15:29:00,,,newest,prox.lab.calclock +Vipul Mahagaonkar,https://lh3.googleusercontent.com/a-/AOh14GhD7kipD9GI9kinkIyv-Etp3635GRcyGDNAQbo9,Nice,4,0,5.13.2,2019-12-29 05:27:52,,,newest,prox.lab.calclock +Jeronimo Meanus,https://lh3.googleusercontent.com/-HhRKHFbAGQI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMaZkxtpmsWI0HixLSRzh-MZcYtcA/photo.jpg,Its great app & it should be complete free but of course nor maybe few updates.... Than I'll rate 5,4,0,5.13.2,2019-12-28 19:46:24,,,newest,prox.lab.calclock +Kawtar Kwtr,https://lh3.googleusercontent.com/-iFExawgtFOo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNsOyxNOcgjASJZ-1vprbYBucpmuA/photo.jpg,♡♡,4,0,5.13.2,2019-12-24 21:30:17,,,newest,prox.lab.calclock +Sindre Flø Hunnes,https://lh3.googleusercontent.com/a-/AOh14Gh4ZJbnZ91ltNj9tL1WQw3M29ODlSnYq9jXMCgQ,Very useful! Syncs with calendar and lets you easily see upcoming events and tasks,4,0,5.13.2,2019-12-24 14:10:56,,,newest,prox.lab.calclock +Barb French,https://lh3.googleusercontent.com/a-/AOh14GgNu4kXFtp4od0fFH64fSTd36QSjdIFhhBHRWEn7G0,I used to be able to tap on the widget and it opened but now it doesn't. What's the point of the widget if it doesn't open? *Was able to quickly fix in the settings. Thanks for the comment.,4,0,5.13.2,2019-12-19 15:41:18,"Hi, +We made the default ability to click on sectors of the widget. +To return, click on the widget button (upper right corner of the widget) and ""Customize widget buttons"". Choose the first option",2019-12-19 12:55:49,newest,prox.lab.calclock +Shaukat Ali,https://lh3.googleusercontent.com/a-/AOh14Gia4-21rXGXQJDIY9orsPKXkI9916JkxYTJmA08sw,Beautiful,4,0,5.13.2,2019-12-19 10:00:28,,,newest,prox.lab.calclock +Marcel Montagné,https://lh3.googleusercontent.com/a-/AOh14GjqFW_bUwUvY45OP5OR-7-_yh5HErP3WAzAlm4Brg,"I bought the pro version and like it so far. For now what I'm really missing is the ability to change days from the widget itself, with the left and right arrows, and not only from inside the app. Why wouldn't you enable the left and right arrows to change day as default? Having to go into the app to review past or coming days defeats the purpose of the widget, and forces you to use something else other than the widget itself. Other than that, the app seems to be very practical. If the ability to swipe from one day to the next day or to the last day from the widget gets implemented, it would be a 5 star app for me. Thanks.",4,16,5.13.2,2019-12-18 15:50:17,,,newest,prox.lab.calclock +Shafiq NobodyHome,https://lh3.googleusercontent.com/a-/AOh14GgAL3c1KTJrKZy0CieKJvPEVvJIxz5j4N0VDnSXBA,"I've been using this app and the watch face on my Moto 360 for close to about a year now. With all my events for the day (and the next day) visible on my wrist, I can keep track of my calendar easily. However recently, the watch face is defaulting to 'Simple Clock' (default watch face) whenever I use the watch. It only affects Sectograph and it has been bugging me since.",4,8,5.13.2,2019-12-13 10:34:37,"Hi, Reinstall the app on the smart watch. +Must be version 5.13.2",2019-12-13 11:00:51,newest,prox.lab.calclock +Konskrypt,https://lh3.googleusercontent.com/-9bXuPto47ZI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPQ8ZfcM2kd1zEWrSGXyYmiGUAtJw/photo.jpg,Unable to tap widget to open app and open calender since update!!!!! Thank you for response. Sorted,4,0,5.13.2,2019-12-13 09:00:37,"Hi +We made the default ability to click on sectors of the widget. +To return, click on the widget button (upper right corner of the widget) and ""Customize widget buttons"". Choose the first option",2019-12-13 04:29:22,newest,prox.lab.calclock +Alvaro Garcia,https://lh3.googleusercontent.com/a-/AOh14GiDvb0nSoXK4uT9kYNS8VU2KzI57TChmS--GAVI-w,Great app.,4,0,5.13.2,2019-12-12 20:28:27,,,newest,prox.lab.calclock +Mehdi Shariattalab,https://lh3.googleusercontent.com/a-/AOh14GhHyjqaqcpw3XFD_dmwxh6Y9k8OJHAB_fQVrlS8,It is better to have more choices In time repeat Like I want do some jobs in some days of week Wendsday sunday and monday,4,0,5.13.2,2019-12-12 05:46:24,,,newest,prox.lab.calclock +Jealow Zondi,https://lh3.googleusercontent.com/a-/AOh14GhKt0bmYd09gRM7XOAnO0IQIKkAvQh-_sb_VSHS,Its good for me and it really helpful,4,0,5.12.1,2019-12-11 11:58:43,,,newest,prox.lab.calclock +Agyemang Clinton,https://lh3.googleusercontent.com/-VD5aBJQuefI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO_p_LW3FDbirGaoHACLjHtPfraxA/photo.jpg,It is a very helpful app,4,0,5.12.1,2019-12-06 14:28:31,,,newest,prox.lab.calclock +Chris Gray,https://lh3.googleusercontent.com/a-/AOh14GhFoxAVE7w95F6-PuZ8hriuN5WHu_y77MvmYfLh0A,Very nice setup. Thought enough of it to pay for premium. Couple things - add ability to change watch hand colors (arms match scheduled event making it impossible to see) - add ability to increase watch face inner diameter digital time (difficult to read). Watch = Ticwatch Pro 4g Phone = Moto Z3 w/Pie,4,0,5.12.1,2019-12-05 01:24:27,,,newest,prox.lab.calclock +James Jung,https://lh3.googleusercontent.com/-eNEDoDpE4RU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMV3fDL60D9-V8j4h_zAkU76qmgdg/photo.jpg,Very Good!,4,0,5.12.1,2019-12-03 02:00:32,,,newest,prox.lab.calclock +Med School,https://lh3.googleusercontent.com/a-/AOh14Gh0E8BZEXnQAEWhk_OPkHIgR-dEalG6wqp2WPCF5w,Need to update the calendar more..... otherwise perfect,4,0,5.12.1,2019-12-02 03:16:05,,,newest,prox.lab.calclock +J Ravix,https://lh3.googleusercontent.com/-za9OZllTU5o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNghUujOKHpF8Ae75O-meQIRKctAQ/photo.jpg,Great and helpful app. Love it,4,0,5.12.1,2019-11-29 10:54:53,,,newest,prox.lab.calclock +Wes Poteet,https://lh3.googleusercontent.com/a-/AOh14GjqrNk-r0qtsFm3OanLd1Ab1PRnqRUffJemZuKx,Very helpful. A bit hard to completely customize but much of that is due to how much flexibility there is.,4,0,5.12.1,2019-11-28 14:46:30,,,newest,prox.lab.calclock +Irene Ugay,https://lh3.googleusercontent.com/-3MM5GBOCCEo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPVhDWl9r7-xvcMoXOBV_-0SUSe6w/photo.jpg,How do I put on homescreen?,4,0,5.12.1,2019-11-24 14:50:05,"Hi, +To place the widget on the home screen, long press on an empty spot on the home screen and click on ""Widgets"". Find the widget and drag it to your home screen. +After that, make a long press on the widget and stretch it to the desired size.",2019-11-24 15:37:13,newest,prox.lab.calclock +Gil - brown eye devil garci,https://lh3.googleusercontent.com/a-/AOh14Gil-j64iLGdj0idrZgfo0rF82UFYc6ySUGicVtl,Very useful app,4,0,5.12.1,2019-11-22 22:16:42,,,newest,prox.lab.calclock +Mosad Indian,https://lh3.googleusercontent.com/-On8EyTad7hQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO-Z-8gCWsXM6dQrq9WTHIPGOM0IA/photo.jpg,Apk बनाने का विचार नया है पर उपयोग करने में कठिन मैनेजमेंट और पेड भी !,4,1,,2019-11-19 09:34:08,"नमस्ते यदि आपके कोई प्रश्न हैं, तो कृपया मुझे 27applab@gmail.com पर ईमेल करें",2019-02-25 02:32:00,newest,prox.lab.calclock +Clay Chen,https://lh3.googleusercontent.com/a-/AOh14GgehwX3lCZQ3MpHvciuMHAf0uu3GLzkc9OU5WPFXrg,Only the first event added to the calendar gets synced to the sectograph app instantly. All other events takes quite a while to be synced to the app. Clicking manual update or relaunching the app doesn't solve the issue.,4,0,5.12.1,2019-11-16 18:42:43,"Hi, If you use the Google Calendar app for editing events, the problem is in it. He began to slowly give events to the calendar provider on the device. Email me at 27applab@gmail.com, I will tell you what can be done.",2019-11-16 22:43:05,newest,prox.lab.calclock +Ritesh Hegde,https://lh3.googleusercontent.com/a-/AOh14GiF3z8gLwinKdC7ndxIaO7I7FnhZA08E8skwgqS_V0,Very nice app. Very useful to be productive.,4,0,5.12.1,2019-11-12 09:39:02,,,newest,prox.lab.calclock +ajubala asartenga gordon,https://lh3.googleusercontent.com/a-/AOh14GiqS9xVUEZN88H9E6HqJRPwbr4ZRgPXnXovE3TodQ,Very cool,4,0,5.12.1,2019-11-11 19:07:46,,,newest,prox.lab.calclock +funanya okocha,https://lh3.googleusercontent.com/-iLmwSA5XYQc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPyLRUv86SKyEVl6FcJv6N1bwhIvw/photo.jpg,Delete imformation I had typed in. Didn't understand why it kept taking me to my google calendar,4,0,,2019-11-10 04:41:32,,,newest,prox.lab.calclock +Kalparaj Biswal,https://lh3.googleusercontent.com/a-/AOh14Gjr7z_GohAUnpSAHoQ_85yqdFLi-OydrHXiq1Zy9w,"Pros: I loved the visual representation of events and Integration with Google calendar. Cons: It isn't integrated with Google tasks. Most of the users would use Tasks to track their activities, along with Calendars. I would love to purchase the Pro version and rate it 5 stars if integrated with Google Tasks.",4,7,5.12.1,2019-11-08 12:15:30,,,newest,prox.lab.calclock +Saood Ahmed,https://lh3.googleusercontent.com/a-/AOh14GiTBEC-I-9ukk3JI8_1H6FLIA8L-tqL0udmm8DaulQ,Good one,4,0,5.12.1,2019-11-05 07:28:25,,,newest,prox.lab.calclock +Sean Weiser,https://lh3.googleusercontent.com/a-/AOh14GiHk7yK39UwxT3t0D55juRpqKQXnLur-OrHyX910g,I enjoy the countdown to my next event. Very helpful.,4,0,5.12.1,2019-11-05 04:09:19,,,newest,prox.lab.calclock +Marko Kostić,https://lh3.googleusercontent.com/a-/AOh14GgPwXvmm6UEc8cXfOAaM1zrX8XcQJWq6aqO5hRn2g,Sometimes it won't sync but overall works good.,4,0,5.12.1,2019-11-04 07:11:21,,,newest,prox.lab.calclock +Evan R,https://lh3.googleusercontent.com/-cFAG4c7OJnI/AAAAAAAAAAI/AAAAAAAADLU/AAKWJJMvcGCS3OfSC3H3jihtAUUOJSD9Hw/photo.jpg,Excellent idea. Great for visual based learners,4,0,5.12.1,2019-11-02 08:23:12,,,newest,prox.lab.calclock +Keyan Wang,https://lh3.googleusercontent.com/a-/AOh14Gj3TAdH6m2YSpcn5ZXMjDODalAVczr_lGBgQUcliw,simple and clear,4,0,5.12.1,2019-11-01 03:57:25,,,newest,prox.lab.calclock +Mekala Bhima Rao,https://lh3.googleusercontent.com/a-/AOh14GirFkrThcTaEuzelO7F-xuqNM-Ct47PSwK4SMAs6Q,Useful app,4,0,5.12.1,2019-10-29 10:38:06,,,newest,prox.lab.calclock +Balint Marek,https://lh3.googleusercontent.com/a-/AOh14Gjp1qjavWfOwsnM7tUrrpmP28mUKdFf6FX_dC0t,"Very nice and useful. Would be even better to be able to set less than 12 hour cycle, as series of short events inside short time period (e. g. a few consecutive stand-ups) are not easy to see.",4,0,5.12.1,2019-10-29 09:59:19,,,newest,prox.lab.calclock +Roy Rob,https://lh3.googleusercontent.com/-y4cK0T4eeg8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPxBFDp9-ST_3ikLXKNz2kX10xQjQ/photo.jpg,"Simple, easy to use, and very helpful.",4,0,5.12.1,2019-10-28 12:51:11,,,newest,prox.lab.calclock +Koryne Muston,https://lh3.googleusercontent.com/a-/AOh14GixDLtKBRrEoUdb-SYprBg7mlMBVrdlNUjavwjW,Great for to do's and keeping on track with schedules. Notifications need to be adjusted. I don't always hear when they go off. And sometimes miss my stuff.,4,1,5.12.1,2019-10-23 15:17:00,,,newest,prox.lab.calclock +Ashish Ramtari,https://lh3.googleusercontent.com/-L_3Bvwe-Jis/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPYWAS7lw50lM2BiLxOsrSPthaN6Q/photo.jpg,"Starting days i can,t tell more but its effective",4,1,5.12.1,2019-10-23 01:48:03,,,newest,prox.lab.calclock +SHUBHAM SHARMA,https://lh3.googleusercontent.com/a-/AOh14GgOE1SNHWxerzCdPMCxr481Eh9Gj8lGfrz7oI2Z,overall a good app to manage your tasks. A good planner with nice UI and charts.,4,0,5.12.1,2019-10-21 17:51:18,,,newest,prox.lab.calclock +ಪ್ರಸಾದ್ ಶೆಟ್ಟಿ,https://lh3.googleusercontent.com/a-/AOh14GhBZ5SGokGXaxfwNqfFtvVy9S7v6bnQ3ILMhsAzaQ,Not Bad..,4,0,,2019-10-21 03:05:16,,,newest,prox.lab.calclock +Mohammad Ardestani,https://lh3.googleusercontent.com/a-/AOh14GiihpZnXq8oDiwOGGAVMqKmHZptnxodWF3uRH6r,Good,4,0,5.12.1,2019-10-19 20:54:43,,,newest,prox.lab.calclock +Phoebe Davenport,https://lh3.googleusercontent.com/a-/AOh14GjQsO92ZkdzwdchIrfQG7yrfEa6RtHuxE2hlB_Q9A,The app looks like it will be great but it has only picked up half of what is on my calendar.,4,1,5.12.1,2019-10-17 22:10:24,,,newest,prox.lab.calclock +Pranshu Rattan,https://lh3.googleusercontent.com/a-/AOh14GgJWKEYBgrwWMZVpzKkxZEp_PXVCpSfcXXPy1zF9Q,I am unable to set sectors properly as shown in your sample screen shots. Please help,4,0,5.12.1,2019-10-17 06:20:20,,,newest,prox.lab.calclock +Jef Ajieng,https://lh3.googleusercontent.com/-Av_WBgn_SkQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPrJI5As_4_vxH_S-jGhrDyympwxA/photo.jpg,Great app,4,0,5.12.1,2019-10-17 02:52:50,,,newest,prox.lab.calclock +Nyarko Lawrence,https://lh3.googleusercontent.com/a-/AOh14Gjynr8IdnO1zqKmTaGXoLAprY8SN7BQrAz0RiloNA,Great app,4,0,5.12.1,2019-10-16 21:05:12,,,newest,prox.lab.calclock +Nathan Bullen,https://lh3.googleusercontent.com/a-/AOh14Gjdkd17D5cH4OLFWjHRgmsEdo2S70HpmbtWuQP2ooY,"Really great app, love being able to visualise my day! But it would be fantastic if the app (and widget!!) Could now sync with the systemwide dark mode on Android 10!",4,1,5.12.1,2019-10-11 03:59:52,,,newest,prox.lab.calclock +Jake Sway,https://lh3.googleusercontent.com/a-/AOh14GjguU0gkxYoMWLg2jmYyn30mOck6X1GIwyIaL86,And this is definitely a good app for finding out your full day from start to finish in great detail. It has some pretty nice visual effects too.,4,0,5.12.1,2019-10-09 19:30:42,,,newest,prox.lab.calclock +tobi ladipo,https://lh3.googleusercontent.com/a-/AOh14GgZeeUjqRFT3mJO4OVeIlprL11NzNqmwTW6lMQrqQ,Brilliant app,4,0,5.12.1,2019-10-09 08:08:12,,,newest,prox.lab.calclock +Angel R Ramos T,https://lh3.googleusercontent.com/a-/AOh14GiwFAvrJ-jLCOolHMCpCJ58XJjmZ3zjIQOl0AzNIA,Very intuitive app.,4,0,5.12.1,2019-10-07 20:33:04,,,newest,prox.lab.calclock +Lutfiyah Imran,https://lh3.googleusercontent.com/a-/AOh14GjunrdfuhR58qSpJN1eIWTCc2rJbrDdRErd0dL5Yw,Nice app & very useful,4,0,5.12.1,2019-10-07 01:47:37,,,newest,prox.lab.calclock +Nina Chartouny,https://lh3.googleusercontent.com/a-/AOh14GhYf6bDKR6nkfuBTN3uamLTTgcGmQ-1FTRneJBK,How to set the widget on my home screen?,4,0,5.12.1,2019-10-07 01:34:47,,,newest,prox.lab.calclock +MICHAEL MAGENA,https://lh3.googleusercontent.com/-xRj9RZL_xEM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPd-rt-fhVCb9Am2hKCcbdl16z2ow/photo.jpg,Good apps for time allocation in a different design mode,4,0,,2019-10-06 09:26:16,,,newest,prox.lab.calclock +prudent nglass,https://lh3.googleusercontent.com/a-/AOh14GgBAZ_tpxzOtuBHiUp94agzsdXY6YLDqNULTf3j,Almost confusing but I think it's ok,4,0,,2019-10-03 21:03:13,,,newest,prox.lab.calclock +Thomas Legrand,https://lh3.googleusercontent.com/a-/AOh14GgZJ65O83Kgmn8k3z9vP0xmopb31AmoFNzj6KJv7A,"The app is really great and don't even need the paid version. Unlike what people said, I found it quite easy to set up. I wish the ""custom repeat"" had option to choose which day of the week and not the frequency of days, as my schedule varies (schema as : 4 days A followed by 3 days B). I really love the widget option also. I just downloaded it but if I keep using it then I will consider buying the pro version to support the creators.",5,33,5.14.1,2020-03-18 09:58:30,,,most_relevant,prox.lab.calclock +Robin Ebaugh,https://lh3.googleusercontent.com/a-/AOh14Ggz_aBCtEA8yxUkBA2McsGGHRdU_2L_-ZvyFv3mpg,"This app is fantastic! I work from home anyway, and with the disruption due to the Coronavirus, it was difficult to maintain my usual schedule. By the end of the day, I hadn't accomplished much and really didn't know where the time had gone. I downloaded Sectograph and it has made all the difference. I am getting my work done and even have free time to enjoy. I even recommended it on Twitter yesterday.",5,13,5.14.1,2020-03-31 14:01:53,😸👍,2020-03-31 14:06:55,most_relevant,prox.lab.calclock +Bev Barnett,https://lh3.googleusercontent.com/a-/AOh14GiMSkRuiPj936xZEPHad1J7G8jgzRRcmvHGJcpa,"brilliant! I absolutely adore this app. so easy to set up, makes using google calendar for agendas even easier than just using google calendars! the events on the clock face just clicked instantly for me, the fact that they can be colour coded is delightful. the widget is great, and even shortcuts from there can be personalised. I got the pro version even though the free one does everything you need it to. having 24 hour option is good though, and even more colour customisation now. LOVE it!!",5,2,5.14.1,2020-04-01 01:58:35,,,most_relevant,prox.lab.calclock +Syzygy Syzygy,https://lh3.googleusercontent.com/-KcQ02THfvys/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM_iVcNQyVLH4aumW8cOWhb8xNOZA/photo.jpg,"This is the App I never knew I needed. I got the free version because it sparked my interest and upgraded to the full paid version within a day. Maybe I'm wired to see my day in the way they present it or maybe Sectograph is wired to appeal to me, I'm not sure. Either way their widget is the top half of my home screen and I am more in touch with my schedule than I ever have been.",5,10,5.14.1,2020-03-25 20:38:37,,,most_relevant,prox.lab.calclock +den li,https://lh3.googleusercontent.com/a-/AOh14Gglq4Sl4fUSW0tDfZGDLodPPsfHwmVE69A0jMIk7g,Really great. It takes some time to get it working - my current use is to input what i plan to do the previous day either at night or through the day when i discover what needs to be done. Jotting down your plans is more effective than you might think to productivity. Ill keep using it and get back when i discover more tips to be more productive.,5,6,5.14.1,2020-03-09 18:23:19,,,most_relevant,prox.lab.calclock +Alex Langberg,https://lh3.googleusercontent.com/a-/AOh14GguCpHsGVUI_ev58yQK96iJNrV_i8XyHF6MsOUvTg,"This initially looks a bit confusing. However, this design actually functions extremely well. The way it can act as both a clock, date, alarm and agenda widget at the same time is just incredibly efficient. It also provides you with a very easy way to evaluate at which times of the day you have events and more importantly: when you have breaks and how long they are. All this at a glance, compared to clunky agenda widgets where you have to sit and calculate it in your head. Well worth the money!",5,52,5.14,2020-02-25 13:17:55,,,most_relevant,prox.lab.calclock +Under Illusions,https://lh3.googleusercontent.com/-xSHpMWjtOdA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPcZXi8jb06gi1RToCcd_J6vknFvQ/photo.jpg,"An amazing app, helped me to become more productive and disciplined. Only downside is is that I wish it was compatible with my laptop so that I can always be reminded of my time schedule. Other than that, an amazing app. Would totally recommend this!",5,0,5.14.1,2020-03-28 05:41:26,,,most_relevant,prox.lab.calclock +Israel Exodus,https://lh3.googleusercontent.com/-IKXdQ1gk_1o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJObihGqoqaUdMOC2nPD1w0jcEjzbw/photo.jpg,I like it. What I would really like to be able to do with it is to set it on my homepage to where as soon as I open my phone my schedule is right there in place of my clock. Food for thought 😁. Thanks! Edit: wow! Thanks! Developer responded to my query within hours. Changed from 4 to 5 ☆☆☆☆☆!!!!,5,0,5.14.1,2020-03-20 14:42:52,"Hi, +To place the widget on the home screen, long press on an empty spot on the home screen and press ""Widgets"". Find the widget and drag it to your home screen. +After that, make a long press on the widget and drag it to the desired size. +Have a nice day!",2020-03-20 10:34:47,most_relevant,prox.lab.calclock +Bilal Kawish,https://lh3.googleusercontent.com/a-/AOh14Gh-6dW0KxnmkBHmj8Zy2YlkLa9DlF3Fqj9P_JjQ_Zg,"A nice application with a interface designed to have the ability to give you a reminder, heads-up for coming events. It seamlessly absorbed info from my calander, alarm clock and prayers(Salah) reminder. Keep up the good work",5,2,5.14.1,2020-03-14 07:30:21,,,most_relevant,prox.lab.calclock +Chris Behnke,https://lh3.googleusercontent.com/a-/AOh14GgglrvmVXSDAC9ZGPsh4wVop5qxvasr1ocgeIveOA,"Started using this about a year ago and it quickly became a fixture on my home screen. It functions about as you would expect out of the box, which is nice because navigating the customization leaves a little to be desired.",5,1,5.14.1,2020-02-27 03:46:31,,,most_relevant,prox.lab.calclock +Philip Coory,https://lh3.googleusercontent.com/a-/AOh14GgSVu8h63SVttt80TyEijdFX2ZTCmdCgri-DIoXig,"The best scheduling app I've used so far. Easy to view at a glance, and connects directly to your calendar. No complaints.",5,0,5.14.1,2020-03-28 23:23:36,,,most_relevant,prox.lab.calclock +badcrockett57,https://lh3.googleusercontent.com/-yDykmHdwIoo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPgMHHv7fbTFt6nnpwj3vIaZdJqXw/photo.jpg,This is one cool app. Not only is it useful but it also has an aesthetically pleading footprint.,5,0,5.14.1,2020-03-11 17:00:47,,,most_relevant,prox.lab.calclock +Eoin Hayes,https://lh3.googleusercontent.com/a-/AOh14GiIo9hcDsSt0eV_XvF2dOvyOK5ctFqHmUxovvDdsw,I'm not making full use of this app yet. But it's a very handy widget for busy folks to visualise their agenda for the day.,5,0,5.14.1,2020-03-26 15:12:58,,,most_relevant,prox.lab.calclock +Fateh Mammadli,https://lh3.googleusercontent.com/a-/AOh14Gg5aU7r1jeOKT-HEHv-0RqROzBKhGXjpG8olJH22w,This app is really great. The best part about it that it's connected to Google Calendar,5,0,5.14.1,2020-03-30 08:00:43,,,most_relevant,prox.lab.calclock +SNinja Beard,https://lh3.googleusercontent.com/-lMAMW0hoZMY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPo3UNNeQ6POH3ltyDG8OGFU3ovHg/photo.jpg,"At first it appears cluttered, but it won't take you very long to figure it out and by then you'll love it.",5,0,5.14.1,2020-03-25 09:00:24,,,most_relevant,prox.lab.calclock +keefer dbk,https://lh3.googleusercontent.com/a-/AOh14Git90vWMrgLennROh1gAEfvtHg-pU-tN_41ISvFmQ,Very clear and easy to use app. The paid version is so worth it. Having your daily schedule displayed on a clock is SO nice for my ADHD,5,1,5.14.1,2020-03-04 18:13:44,,,most_relevant,prox.lab.calclock +Krzysztof Zimmermann,https://lh3.googleusercontent.com/a-/AOh14GjuO4Ich-dfSKTME1z1bXCDy8sdiO0wofWG1UyMHA,"Wonderful app, unique and very useful, great design and functionality.",5,0,5.14.1,2020-03-07 13:24:27,,,most_relevant,prox.lab.calclock +Emil Jonasson,https://lh3.googleusercontent.com/a-/AOh14GjgReqRje1wVFR81KKItPGAkpX_ff3gK6j1fmQK,"Brilliant app, helps me to keep track of everything I'm doing!",5,0,5.14.1,2020-03-04 12:48:42,,,most_relevant,prox.lab.calclock +Hayam Ilyas,https://lh3.googleusercontent.com/-64qetGTjYe8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPTZiyne7gKvSWBvk-x_M11_tmoOg/photo.jpg,This app reminds me everytime I forget about something important and it's all organized.I ❤ this app.Thank u so much for making this app.,5,0,5.14.1,2020-03-30 03:21:53,😉👍,2020-03-30 06:27:28,most_relevant,prox.lab.calclock +Marelize Postma,https://lh3.googleusercontent.com/-GEen_vI8DdI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNyG9CvV8o6FZh4yLVag9F3l-3EgQ/photo.jpg,"Such a cool App!!!! Exactly what I was looking for, and so easy to use.",5,0,5.14.1,2020-03-16 17:36:00,,,most_relevant,prox.lab.calclock +Samantha Preciado,https://lh3.googleusercontent.com/a-/AOh14GhjF81DyDl2jrfeuC3mn82uAYoefLXLjZVxujw_,Beautiful graph/calendar. I love how beautiful and practical this is. I love it,5,0,5.14.1,2020-02-29 20:41:03,,,most_relevant,prox.lab.calclock +Victor Gurbani,https://lh3.googleusercontent.com/a-/AOh14GjQJedvXoVuzf-hIwKmQcl-qeLuZj7ETpXTEp697g,"Perfect widget for your home screen, all your events in the same place on a clock.",5,0,5.14.1,2020-03-05 15:05:17,,,most_relevant,prox.lab.calclock +Geoffrey Harding,https://lh3.googleusercontent.com/a-/AOh14GhmAi_XjbIDZc_fr574k7Aze6sC5f_8SeAH1TvH7g,"This applications are, all there setting up you routine for the day and you can set appointments in advance.",5,0,5.14.1,2020-03-30 16:47:05,,,most_relevant,prox.lab.calclock +Mark Jacobs,https://lh3.googleusercontent.com/a-/AOh14GjjQQcxvf_eNxJGY2tTM0Oqt1Yy5B-0LdN3q1gBdQ,Very useful app for keeping track of the day!,5,0,5.14.1,2020-03-19 01:46:43,,,most_relevant,prox.lab.calclock +Enock Irvin,https://lh3.googleusercontent.com/-_lFRMoM8w48/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMenWHj2xAQhC9nxme3my1TBpTFQg/photo.jpg,Extremely useful once you get a hang of how it works.,5,0,5.14.1,2020-03-29 09:20:01,,,most_relevant,prox.lab.calclock +Angela Webb,https://lh3.googleusercontent.com/-Wfh5lfthSVQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPuzPJ3_xhlLQ9lxXbq1KE7gMkvTg/photo.jpg,A great way for a visual person to outline and track their activities,5,0,5.14.1,2020-03-03 17:08:57,,,most_relevant,prox.lab.calclock +Dillon Gast,https://lh3.googleusercontent.com/a-/AOh14GjYb2EJ5OLDkBCLR7zc-jQ8LB6pbZwA87JFXAO6Vw,"This app is awesome, I love the wear os compatibility. I have a couple feature requests. It would be great if you could filter which calendars you can see on the greyscale mode. Also it would be nice to have an option in the settings for making the watch 24 hours always, currently if I restart my watch it switches back to 12 hours, so I have to turn on the tap to toggle feature, tap my watch, then turn off the tap to toggle feature since I don't want to accidentally switch it back.",5,7,5.13.2,2020-02-20 21:36:00,,,most_relevant,prox.lab.calclock +Monika Gupta,https://lh3.googleusercontent.com/-HweQpaxN2sw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPHrCBURVp-aALbX0r4wa5T5MzwpA/photo.jpg,Amazing app... Helps in staying organised n focused whole day....,5,0,5.14.1,2020-03-27 18:37:36,,,most_relevant,prox.lab.calclock +Eric Jacob,https://lh3.googleusercontent.com/a-/AOh14GjyDLVIYM8THxPph3RTni5lauJ2A7W6dC-04j5gBz4,"Love it. It is a great app with a very beautiful yet minimalistic design. I was looking for some watchface that showed my calendar events and this is perfect. The homescreen widget for the phone is great, too. And all of that for free, excluding some minor features like 24h time and in-depth customization. I can definetly recommend this app. 👍",5,44,5.13.2,2020-02-01 22:28:10,,,most_relevant,prox.lab.calclock +Richard Karlson,https://lh3.googleusercontent.com/a-/AOh14GiP9toNDnlhXfcpQF_hkUp0GQz1pHakoRNTkGGJ4Q,"I bought the Pro version a few weeks ago...great concept. A few things I would like to change but can't find it in the instructions or in other reviews. Is there a way to remove my alarm clock icon on the clock face--it's irrelevant, didn't ask me to place it there, and takes up precious space? Also and most importantly, I would like the hour hand to reflect the ""real time"" so I can visualize instantly how much time is left until the next scheduled task is due. For myself, having to press the arrows to move the hour hand and watch a countdown timer to the next task is of no value. If the hour hand issue can be addressed to reflect ""real time"" I'll give it a 5, otherwise the App wont work for me and it stays at a 3. I'm surprised no-one else has mentioned this and I'm wondering if my install developed a slight bug. Update...Jan 20, 2020... I received prompt response from developer...fixed issues. My phone was an older Note3 running Android 5.0 so it was a bit different...works fine now...changed to 5 stars.",5,6,5.13.2,2020-01-22 05:22:17,"Hello. All this can be done. Please email me at 27applab@gmail.com, I will give instructions",2020-01-18 08:40:27,most_relevant,prox.lab.calclock +lilia ramirez,https://lh3.googleusercontent.com/a-/AOh14GgZrgONHQjGYCCR3zvFYSjoC7cLlQD-iCQcFy-Gcw,"It was good because: -It had the time in form of a clock -It told you the time before a session -It told you the time each session lasts But since I dont have premium, it doesn't let me choose different colors, which is not too bad. Yet, i would like that option for free.",5,1,5.13.2,2020-01-30 00:13:41,,,most_relevant,prox.lab.calclock +SINOnok,https://lh3.googleusercontent.com/a-/AOh14GhK-OmifcxGOaYHoryE3Qwr3C2Ejq8s-1BmFIUCYw,"..very useful..i think i'll be using this for a lifetime.. ..for further improvements or updates, i wish there could be more premium functions for free 😅, more event color options, more readable layouts, etc..but i hope no update could ruin this already very functional app like what happens to other good apps..🙏",5,0,5.13.2,2020-02-23 15:45:34,,,most_relevant,prox.lab.calclock +Jacob,https://lh3.googleusercontent.com/-O-Dppmm7iQ8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP7w6VALRwefWPzeMW4qMGvMImqeA/photo.jpg,Es great. Good enough for me to use it to help fix my sleeping pattern.,5,0,5.14.1,2020-04-03 11:46:51,,,most_relevant,prox.lab.calclock +Noot Doot,https://lh3.googleusercontent.com/a-/AOh14GhW_f4KeISz5XPjeySprr0b-D3ZtWC_g5rG9M3umg,"Does what you want exceptionally well, plus the paid version enables deeper customization. Well worth it, the free version is very useful and I do not regret paying for the premium features. Love it.",5,0,5.13.2,2020-02-05 19:37:58,,,most_relevant,prox.lab.calclock +Jessica Cocks,https://lh3.googleusercontent.com/-zK6E0kc8y90/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMdm0D8A401pLLGa5geUMsNqneirw/photo.jpg,"An awesome app. I've never seen a daily planner like this. The widget is great, and its designed in such a creative and useful way. Easy to use. Excellent, will keep using for daily life.",5,1,5.13.2,2020-01-16 22:36:50,,,most_relevant,prox.lab.calclock +Ananda Kumar,https://lh3.googleusercontent.com/-PHIwt7bkaWw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNDsDriQf9oWTMHSGJyDkggKTEg0w/photo.jpg,Excellent super app. Gift my god. Thankyou,5,0,5.14.1,2020-03-26 03:27:38,,,most_relevant,prox.lab.calclock +Joes1340 -,https://lh3.googleusercontent.com/a-/AOh14GhLC_u3vDGvtFcCZH691T2QeMFDywUvJXTExfaY,Its a nice app a plesent representation of what you put in your task list to-do list or meeting list . Learning the app and for myself getting everything to sync up properly took a little bit of patience but I got it and all's good.,5,1,5.13.2,2020-01-22 02:26:15,,,most_relevant,prox.lab.calclock +David Chandler,https://lh3.googleusercontent.com/a-/AOh14GiOdoAzSxUVzGBBfT3EZZpm5HfPcvM8bxyf0Ctx,"Perfect. The home page clock & calendar widget I wish I had years ago 😢. So easy to have a glance and see what tasksand events are coming up for the day in a really compact way. Great functionality, customisation and options to add app/task shortcuts in/or around the widget.",5,0,5.13.2,2020-02-05 05:34:43,🙂👍,2020-02-06 00:57:40,most_relevant,prox.lab.calclock +Alilionwu Denzel,https://lh3.googleusercontent.com/-dcZKPAf2yXw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN2khMJWr3XhoVCmi7BuaMxDv2rPA/photo.jpg,Good optimization and beautiful widgets,5,0,5.14.1,2020-03-30 11:41:38,,,most_relevant,prox.lab.calclock +Lalit Kumar,https://lh3.googleusercontent.com/a-/AOh14GhADzIyR2Gi-wB3LvZfOobFj9JlUjWQk0i2AzCx,Realistic approach on time management. 😇,5,0,5.14.1,2020-02-27 19:22:42,,,most_relevant,prox.lab.calclock +Kyle Esterhuizen,https://lh3.googleusercontent.com/-Ydl4IJIaAKo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMHY8tWU8UHVaeHHIWN-1uq4XnSWA/photo.jpg,"Great concept, but not quick to use. Creating events through Google Calendar takes time, I would like to be able to use without syncing to any calendar. Perhaps add an option to store events locally instead of syncing to outside calendars. And make that process quick and ease Edit: Thank you, I have found that option!",5,7,5.13.2,2020-01-03 13:21:06,"Hello. In the ""My calendars"" menu, you can add a local calendar that will not be synchronized with external servers. It will be completely on your device. The only thing for editing will be the calendar application of your device.",2020-01-03 10:05:13,most_relevant,prox.lab.calclock +Connor Carbon,https://lh3.googleusercontent.com/a-/AOh14GiYwYHpieD50_uhJ5MBPj3_veJTyY8g1A3gXcBhEQ,"If you use Google calendar and like circular visualizations of your schedule, this is a must have. I paid the premium charge for the full set of features so I can see a 24 hour calendar view, and I'm going to buy and ""Wear OS"" smartwatch to use this app's smartwatch sync feature to see my widget on both my watch and home screen. Perfect!",5,2,5.13.2,2019-12-19 19:54:06,,,most_relevant,prox.lab.calclock +Brian Damage,https://lh3.googleusercontent.com/a-/AOh14GiCcXYxH-zeRRJ6qotM5hnse0TYiwIhrVT5_mn9pQ,"This is a very convenient little app that can have quite a big and positive impact on your daily routine, especially if you work on a lot of different projects. For me, the indicated time between events is very helpul in planning breaks. Must-have for anyone who is looking for a clean and effective way to manage their schedule. Well worth the purchase! ^^",5,79,5.13.2,2019-12-19 21:49:21,,,most_relevant,prox.lab.calclock +Михаил Жвакин,https://lh3.googleusercontent.com/-jfgqO-dlgXc/AAAAAAAAAAI/AAAAAAAABqo/AAKWJJM-sHOda4mBCtKfdpc5tZCyq6EczA/photo.jpg,Cool app to visualize ur schedule and make it easier to plan your day. A really cool customization system and integration with some non-default calendars is great. Bought a premium right after first day,5,1,5.13.2,2020-01-12 15:30:08,,,most_relevant,prox.lab.calclock +Syed Shabab Ahmed,https://lh3.googleusercontent.com/a-/AOh14GhKzFlNW6FFqQufNZsCDV4XsrlmJnx-Id-YzwZLM80,Useful widget to view the schedule of calendar. What I like the most is I can just activate one event of Google Calendar and see it in the widget. Was looking for this type of app for a long time 👍,5,0,5.13.2,2020-02-07 14:03:04,,,most_relevant,prox.lab.calclock +Ravindar Negi,https://lh3.googleusercontent.com/-BwBC0S0yvnY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPggEbPPJLKR-pObEnWRe_9kRI_Zg/photo.jpg,"Great experience, it would be great if it has some rotation feature, so that we can rotate the wheel and it shows the task as per indicated position. Thanks",5,0,5.13.2,2020-02-10 08:52:05,And thank you!,2020-02-10 14:35:18,most_relevant,prox.lab.calclock +Christine Fotinaki,https://lh3.googleusercontent.com/a-/AOh14GjJRgsb20NjUQTZKwEFtKDuprTNFTJp6yG7PFHj,Great app for visualizing your schedule and the inbetween duration of events (actual time of events and time left)!!! Really loved it and I treated myself with the pro version for colour customisation and 24 hour display! GREAT APP. ☆☆☆☆☆,5,7,5.13.2,2020-02-19 23:31:27,"Hi, +Thanks for the great review! +You need to go to the widget menu and go to the settings of the widget buttons. While in this mode, click on one of your buttons. +After that, the menu for editing the action of this button will open.",2019-06-01 11:25:59,most_relevant,prox.lab.calclock +tobyW,https://lh3.googleusercontent.com/a-/AOh14Gjk0ysSUY7tLDFLfIb3CmD_Coi0tewDQrYyetlVt8Y,"Like the structure of the daily appointments. So much easier to see my day at a glance. [Edit] Unfortunately I had to delete b/c would not update additional entries. Hence, 5 to 2 stars. [Edit 25Dec] I've noooo idea what changed to be fair probably system update or Google calendar. Regardless sync works beauuufifully! And absolutely delighted. So much so I purchased Pro (feed the peeps that make good stuff!) Thanx!",5,2,5.13.2,2019-12-25 03:10:38,"Hi +Sync should work. Please write to me at 27applab@gmail.com, I will help to solve the problem.",2019-12-18 02:52:58,most_relevant,prox.lab.calclock +Bryson Brozovsky,https://lh3.googleusercontent.com/-6-Lqd1XrU7E/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN7Li2nwVtocvOOMUkXTSAVkqe07A/photo.jpg,Supper helpful for me as a busy college student. I often forget all the things I have to do each day and this helps me visualize what's next. I want to get an Android Wear just to have this app also on my wrist. It's that helpful. Also I just bought pro and I love the colors! Please keep the support and updates coming. Thanks!,5,31,5.13.2,2019-12-08 03:46:54,,,most_relevant,prox.lab.calclock +Nishra Almen,https://lh3.googleusercontent.com/a-/AOh14Ghcg9AgawsNtKB-AfCCMSa_ZRK5SKnNzVzez87b5A,I love it! Exactly what I was looking for for a loong time. I've used it as my main home screen widget for over a year now -- synced with my daily schedule set up in Google calendar. I recommend the 24h layout.,5,4,5.13.2,2019-12-19 19:36:35,,,most_relevant,prox.lab.calclock +Dusty Thompson,https://lh3.googleusercontent.com/a-/AOh14GiDKMZoL5RA3af1gzuQ8k9t3r3krruvDqHC2EX8Sw,This is a very helpful app for those working on time management. The home page widget helps keep me on track throughout the day.,5,0,5.13.2,2020-02-14 14:21:24,,,most_relevant,prox.lab.calclock +Ruski Chap,https://lh3.googleusercontent.com/a-/AOh14GgFn08XDFJOS8GyBadtOwiS3PTlM823UVdIUuUR,"Very good app easy to use and has a great interface, very easy to follow and set up all of your daily plans.",5,0,5.13.2,2020-02-08 23:27:58,,,most_relevant,prox.lab.calclock +Muhammad Khuram Javed Khan,https://lh3.googleusercontent.com/a-/AOh14GguoeV2B7EIXVr-Cdr7LYrxHBHo4YxE98Fb0swUaw,One of my favorite app to view my planned tasks as a graph when helps for a quick visual of what's next and when. Thanks for the app.,5,0,5.13.2,2020-02-26 02:18:25,,,most_relevant,prox.lab.calclock +Alvaro Vazquez,https://lh3.googleusercontent.com/a-/AOh14Gj4AYR6yAl68L5Zmw_KVaAZp0rgxE9nGP4MoLzC6g,"Was literally just about to upgrade to pro and install on my new Fossil Gen 5, unfortunately the watch face does not work. It worked before when I had a Ticwatch last year, so is there a reason it's not showing up on the Wear OS app? Edit: Got a response immediately over email and was able to troubleshoot my issue. Y'all also earned a pro member 👌",5,2,5.13.2,2019-12-12 06:18:37,"Hi, +The app works with this watch. +Please email me at 27applab@gmail.com I will send instructions",2019-12-12 05:55:32,most_relevant,prox.lab.calclock +Saurabh Chatrath,https://lh3.googleusercontent.com/a-/AOh14GhT_ItzmCQT15uXQKK6MrXA8ZzjKX8Eu9wF59Hlrg,Its a really good display of the day ahead. Exactly what i needed and it works great with the local calender.,5,0,5.13.2,2020-02-10 16:07:40,,,most_relevant,prox.lab.calclock +Tommy 2Funny,https://lh3.googleusercontent.com/a-/AOh14Gh7r-1GTSoysdvIUvsrF6seTMm0cEdI7rYq7UICxRk,Classy and useful. It tied in with my calander with ease. I like the look and I like seeing it in my screen. It really is a simple way to see what you have going for the day quickly.,5,1,5.13.2,2019-12-17 16:39:20,,,most_relevant,prox.lab.calclock +Iris Huang,https://lh3.googleusercontent.com/-ypxZmyibfMQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN_AMMOzeH_seALVYYGyYxlT0e7JA/photo.jpg,"Pretty good and pleasing to the eyes, but it would be nice if there is a button to see tomorrow schedule like a quick overview",5,1,5.13.2,2020-01-20 02:01:39,,,most_relevant,prox.lab.calclock +Joel Croteau,https://lh3.googleusercontent.com/a-/AOh14GgVPNN_1XNZetIg_k69B_m-BIGDG0iU-kJsziuGMmc,Really cool visual presentation. Lots of customization features. Great calendar keeper.,5,0,5.13.2,2020-02-13 18:08:54,,,most_relevant,prox.lab.calclock +Krystal Lawrence,https://lh3.googleusercontent.com/-nr4dRDxZ3Dc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMhFv1zQDVewRPz3p2QDPeczArv_A/photo.jpg,Great! I already feel so much more on track. Intuitive interface issueless pairing!,5,0,5.13.2,2020-01-12 19:18:18,,,most_relevant,prox.lab.calclock +Pam Eapen,https://lh3.googleusercontent.com/a-/AOh14GhauMljM2lHzhiIhLBPHkTKYV_4W9LZKPNIARBYAg,"Brilliant app, love the widget. My favourite feature is that it connects to my Google calendar.",5,0,5.13.2,2020-02-12 14:31:43,,,most_relevant,prox.lab.calclock +Jason Green,https://lh3.googleusercontent.com/a-/AOh14GinZtacr2MI_5iCuMq6DnXRLd8Zz7jCe1HBwwpZrg,Cool planner visualization tool,5,0,5.14.1,2020-03-14 00:17:58,,,most_relevant,prox.lab.calclock +Malena Echenagucia,https://lh3.googleusercontent.com/a-/AOh14Gjij1tgiYv6zu1gYmA4sgIRmlngX2zdWuCv6T6QZw,"Excellent, very visual tool .",5,0,5.14.1,2020-04-01 07:43:45,,,most_relevant,prox.lab.calclock +Kaung Win,https://lh3.googleusercontent.com/a-/AOh14Ghm-DATHl88OROCWBXl7avzDNMJkfc8HdIx1N5Kjg,It's great showing visual how much time I have and what time I use. I needed something like this!,5,0,5.13.2,2020-02-25 10:46:43,,,most_relevant,prox.lab.calclock +Ravi Patodiya,https://lh3.googleusercontent.com/a-/AOh14Gg1uU6725GEoZqaUffKDbm79AZrPoHISQF7VGnH,"I love it but after the update widget stopped working for some reason but! Wait for it, you fixed it in the next.",5,3,5.13.1,2019-12-07 13:36:07,"Hi, If the problem still persists, restart the application and recreate the widgets. Or reinstall. +It will help",2019-12-07 13:46:03,most_relevant,prox.lab.calclock +Amal Tucker Brown,https://lh3.googleusercontent.com/-czh8y6IvcG8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP84lNQ2VaSFnbn-7_IRHPrcJvjiw/photo.jpg,Simple easy to use and attractive... I use it for block planning so very useful,5,0,5.13.2,2020-02-02 18:52:16,,,most_relevant,prox.lab.calclock +Max Me,https://lh3.googleusercontent.com/-o2BRo0wMthI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMe_DyatI7Q9nqtDhRe89wwhjpymg/photo.jpg,"Cool app. Gives me a good overview of the day, and useful also for timeboxing. Thanks!",5,1,5.13.2,2019-12-30 18:07:48,,,most_relevant,prox.lab.calclock +Mitchell Holmes,https://lh3.googleusercontent.com/-jUvqkq7nBhg/AAAAAAAAAAI/AAAAAAAAATk/AAKWJJOFt6g3LXGLrFgmk0Fq0dO_vYHSPA/photo.jpg,Amazing tool for time management... particularly for people with ADHD,5,0,5.13.2,2020-02-10 04:34:12,,,most_relevant,prox.lab.calclock +Varun Bhat,https://lh3.googleusercontent.com/a-/AOh14Ggi3EZAR-93OnJ7w741sP-fOZyATxz_1CarR9yR,Brilliant app. Must try and never uninstall.,5,0,5.14.1,2020-04-03 03:29:18,,,most_relevant,prox.lab.calclock +kweilip,https://lh3.googleusercontent.com/a-/AOh14Gj83hEv0dA4yyd7ciu6c5W6JMa5_7OB7TaZC6UChYw,Great way to visualize daily schedule in a more intuitive way,5,0,5.13.2,2020-02-11 04:03:15,,,most_relevant,prox.lab.calclock +Prakriti Singha,https://lh3.googleusercontent.com/-AiqZJMoDYKI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMUXuoxcT-POG1EukIINKCAK1IkPg/photo.jpg,Very much featured app!! This app is all i need to manage my time,5,0,5.13.2,2020-03-13 10:27:46,,,most_relevant,prox.lab.calclock +Светислав Миличевић,https://lh3.googleusercontent.com/a-/AOh14Gjfp4QSdCgBR30QUFsPdPeeI6f59YSWQitHFXKJ,You can customize color and transparency of every single part of the widget. You can click on events for detail view.,5,1,5.13.1,2019-12-07 00:08:11,,,most_relevant,prox.lab.calclock +Hemank Singh,https://lh3.googleusercontent.com/a-/AOh14GjmauS7Lanhti2UObeslmVsyZuyHFk5ISEK1jJWLw,Nice..but widget needs some more improvement as tapping on it does not open the main application.. By the way superb interface...,5,1,5.13.2,2020-01-01 12:25:10,"Hi! +We made the default ability to click on sectors of the widget. +To return, click on the widget button (upper right corner of the widget) and ""Customize widget buttons"". Choose the first option.",2020-01-01 12:34:13,most_relevant,prox.lab.calclock +Vincent Higgins,https://lh3.googleusercontent.com/a-/AOh14GiGX_P02TKl4YDEWYkjwOPnZV33mmHf3xdAyL2g,Great and even better for ADHD,5,0,5.14.1,2020-03-30 04:00:34,😃👍,2020-03-30 14:21:06,most_relevant,prox.lab.calclock +Mussawir Imam,https://lh3.googleusercontent.com/-2PnACuPk8Jw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOWVE84HqTOC3XQkqw_Wo7JW89tyQ/photo.jpg,Best app ever For time management and planning. Sectograph rocks,5,0,5.13.2,2020-02-16 04:40:00,,,most_relevant,prox.lab.calclock +Senad Šehagić,https://lh3.googleusercontent.com/a-/AOh14GhwdYKkDDMFY7PJHTzZQ5OOIUUQr-dbJyiFH-jH4g,"Great app. I wish that google reminders would be also possible on it, but it is great nevertheless.",5,1,5.13.1,2019-12-06 14:00:28,,,most_relevant,prox.lab.calclock +C Brb,https://lh3.googleusercontent.com/a-/AOh14GhGIhhykhzW7g8GhFH-3zreh-sxgZ-wpmx8ftnmhQ,Great app. It really helps me stay organized,5,0,5.13.2,2020-01-12 18:17:16,,,most_relevant,prox.lab.calclock +Ian Mbae,https://lh3.googleusercontent.com/a-/AOh14Giyrm1rgECrAJVU9bS1u0N82_rVBLg3m7LhkC1jVQ,"Great for time management and visualization of one's next 12 hours. Thanks guys, this is a must have",5,0,5.13.2,2019-12-07 13:37:29,,,most_relevant,prox.lab.calclock +James Allen,https://lh3.googleusercontent.com/a-/AOh14Gj8T07DYDqG5ZMEROaqOJuDGsbmCv1syuLHvoO_Kg,"Amazing, its fantastic to have a visualization of what my day is. It keeps me on track.",5,0,5.13.2,2019-12-16 19:25:17,,,most_relevant,prox.lab.calclock +Kamal Nése,https://lh3.googleusercontent.com/a-/AOh14GjtEucm6PbiWjy_HduHSHzmD1NBtWEDOiNlfeVv8g,It's really helpful app and it makes you day easy and it reminds you in time I recommend it to poeple who wants to be seccsesful in thier livies and great mindsets ❤🇲🇦,5,1,5.13.2,2020-01-02 00:36:58,,,most_relevant,prox.lab.calclock +Alina Tarasova,https://lh3.googleusercontent.com/a-/AOh14Gjc7K4Da6OVYI7Nbwyr_3U-3880RMMoCGCD4ZCw,"Great app,I like the way it looks like clock👍",5,0,5.13.2,2020-02-15 16:11:27,,,most_relevant,prox.lab.calclock +Sailoon Loonmwe,https://lh3.googleusercontent.com/a-/AOh14GiaOsmwbvpr8SMphFo3dDWBPuXvsNguKJ5g0cRR8g,Very useful for planning activity & management of time. Thank U so much.,5,0,5.13.2,2020-01-03 17:02:24,,,most_relevant,prox.lab.calclock +Marium Mahmoud,https://lh3.googleusercontent.com/-WdZWgTHObls/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPZ8Frhfd6hsOmbXg4pu6ZwuFyxtA/photo.jpg,Helped me in organizing my time (Calendar Blocking).. AMAZING APP!,5,0,5.13.2,2020-02-21 11:38:49,,,most_relevant,prox.lab.calclock +Mathieu Brusa,https://lh3.googleusercontent.com/-3MF977ihEjA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMOG4xtNWkP6P5EcRwvhpe0XCjg4A/photo.jpg,"Well design, useful, and easy to use",5,0,5.13.2,2020-02-14 21:45:49,,,most_relevant,prox.lab.calclock +Arturo Palacios,https://lh3.googleusercontent.com/a-/AOh14GiirX302Wsw9W3IivPFR-GClINYK9Y8dJYZHQEboA,I can see my day at a glance with out screen beign cluttered,5,0,5.14.1,2020-03-15 05:30:16,,,most_relevant,prox.lab.calclock +A Cox,https://lh3.googleusercontent.com/a-/AOh14Gi3v13SUwC1oQ-5VyKEWKVuSbwxv6WiUg_DKnrUmw,This is bad ass. I really love the originality of the concept.,5,0,5.14.1,2020-03-29 16:53:51,,,most_relevant,prox.lab.calclock +TWZ DC,https://lh3.googleusercontent.com/-pfhk_lAps0U/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNR__bBKZ_J2D_Zeb5ysPuTlEVV0A/photo.jpg,Good app does exactly what it says it will I like that cause it's hard to find nowadays,5,0,5.13.2,2020-01-25 21:10:16,,,most_relevant,prox.lab.calclock +s srihari,https://lh3.googleusercontent.com/a-/AOh14GhTvtTo0jUrWQpwVTSLfTVduimGXvd5uq9FGoNSAQ,Helpful to visualize recurring events on Google calendar.,5,0,5.13.2,2019-12-22 18:28:44,,,most_relevant,prox.lab.calclock +prabhakaran rajendran,https://lh3.googleusercontent.com/-Q7zMbma0JEc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPdTbIfIP9FMy7YvJag8o1ZLCb0BA/photo.jpg,Excellent App for time management and remainders.,5,0,5.13.2,2020-01-19 20:04:25,,,most_relevant,prox.lab.calclock +Om Dhinoja,https://lh3.googleusercontent.com/-tnEF5POQbbs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNqDe9THrd3tY7ccj563OQ7Uf95EQ/photo.jpg,One of the best apps for time managements and highly recommended for professionals,5,1,5.13.2,2019-12-16 14:34:15,,,most_relevant,prox.lab.calclock +GAP78 kh,https://lh3.googleusercontent.com/-d7aLK2-OHcM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN_0IdF3uuM0EAoVc9Pl9Wozieznw/photo.jpg,"Superb.... Useful, handy, easy together with very attractive looks 😍",5,0,5.13.2,2019-12-23 16:18:47,,,most_relevant,prox.lab.calclock +Sebastian Salazar Grados,https://lh3.googleusercontent.com/a-/AOh14Gj9axRwmJLJHfQFFcfsmE5fSCN_pw3fhoPOA3Hqjw,Best tool for tracking time in my opinion,5,0,5.13.2,2020-01-15 02:34:41,,,most_relevant,prox.lab.calclock +Denis Kudla,https://lh3.googleusercontent.com/a-/AOh14Gh8m8idlrukR49fILyFgOY53pw_5YbU09Cd7Lm4pg,"Pretty nice, helpful and useful app. Like it",5,0,5.13.2,2019-12-24 12:30:54,,,most_relevant,prox.lab.calclock +Ana Cooper,https://lh3.googleusercontent.com/-sb6Hw9jDaiI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP9resFFvaGKFqzytaMto-5s5lGyA/photo.jpg,Best app for reminders. Great interface!,5,0,5.13.2,2020-02-15 03:55:30,,,most_relevant,prox.lab.calclock +TheresNoGhost,https://lh3.googleusercontent.com/a-/AOh14GgzlLAnrlrOfHb3NYsbXiW1dXx63gV0pE_tMnyFzg,"I love this app, unique style that looks great on any of my devices.",5,0,5.13.2,2019-12-09 21:28:19,,,most_relevant,prox.lab.calclock +Red Me,https://lh3.googleusercontent.com/-1BPn4J0Guag/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMIK0zio57w2VH_2A2mHXVcerLvdQ/photo.jpg,Still need to investegate all the features but already impressed. Will go Pro soon.,5,0,5.13.2,2020-02-19 16:38:12,,,most_relevant,prox.lab.calclock +ujjwal tyagi,https://lh3.googleusercontent.com/a-/AOh14GjQA4vOr4rU6wIwnCkbolxH-3H1xa0wAbujvQQ2KA,Really useful for time management.,5,0,5.13.2,2020-01-18 03:58:10,,,most_relevant,prox.lab.calclock +Ali K,https://lh3.googleusercontent.com/a-/AOh14GgPqBYKPvjLnoAE94bIHVv_6QSxHGZTkj-SD703XQ,Pretty good. Great graphics as well,5,0,5.13.2,2019-12-21 04:23:56,,,most_relevant,prox.lab.calclock +Carl Binneman,https://lh3.googleusercontent.com/a-/AOh14GibvGvs4c6JGoRSuUpSyneRBKxdJzlWWq7GtZXdvw,Free app works perfectly. Syncs everything.,5,0,5.13.2,2020-01-18 06:22:57,,,most_relevant,prox.lab.calclock +Lisa DiMascio,https://lh3.googleusercontent.com/a-/AOh14Ggq17bl2SpJkOMCVXKiygTGjvRNeg09SAmnXZEMXQ,Cant add the widget to my screen. Id prefer having a widget instead of opening the app.,5,0,5.13.2,2020-02-25 14:15:32,"Hi, +To place the widget on the home screen, long press on an empty spot on the home screen and press ""Widgets"". Find the widget and drag it to your home screen. +After that, make a long press on the widget and drag it to the desired size.",2020-02-25 14:10:08,most_relevant,prox.lab.calclock +Nnamdi Uformba,https://lh3.googleusercontent.com/-mxyhKcGKJUc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO15DNoFxc9qCCKY7SBnUYKcO1drg/photo.jpg,"Easy interface, Great help",5,0,5.13.2,2020-01-27 05:57:08,,,most_relevant,prox.lab.calclock +Annali Crouwkamp,https://lh3.googleusercontent.com/a-/AOh14Gh2UnjBFzxZxcKRNCefwbbDPfbReZG4cSjNoE4e5g,This is really helping me manage my time and daily activities. Wonderful app!,5,0,5.14.1,2020-04-06 19:47:07,,,newest,prox.lab.calclock +Timothy Galea,https://lh3.googleusercontent.com/a-/AOh14Gj8nS8gQwdKsVvWYSzYy5lV7xw1DExbfRgUg0iLICQ,"1/ I'm very happy I paid for the app - I've used if for a couple years continuously now, and it has never let me down. 2/ This layout is excellent for taking my days schedule in at a glance. I highly reccomend trying it. 3/ The widget has pride of place on my homescreen, and my Android Wear watchface. The designer has done an incredible job of cramming all the important information into the widget, without confusing or overly cluttering the display. There are many useful customisations that I found easy to control.",5,0,5.14.1,2020-04-06 18:37:00,,,newest,prox.lab.calclock +Mimi Losibe,https://lh3.googleusercontent.com/-iuOtBypAr5s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO3iUSCOSmW805xIOwyX_QB4YfRmg/photo.jpg,Great and handy!,5,0,5.14.1,2020-04-06 11:22:11,,,newest,prox.lab.calclock +Ima Isip,https://lh3.googleusercontent.com/a-/AOh14GhW00vtaB56g-51hTRs5cg88YNeuqliPy6xCad4bQ,Great app,5,0,5.14.1,2020-04-06 05:31:10,,,newest,prox.lab.calclock +Ellie BlueSialia,https://lh3.googleusercontent.com/a-/AOh14GhVVsfFeMCikWXzJuzinfXzR1HkcHd_yE9Bh1Bg,it has helped me to get track of my productive hours,5,0,5.14.1,2020-04-06 03:13:27,,,newest,prox.lab.calclock +Jason Toy,https://lh3.googleusercontent.com/a-/AOh14GiwWqXhCIJoxGFj_GMtTOtOx-fOe6abnSNa028_-4M,"love it in my wear device. Wish it had current weather, daily weather on it... even if paid feature. Best wear face for busy people!",5,0,5.14.1,2020-04-04 21:11:50,,,newest,prox.lab.calclock +إبداع الكرة,https://lh3.googleusercontent.com/a-/AOh14GhMSnxTR0kXteWY5XD1FqcYliQa7apf2zf3Ynif,Cool app 👍,5,0,,2020-04-04 15:48:30,,,newest,prox.lab.calclock +Donny Wahyudi,https://lh3.googleusercontent.com/a-/AOh14GjtuSF6Cx7Sho04-sVGcYrYxaxlehzwCl6DYJ3sPA,Exactly as I expected.,5,0,5.14.1,2020-04-04 08:58:18,,,newest,prox.lab.calclock +Jacob,https://lh3.googleusercontent.com/-O-Dppmm7iQ8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP7w6VALRwefWPzeMW4qMGvMImqeA/photo.jpg,Es great. Good enough for me to use it to help fix my sleeping pattern.,5,0,5.14.1,2020-04-03 11:46:51,,,newest,prox.lab.calclock +Paul Howe,https://lh3.googleusercontent.com/-8O8u0mn2BXQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPLwiYjc-cn7EwIsqEYmlkLbrEs9w/photo.jpg,Works well 😊,5,0,5.14.1,2020-04-03 11:34:19,,,newest,prox.lab.calclock +Neil Ram,https://lh3.googleusercontent.com/-r5h7UEc8yXg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNfDqJ_98qdygfxtE4-VRox-XJTXg/photo.jpg,Great app,5,0,,2020-04-03 08:54:00,,,newest,prox.lab.calclock +Sakibul Islam,https://lh3.googleusercontent.com/a-/AOh14GjAPXOZCGpMn60kCnIE92rgWwOEWYuTeUqjr4Js1Q,Great apps for maintain schedule,5,0,,2020-04-03 06:43:47,,,newest,prox.lab.calclock +Varun Bhat,https://lh3.googleusercontent.com/a-/AOh14Ggi3EZAR-93OnJ7w741sP-fOZyATxz_1CarR9yR,Brilliant app. Must try and never uninstall.,5,0,5.14.1,2020-04-03 03:29:18,,,newest,prox.lab.calclock +Jayprakash Sahu,https://lh3.googleusercontent.com/a-/AOh14GiuwkleAnAZltIbi5zKsmzSYu6fhxsp9sk8LicM9g,Good app...kudos to the developers..👍🙏 बहुत बढ़िया भाई।।,5,0,5.14.1,2020-04-02 09:49:27,😉👍,2020-04-02 14:47:28,newest,prox.lab.calclock +Daya Here,https://lh3.googleusercontent.com/a-/AOh14Ghi5ddjeCXejx7vmjvpy608zUbQ-2Ntvnmv6RhGXQ,Awesome app. Love the looks,5,0,5.14.1,2020-04-02 04:42:39,,,newest,prox.lab.calclock +Arjay Lanario,https://lh3.googleusercontent.com/-ASskIgsz11M/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPPSk2bQOu1JbUMm6YHpsKnPeB4YA/photo.jpg,Nice,5,0,5.14.1,2020-04-02 01:54:45,,,newest,prox.lab.calclock +Mia C,https://lh3.googleusercontent.com/-7a6hebvGfL8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNY41F0Cgx5xRjyKuHPWkq9FrZ0Hg/photo.jpg,It does everything I need it to,5,0,5.14.1,2020-04-01 18:54:56,,,newest,prox.lab.calclock +Brandon Quijada,https://lh3.googleusercontent.com/a-/AOh14GiRi2eUj8iQb1pEBt89oarZTEmLVx2xoAtTblxbEg,Perfect,5,0,5.14.1,2020-04-01 12:29:17,,,newest,prox.lab.calclock +Malena Echenagucia,https://lh3.googleusercontent.com/a-/AOh14Gjij1tgiYv6zu1gYmA4sgIRmlngX2zdWuCv6T6QZw,"Excellent, very visual tool .",5,0,5.14.1,2020-04-01 07:43:45,,,newest,prox.lab.calclock +Bev Barnett,https://lh3.googleusercontent.com/a-/AOh14GiMSkRuiPj936xZEPHad1J7G8jgzRRcmvHGJcpa,"brilliant! I absolutely adore this app. so easy to set up, makes using google calendar for agendas even easier than just using google calendars! the events on the clock face just clicked instantly for me, the fact that they can be colour coded is delightful. the widget is great, and even shortcuts from there can be personalised. I got the pro version even though the free one does everything you need it to. having 24 hour option is good though, and even more colour customisation now. LOVE it!!",5,2,5.14.1,2020-04-01 01:58:35,,,newest,prox.lab.calclock +Robin Ebaugh,https://lh3.googleusercontent.com/a-/AOh14Ggz_aBCtEA8yxUkBA2McsGGHRdU_2L_-ZvyFv3mpg,"This app is fantastic! I work from home anyway, and with the disruption due to the Coronavirus, it was difficult to maintain my usual schedule. By the end of the day, I hadn't accomplished much and really didn't know where the time had gone. I downloaded Sectograph and it has made all the difference. I am getting my work done and even have free time to enjoy. I even recommended it on Twitter yesterday.",5,13,5.14.1,2020-03-31 14:01:53,😸👍,2020-03-31 14:06:55,newest,prox.lab.calclock +Liselore Rem,https://lh3.googleusercontent.com/a-/AOh14GgH85iiCbwVisadXJ2TtR808agl-WXromupp-Yv5Q,Perfect overview of your day and what to come!,5,0,5.14.1,2020-03-31 10:57:17,,,newest,prox.lab.calclock +Freddie Martinez,https://lh3.googleusercontent.com/a-/AOh14GgEBi403h1UWxleMDRJFDriRO4zA2NRUpxhA7PaHw,Love it.,5,0,5.14.1,2020-03-31 01:08:38,,,newest,prox.lab.calclock +Bulchinlag zaluu,https://lh3.googleusercontent.com/a-/AOh14Givr0OrnoiNM-OeSVx5UOXwi3TMIAxWjbmk-761,So nice.My hearth of friend.,5,0,5.14.1,2020-03-31 00:01:55,,,newest,prox.lab.calclock +Geoffrey Harding,https://lh3.googleusercontent.com/a-/AOh14GhmAi_XjbIDZc_fr574k7Aze6sC5f_8SeAH1TvH7g,"This applications are, all there setting up you routine for the day and you can set appointments in advance.",5,0,5.14.1,2020-03-30 16:47:05,,,newest,prox.lab.calclock +Tushar Donda,https://lh3.googleusercontent.com/a-/AOh14GiHNaSLvKdYWEOC7p21UCytcCnDpMAgZg-EIfXr,Good Develops app ⌛⏰🔏,5,0,5.14.1,2020-03-30 14:54:55,,,newest,prox.lab.calclock +Alilionwu Denzel,https://lh3.googleusercontent.com/-dcZKPAf2yXw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN2khMJWr3XhoVCmi7BuaMxDv2rPA/photo.jpg,Good optimization and beautiful widgets,5,0,5.14.1,2020-03-30 11:41:38,,,newest,prox.lab.calclock +Muhammad Haidar,https://lh3.googleusercontent.com/a-/AOh14GjxBqfQdIKtx9Re1RowxY9-cjvB6QpWsqtWKaI6fg,very cool way to show your schedule on a day,5,0,5.14.1,2020-03-30 08:30:47,,,newest,prox.lab.calclock +Fateh Mammadli,https://lh3.googleusercontent.com/a-/AOh14Gg5aU7r1jeOKT-HEHv-0RqROzBKhGXjpG8olJH22w,This app is really great. The best part about it that it's connected to Google Calendar,5,0,5.14.1,2020-03-30 08:00:43,,,newest,prox.lab.calclock +Vincent Higgins,https://lh3.googleusercontent.com/a-/AOh14GiGX_P02TKl4YDEWYkjwOPnZV33mmHf3xdAyL2g,Great and even better for ADHD,5,0,5.14.1,2020-03-30 04:00:34,😃👍,2020-03-30 14:21:06,newest,prox.lab.calclock +Hayam Ilyas,https://lh3.googleusercontent.com/-64qetGTjYe8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPTZiyne7gKvSWBvk-x_M11_tmoOg/photo.jpg,This app reminds me everytime I forget about something important and it's all organized.I ❤ this app.Thank u so much for making this app.,5,0,5.14.1,2020-03-30 03:21:53,😉👍,2020-03-30 06:27:28,newest,prox.lab.calclock +Nathaniel Witten,https://lh3.googleusercontent.com/a-/AOh14GjstZ7iWWn-Ch5VKfVzueObK2Lh4ursYr8nMxQNaw,Go ahead and get the app. It is a great tool.,5,0,5.14.1,2020-03-30 03:16:40,,,newest,prox.lab.calclock +Mo Fairuz,https://lh3.googleusercontent.com/a-/AOh14GiYX8ehxRBe-DxsB9a8cPee7lnykq5cgiH7MtpWfZc,Superb daily time organizer,5,0,5.14.1,2020-03-30 00:23:01,,,newest,prox.lab.calclock +lost boy from neverland,https://lh3.googleusercontent.com/-M1d889S60Qo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNLN5DVM2OQKc7zIakpfidR_zqkfQ/photo.jpg,Lite useful and great,5,0,5.14.1,2020-03-29 20:15:13,,,newest,prox.lab.calclock +kidus yohannes,https://lh3.googleusercontent.com/a-/AOh14GjCWtcivtFIiWvcFnx_-kzNnJK3QgjNMuvN9pfu,gr8 app.... keep up the good work,5,0,5.14.1,2020-03-29 18:22:32,,,newest,prox.lab.calclock +A Cox,https://lh3.googleusercontent.com/a-/AOh14Gi3v13SUwC1oQ-5VyKEWKVuSbwxv6WiUg_DKnrUmw,This is bad ass. I really love the originality of the concept.,5,0,5.14.1,2020-03-29 16:53:51,,,newest,prox.lab.calclock +Hawken Fox,https://lh3.googleusercontent.com/a-/AOh14GgrHqOlVLOOhcFqn5xw3adztFjFQieNdL1yh8PP,Nice looking clear presentation of the calendar,5,0,5.14.1,2020-03-29 13:21:53,,,newest,prox.lab.calclock +Jake Naniong,https://lh3.googleusercontent.com/a-/AOh14GjLEW2kRs4YymVTLOo532YHa54p3McKYt-qp6NK,Works beyond my expectations.,5,0,5.14.1,2020-03-29 10:07:03,,,newest,prox.lab.calclock +Enock Irvin,https://lh3.googleusercontent.com/-_lFRMoM8w48/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMenWHj2xAQhC9nxme3my1TBpTFQg/photo.jpg,Extremely useful once you get a hang of how it works.,5,0,5.14.1,2020-03-29 09:20:01,,,newest,prox.lab.calclock +Hasna Haskeen,https://lh3.googleusercontent.com/-obVRaISPy1Q/AAAAAAAAAAI/AAAAAAAAW1o/AAKWJJO6uL7f-B-2VESJDkfHYjXltrt8Qw/photo.jpg,Good,5,0,5.14.1,2020-03-29 08:30:41,,,newest,prox.lab.calclock +Ricardo A. González Gazapo,https://lh3.googleusercontent.com/a-/AOh14GjDmFQI5384tdWx0BANWnWLp2anCAUuIuHvLTiGtg,"Increíble nueva forma de gestionar el calendario, alternativa ideal para un widget rectangular aburrido 👏",5,0,5.14.1,2020-03-29 01:14:27,,,newest,prox.lab.calclock +Philip Coory,https://lh3.googleusercontent.com/a-/AOh14GgSVu8h63SVttt80TyEijdFX2ZTCmdCgri-DIoXig,"The best scheduling app I've used so far. Easy to view at a glance, and connects directly to your calendar. No complaints.",5,0,5.14.1,2020-03-28 23:23:36,,,newest,prox.lab.calclock +Lauren Zuckerberg,https://lh3.googleusercontent.com/a-/AOh14GinRFINPjfqgJoGpihnwD69050RSBf6835F195V,Awesome app!,5,0,5.14.1,2020-03-28 17:24:30,,,newest,prox.lab.calclock +Under Illusions,https://lh3.googleusercontent.com/-xSHpMWjtOdA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPcZXi8jb06gi1RToCcd_J6vknFvQ/photo.jpg,"An amazing app, helped me to become more productive and disciplined. Only downside is is that I wish it was compatible with my laptop so that I can always be reminded of my time schedule. Other than that, an amazing app. Would totally recommend this!",5,0,5.14.1,2020-03-28 05:41:26,,,newest,prox.lab.calclock +Victoria Jordan,https://lh3.googleusercontent.com/a-/AOh14GjKWFbL74cXQao_1_63XO-tGmXb_FLe04v2aH6QeBk,love it,5,0,5.14.1,2020-03-28 05:11:14,,,newest,prox.lab.calclock +Thomas verdant,https://lh3.googleusercontent.com/a-/AOh14GjWLiHKmqmbBdZrbzph6fE6WS7xK5-tjnS1lKwR57A,Exceptional service,5,0,,2020-03-27 22:50:26,,,newest,prox.lab.calclock +Quezako,https://lh3.googleusercontent.com/a-/AOh14GjuFXA6KGzfVdiFLgSiYSDMAYAwxDo9YKBdY0pNp_c,"Great app, very clever design! I just hope there will also be a Windows version one day...",5,0,,2020-03-27 22:47:30,,,newest,prox.lab.calclock +Monika Gupta,https://lh3.googleusercontent.com/-HweQpaxN2sw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPHrCBURVp-aALbX0r4wa5T5MzwpA/photo.jpg,Amazing app... Helps in staying organised n focused whole day....,5,0,5.14.1,2020-03-27 18:37:36,,,newest,prox.lab.calclock +Eoin Hayes,https://lh3.googleusercontent.com/a-/AOh14GiIo9hcDsSt0eV_XvF2dOvyOK5ctFqHmUxovvDdsw,I'm not making full use of this app yet. But it's a very handy widget for busy folks to visualise their agenda for the day.,5,0,5.14.1,2020-03-26 15:12:58,,,newest,prox.lab.calclock +Ananda Kumar,https://lh3.googleusercontent.com/-PHIwt7bkaWw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNDsDriQf9oWTMHSGJyDkggKTEg0w/photo.jpg,Excellent super app. Gift my god. Thankyou,5,0,5.14.1,2020-03-26 03:27:38,,,newest,prox.lab.calclock +Syzygy Syzygy,https://lh3.googleusercontent.com/-KcQ02THfvys/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM_iVcNQyVLH4aumW8cOWhb8xNOZA/photo.jpg,"This is the App I never knew I needed. I got the free version because it sparked my interest and upgraded to the full paid version within a day. Maybe I'm wired to see my day in the way they present it or maybe Sectograph is wired to appeal to me, I'm not sure. Either way their widget is the top half of my home screen and I am more in touch with my schedule than I ever have been.",5,10,5.14.1,2020-03-25 20:38:37,,,newest,prox.lab.calclock +SNinja Beard,https://lh3.googleusercontent.com/-lMAMW0hoZMY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPo3UNNeQ6POH3ltyDG8OGFU3ovHg/photo.jpg,"At first it appears cluttered, but it won't take you very long to figure it out and by then you'll love it.",5,0,5.14.1,2020-03-25 09:00:24,,,newest,prox.lab.calclock +Nia Arifani,https://lh3.googleusercontent.com/a-/AOh14Ghd_c0iSB-CbbYAv8ltOLUsnLJzM47YU1PaShSVbw,Usefull,5,0,,2020-03-24 12:24:05,,,newest,prox.lab.calclock +Benjamin Burke,https://lh3.googleusercontent.com/a-/AOh14GjkjQbUmSfMrHCjlwq_gStFGAcizKvizgP_-2DZT9I,I enjoy the sectograph widget a lot,5,0,5.14.1,2020-03-24 10:11:29,,,newest,prox.lab.calclock +شركة متخصصة في مجال تسويق الصيدليات Hossam Ghally,https://lh3.googleusercontent.com/a-/AOh14Ghpg4C55JKiSpCJaBQj_F6FOtC-0L0EThSBo1JKTQ,عملي جدآ,5,0,5.14.1,2020-03-23 02:40:06,,,newest,prox.lab.calclock +abderrahim eddafi,https://lh3.googleusercontent.com/-NDEpB9aNrIY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPCe-HlOKJZkgb7xWj0wfN9YJKuVg/photo.jpg,Just amazing 😍,5,0,5.14.1,2020-03-22 14:39:16,,,newest,prox.lab.calclock +Mindful Monk Botanicals,https://lh3.googleusercontent.com/a-/AOh14GivyoMp2Lepzg_WouRhqUVJ8nmjbxDZmlPx2bSu,Nice,5,0,,2020-03-22 02:49:28,,,newest,prox.lab.calclock +Desiree Whiteman,https://lh3.googleusercontent.com/a-/AOh14GgUL18xZdxyxtnvhhCdyU1zu_BRQbsAmt0YZEq_bA,Love it,5,0,5.14.1,2020-03-21 11:06:57,,,newest,prox.lab.calclock +Musiime P Muramura,https://lh3.googleusercontent.com/a-/AOh14GjxKl8ceRDtFR72sx3BG9SQlmi8qDuxoCSn_4ydUA,Good app recommended,5,0,5.14.1,2020-03-21 08:51:15,,,newest,prox.lab.calclock +B.C. Danger,https://lh3.googleusercontent.com/a-/AOh14GiKJg7iZHAIlP605pvtfofVazLZFSXDTY4ytv543g,Amazing productivity booster!,5,0,5.14.1,2020-03-20 19:56:18,,,newest,prox.lab.calclock +Israel Exodus,https://lh3.googleusercontent.com/-IKXdQ1gk_1o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJObihGqoqaUdMOC2nPD1w0jcEjzbw/photo.jpg,I like it. What I would really like to be able to do with it is to set it on my homepage to where as soon as I open my phone my schedule is right there in place of my clock. Food for thought 😁. Thanks! Edit: wow! Thanks! Developer responded to my query within hours. Changed from 4 to 5 ☆☆☆☆☆!!!!,5,0,5.14.1,2020-03-20 14:42:52,"Hi, +To place the widget on the home screen, long press on an empty spot on the home screen and press ""Widgets"". Find the widget and drag it to your home screen. +After that, make a long press on the widget and drag it to the desired size. +Have a nice day!",2020-03-20 10:34:47,newest,prox.lab.calclock +khirod sonowal,https://lh3.googleusercontent.com/a-/AOh14GibT7IyyGFZZBAGIBbB3dwHSifLXLdQjBTQ6V4fYA,5stars,5,0,,2020-03-19 04:26:31,,,newest,prox.lab.calclock +Mark Jacobs,https://lh3.googleusercontent.com/a-/AOh14GjjQQcxvf_eNxJGY2tTM0Oqt1Yy5B-0LdN3q1gBdQ,Very useful app for keeping track of the day!,5,0,5.14.1,2020-03-19 01:46:43,,,newest,prox.lab.calclock +Thomas Legrand,https://lh3.googleusercontent.com/a-/AOh14GgZJ65O83Kgmn8k3z9vP0xmopb31AmoFNzj6KJv7A,"The app is really great and don't even need the paid version. Unlike what people said, I found it quite easy to set up. I wish the ""custom repeat"" had option to choose which day of the week and not the frequency of days, as my schedule varies (schema as : 4 days A followed by 3 days B). I really love the widget option also. I just downloaded it but if I keep using it then I will consider buying the pro version to support the creators.",5,33,5.14.1,2020-03-18 09:58:30,,,newest,prox.lab.calclock +Ningombam Rabi,https://lh3.googleusercontent.com/-M85k9w2HHrI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPidRY04Z5Kv0p4JMJVqDGNTcFxkA/photo.jpg,Www//httpe.@com.emile,5,0,,2020-03-17 21:26:31,,,newest,prox.lab.calclock +Marelize Postma,https://lh3.googleusercontent.com/-GEen_vI8DdI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNyG9CvV8o6FZh4yLVag9F3l-3EgQ/photo.jpg,"Such a cool App!!!! Exactly what I was looking for, and so easy to use.",5,0,5.14.1,2020-03-16 17:36:00,,,newest,prox.lab.calclock +Arturo Palacios,https://lh3.googleusercontent.com/a-/AOh14GiirX302Wsw9W3IivPFR-GClINYK9Y8dJYZHQEboA,I can see my day at a glance with out screen beign cluttered,5,0,5.14.1,2020-03-15 05:30:16,,,newest,prox.lab.calclock +MrEhsan55555,https://lh3.googleusercontent.com/a-/AOh14GhMJEIAafjWUH5eJwImMvYR3ivAwy0yX0VqPhRn,"If I wish to make an app , this would be the best idea I can came with",5,0,5.14.1,2020-03-14 19:30:42,,,newest,prox.lab.calclock +Sam Ibnezer,https://lh3.googleusercontent.com/a-/AOh14GiagO-VOmBYYNCRgTObCqO7GqHQXqgIqBtj50EQ,Really helpful app...Insane widget,5,0,5.13.2,2020-03-14 11:44:50,,,newest,prox.lab.calclock +Bilal Kawish,https://lh3.googleusercontent.com/a-/AOh14Gh-6dW0KxnmkBHmj8Zy2YlkLa9DlF3Fqj9P_JjQ_Zg,"A nice application with a interface designed to have the ability to give you a reminder, heads-up for coming events. It seamlessly absorbed info from my calander, alarm clock and prayers(Salah) reminder. Keep up the good work",5,2,5.14.1,2020-03-14 07:30:21,,,newest,prox.lab.calclock +Jason Green,https://lh3.googleusercontent.com/a-/AOh14GinZtacr2MI_5iCuMq6DnXRLd8Zz7jCe1HBwwpZrg,Cool planner visualization tool,5,0,5.14.1,2020-03-14 00:17:58,,,newest,prox.lab.calclock +Prakriti Singha,https://lh3.googleusercontent.com/-AiqZJMoDYKI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMUXuoxcT-POG1EukIINKCAK1IkPg/photo.jpg,Very much featured app!! This app is all i need to manage my time,5,0,5.13.2,2020-03-13 10:27:46,,,newest,prox.lab.calclock +Lord of Life Oromo Church,https://lh3.googleusercontent.com/a-/AOh14GiiuIgfhL5qfzLHx-bEkmqj6AboX-4-eeIbumVeNQ,Great apps!,5,0,5.14.1,2020-03-13 10:03:48,,,newest,prox.lab.calclock +Ben Bernardez,https://lh3.googleusercontent.com/-ufUahajLUxc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMZKrUyO5K7x5bWuUqETQwXLr5I8Q/photo.jpg,A good visual representation of what I do on a particular day.,5,0,5.14.1,2020-03-12 16:07:47,,,newest,prox.lab.calclock +Sabuj Bhattacharjee,https://lh3.googleusercontent.com/a-/AOh14Gh1o-Dcl-BUpLk6lp613x-xM7ZdO4m7htkc4UYQzg,nice one,5,0,5.14.1,2020-03-12 08:39:55,,,newest,prox.lab.calclock +karthikeyan Neyveli,https://lh3.googleusercontent.com/a-/AOh14Gjf-3j43LatTqLGwr9V66q9GjA98GNHGESU1MYn,Good,5,0,5.13.2,2020-03-12 02:12:17,,,newest,prox.lab.calclock +badcrockett57,https://lh3.googleusercontent.com/-yDykmHdwIoo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPgMHHv7fbTFt6nnpwj3vIaZdJqXw/photo.jpg,This is one cool app. Not only is it useful but it also has an aesthetically pleading footprint.,5,0,5.14.1,2020-03-11 17:00:47,,,newest,prox.lab.calclock +den li,https://lh3.googleusercontent.com/a-/AOh14Gglq4Sl4fUSW0tDfZGDLodPPsfHwmVE69A0jMIk7g,Really great. It takes some time to get it working - my current use is to input what i plan to do the previous day either at night or through the day when i discover what needs to be done. Jotting down your plans is more effective than you might think to productivity. Ill keep using it and get back when i discover more tips to be more productive.,5,6,5.14.1,2020-03-09 18:23:19,,,newest,prox.lab.calclock +Elizabeth Caw,https://lh3.googleusercontent.com/-Cq_scrlrPxg/AAAAAAAAAAI/AAAAAAAAGek/AAKWJJN7L2GLu_NTk-yEykCbZOagPAF95w/photo.jpg,Seems perfect. Will let you know of that changes lol I wish it didnt need google calendar. I do NOT want to synch to google 😭,5,1,5.2.4,2020-03-08 23:39:28,,,newest,prox.lab.calclock +Kevin Liew,https://lh3.googleusercontent.com/-jwgMFVtkdkA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPUUJqF8zXIBm1owX9WAzCmSJvO9w/photo.jpg,Please support midnight cutoff display,5,0,5.14.1,2020-03-08 09:26:25,,,newest,prox.lab.calclock +Raymond ugochukwu,https://lh3.googleusercontent.com/a-/AOh14Gg-5ew9lfxowwphMLiJnFf76XVXIprqrKlgY0hM,Nice,5,0,5.14.1,2020-03-08 00:09:55,,,newest,prox.lab.calclock +Krzysztof Zimmermann,https://lh3.googleusercontent.com/a-/AOh14GjuO4Ich-dfSKTME1z1bXCDy8sdiO0wofWG1UyMHA,"Wonderful app, unique and very useful, great design and functionality.",5,0,5.14.1,2020-03-07 13:24:27,,,newest,prox.lab.calclock +Victor Gurbani,https://lh3.googleusercontent.com/a-/AOh14GjQJedvXoVuzf-hIwKmQcl-qeLuZj7ETpXTEp697g,"Perfect widget for your home screen, all your events in the same place on a clock.",5,0,5.14.1,2020-03-05 15:05:17,,,newest,prox.lab.calclock +keefer dbk,https://lh3.googleusercontent.com/a-/AOh14Git90vWMrgLennROh1gAEfvtHg-pU-tN_41ISvFmQ,Very clear and easy to use app. The paid version is so worth it. Having your daily schedule displayed on a clock is SO nice for my ADHD,5,1,5.14.1,2020-03-04 18:13:44,,,newest,prox.lab.calclock +A Sh,https://lh3.googleusercontent.com/-gTtwiZ5L8UA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM0XwMCMZ4LE4-2r4h5bkALinPbNw/photo.jpg,Very nice application!,5,0,5.14.1,2020-03-04 15:43:15,,,newest,prox.lab.calclock +Emil Jonasson,https://lh3.googleusercontent.com/a-/AOh14GjgReqRje1wVFR81KKItPGAkpX_ff3gK6j1fmQK,"Brilliant app, helps me to keep track of everything I'm doing!",5,0,5.14.1,2020-03-04 12:48:42,,,newest,prox.lab.calclock +Armaan sohi,https://lh3.googleusercontent.com/-67FQxAtyD0o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJObaWVmQ9bIVzIvD0yj4KJF1oDOWA/photo.jpg,Gud app 🤙🤙🤙🙃🙃🙃,5,0,5.14.1,2020-03-04 05:55:08,😎🤙,2020-03-04 09:13:14,newest,prox.lab.calclock +Angela Webb,https://lh3.googleusercontent.com/-Wfh5lfthSVQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPuzPJ3_xhlLQ9lxXbq1KE7gMkvTg/photo.jpg,A great way for a visual person to outline and track their activities,5,0,5.14.1,2020-03-03 17:08:57,,,newest,prox.lab.calclock +Mohamed sapri,https://lh3.googleusercontent.com/a-/AOh14GgyvJeJFb8OcrORgAEBqs4Xi_7-mH5ZvVmekVrx,Nice application,5,0,5.14.1,2020-03-03 17:01:48,,,newest,prox.lab.calclock +samaran Dsouza,https://lh3.googleusercontent.com/a-/AOh14GjFfep2JSXTSug99Vqs5Rl8OIa3H46BWumIpcNIdQ,I hope it gets better in future,5,0,5.13.2,2020-03-03 16:30:00,,,newest,prox.lab.calclock +Ubaezuonu Toby,https://lh3.googleusercontent.com/a-/AOh14GjieMvc-61xXUhmggg5NPH_XvcrcOMiS8wlcUfkLw,Does what it does well. I'm glad,5,0,5.14.1,2020-03-03 10:52:48,,,newest,prox.lab.calclock +Eva Beku,https://lh3.googleusercontent.com/-GwMxO9AVVrY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMAZvKsVfLq9XP75z_F1a2EtMHAjA/photo.jpg,It cool,5,0,,2020-03-02 13:48:11,,,newest,prox.lab.calclock +Yash Shah,https://lh3.googleusercontent.com/a-/AOh14GiY-7QZRNp0CufE6aaHOMTMXV-xiXM8Qj6NK_JUsQ,Its being punctual for others and very productive app.much recommendeddddd,5,0,5.14.1,2020-03-01 18:09:37,,,newest,prox.lab.calclock +Issa AL KHANBASHI,https://lh3.googleusercontent.com/a-/AOh14Gi1A0858SQpcG9tpPFokqSvoy1cBa-hHVsiw3mBA9o,Wow,5,0,5.14.1,2020-03-01 07:40:13,,,newest,prox.lab.calclock +Samantha Preciado,https://lh3.googleusercontent.com/a-/AOh14GhjF81DyDl2jrfeuC3mn82uAYoefLXLjZVxujw_,Beautiful graph/calendar. I love how beautiful and practical this is. I love it,5,0,5.14.1,2020-02-29 20:41:03,,,newest,prox.lab.calclock +Rishi Prakash,https://lh3.googleusercontent.com/-VG_BBfKRXpI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM_4ABLfghVUTMs_viCxg8s-4XMgw/photo.jpg,Wow its used for my studies great please also set some features like more alarams,5,0,,2020-02-29 06:20:55,,,newest,prox.lab.calclock +Herad Shan,https://lh3.googleusercontent.com/a-/AOh14GjJhlWFDfWiz8GWVLXBa7gZA73yMxQ1b2QGfySiWQ,👍👍,5,0,5.13.2,2020-02-28 12:55:09,,,newest,prox.lab.calclock +Katrina Louise,https://lh3.googleusercontent.com/a-/AOh14Gjv_jxTWxDweruHkKowjMA6-H2ydiLYpXsghRy6mg,Good app 很棒,5,0,5.14.1,2020-02-28 08:17:56,,,newest,prox.lab.calclock +Shubham Shree,https://lh3.googleusercontent.com/a-/AOh14Ghpbh0fpQC2ODKRYmV_G4mbaODtZXmPjssHADkHBTo,Just wow !!!,5,0,,2020-02-28 08:17:06,,,newest,prox.lab.calclock +Lalit Kumar,https://lh3.googleusercontent.com/a-/AOh14GhADzIyR2Gi-wB3LvZfOobFj9JlUjWQk0i2AzCx,Realistic approach on time management. 😇,5,0,5.14.1,2020-02-27 19:22:42,,,newest,prox.lab.calclock +Furkan KTB,https://lh3.googleusercontent.com/a-/AOh14GiBIFt50ukpiCAExmQqKcMY_ziyRPk9g4-bnXfAaQ,"I loved this app so much after I downloaded it and used it for about 2 weeks. Because I loved it so much I decided to purchase the pro full version and payed £4.99. However, it was not worth paying at all. I would have rather used the free version with the ads. I will recommend everyone to download the app and use the free version but dont get the £4.99 ad free version because it doesn't really give you anything extra. I would recommend the creator of the app to add more features for payed.",1,2,2.9,2020-04-04 18:50:50,"Hi. If you contact us at timetuneapp@gmail.com we'll make a refund for you, there's no problem in that. Thanks.",2020-04-05 08:29:16,most_relevant,com.gmail.jmartindev.timetune +Soumya Kapoor,https://lh3.googleusercontent.com/a-/AOh14Gg6YCczw1v_CgH6grXxt0yujGcA5SHkQb9yh6fQcg,"Pop up stating "" the app has been blocked by the system. Please authorize the app in your device settings. Troubleshooting or refresh background tasks "" is flashing on my device. May I know what is this about?",1,2,2.7.1,2020-02-03 18:59:18,"This happens because OnePlus is very aggressive with battery management and has several controls to block applications, it's not a fault with our app. If you already checked https://timetune.help/en/troubleshooting/ and https://dontkillmyapp.com/ we recommend to check or ask in OnePlus user forums for instructions about your specific device model.",2020-02-03 19:22:02,most_relevant,com.gmail.jmartindev.timetune +Depression Tear,https://lh3.googleusercontent.com/a-/AOh14GgEdBysICTdDcQzn5OqB2tHjpq8jfwfWJZI7TN4,The tutorial doesn't help and shows you nothing the app is very bad and isn't easy to understand I have given up after wasting time trying to figure this trash out. I wouldn't recommend this to anyone.,1,0,2.7.1,2020-02-01 19:52:17,"Hi, we're sorry you had a bad experience with the app. We're working on several changes to make the app simpler and more intuitive. Please check our new versions from time to time. We'd be happy to have you with us in the future. Thanks.",2020-02-01 21:10:36,most_relevant,com.gmail.jmartindev.timetune +DD K. ST. MM.,https://lh3.googleusercontent.com/a-/AOh14GjqQNbqCokMXR-3aijR-XuXrYuAcuDyysdZuXrpBA,too many ads and require to pay for applications that are commonly found in play store.,1,0,2.8,2020-03-04 23:21:10,"Hi, we're sorry you didn't like the app. We only show a small banner at the bottom, but never full-screen ads or interrupting ads. About the payment, remember that you don't need to pay to use the app. None of the premium features is essential, you can use as many routines and events as you need for free. Thanks.",2020-03-05 08:31:20,most_relevant,com.gmail.jmartindev.timetune +Abhay Kumar Savita,https://lh3.googleusercontent.com/a-/AOh14GhUN3zIelCpiygDmlbbBlS8Xwyw8YoOq3LvtTjdDA,App not work after purchase...plz dont buy. User Interface not good. Beacuase eralier version is good..,1,0,2.8,2020-03-22 09:22:49,Hi. If you contact us at timetuneapp@gmail.com we'll solve the problem or make a refund if you prefer. Thanks.,2020-03-22 13:44:50,most_relevant,com.gmail.jmartindev.timetune +Angelica Arnaud,https://lh3.googleusercontent.com/a-/AOh14GgrV5WmTK-hk6mkEb_5dM1N7KcoFCbXdYpxA7AhYQ,"To me its not user friendly. I dont like the question up front before a tour of the app. Its very limited unless you pay for the pro version. I think, when picking a routine or something a bar or something should pop up with options or ideas to choose from.",1,44,2.6.8,2019-12-14 01:41:44,"Hi. Remember that you don't need to pay to use the app. There are only 3 pro feature but none of them is essential. You can use as many routines, reminders and events as you need for free. About not being friendly, our intention is to simplify things progressively in future versions. Thanks for your understanding.",2019-12-14 08:55:45,most_relevant,com.gmail.jmartindev.timetune +Sarah Skinner,https://lh3.googleusercontent.com/-6bxIgGQ1LlE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOSDrsmmN67T80kaieFomm9WS9T_w/photo.jpg,The one thing that made this app better than the others was that it was ad free. Uninstalling.,1,1,2.6.8,2019-12-15 06:23:36,"Hi, sorry about that. Showing ads again has been a difficult decision for us, but the project only can move forward if the economic part works correctly (https://timetune.app/changing-monetization-model/). In any case, it will be an ad at the bottom, not full-screen ads. We're offering the opportunity to go Pro for less price until the end of 2019.",2019-12-15 09:09:24,most_relevant,com.gmail.jmartindev.timetune +Suhas Tupsamudre,https://lh3.googleusercontent.com/a-/AOh14GidGoY0IiPCjP0D8c1rcMP5ptzRJ01TzxiRswbnmwc,Asking to buy pro version when clicked on new program,1,0,2.8,2020-03-22 13:33:41,"Hi. The Programmer is a premium feature but not an essential one. You don't need it to use the app. Most probably, it's not what you think it is. Please check how to use the app for free here: https://timetune.help/en/getting-started/",2020-03-22 13:50:20,most_relevant,com.gmail.jmartindev.timetune +ICatheraTashaI,https://lh3.googleusercontent.com/-8tz7d5l1OlI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMxpV11x4rpeFXcPM-5zX-ba2GJWg/photo.jpg,"Too difficult to figure out how to set up, can't add times to daily routines. This app is a waste of space.",1,23,2.6.6,2019-11-02 02:53:49,"Hi, we're sorry you didn't like the app. Routines are already based on specific times, so we don't fully understand what you need. We invite you to contact us at timetuneapp@gmail.com and give us more details. We want to make the app better for your needs. Thanks.",2019-11-02 09:28:54,most_relevant,com.gmail.jmartindev.timetune +Amit Potdar,https://lh3.googleusercontent.com/-_gwyHCIrW0g/AAAAAAAAAAI/AAAAAAAAHRc/AAKWJJNzYnKrNgYQ16ukdI5Ii1L4MAVgkg/photo.jpg,Didn't like navigation menu location update,1,0,2.8,2020-03-17 06:27:58,"Hi, why don't you like the bottom navigation menu? Why do you prefer the old one?",2020-03-17 09:13:01,most_relevant,com.gmail.jmartindev.timetune +Gabriel Napora,https://lh3.googleusercontent.com/-3h22ScqwE6s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPsXZ--ll9VJZEusSD4oEXMBR8m1Q/photo.jpg,This app has started to give me full screen pop up ads,1,6,2.6.6,2019-11-18 00:20:16,This is not true. The app doesn't show pop up ads. We invite you to contact us at timetuneapp@gmail.com and give proof of what you're saying. Please check it better before hurting us. Thanks.,2019-11-18 08:55:14,most_relevant,com.gmail.jmartindev.timetune +Ashley Vasquez,https://lh3.googleusercontent.com/-4mUw8NVgO80/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOWh5K-k6EqnOS50FS4-bsD5H2uRA/photo.jpg,Terrible app it didn't let me put my whole schedule in and it insisted me to buy the premium version which I'm not going to do 4.99 for an app that doesn't even work that well no thanks bye . And it restarted my whole damn thing like wth bch.,1,0,,2020-03-31 01:08:16,"Hi, you don't need to pay to use the app. You can see how to use the app here: https://timetune.help/en/getting-started/",2020-03-31 09:02:25,most_relevant,com.gmail.jmartindev.timetune +Kai nova,https://lh3.googleusercontent.com/a-/AOh14GgSq5FzYvq81TVPJ8ztuivzfxF9DnrVzD4SxwLN,"The app would be nice if it actually gave you a tutorial on how it should be used. It seems almost like clickbait, with one appealing look and then it's not what you expected or needed. Yes it's very organized and but nothing is explained.",1,0,,2020-01-05 22:55:42,"Hi. Please be so kind to check our starting guide here: https://timetune.help/en/getting-started/ As other users commented, once you check the guide everything becomes clear and the power of the app becomes evident. That being said, we're working on some changes to make the app more intuitive and self-explanatory. Thanks.",2020-01-06 08:46:23,most_relevant,com.gmail.jmartindev.timetune +Jared Smith,https://lh3.googleusercontent.com/a-/AOh14GiBg6UZozY7hzHM-KkosDFTn1zPHBmmkJ3F83Retw,"Does not refresh on Samsung phones. I have done every troubleshooting step and more, to no avail.",1,0,,2020-02-10 17:29:12,Hi. Samsung has become much more aggressive with battery management in recent devices. We recommend to check https://dontkillmyapp.com/samsung for different solutions. Please let us know if that worked for you. Thanks.,2020-02-10 17:42:37,most_relevant,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,I found it odd that the app didn't have preset hourly reminders. Most people have habits that require them to do them on specific hours (for example; gyming twice or thrice a day) the app should have a feature on where you can input the exact times in the day when it should remind you Another example of this would be: Reminder: on every Thursdays at 7am and 8pm I should be reminded of (insert habit). Instead it's jungle of toggles that seem to not make sense,1,2,2.5.2,2019-02-08 02:19:32,"Thank you very much for giving more details. What you need can already be achieved with the app (with a routine for example). But you're right, some things are not intuitive. For the moment we recommend to check our 'Getting started' page (https://timetune.center/android-help/) but you can contact by email after this as well. We'll be happy to help",2019-02-08 08:25:05,most_relevant,com.gmail.jmartindev.timetune +Mariam Janahi,https://lh3.googleusercontent.com/a-/AOh14Gh5RjTW6d9YRtEURk5PtP7zHlQlnc3pLC3j_i6l5w,"This app started out great. Everything was so organized and I was happy I had a digital schedule with reminders to carry with me. But it stopped giving me notifications, it also stopped showing my reminders all together. I wanted to uninstall the app for a while because it's never working, but today was the last straw. I had a reminder put for my midterm, but of course since it's such an awful app... it didn't notify me. I missed my midterm. Screw this app, don't download it.",1,21,2.5.1,2018-10-29 15:09:27,"Hi. This happens because the Power Saving Mode on the device is enabled and blocks our notifications, it's not a fault with the app. As you pointed out, the app worked correctly and then something else made notifications stop.",2018-12-22 19:06:07,most_relevant,com.gmail.jmartindev.timetune +Uniquer,https://lh3.googleusercontent.com/a-/AOh14Gg2XlRS2VrMR7RjUCqggqC4RP7yP-XicKVyTtPQ6A,Why this app requires so much of settings in one time.. 1)Like it should be in recent apps..2) If internet is off it doesn't works..3) Even though all the permissions to app is allowed in phone settings.. Than to it crashes.. It requires an immediate update with all the bugs fixed soon. Or people wouldn't even write a review.. They would uninstall the app and find better alternatives.,1,0,,2018-12-07 16:22:53,"Hi Dhaval. This happens because some manufacturers (Xiaomi, Oppo, Vivo, etc) are very aggressive with background tasks, it's not a fault with the app. There's nothing more we can do from the app itself, except warn the user that something external is blocking the app. We recommend to ask in Vivo forums for the proper configuration for your device.",2018-12-07 16:53:29,most_relevant,com.gmail.jmartindev.timetune +Purple Jak,https://lh3.googleusercontent.com/-c29oH-u94z8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN7l2524-5GoJX6eHXGR1NJIv9ZXQ/photo.jpg,"Free options are hard to find and bundled with pro version, can't open free without ad for pro version literally clicked one thing after opening your app for the first time and it instantly went to a pop up of the pro version, I'm not going to navigate your app to find only the free options that are given to me bundled in with the pro versions when there are other apps that are available that never mention pro version which I downloaded",1,0,2.5,2018-10-30 16:07:33,"Hi, we're sorry you feel that way. For the rest of readers: the power of the app resides on the free version. There are only three pro features and none of them is essential. Thanks.",2018-10-30 18:34:11,most_relevant,com.gmail.jmartindev.timetune +Eddy Burg,https://lh3.googleusercontent.com/a-/AOh14GgpS-HjCo8Cjgi11fRawtrmMAqGaUAQOC-jHrxVyg,"I'd like to give it a 5 star, VERY MUCH. The app is very useful, convenient and easy to use and what's even better is that it allows the user to modify the alarm (sound, icon, etc) as we please that makes it much easier to organize our schedule. But the app no longer works after i've changed my phone, i don't know if the issue is about my phone (i used Mi A1 before and oppo currently) or the app. I've read about the configuration to get the app back to work but to no avail, please help. Ty",1,1,2.6.2,2019-05-23 08:37:47,"Hi. This happens because Oppo devices block background tasks very aggressively, it's not a fault with the app. You just need to find the proper configuration for your model. We have general instructions for Oppo here: https://timetune.help/en/troubleshooting/ But if these instructions are not enough, we recommend to check in Oppo forums. Thanks.",2019-05-23 10:56:53,most_relevant,com.gmail.jmartindev.timetune +Aesynic,https://lh3.googleusercontent.com/a-/AOh14GhB8DSXaRtejBL6A4e0vR_spTyT6a0BdRuChNJsBw,"this app isn't optimized for use, it's just a concept. for example, the alarm plays music but can't be shut off. there's no ""acknowledge alarm"" so if it starts paying music... yeah it never stops. this is only one of many bugs so bad it breaks the app. don't waste your time.",1,1,,2019-04-08 08:28:57,"Hi. The sound stops when you remove the notification from the notification area, please try and tell us. About the other bugs, remember that Huawei devices block background work by default, breaking some apps. You can see how to solve it here: https://timetune.center/troubleshooting/ (you can contact by email if you're open to dialog). Thanks.",2019-04-08 08:45:20,most_relevant,com.gmail.jmartindev.timetune +Arun Mathew,https://lh3.googleusercontent.com/-OPYLWfTp2c0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP3uo0ZvQMEnqFziGKcorOVGaI_EQ/photo.jpg,New update has ruined the app...the reminder option is no longer available with ringtones...why the heck should I keep this app now in my phone... deleting....,1,0,,2020-02-28 03:31:30,"Hi. Reminders were transformed into events, because the behavior was exactly the same. You can achieve the same result (and with ringtones) if you use events. More info: https://timetune.app/reminders-events/",2020-02-28 08:48:19,most_relevant,com.gmail.jmartindev.timetune +Sarah Carling,https://lh3.googleusercontent.com/a-/AOh14Gidrf6rqS98ZkaK7XTqhy2xlfIEsgZIBBi9cCtvs7c,"Cant even get past the first screen. I get a notice that my phone is blocking the app, but there are no instructions in the troubleshooting for my pixel, I've looked all over my settings, there's nothing I can find to change to ""allow"" this app to do something. Frankly I'm dubious that this app somehow needs some extreme level of permissions that no other ever has, especially as it hasnt told me why.",1,62,2.6.5,2019-08-18 15:43:21,"Hi Sarah. In Pixels there should be no need of any special configuration. We have a Pixel 2 and the app runs correctly. Pay special attention to any anti-virus app, cleaner app or battery saver app you might have installed, as those apps may block other apps too. If you can't find the reason, contact us at timetuneapp@gmail.com. We want to help.",2019-08-18 15:59:29,most_relevant,com.gmail.jmartindev.timetune +Mats van den Brink,https://lh3.googleusercontent.com/-gGtpxOrcI8Y/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN0F1ASRLVsN70ywez26hYuck-vkw/photo.jpg,"Programmer does nog work properly. It is changing times and dates on his own. Instead of saving time it is costing me time (and money for the pro version). I ran into this problem a few days after my purchase so i'm not able to get a refund while the app is unreliable, so practically unusuable.",1,9,2.5.3,2019-03-18 13:52:01,Hi. We're sorry you are experiencing problems with the application. Please contact by email at timetuneapp@gmail.com to find what's happening or making a refund if you prefer. Thanks.,2019-03-18 13:58:03,most_relevant,com.gmail.jmartindev.timetune +Subscribe four n0 reason please,https://lh3.googleusercontent.com/a-/AOh14Gg1708SYbWvE6htk4m5rizEKJqmN5VV2UQH_QedJA,"WORST APP EVER! Because there is no reminder bell things, I think there is but it DOESN'T WORK! I can't even remember that I have this app! With reminder thing will be better. I SPENT TWO HOURS TO WRITE MY ROUTINE PLAN, AND I THOUGHT THERE IS REMINDER! IT'S NOT EASY TO USE THIS APP TOO! I AM DELETING THIS USELESS APP IMMEDIATELY! ALARM DOESN'T WORK AT ALL!! HOW DISAPPOINTING. 😠😠",1,2,,2019-08-07 12:38:06,"Hi. This happens because the device is blocking our notifications, it's not the app's fault. In Samsung devices, the usual culprit is the Power Saving Mode, which blocks the app. Other reasons can be an anti-virus app, a cleaner app or a battery savings app. You can see how to solve it here: https://timetune.help/en/troubleshooting/",2019-08-07 13:13:17,most_relevant,com.gmail.jmartindev.timetune +Becca Anne,https://lh3.googleusercontent.com/-eVmKERcedtU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOuZpXCgGVWZqePZc7WJ0wcLfhZ7g/photo.jpg,"The idea is great, and I would have loved this. However I WILL NOT pay to be able to use different routines for different days. This app is nothing more than a way for them to trap you into payment. Don't bother with this one.",1,0,,2019-03-22 12:49:39,"Hi. Unfortunately, you are not correct. You don't need to pay to use different routines in different days. The pro version provides more comfort, but it's not essential. You can use as many routines, reminders, timers and events as you need, in the days you need, for free. Please check the application better before giving an unfair review. Thanks.",2019-03-22 19:46:05,most_relevant,com.gmail.jmartindev.timetune +RanVijay Singh,https://lh3.googleusercontent.com/a-/AOh14GhqOR951O7AvyOZ8T_LEQDPYSfWEEFpo-f1X880Xg,"Bought the pro version, amount got deducted and programer version became accessible. But after sometime its showing that i have to buy the pro version again. Kindly troubleshoot this problem.",1,0,2.5.3,2019-03-11 13:43:34,"Hi, please contact by email at timetuneapp@gmail.com, it's the only way we can help you. Thanks.",2019-03-11 13:52:52,most_relevant,com.gmail.jmartindev.timetune +Haiya Pandya,https://lh3.googleusercontent.com/-vZITjHCO9y0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMxygywuifavJhKEyosKSnjlUi4CA/photo.jpg,bogus app. update isnt working. i was using the same app in past in the same device it was working properly. now i hv updated and its not giving any notification and even status bar is showing the past activities not current.,1,3,2.6,2019-04-06 11:17:38,"Hi, this happens because the device is blocking our background tasks, it's not a fault with the app. You can see how to solve it here: https://timetune.center/troubleshooting/",2019-04-06 11:28:50,most_relevant,com.gmail.jmartindev.timetune +Sandip Biswas,https://lh3.googleusercontent.com/a-/AOh14Gg8pUKvzT5AF6pkUnoMt0Zg96wPiHA47X8bN3IQ,"not very user friendly, atleast for me. the alarm doesnt ring it on only vibrates. i have to put every thing manually, like if its 11 am in the clock it gives me optionts what i m going to do from 12 pm. and even after using it for a week i am not clear how dis format gonna helm me",1,45,2.6.1,2019-04-26 05:36:38,"Hi Sandip. Sorry you're experiencing problems. The problem with the sound is usually a configuration issue. If you contact by email we can help you solve it. About the second problem, we don't fully understand what you mean. If you could give us more details by email or send a screenshot it would help us a lot. Our address is timetuneapp@gmail.com",2019-04-26 07:39:31,most_relevant,com.gmail.jmartindev.timetune +Kathern Addams,https://lh3.googleusercontent.com/a-/AOh14GhRReHv3i7kKaay9ZLlVE0vPpxvJUMQYqOPvAZD,"i hated that you cannot edit certain things. For example when you go to make a schedule there's no option to delete blank slots, no obvious anyway.",1,0,,2019-04-26 15:59:08,"Hi Kathern. Thanks for answering back 👍 Routines show the whole 24 hours of the day (like the day view in a calendar). Blank slots are there to inform you about unused time and cannot be deleted (it's like the empty space on the day view in a calendar). Sorry we didn't make it more obvious. If you have other questions, please let us know. Thanks.",2019-04-26 16:07:56,most_relevant,com.gmail.jmartindev.timetune +Believer Boy,https://lh3.googleusercontent.com/a-/AOh14GhJnCET9GtV84rHM5CoSBF1bD207Zl1Du5n5RozRg,I buy pro version but it features are not given to me,1,0,2.6.7,2019-11-10 15:25:29,"Hi Rakesh. As we explained by email, your purchase was rejected due to a problem in the payment method. Your bank will return your money after a while. Thanks.",2019-11-10 17:07:58,most_relevant,com.gmail.jmartindev.timetune +dzudud bdjdjr,https://lh3.googleusercontent.com/-vLw4ZhlGlMM/AAAAAAAAAAI/AAAAAAAAIq8/AAKWJJMrc4HwLz1s-obCslPun-n3sUGfcA/photo.jpg,"The new version is too complicated to use and I could not find any directions. However, a application with a easier use will be my preference.",1,0,,2019-02-07 03:53:26,"Hi, thank you very much for giving more details. You're right, some things are not fully intuitive yet. Our intention is to make things better in successive versions.",2019-02-07 08:07:29,most_relevant,com.gmail.jmartindev.timetune +Junior,https://lh3.googleusercontent.com/a-/AOh14GjKSGkX16nJzTuM5gi6VPpe-fiWw4Mk4X6jwOHz,Bought the premium version long ago but now it has ad on it.,1,0,,2020-03-23 01:56:26,"Hi, that should not happen at all. Contact us at timetuneapp@gmail.com and we'll solve the problem. Thanks.",2020-03-23 08:58:27,most_relevant,com.gmail.jmartindev.timetune +Lucian Lazar,https://lh3.googleusercontent.com/a-/AOh14GhF9XVTiy5nbQk48rp5BgXF_DSUMmAbLOVNgLnX,"I missed my work today because of your stupid ""weak alarm"" method. This means I've lost some money. Notification reliability should be of paramount importance. If something doesn't work 100%, remove it. Very disappointed. VERY! Edit: I didn't get any warning, nothing. If the other option is the recommended one (which I hate that it adds an alarm icon in the status bar. other apps work without doing this), it doesn't mean the other one IS NOT WORKING. Bad. I'm forced to use the stock alarm for the first event in the morning to be sure, which is very inconvenient",1,0,2.5.1,2018-12-17 11:17:06,"Hi. This is why this setting is under the advanced settings section and it's not marked as recommended. Please don't change an advanced setting if you don't know the side effects. In any case, we'll try to add clearer indications in future versions. Thanks.",2018-12-17 09:39:40,most_relevant,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,The new version is so complicated loved the old one it was simple and easy and quick to use it was perfect,1,0,2.5.1,2018-11-16 10:05:39,Hi. We're open to the possibility of making some adaptations. What's the thing you find most complicated in the new interface? Thanks.,2018-11-16 11:14:15,most_relevant,com.gmail.jmartindev.timetune +Chay Reid,https://lh3.googleusercontent.com/a-/AOh14GjkVoOYwHZ7k8nlKUMJRCcLiCSvXAply5tYUBXsrg,app looks good but does not notify me on my oppo. i foloowed the instructions to fix this however they are outdated so i cannot fix this problem.,1,0,,2019-07-02 05:45:21,"Hi. If our instructions weren't enough, we recommend to check https://dontkillmyapp.com/oppo as well. Apart from this, we recommend to check in Oppo forums for instructions about your specific device model. Please keep in mind that this happens because Oppo is very aggressive when blocking background work, it's not a fault with the app. Thanks.",2019-07-02 08:10:03,most_relevant,com.gmail.jmartindev.timetune +Жанель Кошер,https://lh3.googleusercontent.com/-BH-Wij_ZxOg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPqu453HpXVgnq65KARVI3rSw2ZNg/photo.jpg,It was to difficult and takes a lot of time to create a routine,1,0,,2019-10-10 17:51:48,"Hi, we're really sorry about that. Creating a routine is a bit of work upfront but it pays off really soon once you start to use it. That being said, the project is still growing and more improvements will be added progressively. Thanks for your feedback.",2019-10-10 17:59:26,most_relevant,com.gmail.jmartindev.timetune +Sgt Winnie,https://lh3.googleusercontent.com/a-/AOh14Gg0LoRv2KSqUqHrIdk9KB0j6OOUPSUL2prEinSf,"Very disappointed about the recent update, I had everything work fine till the update scrambled everything.",1,1,2.6,2019-04-02 07:33:23,"Hi! We're open to the possibility of taking some changes back, but we need more details. Please tell us exactly what you didn't like and we'll look into it. Thanks.",2019-04-02 09:42:07,most_relevant,com.gmail.jmartindev.timetune +Christian Dwi Wijaya,https://lh3.googleusercontent.com/a-/AOh14Gj8yoKAkplrDfG6Z8Da4ATMq07Y990w4F6sZxsg830,"The widget doesn't work, it appears only few minutes and then it disappears so I need to add ot manually again",1,0,2.5.1,2018-11-10 08:25:07,"Hi, sorry you're experiencing problems with the widget. We'll try to find a device like yours to make tests.",2018-11-10 16:34:40,most_relevant,com.gmail.jmartindev.timetune +Merry me 2020 D,https://lh3.googleusercontent.com/-uZyZenZRma0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPEnpV6mikffxsjDwTnGR9jR-wJyA/photo.jpg,Hard to understand setup. Could not schedule tasks to weekdays. Does not even show a calendar .,1,3,2.6.2,2019-05-27 00:30:25,"Hi, sorry about that. The application is still growing and some things are not intuitive yet. We strongly recommend to check our guide for beginners here: https://timetune.help/en/getting-started/ Once you get the idea, you'll see it's very easy. Thanks.",2019-05-27 07:18:02,most_relevant,com.gmail.jmartindev.timetune +Simon Williams,https://lh3.googleusercontent.com/a-/AOh14Ginc9DNo0Wicik4EOOK43o3FJ6YO9T-psNkD9gHvQ,"Looks great, alarms don't work. The notifications just don't work on my Motorola G7 plus running Android 9.",1,17,2.6.4,2019-07-12 11:20:42,"Hi. This happens because the device is blocking our background tasks, it's not a fault with the app. You can see how to solve it here: https://timetune.help/en/troubleshooting/",2019-07-12 16:38:07,most_relevant,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Its most timewasting app instead! I downloaded this for schedule n it asks to buy a pro version for it! It should be mentioned first before we dwnld this app!,1,0,,2018-09-26 18:06:26,"This is not true. The pro version is not necessary at all to use the app. You can create as many routines, reminders, timers and events as you need for free. Please be more considerate before giving an unfair review.",2018-09-26 18:46:10,most_relevant,com.gmail.jmartindev.timetune +Nicolae Cobasnean,https://lh3.googleusercontent.com/-ZKL4dBQchfw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPkEg-hIkBJmmCHH2fmtyJWMxxcLA/photo.jpg,I've bought the pro version and after a week it disappeared. disappointing,1,0,,2018-11-13 17:41:23,"Hi Nicolae. As we discussed by email, the problem has been solved. We'd be grateful if you could reflect this in your review. Thanks a lot! 😃",2018-11-13 22:12:38,most_relevant,com.gmail.jmartindev.timetune +Alphy Davis,https://lh3.googleusercontent.com/a-/AOh14Gitb85_hmmsDBCdkL6EpSiPn_OaNEM04Wc3etdRMQ,Doesn't let me add even one item to my day without buying the pro version.,1,0,,2020-03-29 03:07:50,This is not correct. You can add as many routines and events as you need for free. But routines can't be added from the timeline button. Please check this link to see how to use the app for free: https://timetune.help/en/getting-started/,2020-03-29 08:27:16,most_relevant,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,some thing is comming in front if screen and interepting. app is not runs in notification bar,1,0,,2018-12-24 06:53:29,"Hi. This happens because the device is blocking our background work, it's not a fault with the app. You can find how to solve it here: https://timetune.center/troubleshooting/",2018-12-24 09:36:04,most_relevant,com.gmail.jmartindev.timetune +Avantika,https://lh3.googleusercontent.com/a-/AOh14GhME8rML-1MdiLD7UB6TNEm8VvKh32piZDqYrrrAg,I got just scam. Rs. 200 for pro version. Nothing happened. Good times.😒,1,0,,2020-02-02 18:16:21,Please contact us at timetuneapp@gmail.com and we'll solve the problem or make a refund if you prefer. But please don't leave a bad rating before asking for help. Thanks.,2020-02-02 20:02:15,most_relevant,com.gmail.jmartindev.timetune +Ravi kumar,https://lh3.googleusercontent.com/a-/AOh14GiISSWU5VjvI5jJEx4w0OH_dmJ-AXzGWzS6cbXw3A,Don't know how to use it because many icon were showing to upgrade to new version popups.,1,1,2.4.4,2018-09-26 06:56:11,"Hi. There are only three pro features and the message only appears if you try to access one of them. Besides, none of these features is essential. The power of the app resides on the free version. You can check how it works here: https://timetune.center/android-help/",2018-09-26 08:41:31,most_relevant,com.gmail.jmartindev.timetune +Deepak Takwal,https://lh3.googleusercontent.com/a-/AOh14Ggg-UI5xpX23wo_3p756PkjcvVX6cMoHDAHb_DZ,Hi have been looking for a app which remind me each and every hour because I'm a student and I need a that kind of app but in your application this feature is not available... 😒😒😔,1,0,2.5.1,2018-12-24 04:17:27,"Hi Deepak. You can already do this with TimeTune if you create a 1-day routine with an activity every hour. As an added bonus, you can have different sounds for each notification or add a voice message to them. Please try it and tell us what you think. Thanks.",2018-12-24 09:34:22,most_relevant,com.gmail.jmartindev.timetune +A7,https://lh3.googleusercontent.com/-OS2Pc1xMKEc/AAAAAAAAAAI/AAAAAAAACbc/AAKWJJPioF_dgQHBmiIjuRuPX3TsOg7BPA/photo.jpg,"bad, the reminders not working many times trouble shooting",1,0,2.6.5,2019-08-23 18:24:24,"Hi, this happens because Xiaomi added additional controls to block applications and save battery, it's not a fault with the app. If you already checked https://timetune.help/en/troubleshooting/ and https://dontkillmyapp.com/, we strongly recommend to search in Xiaomi forums for instructions about your specific device. Thanks.",2019-08-23 21:00:53,most_relevant,com.gmail.jmartindev.timetune +Matt Dee,https://lh3.googleusercontent.com/a-/AOh14Gh6fkmve_lrp-tFuB0rIV8h1-4H_3l4_o_g4jYvMg,Can't buy pro version on note 9? Apparently in app billing is not available on my device? Guess I can't give you my money...,1,0,2.5.3,2019-03-16 13:03:34,"Sorry about that, Matt. We want to help, but we need more details. When you have a moment, please click on 'Settings / Advanced / Send technical report'. The technical report will help us find what's happening. Thanks.",2019-03-16 16:54:34,most_relevant,com.gmail.jmartindev.timetune +Alyssa Williams,https://lh3.googleusercontent.com/-wcZHfIAAnho/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO1XqQXdPnPJL-HoBCDirLTLZsqAQ/photo.jpg,"Not user friendly at all, they definitely need to work on the user experience.",1,0,,2019-10-04 01:29:56,"Sorry about that, Alyssa. We'd really like to know more details about the things you found difficult so we can improve them. Thanks.",2019-10-04 06:56:11,most_relevant,com.gmail.jmartindev.timetune +Hemant Hinduja,https://lh3.googleusercontent.com/a-/AOh14GgUynt-oL6no-jXM9mXqSUGg7KfDtZ9-KofSnDopnQ,not easy to use....always begging to buy pro version.,1,0,,2019-12-03 01:06:38,"Hi, remember that you don't need to pay to use the app. You can use as many routines, reminders and events as you need for free. But we need to make the Pro option clear because it's the only way to keep going. About not being easy to use, our intention is to simplify things in future updates. Thanks for your understanding.",2019-12-03 08:03:19,most_relevant,com.gmail.jmartindev.timetune +Johnson Joseph,https://lh3.googleusercontent.com/-NlEKA2xyo-8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOS4c00pQWS2DqvQmtwGUxxECndYg/photo.jpg,"It will ruin your plan, you are going to waste your time customizing it. Downloading this app will increase your screen time and degrade your efficiency.",1,0,,2018-11-25 14:24:39,"Hi, we're sorry you feel that way. To the rest of readers: please judge by yourselves and tell us your suggestions, we really want to help and improve the app.",2018-11-25 14:38:54,most_relevant,com.gmail.jmartindev.timetune +Dark Last,https://lh3.googleusercontent.com/-byVcndqYaOw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNnTMoGBrXH1i6Q07PD9dCu4_vKlQ/photo.jpg,"""removed support for google drive backups""",1,0,,2019-04-30 18:16:11,"Hi, sorry about that. Please understand that this is a restriction imposed by Google (https://timetune.center/goodbye-drive-backups/), it's not our decision. Our intention is to add automatic cloud backups with Cloud Firestore (a much more powerful solution) in a future version. Thanks for your understanding.",2019-04-30 18:19:18,most_relevant,com.gmail.jmartindev.timetune +Syed Mujtaba Razvi,https://lh3.googleusercontent.com/a-/AOh14Gh8zhlfJymbSJTLOvBJu5T2HTmjL3XVudAK87v07g,why you changed layout to old one..its really bad and annoying.,1,0,2.6 BETA 3,2019-06-16 04:37:03,"Hi Syed. Sorry about that. In the last survey we showed in the app, the vast majority of users preferred to go back to horizontal days (https://timetune.center/horizontal-days/). However, we may explore other possibilities in the future. Thanks.",2019-06-16 06:38:26,most_relevant,com.gmail.jmartindev.timetune +lara collins,https://lh3.googleusercontent.com/-VLKfxy_BaMc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPPKsHIpnCMcOAOqWDHdp7ng_ONMQ/photo.jpg,Way to confusing to use the tutorial didnt help at all,1,1,,2019-08-21 23:14:17,"Hi, sorry about that. You can find a more detailed guide here: https://timetune.help/en/getting-started/ Once you get idea, you'll see it's very easy. Apart from that, if you tell us which parts you found confusing, it will help us a lot to improve the app. Thanks.",2019-08-22 08:01:03,most_relevant,com.gmail.jmartindev.timetune +prince pawar,https://lh3.googleusercontent.com/-rjoewjVp6VM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNbibgK7_U5x3K8Rt_Q2Bh3DSsGyw/photo.jpg,It's notification tune is frequency low,1,0,,2018-09-19 17:17:46,"Hi. If you are referring to the volume of the notification, the app uses the volume level defined in the system settings. Apart from this, you can try different output channels too (TimeTune Settings / Notifications / Output channel). If you were referring to a different thing, please give more details. Thanks.",2018-09-19 17:30:17,most_relevant,com.gmail.jmartindev.timetune +Atanu Deka,https://lh3.googleusercontent.com/a-/AOh14Gh13bUxPMnbKrKeLYYV6v1uVbR1iuGYk8zQ1v-X,Play tune does not work on gionee,1,0,2.5,2018-10-01 00:50:15,"This happens because Gionee devices block background tasks by default, it's not a fault with the app. You can see how to solve it here: https://timetune.center/troubleshooting/",2018-10-01 08:42:01,most_relevant,com.gmail.jmartindev.timetune +yash Sharma,https://lh3.googleusercontent.com/-C1qzFex9SJ0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM8_LdwKO6-Gara4Ur6iesLdX2yRg/photo.jpg,Oohh im very hardly managing it and its a disgusting app just a waste of time. Also it is not uninstalling.,1,0,2.6.5,2019-09-18 03:59:56,"Hi. Unfortunately, if you don't give us more details there's nothing we can do to make the application better for you. Please let us know what things you didn't like and we'll make them better. Thanks.",2019-09-18 20:03:08,most_relevant,com.gmail.jmartindev.timetune +Ash coz,https://lh3.googleusercontent.com/-iuWnLfXLhII/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOAintX-XkI6TcX0H01a3qJ-EbEyg/photo.jpg,i really didn't understand the interface and its too complicated ...,1,2,2.6.4,2019-07-15 20:54:20,"Hi, sorry about that. We are currently working on an integrated tutorial. Meanwhile, please check our guide for beginners here: https://timetune.help/en/getting-started/ Once you get the idea, you'll see it's very easy. Thanks.",2019-07-15 21:01:03,most_relevant,com.gmail.jmartindev.timetune +PARVEZ khan,https://lh3.googleusercontent.com/a-/AOh14GjC_yRDsGjHYmyWJfkM-57FkH6dR366jKtn8RLcrg,"what is the use of this app if it can not show notification with sound, also can not alert me when i m buzy in others chaos.",1,0,2.5.3,2019-01-12 14:49:46,"Hi. This happens because Xiaomi devices block background tasks by default, it's not a fault with the app. You can see how to solve it here: https://timetune.center/troubleshooting/#brands",2019-01-12 17:19:20,most_relevant,com.gmail.jmartindev.timetune +Fazle World,https://lh3.googleusercontent.com/a-/AOh14Gg9YhDPT6q7OnHGsTilrhrnx6bxLBvwyG6OFnnP,At the features are premium 😐,1,0,2.8,2020-03-30 20:14:47,This is not true. You don't need to pay to use the app. There are only three premium features and none of them is essential. Please check how to use the app in the following link: https://timetune.help/en/getting-started/,2020-03-30 21:10:05,most_relevant,com.gmail.jmartindev.timetune +Sandy Surratt,https://lh3.googleusercontent.com/-Vp1VRfpxtdQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPWT9wJudsxOGtjJLCWoZIGjglQaA/photo.jpg,"wont synch to calendar, have to buy pro version",1,0,,2019-04-10 05:13:36,"Hi Sandy. Keep in mind that the calendar sync is not necessary to use the application. You can use as many routines, reminders, timers and events as you need for free. Thanks.",2019-04-10 07:49:56,most_relevant,com.gmail.jmartindev.timetune +SP Singh Rathore,https://lh3.googleusercontent.com/a-/AOh14GibGOZEI4g04WekvSRrTaf_iAMtv0wrFI_jctNnyA,sir i already did all step but i still face notification ringing problem.,1,6,2.6.2,2019-06-09 17:34:41,"Hi. Please click on Settings / Advanced / Send technical report, and put your name at the end, so we can know it comes from you. Thanks.",2019-06-09 18:16:02,most_relevant,com.gmail.jmartindev.timetune +Agnė Sinkevičiūtė,https://lh3.googleusercontent.com/a-/AOh14GgQ54S6P08qKr_JdFPEbd_EWdqnGrrFIUDBNhyYcQ,I was looking for a class schedule app and this was not it,1,0,2.7.1,2020-01-28 14:18:31,"Ok, but if you are looking for a different kind of app, how does that make us bad? If you want to purchase a bike, are all cars bad? Please be more careful before hurting developers.",2020-01-28 14:38:45,most_relevant,com.gmail.jmartindev.timetune +the terminator,https://lh3.googleusercontent.com/a-/AOh14Gh4rRoyoiouEs1WmUIPSJtjGR-b2Y9ZwlyzlWPwXQ,Doesn't save my timeline ....have to redo my while schedule now,1,0,2.7.1,2020-02-02 05:01:43,"Hi, remember that you can save your data here: Settings / Backup. Is that what you were looking for?",2020-02-02 08:59:49,most_relevant,com.gmail.jmartindev.timetune +Jorge Gomez,https://lh3.googleusercontent.com/a-/AOh14GjPHuLIWr2ny09hJLvYENTbgUamD-Nld5gSxtHxaA,Not very user friendly. Uninstalled immediately,1,0,,2019-12-28 08:39:14,"Hi Jorge. Sorry about that. We recommend to check our starting guide here: https://timetune.help/en/getting-started/ Once you get the idea, you'll see it's very easy. That being said, our intention is to make things more intuitive in successive releases. Thanks.",2019-12-28 08:46:55,most_relevant,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Interface is not really satisfactory,1,0,2.5.2,2019-01-09 04:19:16,"Hi! We're committed to improving the app. If you tell us the what you didn't like or what you found difficult, we'll look into it. Thanks!",2019-01-09 09:21:13,most_relevant,com.gmail.jmartindev.timetune +KARATE MEANS LIFE,https://lh3.googleusercontent.com/a-/AOh14GjRb4loTJtL0JSUzr_dKX4iRgDRLTKOKTNA-5u-,"there is no time table,this app is fake!",1,0,2.5.3,2019-03-01 09:07:41,"Hi. You can create your timetable using a 7-day routine, like the one we provide by default ('My Routine'). If you were referring to a different thing, please let us know. Thanks.",2019-03-01 09:12:21,most_relevant,com.gmail.jmartindev.timetune +Kesiaman Gaming,https://lh3.googleusercontent.com/a-/AOh14GhZj14u0EwZB37p2iIXMoKlEqsa3LAwSXCV2Omn,can't do anything unless you buy the pro version,1,0,,2019-06-20 17:39:08,"This is not true. There are only three pro feature but none of them is essential. You can use as many routines, reminders, timers and events as you need for free. Please check the application better before giving an unfair review. Thanks.",2019-06-20 18:10:30,most_relevant,com.gmail.jmartindev.timetune +shmack,https://lh3.googleusercontent.com/a-/AOh14GhDoZuIovplq3csHc5G-XvzJqXhHNkJ7h87GpSOJlw,way to confusing to do something simple,1,2,2.6.4,2019-07-14 05:34:11,"Hi, sorry about that. We recommend to take a look at our guide for beginners here: https://timetune.help/en/getting-started/ Once you get the idea, you'll see it's very easy. Thanks.",2019-07-14 07:07:23,most_relevant,com.gmail.jmartindev.timetune +Rutvik Shah,https://lh3.googleusercontent.com/a-/AOh14Gi7dIk8R8A8tdgzZt8lHB-x70ko-8UXi__N5syKTw,not work in my tab Lenovo yoga 3 bed experience 😑😒😞,1,1,2.6.3,2019-06-17 18:40:44,"Hi Rutvik. This happens because Lenovo devices block background work by default, it's not a fault with the app. You can see how to solve it here: https://timetune.help/en/troubleshooting/ and here: https://dontkillmyapp.com/ Additionally, we recommend to check in Lenovo forums as well. Thanks.",2019-06-17 20:37:38,most_relevant,com.gmail.jmartindev.timetune +Robin Wilson,https://lh3.googleusercontent.com/a-/AOh14GgTbqTpiP3mjMAqbJlF9ZR3mMTvbnTsL1LYK3_ESg,the User Interface makes no sense,1,0,,2019-07-05 20:15:43,"Hi, we're sorry about that. But please understand that if you don't give us more details, nothing will change. Tell us which specific things you found confusing and we'll improve them. Thanks.",2019-07-05 22:32:05,most_relevant,com.gmail.jmartindev.timetune +Tanvi Sharma,https://lh3.googleusercontent.com/a-/AOh14Gg8gfEEbuy72tFqy-WgYAdOpxY9hmxdDcgyNTkK,Bekar app at all !,1,0,2.6.6,2019-11-05 01:05:10,"Hi. If you tell us what the problem is, we'll tell you the solution. Thanks.",2019-11-05 08:33:47,most_relevant,com.gmail.jmartindev.timetune +li calvin,https://lh3.googleusercontent.com/a-/AOh14Giz0ppXfCXdiECOCCpeMrr0rC0zJ-TNUplwRzcw,confusing and useless,1,0,2.6.8,2019-12-05 03:56:52,"Hi, we're sorry you didn't like the app. However, the fact that you didn't understand it doesn't mean the app is useless. We strongly recommend to check our guide for beginners (https://timetune.help/en/getting-started/). Once you get the idea, you'll see it's very easy. But our intention is to make the app more intuitive progressively. Thanks.",2019-12-05 09:30:03,most_relevant,com.gmail.jmartindev.timetune +Kousar Sultana,https://lh3.googleusercontent.com/-HdhOX3tO2d0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMg4Ho2Gzn3JMHaBThNPZGV49js3Q/photo.jpg,I was unable to understand anything..... This app is a big mess,1,0,,2020-03-31 11:06:33,"Hi, sorry about that. Please check our starting guide, once you get the idea you'll see it's very easy: https://timetune.help/en/getting-started/",2020-03-31 11:11:02,most_relevant,com.gmail.jmartindev.timetune +عبدالرحمن رمضان عبدالحميد,https://lh3.googleusercontent.com/-yNJ5HVpeprA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO0b4d0t2aYTjWCSF6DQbgbHrnv6g/photo.jpg,has something wrong it takes the routine i created for one day and do it for all days,1,0,,2019-03-10 21:42:51,"Hi! Routines repeat themselves automatically. If you create a 1-day routine, it will repeat every day. We recommend to use a 7-day routine instead, as it will map automatically to the days of the week. More info here: https://timetune.center/android-help/",2019-03-10 21:47:56,most_relevant,com.gmail.jmartindev.timetune +swetha karan,https://lh3.googleusercontent.com/a-/AOh14GjptaO6MGIMnGQABJ856AIDUQqz8hGO1no449lL,Couldn't figure out.,1,0,2.6.7,2019-11-10 15:20:55,"Hi, sorry about that. We recommend to check our starting guide here: https://timetune.help/en/getting-started/ Once you get the idea, you'll see it's very easy. Thanks.",2019-11-10 17:08:48,most_relevant,com.gmail.jmartindev.timetune +googolplex,https://lh3.googleusercontent.com/a-/AOh14Gi0a1muBZVms7JV4qvt9PCcyAOgn_vhybSk6fnt8A,This app is to complicated,1,0,,2018-12-08 14:58:01,"Hi. You can find an easy 'Getting started' guide here: https://timetune.center/android-help/ Once you get the idea, you'll see it's very easy 😃",2018-12-08 17:47:06,most_relevant,com.gmail.jmartindev.timetune +Manash Pratim,https://lh3.googleusercontent.com/-4ezjk9S7F4g/AAAAAAAAAAI/AAAAAAAAwfc/AAKWJJOqieBE1Iz6U34ukhdlSFTvepgvKA/photo.jpg,Premium version only,1,0,,2020-04-03 10:26:49,"This is not true. You don't need to pay to use the app. You can create as many routines and events as you need for free. Apart from that, none of the pro features is essential. You can see how the app works here: https://timetune.help/en/getting-started/",2020-04-03 17:36:57,most_relevant,com.gmail.jmartindev.timetune +Satyam Saraswat,https://lh3.googleusercontent.com/a-/AOh14GhFqqYQOVlKYHtdwSXeeS15AKbT7KSF_4iXqnf1zg,Most of the things are paid,1,0,,2018-11-23 07:14:07,"This is not true. There are only three pro features but none of them is essential. You can use as many routines, timers, reminders and events as you need for free. Please check it better before giving an unfair review.",2018-11-23 21:35:17,most_relevant,com.gmail.jmartindev.timetune +Syed Mohammed,https://lh3.googleusercontent.com/-YOktBprZ5Zs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMzxc5fsd7SExcNYrkn4wEYIRJMVg/photo.jpg,I have not installed it...not sure if it was somehow installed by hacking,1,0,,2018-10-15 21:48:58,"Hi Syed. If we understood correctly, you say the app was in your device but you didn't install it (if we didn't understand it correctly, please let us know). The only thing we can say is that the official way to install the app is manually from the Play Store, and we don't have any agreement with any brand to install the app by default. Thanks.",2018-10-15 21:54:55,most_relevant,com.gmail.jmartindev.timetune +Abuzer Shaikh,https://lh3.googleusercontent.com/-yq0pe_sfk6A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPz6YJK7EyM43BrR6cl9ZxUQXuPEA/photo.jpg,worst app doesn't work,1,0,2.6.4,2019-07-19 07:05:33,"Hi. If you experienced a problem with notifications, you can see how to solve it here: https://timetune.help/en/troubleshooting/ If the problem was another, tell us and we'll solve it, but please don't leave a bad rating without saying what the problem was. Thanks.",2019-07-19 07:10:25,most_relevant,com.gmail.jmartindev.timetune +Thijmen van Kooten,https://lh3.googleusercontent.com/a-/AOh14Gj5-nLG_rj7KuxjzoR78RTL3OTq_c1utvKTv7RwlA,can't even name my tasks,1,1,,2020-02-03 13:25:07,"Hi. If you are looking for a traditional task or to-do application, TimeTune is not what you need. In TimeTune, you assign tags to your blocks of time to indicate what you're doing during that period of time (this allows to show time statistics). That said, you can assign a comment to each block, which essentially works as a name for the block.",2020-02-03 13:39:45,most_relevant,com.gmail.jmartindev.timetune +Austin Mooney,https://lh3.googleusercontent.com/-DlcHcnYhMYk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNMWY-nWkByIi9ysVHLQJ0OWMtxxA/photo.jpg,Not worth it don't buy...,1,0,2.5,2018-10-19 01:16:50,"Hi. You don't need to pay to use the app, the power of the app resides on the free version. But if you bought the pro version and didn't like it, you can contact by email for a refund. There's no problem in that. Thanks.",2018-10-19 08:47:35,most_relevant,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,how to use this? help me please,1,0,2.5.3,2019-02-16 10:31:05,"Hi! You can find a starting guide here: https://timetune.center/android-help/ If after checking the guide you have additional questions, you can contact us at timetuneapp@gmail.com and we'll be happy to help. Thanks!",2019-02-16 10:46:10,most_relevant,com.gmail.jmartindev.timetune +prengifo_06,https://lh3.googleusercontent.com/a-/AOh14GhCnOUt4r6CZ0nec_U73FusoaIYJbqAKxojpboMuw,The most trash app i have ever seen.,1,1,2.5,2018-09-29 06:47:44,Please do not just complain. Tell us the things you didn't like and we'll improve them.,2018-09-29 08:25:07,most_relevant,com.gmail.jmartindev.timetune +french fry,https://lh3.googleusercontent.com/a-/AOh14GiLtaAOJgipb3KbC0E0dDHfdgJoeDioZxDxbxD9,I don't know how I feel,1,0,,2020-02-03 00:40:55,"Hi, what was the problem? Were you looking for a specific kind of application?",2020-02-03 08:41:47,most_relevant,com.gmail.jmartindev.timetune +rebel flamingo,https://lh3.googleusercontent.com/a-/AOh14Ghjkb_d3ru2iFjtAP9v1XpzfL3ITqyOjyxjr752,bruh I literally have no clue how this app works,1,0,2.6,2019-04-08 23:03:59,"Hi. We recommend to take a look at our 'Getting started' guide here: https://timetune.center/android-help/ Once you get the idea, you'll see it's very easy. Thanks!",2019-04-09 07:57:27,most_relevant,com.gmail.jmartindev.timetune +Jason S,https://lh3.googleusercontent.com/-FbBj3jQ9xj8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNfjJWAcWy7Nz458rFqmh4IZ_lv4g/photo.jpg,Impossible to use.,1,0,2.5.1,2018-10-23 06:08:13,"Hi Jason. Keep in mind that the project is still growing. If you tell us what you found difficult, we'll make it better. Thanks! 😃",2018-10-23 08:53:00,most_relevant,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Please tell me how to use the app,1,0,,2019-01-06 18:51:39,"Hi! You can check our 'Getting started' guide here: https://timetune.center/android-help/ (if after checking the guide you have more questions or doubts, please contact by email and we'll help more) 😃",2019-01-06 19:26:57,most_relevant,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,How to restore my pro version?,1,0,,2018-10-06 00:40:44,"Please contact by email, so we can help you better. Thanks.",2018-10-06 08:19:34,most_relevant,com.gmail.jmartindev.timetune +Glenda Kay,https://lh3.googleusercontent.com/a-/AOh14Gj268Nbj1usMS9XGjglUdJ2MzFXHRqcv9SDcWse,not what I wanted. wanted a timeline.,1,8,2.6,2019-03-28 06:49:53,"Hi Glenda. We're sorry the app didn't meet your needs, but we need more details. What kind of timeline do you need? What's different from the timeline we show in TimeTune? Thanks.",2019-03-28 08:43:38,most_relevant,com.gmail.jmartindev.timetune +Subham Jha,https://lh3.googleusercontent.com/a-/AOh14GjDTxttO2laP3GKrzl77cZW6TYYeS3SoSgWgxIfdg,I did not understand,1,0,,2018-12-12 06:59:30,"Hi, Subham. You will find an easy 'Getting started' guide on our help section (https://timetune.center/android-help/). Please take a look, once you get the idea you'll see it's very easy.",2018-12-12 09:04:31,most_relevant,com.gmail.jmartindev.timetune +Tahlia Maria,https://lh3.googleusercontent.com/-rWPyHCLFL_I/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO6rv_owGUoGiwVOEgHST0EP7rRiA/photo.jpg,can I get a refund,1,0,,2019-05-20 12:11:41,"Hi. Yes, you can. Please contact by email at timetuneapp@gmail.com and we'll do it, no problem. However, we'd be grateful if you could tell us the reason for your low rating. It will help us make the app better. Thanks.",2019-05-20 13:33:11,most_relevant,com.gmail.jmartindev.timetune +kundan jawale,https://lh3.googleusercontent.com/a-/AOh14GiVlkpf6hSiovUGNMwwcR5yFiHI80Sm16C1QFGppQ,i have bad experience,1,0,,2019-01-08 17:17:36,"Hi. This happens because Xiaomi devices block background tasks by default, it's not a fault with the app. You can find instructions for Xiaomi here: https://timetune.center/troubleshooting/#brands",2019-01-08 17:35:38,most_relevant,com.gmail.jmartindev.timetune +Brandon Tyson,https://lh3.googleusercontent.com/-prOnMUQpXAQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPvPtA7J1cTD7LwAgrHBjeC_gc63w/photo.jpg,it's an okay app,1,0,2.6.3,2019-06-26 15:19:47,"Hi Brandon. If you think the app is okay, why do you give a low rating? Is there anything you didn't like?",2019-06-26 15:26:29,most_relevant,com.gmail.jmartindev.timetune +Luz Rios,https://lh3.googleusercontent.com/a-/AOh14GjnS78cWq5tfnBxi11KJXxGGf-XzggOusvXZm6SrQ,not user friendly,1,0,2.4.1,2019-05-06 10:29:46,"Hi Luz. We want to improve the application, but we need more details. Please tell us what things you found difficult and we'll improve them. Thanks.",2019-05-06 10:37:44,most_relevant,com.gmail.jmartindev.timetune +GEETAL BARUAH,https://lh3.googleusercontent.com/a-/AOh14GihiAvM5Ok23rfXVDoeQQvQbfrpozp__VXQRzNaTg,I donk like this app anymore,1,0,2.5.1,2018-11-14 08:18:35,"Hi Geetal. Please don't waste this opportunity. Tell us what you don't like and we'll make it better (but if you don't say anything, nothing will change). Thanks.",2018-11-14 15:20:42,most_relevant,com.gmail.jmartindev.timetune +Asme Azam Romel,https://lh3.googleusercontent.com/a-/AOh14Ggmvq49jTdx8GYnikaIOl8cBTcs4ZUcLO737najIA,lose my time :(,1,0,2.5,2018-10-08 07:35:32,"Hi. If you tell us what you expected from the app, we can make it better. Thanks.",2018-10-08 09:17:34,most_relevant,com.gmail.jmartindev.timetune +Manuel Cuevas,https://lh3.googleusercontent.com/-C6ZDD-zFkfA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOyI3T73xlLQO_a9pCPgLEvf18ItQ/photo.jpg,Not really functional,1,0,2.6.5,2019-08-24 03:57:34,"Hi, sorry about that. But the solution is in your hands. Tell us which parts you didn't like and we'll make them better. Thanks.",2019-08-24 07:08:01,most_relevant,com.gmail.jmartindev.timetune +Furkan KTB,https://lh3.googleusercontent.com/a-/AOh14GiBIFt50ukpiCAExmQqKcMY_ziyRPk9g4-bnXfAaQ,"I loved this app so much after I downloaded it and used it for about 2 weeks. Because I loved it so much I decided to purchase the pro full version and payed £4.99. However, it was not worth paying at all. I would have rather used the free version with the ads. I will recommend everyone to download the app and use the free version but dont get the £4.99 ad free version because it doesn't really give you anything extra. I would recommend the creator of the app to add more features for payed.",1,2,2.9,2020-04-04 18:50:50,"Hi. If you contact us at timetuneapp@gmail.com we'll make a refund for you, there's no problem in that. Thanks.",2020-04-05 08:29:16,newest,com.gmail.jmartindev.timetune +Manash Pratim,https://lh3.googleusercontent.com/-4ezjk9S7F4g/AAAAAAAAAAI/AAAAAAAAwfc/AAKWJJOqieBE1Iz6U34ukhdlSFTvepgvKA/photo.jpg,Premium version only,1,0,,2020-04-03 10:26:49,"This is not true. You don't need to pay to use the app. You can create as many routines and events as you need for free. Apart from that, none of the pro features is essential. You can see how the app works here: https://timetune.help/en/getting-started/",2020-04-03 17:36:57,newest,com.gmail.jmartindev.timetune +Kousar Sultana,https://lh3.googleusercontent.com/-HdhOX3tO2d0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMg4Ho2Gzn3JMHaBThNPZGV49js3Q/photo.jpg,I was unable to understand anything..... This app is a big mess,1,0,,2020-03-31 11:06:33,"Hi, sorry about that. Please check our starting guide, once you get the idea you'll see it's very easy: https://timetune.help/en/getting-started/",2020-03-31 11:11:02,newest,com.gmail.jmartindev.timetune +Ashley Vasquez,https://lh3.googleusercontent.com/-4mUw8NVgO80/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOWh5K-k6EqnOS50FS4-bsD5H2uRA/photo.jpg,Terrible app it didn't let me put my whole schedule in and it insisted me to buy the premium version which I'm not going to do 4.99 for an app that doesn't even work that well no thanks bye . And it restarted my whole damn thing like wth bch.,1,0,,2020-03-31 01:08:16,"Hi, you don't need to pay to use the app. You can see how to use the app here: https://timetune.help/en/getting-started/",2020-03-31 09:02:25,newest,com.gmail.jmartindev.timetune +Fazle World,https://lh3.googleusercontent.com/a-/AOh14Gg9YhDPT6q7OnHGsTilrhrnx6bxLBvwyG6OFnnP,At the features are premium 😐,1,0,2.8,2020-03-30 20:14:47,This is not true. You don't need to pay to use the app. There are only three premium features and none of them is essential. Please check how to use the app in the following link: https://timetune.help/en/getting-started/,2020-03-30 21:10:05,newest,com.gmail.jmartindev.timetune +Alphy Davis,https://lh3.googleusercontent.com/a-/AOh14Gitb85_hmmsDBCdkL6EpSiPn_OaNEM04Wc3etdRMQ,Doesn't let me add even one item to my day without buying the pro version.,1,0,,2020-03-29 03:07:50,This is not correct. You can add as many routines and events as you need for free. But routines can't be added from the timeline button. Please check this link to see how to use the app for free: https://timetune.help/en/getting-started/,2020-03-29 08:27:16,newest,com.gmail.jmartindev.timetune +ABHISHEK KUMAR,https://lh3.googleusercontent.com/a-/AOh14Ghszb6ZKBefIc2Uh8mHUnM88T8s_cXVnvoJ90vLqyI,A hidden wonderful music comment and feedback is correct please do it like previous it was,1,0,2.8,2020-03-26 19:41:43,Hi Abhishek. We don't fully understand your feedback. Could you please give more details? Thanks!,2020-03-26 21:57:06,newest,com.gmail.jmartindev.timetune +Junior,https://lh3.googleusercontent.com/a-/AOh14GjKSGkX16nJzTuM5gi6VPpe-fiWw4Mk4X6jwOHz,Bought the premium version long ago but now it has ad on it.,1,0,,2020-03-23 01:56:26,"Hi, that should not happen at all. Contact us at timetuneapp@gmail.com and we'll solve the problem. Thanks.",2020-03-23 08:58:27,newest,com.gmail.jmartindev.timetune +Suhas Tupsamudre,https://lh3.googleusercontent.com/a-/AOh14GidGoY0IiPCjP0D8c1rcMP5ptzRJ01TzxiRswbnmwc,Asking to buy pro version when clicked on new program,1,0,2.8,2020-03-22 13:33:41,"Hi. The Programmer is a premium feature but not an essential one. You don't need it to use the app. Most probably, it's not what you think it is. Please check how to use the app for free here: https://timetune.help/en/getting-started/",2020-03-22 13:50:20,newest,com.gmail.jmartindev.timetune +Abhay Kumar Savita,https://lh3.googleusercontent.com/a-/AOh14GhUN3zIelCpiygDmlbbBlS8Xwyw8YoOq3LvtTjdDA,App not work after purchase...plz dont buy. User Interface not good. Beacuase eralier version is good..,1,0,2.8,2020-03-22 09:22:49,Hi. If you contact us at timetuneapp@gmail.com we'll solve the problem or make a refund if you prefer. Thanks.,2020-03-22 13:44:50,newest,com.gmail.jmartindev.timetune +Amit Potdar,https://lh3.googleusercontent.com/-_gwyHCIrW0g/AAAAAAAAAAI/AAAAAAAAHRc/AAKWJJNzYnKrNgYQ16ukdI5Ii1L4MAVgkg/photo.jpg,Didn't like navigation menu location update,1,0,2.8,2020-03-17 06:27:58,"Hi, why don't you like the bottom navigation menu? Why do you prefer the old one?",2020-03-17 09:13:01,newest,com.gmail.jmartindev.timetune +seyyedmahdi sarfarazi,https://lh3.googleusercontent.com/a-/AOh14Gje2ZAFfaTtXFFdHeg9Gu478XeplOaihr5DF0SF,Terrible,1,0,,2020-03-11 09:31:53,Please don't leave a bad review without explaining the reason. That's very unfair to us. Thanks.,2020-03-11 09:44:16,newest,com.gmail.jmartindev.timetune +Z V L M O H,https://lh3.googleusercontent.com/a-/AOh14GhtQe7GxkKw_ZjnTBcXkonG2V-AgJch-Kj69Q3o5PE,Very bad,1,0,,2020-03-08 09:40:02,Please don't leave a bad comment without explaining the reason. It's very unfair to us. Thanks.,2020-03-08 09:50:28,newest,com.gmail.jmartindev.timetune +DD K. ST. MM.,https://lh3.googleusercontent.com/a-/AOh14GjqQNbqCokMXR-3aijR-XuXrYuAcuDyysdZuXrpBA,too many ads and require to pay for applications that are commonly found in play store.,1,0,2.8,2020-03-04 23:21:10,"Hi, we're sorry you didn't like the app. We only show a small banner at the bottom, but never full-screen ads or interrupting ads. About the payment, remember that you don't need to pay to use the app. None of the premium features is essential, you can use as many routines and events as you need for free. Thanks.",2020-03-05 08:31:20,newest,com.gmail.jmartindev.timetune +Arun Mathew,https://lh3.googleusercontent.com/-OPYLWfTp2c0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP3uo0ZvQMEnqFziGKcorOVGaI_EQ/photo.jpg,New update has ruined the app...the reminder option is no longer available with ringtones...why the heck should I keep this app now in my phone... deleting....,1,0,,2020-02-28 03:31:30,"Hi. Reminders were transformed into events, because the behavior was exactly the same. You can achieve the same result (and with ringtones) if you use events. More info: https://timetune.app/reminders-events/",2020-02-28 08:48:19,newest,com.gmail.jmartindev.timetune +Jared Smith,https://lh3.googleusercontent.com/a-/AOh14GiBg6UZozY7hzHM-KkosDFTn1zPHBmmkJ3F83Retw,"Does not refresh on Samsung phones. I have done every troubleshooting step and more, to no avail.",1,0,,2020-02-10 17:29:12,Hi. Samsung has become much more aggressive with battery management in recent devices. We recommend to check https://dontkillmyapp.com/samsung for different solutions. Please let us know if that worked for you. Thanks.,2020-02-10 17:42:37,newest,com.gmail.jmartindev.timetune +Soumya Kapoor,https://lh3.googleusercontent.com/a-/AOh14Gg6YCczw1v_CgH6grXxt0yujGcA5SHkQb9yh6fQcg,"Pop up stating "" the app has been blocked by the system. Please authorize the app in your device settings. Troubleshooting or refresh background tasks "" is flashing on my device. May I know what is this about?",1,2,2.7.1,2020-02-03 18:59:18,"This happens because OnePlus is very aggressive with battery management and has several controls to block applications, it's not a fault with our app. If you already checked https://timetune.help/en/troubleshooting/ and https://dontkillmyapp.com/ we recommend to check or ask in OnePlus user forums for instructions about your specific device model.",2020-02-03 19:22:02,newest,com.gmail.jmartindev.timetune +Thijmen van Kooten,https://lh3.googleusercontent.com/a-/AOh14Gj5-nLG_rj7KuxjzoR78RTL3OTq_c1utvKTv7RwlA,can't even name my tasks,1,1,,2020-02-03 13:25:07,"Hi. If you are looking for a traditional task or to-do application, TimeTune is not what you need. In TimeTune, you assign tags to your blocks of time to indicate what you're doing during that period of time (this allows to show time statistics). That said, you can assign a comment to each block, which essentially works as a name for the block.",2020-02-03 13:39:45,newest,com.gmail.jmartindev.timetune +french fry,https://lh3.googleusercontent.com/a-/AOh14GiLtaAOJgipb3KbC0E0dDHfdgJoeDioZxDxbxD9,I don't know how I feel,1,0,,2020-02-03 00:40:55,"Hi, what was the problem? Were you looking for a specific kind of application?",2020-02-03 08:41:47,newest,com.gmail.jmartindev.timetune +Avantika,https://lh3.googleusercontent.com/a-/AOh14GhME8rML-1MdiLD7UB6TNEm8VvKh32piZDqYrrrAg,I got just scam. Rs. 200 for pro version. Nothing happened. Good times.😒,1,0,,2020-02-02 18:16:21,Please contact us at timetuneapp@gmail.com and we'll solve the problem or make a refund if you prefer. But please don't leave a bad rating before asking for help. Thanks.,2020-02-02 20:02:15,newest,com.gmail.jmartindev.timetune +the terminator,https://lh3.googleusercontent.com/a-/AOh14Gh4rRoyoiouEs1WmUIPSJtjGR-b2Y9ZwlyzlWPwXQ,Doesn't save my timeline ....have to redo my while schedule now,1,0,2.7.1,2020-02-02 05:01:43,"Hi, remember that you can save your data here: Settings / Backup. Is that what you were looking for?",2020-02-02 08:59:49,newest,com.gmail.jmartindev.timetune +Depression Tear,https://lh3.googleusercontent.com/a-/AOh14GgEdBysICTdDcQzn5OqB2tHjpq8jfwfWJZI7TN4,The tutorial doesn't help and shows you nothing the app is very bad and isn't easy to understand I have given up after wasting time trying to figure this trash out. I wouldn't recommend this to anyone.,1,0,2.7.1,2020-02-01 19:52:17,"Hi, we're sorry you had a bad experience with the app. We're working on several changes to make the app simpler and more intuitive. Please check our new versions from time to time. We'd be happy to have you with us in the future. Thanks.",2020-02-01 21:10:36,newest,com.gmail.jmartindev.timetune +Agnė Sinkevičiūtė,https://lh3.googleusercontent.com/a-/AOh14GgQ54S6P08qKr_JdFPEbd_EWdqnGrrFIUDBNhyYcQ,I was looking for a class schedule app and this was not it,1,0,2.7.1,2020-01-28 14:18:31,"Ok, but if you are looking for a different kind of app, how does that make us bad? If you want to purchase a bike, are all cars bad? Please be more careful before hurting developers.",2020-01-28 14:38:45,newest,com.gmail.jmartindev.timetune +Kai nova,https://lh3.googleusercontent.com/a-/AOh14GgSq5FzYvq81TVPJ8ztuivzfxF9DnrVzD4SxwLN,"The app would be nice if it actually gave you a tutorial on how it should be used. It seems almost like clickbait, with one appealing look and then it's not what you expected or needed. Yes it's very organized and but nothing is explained.",1,0,,2020-01-05 22:55:42,"Hi. Please be so kind to check our starting guide here: https://timetune.help/en/getting-started/ As other users commented, once you check the guide everything becomes clear and the power of the app becomes evident. That being said, we're working on some changes to make the app more intuitive and self-explanatory. Thanks.",2020-01-06 08:46:23,newest,com.gmail.jmartindev.timetune +Jorge Gomez,https://lh3.googleusercontent.com/a-/AOh14GjPHuLIWr2ny09hJLvYENTbgUamD-Nld5gSxtHxaA,Not very user friendly. Uninstalled immediately,1,0,,2019-12-28 08:39:14,"Hi Jorge. Sorry about that. We recommend to check our starting guide here: https://timetune.help/en/getting-started/ Once you get the idea, you'll see it's very easy. That being said, our intention is to make things more intuitive in successive releases. Thanks.",2019-12-28 08:46:55,newest,com.gmail.jmartindev.timetune +Francisco Zúñiga,https://lh3.googleusercontent.com/a-/AOh14GjE7kJUVebwq35iLkcSrpuT5Guydrmji2hoNKU,Pagué por la versión premium y ahora igualmente veo ads en la app... La app no cuenta con respaldos automáticos ni un login al menos decente. Lástima que una app tan buena la estén dejando perder ante el montón de apps de productividad que hay en la store,1,0,,2019-12-25 15:59:40,"Hola. Tal como te hemos comentado por email, los anuncios solamente deben aparecer en la versión libre. Esto nos hace pensar que hay algún problema con la verificación de tu licencia. Colabora con nosotros y solventaremos el problema. Gracias.",2019-12-25 20:27:16,newest,com.gmail.jmartindev.timetune +N Dinesh Kumar,https://lh3.googleusercontent.com/-LfpMcLjPBMg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOAY6WFCzU96JYhcztUSglfIiS7rA/photo.jpg,Worst app dont install,1,0,,2019-12-17 16:56:22,"Hi, we're sorry you didn't like the app. But there's one thing we don't understand: why don't you explain the reason? don't you want us to make the app better for you?",2019-12-17 17:23:31,newest,com.gmail.jmartindev.timetune +Sarah Skinner,https://lh3.googleusercontent.com/-6bxIgGQ1LlE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOSDrsmmN67T80kaieFomm9WS9T_w/photo.jpg,The one thing that made this app better than the others was that it was ad free. Uninstalling.,1,1,2.6.8,2019-12-15 06:23:36,"Hi, sorry about that. Showing ads again has been a difficult decision for us, but the project only can move forward if the economic part works correctly (https://timetune.app/changing-monetization-model/). In any case, it will be an ad at the bottom, not full-screen ads. We're offering the opportunity to go Pro for less price until the end of 2019.",2019-12-15 09:09:24,newest,com.gmail.jmartindev.timetune +Angelica Arnaud,https://lh3.googleusercontent.com/a-/AOh14GgrV5WmTK-hk6mkEb_5dM1N7KcoFCbXdYpxA7AhYQ,"To me its not user friendly. I dont like the question up front before a tour of the app. Its very limited unless you pay for the pro version. I think, when picking a routine or something a bar or something should pop up with options or ideas to choose from.",1,44,2.6.8,2019-12-14 01:41:44,"Hi. Remember that you don't need to pay to use the app. There are only 3 pro feature but none of them is essential. You can use as many routines, reminders and events as you need for free. About not being friendly, our intention is to simplify things progressively in future versions. Thanks for your understanding.",2019-12-14 08:55:45,newest,com.gmail.jmartindev.timetune +Prem Sager,https://lh3.googleusercontent.com/a-/AOh14Gjyb7mTTqTiHT-2UD3ILToVR8oFM4P2s-dS1ZV-tMw,Useless,1,0,2.6.8,2019-12-06 04:01:16,"Hi, we're sorry you didn't like the app. However, the solution is in your hands. If you tell us the reason, we'll make it better. But otherwise, the app cannot improve for you. We hope you understand that your feedback is the only way we can improve the app. Thanks.",2019-12-06 08:53:54,newest,com.gmail.jmartindev.timetune +li calvin,https://lh3.googleusercontent.com/a-/AOh14Giz0ppXfCXdiECOCCpeMrr0rC0zJ-TNUplwRzcw,confusing and useless,1,0,2.6.8,2019-12-05 03:56:52,"Hi, we're sorry you didn't like the app. However, the fact that you didn't understand it doesn't mean the app is useless. We strongly recommend to check our guide for beginners (https://timetune.help/en/getting-started/). Once you get the idea, you'll see it's very easy. But our intention is to make the app more intuitive progressively. Thanks.",2019-12-05 09:30:03,newest,com.gmail.jmartindev.timetune +Hemant Hinduja,https://lh3.googleusercontent.com/a-/AOh14GgUynt-oL6no-jXM9mXqSUGg7KfDtZ9-KofSnDopnQ,not easy to use....always begging to buy pro version.,1,0,,2019-12-03 01:06:38,"Hi, remember that you don't need to pay to use the app. You can use as many routines, reminders and events as you need for free. But we need to make the Pro option clear because it's the only way to keep going. About not being easy to use, our intention is to simplify things in future updates. Thanks for your understanding.",2019-12-03 08:03:19,newest,com.gmail.jmartindev.timetune +Gabriel Napora,https://lh3.googleusercontent.com/-3h22ScqwE6s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPsXZ--ll9VJZEusSD4oEXMBR8m1Q/photo.jpg,This app has started to give me full screen pop up ads,1,6,2.6.6,2019-11-18 00:20:16,This is not true. The app doesn't show pop up ads. We invite you to contact us at timetuneapp@gmail.com and give proof of what you're saying. Please check it better before hurting us. Thanks.,2019-11-18 08:55:14,newest,com.gmail.jmartindev.timetune +Believer Boy,https://lh3.googleusercontent.com/a-/AOh14GhJnCET9GtV84rHM5CoSBF1bD207Zl1Du5n5RozRg,I buy pro version but it features are not given to me,1,0,2.6.7,2019-11-10 15:25:29,"Hi Rakesh. As we explained by email, your purchase was rejected due to a problem in the payment method. Your bank will return your money after a while. Thanks.",2019-11-10 17:07:58,newest,com.gmail.jmartindev.timetune +swetha karan,https://lh3.googleusercontent.com/a-/AOh14GjptaO6MGIMnGQABJ856AIDUQqz8hGO1no449lL,Couldn't figure out.,1,0,2.6.7,2019-11-10 15:20:55,"Hi, sorry about that. We recommend to check our starting guide here: https://timetune.help/en/getting-started/ Once you get the idea, you'll see it's very easy. Thanks.",2019-11-10 17:08:48,newest,com.gmail.jmartindev.timetune +Zoe Stevens,https://lh3.googleusercontent.com/-jfxkQXqmSpM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM1B7Tep_nWJVEKs1j5a7fe-BJUXA/photo.jpg,🙄🙄🙄,1,0,,2019-11-09 03:25:54,"Hi, we're sorry you didn't like the app. But we're open to suggestions. If you tell us the reason we'll look into it. Thanks.",2019-11-09 09:05:28,newest,com.gmail.jmartindev.timetune +Tanvi Sharma,https://lh3.googleusercontent.com/a-/AOh14Gg8gfEEbuy72tFqy-WgYAdOpxY9hmxdDcgyNTkK,Bekar app at all !,1,0,2.6.6,2019-11-05 01:05:10,"Hi. If you tell us what the problem is, we'll tell you the solution. Thanks.",2019-11-05 08:33:47,newest,com.gmail.jmartindev.timetune +ICatheraTashaI,https://lh3.googleusercontent.com/-8tz7d5l1OlI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMxpV11x4rpeFXcPM-5zX-ba2GJWg/photo.jpg,"Too difficult to figure out how to set up, can't add times to daily routines. This app is a waste of space.",1,23,2.6.6,2019-11-02 02:53:49,"Hi, we're sorry you didn't like the app. Routines are already based on specific times, so we don't fully understand what you need. We invite you to contact us at timetuneapp@gmail.com and give us more details. We want to make the app better for your needs. Thanks.",2019-11-02 09:28:54,newest,com.gmail.jmartindev.timetune +Balentino Bonifacio,https://lh3.googleusercontent.com/a-/AOh14GhjRf8sZxyDREgT3BAeTBhJemCAZh-LBUoABTg06g,Hello. The app keeps disappearing from my notifications. I already allowed notification access and persistent notification on my settings. I also whitelisted the app on my battery saver but it still doesn't work. Help please 🙏,1,0,2.6.6,2019-10-17 15:16:19,Hi. Some brands are very aggressive with battery management and they include too many blocking controls. If you already checked https://timetune.help/en/troubleshooting/ and https://dontkillmyapp.com/ we strongly recommend to check or ask in user forums from your brand for specific steps about your device model. Thanks.,2019-10-17 16:13:57,newest,com.gmail.jmartindev.timetune +Жанель Кошер,https://lh3.googleusercontent.com/-BH-Wij_ZxOg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPqu453HpXVgnq65KARVI3rSw2ZNg/photo.jpg,It was to difficult and takes a lot of time to create a routine,1,0,,2019-10-10 17:51:48,"Hi, we're really sorry about that. Creating a routine is a bit of work upfront but it pays off really soon once you start to use it. That being said, the project is still growing and more improvements will be added progressively. Thanks for your feedback.",2019-10-10 17:59:26,newest,com.gmail.jmartindev.timetune +Virendra Walke,https://lh3.googleusercontent.com/-ejfvz9PHp8M/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNu4RFvel7ufvj2zMftUN2aKASFTQ/photo.jpg,Very bad app,1,0,,2019-10-07 15:42:10,"Sadly, the solution is in your hands, not ours. If you tell us what the problem is, we'll solve it. But otherwise, there's nothing we can do. We hope you understand that we can only improve the app if you give us more details. Thanks.",2019-10-07 16:56:18,newest,com.gmail.jmartindev.timetune +Sterling Beauchamp,https://lh3.googleusercontent.com/-iTZD5e0pduU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOC6YZOU8eS_XT9HuYbylghzspPvQ/photo.jpg,hard to use,1,0,2.6.5,2019-10-04 19:18:01,"Hi, sorry about that. The app is still growing and we're polishing things step by step. That being said, we'd be grateful if you could give more details. Knowing which parts you found more difficult would help a lot. Thanks.",2019-10-04 20:04:27,newest,com.gmail.jmartindev.timetune +Alyssa Williams,https://lh3.googleusercontent.com/-wcZHfIAAnho/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO1XqQXdPnPJL-HoBCDirLTLZsqAQ/photo.jpg,"Not user friendly at all, they definitely need to work on the user experience.",1,0,,2019-10-04 01:29:56,"Sorry about that, Alyssa. We'd really like to know more details about the things you found difficult so we can improve them. Thanks.",2019-10-04 06:56:11,newest,com.gmail.jmartindev.timetune +Batuhan Gürsel,https://lh3.googleusercontent.com/a-/AOh14GhLUbIA0-cjvLhRGeCSF0-0hZhY9pfttp4aq40EUQ,Terrible,1,0,2.6.5,2019-09-30 23:40:23,"Hi, we're sorry you feel that way. However, the solution is in your hands. Tell us what the problem is and we'll solve it. Everybody will benefit from your feedback. Thanks.",2019-10-01 08:19:45,newest,com.gmail.jmartindev.timetune +Jyoti Pali,https://lh3.googleusercontent.com/-NK9ZTSs6ZCw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMg7JTEP7rRoP32GWNpTTewGCCh1Q/photo.jpg,Very bad,1,0,,2019-09-21 03:50:53,"Hi, we're sorry you didn't like the app. However, the solution is completely in your hands. Tell us what the problem is and we'll solve it. Thanks.",2019-09-21 06:36:29,newest,com.gmail.jmartindev.timetune +yash Sharma,https://lh3.googleusercontent.com/-C1qzFex9SJ0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM8_LdwKO6-Gara4Ur6iesLdX2yRg/photo.jpg,Oohh im very hardly managing it and its a disgusting app just a waste of time. Also it is not uninstalling.,1,0,2.6.5,2019-09-18 03:59:56,"Hi. Unfortunately, if you don't give us more details there's nothing we can do to make the application better for you. Please let us know what things you didn't like and we'll make them better. Thanks.",2019-09-18 20:03:08,newest,com.gmail.jmartindev.timetune +t Mukane,https://lh3.googleusercontent.com/-FE_vz_TrEBo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP-Mz03kMwvQS2LBltQoy-m1Qz0Vg/photo.jpg,Nic,1,1,2.6.5,2019-09-11 04:54:38,"Hi. The solution to the problem lies in your hands. Tell us what the problem is and we'll solve it. But if you don't explain it, we cannot do anything for you. Thanks.",2019-09-11 08:43:19,newest,com.gmail.jmartindev.timetune +Manuel Cuevas,https://lh3.googleusercontent.com/-C6ZDD-zFkfA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOyI3T73xlLQO_a9pCPgLEvf18ItQ/photo.jpg,Not really functional,1,0,2.6.5,2019-08-24 03:57:34,"Hi, sorry about that. But the solution is in your hands. Tell us which parts you didn't like and we'll make them better. Thanks.",2019-08-24 07:08:01,newest,com.gmail.jmartindev.timetune +A7,https://lh3.googleusercontent.com/-OS2Pc1xMKEc/AAAAAAAAAAI/AAAAAAAACbc/AAKWJJPioF_dgQHBmiIjuRuPX3TsOg7BPA/photo.jpg,"bad, the reminders not working many times trouble shooting",1,0,2.6.5,2019-08-23 18:24:24,"Hi, this happens because Xiaomi added additional controls to block applications and save battery, it's not a fault with the app. If you already checked https://timetune.help/en/troubleshooting/ and https://dontkillmyapp.com/, we strongly recommend to search in Xiaomi forums for instructions about your specific device. Thanks.",2019-08-23 21:00:53,newest,com.gmail.jmartindev.timetune +lara collins,https://lh3.googleusercontent.com/-VLKfxy_BaMc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPPKsHIpnCMcOAOqWDHdp7ng_ONMQ/photo.jpg,Way to confusing to use the tutorial didnt help at all,1,1,,2019-08-21 23:14:17,"Hi, sorry about that. You can find a more detailed guide here: https://timetune.help/en/getting-started/ Once you get idea, you'll see it's very easy. Apart from that, if you tell us which parts you found confusing, it will help us a lot to improve the app. Thanks.",2019-08-22 08:01:03,newest,com.gmail.jmartindev.timetune +Sarah Carling,https://lh3.googleusercontent.com/a-/AOh14Gidrf6rqS98ZkaK7XTqhy2xlfIEsgZIBBi9cCtvs7c,"Cant even get past the first screen. I get a notice that my phone is blocking the app, but there are no instructions in the troubleshooting for my pixel, I've looked all over my settings, there's nothing I can find to change to ""allow"" this app to do something. Frankly I'm dubious that this app somehow needs some extreme level of permissions that no other ever has, especially as it hasnt told me why.",1,62,2.6.5,2019-08-18 15:43:21,"Hi Sarah. In Pixels there should be no need of any special configuration. We have a Pixel 2 and the app runs correctly. Pay special attention to any anti-virus app, cleaner app or battery saver app you might have installed, as those apps may block other apps too. If you can't find the reason, contact us at timetuneapp@gmail.com. We want to help.",2019-08-18 15:59:29,newest,com.gmail.jmartindev.timetune +Subscribe four n0 reason please,https://lh3.googleusercontent.com/a-/AOh14Gg1708SYbWvE6htk4m5rizEKJqmN5VV2UQH_QedJA,"WORST APP EVER! Because there is no reminder bell things, I think there is but it DOESN'T WORK! I can't even remember that I have this app! With reminder thing will be better. I SPENT TWO HOURS TO WRITE MY ROUTINE PLAN, AND I THOUGHT THERE IS REMINDER! IT'S NOT EASY TO USE THIS APP TOO! I AM DELETING THIS USELESS APP IMMEDIATELY! ALARM DOESN'T WORK AT ALL!! HOW DISAPPOINTING. 😠😠",1,2,,2019-08-07 12:38:06,"Hi. This happens because the device is blocking our notifications, it's not the app's fault. In Samsung devices, the usual culprit is the Power Saving Mode, which blocks the app. Other reasons can be an anti-virus app, a cleaner app or a battery savings app. You can see how to solve it here: https://timetune.help/en/troubleshooting/",2019-08-07 13:13:17,newest,com.gmail.jmartindev.timetune +Bachpan ki Yade,https://lh3.googleusercontent.com/a-/AOh14GhLuRUvstHd2aOJre4BYF1HBQfkTBNpQAAIDUx3pg,Bad,1,0,,2019-08-03 05:23:58,"Hi, we're sorry you didn't like the app. But keep in mind that if you don't explain the reason, nothing will change. Tell us why you didn't like the app and we'll make it better. Thanks.",2019-08-03 07:39:48,newest,com.gmail.jmartindev.timetune +ABDUL LATHEEF,https://lh3.googleusercontent.com/a-/AOh14Ghyjnm5t1IySC-cMLlG7JfLhokZN6paBetTUU0VFw,bad,1,0,,2019-08-03 02:28:51,"Hi, we're sorry you didn't like the app. But keep in mind that if you don't explain the reason, nothing will change. Tell us why you didn't like the app and we'll make it better. Thanks.",2019-08-03 07:39:33,newest,com.gmail.jmartindev.timetune +bhaskar Ks,https://lh3.googleusercontent.com/a-/AOh14GiO9_MxDlIKpDCYBldpxPGpKu8-626rsaTLBf3M,em app ra bai ardham ai sasthaledhu,1,0,,2019-07-26 17:45:26,Please send a screenshot of the issue at timetuneapp@gmail.com and we'll help. Thanks.,2019-07-26 19:57:07,newest,com.gmail.jmartindev.timetune +fathima nuskiya,https://lh3.googleusercontent.com/a-/AOh14Gjr7Bk_Wa5VV1TcBqhW-4g3al1X_zC9Mpw7VJXo,sobad,1,0,,2019-07-22 20:29:58,"Hi. We're sorry you didn't like the app. However, if you don't give more details nothing will change. Tell us what you expected from the app and we'll make it better. Thanks.",2019-07-22 20:35:06,newest,com.gmail.jmartindev.timetune +Abuzer Shaikh,https://lh3.googleusercontent.com/-yq0pe_sfk6A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPz6YJK7EyM43BrR6cl9ZxUQXuPEA/photo.jpg,worst app doesn't work,1,0,2.6.4,2019-07-19 07:05:33,"Hi. If you experienced a problem with notifications, you can see how to solve it here: https://timetune.help/en/troubleshooting/ If the problem was another, tell us and we'll solve it, but please don't leave a bad rating without saying what the problem was. Thanks.",2019-07-19 07:10:25,newest,com.gmail.jmartindev.timetune +Harikesh Kushawaha,https://lh3.googleusercontent.com/a-/AOh14Ggk-hK-JqVmHuf5nrJMpghy_seMXbYxrqaeW1e8,worst app waste of time,1,0,2.6.4,2019-07-16 15:58:20,"Hi. We're sorry you didn't like the app. But please understand that if you don't give us more details, nothing will change. Tell us why you don't like it and we'll make it better. Thanks.",2019-07-16 16:42:11,newest,com.gmail.jmartindev.timetune +Ash coz,https://lh3.googleusercontent.com/-iuWnLfXLhII/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOAintX-XkI6TcX0H01a3qJ-EbEyg/photo.jpg,i really didn't understand the interface and its too complicated ...,1,2,2.6.4,2019-07-15 20:54:20,"Hi, sorry about that. We are currently working on an integrated tutorial. Meanwhile, please check our guide for beginners here: https://timetune.help/en/getting-started/ Once you get the idea, you'll see it's very easy. Thanks.",2019-07-15 21:01:03,newest,com.gmail.jmartindev.timetune +shmack,https://lh3.googleusercontent.com/a-/AOh14GhDoZuIovplq3csHc5G-XvzJqXhHNkJ7h87GpSOJlw,way to confusing to do something simple,1,2,2.6.4,2019-07-14 05:34:11,"Hi, sorry about that. We recommend to take a look at our guide for beginners here: https://timetune.help/en/getting-started/ Once you get the idea, you'll see it's very easy. Thanks.",2019-07-14 07:07:23,newest,com.gmail.jmartindev.timetune +Simon Williams,https://lh3.googleusercontent.com/a-/AOh14Ginc9DNo0Wicik4EOOK43o3FJ6YO9T-psNkD9gHvQ,"Looks great, alarms don't work. The notifications just don't work on my Motorola G7 plus running Android 9.",1,17,2.6.4,2019-07-12 11:20:42,"Hi. This happens because the device is blocking our background tasks, it's not a fault with the app. You can see how to solve it here: https://timetune.help/en/troubleshooting/",2019-07-12 16:38:07,newest,com.gmail.jmartindev.timetune +Robin Wilson,https://lh3.googleusercontent.com/a-/AOh14GgTbqTpiP3mjMAqbJlF9ZR3mMTvbnTsL1LYK3_ESg,the User Interface makes no sense,1,0,,2019-07-05 20:15:43,"Hi, we're sorry about that. But please understand that if you don't give us more details, nothing will change. Tell us which specific things you found confusing and we'll improve them. Thanks.",2019-07-05 22:32:05,newest,com.gmail.jmartindev.timetune +sreenithy Eswaran,https://lh3.googleusercontent.com/a-/AOh14Gi65zodMenCEBHhRR3VmLQ4z9Vxs2Nr3PIhdvGC2Q,not good worst app,1,0,2.6.4,2019-07-05 12:57:05,"Hi. If you experienced problems with notifications, this happens because Lenovo devices block background tasks by default, it's not a fault with the app. You can see how to solve it here: https://timetune.help/en/troubleshooting/ and here: https://dontkillmyapp.com/lenovo",2019-07-05 22:28:41,newest,com.gmail.jmartindev.timetune +Chay Reid,https://lh3.googleusercontent.com/a-/AOh14GjkVoOYwHZ7k8nlKUMJRCcLiCSvXAply5tYUBXsrg,app looks good but does not notify me on my oppo. i foloowed the instructions to fix this however they are outdated so i cannot fix this problem.,1,0,,2019-07-02 05:45:21,"Hi. If our instructions weren't enough, we recommend to check https://dontkillmyapp.com/oppo as well. Apart from this, we recommend to check in Oppo forums for instructions about your specific device model. Please keep in mind that this happens because Oppo is very aggressive when blocking background work, it's not a fault with the app. Thanks.",2019-07-02 08:10:03,newest,com.gmail.jmartindev.timetune +Brandon Tyson,https://lh3.googleusercontent.com/-prOnMUQpXAQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPvPtA7J1cTD7LwAgrHBjeC_gc63w/photo.jpg,it's an okay app,1,0,2.6.3,2019-06-26 15:19:47,"Hi Brandon. If you think the app is okay, why do you give a low rating? Is there anything you didn't like?",2019-06-26 15:26:29,newest,com.gmail.jmartindev.timetune +Anuj Dahiya,https://lh3.googleusercontent.com/-iTYrxw-DbOU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOFzX3TEcuq1XuGLHjX_VMzItuPUA/photo.jpg,its too complex,1,0,,2019-06-23 16:54:29,"Hi, sorry about that. The app is still evolving and some things are not intuitive yet. We recommend to take a look at our guide for beginners(https://timetune.help/en/getting-started/). Once you get the idea, you'll see it's very easy. Thanks.",2019-06-24 00:03:30,newest,com.gmail.jmartindev.timetune +Kesiaman Gaming,https://lh3.googleusercontent.com/a-/AOh14GhZj14u0EwZB37p2iIXMoKlEqsa3LAwSXCV2Omn,can't do anything unless you buy the pro version,1,0,,2019-06-20 17:39:08,"This is not true. There are only three pro feature but none of them is essential. You can use as many routines, reminders, timers and events as you need for free. Please check the application better before giving an unfair review. Thanks.",2019-06-20 18:10:30,newest,com.gmail.jmartindev.timetune +Rodrigo Hickenbick,https://lh3.googleusercontent.com/a-/AOh14GjF5bbbXk5xkyJPYz_XZc83Qhr3r4PFuIIaOtljlP4,Very confusing,1,1,2.6.3,2019-06-18 18:34:52,"Hi Rodrigo. Sorry about that. The app is still young and some things are not intuitive yet. We recommend to take a look at our guide for beginners here: https://timetune.help/en/getting-started/ Once you get the idea, you'll see it's very easy. Thanks.",2019-06-18 19:03:45,newest,com.gmail.jmartindev.timetune +Rutvik Shah,https://lh3.googleusercontent.com/a-/AOh14Gi7dIk8R8A8tdgzZt8lHB-x70ko-8UXi__N5syKTw,not work in my tab Lenovo yoga 3 bed experience 😑😒😞,1,1,2.6.3,2019-06-17 18:40:44,"Hi Rutvik. This happens because Lenovo devices block background work by default, it's not a fault with the app. You can see how to solve it here: https://timetune.help/en/troubleshooting/ and here: https://dontkillmyapp.com/ Additionally, we recommend to check in Lenovo forums as well. Thanks.",2019-06-17 20:37:38,newest,com.gmail.jmartindev.timetune +Syed Mujtaba Razvi,https://lh3.googleusercontent.com/a-/AOh14Gh8zhlfJymbSJTLOvBJu5T2HTmjL3XVudAK87v07g,why you changed layout to old one..its really bad and annoying.,1,0,2.6 BETA 3,2019-06-16 04:37:03,"Hi Syed. Sorry about that. In the last survey we showed in the app, the vast majority of users preferred to go back to horizontal days (https://timetune.center/horizontal-days/). However, we may explore other possibilities in the future. Thanks.",2019-06-16 06:38:26,newest,com.gmail.jmartindev.timetune +SP Singh Rathore,https://lh3.googleusercontent.com/a-/AOh14GibGOZEI4g04WekvSRrTaf_iAMtv0wrFI_jctNnyA,sir i already did all step but i still face notification ringing problem.,1,6,2.6.2,2019-06-09 17:34:41,"Hi. Please click on Settings / Advanced / Send technical report, and put your name at the end, so we can know it comes from you. Thanks.",2019-06-09 18:16:02,newest,com.gmail.jmartindev.timetune +Merry me 2020 D,https://lh3.googleusercontent.com/-uZyZenZRma0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPEnpV6mikffxsjDwTnGR9jR-wJyA/photo.jpg,Hard to understand setup. Could not schedule tasks to weekdays. Does not even show a calendar .,1,3,2.6.2,2019-05-27 00:30:25,"Hi, sorry about that. The application is still growing and some things are not intuitive yet. We strongly recommend to check our guide for beginners here: https://timetune.help/en/getting-started/ Once you get the idea, you'll see it's very easy. Thanks.",2019-05-27 07:18:02,newest,com.gmail.jmartindev.timetune +Harish purohit,https://lh3.googleusercontent.com/-UlGk1K1nO4s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOP1P_XS4o58keHXj5QzkznbnXERw/photo.jpg,bakwas app,1,0,2.6.2,2019-05-26 08:54:10,"Hi Harish. As we see it, there are two options: A) Give us more details so we can make the app better for you. B) Don't say anything and nothing will change. Which option do you prefer?",2019-05-26 08:58:53,newest,com.gmail.jmartindev.timetune +Eddy Burg,https://lh3.googleusercontent.com/a-/AOh14GgpS-HjCo8Cjgi11fRawtrmMAqGaUAQOC-jHrxVyg,"I'd like to give it a 5 star, VERY MUCH. The app is very useful, convenient and easy to use and what's even better is that it allows the user to modify the alarm (sound, icon, etc) as we please that makes it much easier to organize our schedule. But the app no longer works after i've changed my phone, i don't know if the issue is about my phone (i used Mi A1 before and oppo currently) or the app. I've read about the configuration to get the app back to work but to no avail, please help. Ty",1,1,2.6.2,2019-05-23 08:37:47,"Hi. This happens because Oppo devices block background tasks very aggressively, it's not a fault with the app. You just need to find the proper configuration for your model. We have general instructions for Oppo here: https://timetune.help/en/troubleshooting/ But if these instructions are not enough, we recommend to check in Oppo forums. Thanks.",2019-05-23 10:56:53,newest,com.gmail.jmartindev.timetune +Tahlia Maria,https://lh3.googleusercontent.com/-rWPyHCLFL_I/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO6rv_owGUoGiwVOEgHST0EP7rRiA/photo.jpg,can I get a refund,1,0,,2019-05-20 12:11:41,"Hi. Yes, you can. Please contact by email at timetuneapp@gmail.com and we'll do it, no problem. However, we'd be grateful if you could tell us the reason for your low rating. It will help us make the app better. Thanks.",2019-05-20 13:33:11,newest,com.gmail.jmartindev.timetune +Chetan Joshi,https://lh3.googleusercontent.com/a-/AOh14GheOzitnXSVlxdggy68N6aUxpvhOOw-qb7cy6xRaA,worst app,1,0,2.6.1,2019-05-16 14:33:27,"Hi, we're sorry you didn't like the app. But if you don't tell us the things you didn't like, how can we make it better?",2019-05-16 15:37:13,newest,com.gmail.jmartindev.timetune +cool take chhotu,https://lh3.googleusercontent.com/-SJPRoCUmIwM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPOBPzgOC0CP_cnPvmlynQ6TV4DEg/photo.jpg,bhai very very very very bad asp,1,0,,2019-05-07 03:57:46,"HI, we're sorry you didn't like the app. We're open to the possibility of changing things, but we need more details. Tell us please which things you didn't like and we'll make them better. Thanks.",2019-05-07 07:42:22,newest,com.gmail.jmartindev.timetune +Luz Rios,https://lh3.googleusercontent.com/a-/AOh14GjnS78cWq5tfnBxi11KJXxGGf-XzggOusvXZm6SrQ,not user friendly,1,0,2.4.1,2019-05-06 10:29:46,"Hi Luz. We want to improve the application, but we need more details. Please tell us what things you found difficult and we'll improve them. Thanks.",2019-05-06 10:37:44,newest,com.gmail.jmartindev.timetune +Dark Last,https://lh3.googleusercontent.com/-byVcndqYaOw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNnTMoGBrXH1i6Q07PD9dCu4_vKlQ/photo.jpg,"""removed support for google drive backups""",1,0,,2019-04-30 18:16:11,"Hi, sorry about that. Please understand that this is a restriction imposed by Google (https://timetune.center/goodbye-drive-backups/), it's not our decision. Our intention is to add automatic cloud backups with Cloud Firestore (a much more powerful solution) in a future version. Thanks for your understanding.",2019-04-30 18:19:18,newest,com.gmail.jmartindev.timetune +Kathern Addams,https://lh3.googleusercontent.com/a-/AOh14GhRReHv3i7kKaay9ZLlVE0vPpxvJUMQYqOPvAZD,"i hated that you cannot edit certain things. For example when you go to make a schedule there's no option to delete blank slots, no obvious anyway.",1,0,,2019-04-26 15:59:08,"Hi Kathern. Thanks for answering back 👍 Routines show the whole 24 hours of the day (like the day view in a calendar). Blank slots are there to inform you about unused time and cannot be deleted (it's like the empty space on the day view in a calendar). Sorry we didn't make it more obvious. If you have other questions, please let us know. Thanks.",2019-04-26 16:07:56,newest,com.gmail.jmartindev.timetune +Sandip Biswas,https://lh3.googleusercontent.com/a-/AOh14Gg8pUKvzT5AF6pkUnoMt0Zg96wPiHA47X8bN3IQ,"not very user friendly, atleast for me. the alarm doesnt ring it on only vibrates. i have to put every thing manually, like if its 11 am in the clock it gives me optionts what i m going to do from 12 pm. and even after using it for a week i am not clear how dis format gonna helm me",1,45,2.6.1,2019-04-26 05:36:38,"Hi Sandip. Sorry you're experiencing problems. The problem with the sound is usually a configuration issue. If you contact by email we can help you solve it. About the second problem, we don't fully understand what you mean. If you could give us more details by email or send a screenshot it would help us a lot. Our address is timetuneapp@gmail.com",2019-04-26 07:39:31,newest,com.gmail.jmartindev.timetune +Sandy Surratt,https://lh3.googleusercontent.com/-Vp1VRfpxtdQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPWT9wJudsxOGtjJLCWoZIGjglQaA/photo.jpg,"wont synch to calendar, have to buy pro version",1,0,,2019-04-10 05:13:36,"Hi Sandy. Keep in mind that the calendar sync is not necessary to use the application. You can use as many routines, reminders, timers and events as you need for free. Thanks.",2019-04-10 07:49:56,newest,com.gmail.jmartindev.timetune +rebel flamingo,https://lh3.googleusercontent.com/a-/AOh14Ghjkb_d3ru2iFjtAP9v1XpzfL3ITqyOjyxjr752,bruh I literally have no clue how this app works,1,0,2.6,2019-04-08 23:03:59,"Hi. We recommend to take a look at our 'Getting started' guide here: https://timetune.center/android-help/ Once you get the idea, you'll see it's very easy. Thanks!",2019-04-09 07:57:27,newest,com.gmail.jmartindev.timetune +Aesynic,https://lh3.googleusercontent.com/a-/AOh14GhB8DSXaRtejBL6A4e0vR_spTyT6a0BdRuChNJsBw,"this app isn't optimized for use, it's just a concept. for example, the alarm plays music but can't be shut off. there's no ""acknowledge alarm"" so if it starts paying music... yeah it never stops. this is only one of many bugs so bad it breaks the app. don't waste your time.",1,1,,2019-04-08 08:28:57,"Hi. The sound stops when you remove the notification from the notification area, please try and tell us. About the other bugs, remember that Huawei devices block background work by default, breaking some apps. You can see how to solve it here: https://timetune.center/troubleshooting/ (you can contact by email if you're open to dialog). Thanks.",2019-04-08 08:45:20,newest,com.gmail.jmartindev.timetune +Haiya Pandya,https://lh3.googleusercontent.com/-vZITjHCO9y0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMxygywuifavJhKEyosKSnjlUi4CA/photo.jpg,bogus app. update isnt working. i was using the same app in past in the same device it was working properly. now i hv updated and its not giving any notification and even status bar is showing the past activities not current.,1,3,2.6,2019-04-06 11:17:38,"Hi, this happens because the device is blocking our background tasks, it's not a fault with the app. You can see how to solve it here: https://timetune.center/troubleshooting/",2019-04-06 11:28:50,newest,com.gmail.jmartindev.timetune +Mariam Ms Mariam ms,https://lh3.googleusercontent.com/-HDqbJGEk2-Q/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN9-bYSjZBjnHb9O-21ItRFySuxpw/photo.jpg,hate itt,1,0,,2019-04-05 07:40:58,"Hi, we're sorry to hear that. We're open to making changes, but we need more information. Tell us what you did not like and we'll make it better. Thanks.",2019-04-05 07:57:24,newest,com.gmail.jmartindev.timetune +Shobhit sharma,https://lh3.googleusercontent.com/a-/AOh14GiAaaegazNR1nhkvMacFvJs6ftXXHn_2u3QwJf0nA,not working in my phone,1,0,2.3.1,2019-04-03 12:08:20,"This happens because Oppo devices block background tasks by default, it's not a fault with the app. You can see how to solve it here: https://timetune.center/troubleshooting/",2019-04-03 12:46:55,newest,com.gmail.jmartindev.timetune +Sgt Winnie,https://lh3.googleusercontent.com/a-/AOh14Gg0LoRv2KSqUqHrIdk9KB0j6OOUPSUL2prEinSf,"Very disappointed about the recent update, I had everything work fine till the update scrambled everything.",1,1,2.6,2019-04-02 07:33:23,"Hi! We're open to the possibility of taking some changes back, but we need more details. Please tell us exactly what you didn't like and we'll look into it. Thanks.",2019-04-02 09:42:07,newest,com.gmail.jmartindev.timetune +Glenda Kay,https://lh3.googleusercontent.com/a-/AOh14Gj268Nbj1usMS9XGjglUdJ2MzFXHRqcv9SDcWse,not what I wanted. wanted a timeline.,1,8,2.6,2019-03-28 06:49:53,"Hi Glenda. We're sorry the app didn't meet your needs, but we need more details. What kind of timeline do you need? What's different from the timeline we show in TimeTune? Thanks.",2019-03-28 08:43:38,newest,com.gmail.jmartindev.timetune +Becca Anne,https://lh3.googleusercontent.com/-eVmKERcedtU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOuZpXCgGVWZqePZc7WJ0wcLfhZ7g/photo.jpg,"The idea is great, and I would have loved this. However I WILL NOT pay to be able to use different routines for different days. This app is nothing more than a way for them to trap you into payment. Don't bother with this one.",1,0,,2019-03-22 12:49:39,"Hi. Unfortunately, you are not correct. You don't need to pay to use different routines in different days. The pro version provides more comfort, but it's not essential. You can use as many routines, reminders, timers and events as you need, in the days you need, for free. Please check the application better before giving an unfair review. Thanks.",2019-03-22 19:46:05,newest,com.gmail.jmartindev.timetune +Mats van den Brink,https://lh3.googleusercontent.com/-gGtpxOrcI8Y/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN0F1ASRLVsN70ywez26hYuck-vkw/photo.jpg,"Programmer does nog work properly. It is changing times and dates on his own. Instead of saving time it is costing me time (and money for the pro version). I ran into this problem a few days after my purchase so i'm not able to get a refund while the app is unreliable, so practically unusuable.",1,9,2.5.3,2019-03-18 13:52:01,Hi. We're sorry you are experiencing problems with the application. Please contact by email at timetuneapp@gmail.com to find what's happening or making a refund if you prefer. Thanks.,2019-03-18 13:58:03,newest,com.gmail.jmartindev.timetune +Matt Dee,https://lh3.googleusercontent.com/a-/AOh14Gh6fkmve_lrp-tFuB0rIV8h1-4H_3l4_o_g4jYvMg,Can't buy pro version on note 9? Apparently in app billing is not available on my device? Guess I can't give you my money...,1,0,2.5.3,2019-03-16 13:03:34,"Sorry about that, Matt. We want to help, but we need more details. When you have a moment, please click on 'Settings / Advanced / Send technical report'. The technical report will help us find what's happening. Thanks.",2019-03-16 16:54:34,newest,com.gmail.jmartindev.timetune +RanVijay Singh,https://lh3.googleusercontent.com/a-/AOh14GhqOR951O7AvyOZ8T_LEQDPYSfWEEFpo-f1X880Xg,"Bought the pro version, amount got deducted and programer version became accessible. But after sometime its showing that i have to buy the pro version again. Kindly troubleshoot this problem.",1,0,2.5.3,2019-03-11 13:43:34,"Hi, please contact by email at timetuneapp@gmail.com, it's the only way we can help you. Thanks.",2019-03-11 13:52:52,newest,com.gmail.jmartindev.timetune +عبدالرحمن رمضان عبدالحميد,https://lh3.googleusercontent.com/-yNJ5HVpeprA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO0b4d0t2aYTjWCSF6DQbgbHrnv6g/photo.jpg,has something wrong it takes the routine i created for one day and do it for all days,1,0,,2019-03-10 21:42:51,"Hi! Routines repeat themselves automatically. If you create a 1-day routine, it will repeat every day. We recommend to use a 7-day routine instead, as it will map automatically to the days of the week. More info here: https://timetune.center/android-help/",2019-03-10 21:47:56,newest,com.gmail.jmartindev.timetune +KARATE MEANS LIFE,https://lh3.googleusercontent.com/a-/AOh14GjRb4loTJtL0JSUzr_dKX4iRgDRLTKOKTNA-5u-,"there is no time table,this app is fake!",1,0,2.5.3,2019-03-01 09:07:41,"Hi. You can create your timetable using a 7-day routine, like the one we provide by default ('My Routine'). If you were referring to a different thing, please let us know. Thanks.",2019-03-01 09:12:21,newest,com.gmail.jmartindev.timetune +Muhammad Haseeb Chaudhary,https://lh3.googleusercontent.com/a-/AOh14GipmC2KpZT40o3v-FBJS7UL6AGC21CAkdMhOfGcfQ,bad experience,1,0,,2019-02-23 00:32:27,"If you had problems with notifications, please note that this happens because Oppo devices block background tasks by default, it's not a fault with the app. You can see how to solve it here: https://timetune.center/troubleshooting/ If the problem was different, give us more details and we'll solve it. Thanks.",2019-02-23 08:43:10,newest,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,how to use this? help me please,1,0,2.5.3,2019-02-16 10:31:05,"Hi! You can find a starting guide here: https://timetune.center/android-help/ If after checking the guide you have additional questions, you can contact us at timetuneapp@gmail.com and we'll be happy to help. Thanks!",2019-02-16 10:46:10,newest,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,I found it odd that the app didn't have preset hourly reminders. Most people have habits that require them to do them on specific hours (for example; gyming twice or thrice a day) the app should have a feature on where you can input the exact times in the day when it should remind you Another example of this would be: Reminder: on every Thursdays at 7am and 8pm I should be reminded of (insert habit). Instead it's jungle of toggles that seem to not make sense,1,2,2.5.2,2019-02-08 02:19:32,"Thank you very much for giving more details. What you need can already be achieved with the app (with a routine for example). But you're right, some things are not intuitive. For the moment we recommend to check our 'Getting started' page (https://timetune.center/android-help/) but you can contact by email after this as well. We'll be happy to help",2019-02-08 08:25:05,newest,com.gmail.jmartindev.timetune +dzudud bdjdjr,https://lh3.googleusercontent.com/-vLw4ZhlGlMM/AAAAAAAAAAI/AAAAAAAAIq8/AAKWJJMrc4HwLz1s-obCslPun-n3sUGfcA/photo.jpg,"The new version is too complicated to use and I could not find any directions. However, a application with a easier use will be my preference.",1,0,,2019-02-07 03:53:26,"Hi, thank you very much for giving more details. You're right, some things are not fully intuitive yet. Our intention is to make things better in successive versions.",2019-02-07 08:07:29,newest,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,very bad,1,0,2.5.3,2019-01-28 01:33:50,"Hi, we're sorry to hear you didn't like the application. But if you don't tell why, how can we make it better?",2019-01-28 09:09:16,newest,com.gmail.jmartindev.timetune +Wade Altus,https://lh3.googleusercontent.com/a-/AOh14Gha-h58ty6uQ_ObYXwZluZCezL7XUdzjiFZacAguA,"I've only just started using it and can already tell it has potential. It has a simple UI but very confusing features with next to no instruction on how the features work. I purchased the premium version with the hopes to organise my routines to suit my shift work. But I can't find a way to automatically alternate my routine cycles (if it's even possible), starting the following routine cycle when the previous ends",2,3,2.7.1,2020-01-17 14:30:17,"Hi Wade. You can check our starting guide here: https://timetune.help/en/getting-started/ If after checking the guide you cannot find the way to schedule your routines, please contact us at timetuneapp@gmail.com and we'll gladly help 🙂",2020-01-17 14:50:04,most_relevant,com.gmail.jmartindev.timetune +Robert Turner,https://lh3.googleusercontent.com/a-/AOh14Gizle57pnbWBzrc1qKQieiSR5N-jKCqm4BgnBiq,"Fair enough for ads but now the widget isn't showing anything anymore, it's just blank. I've set up all events and schedule and it's still blank.",2,13,2.7.1,2020-01-25 14:58:46,"Hi, please click on 'Settings / Advanced / Send technical report' and put your name at the end. We'll solve the problem with the widget. Thanks Robert.",2020-01-25 15:59:26,most_relevant,com.gmail.jmartindev.timetune +Ajay Dubeyy,https://lh3.googleusercontent.com/a-/AOh14GjP7auFZvT5vBBB5whNwwvys_qSA275xDuZV4g6SA,Reminders should not be transfered in event section. It was better before to figure out events and remiders separatly.,2,0,2.7.1,2020-02-14 15:02:43,"Hi Ajay. It was a difficult decision for us, but you will understand why we did it here: https://timetune.app/reminders-events/ In any case, we remain open to all possibilities for the future. Thanks for your feedback 👍",2020-02-14 15:21:18,most_relevant,com.gmail.jmartindev.timetune +Akash Kadam,https://lh3.googleusercontent.com/a-/AOh14GhobCVzxwh7UVbT43TRFFM0qYCPOS-8ZpGkrojpgA,How to use this app? 🤔 Very bad experience. Please simplify the process. Nobody wants to take a extra tutorials to use your app to plan our day.,2,0,2.7.1,2020-02-05 02:04:01,"Hi Akash. We're working on several modifications to make the app simpler and more intuitive. Meanwhile, please check our starting guide here: https://timetune.help/en/getting-started/ Once you get the idea, you'll see its easier than it seems. Thanks.",2020-02-05 09:36:27,most_relevant,com.gmail.jmartindev.timetune +Briony Kemp,https://lh3.googleusercontent.com/a-/AOh14GhwVpIn6EQ-vS2AEwagAAndZ5JPyMQH_n0dopn0-BY,Would agree that it isnt very user friendly. Functions seem complicated and too basic at the same time,2,0,2.6.8,2019-12-28 09:36:19,"Hi Briony. You're right, we need to make things more intuitive, and we're working on that. However, we encourage you to check our starting guide (https://timetune.help/en/getting-started/). After getting a couple of concepts, you'll see the app is very powerful. We'd love you to try it. Thanks.",2019-12-28 09:40:32,most_relevant,com.gmail.jmartindev.timetune +Nooh Kibriya,https://lh3.googleusercontent.com/a-/AOh14GjaRaIeHXauGK7vkRr5pJBVOKwmshdpW6A9Ua1gVg,"Please update the app, i want to use the app, but After a day ,alarm is not ringing , i think this app have too much bugs and problems",2,0,2.6.8,2019-12-22 15:48:48,"Hi. The responsible for this problem is Xiaomi, not us. Xiaomi is very aggressive with battery management has a lot of settings to block apps. If you already checked https://timetune.help/en/troubleshooting/ and https://dontkillmyapp.com/ we recommend to check or ask in Xiaomi user forums for instructions about your specific device model. Thanks.",2019-12-22 19:02:30,most_relevant,com.gmail.jmartindev.timetune +Deeksha Chaudhary,https://lh3.googleusercontent.com/a-/AOh14Gi8C6sW5kkaGz0BbDg3IyWF3NQMx8HEoz3AmZOM,"This app is really very good, but notifications aren't working. I tried everything it told me to do but it's still not working.",2,0,2.6.8,2019-11-22 03:13:28,"Hi, remember that Vivo is very aggressive with battery management and they include a lot of controls to block applications. If you already checked https://timetune.help/en/troubleshooting/ and https://dontkillmyapp.com/ we strongly recommend to check or ask in Vivo user forums for instructions about your specific device model. Thanks.",2019-11-22 08:52:37,most_relevant,com.gmail.jmartindev.timetune +Bibi Aqilah,https://lh3.googleusercontent.com/-Fu_ANN3eYv8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPgKWTM8m_bjR3h7VHB94ync9a0Zg/photo.jpg,This tune can make alarm? I set a few alarm is not ringing..,2,0,2.6.8,2019-11-26 04:26:28,"Hi, please contact us at timetuneapp@gmail.com and we'll help you. Thanks.",2019-11-26 08:49:36,most_relevant,com.gmail.jmartindev.timetune +Parmeet Singh,https://lh3.googleusercontent.com/-zfhcp9QHcdM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPte6zm_2gycxbXDYMROzNvI98nWQ/photo.jpg,Useless and time consuming. Got pro version but no option for refund,2,5,2.6.6,2019-10-13 15:42:54,"Hi, we're sorry you didn't like the application. You can contact us at timetuneapp@gmail.com for a refund. Thanks.",2019-10-13 15:48:10,most_relevant,com.gmail.jmartindev.timetune +Krischelle Velasquez,https://lh3.googleusercontent.com/a-/AOh14GiaCHdNHpKr7jPrTmf6bVlEzmuPXgww7AMVzK88FQ,"I would love this app only if the notifications work at all. There were no alarms or notifications or pop ups showing in my Oppo F5. I tried tinkering with the system like what was said in the troubleshooting page so may times, yet nothing worked. Would give 5 if I do not have this issue.",2,0,,2020-02-03 15:42:41,"Hi, please understand that the responsible for this problem is Oppo, not us. Oppo is the one who adds barriers to block applications and claim more battery life. If you already checked the troubleshooting section, we recommend to check https://dontkillmyapp.com/ or search in Oppo user forums for instructions about your specific device model. Thanks",2020-02-03 15:50:38,most_relevant,com.gmail.jmartindev.timetune +vrushabh mankar,https://lh3.googleusercontent.com/a-/AOh14Gj6Aj4jWqyh_aCikdE-du5OEYvIpicDjTznKU_9,I like the way it's present itself but advantage if your not getting any notification ring ......in the system I allowed everything I needed too but still it's not working out,2,0,,2020-04-04 18:28:29,Hi. Oppo devices are very aggressive with battery management and they contain multiple controls to block apps and notifications. If you already checked https://timetune.help/en/troubleshooting/ and https://dontkillmyapp.com/ we strongly recommend to ask in Oppo user forums for instructions about your specific device model.,2020-04-04 18:44:20,most_relevant,com.gmail.jmartindev.timetune +Joniah Wilbee,https://lh3.googleusercontent.com/a-/AOh14Gg6A8wxaXnOgBqmdOIytfeEt4eatlKLS_2_42rmVw,"It is a good idea, but it's not really easy to use.. in fact it's quite complicated :/ I bought premium because they advertised I could set schedules per day, and I can, but not how I had hoped. I recommend to make it simpler by allowing the user to toggle days per schedule in the routine editor, and additionally make any small changes in each individual day.",2,15,2.5,2018-10-01 15:25:56,"Thank you very much for your feedback, we really appreciate it. If you want a refund, please contact by email and we'll do it. There's no problem in that. Thanks.",2018-10-01 16:12:31,most_relevant,com.gmail.jmartindev.timetune +A hidden world of music,https://lh3.googleusercontent.com/a-/AOh14GjFmgHVu9SjLlhBJJUR0GhyHbCaBPDGEAPGkseU,EDIT: Even just an option for the horizontal interface would be great! Thank you for taking my review into consideration! Please please please! Bring back the old horizontal interface. Or at least have an option for it. I used to absolutely love this app and would have rated it 5 stars anyday. But now I find it quite useless.. I understand how it could work for some people but it's definitely not working for everyone (as I've seen in other reviews).,2,16,2.5.3,2019-02-11 00:28:46,"Hi, thank you very much for your feedback. We're evaluating different possibilities, but we need more time to make a decision. Would it work for you if we just added an option for horizontal days in the interface as it is now or are there other things you find difficult since the change?",2019-01-21 10:01:09,most_relevant,com.gmail.jmartindev.timetune +Alex Qxi,https://lh3.googleusercontent.com/a-/AOh14GgdGdwCNvNbKnyJDmpXeMlwkmNue9bSE2QgNhyV3Q,"(edit) Been using it for a while occasionally and every time it feels like a hassle to find what I need to reach within the app.. I only use the routines, no events or reminders, I have a separate app for that, Google Assistant wit a calendar. To add a change to one day it requires a lot of clicking to amend it.. I end up writing down the rest of the day tasks on paper, deleting, amending the times and adding them manually with the new times.. That's counterproductive. I need an easy way to move",2,3,2.6.1,2019-05-22 05:33:16,"Thank you very much for your feedback, Alex. We're evaluating different possibilities for that.",2019-05-22 07:14:54,most_relevant,com.gmail.jmartindev.timetune +Manda Moo,https://lh3.googleusercontent.com/-qiUqN3htPP8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOxv9zVRecTIaT4B_fdeT00EKoyKg/photo.jpg,"Wasn't sure to begin with, as it's not all that user friendly... but how frustrating to take a chance anyway & pay for premium only to have it NOT sync with my Calendars....! Wasn't really any other reason to pay for premium except that.... What a small waste of money; it's of no use to me now! 😒",2,3,2.5.1,2018-11-29 09:15:51,"Hi, about your questions: 1) If you need it, there's a 'Getting started' guide on the help section (https://timetune.center/android-help/). 2) For the moment the calendar sync is from Google Calendar to TimeTune, we'd like to make it both ways in the future. 3) If you need a refund please contact by email, we don't want anybody to waste their money",2018-11-29 09:25:42,most_relevant,com.gmail.jmartindev.timetune +Rayn F.,https://lh3.googleusercontent.com/a-/AOh14Ggd1vPZlsbIBJPQ8au3kjDjPweOo39qBny8P0BM0w,"The new design is atrocious. Before you could swipe left or right to see coinciding days which made for easy comparisons and changes. You can't even scroll back up once the time has passed. Now its just one LONG, CONTINUOUS list. Takes 3 times as long to readjust. Just TERRIBLE. 2 stars until a more usable design is reintroduced.",2,2,2.5.2,2019-01-02 11:04:26,Hi Ryan. Thanks a lot for your feedback 👍 We're open to the possibility of bringing some features back in future versions. For the moment we keep gathering feedback about the new interface in order to make decisions for the future.,2019-01-01 17:30:57,most_relevant,com.gmail.jmartindev.timetune +Nicole,https://lh3.googleusercontent.com/-eSb5RB1QsTY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOrVm7ay-GUFziJ2aa6AJNkTiSrUg/photo.jpg,"Limited unless you buy the full version. I spent time looking around trying to work with the app. A lot of things I tried wanted me to upgrade, which is why I found another.... I feel my review is fair. Sorry.",2,0,,2019-11-07 15:51:05,"As we explained in a previous answer, there are three premium features but none of them is essential. You can use as many routines, reminders, timers and events as you need for free. That being said, we totally respect your opinion. Thanks.",2019-11-07 16:03:12,most_relevant,com.gmail.jmartindev.timetune +Siddharth Gupta,https://lh3.googleusercontent.com/-71iWP9wihNc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPCKtrG4OErpc4jnN6cxd-6OeAfew/photo.jpg,"App is good but the programmer feature is bad. I have created multiple small routines which i want to enable from programmer based on my work meetings for different days. So if I have late meetings on Wed and Fri, I want to enable a separate set of routines for these days. Similarly for weekends. The programmer is allowing for just dates which is not the feature that I bought the pro version for. I want small, reusable routines that I can configure from programmer for days not periods of dates.",2,0,,2019-08-25 21:11:54,"Hi Siddharth. If we understood correctly, you don't need the programmer for that. Since version 2.6.5, you can assign the days of the week to 1-day routines. If you cannot find how to do it or you have a complicated schedule, you can contact us at timetuneapp@gmail.com and we'll show you the best way to achieve it. Thanks.",2019-08-26 08:53:38,most_relevant,com.gmail.jmartindev.timetune +Aleesha Malik,https://lh3.googleusercontent.com/a-/AOh14Gj3rj8-FPk2KzTinDQjKJgtPN9xw53saqB3cn2gJQ,"So it's good. I payed for pro but the issue I'm having is adding my routine to my timeline because whenever I try and add it, it takes me to edit my routine. It's really annoying because I'd like my routine in one clean place. If this is fixed I'd definitely rate it 4 stars",2,0,2.6.5,2019-09-04 20:56:29,"Thanks for your suggestion, Aleesha. Routines are in their own section because they are like templates, and then the timeline reflects how these templates are applied to each day. That being said, we're always open to finding new alternatives, so we'd be grateful if you could give us more details about your approach at timetuneapp@gmail.com, thanks",2019-09-04 21:07:52,most_relevant,com.gmail.jmartindev.timetune +Makiya Mack,https://lh3.googleusercontent.com/a-/AOh14GjohoIY3nBh_m2FxC_xYy_94M3hwQaUzN55_dkWUf4,"I was recommended this app by a friend who loves it. I got the premium version as I expected it to have better features. This app is very confusing to use. I even went to the ""help"" section and was even more confused. I'm very disappointed",2,1,2.5,2018-10-02 01:44:18,"Hi Makiya. We're sorry you feel that way. The project is still young and more improvements will be added progressively. If you need a refund, please contact by email and we'll do it, there's no problem in that.",2018-10-02 08:56:34,most_relevant,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"The minimum timer is 5 mins so useless for me. I had hoped to use this as an exercise timer (I need alternating time countdowns running consecutively e.g. 3m/30s, 3m/1m, 5m/1m) plus a reminder for when my favorite combat sports are on TV. I'll keep looking.",2,1,2.5.3,2019-03-18 23:33:19,"Hi, we're sorry the app didn't meet your needs. Indeed, TimeTune is not intended to be used as an exercise timer. However, keep in mind that the project is still evolving and we're open to new ideas. We take your feedback as a suggestion for this feature. Thanks.",2019-03-19 09:02:16,most_relevant,com.gmail.jmartindev.timetune +Melissa Farthing,https://lh3.googleusercontent.com/a-/AOh14GgeWKm8aamQRKGoN6lCCwbbvVcsy2yg69uvtmaQaw,"Great at first but now it's getting on my nerves. I tried to create a routine for each day of the week. Today is Monday, and for some reason, my Monday routine shows up for tomorrow, Wednesday, Thursday and Friday. I've had daily routines show up on other days over the past week as well. There seems to be a setting where I can change this, but that doesn't seem to do the trick. It shouldn't be this hard to have one daily routine for each day of the week. Uninstalled.",2,0,2.6.5,2019-09-09 12:00:04,"Hi, you can change the repetition days here: Main menu / Routines / click on the routine card sub-menu and select 'Repeat'. If you cannot find the option contact us at timetuneapp@gmail.com and we'll help more. Please be so kind to not give a low rating before asking for help. Thanks.",2019-09-09 20:28:21,most_relevant,com.gmail.jmartindev.timetune +Warzome Gaming,https://lh3.googleusercontent.com/a-/AOh14GgWDvGMATjURi_B-jmLnkS4rCdMwxsu-28HfbY1,"Very bad app. I organised all of my activities, took me 1 hour to complete my planner, then realised that the app automatically sets the time at am, so all my afternoon activities where at the morning, for example if I had to eat at 1pm it said that I had to eat at 1am, so I changed them to pm and suddenly the app errased my whole schedule. WASTING 1 HOUR",2,39,2.6,2019-04-08 17:42:40,"Hi, sorry you're experiencing trouble. The time picker includes a button to select am or pm, do you mean it didn't work correctly? Apart from this, there's an undo option on the top submenu for accidental deletions. We recommend using a long-click and the 'move' option to move activities, as changing the times may lead to undesired overwrites.",2019-04-08 18:10:02,most_relevant,com.gmail.jmartindev.timetune +Sa Me,https://lh3.googleusercontent.com/-ol_nbWawpyk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNZnvjMmROFnLDD5fJOz3C7VmNJXA/photo.jpg,"Android keep blocking the app from sending notifications, I've re-downloaded it and put an exception for it in the battery settings to work without interruption but nothing happens ! FIX IT.",2,0,2.5.1,2018-11-06 12:09:12,"Hi. If the message still appears, something in the system is still blocking the app. Many times it's not enough to put an exception in the battery settings. You may need to assign auto-start permission, prevent the app from being killed when screen is off or pin the app to the list of recent apps. More info: https://timetune.center/troubleshooting/",2018-11-06 13:07:41,most_relevant,com.gmail.jmartindev.timetune +Joyfull Mom006,https://lh3.googleusercontent.com/a-/AOh14GjOgfH9BGZz892P-WAqtGNskiv9GG3YZxtnZTc3IQ,"I've spent hours on it already and I'm just not getting it. Looks like most tutorials are for an older version. Can't figure out how to create shorter than 7 day Routines, what's the difference between a Routine and an Event, etc.",2,2,2.5.2,2019-01-05 14:58:56,"Hi! Please check our 'Getting started' page (https://timetune.center/android-help/), it will help with the basics. If after checking the guide you have more questions, please contact by email at timetuneapp@gmail.com, we're here to help 😃",2019-01-05 21:47:05,most_relevant,com.gmail.jmartindev.timetune +Solomon Hill,https://lh3.googleusercontent.com/-OGRl-NfLn-A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOBK6Kqjp0gpThdRUX_348OXXB_vA/photo.jpg,Nothing special. just a calendar app. not worth the time it takes to set up. clunky at best. poor layout. minimal instructions. not intuitive to use,2,0,,2019-07-30 20:08:56,"Hi, sorry about that. You're right, some things are not intuitive and we need to explain the purpose of the app better. TimeTune is not a calendar app, it's a routine manager with different features. We're preparing a new onboarding tutorial as we speak. Meanwhile, we recommend to check our starting guide: https://timetune.help/en/getting-started/",2019-07-30 21:11:01,most_relevant,com.gmail.jmartindev.timetune +Nathan Coffman,https://lh3.googleusercontent.com/a-/AOh14Gi21YMgelzqFsnbDD2p4nHzxnTnejncUnFCEP4L2g,App cannot keep track of an atypical. Everytime I set the day one it just resets after day 5 back to day one. instead of skipping two days and then 2 day 1 like a normal week would work. I'm deleting this app for sure.,2,0,2.6.5,2019-10-05 14:26:55,"Hi, this is just a misunderstanding on how the app works. Routines repeat in a cyclical way. If you create a 5-day routine, it will repeat every 5 days. But if you want it to repeat like a normal week, just create a normal weekly routine with 7 days, not an atypical routine. Atypical routines are for atypical working shifts (police, nurses, etc).",2019-10-05 16:15:26,most_relevant,com.gmail.jmartindev.timetune +K K,https://lh3.googleusercontent.com/a-/AOh14Gik1WZTr9e5dI05GzpoafEiQcfrGmiEuPYEfccCUg,"Clunky, complicated, and confusing. Not streamlined. Ugly color choice for non pro. Just a disappointment.",2,0,2.5.3,2019-01-16 00:38:54,"Hi, sorry about that. The project is still young and evolving. Meanwhile, in case you want to give it a second chance, you can find basic instructions here: https://timetune.center/android-help/",2019-01-16 09:37:11,most_relevant,com.gmail.jmartindev.timetune +Jacob Hegwood,https://lh3.googleusercontent.com/a-/AOh14GgX6e_FqZj6t2XDwc_FJ4EcRtw4rwPgsgLlVFHLEw,"Not very easy to use. You can figure it out after you play with it long enough, but over all, not very intuitive.",2,0,,2019-07-09 14:27:27,"Hi, Jacob. You're right, the app is still evolving and some things are not intuitive yet. Our intention is to improve things progressively. For the moment, we recommend to take a look at our guide for beginners (https://timetune.help/en/getting-started/). Once you get the idea, you'll see it's very easy. Thanks.",2019-07-09 14:35:29,most_relevant,com.gmail.jmartindev.timetune +Ferd Ferd.D,https://lh3.googleusercontent.com/-VWHU8Owj2UI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO2xEp7ExJCtcRkK1tHhiyJfhqRxQ/photo.jpg,"yeah, this is not user-friendly. there should be some kind of tutorial, this is not the kind of app you can just jump in and start using, which is what I was hoping for.",2,0,,2019-05-03 13:18:59,"Hi, sorry about that. You're right, the app is still young and some things are not intuitive yet. We recommend to take a look at our 'Getting started' guide (https://timetune.help/en/getting-started/). Once you get the idea, you'll see it's very easy. Thanks for your understanding.",2019-05-03 13:22:13,most_relevant,com.gmail.jmartindev.timetune +Sugandh Raj,https://lh3.googleusercontent.com/-2K07qumQWwQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPHhp3aPw05nWczIdXWvfQr4w7bLg/photo.jpg,useless I dont want to purchase the app as this free version offers no good features.. the paid app might be better..Rating 2 just because of the feedback on user review.,2,0,,2019-03-19 09:50:08,"Hi Sugandh. Unfortunately, you are mistaken. There are only three pro features but none of them is essential. You can use as many routines, reminders, timers and events as you need for free. In other words, the core of the app is free. Please be so kind to check the application again, we'll solve any questions you might have. Thanks.",2019-03-19 10:22:34,most_relevant,com.gmail.jmartindev.timetune +wubieful,https://lh3.googleusercontent.com/-QSQsl8R0pfY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMDyIKMnp4w-oeGx_ZMKf2-YLrq7A/photo.jpg,Annoying to set up. You'd think it would be easy to have the exact same same schedule just 30 min later.,2,7,2.6.2,2019-05-29 07:07:18,"Hi. We're sorry you're experiencing problems with the setup. Remember that you can long-click on the times on the left in the routine to advance or delay a group of times at the same time. If this is not what you were referring to, contact us at timetuneapp@gmail.com and give us more details about your specific use case. Thanks.",2019-05-29 07:22:21,most_relevant,com.gmail.jmartindev.timetune +Sushil Raut,https://lh3.googleusercontent.com/a-/AOh14GhY39WCPYF4sjpxnxgX2JVRqr9uGLEfqDQ6zg-P,i had added a routine & by default it took a date almost 8 days ahead from today's date... i m unable to change the date... it's frustrating...,2,0,2.5.2,2019-01-04 18:03:42,Hi Sushil! This surely is a simple adjustment issue. If you contact by email at timetuneapp@gmail.com we'll tell you how to adjust your routine. Thanks.,2019-01-04 18:17:33,most_relevant,com.gmail.jmartindev.timetune +Victoria Singleton,https://lh3.googleusercontent.com/a-/AOh14GiyKaxmsBarD6VxMewI6pg7PfqcmXLuTycXOEi9,"I would give this app 5 stars, but if you press ""silence notifications,"" you can never turn them back on.",2,1,2.5.3,2019-01-14 19:31:41,Hi Victoria! We really think this is just a misunderstanding on how the app works. If you contact by email at timetuneapp@gmail.com we can tell you what's happening. Thanks!,2019-01-14 19:43:26,most_relevant,com.gmail.jmartindev.timetune +KOT RAKO,https://lh3.googleusercontent.com/a-/AOh14GgQZgwpUzbwURNSyfQy0jkFi62CnzCFxmhVOpnbGw,"It is better if don't have Buy pro version, hoping an app free offline soon .",2,0,2.5,2018-10-02 16:17:33,"Hi. You don't need to pay to use TimeTune. We only have three pro features but none of them is essential. You can create as many routines, reminders, timers and events as you need for free. Thanks.",2018-10-02 16:33:07,most_relevant,com.gmail.jmartindev.timetune +amol mahajan,https://lh3.googleusercontent.com/a-/AOh14GgIuIqu57KH0wMj3yn534kBcBMjW9xepv7piKNlGA,statistical data for daily routine and check marks for completed or missed routines are expected,2,0,,2019-02-28 07:58:21,"Hi, thanks for your feedback, Amol. The app is still young but this is a possibility we're considering for future versions.",2019-02-28 08:10:16,most_relevant,com.gmail.jmartindev.timetune +Mr Hamilton,https://lh3.googleusercontent.com/a-/AOh14GhRmY4s3F6y5z76Wd2cpMkGD_clmwoqNeuzgM5iQA,"I was trying out the routine trick. I set the times and dates, but it just wouldn't work. Please help.",2,0,2.6.5,2019-08-28 06:07:15,"Hi, please contact us at timetuneapp@gmail.com and we'll help you. Thanks.",2019-08-28 07:08:28,most_relevant,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,The most recent update just made it harder to move times around.,2,1,2.5,2018-10-11 01:58:33,"Hi, thanks for your feedback. We'll be refining the interface in successive versions. Thanks for your understanding.",2018-10-11 08:30:15,most_relevant,com.gmail.jmartindev.timetune +Vladimir S,https://lh3.googleusercontent.com/a-/AOh14Ghx1c0kXBBZYkjy3TurBJeQQdzRGNE2sB37p2gqOg,Useless without pro.,2,0,2.8,2020-02-25 21:48:53,"Unfortunately, you are mistaken. The premium features are not essential to use the app (don't take our work for it, just check other reviews). It would be a pity, because you're missing the chance to be more productive!",2020-02-25 22:06:50,most_relevant,com.gmail.jmartindev.timetune +Brandon Clubb,https://lh3.googleusercontent.com/-xqjNWKoO7AA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMxX4--DuVWcrU6st4NMbqo3zQCTQ/photo.jpg,the free version is pretty minimal.,2,0,,2019-02-28 17:15:00,"Hi. Unfortunately, this is not correct. On the contrary, the power of the app resides on the free version. There are only three premium features but none of them is essential. As we explain in our description, you can use as many routines, reminders, timers and events as you need for free. Thanks.",2019-02-28 17:21:19,most_relevant,com.gmail.jmartindev.timetune +Crosx,https://lh3.googleusercontent.com/-7jqhrD3bjcI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMbG8ia-fRw_VC9_nE53qNc80bJzA/photo.jpg,there ia no way to go back to the routine old interface? new is ugly,2,0,2.4.4,2019-01-18 16:22:53,"Hi! We're open to the possibility of bringing some features back from the old interface, but we need more details. Could you please tell us which things you find difficult in the new interface? Thanks!",2019-01-18 16:27:05,most_relevant,com.gmail.jmartindev.timetune +Eden Paris,https://lh3.googleusercontent.com/a-/AOh14GjIyzgJOBcBKRKebT_Hjimod5wtA8vjXFN8S2yXUg,Really weird formatting? I'm trying to be MORE organized not get a brain workout trying to figure out an app,2,0,2.5.1,2018-12-12 20:53:36,"Hi. We recommend to take a look at our starting guide (https://timetune.center/android-help/). Once you get the idea, you'll see it's very easy (and useful). However, the app is still young, so if there's a feature or section you find specially difficult please tell us, it would help a great deal. We want the app to be helpful for you and everyone.",2018-12-12 21:23:19,most_relevant,com.gmail.jmartindev.timetune +Girish Palve,https://lh3.googleusercontent.com/-nQQR1BaJWig/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNQz9JBe3lbeGJl8u3O2uRIZigbjg/photo.jpg,osm app but now its update an I am not able to see my all reminders that I use to remind my self before uninstalling the app,2,1,2.6.1,2019-04-24 05:46:10,Hi Girish. Please contact by email at timetuneapp@gmail.com and we'll help you find your reminders. Thanks.,2019-04-24 21:43:53,most_relevant,com.gmail.jmartindev.timetune +Joey Spillers,https://lh3.googleusercontent.com/a-/AOh14Gjs4U1M-JNuh2Utjnvm8iZEA12m9S_cZYaFVIxKnQ,calendar sync for a productivity app is a pro only feature,2,0,,2019-04-07 09:47:09,"Hi Joey. Keep in mind that TimeTune is basically a routine manager. The calendar sync option is not necessary to use the app. However, the project is still evolving and this might change in the future. Thanks.",2019-04-07 09:51:34,most_relevant,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,you basically can't do anything if you don't buy the full version.,2,0,,2019-03-10 06:20:13,"Unfortunately, this is not true. There are only three premium features but none of them is essential. As we explain in our description, you can use as many routines, reminders, timers and events as you need for free. Please check the application better before giving an unfair review. Thanks.",2019-03-10 07:38:58,most_relevant,com.gmail.jmartindev.timetune +Tova Robinson,https://lh3.googleusercontent.com/a-/AOh14GhlvHK8Cb1G5AcKr_FdOUyMZXRYhAhYkdNtMcw9D_c,Everything I wanted it for I had to do the pro mode,2,0,2.5.1,2018-11-21 07:50:50,"Hi Tova. The app is still evolving and the pro features might change. If you tell us which feature you needed, it will help us make decisions. Thanks.",2018-11-21 09:24:04,most_relevant,com.gmail.jmartindev.timetune +Essie Vie,https://lh3.googleusercontent.com/a-/AOh14GiUoDuQEyRg59L2WhFY_novbsl1PW7Zr3snwD0aZw,Has potential but made no sense I didn't know what the hell I was doing needs more explanation and help,2,0,2.6.6,2019-10-10 21:32:29,"Hi, sorry about that. Please check our guide for beginners (https://timetune.help/en/getting-started/) and be so kind to let us know if everything makes more sense after checking it. We're really interested in making the app more intuitive and understandable, but we'd love to get your help. Thank you very much.",2019-10-10 21:52:26,most_relevant,com.gmail.jmartindev.timetune +anna k,https://lh3.googleusercontent.com/a-/AOh14GgTwMy2_I7GddwLf6gsQ1t6yJwZuLd0AgD5XWI7-Q,"im sure the app is nice, but i cannot add a routine, or any activity, nor i can delete anything?",2,0,,2020-01-14 09:31:44,"Hi Anna. Please check our guide for beginners here: https://timetune.help/en/getting-started/ (if you have questions after checking the link, please let us know) 🙂",2020-01-14 09:48:19,most_relevant,com.gmail.jmartindev.timetune +Janet R,https://lh3.googleusercontent.com/a-/AOh14GjHUKanFHoZX-d01DypsNyl1yUqQ9d2ZYDi7JiyaQ,cant move the tasks up or down,2,0,2.5.3,2019-01-27 15:31:32,"Hi Janet! To move an activity up or down, just long click on it and use the arrows that appear on the toolbar. Is this what you were looking for?",2019-01-27 15:45:22,most_relevant,com.gmail.jmartindev.timetune +Azlanistan,https://lh3.googleusercontent.com/a-/AOh14GhOWNhIhK82gB9jkObEgtyVQrtJce5OM1GfkNJZMg,Im still getting accustomed i like the simplicity,2,0,2.6.4,2019-11-16 15:45:30,"Hi, remember to check our guide for beginners here: https://timetune.help/en/getting-started/ If you have additional questions, you can contact us at timetuneapp@gmail.com and we'll help more. Thanks.",2019-11-16 17:12:59,most_relevant,com.gmail.jmartindev.timetune +Sakshi Virani,https://lh3.googleusercontent.com/-Ierh6OoJzRU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN79_eiTD4MfJ8yOBB5Ttd50TCZhA/photo.jpg,how to do so the link is not opening only,2,1,2.6.5,2019-08-08 12:59:59,"Hi. This happens because the device is blocking our background tasks, it's not a fault with the app. You can see how to solve it here: https://timetune.help/en/troubleshooting/ and here: https://dontkillmyapp.com/samsung - Keep an eye on other possible causes like anti-virus apps, cleaner apps or battery saver apps. Thanks.",2019-08-08 08:34:07,most_relevant,com.gmail.jmartindev.timetune +Lucinda Sanchez,https://lh3.googleusercontent.com/a-/AOh14Giwg8KuSvzrVmW3Rnp1bFdIon-5PZtHzqYnISmWGA,I'm so confused and frustrated trying to figure this app out.,2,0,,2019-06-30 09:09:45,"Hi Lucinda. Sorry about that. Please check our guide for beginners here: https://timetune.help/en/getting-started/ Once you get the idea, you'll see it's very easy. Thanks.",2019-06-30 09:13:23,most_relevant,com.gmail.jmartindev.timetune +Giban Banerjee,https://lh3.googleusercontent.com/a-/AOh14GhVVUS10_7E6NnnvnFJPa_FEFKIaaPX5H-VI0Gefw,It's just okay.,2,0,,2020-01-14 02:36:05,Hi. Which features would make it more useful for you?,2020-01-14 08:11:04,most_relevant,com.gmail.jmartindev.timetune +K.Sathyanarayanan narayanan,https://lh3.googleusercontent.com/a-/AOh14GjAapsVr7BErw7O84rQOfhSp3YFKuXwZmeBfSgE,If u want to study you need to plan DON'T USE APPS,2,0,2.5.3,2019-01-24 13:57:39,"Unfortunately, we think you missed the whole point of the app.",2019-01-24 15:06:56,most_relevant,com.gmail.jmartindev.timetune +Matik7,https://lh3.googleusercontent.com/a-/AOh14Gh1HjfJgzRwmiLxq1aFSu0LFHSz-K_hTv-wnusi,Genuinely not a good app.,2,0,2.4.4,2018-09-18 19:55:25,Hi. Explain the reason and we'll make it better. Deal?,2018-09-18 20:45:22,most_relevant,com.gmail.jmartindev.timetune +Benny Ma,https://lh3.googleusercontent.com/-s4d8fIU1SPY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMBYgSicR1wBjntGyeVxV1xNZbYQA/photo.jpg,Don't like the new changes.,2,0,2.5.1,2018-11-26 19:46:16,"Hi. We're still evaluating different options, but we need more details. Which things do you find most difficult in the new interface?",2018-11-26 21:22:25,most_relevant,com.gmail.jmartindev.timetune +Baby Pocky,https://lh3.googleusercontent.com/a-/AOh14GgI5O2kzP66jwPCv4y26Nyaa-SgQa4lWc0-GCuNPg,I didn't know how to do anything..,2,0,,2019-08-13 18:34:19,"Hi, sorry about that. We recommend to check our starting guide here: https://timetune.help/en/getting-started/",2019-08-13 18:38:25,most_relevant,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,how to use bakwas i am vrry an gry,2,0,,2019-01-15 05:13:03,Hi! You can find a starting guide here: https://timetune.center/android-help/,2019-01-15 09:29:56,most_relevant,com.gmail.jmartindev.timetune +Miandad Khabir,https://lh3.googleusercontent.com/a-/AOh14Gheje7h7ughW_Ja1VvgTSsel-PlrWAQhOS0FXbm,i got no notification,2,0,,2019-06-23 08:11:56,"Hi. This happens because Vivo devices block background tasks by default, it's not a fault with the app. We recommend to check our generic instructions here: https://timetune.help/en/troubleshooting/ If our instructions are not enough, we recommend to check or ask in Vivo forums too. Thanks.",2019-06-23 08:51:03,most_relevant,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,good not bad,2,0,2.5.3,2019-02-16 02:17:41,User reported to Google.,2019-02-16 08:42:44,most_relevant,com.gmail.jmartindev.timetune +rohan duggal,https://lh3.googleusercontent.com/-oVdvMnGDWio/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOgN0uhLBUETE_tAhMQk0nKjLIpMw/photo.jpg,Worst,2,0,2.6.5,2019-09-01 14:02:45,"Hi, the solution is in your hands. Tell us what the problem is and we'll solve it. But otherwise, nothing will change. Thanks.",2019-09-01 20:10:47,most_relevant,com.gmail.jmartindev.timetune +rashed ghunaim,https://lh3.googleusercontent.com/-5NcImqcBSD4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNde56hpvTav0I1fVa6OmIVfpu0yw/photo.jpg,Good,2,0,2.6.4,2019-06-29 09:16:10,"Hi. If you think the application is good, why do you give a low rating?",2019-06-29 09:17:37,most_relevant,com.gmail.jmartindev.timetune +nikhil partey,https://lh3.googleusercontent.com/a-/AOh14GjqFC445g9_QhNY6bJdLrXJK6RRdrJhx9QKogsH7g,"Beneficial to get my goal. It's heplful to make discipline and commitments to yourself,it's continually popping up notification that what you have decided according to your time table, over all its Good and helpful for students..!!",2,0,2.6,2019-04-10 15:39:21,"Hi Nikhil. We see you lowered your rating, but you didn't explain the reason. We're open to changing the app, but we need your feedback for this. Thanks!",2019-04-10 12:48:08,most_relevant,com.gmail.jmartindev.timetune +Aka Jais,https://lh3.googleusercontent.com/a-/AOh14GiVWPFraBlY5rGhFTwwuD0dOGmC4YSt3PSvJHuv8rY,okayish,2,0,2.5.3,2019-03-13 15:57:32,"Hi! Keep in mind that the project is still evolving. If you tell us what you expected to find in the app, we'll take it into account. Thanks!",2019-03-13 16:19:46,most_relevant,com.gmail.jmartindev.timetune +chiranjib hazra,https://lh3.googleusercontent.com/-VeU1CjzkpJA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPekklfUi4gPOtglDIh6PWpI8md_A/photo.jpg,good,2,0,2.5.2,2019-01-08 18:35:53,User reported to Google.,2019-01-08 18:40:01,most_relevant,com.gmail.jmartindev.timetune +Shruti Kulkarni,https://lh3.googleusercontent.com/-LEyIriW7VV4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOLUJtM0bnDIlT9o-Hkxx8PerYCaQ/photo.jpg,"The new interface is cluttered and hard to use. Edited, in response to the query below. In the older interface, a routine had a separate page for each day of the week. Now it's a continuous scroll. The older approach seems cleaner.",2,1,2.5.1,2018-10-26 08:43:08,"Thank you very much for giving more details, Shruti 👍",2018-10-26 08:57:02,most_relevant,com.gmail.jmartindev.timetune +Rob Chang,https://lh3.googleusercontent.com/a-/AOh14GgEayjqKVrXwHHJFBGbmTF2eM9MdIiOjNayfFi2BA,"I've been trying to figure out how to have a custom time set for the ""add notification"" options, and there doesn't seem to be any way. For example, I need to set it to 1 hour and 30 minutes, but there's no option for that. We need the ability to enter exactly the number of minutes and hours we want, instead of only having presets. EDIT: Now after using it for a while, the app has been plagued with reliability issues. It often is late with the notification by a few minutes, or the service completely stops and I'd have to restart the service. Due to this issue, I cannot rely on this app for anything that is time-sensitive because I'd end up being late for all my appointments and jobs. I've contacted the developer multiple times about this but so far they haven't been able to fix the issue.",2,4,2.5,2018-10-15 18:36:33,"We're really sorry about this, Rob. The culprit usually is the battery configuration on the device, but your case has been especially tough. We'll try to locate your same device model to make more tests. Thanks.",2018-10-15 20:48:37,most_relevant,com.gmail.jmartindev.timetune +Sanjiv,https://lh3.googleusercontent.com/a-/AOh14GgBWTdYDr9GjZF8MbtEA5Y2OWwgxJVrO2j84Xxmfw,"A core function missing is the ability to disable a routine/ daily +occurrence for a specific day. For example, I usually exercise from 6pm to +8pm every day, so I created an event that happens every Monday to Friday. +Today is a Thursday and due to an unexpected occurrence, I can't exercise +today. I wanted to change that my 6-8pm block of time just today, but can +only do so by deleting the event for EVERY Monday to Thursday to clear my +timeline. Makes no sense to clear that block of time and need to re-create +that exercise block for all the other Monday to Fridays. If something +unexpected happens at 6pm next Friday, I'll have to delete it ALLL, and +recreate all over again after just to clear my timeline. If you get this +core feature right, then the app would be complete.",2,5,2.4.4,2018-06-21 08:41:59,"Hi. We don't understand your request. Routines can already be disabled temporarily using the main switch, you don't need to delete the activities. If you created an event (Main menu / Events), keep in mind that they have nothing to do with routines. If you meant a different thing, please contact by email to give more details. Thanks.",2018-06-21 09:11:49,most_relevant,com.gmail.jmartindev.timetune +TJ T,https://lh3.googleusercontent.com/a-/AOh14GhEnKwlQ537GROBuEOJwJUwnkrkzu9GMxMcbg,"I really liked the app, helped me a lot with managing my time efficiently +to get the most out of my day, but since I updated it it started acting up, +it use to be so easy to simply move routine blocks around and now it's +setting it's own times or plainly refusing to be moved to a later time +block, which is infuriating. And the app also slowed down considerably +after the update.",2,1,2.4.4,2018-06-27 14:36:50,Hi. We'd like to investigate this bug. If you could please contact by email it would be of great help. Thanks.,2018-06-27 16:46:13,most_relevant,com.gmail.jmartindev.timetune +Adam Taylor,https://lh3.googleusercontent.com/a-/AOh14GgUpIi9a40Y6M35ZqwGPdvU1kYm_M2opwWdgfCpBw,"Play voice option does not work consistently. It regularly does not sound +the vocal reminder. This is a function I rely on. How do I contact you to +discuss further?",2,0,2.4.4,2018-08-06 21:05:37,Hi Adam. You can contact at timetuneapp@gmail.com,2018-08-06 21:16:26,most_relevant,com.gmail.jmartindev.timetune +Em Carr,https://lh3.googleusercontent.com/-l6EYZWeR6Cw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMJ-iKcg1YqqJAwlvGwPTu4dSI0mw/photo.jpg,"While it certainly wasn't expensive, it was a waste of money in the fact +that I found this app to do very little more than any calendar. After +reading the FAQ, it says it's more than a calendar... How? Especially since +adding anything is done in the same way you create a calendar event. The +""routine"" function is a missed opportunity in that I think it will help me +establish a morning routine for myself but in reality it's about creating +calendar events that repeat, a slightly expanded component of any free +calendar our there. When I think of ""tuning my time spent"" I'm thinking, +better organization for smaller tasks. Then find myself spending an hour +setting 1 minute events for myself that I was never actually notified about +lol what irony. Unfortunately it was not time, or money, well spent.",2,0,2.4.4,2018-08-15 02:42:03,"Hi. We don't want anyone to waste their money. If you contact by email we'll make a refund, no problem. Apart from this, keep in mind that the project is still evolving. Currently we offer statistics about your distribution of time, but in future versions we'd like to add the ability to track your effectiveness. All suggestions are welcome too.",2018-08-15 08:39:50,most_relevant,com.gmail.jmartindev.timetune +Nadia Hikari,https://lh3.googleusercontent.com/a-/AOh14GgHMoLeOo1UmpQL9c9robeQ_r2UG6_qEOp1h_-r_A,"Firstly, this app often has been stopped. I've tried to do something to fix +it, but failed. Then finally, this app has been blocked by my phone. So sad +can't use it.",2,0,2.4.4,2018-07-26 11:48:13,"This happens because Oppo devices block background tasks by default, it's not a fault with the app. You can find generic instructions for Oppo on our troubleshooting page (https://timetune.center/troubleshooting/#brands). Apart from this, your specific model might need further configuration, so we recommend to make a Google search as well. Thanks.",2018-07-25 21:14:22,most_relevant,com.gmail.jmartindev.timetune +Satyam saladi,https://lh3.googleusercontent.com/a-/AOh14GgVmkVXAAC8THbuBuFpFE0fihao9pmVYSzdyHl11Q,not so easy. Perhaps Pro version may b good. uninstall.,2,0,2.4.4,2018-07-06 16:54:50,"Hi Satyam. We recommend to check our starting guide (https://timetune.center/android-help/). Apart from this, keep in mind that the project is still evolving. Our intention is to make the application more intuitive in successive versions. Thanks for your understanding.",2018-07-06 17:08:07,most_relevant,com.gmail.jmartindev.timetune +garvita kankaria,https://lh3.googleusercontent.com/a-/AOh14GjFfX0fNEgS29vqEIVO89X8nbfieSQLUdJyltNTsYk,"U should work on the phones like oppo and others so that customer don't +find problem",2,0,2.4.4,2018-08-10 18:54:34,"Hi. If you are referring to the message saying that the app has been blocked by the system, this happens because Oppo devices block background tasks by default, it's not a fault with the app. You can find generic instructions for Oppo here: https://timetune.center/troubleshooting/ (but we recommend to make a Google search for your specific model).",2018-08-10 16:42:37,most_relevant,com.gmail.jmartindev.timetune +Just Watch Don't ask,https://lh3.googleusercontent.com/a-/AOh14GjDeFmrVEFiBsb0jlG9H8AguAbvh0pdK_6jack7,Lots of In-app purchases ... Not worth the time .,2,1,2.4.3,2018-05-20 09:37:25,"This is not true. There's only ONE in-app purchase, encompassing three pro features. Furthermore, none of these three features is essential. The power of the app resides on the free version and 90% of the users are free. Please read how the app works before giving an unfair review: https://timetune.center/android-help/",2018-05-20 09:48:08,most_relevant,com.gmail.jmartindev.timetune +Dylan Lindholm,https://lh3.googleusercontent.com/a-/AOh14GiVPHQcx2wgoMW2a6Q7m1hVPoPUErBdUBZmbp1A4g,It's too confusing.,2,0,2.4.3,2018-06-06 23:06:09,"Hi. You can find an easy 'Getting started' guide on the help section (this is the link: https://timetune.center/android-help/). Once you get the idea, you'll see it's very easy.",2018-06-07 09:36:32,most_relevant,com.gmail.jmartindev.timetune +Reuben Hopper,https://lh3.googleusercontent.com/a-/AOh14Gj_kmvCUSpVlkiIUiNLUFHROkz08LSXx3fm7ddM,Routines don't last forever any more,2,0,2.4.2,2018-09-24 02:51:47,Hi Reuben. Nothing has changed regarding routines. If you contact by email we can help you find what's happening. Thanks.,2018-09-24 08:54:27,most_relevant,com.gmail.jmartindev.timetune +Harshit Bhadauriya,https://lh3.googleusercontent.com/a-/AOh14Gh2XPH638l8DkWpNkxPqnXw77CDxd1RDEJZZ6FS,The new widget is not looking good. Please bring back the old widget or atleast bring an option to make it look like the older version.,2,1,2.4,2018-03-24 06:57:02,"Hi Harshit. If possible, please contact by email and send a screenshot of your widget. If we see the issue we'll be able to adjust it. Thanks.",2018-03-24 09:13:35,most_relevant,com.gmail.jmartindev.timetune +Rakesh Sharma,https://lh3.googleusercontent.com/-amDduvXQOi0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMjPN6gJzrCGzCjT5yi971ZlUrC-Q/photo.jpg,You have to buy pro version,2,0,2.4,2018-03-26 07:08:03,This is not true. You don't 'have' to buy the pro version. There are only 3 pro features and none of them is essential. The app works perfectly without the pro features and 90% of our users are free. Please read how the app works before giving an unfair review: https://timetune.center/android-help/,2018-03-26 08:20:03,most_relevant,com.gmail.jmartindev.timetune +Joshua Albert,https://lh3.googleusercontent.com/a-/AOh14GiKg-0io4jQh1texVOChbqTd-I5dmxMobBKltNB8w,"Tried it out. The time function, which is 90% of the app IMHO, is clunky. The default ""end"" time is ""until next activity"", but then it automatically changes to the start time of the next activity and you can't change it back. Then, if you add a task that overlaps other start times, it deletes the other activities. I spent 15 minutes setting up a schedule and was frustrated to find that I had erased my entire afternoon schedule because I made a mistake when changing the end time of something mid-day. This app was, for me, ironically, a waste of time.",2,0,2.3.4,2018-01-22 15:36:53,"Thanks for the feedback, Joshua. 'Until next activity' is there to avoid having to calculate the time yourself, but you can change it after that. Activities don't work like to-do's, they work like chunks of time. If a chunk of time overlaps another one, it'll get overwritten, but the app warns you with a message. That said, we are still improving.",2018-01-22 16:03:06,most_relevant,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"This app is a good idea and I like the fact that it is very good to start healthy habits an get organized but yet, I could not do anything even with the little tutorial at the beginning. THIS APP WAS NO HELP TO ME ALL I RECOMMEND IS THAT THE APP HAS TO BE A BIT MORE SELF-EXPLANATORY I DID NOT KNOW HOW TO DO ANYTHING!!!!!!!!",2,0,2.3.4,2018-03-06 00:31:20,"Hi. There's a very easy 'Getting started' guide on the Help section (this is the link: https://timetune.center/android-help/). We recommend to take a look there. Once you get the idea, you'll see it's very easy.",2018-03-06 09:37:11,most_relevant,com.gmail.jmartindev.timetune +Harry,https://lh3.googleusercontent.com/a-/AOh14GhyU8fbVIxzm3W8Oj6ZQFgOk5nZihGkcxSmMnwkUw,So far I like it I thought there would be an option to sync your routine from the Google calendar but apparently you can only sync the timeline. The time tune staff has been very helpful and the app has alot of potential!,2,0,2.3.4,2018-03-16 22:06:56,"Hi Harry. For the moment, the calendar sync option only shows Google Calendar events in the timeline. As the app is still young, our intention is to add more sync options in the future. In any case, if you don't like the pro version and prefer a refund, please let us know and we'll do it, no problem. Thanks.",2018-03-16 22:00:18,most_relevant,com.gmail.jmartindev.timetune +Panupong Pasitanon,https://lh3.googleusercontent.com/a-/AOh14Gh61XKj6K5gQoot8fsVO8b3UEVHG3o432q2Pj8FvA,Reminder didnt work on Vivo,2,0,2.3.4,2018-01-24 02:44:42,"This happens because the device is blocking our background tasks, it's not a fault with the app. You can see how to solve it here: https://timetune.center/troubleshooting/",2018-01-24 09:13:06,most_relevant,com.gmail.jmartindev.timetune +Aman Singh Bhadauria,https://lh3.googleusercontent.com/a-/AOh14GgVoi7NdoIjA0hakvYfXW-J6oABuZAz9C_WmmMjYw,Everything is under pro version.,2,0,2.3.4,2018-02-16 08:36:40,"Hi Aman. Sorry, but you are mistaken. There are only three pro features (programmer, calendar sync and themes) and none of them is essential. The power of the app resides on the free version and 90% of our users are free. Please check again.",2018-02-16 09:24:54,most_relevant,com.gmail.jmartindev.timetune +Anna Vos,https://lh3.googleusercontent.com/-OF1wUj-hPbA/AAAAAAAAAAI/AAAAAAAAaO0/AAKWJJMeMCbdrwYS92MWCxWrtpxZDSo3ZQ/photo.jpg,"I regret buying this app. (TL;DR: don't use this app if you ever intend on changing routines or planning.) Changing existing routines is very hard as it simply deletes whatever overlaps in time. So unnecessary and impossible to revert. If you accidentally click PM instead of AM once, your whole day is deleted permanently. Also, every time I want to sync between my phone and my tablet I have to export it to Google Drive and then import it from the other device. Also, you can't copy items or days to another time. Please make this app more user friendly!",2,0,2.3.3,2018-02-19 08:29:59,"Hi Anna. Keep in mind that the project is still young and evolving. More improvements are being added progressively. If you're not going to use the pro version, please contact by email and we'll make a refund. There's no problem in that. Thank you very much.",2018-02-19 09:48:05,most_relevant,com.gmail.jmartindev.timetune +Arnold Gultom,https://lh3.googleusercontent.com/a-/AOh14GiUX3QB8SCLlAuuG9a_BlC4MWCIayzmznY7N0Xdrw,"At first this app worked well, then the next day this app stopped notifying my next activities. It stucked on the last activity before the next day",2,1,2.3.3,2017-12-01 02:16:12,"This happens because Xiaomi devices block background tasks by default, it's not a fault with the app. You will find special instructions for Xiaomi here: https://timetune.center/troubleshooting/#brands",2017-12-01 09:18:23,most_relevant,com.gmail.jmartindev.timetune +Sumit Vasishath,https://lh3.googleusercontent.com/a-/AOh14GgJqWbnKrCkLZ680l6722tNE6sqyGrL21pm95gs,Stopped working after a week,2,0,2.3.3,2017-11-29 14:48:04,"This happens because the power settings are blocking our background tasks, it's not a fault with the app. You will find special instructions for Samsung here: https://timetune.center/troubleshooting/#brands",2017-11-29 14:54:27,most_relevant,com.gmail.jmartindev.timetune +Oleg Pavlov,https://lh3.googleusercontent.com/a-/AOh14GhFZvIkY7VTzZCjkEas9PqR38XlP7qEMdSHdLSwsw,"after recent update notifications messed up. sometimes i can't turn it off, so it rings until you reset the device",2,0,2.3.2,2017-11-23 11:26:52,,,most_relevant,com.gmail.jmartindev.timetune +Harry Scriven,https://lh3.googleusercontent.com/a-/AOh14Gi11RNnlrAJGWYRaPEN8mMHQ65gEwUFfdl0w45dpw,"I want to create a regular schedule and be able to amend times for regular activities on the occasional week. Unfortunately, when you amend the time once it changes your schedule completely. EDIT - I appreciate the response and looked at the guide. I don't want to have to create a whole new bespoke routine day if I am just amending the timing of one event. Unfortunately, this is not flexible enough as this won't save me any time.",2,57,2.3.1,2017-09-15 21:32:16,"Hi Harry. That's how routines are supposed to work. Routines repeat themselves automatically, so if you change your main routine you're changing the repeating schedule. If you want to add exceptions, you can use exception routines or the events section. All this is explained in our 'Getting started' guide: http://timetune.center/android-help/",2017-09-15 21:27:47,most_relevant,com.gmail.jmartindev.timetune +Umpatterning The Pattern,https://lh3.googleusercontent.com/a-/AOh14GgSVT_ImZdBLLwMzdfMnljdSIVIrAIRukrtK5oL1w,"In timeline section, I cannot see the upcominh events (I can only see the events for today and next day), and that kills the purpose of the time table apps. People need to see the upcoming event, in order to schedule nrw events, so they wont overlap with each other. Keep up the good work, and this will be a good app😎",2,2,2.3.1,2017-11-14 07:03:56,Thank you very much for your feedback. We're planning to increase the timeline in future versions.,2017-11-14 08:53:05,most_relevant,com.gmail.jmartindev.timetune +trevor greevy,https://lh3.googleusercontent.com/a-/AOh14GjIoRB7n0-eEvEvb9tZxOYAMjzbarkiu9CLXhJ0wA,"I like the app, but you can't tick thing's off. I like to go through my tasks and tick each one off as I do it. Then I feel I am accomplishing something, I feel I am getting somewhere. If it had that, it would be brilliant.",2,6,2.3.1,2017-09-12 18:46:00,Hi Trevor. Keep in mind the app is still young. Our idea is to add tracking features in future versions. Thanks for your understanding.,2017-09-12 20:58:57,most_relevant,com.gmail.jmartindev.timetune +Md. Ariful Hassan,https://lh3.googleusercontent.com/a-/AOh14GjklI4UM2Tct2MIWu8W6WRlJIT6y5Bia3--b5QlZA,Timer don't follow exact minutes. In case of 5min reminder it takes about 6/7 minutes to notify. Painful,2,0,2.3.1,2017-11-18 15:51:39,"This happens because the device configuration is delaying the notifications, it's not a fault with the app. Give the app all the necessary permissions in power management device settings and make sure that the scheduling method is set to 'Clock alarms' in TimeTune (Settings / Advanced / Scheduling method / Clock alarms).",2017-11-18 22:54:29,most_relevant,com.gmail.jmartindev.timetune +Akbar Noto,https://lh3.googleusercontent.com/a-/AOh14GgcLL9syvnEoMP120ks48eEw6xIr9MHhTJKK43VYA,"Time Changing on widget is not responsive enough, need bout 1 mins....",2,0,2.3.1,2017-09-22 04:33:44,"Hi Akbar. We don't fully understand the issue. You can already add activities up to the minute. If the problem is that the widget is not updating properly, this happens because the device is blocking our background tasks. You'll find instructions for Samsung here: https://timetune.center/troubleshooting/#brands",2017-09-22 08:15:53,most_relevant,com.gmail.jmartindev.timetune +Hajra Ali,https://lh3.googleusercontent.com/a-/AOh14Gj2QcoYCo6QC9saoHW3kgI2qbVU6VeyDdpSdkE2Qg,It is not what I want,2,0,2.3.1,2018-05-01 12:54:21,"And how does that translate to a low review? If you are looking for a bike, are all cars bad? Please be more considerate before giving an unfair review. Thanks.",2018-05-01 14:45:30,most_relevant,com.gmail.jmartindev.timetune +Well Whatisit,https://lh3.googleusercontent.com/-Amh76gdrTaU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMRGCGeeBYpAavDWX_UBiXe6RhcOQ/photo.jpg,Nothing special,2,0,2.3.1,2017-10-07 04:16:30,Would you mind giving more details? Currently your feedback doesn't help anyone. Thanks.,2017-10-07 08:50:49,most_relevant,com.gmail.jmartindev.timetune +sahil soni,https://lh3.googleusercontent.com/-3YlXqIxBaUI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPar7hoiU1d9n4-iKZP08I_aWC1yA/photo.jpg,Very bad,2,1,2.3.1,2017-09-12 13:19:34,"Hi Sahil. If you tell us the reason why, we'll be able to do something about it. Thanks.",2017-09-12 13:30:38,most_relevant,com.gmail.jmartindev.timetune +Charles Moser,https://lh3.googleusercontent.com/-Gsx6j1OXlAs/AAAAAAAAAAI/AAAAAAAAAPo/AAKWJJNlyR5_FqaPLP5a7okvdHMYDOE2_Q/photo.jpg,I work in a school and the schedule has times like 4:42 which this app doesnt do. Like it but absolutely useless to me.,2,0,2.3,2017-09-01 00:40:50,This is not true. You can make schedules down to the minute if you want. You just need to drag the finger through the clock when selecting the minutes. There was no need to give a low rating for this.,2017-09-01 08:51:47,most_relevant,com.gmail.jmartindev.timetune +Ragul Kanapathy,https://lh3.googleusercontent.com/a-/AOh14Gi0EBZcvlMc2CyN4UlKWulAI9AFHKDVdUNtIxlZUA,Essential app I have ever Installed... BUT I couldn't set customised ringtone for notifications... Why?,2,0,2.3,2017-09-03 19:19:26,"Hi Ragul. If you are modifying the default notification on the settings, remember that this is the default notification that will appear when creating new activities. Other notifications that were created before need to be modified apart. If the problem is another, contact by email and we'll help you find the solution. Thanks.",2017-09-03 20:58:41,most_relevant,com.gmail.jmartindev.timetune +Cryxnx,https://lh3.googleusercontent.com/a-/AOh14Gj3jYqvy7LeStW0FUpjlypxKI0Intq1HQ1MWvOsug,BAD!!!!👎👎👎,2,0,2.3,2017-08-05 07:47:03,"If you have problems with notifications, this happens because Oppo devices block background tasks by default, it's not a fault with the app. You can find instructions for Oppo here: http://timetune.center/troubleshooting/#brands + +If there is another reason please tell why, do not just complain.",2017-08-05 17:53:31,most_relevant,com.gmail.jmartindev.timetune +Teja . M,https://lh3.googleusercontent.com/a-/AOh14GhQufYKAoHuxD-9Dl4u41V_jfM5IBfWVTr0rE6qjw,Best,2,1,2.3,2017-08-14 06:26:33,User reported to Google.,2017-08-14 08:56:34,most_relevant,com.gmail.jmartindev.timetune +vrushabh mankar,https://lh3.googleusercontent.com/a-/AOh14Gj6Aj4jWqyh_aCikdE-du5OEYvIpicDjTznKU_9,I like the way it's present itself but advantage if your not getting any notification ring ......in the system I allowed everything I needed too but still it's not working out,2,0,,2020-04-04 18:28:29,Hi. Oppo devices are very aggressive with battery management and they contain multiple controls to block apps and notifications. If you already checked https://timetune.help/en/troubleshooting/ and https://dontkillmyapp.com/ we strongly recommend to ask in Oppo user forums for instructions about your specific device model.,2020-04-04 18:44:20,newest,com.gmail.jmartindev.timetune +Vladimir S,https://lh3.googleusercontent.com/a-/AOh14Ghx1c0kXBBZYkjy3TurBJeQQdzRGNE2sB37p2gqOg,Useless without pro.,2,0,2.8,2020-02-25 21:48:53,"Unfortunately, you are mistaken. The premium features are not essential to use the app (don't take our work for it, just check other reviews). It would be a pity, because you're missing the chance to be more productive!",2020-02-25 22:06:50,newest,com.gmail.jmartindev.timetune +Ajay Dubeyy,https://lh3.googleusercontent.com/a-/AOh14GjP7auFZvT5vBBB5whNwwvys_qSA275xDuZV4g6SA,Reminders should not be transfered in event section. It was better before to figure out events and remiders separatly.,2,0,2.7.1,2020-02-14 15:02:43,"Hi Ajay. It was a difficult decision for us, but you will understand why we did it here: https://timetune.app/reminders-events/ In any case, we remain open to all possibilities for the future. Thanks for your feedback 👍",2020-02-14 15:21:18,newest,com.gmail.jmartindev.timetune +Akash Kadam,https://lh3.googleusercontent.com/a-/AOh14GhobCVzxwh7UVbT43TRFFM0qYCPOS-8ZpGkrojpgA,How to use this app? 🤔 Very bad experience. Please simplify the process. Nobody wants to take a extra tutorials to use your app to plan our day.,2,0,2.7.1,2020-02-05 02:04:01,"Hi Akash. We're working on several modifications to make the app simpler and more intuitive. Meanwhile, please check our starting guide here: https://timetune.help/en/getting-started/ Once you get the idea, you'll see its easier than it seems. Thanks.",2020-02-05 09:36:27,newest,com.gmail.jmartindev.timetune +Krischelle Velasquez,https://lh3.googleusercontent.com/a-/AOh14GiaCHdNHpKr7jPrTmf6bVlEzmuPXgww7AMVzK88FQ,"I would love this app only if the notifications work at all. There were no alarms or notifications or pop ups showing in my Oppo F5. I tried tinkering with the system like what was said in the troubleshooting page so may times, yet nothing worked. Would give 5 if I do not have this issue.",2,0,,2020-02-03 15:42:41,"Hi, please understand that the responsible for this problem is Oppo, not us. Oppo is the one who adds barriers to block applications and claim more battery life. If you already checked the troubleshooting section, we recommend to check https://dontkillmyapp.com/ or search in Oppo user forums for instructions about your specific device model. Thanks",2020-02-03 15:50:38,newest,com.gmail.jmartindev.timetune +Robert Turner,https://lh3.googleusercontent.com/a-/AOh14Gizle57pnbWBzrc1qKQieiSR5N-jKCqm4BgnBiq,"Fair enough for ads but now the widget isn't showing anything anymore, it's just blank. I've set up all events and schedule and it's still blank.",2,13,2.7.1,2020-01-25 14:58:46,"Hi, please click on 'Settings / Advanced / Send technical report' and put your name at the end. We'll solve the problem with the widget. Thanks Robert.",2020-01-25 15:59:26,newest,com.gmail.jmartindev.timetune +Wade Altus,https://lh3.googleusercontent.com/a-/AOh14Gha-h58ty6uQ_ObYXwZluZCezL7XUdzjiFZacAguA,"I've only just started using it and can already tell it has potential. It has a simple UI but very confusing features with next to no instruction on how the features work. I purchased the premium version with the hopes to organise my routines to suit my shift work. But I can't find a way to automatically alternate my routine cycles (if it's even possible), starting the following routine cycle when the previous ends",2,3,2.7.1,2020-01-17 14:30:17,"Hi Wade. You can check our starting guide here: https://timetune.help/en/getting-started/ If after checking the guide you cannot find the way to schedule your routines, please contact us at timetuneapp@gmail.com and we'll gladly help 🙂",2020-01-17 14:50:04,newest,com.gmail.jmartindev.timetune +anna k,https://lh3.googleusercontent.com/a-/AOh14GgTwMy2_I7GddwLf6gsQ1t6yJwZuLd0AgD5XWI7-Q,"im sure the app is nice, but i cannot add a routine, or any activity, nor i can delete anything?",2,0,,2020-01-14 09:31:44,"Hi Anna. Please check our guide for beginners here: https://timetune.help/en/getting-started/ (if you have questions after checking the link, please let us know) 🙂",2020-01-14 09:48:19,newest,com.gmail.jmartindev.timetune +Giban Banerjee,https://lh3.googleusercontent.com/a-/AOh14GhVVUS10_7E6NnnvnFJPa_FEFKIaaPX5H-VI0Gefw,It's just okay.,2,0,,2020-01-14 02:36:05,Hi. Which features would make it more useful for you?,2020-01-14 08:11:04,newest,com.gmail.jmartindev.timetune +Briony Kemp,https://lh3.googleusercontent.com/a-/AOh14GhwVpIn6EQ-vS2AEwagAAndZ5JPyMQH_n0dopn0-BY,Would agree that it isnt very user friendly. Functions seem complicated and too basic at the same time,2,0,2.6.8,2019-12-28 09:36:19,"Hi Briony. You're right, we need to make things more intuitive, and we're working on that. However, we encourage you to check our starting guide (https://timetune.help/en/getting-started/). After getting a couple of concepts, you'll see the app is very powerful. We'd love you to try it. Thanks.",2019-12-28 09:40:32,newest,com.gmail.jmartindev.timetune +Nooh Kibriya,https://lh3.googleusercontent.com/a-/AOh14GjaRaIeHXauGK7vkRr5pJBVOKwmshdpW6A9Ua1gVg,"Please update the app, i want to use the app, but After a day ,alarm is not ringing , i think this app have too much bugs and problems",2,0,2.6.8,2019-12-22 15:48:48,"Hi. The responsible for this problem is Xiaomi, not us. Xiaomi is very aggressive with battery management has a lot of settings to block apps. If you already checked https://timetune.help/en/troubleshooting/ and https://dontkillmyapp.com/ we recommend to check or ask in Xiaomi user forums for instructions about your specific device model. Thanks.",2019-12-22 19:02:30,newest,com.gmail.jmartindev.timetune +Bibi Aqilah,https://lh3.googleusercontent.com/-Fu_ANN3eYv8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPgKWTM8m_bjR3h7VHB94ync9a0Zg/photo.jpg,This tune can make alarm? I set a few alarm is not ringing..,2,0,2.6.8,2019-11-26 04:26:28,"Hi, please contact us at timetuneapp@gmail.com and we'll help you. Thanks.",2019-11-26 08:49:36,newest,com.gmail.jmartindev.timetune +Deeksha Chaudhary,https://lh3.googleusercontent.com/a-/AOh14Gi8C6sW5kkaGz0BbDg3IyWF3NQMx8HEoz3AmZOM,"This app is really very good, but notifications aren't working. I tried everything it told me to do but it's still not working.",2,0,2.6.8,2019-11-22 03:13:28,"Hi, remember that Vivo is very aggressive with battery management and they include a lot of controls to block applications. If you already checked https://timetune.help/en/troubleshooting/ and https://dontkillmyapp.com/ we strongly recommend to check or ask in Vivo user forums for instructions about your specific device model. Thanks.",2019-11-22 08:52:37,newest,com.gmail.jmartindev.timetune +Azlanistan,https://lh3.googleusercontent.com/a-/AOh14GhOWNhIhK82gB9jkObEgtyVQrtJce5OM1GfkNJZMg,Im still getting accustomed i like the simplicity,2,0,2.6.4,2019-11-16 15:45:30,"Hi, remember to check our guide for beginners here: https://timetune.help/en/getting-started/ If you have additional questions, you can contact us at timetuneapp@gmail.com and we'll help more. Thanks.",2019-11-16 17:12:59,newest,com.gmail.jmartindev.timetune +Nicole,https://lh3.googleusercontent.com/-eSb5RB1QsTY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOrVm7ay-GUFziJ2aa6AJNkTiSrUg/photo.jpg,"Limited unless you buy the full version. I spent time looking around trying to work with the app. A lot of things I tried wanted me to upgrade, which is why I found another.... I feel my review is fair. Sorry.",2,0,,2019-11-07 15:51:05,"As we explained in a previous answer, there are three premium features but none of them is essential. You can use as many routines, reminders, timers and events as you need for free. That being said, we totally respect your opinion. Thanks.",2019-11-07 16:03:12,newest,com.gmail.jmartindev.timetune +Parmeet Singh,https://lh3.googleusercontent.com/-zfhcp9QHcdM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPte6zm_2gycxbXDYMROzNvI98nWQ/photo.jpg,Useless and time consuming. Got pro version but no option for refund,2,5,2.6.6,2019-10-13 15:42:54,"Hi, we're sorry you didn't like the application. You can contact us at timetuneapp@gmail.com for a refund. Thanks.",2019-10-13 15:48:10,newest,com.gmail.jmartindev.timetune +Essie Vie,https://lh3.googleusercontent.com/a-/AOh14GiUoDuQEyRg59L2WhFY_novbsl1PW7Zr3snwD0aZw,Has potential but made no sense I didn't know what the hell I was doing needs more explanation and help,2,0,2.6.6,2019-10-10 21:32:29,"Hi, sorry about that. Please check our guide for beginners (https://timetune.help/en/getting-started/) and be so kind to let us know if everything makes more sense after checking it. We're really interested in making the app more intuitive and understandable, but we'd love to get your help. Thank you very much.",2019-10-10 21:52:26,newest,com.gmail.jmartindev.timetune +Nathan Coffman,https://lh3.googleusercontent.com/a-/AOh14Gi21YMgelzqFsnbDD2p4nHzxnTnejncUnFCEP4L2g,App cannot keep track of an atypical. Everytime I set the day one it just resets after day 5 back to day one. instead of skipping two days and then 2 day 1 like a normal week would work. I'm deleting this app for sure.,2,0,2.6.5,2019-10-05 14:26:55,"Hi, this is just a misunderstanding on how the app works. Routines repeat in a cyclical way. If you create a 5-day routine, it will repeat every 5 days. But if you want it to repeat like a normal week, just create a normal weekly routine with 7 days, not an atypical routine. Atypical routines are for atypical working shifts (police, nurses, etc).",2019-10-05 16:15:26,newest,com.gmail.jmartindev.timetune +Danielle C,https://lh3.googleusercontent.com/-rtXrfniWhd8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOcvq0miF2bIsla2FWl6GiT6V7SXA/photo.jpg,Too confusing,2,0,,2019-10-01 08:30:49,"Hi, sorry about that, Danielle. We'll be polishing things in successive versions. We recommend to check our guide for beginners here: https://timetune.help/en/getting-started/ Once you get the idea, you'll see it's very easy. But if you have more questions, you can contact us at timetuneapp@gmail.com and we'll be happy to help. Thanks.",2019-10-01 08:36:03,newest,com.gmail.jmartindev.timetune +Melissa Farthing,https://lh3.googleusercontent.com/a-/AOh14GgeWKm8aamQRKGoN6lCCwbbvVcsy2yg69uvtmaQaw,"Great at first but now it's getting on my nerves. I tried to create a routine for each day of the week. Today is Monday, and for some reason, my Monday routine shows up for tomorrow, Wednesday, Thursday and Friday. I've had daily routines show up on other days over the past week as well. There seems to be a setting where I can change this, but that doesn't seem to do the trick. It shouldn't be this hard to have one daily routine for each day of the week. Uninstalled.",2,0,2.6.5,2019-09-09 12:00:04,"Hi, you can change the repetition days here: Main menu / Routines / click on the routine card sub-menu and select 'Repeat'. If you cannot find the option contact us at timetuneapp@gmail.com and we'll help more. Please be so kind to not give a low rating before asking for help. Thanks.",2019-09-09 20:28:21,newest,com.gmail.jmartindev.timetune +Aleesha Malik,https://lh3.googleusercontent.com/a-/AOh14Gj3rj8-FPk2KzTinDQjKJgtPN9xw53saqB3cn2gJQ,"So it's good. I payed for pro but the issue I'm having is adding my routine to my timeline because whenever I try and add it, it takes me to edit my routine. It's really annoying because I'd like my routine in one clean place. If this is fixed I'd definitely rate it 4 stars",2,0,2.6.5,2019-09-04 20:56:29,"Thanks for your suggestion, Aleesha. Routines are in their own section because they are like templates, and then the timeline reflects how these templates are applied to each day. That being said, we're always open to finding new alternatives, so we'd be grateful if you could give us more details about your approach at timetuneapp@gmail.com, thanks",2019-09-04 21:07:52,newest,com.gmail.jmartindev.timetune +rohan duggal,https://lh3.googleusercontent.com/-oVdvMnGDWio/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOgN0uhLBUETE_tAhMQk0nKjLIpMw/photo.jpg,Worst,2,0,2.6.5,2019-09-01 14:02:45,"Hi, the solution is in your hands. Tell us what the problem is and we'll solve it. But otherwise, nothing will change. Thanks.",2019-09-01 20:10:47,newest,com.gmail.jmartindev.timetune +Mr Hamilton,https://lh3.googleusercontent.com/a-/AOh14GhRmY4s3F6y5z76Wd2cpMkGD_clmwoqNeuzgM5iQA,"I was trying out the routine trick. I set the times and dates, but it just wouldn't work. Please help.",2,0,2.6.5,2019-08-28 06:07:15,"Hi, please contact us at timetuneapp@gmail.com and we'll help you. Thanks.",2019-08-28 07:08:28,newest,com.gmail.jmartindev.timetune +Siddharth Gupta,https://lh3.googleusercontent.com/-71iWP9wihNc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPCKtrG4OErpc4jnN6cxd-6OeAfew/photo.jpg,"App is good but the programmer feature is bad. I have created multiple small routines which i want to enable from programmer based on my work meetings for different days. So if I have late meetings on Wed and Fri, I want to enable a separate set of routines for these days. Similarly for weekends. The programmer is allowing for just dates which is not the feature that I bought the pro version for. I want small, reusable routines that I can configure from programmer for days not periods of dates.",2,0,,2019-08-25 21:11:54,"Hi Siddharth. If we understood correctly, you don't need the programmer for that. Since version 2.6.5, you can assign the days of the week to 1-day routines. If you cannot find how to do it or you have a complicated schedule, you can contact us at timetuneapp@gmail.com and we'll show you the best way to achieve it. Thanks.",2019-08-26 08:53:38,newest,com.gmail.jmartindev.timetune +Baby Pocky,https://lh3.googleusercontent.com/a-/AOh14GgI5O2kzP66jwPCv4y26Nyaa-SgQa4lWc0-GCuNPg,I didn't know how to do anything..,2,0,,2019-08-13 18:34:19,"Hi, sorry about that. We recommend to check our starting guide here: https://timetune.help/en/getting-started/",2019-08-13 18:38:25,newest,com.gmail.jmartindev.timetune +Sakshi Virani,https://lh3.googleusercontent.com/-Ierh6OoJzRU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN79_eiTD4MfJ8yOBB5Ttd50TCZhA/photo.jpg,how to do so the link is not opening only,2,1,2.6.5,2019-08-08 12:59:59,"Hi. This happens because the device is blocking our background tasks, it's not a fault with the app. You can see how to solve it here: https://timetune.help/en/troubleshooting/ and here: https://dontkillmyapp.com/samsung - Keep an eye on other possible causes like anti-virus apps, cleaner apps or battery saver apps. Thanks.",2019-08-08 08:34:07,newest,com.gmail.jmartindev.timetune +Solomon Hill,https://lh3.googleusercontent.com/-OGRl-NfLn-A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOBK6Kqjp0gpThdRUX_348OXXB_vA/photo.jpg,Nothing special. just a calendar app. not worth the time it takes to set up. clunky at best. poor layout. minimal instructions. not intuitive to use,2,0,,2019-07-30 20:08:56,"Hi, sorry about that. You're right, some things are not intuitive and we need to explain the purpose of the app better. TimeTune is not a calendar app, it's a routine manager with different features. We're preparing a new onboarding tutorial as we speak. Meanwhile, we recommend to check our starting guide: https://timetune.help/en/getting-started/",2019-07-30 21:11:01,newest,com.gmail.jmartindev.timetune +Jacob Hegwood,https://lh3.googleusercontent.com/a-/AOh14GgX6e_FqZj6t2XDwc_FJ4EcRtw4rwPgsgLlVFHLEw,"Not very easy to use. You can figure it out after you play with it long enough, but over all, not very intuitive.",2,0,,2019-07-09 14:27:27,"Hi, Jacob. You're right, the app is still evolving and some things are not intuitive yet. Our intention is to improve things progressively. For the moment, we recommend to take a look at our guide for beginners (https://timetune.help/en/getting-started/). Once you get the idea, you'll see it's very easy. Thanks.",2019-07-09 14:35:29,newest,com.gmail.jmartindev.timetune +Lucinda Sanchez,https://lh3.googleusercontent.com/a-/AOh14Giwg8KuSvzrVmW3Rnp1bFdIon-5PZtHzqYnISmWGA,I'm so confused and frustrated trying to figure this app out.,2,0,,2019-06-30 09:09:45,"Hi Lucinda. Sorry about that. Please check our guide for beginners here: https://timetune.help/en/getting-started/ Once you get the idea, you'll see it's very easy. Thanks.",2019-06-30 09:13:23,newest,com.gmail.jmartindev.timetune +rashed ghunaim,https://lh3.googleusercontent.com/-5NcImqcBSD4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNde56hpvTav0I1fVa6OmIVfpu0yw/photo.jpg,Good,2,0,2.6.4,2019-06-29 09:16:10,"Hi. If you think the application is good, why do you give a low rating?",2019-06-29 09:17:37,newest,com.gmail.jmartindev.timetune +Miandad Khabir,https://lh3.googleusercontent.com/a-/AOh14Gheje7h7ughW_Ja1VvgTSsel-PlrWAQhOS0FXbm,i got no notification,2,0,,2019-06-23 08:11:56,"Hi. This happens because Vivo devices block background tasks by default, it's not a fault with the app. We recommend to check our generic instructions here: https://timetune.help/en/troubleshooting/ If our instructions are not enough, we recommend to check or ask in Vivo forums too. Thanks.",2019-06-23 08:51:03,newest,com.gmail.jmartindev.timetune +wubieful,https://lh3.googleusercontent.com/-QSQsl8R0pfY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMDyIKMnp4w-oeGx_ZMKf2-YLrq7A/photo.jpg,Annoying to set up. You'd think it would be easy to have the exact same same schedule just 30 min later.,2,7,2.6.2,2019-05-29 07:07:18,"Hi. We're sorry you're experiencing problems with the setup. Remember that you can long-click on the times on the left in the routine to advance or delay a group of times at the same time. If this is not what you were referring to, contact us at timetuneapp@gmail.com and give us more details about your specific use case. Thanks.",2019-05-29 07:22:21,newest,com.gmail.jmartindev.timetune +Alex Qxi,https://lh3.googleusercontent.com/a-/AOh14GgdGdwCNvNbKnyJDmpXeMlwkmNue9bSE2QgNhyV3Q,"(edit) Been using it for a while occasionally and every time it feels like a hassle to find what I need to reach within the app.. I only use the routines, no events or reminders, I have a separate app for that, Google Assistant wit a calendar. To add a change to one day it requires a lot of clicking to amend it.. I end up writing down the rest of the day tasks on paper, deleting, amending the times and adding them manually with the new times.. That's counterproductive. I need an easy way to move",2,3,2.6.1,2019-05-22 05:33:16,"Thank you very much for your feedback, Alex. We're evaluating different possibilities for that.",2019-05-22 07:14:54,newest,com.gmail.jmartindev.timetune +Ferd Ferd.D,https://lh3.googleusercontent.com/-VWHU8Owj2UI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO2xEp7ExJCtcRkK1tHhiyJfhqRxQ/photo.jpg,"yeah, this is not user-friendly. there should be some kind of tutorial, this is not the kind of app you can just jump in and start using, which is what I was hoping for.",2,0,,2019-05-03 13:18:59,"Hi, sorry about that. You're right, the app is still young and some things are not intuitive yet. We recommend to take a look at our 'Getting started' guide (https://timetune.help/en/getting-started/). Once you get the idea, you'll see it's very easy. Thanks for your understanding.",2019-05-03 13:22:13,newest,com.gmail.jmartindev.timetune +Girish Palve,https://lh3.googleusercontent.com/-nQQR1BaJWig/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNQz9JBe3lbeGJl8u3O2uRIZigbjg/photo.jpg,osm app but now its update an I am not able to see my all reminders that I use to remind my self before uninstalling the app,2,1,2.6.1,2019-04-24 05:46:10,Hi Girish. Please contact by email at timetuneapp@gmail.com and we'll help you find your reminders. Thanks.,2019-04-24 21:43:53,newest,com.gmail.jmartindev.timetune +nikhil partey,https://lh3.googleusercontent.com/a-/AOh14GjqFC445g9_QhNY6bJdLrXJK6RRdrJhx9QKogsH7g,"Beneficial to get my goal. It's heplful to make discipline and commitments to yourself,it's continually popping up notification that what you have decided according to your time table, over all its Good and helpful for students..!!",2,0,2.6,2019-04-10 15:39:21,"Hi Nikhil. We see you lowered your rating, but you didn't explain the reason. We're open to changing the app, but we need your feedback for this. Thanks!",2019-04-10 12:48:08,newest,com.gmail.jmartindev.timetune +Warzome Gaming,https://lh3.googleusercontent.com/a-/AOh14GgWDvGMATjURi_B-jmLnkS4rCdMwxsu-28HfbY1,"Very bad app. I organised all of my activities, took me 1 hour to complete my planner, then realised that the app automatically sets the time at am, so all my afternoon activities where at the morning, for example if I had to eat at 1pm it said that I had to eat at 1am, so I changed them to pm and suddenly the app errased my whole schedule. WASTING 1 HOUR",2,39,2.6,2019-04-08 17:42:40,"Hi, sorry you're experiencing trouble. The time picker includes a button to select am or pm, do you mean it didn't work correctly? Apart from this, there's an undo option on the top submenu for accidental deletions. We recommend using a long-click and the 'move' option to move activities, as changing the times may lead to undesired overwrites.",2019-04-08 18:10:02,newest,com.gmail.jmartindev.timetune +Joey Spillers,https://lh3.googleusercontent.com/a-/AOh14Gjs4U1M-JNuh2Utjnvm8iZEA12m9S_cZYaFVIxKnQ,calendar sync for a productivity app is a pro only feature,2,0,,2019-04-07 09:47:09,"Hi Joey. Keep in mind that TimeTune is basically a routine manager. The calendar sync option is not necessary to use the app. However, the project is still evolving and this might change in the future. Thanks.",2019-04-07 09:51:34,newest,com.gmail.jmartindev.timetune +Sugandh Raj,https://lh3.googleusercontent.com/-2K07qumQWwQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPHhp3aPw05nWczIdXWvfQr4w7bLg/photo.jpg,useless I dont want to purchase the app as this free version offers no good features.. the paid app might be better..Rating 2 just because of the feedback on user review.,2,0,,2019-03-19 09:50:08,"Hi Sugandh. Unfortunately, you are mistaken. There are only three pro features but none of them is essential. You can use as many routines, reminders, timers and events as you need for free. In other words, the core of the app is free. Please be so kind to check the application again, we'll solve any questions you might have. Thanks.",2019-03-19 10:22:34,newest,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"The minimum timer is 5 mins so useless for me. I had hoped to use this as an exercise timer (I need alternating time countdowns running consecutively e.g. 3m/30s, 3m/1m, 5m/1m) plus a reminder for when my favorite combat sports are on TV. I'll keep looking.",2,1,2.5.3,2019-03-18 23:33:19,"Hi, we're sorry the app didn't meet your needs. Indeed, TimeTune is not intended to be used as an exercise timer. However, keep in mind that the project is still evolving and we're open to new ideas. We take your feedback as a suggestion for this feature. Thanks.",2019-03-19 09:02:16,newest,com.gmail.jmartindev.timetune +Aka Jais,https://lh3.googleusercontent.com/a-/AOh14GiVWPFraBlY5rGhFTwwuD0dOGmC4YSt3PSvJHuv8rY,okayish,2,0,2.5.3,2019-03-13 15:57:32,"Hi! Keep in mind that the project is still evolving. If you tell us what you expected to find in the app, we'll take it into account. Thanks!",2019-03-13 16:19:46,newest,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,you basically can't do anything if you don't buy the full version.,2,0,,2019-03-10 06:20:13,"Unfortunately, this is not true. There are only three premium features but none of them is essential. As we explain in our description, you can use as many routines, reminders, timers and events as you need for free. Please check the application better before giving an unfair review. Thanks.",2019-03-10 07:38:58,newest,com.gmail.jmartindev.timetune +Brandon Clubb,https://lh3.googleusercontent.com/-xqjNWKoO7AA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMxX4--DuVWcrU6st4NMbqo3zQCTQ/photo.jpg,the free version is pretty minimal.,2,0,,2019-02-28 17:15:00,"Hi. Unfortunately, this is not correct. On the contrary, the power of the app resides on the free version. There are only three premium features but none of them is essential. As we explain in our description, you can use as many routines, reminders, timers and events as you need for free. Thanks.",2019-02-28 17:21:19,newest,com.gmail.jmartindev.timetune +amol mahajan,https://lh3.googleusercontent.com/a-/AOh14GgIuIqu57KH0wMj3yn534kBcBMjW9xepv7piKNlGA,statistical data for daily routine and check marks for completed or missed routines are expected,2,0,,2019-02-28 07:58:21,"Hi, thanks for your feedback, Amol. The app is still young but this is a possibility we're considering for future versions.",2019-02-28 08:10:16,newest,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,good not bad,2,0,2.5.3,2019-02-16 02:17:41,User reported to Google.,2019-02-16 08:42:44,newest,com.gmail.jmartindev.timetune +A hidden world of music,https://lh3.googleusercontent.com/a-/AOh14GjFmgHVu9SjLlhBJJUR0GhyHbCaBPDGEAPGkseU,EDIT: Even just an option for the horizontal interface would be great! Thank you for taking my review into consideration! Please please please! Bring back the old horizontal interface. Or at least have an option for it. I used to absolutely love this app and would have rated it 5 stars anyday. But now I find it quite useless.. I understand how it could work for some people but it's definitely not working for everyone (as I've seen in other reviews).,2,16,2.5.3,2019-02-11 00:28:46,"Hi, thank you very much for your feedback. We're evaluating different possibilities, but we need more time to make a decision. Would it work for you if we just added an option for horizontal days in the interface as it is now or are there other things you find difficult since the change?",2019-01-21 10:01:09,newest,com.gmail.jmartindev.timetune +Janet R,https://lh3.googleusercontent.com/a-/AOh14GjHUKanFHoZX-d01DypsNyl1yUqQ9d2ZYDi7JiyaQ,cant move the tasks up or down,2,0,2.5.3,2019-01-27 15:31:32,"Hi Janet! To move an activity up or down, just long click on it and use the arrows that appear on the toolbar. Is this what you were looking for?",2019-01-27 15:45:22,newest,com.gmail.jmartindev.timetune +K.Sathyanarayanan narayanan,https://lh3.googleusercontent.com/a-/AOh14GjAapsVr7BErw7O84rQOfhSp3YFKuXwZmeBfSgE,If u want to study you need to plan DON'T USE APPS,2,0,2.5.3,2019-01-24 13:57:39,"Unfortunately, we think you missed the whole point of the app.",2019-01-24 15:06:56,newest,com.gmail.jmartindev.timetune +Crosx,https://lh3.googleusercontent.com/-7jqhrD3bjcI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMbG8ia-fRw_VC9_nE53qNc80bJzA/photo.jpg,there ia no way to go back to the routine old interface? new is ugly,2,0,2.4.4,2019-01-18 16:22:53,"Hi! We're open to the possibility of bringing some features back from the old interface, but we need more details. Could you please tell us which things you find difficult in the new interface? Thanks!",2019-01-18 16:27:05,newest,com.gmail.jmartindev.timetune +K K,https://lh3.googleusercontent.com/a-/AOh14Gik1WZTr9e5dI05GzpoafEiQcfrGmiEuPYEfccCUg,"Clunky, complicated, and confusing. Not streamlined. Ugly color choice for non pro. Just a disappointment.",2,0,2.5.3,2019-01-16 00:38:54,"Hi, sorry about that. The project is still young and evolving. Meanwhile, in case you want to give it a second chance, you can find basic instructions here: https://timetune.center/android-help/",2019-01-16 09:37:11,newest,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,how to use bakwas i am vrry an gry,2,0,,2019-01-15 05:13:03,Hi! You can find a starting guide here: https://timetune.center/android-help/,2019-01-15 09:29:56,newest,com.gmail.jmartindev.timetune +Victoria Singleton,https://lh3.googleusercontent.com/a-/AOh14GiyKaxmsBarD6VxMewI6pg7PfqcmXLuTycXOEi9,"I would give this app 5 stars, but if you press ""silence notifications,"" you can never turn them back on.",2,1,2.5.3,2019-01-14 19:31:41,Hi Victoria! We really think this is just a misunderstanding on how the app works. If you contact by email at timetuneapp@gmail.com we can tell you what's happening. Thanks!,2019-01-14 19:43:26,newest,com.gmail.jmartindev.timetune +chiranjib hazra,https://lh3.googleusercontent.com/-VeU1CjzkpJA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPekklfUi4gPOtglDIh6PWpI8md_A/photo.jpg,good,2,0,2.5.2,2019-01-08 18:35:53,User reported to Google.,2019-01-08 18:40:01,newest,com.gmail.jmartindev.timetune +Joyfull Mom006,https://lh3.googleusercontent.com/a-/AOh14GjOgfH9BGZz892P-WAqtGNskiv9GG3YZxtnZTc3IQ,"I've spent hours on it already and I'm just not getting it. Looks like most tutorials are for an older version. Can't figure out how to create shorter than 7 day Routines, what's the difference between a Routine and an Event, etc.",2,2,2.5.2,2019-01-05 14:58:56,"Hi! Please check our 'Getting started' page (https://timetune.center/android-help/), it will help with the basics. If after checking the guide you have more questions, please contact by email at timetuneapp@gmail.com, we're here to help 😃",2019-01-05 21:47:05,newest,com.gmail.jmartindev.timetune +Sushil Raut,https://lh3.googleusercontent.com/a-/AOh14GhY39WCPYF4sjpxnxgX2JVRqr9uGLEfqDQ6zg-P,i had added a routine & by default it took a date almost 8 days ahead from today's date... i m unable to change the date... it's frustrating...,2,0,2.5.2,2019-01-04 18:03:42,Hi Sushil! This surely is a simple adjustment issue. If you contact by email at timetuneapp@gmail.com we'll tell you how to adjust your routine. Thanks.,2019-01-04 18:17:33,newest,com.gmail.jmartindev.timetune +Rayn F.,https://lh3.googleusercontent.com/a-/AOh14Ggd1vPZlsbIBJPQ8au3kjDjPweOo39qBny8P0BM0w,"The new design is atrocious. Before you could swipe left or right to see coinciding days which made for easy comparisons and changes. You can't even scroll back up once the time has passed. Now its just one LONG, CONTINUOUS list. Takes 3 times as long to readjust. Just TERRIBLE. 2 stars until a more usable design is reintroduced.",2,2,2.5.2,2019-01-02 11:04:26,Hi Ryan. Thanks a lot for your feedback 👍 We're open to the possibility of bringing some features back in future versions. For the moment we keep gathering feedback about the new interface in order to make decisions for the future.,2019-01-01 17:30:57,newest,com.gmail.jmartindev.timetune +Eden Paris,https://lh3.googleusercontent.com/a-/AOh14GjIyzgJOBcBKRKebT_Hjimod5wtA8vjXFN8S2yXUg,Really weird formatting? I'm trying to be MORE organized not get a brain workout trying to figure out an app,2,0,2.5.1,2018-12-12 20:53:36,"Hi. We recommend to take a look at our starting guide (https://timetune.center/android-help/). Once you get the idea, you'll see it's very easy (and useful). However, the app is still young, so if there's a feature or section you find specially difficult please tell us, it would help a great deal. We want the app to be helpful for you and everyone.",2018-12-12 21:23:19,newest,com.gmail.jmartindev.timetune +Manda Moo,https://lh3.googleusercontent.com/-qiUqN3htPP8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOxv9zVRecTIaT4B_fdeT00EKoyKg/photo.jpg,"Wasn't sure to begin with, as it's not all that user friendly... but how frustrating to take a chance anyway & pay for premium only to have it NOT sync with my Calendars....! Wasn't really any other reason to pay for premium except that.... What a small waste of money; it's of no use to me now! 😒",2,3,2.5.1,2018-11-29 09:15:51,"Hi, about your questions: 1) If you need it, there's a 'Getting started' guide on the help section (https://timetune.center/android-help/). 2) For the moment the calendar sync is from Google Calendar to TimeTune, we'd like to make it both ways in the future. 3) If you need a refund please contact by email, we don't want anybody to waste their money",2018-11-29 09:25:42,newest,com.gmail.jmartindev.timetune +Benny Ma,https://lh3.googleusercontent.com/-s4d8fIU1SPY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMBYgSicR1wBjntGyeVxV1xNZbYQA/photo.jpg,Don't like the new changes.,2,0,2.5.1,2018-11-26 19:46:16,"Hi. We're still evaluating different options, but we need more details. Which things do you find most difficult in the new interface?",2018-11-26 21:22:25,newest,com.gmail.jmartindev.timetune +Tova Robinson,https://lh3.googleusercontent.com/a-/AOh14GhlvHK8Cb1G5AcKr_FdOUyMZXRYhAhYkdNtMcw9D_c,Everything I wanted it for I had to do the pro mode,2,0,2.5.1,2018-11-21 07:50:50,"Hi Tova. The app is still evolving and the pro features might change. If you tell us which feature you needed, it will help us make decisions. Thanks.",2018-11-21 09:24:04,newest,com.gmail.jmartindev.timetune +Sa Me,https://lh3.googleusercontent.com/-ol_nbWawpyk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNZnvjMmROFnLDD5fJOz3C7VmNJXA/photo.jpg,"Android keep blocking the app from sending notifications, I've re-downloaded it and put an exception for it in the battery settings to work without interruption but nothing happens ! FIX IT.",2,0,2.5.1,2018-11-06 12:09:12,"Hi. If the message still appears, something in the system is still blocking the app. Many times it's not enough to put an exception in the battery settings. You may need to assign auto-start permission, prevent the app from being killed when screen is off or pin the app to the list of recent apps. More info: https://timetune.center/troubleshooting/",2018-11-06 13:07:41,newest,com.gmail.jmartindev.timetune +Shruti Kulkarni,https://lh3.googleusercontent.com/-LEyIriW7VV4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOLUJtM0bnDIlT9o-Hkxx8PerYCaQ/photo.jpg,"The new interface is cluttered and hard to use. Edited, in response to the query below. In the older interface, a routine had a separate page for each day of the week. Now it's a continuous scroll. The older approach seems cleaner.",2,1,2.5.1,2018-10-26 08:43:08,"Thank you very much for giving more details, Shruti 👍",2018-10-26 08:57:02,newest,com.gmail.jmartindev.timetune +Rob Chang,https://lh3.googleusercontent.com/a-/AOh14GgEayjqKVrXwHHJFBGbmTF2eM9MdIiOjNayfFi2BA,"I've been trying to figure out how to have a custom time set for the ""add notification"" options, and there doesn't seem to be any way. For example, I need to set it to 1 hour and 30 minutes, but there's no option for that. We need the ability to enter exactly the number of minutes and hours we want, instead of only having presets. EDIT: Now after using it for a while, the app has been plagued with reliability issues. It often is late with the notification by a few minutes, or the service completely stops and I'd have to restart the service. Due to this issue, I cannot rely on this app for anything that is time-sensitive because I'd end up being late for all my appointments and jobs. I've contacted the developer multiple times about this but so far they haven't been able to fix the issue.",2,4,2.5,2018-10-15 18:36:33,"We're really sorry about this, Rob. The culprit usually is the battery configuration on the device, but your case has been especially tough. We'll try to locate your same device model to make more tests. Thanks.",2018-10-15 20:48:37,newest,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,The most recent update just made it harder to move times around.,2,1,2.5,2018-10-11 01:58:33,"Hi, thanks for your feedback. We'll be refining the interface in successive versions. Thanks for your understanding.",2018-10-11 08:30:15,newest,com.gmail.jmartindev.timetune +KOT RAKO,https://lh3.googleusercontent.com/a-/AOh14GgQZgwpUzbwURNSyfQy0jkFi62CnzCFxmhVOpnbGw,"It is better if don't have Buy pro version, hoping an app free offline soon .",2,0,2.5,2018-10-02 16:17:33,"Hi. You don't need to pay to use TimeTune. We only have three pro features but none of them is essential. You can create as many routines, reminders, timers and events as you need for free. Thanks.",2018-10-02 16:33:07,newest,com.gmail.jmartindev.timetune +Makiya Mack,https://lh3.googleusercontent.com/a-/AOh14GjohoIY3nBh_m2FxC_xYy_94M3hwQaUzN55_dkWUf4,"I was recommended this app by a friend who loves it. I got the premium version as I expected it to have better features. This app is very confusing to use. I even went to the ""help"" section and was even more confused. I'm very disappointed",2,1,2.5,2018-10-02 01:44:18,"Hi Makiya. We're sorry you feel that way. The project is still young and more improvements will be added progressively. If you need a refund, please contact by email and we'll do it, there's no problem in that.",2018-10-02 08:56:34,newest,com.gmail.jmartindev.timetune +Joniah Wilbee,https://lh3.googleusercontent.com/a-/AOh14Gg6A8wxaXnOgBqmdOIytfeEt4eatlKLS_2_42rmVw,"It is a good idea, but it's not really easy to use.. in fact it's quite complicated :/ I bought premium because they advertised I could set schedules per day, and I can, but not how I had hoped. I recommend to make it simpler by allowing the user to toggle days per schedule in the routine editor, and additionally make any small changes in each individual day.",2,15,2.5,2018-10-01 15:25:56,"Thank you very much for your feedback, we really appreciate it. If you want a refund, please contact by email and we'll do it. There's no problem in that. Thanks.",2018-10-01 16:12:31,newest,com.gmail.jmartindev.timetune +Reuben Hopper,https://lh3.googleusercontent.com/a-/AOh14Gj_kmvCUSpVlkiIUiNLUFHROkz08LSXx3fm7ddM,Routines don't last forever any more,2,0,2.4.2,2018-09-24 02:51:47,Hi Reuben. Nothing has changed regarding routines. If you contact by email we can help you find what's happening. Thanks.,2018-09-24 08:54:27,newest,com.gmail.jmartindev.timetune +Matik7,https://lh3.googleusercontent.com/a-/AOh14Gh1HjfJgzRwmiLxq1aFSu0LFHSz-K_hTv-wnusi,Genuinely not a good app.,2,0,2.4.4,2018-09-18 19:55:25,Hi. Explain the reason and we'll make it better. Deal?,2018-09-18 20:45:22,newest,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Nice,2,0,,2018-09-03 17:20:55,User reported to Google,2018-09-03 17:24:07,newest,com.gmail.jmartindev.timetune +Em Carr,https://lh3.googleusercontent.com/-l6EYZWeR6Cw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMJ-iKcg1YqqJAwlvGwPTu4dSI0mw/photo.jpg,"While it certainly wasn't expensive, it was a waste of money in the fact +that I found this app to do very little more than any calendar. After +reading the FAQ, it says it's more than a calendar... How? Especially since +adding anything is done in the same way you create a calendar event. The +""routine"" function is a missed opportunity in that I think it will help me +establish a morning routine for myself but in reality it's about creating +calendar events that repeat, a slightly expanded component of any free +calendar our there. When I think of ""tuning my time spent"" I'm thinking, +better organization for smaller tasks. Then find myself spending an hour +setting 1 minute events for myself that I was never actually notified about +lol what irony. Unfortunately it was not time, or money, well spent.",2,0,2.4.4,2018-08-15 02:42:03,"Hi. We don't want anyone to waste their money. If you contact by email we'll make a refund, no problem. Apart from this, keep in mind that the project is still evolving. Currently we offer statistics about your distribution of time, but in future versions we'd like to add the ability to track your effectiveness. All suggestions are welcome too.",2018-08-15 08:39:50,newest,com.gmail.jmartindev.timetune +garvita kankaria,https://lh3.googleusercontent.com/a-/AOh14GjFfX0fNEgS29vqEIVO89X8nbfieSQLUdJyltNTsYk,"U should work on the phones like oppo and others so that customer don't +find problem",2,0,2.4.4,2018-08-10 18:54:34,"Hi. If you are referring to the message saying that the app has been blocked by the system, this happens because Oppo devices block background tasks by default, it's not a fault with the app. You can find generic instructions for Oppo here: https://timetune.center/troubleshooting/ (but we recommend to make a Google search for your specific model).",2018-08-10 16:42:37,newest,com.gmail.jmartindev.timetune +Adam Taylor,https://lh3.googleusercontent.com/a-/AOh14GgUpIi9a40Y6M35ZqwGPdvU1kYm_M2opwWdgfCpBw,"Play voice option does not work consistently. It regularly does not sound +the vocal reminder. This is a function I rely on. How do I contact you to +discuss further?",2,0,2.4.4,2018-08-06 21:05:37,Hi Adam. You can contact at timetuneapp@gmail.com,2018-08-06 21:16:26,newest,com.gmail.jmartindev.timetune +Brian Carroll,https://lh3.googleusercontent.com/a-/AOh14GgzwFO6lfjR1vU7k3a1J4txzptJWKOyiyMbgZ8r,"Pro version doesn't work correctly. I have more than one google account. +App keeps ignoring account used for purchase and using other account. I +have to delete gmail accounts for the app to recognize the account used for +purchase and if I try to add the deleted accounts back the app starts to +ignore the account used for purchase.",2,0,,2018-08-05 21:23:20,"Hi Brian. Please contact by email, we have a solution for this. Thanks.",2018-08-05 21:41:42,newest,com.gmail.jmartindev.timetune +Nadia Hikari,https://lh3.googleusercontent.com/a-/AOh14GgHMoLeOo1UmpQL9c9robeQ_r2UG6_qEOp1h_-r_A,"Firstly, this app often has been stopped. I've tried to do something to fix +it, but failed. Then finally, this app has been blocked by my phone. So sad +can't use it.",2,0,2.4.4,2018-07-26 11:48:13,"This happens because Oppo devices block background tasks by default, it's not a fault with the app. You can find generic instructions for Oppo on our troubleshooting page (https://timetune.center/troubleshooting/#brands). Apart from this, your specific model might need further configuration, so we recommend to make a Google search as well. Thanks.",2018-07-25 21:14:22,newest,com.gmail.jmartindev.timetune +Satyam saladi,https://lh3.googleusercontent.com/a-/AOh14GgVmkVXAAC8THbuBuFpFE0fihao9pmVYSzdyHl11Q,not so easy. Perhaps Pro version may b good. uninstall.,2,0,2.4.4,2018-07-06 16:54:50,"Hi Satyam. We recommend to check our starting guide (https://timetune.center/android-help/). Apart from this, keep in mind that the project is still evolving. Our intention is to make the application more intuitive in successive versions. Thanks for your understanding.",2018-07-06 17:08:07,newest,com.gmail.jmartindev.timetune +TJ T,https://lh3.googleusercontent.com/a-/AOh14GhEnKwlQ537GROBuEOJwJUwnkrkzu9GMxMcbg,"I really liked the app, helped me a lot with managing my time efficiently +to get the most out of my day, but since I updated it it started acting up, +it use to be so easy to simply move routine blocks around and now it's +setting it's own times or plainly refusing to be moved to a later time +block, which is infuriating. And the app also slowed down considerably +after the update.",2,1,2.4.4,2018-06-27 14:36:50,Hi. We'd like to investigate this bug. If you could please contact by email it would be of great help. Thanks.,2018-06-27 16:46:13,newest,com.gmail.jmartindev.timetune +Sanjiv,https://lh3.googleusercontent.com/a-/AOh14GgBWTdYDr9GjZF8MbtEA5Y2OWwgxJVrO2j84Xxmfw,"A core function missing is the ability to disable a routine/ daily +occurrence for a specific day. For example, I usually exercise from 6pm to +8pm every day, so I created an event that happens every Monday to Friday. +Today is a Thursday and due to an unexpected occurrence, I can't exercise +today. I wanted to change that my 6-8pm block of time just today, but can +only do so by deleting the event for EVERY Monday to Thursday to clear my +timeline. Makes no sense to clear that block of time and need to re-create +that exercise block for all the other Monday to Fridays. If something +unexpected happens at 6pm next Friday, I'll have to delete it ALLL, and +recreate all over again after just to clear my timeline. If you get this +core feature right, then the app would be complete.",2,5,2.4.4,2018-06-21 08:41:59,"Hi. We don't understand your request. Routines can already be disabled temporarily using the main switch, you don't need to delete the activities. If you created an event (Main menu / Events), keep in mind that they have nothing to do with routines. If you meant a different thing, please contact by email to give more details. Thanks.",2018-06-21 09:11:49,newest,com.gmail.jmartindev.timetune +Dylan Lindholm,https://lh3.googleusercontent.com/a-/AOh14GiVPHQcx2wgoMW2a6Q7m1hVPoPUErBdUBZmbp1A4g,It's too confusing.,2,0,2.4.3,2018-06-06 23:06:09,"Hi. You can find an easy 'Getting started' guide on the help section (this is the link: https://timetune.center/android-help/). Once you get the idea, you'll see it's very easy.",2018-06-07 09:36:32,newest,com.gmail.jmartindev.timetune +Kasun,https://lh3.googleusercontent.com/a-/AOh14Gh7TbizchFDnA87VgMeC0jH2wx9hHNU2ozk_9SV,Not sure,2,0,,2018-06-03 19:26:44,"Please be so kind to elaborate. What are you not sure about? If you don't explain it, how can we improve it?",2018-06-03 19:36:53,newest,com.gmail.jmartindev.timetune +Just Watch Don't ask,https://lh3.googleusercontent.com/a-/AOh14GjDeFmrVEFiBsb0jlG9H8AguAbvh0pdK_6jack7,Lots of In-app purchases ... Not worth the time .,2,1,2.4.3,2018-05-20 09:37:25,"This is not true. There's only ONE in-app purchase, encompassing three pro features. Furthermore, none of these three features is essential. The power of the app resides on the free version and 90% of the users are free. Please read how the app works before giving an unfair review: https://timetune.center/android-help/",2018-05-20 09:48:08,newest,com.gmail.jmartindev.timetune +SACHIN RAI,https://lh3.googleusercontent.com/-BV_h_-0PWk0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMhQt_5IJWo8SjnJpTzQ-xsyWaS1Q/photo.jpg,Alarm not working .. so no time strict,2,0,,2018-05-14 01:54:36,"This happens because Xiaomi devices block background tasks by default, it's not a fault from the app. You can find special instructions for Xiaomi here: https://timetune.center/troubleshooting/#brands",2018-05-14 07:36:54,newest,com.gmail.jmartindev.timetune +Hajra Ali,https://lh3.googleusercontent.com/a-/AOh14Gj2QcoYCo6QC9saoHW3kgI2qbVU6VeyDdpSdkE2Qg,It is not what I want,2,0,2.3.1,2018-05-01 12:54:21,"And how does that translate to a low review? If you are looking for a bike, are all cars bad? Please be more considerate before giving an unfair review. Thanks.",2018-05-01 14:45:30,newest,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,It's confusing,2,0,,2018-04-19 00:01:25,"Hi. There's an easy 'Getting started' guide on the help section (this is the link: https://timetune.center/android-help/). Once you get the idea, you'll see it's very easy.",2018-04-19 08:24:49,newest,com.gmail.jmartindev.timetune +Suzanne Comeau,https://lh3.googleusercontent.com/-ZU75r0NRQfk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN7-ApK8S6Wi77HlBBtR-E7OqhfWA/photo.jpg,"Tried to plan my weekly schedule with the ""routines"" function, but it kept randomly changing the times of the events as I made other edits. (For example, an event I set for 4pm changed to 11am when I hit the button ""add break before event""). Also annoying that you can't preview the notification sounds, and have to add silly tags to each event such as ""housework"".",2,0,,2018-03-31 04:49:08,"Hi. Routines work with blocks of time. If you click on an empty block and select 'Add gap to next activity', that block will be added to the next activity, therefore the start time must change. Tags are what allow to see statistics about your distribution of time. If you prefer a more traditional approach, you can use the Events section instead.",2018-03-31 09:12:20,newest,com.gmail.jmartindev.timetune +Rakesh Sharma,https://lh3.googleusercontent.com/-amDduvXQOi0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMjPN6gJzrCGzCjT5yi971ZlUrC-Q/photo.jpg,You have to buy pro version,2,0,2.4,2018-03-26 07:08:03,This is not true. You don't 'have' to buy the pro version. There are only 3 pro features and none of them is essential. The app works perfectly without the pro features and 90% of our users are free. Please read how the app works before giving an unfair review: https://timetune.center/android-help/,2018-03-26 08:20:03,newest,com.gmail.jmartindev.timetune +Anton Drelin,https://lh3.googleusercontent.com/a-/AOh14Gjplg6hckcZOOnSPYtfiWyyAw1JwMUDkzTGG886,Купил версию Pro. Сменился телефон. Что покупать снова? Тогда зачем такое приложение?,2,0,,2018-03-24 23:53:08,"Hi. There's no need to buy the app again. If you use the same account, the pro license should appear on the new phone. If it doesn't appear, please contact by email and we'll help you find what happened. Thanks.",2018-03-25 09:43:04,newest,com.gmail.jmartindev.timetune +Harshit Bhadauriya,https://lh3.googleusercontent.com/a-/AOh14Gh2XPH638l8DkWpNkxPqnXw77CDxd1RDEJZZ6FS,The new widget is not looking good. Please bring back the old widget or atleast bring an option to make it look like the older version.,2,1,2.4,2018-03-24 06:57:02,"Hi Harshit. If possible, please contact by email and send a screenshot of your widget. If we see the issue we'll be able to adjust it. Thanks.",2018-03-24 09:13:35,newest,com.gmail.jmartindev.timetune +Harry,https://lh3.googleusercontent.com/a-/AOh14GhyU8fbVIxzm3W8Oj6ZQFgOk5nZihGkcxSmMnwkUw,So far I like it I thought there would be an option to sync your routine from the Google calendar but apparently you can only sync the timeline. The time tune staff has been very helpful and the app has alot of potential!,2,0,2.3.4,2018-03-16 22:06:56,"Hi Harry. For the moment, the calendar sync option only shows Google Calendar events in the timeline. As the app is still young, our intention is to add more sync options in the future. In any case, if you don't like the pro version and prefer a refund, please let us know and we'll do it, no problem. Thanks.",2018-03-16 22:00:18,newest,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"This app is a good idea and I like the fact that it is very good to start healthy habits an get organized but yet, I could not do anything even with the little tutorial at the beginning. THIS APP WAS NO HELP TO ME ALL I RECOMMEND IS THAT THE APP HAS TO BE A BIT MORE SELF-EXPLANATORY I DID NOT KNOW HOW TO DO ANYTHING!!!!!!!!",2,0,2.3.4,2018-03-06 00:31:20,"Hi. There's a very easy 'Getting started' guide on the Help section (this is the link: https://timetune.center/android-help/). We recommend to take a look there. Once you get the idea, you'll see it's very easy.",2018-03-06 09:37:11,newest,com.gmail.jmartindev.timetune +Anna Vos,https://lh3.googleusercontent.com/-OF1wUj-hPbA/AAAAAAAAAAI/AAAAAAAAaO0/AAKWJJMeMCbdrwYS92MWCxWrtpxZDSo3ZQ/photo.jpg,"I regret buying this app. (TL;DR: don't use this app if you ever intend on changing routines or planning.) Changing existing routines is very hard as it simply deletes whatever overlaps in time. So unnecessary and impossible to revert. If you accidentally click PM instead of AM once, your whole day is deleted permanently. Also, every time I want to sync between my phone and my tablet I have to export it to Google Drive and then import it from the other device. Also, you can't copy items or days to another time. Please make this app more user friendly!",2,0,2.3.3,2018-02-19 08:29:59,"Hi Anna. Keep in mind that the project is still young and evolving. More improvements are being added progressively. If you're not going to use the pro version, please contact by email and we'll make a refund. There's no problem in that. Thank you very much.",2018-02-19 09:48:05,newest,com.gmail.jmartindev.timetune +Aman Singh Bhadauria,https://lh3.googleusercontent.com/a-/AOh14GgVoi7NdoIjA0hakvYfXW-J6oABuZAz9C_WmmMjYw,Everything is under pro version.,2,0,2.3.4,2018-02-16 08:36:40,"Hi Aman. Sorry, but you are mistaken. There are only three pro features (programmer, calendar sync and themes) and none of them is essential. The power of the app resides on the free version and 90% of our users are free. Please check again.",2018-02-16 09:24:54,newest,com.gmail.jmartindev.timetune +Panupong Pasitanon,https://lh3.googleusercontent.com/a-/AOh14Gh61XKj6K5gQoot8fsVO8b3UEVHG3o432q2Pj8FvA,Reminder didnt work on Vivo,2,0,2.3.4,2018-01-24 02:44:42,"This happens because the device is blocking our background tasks, it's not a fault with the app. You can see how to solve it here: https://timetune.center/troubleshooting/",2018-01-24 09:13:06,newest,com.gmail.jmartindev.timetune +Joshua Albert,https://lh3.googleusercontent.com/a-/AOh14GiKg-0io4jQh1texVOChbqTd-I5dmxMobBKltNB8w,"Tried it out. The time function, which is 90% of the app IMHO, is clunky. The default ""end"" time is ""until next activity"", but then it automatically changes to the start time of the next activity and you can't change it back. Then, if you add a task that overlaps other start times, it deletes the other activities. I spent 15 minutes setting up a schedule and was frustrated to find that I had erased my entire afternoon schedule because I made a mistake when changing the end time of something mid-day. This app was, for me, ironically, a waste of time.",2,0,2.3.4,2018-01-22 15:36:53,"Thanks for the feedback, Joshua. 'Until next activity' is there to avoid having to calculate the time yourself, but you can change it after that. Activities don't work like to-do's, they work like chunks of time. If a chunk of time overlaps another one, it'll get overwritten, but the app warns you with a message. That said, we are still improving.",2018-01-22 16:03:06,newest,com.gmail.jmartindev.timetune +Tharini Ruwandee,https://lh3.googleusercontent.com/a-/AOh14Ggn83heMFZunypc8Psyg1jrx8egEI0qKT-e5lBFcg,I don't get a single notification... The calendar doesn't work well..,2,0,,2018-01-21 09:25:04,"Hi. This happens because Huawei devices block background tasks by default, it's not a fault with the app. You will find special instructions for Huawei here: https://timetune.center/troubleshooting/#brands",2018-01-21 09:58:14,newest,com.gmail.jmartindev.timetune +Olga Sapunova,https://lh3.googleusercontent.com/-u_qNH4UdRkg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNW3zTUrsw9hM5t3cMZ40m0sMTlYg/photo.jpg,Stupid,2,0,,2018-01-09 01:45:15,"Hi. It would be more helpful if you gave some constructive feedback. Currently, your review doesn't help anyone.",2018-01-09 09:56:42,newest,com.gmail.jmartindev.timetune +Arnold Gultom,https://lh3.googleusercontent.com/a-/AOh14GiUX3QB8SCLlAuuG9a_BlC4MWCIayzmznY7N0Xdrw,"At first this app worked well, then the next day this app stopped notifying my next activities. It stucked on the last activity before the next day",2,1,2.3.3,2017-12-01 02:16:12,"This happens because Xiaomi devices block background tasks by default, it's not a fault with the app. You will find special instructions for Xiaomi here: https://timetune.center/troubleshooting/#brands",2017-12-01 09:18:23,newest,com.gmail.jmartindev.timetune +Sumit Vasishath,https://lh3.googleusercontent.com/a-/AOh14GgJqWbnKrCkLZ680l6722tNE6sqyGrL21pm95gs,Stopped working after a week,2,0,2.3.3,2017-11-29 14:48:04,"This happens because the power settings are blocking our background tasks, it's not a fault with the app. You will find special instructions for Samsung here: https://timetune.center/troubleshooting/#brands",2017-11-29 14:54:27,newest,com.gmail.jmartindev.timetune +Oleg Pavlov,https://lh3.googleusercontent.com/a-/AOh14GhFZvIkY7VTzZCjkEas9PqR38XlP7qEMdSHdLSwsw,"after recent update notifications messed up. sometimes i can't turn it off, so it rings until you reset the device",2,0,2.3.2,2017-11-23 11:26:52,,,newest,com.gmail.jmartindev.timetune +Ivo Florist,https://lh3.googleusercontent.com/a-/AOh14GicHfIvrc3yeBGrpc4uV4iDWZDbhAAp2XeA7r2_0w,Idk how it works,2,0,,2017-11-20 02:50:17,There's an easy 'Getting started' guide on the help section (https://timetune.center/android-help/). There was no need to leave a bad rating for this.,2017-11-20 08:52:56,newest,com.gmail.jmartindev.timetune +Amber Ray,https://lh3.googleusercontent.com/a-/AOh14Gjo4ahbU_ImAdDshKIziojkTk2cZXz0YmgoQEmRAw,"This is a decent time managment app. The ability to create routines is handy, though it doesnt warn you or show if activities are overlapping. The most recent update (as of 3/30/2020) made the app look much cleaner, which is nice. I would like to see more personalization options t'wards the look af the tags and app. Choices now are very slim. The $5 price tag for the pro version doesn't feel worth it (yes, buyer's remorse), so if you can manage fine with the free version, stick with that.",3,9,2.9,2020-03-31 18:29:23,"Hi, thank you very much for your feedback 👍 We keep working on new improvements for the app 👷‍♀️ Stay tuned for more changes in 2020 🙂",2020-03-31 20:44:31,most_relevant,com.gmail.jmartindev.timetune +Karlee Barker,https://lh3.googleusercontent.com/a-/AOh14GjwJMMphYBIlZvmJgRSiU2Z2x64aq0CtKUPj0Jf,"I bought the premium version because the app said this would allow me to create routines for a bunch of specific dates but i cannot find this feature? I'm a casual worker and my routines are based around different morning, afternoon and night shifts that don't fall on any usual days of the week.",3,3,2.8,2020-03-11 05:50:29,"Hi Karlee! The Programmer feature allows you to enable your routines in specific dates. You can find the programmer in the bottom menu (it's the option in the center). You can see how to use it here: https://timetune.help/en/getting-started/ (if you cannot find it or have additional questions, please contact us at timetuneapp@gmail.com). Thanks 🙂",2020-03-11 08:58:02,most_relevant,com.gmail.jmartindev.timetune +jioran C,https://lh3.googleusercontent.com/-XAmyaRlK6C0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPsHpYmE24YxRMLRNICmsD0Nfzgkw/photo.jpg,"I was using journal but can't write much until my hand gets better so I was looking for the app to plan my day preciously by time. Thought time line of this app would work, like all the icon and pre-made taps. But disappointed that I can not use those icons by itself for my event unless you creat another ""routine"" If dev's can modify the app that makes all those taps can be added to timeline by itself with my own time not only as events or routine, that would be perfect! Thanks",3,2,2.7.1,2020-02-14 16:00:18,"Hi, we don't fully understand your suggestion. Would you mind contacting us at timetuneapp@gmail.com and give us a specific example? Thanks!",2020-02-14 20:47:10,most_relevant,com.gmail.jmartindev.timetune +Carl J du Preez,https://lh3.googleusercontent.com/a-/AOh14GhVesgc8E1jIjOOxosK-BsbR7SRihwCbbuvuy_7LZQ,It's usefull - but would be much nicer if there was an option to play a notification tone just once instead of repeating it continuously.,3,1,2.8,2020-03-13 06:35:03,Hi. The app shows all the sounds from the device (repetitive and non-repetitive). You just need to select a non-repetitive sound. Is that what you were looking for?,2020-03-13 10:20:26,most_relevant,com.gmail.jmartindev.timetune +Maanya Ajeet kumar,https://lh3.googleusercontent.com/-rIRcLD_3KTc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNlTSjTqRBGS73Ohnj-GE8haWvpkQ/photo.jpg,I'm still trying it out but so far it has helped a lot. One would not waste time if they have this app in hand.,3,0,2.9,2020-04-01 16:35:53,,,most_relevant,com.gmail.jmartindev.timetune +Nik F,https://lh3.googleusercontent.com/-YtWsJ0YEgJU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMTt-luu74WWjIiCNru144YWQKOhg/photo.jpg,Hi. Thanks for responding and I'll be more specific: Please bring back the pretty orange background for the top bar and each of the routines. The current color is too pale.,3,7,2.8,2020-02-19 08:04:27,Thanks for giving more details 👍 We take note of the idea 📝,2020-02-19 08:34:44,most_relevant,com.gmail.jmartindev.timetune +Sweetness 94,https://lh3.googleusercontent.com/a-/AOh14GiskKEfyuZ-7j4mpWT2o75xSRWsUaYbutML_L0idg,I really like this app. But I stopped using it because it's too hard to type out my entire routine on the app. I wish it was windows compatible.,3,0,2.7.1,2020-02-08 19:42:28,"Hi, thanks for your feedback 👍 Making the jump to other platforms is a possibility we'd like to explore in the future, provided the project grows as expected 📈 That being said, we're working on some improvements to make the mobile input more efficient in coming versions 🙂",2020-02-08 23:21:55,most_relevant,com.gmail.jmartindev.timetune +Kritika Vaishnave,https://lh3.googleusercontent.com/a-/AOh14Gh-WpY4V57CydvRD4DniNpkc3XY86kfBdM1ytUDGQ,"Notification sound does not work now, before it does.",3,0,2.7.1,2020-03-18 15:04:10,Hi. Remember that Xiaomi devices are very aggressive with battery management and they include many controls to block apps and notifications. If you already checked https://timetune.help/en/troubleshooting/ and https://dontkillmyapp.com/ we strongly recommend to ask in Xiaomi forums for instructions about your specific device model. Thanks.,2020-03-18 21:28:12,most_relevant,com.gmail.jmartindev.timetune +Not Your Average Joe,https://lh3.googleusercontent.com/-KDjFEsUozBk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMNm_Az4uc0lnr9ZxPR-9-6ProPpg/photo.jpg,I like the ideas of the app. However the biggest inconvience for me is when something happens that disrupts my routines. There doesn't seem to be anyway to change the routine for one day with out changing it for every day in the futurs as well. It is annoying to have to manualy change a routine and then have to change it back the next day. I would like to see an option to edit or rearrage single intances of items in the time line without effecting the base routine or future dates.,3,31,2.7,2020-01-11 01:22:27,"Hi! Thank you very much for your feedback 👍 Indeed, this is an option we'd like to add in future versions 🙂",2020-01-11 11:12:31,most_relevant,com.gmail.jmartindev.timetune +Lois Kim,https://lh3.googleusercontent.com/a-/AOh14GjGGX04r0kQiTLJPH2nCAwtA-s9PMHKWUFy-PmeKw,"When I tried to load in my own alarm sound, it wouldn't let me.",3,0,2.8,2020-02-17 22:50:28,Hi! If you contact us at timetuneapp@gmail.com and we'll help you solve the problem 🙂,2020-02-18 09:16:55,most_relevant,com.gmail.jmartindev.timetune +kwhero,https://lh3.googleusercontent.com/a-/AOh14GjcDI9k_8uZ_P4z0mHiZWSDbbSrNPVlAA9u2ehLwg,"I used to use this app to set intervals of when I would check in to games I was playing, but since they removed the timer feature for some reason, the scheduling stuff doesn't suit my purposes. Still, the app should be able to help you maintain a schedule just fine, but most phones have that feature built in.",3,2,2.7,2020-01-04 16:51:54,"Hi, thanks for your feedback 👍 If we create an app just for timers, with more powerful features, would you use it? Which features would you like to see in an app like that?",2020-01-04 19:14:31,most_relevant,com.gmail.jmartindev.timetune +Saz Ads,https://lh3.googleusercontent.com/-V1VM6Qo0eQA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMtfqr9tNuGWdxO3dGpY48yU3dxVA/photo.jpg,"I sadly had to uninstall this app as tgere was no general opt-out option for direct marketing activity. I could opt out of seeing personalised ads on this app i couldnt opt of my data being collected and combined with other sources and shared by all of their many advertising partners, which for an app like this is just too invasive. Very saddened, as the app does look really good.",3,2,2.7,2020-01-04 23:02:47,"Hi! If you opted out of personalized ads, no data is collected at all. Maybe we just need to change the text to explain it better. Can you confirm that this was the problem? If it is, we'll rewrite the informative text 🙂",2020-01-05 08:01:18,most_relevant,com.gmail.jmartindev.timetune +Sundeep Kumar Vinnakota,https://lh3.googleusercontent.com/-OXRwbt1k-bM/AAAAAAAAAAI/AAAAAAAABpo/AAKWJJP9onuAv8flZIobVjyFlWsuDE7SUg/photo.jpg,"Routine module and programming is nice. Any plans to make it a tracker app - log if the schedule event is accomplished completely, partially or not accomplished..? For example - drinking water few times a day. Exercising 1hr per day.",3,1,2.6.6,2019-10-22 04:17:27,"Thank you very much for your suggestion, Sundeep 👍 Our intention is to explore some tracking capabilities in future versions 🙂",2019-10-22 07:48:00,most_relevant,com.gmail.jmartindev.timetune +The Ippy Bee Project,https://lh3.googleusercontent.com/a-/AOh14GggbGY_j8Z5cvqyBcLIQLznPsNKR1E-da1F2tpDbQ,Really like this app but wish I could see my WHOLE calendar or at least have the option to search for a specific date. That would make it perfect as I want to use it as my go to planner.,3,1,2.6.8,2019-12-31 10:42:16,Hi! Thanks for your suggestion 👍 We'll evaluate the possibilities 🔎 Cheers! 🙂,2019-12-31 13:39:47,most_relevant,com.gmail.jmartindev.timetune +Bibi Todaro,https://lh3.googleusercontent.com/a-/AOh14Gj532V5zI3LfXrtaR5R_4v14wp7CK_xakJbVO7p,"It's ok but I wish I could move activities around in a routine instead of having to manually change the time one by one E.g. if I have yoga 9-10 then study 10-12 and want to swap them I can't just move around the blocks I have to delete study, change the time of yoga then add study with the new time. It's time consuming and not practical. Would also be good to be able to change settings of a routine e.g. from 4 days to 2 instead of deleting the entire routine and start over",3,3,2.7,2020-01-05 23:16:55,"Hi! You can already swap blocks by long-clicking on a block and using the arrows on the top bar 🙂 About changing the number the days in a routine, you don't need to start over. You can create a new routine with the desired amount of days and quickly import your activities from the old routine with the 'Import day' option from the top submenu 😉",2020-01-06 08:51:08,most_relevant,com.gmail.jmartindev.timetune +Satyajeet Bera,https://lh3.googleusercontent.com/a-/AOh14GgSE5hKy3iK8xuZa8f_PldtZYPez9WCREcnKxOPVQ,love the app... bt still some feature like temporary modification if somebody is late then adjustment is required and please add tasker integration for advance options if you can... people will ready to pay for tasker plugin support also,3,0,2.6.6,2019-11-02 05:59:03,"Thank you very much for your suggestions, Satyajeet. We will evaluate the ideas 🔎",2019-11-02 09:29:59,most_relevant,com.gmail.jmartindev.timetune +Evyatar Kaufman,https://lh3.googleusercontent.com/a-/AOh14GizvD77vkN-rgNAs0J9mEtN9MOGLWklkf0VRyrpx54,There's a lot to be improved.. hope this app to get better with the time,3,0,2.6.6,2019-10-14 22:49:29,"Hi! Please give us more details, we're interested in your feedback. Which parts did you find more difficult?",2019-10-15 06:30:38,most_relevant,com.gmail.jmartindev.timetune +xmerz r,https://lh3.googleusercontent.com/-Q7mAZo-whkY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMBf8v1IUh5hI_DlZxKGpvgGfg7gg/photo.jpg,"Tried this app for a bit. The logic is very different from what I need, so the experience wasn't good. This app focuses on routines and is built around this concept. It was very confusing at first (because it started with abstract ideas, not what average joe is already familiar with; e.g. calendar/timeline) and the entire experience just felt awkward. For me, all I want is, see the day/week/month, add to-do items one by one, and be able to turn any of these items into routines when I want to.",3,0,,2020-01-30 19:34:56,"Hi! It seems you're looking for a standard to-do app or habits app. We recommend to search for those terms instead. Although TimeTune was not what you needed, thanks a lot for trying our app! 🙂👍",2020-01-30 09:34:19,most_relevant,com.gmail.jmartindev.timetune +Ee Xx,https://lh3.googleusercontent.com/-XbP9sZN15wc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPR5etWifDwLKFiNyALHiXA91Bo2A/photo.jpg,Stupid decision to remove timer.,3,0,2.7,2020-01-07 11:54:41,"Hi, sorry about the timers. It has been a difficult decision for us, but we remain open to all possibilities for the future. Are you in favor of a new app only for timers but with more powerful features?",2020-01-07 16:55:09,most_relevant,com.gmail.jmartindev.timetune +WE LOVE KOREA,https://lh3.googleusercontent.com/a-/AOh14Gg0QYR-fcjAmpvWhuLWHVeK0Fw7H36RHFLhXW6Etw,"Pretty good, could be better",3,0,2.7.1,2020-02-08 01:01:59,Hi! What feature would you like to see in TimeTune? We're open to suggestions 🙂,2020-02-08 09:47:19,most_relevant,com.gmail.jmartindev.timetune +Cassie Watson,https://lh3.googleusercontent.com/-tn5W9mlGJrA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP94QOyQPMBrqNszMEbOsFlp4iidQ/photo.jpg,"My original review seems to have disappeared. I have an issue on my Galaxy Note S8 where I can't turn off the alarms without uninstalling. I received a response from support, but couldn't respond directly. Their response was simply that I should be able to swipe the notification and the sound go away. Yes, I agree, that should happen. However, that isn't what happens. There is no notification from the app for the alarm. I receive other notifications from the app. Running out of room to explain.",3,0,,2019-10-22 12:44:17,Hi Cassie. Please be so kind to click on 'Settings / Advanced / Send technical report' and put your name at the end. The technical report will allow us to help you better. Thanks! 🙂,2019-10-22 20:10:58,most_relevant,com.gmail.jmartindev.timetune +Vaibhav Sharma,https://lh3.googleusercontent.com/a-/AOh14Ghdlo2Z3L69ClFDIQEN21aMvSNOHvebpgEWM7Rb,The app was awesome but it stopped working in a week. I'm not able to add any routine now.,3,0,,2020-03-13 13:38:00,Hi. Please contact us at timetuneapp@gmail.com and we'll help you solve the problem. Thanks.,2020-03-13 13:46:19,most_relevant,com.gmail.jmartindev.timetune +Rhea Koeva,https://lh3.googleusercontent.com/-AqQf-84SWNo/AAAAAAAAAAI/AAAAAAAAAxg/AAKWJJN-Ljqj0_p9hSGkvsXF6ixlr0Nq0g/photo.jpg,"I like the new ""Jump Day"", and ""Insert Gap"" options, and the Advice/Delay dialog for multiple activities. The Undo feature is a great addition as well. I'm really disappointed with the new look and that vertical scrolling through. Makes it so much harder to use - it's easier to start changing the wrong day since the current activity is not highlighted in any way, and starting time is not that clear as before. Also, those activity/free time blocks take too much space, yet there is not enough space horizontally for the text and a lot of the additional tags aren't visible. I'd prefer a more compact look. It would take a lot of time getting used to this...",3,2,2.5,2018-10-02 06:31:32,"Thank you very much for your feedback, Rhea. We keep gathering feedback about the new interface to make decisions. Meanwhile, please see our reasons for the new interface and the new possibilities here: https://timetune.center/timetune-2-5/",2018-10-01 13:49:09,most_relevant,com.gmail.jmartindev.timetune +Ali Tahrei Sh.,https://lh3.googleusercontent.com/a-/AOh14GiKsgmgQC8fBxuURu3RMgw8oxsBPKVY5tLyy2_0,"I bought the pro version in hope I can organize my time to do my tasks, but the progrmer just disables the routine, that's all!!!! really?!!! the other thing I didn't like was to set a routine for a reoccurring like school or sleep I had to set it for every single day, one by one!!! you could have add a reapet feature to it. I'm not happy I wish I could get my money back!",3,0,2.5.3,2019-02-26 15:08:47,"Hi. The programmer allows to schedule any routine in a specific date or period (check that the default program is not set as 'All routines disabled'). About activities, you can create only one and make use of the clone option (long-click and clone). In any case, if you prefer a refund please contact by email and we'll do it, no problem. Thanks.",2019-02-26 21:13:11,most_relevant,com.gmail.jmartindev.timetune +Smokescreen,https://lh3.googleusercontent.com/a-/AOh14GgL8_CkAzMTfZ1tfYtFgwQaKo76BFCX3AWEvj-FOA,"I have been using this app for about a year now without any issues, so I'm definitely not fond of the new routines menu. I find that swiping from side to side for the days to be much easier and having the drag and drop feature to be more comfortable (Hope it will be implemented again soon). Also the fact that you can't move a blank time frame up and down makes it difficult to set up the routine. As I have to change the time of every item to move it down. I would prefer the old version, hopefully it all gets fixed soon.",3,1,,2018-10-10 07:27:42,"Hi! Thank you very much for your feedback. We're currently in the process of gathering feedback about the new interface so we can make decisions about it. For the moment, the ability to move empty blocks will most probably come back in the next version. Stay tuned.",2018-10-10 08:35:31,most_relevant,com.gmail.jmartindev.timetune +Sarah Dawn,https://lh3.googleusercontent.com/a-/AOh14GjZ69XpNFNSIxryYDD0_qhgBUWpLoDSTfRgdgT85A,This app is useful. BUT. It would be so much more useful if you could set a routine to be repeated every weekday/ weekend day/ week/2week/4week/month/etc. It is badly in need of this feature. I thought buying pro would allow me to do this and it hasn't helped at all and I'm disappointed I spent the money. Please say that it is an upcoming feature. Resetting routines for every day is really inconvenient!,3,4,2.6,2019-04-07 12:00:14,"Hi! When you have a moment, please contact by email at timetuneapp@gmail.com and tell us a bit more about your schedule. We're open to adding a feature like this, but we need more details in order to find a solution that works for everyone. Additionally, we can make a refund too. Thanks!",2019-04-07 20:34:21,most_relevant,com.gmail.jmartindev.timetune +Miloš Macura,https://lh3.googleusercontent.com/a-/AOh14GhgbUPlHPv14TyIaw64kJq209KSHKSumduyhOzC,"Great potential, but I can't use the app to its full extent due to its counter-intuitive layout. Just filling two days in Routine view turned it into an endless scroll. Shame, the app really looked like what I was looking for. Reply: Thanks for taking my review into account. Yes, I think a horisontal orientation would be much better. Maybe leave both options? That way everyone can decide what best suits them.",3,0,,2019-02-17 00:22:59,Hi! Sorry about that. Would it work for you if the days were in horizontal?,2019-02-14 17:37:57,most_relevant,com.gmail.jmartindev.timetune +Carrie Dooley,https://lh3.googleusercontent.com/a-/AOh14Ghku0LrWxDrbNAdJl8L8GMcVv-rAzawHqEGnKMeAA,"It's really only useful if you are doing recurring tasks at the same time, on the same days, etc. I set up a lot of tags (categories) but they can only be applied to the routines, not events or reminders. I was also not able to copy/duplicate events, which would have allowed me to reuse the same tasks at different times or days without setting up a brand new event. Disappointed in the app's scheduling capabilities.",3,1,,2019-06-29 23:25:36,Hi Carrie. Keep in mind that the project is still young and evolving. We'll be adding features progressively. Thanks for your understanding.,2019-06-29 23:52:11,most_relevant,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Decent app, but i was having issues with scheduling my week with it. Any time i tried to M-F (day schedule) it repeated the same schedule perpetually, even on the weekends, regardless of setting day limits or time constraints. Will check back on this one. (Might be my device thats the issue idk) Gui was clean and simple, and you can set specific alarm sounds.",3,1,2.5,2018-10-09 00:33:15,"Hi. Remember that routines repeat themselves automatically. If you create a 5-day routine, it will repeat every 5 days. If you need to map your routine to the days of the week, you need to use a 7-day routine (in this case, you can leave Saturdays and Sundays empty). If you need more help you can contact by email. Thanks 😃",2018-10-09 14:33:43,most_relevant,com.gmail.jmartindev.timetune +Rezaira Obedencio Menoria,https://lh3.googleusercontent.com/a-/AOh14Gi8LGmoIteR_mZ1mPTe6q8d_SVjrEW5fc-WQ0pucQ,"I love the app. Great concept. But the thing is you cant use it or it wont notify you, not unless you open the app. Once you close the background it will lost.",3,0,,2019-10-19 07:44:02,"Hi. In Samsung devices the common cause for this is the Power Saving Mode blocking our app. Apart from that, remember that other apps like anti-virus, cleaner tools or battery savers can block apps too. More information here: https://timetune.help/en/troubleshooting/ and here: https://dontkillmyapp.com/",2019-10-19 07:58:41,most_relevant,com.gmail.jmartindev.timetune +abcdefg hijklmno,https://lh3.googleusercontent.com/-X5Q8tDSzdxw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPs3Yr4rtelZbvb__8yJ0OwPJiqmw/photo.jpg,I think the old version is better than the latest version. Hope that there is an option to choose between the horizantal or vertical interface. The shifting of days from left/right is easier than the new one. I barely use the app since the change of interface. Ive been using this for a very long time and it was really helpful.,3,3,2.5.3,2019-01-17 17:49:43,Hi! Sorry the new version is causing you trouble. We're currently gathering opinions about the interface to make decisions about it.,2019-01-17 22:20:46,most_relevant,com.gmail.jmartindev.timetune +Monto Monto,https://lh3.googleusercontent.com/-LnoPqcat_5A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMs5OACbcfWiuD-slaW3XwVrl8kAw/photo.jpg,"While it has helped me be more productive, recently the notification settings are bugging out. When I tap on 'ADD notification', and select a louder notification (for when I wake up) and press done, I find out sooner or later than it had reset it to the ""opener"" (my default notification sound that is quiter). This has caused me great annoyance because of this and do not know why this app decided to bug out!",3,1,2.6.2,2019-05-30 09:54:27,"Hi Kane. Sorry for the trouble. Please contact us at timetuneapp@gmail.com, it's the only way we can help you. Thanks.",2019-05-30 20:28:03,most_relevant,com.gmail.jmartindev.timetune +Alia Mirza,https://lh3.googleusercontent.com/a-/AOh14GgE-3OHgBViE_dDSEFR9C7HcJq4cO5eIk31hgMd,"Not bad but not great. Pros: 3rd party calendar sync, time line view, icons & colour options to customise. Cons: can't sync devices, no task list or tick box. More options needed such as daily time line view, font size & highlight current day. Editing isn't easy & I think the whole app including widget could have a neater, tidier look. Overall it's not very intuitive, needs more options & flexibity. It has some way to go. I've got premium btw.",3,2,2.6.2,2019-06-03 16:18:54,"Hi Alia! Thank you very much for your feedback. You're right, the app is still evolving and some things need to improve. Our intention is to refine everything progressively. About device synchronization, remember that you can use the backup function from the settings to save your data to Google Drive and restore it on another device. Cheers!",2019-06-03 16:55:24,most_relevant,com.gmail.jmartindev.timetune +Tiffany Mendez,https://lh3.googleusercontent.com/a-/AOh14Gj-2JCiAP4pmoQi9MJsWP95wLcdv7LadV2tJkMhpN4,Its good. i like the little picture icons. i wish for 2 things: that you can share as a jpg file and not a txt file to email. and that the length of the boxes represented the amount of time used. for example: snack time would be a short box. sleep would be a long box. thanks!,3,0,2.5.3,2019-03-04 12:23:31,"Thank you very much for your suggestions, Tiffany! 👍😃",2019-03-04 18:19:06,most_relevant,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I used to have 5 stars, but then the layout changed and I find it incredibly difficult to organise. I'll go so far as saying I hate it, it's just soo much. I want to have a separate view for each day not an endless scroll like some facebook timeline.",3,7,2.5.1,2018-10-23 20:51:44,"Thank you very much for your feedback, Lauren. We really appreciate it. We're currently gathering opinions about the interface to make decisions. Thanks.",2018-10-23 21:02:38,most_relevant,com.gmail.jmartindev.timetune +Kamlesh Tandekar,https://lh3.googleusercontent.com/-u5f_Orkr1B0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMDjo6hooowrtscQ6gGP6Uf3uJFbQ/photo.jpg,"App is good. But I want to suggest something > There should be To do list type of feature, that is what sort of things we are doing regularly from our routine will be selected and those which left undone will be not selected. In this way more clear picture of time allotment and productivity can be seen.",3,1,2.6,2019-03-28 18:18:14,"Thank you very much for your suggestion, Kamlesh 👍😃",2019-03-28 21:48:41,most_relevant,com.gmail.jmartindev.timetune +Erynn Szewczyk,https://lh3.googleusercontent.com/-95i1TXLnFzo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPulRIrOJwOcsqTRfqYSXJWUdbzMQ/photo.jpg,"It would be nice if there was a warning what certain buttons do. I was trying to figure out how to change the day from day one, clicked clear day, and it erased my entire schedule. It should say clear routine if that's what it does. I'm a little pissed as I just paid for the app so I can make a schedule. Still unsure of how to do what I need.",3,0,,2018-09-16 13:44:43,"Hi Erynn. We're really sorry for the inconvenience. Please stay tuned, in the next release we'll add a new undo system that will allow to take any change back, so you don't lose any data when scheduling (the change is already in beta). If you contact by email and tell us more details about what you need to do, we can give you indications. Thanks.",2018-09-16 18:20:00,most_relevant,com.gmail.jmartindev.timetune +Jerahmeel Cosinas,https://lh3.googleusercontent.com/-0r7SR_ymZXo/AAAAAAAAAAI/AAAAAAAABjk/AAKWJJPoJOaylb4aZ1j4nOd2x_b0kcT-qQ/photo.jpg,"Looks promising. Would like to see: routine sharing/sync (some routines you have to do with your wife), marking activity as done, have tags on timers and have more analytics on the actual timeline data (not routines). I personally would pay a premium for these features.",3,3,2.5.2,2018-12-28 14:44:05,"Thank you very much for your suggestions, Jerahmeel! 👍 The project is young but we'll be adding improvements progressively 😃",2018-12-28 20:57:17,most_relevant,com.gmail.jmartindev.timetune +Nicholas Theophilus,https://lh3.googleusercontent.com/a-/AOh14GieS9QUWmcLrCFDrIwCfsmRJJduP8uqYEB2ILwR-aE,"Please!!😥... bring back the old UI for routine edits with horizontal stripes... please)). Or at least give the option to select a preference. Please, thanks... it makes it more editing a little more difficult and much less appealing... please😢",3,2,2.5.1,2018-11-23 17:07:14,"Hi Nicholas. We're still gathering feedback about this. We're open to the possibility, but we need more time to make a decision. Sorry for the inconvenience.",2018-11-23 21:37:46,most_relevant,com.gmail.jmartindev.timetune +Alan Bosco,https://lh3.googleusercontent.com/a-/AOh14Gio9nZ8D6MGOpZKiML6CCiOJ4OjZbkIDUFGpoAs3w,This is so complicated it took me awhile to to figure all the stuff. I would suggest add some tutorial on YouTube so anyone can get used to it. and the app is solid and will think about purchasing the pro version.,3,0,2.6,2019-03-24 17:11:50,"Hi Alan! You're right. The app is still evolving and some things are not intuitive yet. Our intention is to improve everything progressively. Meanwhile, we recommend to take a look at our 'Getting started' guide to know how the basics work: https://timetune.center/android-help/",2019-03-24 18:24:34,most_relevant,com.gmail.jmartindev.timetune +Sena Ingrid,https://lh3.googleusercontent.com/a-/AOh14GiN_WPtEUFzu7qgbhJ3Yt8TAw1VLhA4UnU5HVY5,"It's not clear how much it cost the premium account. Also, every time I try to go premium I get a message saying ""the in-app billing are not available on this device"". I've always do in-app purchasing and it was the first time that I got this issue. Really disappointed.",3,50,2.5.3,2019-01-27 22:31:52,Hi Sena! This error usually happens when the Google Play Services application is not enabled or installed on the device. You can see how to solve it here: https://www.techadvisor.co.uk/how-to/mobile-phone/install-google-play-xiaomi-3676150/,2019-01-28 09:07:41,most_relevant,com.gmail.jmartindev.timetune +Christopher mattias,https://lh3.googleusercontent.com/-Mg5SkWBSjZc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMIGNCoyrL8wTcMjLPEQHCW_-Cp_A/photo.jpg,"The app is overall good, just bought the upgraded version since I wanted to sync the google calender. I still cannot sync the Google calender into the calender and also would like to know if sync the 'routine' from timetune into the Google calender is possible? Thanks!",3,0,2.5.3,2019-03-13 08:34:39,"Hi! For the moment, the sync feature allows to see calendar events in TimeTune's timeline. Going the other way (from TimeTune to the Calendar) is something we're considering for the future. If you have problems with the sync feature, please click on 'Settings / Advanced / Send technical report' and put your name at the end, so we can help. Thanks!",2019-03-13 15:22:50,most_relevant,com.gmail.jmartindev.timetune +Liantorin 2004,https://lh3.googleusercontent.com/a-/AOh14Gg4H1i6WP5WKYN-CQTPfoXF-Z36q-onEO47uGv2NQ,"For 2.6.1: TimeTune background task error keep persists due to: screen is off, battery saver, powered off. You can also add new features: ""Refresh Background Tasks when accessing app"" toggle switch, it refreshes everytime when they accessing the app even background tasks blocked by system",3,0,,2019-05-23 14:55:35,"Hi. Thanks for your suggestion, we'll evaluate the possibility. However, remember that other users with Redmi 4X have been able to configure their devices and avoid this problem. We strongly recommend to check or ask in Xiaomi forums for instructions about your specific device model. Thanks.",2019-05-23 15:39:35,most_relevant,com.gmail.jmartindev.timetune +FREAKY EXPLORER,https://lh3.googleusercontent.com/a-/AOh14Gj-GbA5SGaGMCLo0kG3kM1f1oTf9gCneL_J8nID,"first I was using this app but when I downloaded it after a long time then strange problems occured such as the routines remainder are not coming although it's option is on... also when I login back then a caption stating ""no authorisation provided to app"" is flashed... please tell me how to resolve it",3,0,,2019-04-28 12:14:15,"Hi. This happens because Vivo devices block background tasks by default, it's not a fault with the app. You can see how to solve it here: https://timetune.center/troubleshooting/",2019-04-28 17:52:51,most_relevant,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I like this app, but in the world of Time/Schedule Management you have to be multi-platform. I would recommend that your next step in development is a web interface as the majority of a professionals day is spent on a PC or laptop.",3,0,2.5.3,2019-02-05 16:42:18,"Hi! Thank you very much for your suggestion 👍 We're definitely open to this possibility, provided the project grows as expected 📈 Cheers!",2019-02-05 21:40:40,most_relevant,com.gmail.jmartindev.timetune +AngieLuila Bradley,https://lh3.googleusercontent.com/a-/AOh14GhHkkr2fa7rLp-2IQgRieVIcWcRTK1u7hyQd2Ajyg,Pros: I like the layout. I like the ease of entering tasks. I like the widget. Cons: No check off when complete. No accountability tracking. It just didn't help at all with keeping me on task.,3,1,2.5,2018-10-19 14:31:15,"Hi! Thank you very much for your feedback. The app is still growing, but this is an option we'd like to add in the future 😉",2018-10-19 20:48:59,most_relevant,com.gmail.jmartindev.timetune +Hriatpuia Sailo,https://lh3.googleusercontent.com/a-/AOh14GiF5bo7q-xLsdFJ-A3QJQYFwauEof4nvkzOu6xtXA,Just tested the pro version. Needs to be more stable. Sometimes my work starts at 12 am?? And it doesn't sync with my google calendar. Widget needs to be fine tuned. Not quite satisfied so 3 stars.,3,0,2.5.3,2019-03-14 19:22:45,"Hi! You can make work start at any time you like. If you need help, contact by email and we'll show you how. About calendar sync, please check that your account has been enabled for synchronization (https://timetune.center/troubleshooting/#calendar). About the widget, please tell us more details, we'd like to know what you'd like to tweak. Thanks!",2019-03-14 21:09:38,most_relevant,com.gmail.jmartindev.timetune +Papiya Manna,https://lh3.googleusercontent.com/a-/AOh14GhWNgybHaCrKQ8jtgk_QzxahobP_gkr1vb0emSE,"This is app is perfect just need a checklist and daily, weekly and monthly tracker for each task... Had it been have all these, I would have given all 5 stars! You know sometimes we miss(or intentionally ignore) reminders and we need trackers for those for self development!",3,0,2.6.4,2019-07-25 19:02:11,"Hi, thank you very much for your suggestion 👍 This is a possibility we're definitely considering for the future 🙂",2019-07-25 21:48:52,most_relevant,com.gmail.jmartindev.timetune +Gleidys Soto,https://lh3.googleusercontent.com/a-/AOh14Ggf1BDtdxSWrzN2FPVgKLiyeqogkizcC6U0cYkH,This app is great if you know how to use it... I downloaded it and it just doesn't work for me it says it's a routine app but it doesn't really let you put your whole routine it only let's you put one reminder at a time.,3,0,2.6.4,2019-06-26 14:29:04,"Hi Gleidys. You can create your routines on the routine main section (Main menu / Routines). To know more about the basics, we recommend to check our guide for beginners here: https://timetune.help/en/getting-started/",2019-06-26 15:25:48,most_relevant,com.gmail.jmartindev.timetune +Selling Memes,https://lh3.googleusercontent.com/a-/AOh14GgExUFqdlkqCz7-KEvXWbdnObqe_-K4c2QP1OeGoA,"Its a good way to manage your time, but after a while the timeline menu bugs out and stops sending notifications. Besides that the app is very good.",3,0,2.5.3,2019-03-07 17:28:40,Hi! In Samsung devices this happens because the power saving mode is blocking our application. You can see how to solve this here: https://timetune.center/troubleshooting/,2019-03-07 21:27:23,most_relevant,com.gmail.jmartindev.timetune +Raj V Jain,https://lh3.googleusercontent.com/a-/AOh14GjmMVgthO4ga_jE0adApbHrYxyWXBoLpPGEHqEHNA,"Great UI. The idea is great but need a way to mark tasks/routine item as complete. and so, we can't even know our progress. Guess the use case itself is completely different.",3,0,2.6.5,2019-09-08 07:31:15,Hi Raj. This is a possibility we're definitely considering for the future of the app 🙂,2019-09-08 07:49:55,most_relevant,com.gmail.jmartindev.timetune +Jahsina,https://lh3.googleusercontent.com/a-/AOh14Gjsxemd3g9HY5Jn_e0AGi0HQh9MRLoMuttEvxLq7g,Loved it initially but after a while the notifications would stop showing up and I was constantly having to refresh background tasks; too much for me to use often.,3,0,2.5.1,2018-10-29 00:51:31,Hi. This happens when the Samsung Power Saving Mode is blocking our background tasks. You can find instructions for Samsung here: https://timetune.center/troubleshooting/#brands,2018-10-29 08:48:30,most_relevant,com.gmail.jmartindev.timetune +Pastel Gacha,https://lh3.googleusercontent.com/a-/AOh14Gj8lU4KSjaFJ37S1J2XcNgfKxHxrMCXIt6XQWPU,It's really confusing! Its hadd to make routines and stuff. Just over all really confusing. But over great way to track routines. I love the tag idea. Mabey you should add a default school tag?,3,0,2.6.5,2019-08-27 12:09:35,"Hi, sorry about that. We recommend to take a look at our starting guide here: https://timetune.help/en/getting-started/ About adding other tags, you can already create your custom tags here: Main menu / Tags 🙂",2019-08-27 20:32:35,most_relevant,com.gmail.jmartindev.timetune +I'm Shaine,https://lh3.googleusercontent.com/a-/AOh14Gj1HQ0niwASae1sa-VcfHPx9j8Ot40X16xB0mRB0A,The layout for the app is awesome. But it would be better if non-routine task can be added into the timeline with the same activity for routine task.,3,0,,2019-03-30 18:22:28,,,most_relevant,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,UI can be improved. More rounded corners instead of hard corners. It makes the app look more modern. (my opinion),3,0,2.6,2019-04-01 11:09:03,"Hi! We want to improve UI, but we need more details. Tell us please what you didn't like and we'll make it better. Thanks!",2019-03-17 21:00:05,most_relevant,com.gmail.jmartindev.timetune +Leo Rowan,https://lh3.googleusercontent.com/a-/AOh14GjZ1lFrZOYGdflYWorK956u6GpRDXLzGovg5eg1,"This app has a lot of potential, but a few things could be added, and tweaked. I recommend adding a calender, and more icon options.",3,1,2.6.1,2019-05-10 00:05:36,"Thank you very much for your feedback, Leo. Indeed, the application is still young but more improvements will be added progressively.",2019-05-10 06:44:10,most_relevant,com.gmail.jmartindev.timetune +Randeh,https://lh3.googleusercontent.com/a-/AOh14GhgeYSsyl9QaV8Ep3ZOHxaSv-ycTLZtqmSqPTxRJA,Difficult to use and doesn't show name of activity only when I click on it,3,0,,2020-01-28 03:48:36,"Hi Randeh, sorry about that. The project is still evolving but we'll be adding more improvements progressively.",2020-01-28 09:27:27,most_relevant,com.gmail.jmartindev.timetune +Obaid Paracha,https://lh3.googleusercontent.com/a-/AOh14GiBtA5_tUShspQ-ea3RnnsDlNoDPzA4eeXzy7i3zA,"it seems like a really nice app. But some functionality is broken. when I add routine delete few items, it merges in wrong way so some days become small while others have 34 hours",3,0,2.5.1,2018-12-19 21:10:38,"Hi, we're interested in this case. If possible, please contact by email at timetuneapp@gmail.com so we can investigate. Thanks a lot 👍",2018-12-21 19:38:35,most_relevant,com.gmail.jmartindev.timetune +m_3lg,https://lh3.googleusercontent.com/a-/AOh14GgBywaxBxq0JEKTLhv9yI3-YGuMX-xTF08IQLvemA,"it's a great app, but I can not depends on it, because sometimes it is not working well, I have to refresh background task",3,0,2.6,2019-03-28 12:07:44,Hi! This happens because the power saving mode or similar is blocking our application. You can see how to solve it here: https://timetune.center/troubleshooting/,2019-03-28 16:19:54,most_relevant,com.gmail.jmartindev.timetune +parker ingham,https://lh3.googleusercontent.com/-xvi92pyKtck/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO-DsXH0sdcSSGsZ8hEnCYOQAgxKw/photo.jpg,"When you start to reschedule things, the interface is very awkward moving times around. For example, moving everything forward or backward on the schedule is very un intuitive",3,0,,2019-08-28 10:15:35,"Hi, sorry about that. The project is still evolving but we'll be adding improvements progressively. Thanks.",2019-08-28 14:14:55,most_relevant,com.gmail.jmartindev.timetune +Daniel Shahata,https://lh3.googleusercontent.com/-FTTcovoNWps/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMga7n-sDOw2nE6ALHBo3q8t0avhA/photo.jpg,"Good but very confusing It was good if I knew how to use it. The whole set up was very confusing and hard to understand, I really hope in the future it becomes simpler",3,0,,2019-09-09 01:15:22,"Sorry about that, Daniel. Indeed, our intention is to make things more intuitive in future updates. Meanwhile, we recommend to check our starting guide here: https://timetune.help/en/getting-started/",2019-09-09 08:30:07,most_relevant,com.gmail.jmartindev.timetune +Connor,https://lh3.googleusercontent.com/a-/AOh14GhNJCmSmCCmebbhU0YOb6e37pceKTgRfNE2FnbGrA,The Concept is quite elligant yet also hard and confusing to understand. It would be eaier if there was a calendar setting and/or addition to help the user plan along with a timeline.,3,0,2.5.3,2019-02-12 01:13:24,"Hi! Thank you very much for your feedback. You're right, some things are not intuitive yet. Our intention is to refine the app in successive versions.",2019-02-12 08:24:09,most_relevant,com.gmail.jmartindev.timetune +Aachman,https://lh3.googleusercontent.com/a-/AOh14Gh5CuQyy_j2ltRUmR1gB4jAw47MATAAouf2_T6K9g,App is overall amazing Only thing that I was missing that there is not any feature for prioritising the activities. Hope the developers will add it soon.,3,0,2.4.4,2018-09-19 17:30:09,"Thanks for your suggestion, Aachman. We will analyze the idea.",2018-09-19 19:59:26,most_relevant,com.gmail.jmartindev.timetune +Imamul Arefin Rimon,https://lh3.googleusercontent.com/a-/AOh14GgyiOH4Makbxq3ELPGlarT2xzsnpRYszT3FHJUG,The problem is the phone is not ringing even though Ring is turned on. Output is given Alarm Volume. Yet Its not ringing..,3,0,2.6.1,2019-05-06 13:42:18,Hi Imamul. Remember that Xiaomi devices block notifications by default when the screen is off. You can find instructions for Xiaomi here: https://timetune.help/en/troubleshooting/#brands,2019-05-06 14:38:53,most_relevant,com.gmail.jmartindev.timetune +Divita Sharma,https://lh3.googleusercontent.com/a-/AOh14GiSgG3v2xznbLrc3t48zLMQrBPbxIxQ8IIl9-PT,this app stops the alarm I set after the while and then. this is the 3rd time this has happened. otherwise it's the best.,3,0,2.5.1,2019-08-15 14:09:24,"Hi Divita. We don't fully understand your feedback. When you say that the app stops the alarm, do you mean that the alarm doesn't go off when it should? or that it sounds but it stops abruptly? Give us more details and we'll help you. You can contact us at timetuneapp@gmail.com for better communication if you want. Thanks.",2019-08-15 17:28:20,most_relevant,com.gmail.jmartindev.timetune +Sanjeev Seelan,https://lh3.googleusercontent.com/-xxrtrtS7qDA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNQvz5Q2c_nkIuOHK-xTbzqAeoQdw/photo.jpg,"It does the job I wanted, that is to ring alarm at the set time. However I am unable to clear the timeline! That is old ones. Couldn't get much help from their help center",3,1,2.6.3,2019-06-25 08:57:29,"Hi Sanjeev. For the moment, the timeline acts as a log of the things that happened, and that's why it can't be cleared (yet). We'll add other possibilities in future versions. Thanks.",2019-06-25 16:47:53,most_relevant,com.gmail.jmartindev.timetune +Dhanush Gopal,https://lh3.googleusercontent.com/a-/AOh14GhPeiB1J3oLrvbxg3u97xu_4reqJ9LZ6maVlbMu7A,Needs an In-app Guide to make the user understand how it works. Update: I really appreciate you responding and working on it. Thanks,3,0,,2018-12-18 11:59:36,"Hi! You're right, adding an onboarding tutorial is on our to-do list. Meanwhile, please check our starting guide (this is the link: https://timetune.center/android-help/). Once you get the idea, you'll see it's very easy. Thanks.",2018-12-18 11:23:10,most_relevant,com.gmail.jmartindev.timetune +TG4 Life,https://lh3.googleusercontent.com/a-/AOh14Ggsswvwq0eTjFvSKLku2AtQHCmX0iQroLIqMdd71Q,I would've given it full cuz its an amazing app and i would recommend it but the down is that it takes too long to set a schedule otherwise it is an awesome app.,3,0,2.6.1,2019-05-13 14:49:53,"Hi! Thanks for your feedback, we'll make improvements in successive versions. Meanwhile, remember to use the 'Clone day' feature to create your schedule faster. You can read more about it here: https://timetune.help/en/getting-started/",2019-05-13 17:45:57,most_relevant,com.gmail.jmartindev.timetune +Abhay Pratap Singh,https://lh3.googleusercontent.com/a-/AOh14GiObce5UMIKCAz1d2C55SGc8Wl8LX_n9QlY1X1bMw,One Problem With This App Is It Stops And Also Notification Also Hide And Ask For Refresh And Troubleshooting Then It Again Start Show Every Time I Have To Open The App And Refresh Then It Start Working This Must Be Solve,3,0,2.6.1,2019-05-21 01:14:30,"Hi Abhay. This happens because Xiaomi devices block background tasks by default, it's not a fault with the app. You can see how to solve it here: https://timetune.help/en/troubleshooting/ and here: https://dontkillmyapp.com/xiaomi We recommend to ask in Xiaomi forums as well about your specific model. Thanks.",2019-05-21 07:12:11,most_relevant,com.gmail.jmartindev.timetune +EXV diamond,https://lh3.googleusercontent.com/a-/AOh14GjwvqjvUwntlE_qXGs3xUeYgIbbng9vUT4MlJK8,The program is really awesome but i'm using the oppo f7 and it doesn't do any notification i followed a guide but it didn't help that's the programs only problem,3,0,,2018-11-19 22:52:13,Hi. Oppo devices are very aggressive and have too many settings to prevent apps from doing work in the background. They add different settings to different models too. If you already checked our troubleshooting page we strongly recommend to check the official Oppo forums. It's very probable that other users published there the steps for your model.,2018-11-20 09:39:26,most_relevant,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,It's simple and easy to use but notification often doesn't work about 10 times a day.,3,0,2.5.3,2019-01-19 23:56:40,Hi! This happens because the device configuration is blocking our background tasks. You can see how to solve it here: https://timetune.center/troubleshooting/,2019-01-20 09:48:29,most_relevant,com.gmail.jmartindev.timetune +manu soi,https://lh3.googleusercontent.com/a-/AOh14GjBOzJrk3vQRyODIoGS08WTmE5njzGj3g7WkpEA7Q,I think the app should request permission over other apps or if possible have it as a widget. It keeps getting inactive when removed from recent files tab of the phone.,3,0,2.4.4,2019-09-02 10:15:03,"Hi Manu. This happens because Tecno added a control to kill applications when removed from the list of recent apps, it's not a fault with TimeTune. This is a common practice in Chinese manufacturers, and the only way to solve it is to find that control and change it. More information here: https://dontkillmyapp.com/",2019-09-02 14:20:32,most_relevant,com.gmail.jmartindev.timetune +DancingFor Angels,https://lh3.googleusercontent.com/a-/AOh14Gj-WI0pigB63Cogi248n9BhtFAQKmaDXASzhVOg,"Edit: You have to buy the pro version if you want to sync your calendar, which to me is an essential component of a time planning app...",3,0,2.5.1,2018-11-14 21:11:04,"This is not true. There are only three premium features but none of them is essential. You can use as many routines, reminders, timers and events as you need in the free version. Please check it better before giving an unfair review.",2018-11-12 18:15:41,most_relevant,com.gmail.jmartindev.timetune +Bee Romeo,https://lh3.googleusercontent.com/a-/AOh14Gi3hGdy6nc8rzKMHi2DvS24ArQwCKKd57PHR85e7Q,"It seems very nice, the inferface can just get pretty overwhelming to look can.",3,0,2.5.3,2019-02-07 14:11:24,,,most_relevant,com.gmail.jmartindev.timetune +Thành Nguyễn,https://lh3.googleusercontent.com/a-/AOh14GiGIDPG90M1HZ90bkY7VoAvjD_Bn3TC0nYfdu5MwA,I have purchased Pro version but still no calendar view. Please add calendar view beside the Timeline view,3,0,2.5.2,2018-12-31 03:41:26,"Thanks for your suggestion, Thành! 😃",2018-12-31 08:21:09,most_relevant,com.gmail.jmartindev.timetune +Bhaven Chaudhary,https://lh3.googleusercontent.com/a-/AOh14GhhItlSrdOQ4hsOK7FKPzu1oQs9Vm18ZvJaLSgILA,"nice app but after enabling it, whenever i tried to open clock from taskbar this aap gets open instead, which i don't what",3,0,2.6.1,2019-05-22 07:55:44,"Hi Bhaven. When there's an alarm scheduled, the taskbar opens the application that owns that alarm. You can change this behavior for TimeTune by using weak alarms instead of clock alarms (TimeTune / Settings / Advanced / Scheduling method).",2019-05-22 20:17:56,most_relevant,com.gmail.jmartindev.timetune +Bikash Rajbanshi As Df,https://lh3.googleusercontent.com/a-/AOh14GhpldrXkogtnwNSNbMXTw9K1DmpIA3dCcpSHvecdDA,"this is good but, you need to update: where we can sync on our desktop or another phone via google or else.",3,0,2.5.3,2019-02-11 04:20:11,Hi! Thanks a lot for your suggestion 👍 The app is still young but this is a possibility we're considering for the future 😃,2019-02-11 08:47:44,most_relevant,com.gmail.jmartindev.timetune +vaibhav salokhe,https://lh3.googleusercontent.com/a-/AOh14Gi4x0VLTnnboGsdugB-hlTjyNTd95ptLVfRBIlu,i used to love this app..... but now it has been ruined..... made things more complicated and v can't assign according to days of week....,3,0,,2019-01-30 07:32:29,"Hi, we're sorry to hear that. Please tell us exactly which things you find difficult and we'll look into it, we want to help. If you prefer, you can contact by email at timetuneapp@gmail.com for better communication. Thanks.",2019-01-30 08:17:20,most_relevant,com.gmail.jmartindev.timetune +Sri Venkata Sheshu Swamy,https://lh3.googleusercontent.com/a-/AOh14Gh3dNDBNMRfZCbq00MjlpukTE4m58r2N7q7eUF8GB8,"How different it is from Google Calendar ? Your idea is Good and interesting, I am a knd of person who try following this.",3,0,2.6.4,2019-07-19 18:59:30,"Hi! TimeTune is not intended to substitute your calendar, but to complement it. TimeTune allows you to create multiple routines and change your whole schedule for the day (or future days) by just enabling a switch. Apart from that, our intention is to add an option to track the accomplishment of the routine so you can optimize your time.",2019-07-19 21:01:07,most_relevant,com.gmail.jmartindev.timetune +Piyush K Sahu,https://lh3.googleusercontent.com/a-/AOh14GhmRYdZCZJsOYHtXUV_1vMgV6hvP-VhoD5rsSMnUw,Just add 'To Do List' feature. Highly recommend.,3,0,2.4.4,2018-09-12 16:49:52,"Hi! Thank you very much for your suggestion, Piyush!",2018-09-12 21:23:25,most_relevant,com.gmail.jmartindev.timetune +Rishabh Sen,https://lh3.googleusercontent.com/a-/AOh14Gjbow15WPlYwbLQXuTK8ToGhYIfehko6DUXMexyeQ,"It doesn't sound for notification even i had set every options like alarm tone, vibrate etc..... Plz reply",3,0,2.5.2,2019-01-02 11:20:14,"Hi Rishabh. This happens because Xiaomi devices block background tasks by default, it's not a fault with the app. You can find general instructions for Xiaomi here: https://timetune.center/troubleshooting/#brands",2019-01-02 11:48:03,most_relevant,com.gmail.jmartindev.timetune +ザン,https://lh3.googleusercontent.com/a-/AOh14GiWFDpoqXJKkpg3wXsR-aWhnkooSs-iDLLzmbtM,i think you need to improve the ui... and the ui names. its really confusing.,3,0,2.5.1,2018-12-04 09:46:30,"Hi! Thank you very much for your feedback 👍 We're open to making changes, but we need to know more details. If possible, please contact by email and tell us what you'd like to change, it's the only way we can do something about it. Thanks! 😃",2018-12-04 09:58:17,most_relevant,com.gmail.jmartindev.timetune +Anmol,https://lh3.googleusercontent.com/-Gl3kmCtXIqs/AAAAAAAAAAI/AAAAAAAAQD8/AAKWJJNKKodCOcq9W-j6Xtp5snZZAkvLRA/photo.jpg,It would be better if there is an option in which we are able to check whether we really followed time table or not .,3,1,2.6.2,2019-05-25 01:53:25,Hi! Thank you very much for your suggestion 👍 This is a feature we'd like to add in future versions 😃,2019-05-25 08:22:13,most_relevant,com.gmail.jmartindev.timetune +Khan Bhasani,https://lh3.googleusercontent.com/a-/AOh14GgstH0LMn5MErAJHBhPLMeszYU-tGjNbV19LOih,notification does not sound. pls develop......... Why can not be set for 6 days in a routine week ...? Please like this,3,0,2.6.4,2019-07-04 01:24:10,"Hi. We don't fully understand your question about the routine, could you give us an example? Thanks.",2019-07-04 08:38:20,most_relevant,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,nice I really like this app this is very nice app to remind me our daily routine and save our time,3,0,2.5.2,2019-01-08 13:21:15,,,most_relevant,com.gmail.jmartindev.timetune +ButtonMash0847,https://lh3.googleusercontent.com/a-/AOh14Ggd8dpR9BQ0Y6l1Asmb9gIPYHmR2shZmXWfyymTlw,has potential but the interface isnt user friendly at all,3,0,2.6.4,2019-07-31 00:32:10,"Hi! If possible, please let us know which screens or which steps you found difficult. That will help us a lot. Thanks!",2019-07-31 09:17:38,most_relevant,com.gmail.jmartindev.timetune +DDA subman,https://lh3.googleusercontent.com/a-/AOh14Gi_Mjy_sbeWBS-BFuFnSSWxTw68WbOzS6cGqeX_ZQ,"the app is good ,but it would be better if it had a timeline (Please do something about that)",3,0,2.6,2019-03-30 12:41:57,"Hi. Thanks for your feedback, but we need more details. The application already has a timeline section (Main menu / Timeline). Do you mean a different kind of timeline? You can point us to another app as an example. Thanks.",2019-03-30 16:59:53,most_relevant,com.gmail.jmartindev.timetune +Rohit Modee,https://lh3.googleusercontent.com/-CLIXQLmUY8M/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMsbDqgvc2AVXaLrdCg0gtvEY5FdA/photo.jpg,Timer not working when screen locked.,3,0,2.5.1,2018-11-12 11:16:34,"This happens because Huawei devices block background tasks by default, it's not a fault with the app. You can find special instructions for Huawei here: https://timetune.center/troubleshooting/#brands",2018-11-12 18:14:34,most_relevant,com.gmail.jmartindev.timetune +Mohit Lohokare,https://lh3.googleusercontent.com/a-/AOh14GhJ2V7HsN2DjG3V_b2gTpVwxJLPSYgflWtlGScqKA,"Hi, please provide accepted, pending, decline tags on rutine notifications of activites and also show day progress for these tags or activites in app. I think it will ""force the mind"" to follow daily schedule.",3,0,2.5.3,2019-03-03 07:22:23,"Thank you very much for your suggestions, Mohit! This is a possibility we're considering for future updates.",2019-03-03 08:41:55,most_relevant,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,New version of time tune is difficult to use please upgrade it,3,0,2.5.1,2018-10-28 15:21:35,"Hi, thank you very much for your feedback, we really appreciate it 👍 If you tell us which actions you find most difficult in this version, we can look into it. Thanks.",2018-10-28 21:15:03,most_relevant,com.gmail.jmartindev.timetune +thej kzang,https://lh3.googleusercontent.com/a-/AOh14GiXOG-HA7LMVlE1VYr-Dvr9FsIS_kQqHWUhdq-J,It does not play ring tone on my mobile.,3,0,,2019-01-28 08:06:17,"Hi! If possible, please click on 'Settings / Advanced / Send technical report' and put your name at the end so know it comes from you. With the technical report we'll be able to help you. Thanks.",2019-01-28 09:11:00,most_relevant,com.gmail.jmartindev.timetune +Openeyesfreedomawaits,https://lh3.googleusercontent.com/-bDPuX_Pv9xw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNIB4y_pB2GZKFtKWQwULNTDUh-aQ/photo.jpg,i love this app so far but the notifications are not really working for me,3,0,2.5.3,2019-03-14 04:11:08,Hi! This happens because the device is blocking our background tasks by default. You can see how to solve it here: https://timetune.center/troubleshooting/,2019-03-14 09:28:40,most_relevant,com.gmail.jmartindev.timetune +Morton Muggsy,https://lh3.googleusercontent.com/a-/AOh14GiN0wQu7t7wQ47skNgWLHrAkr6suGwC3iwPoc9OZQ,"i think the app is satisfaying my will. but the pro version keeps a non-ecard user not happy, so im giving you 3/5 bcuz of this.",3,0,2.6.4,2019-07-31 18:50:18,"Hi, thanks for your feedback. The payment methods available in each country are a responsibility of Google. We developers just use their paywall and don't have a say in that. You can check the available methods for your country in this page: https://support.google.com/googleplay/answer/2651410",2019-07-31 21:46:24,most_relevant,com.gmail.jmartindev.timetune +vibhor mishra,https://lh3.googleusercontent.com/-d_NwbO9zKJg/AAAAAAAAAAI/AAAAAAAABuY/AAKWJJOt3wDmci_0WmqOOe79tzyiMAV7Lw/photo.jpg,good great greatest very good nice decent adjusting,3,0,2.6.4,2019-06-26 05:15:14,,,most_relevant,com.gmail.jmartindev.timetune +Srikanth S,https://lh3.googleusercontent.com/a-/AOh14Gis5JPRcbx493HKiMNQ5z9KgkcacOXXJM36Do5SLw,bit complicated in adding routines.. I didn't understood,3,0,,2019-03-31 18:39:01,"Hi! We recommend to take a look at our 'Getting started' guide: https://timetune.center/android-help/ Once you get the idea, you'll see it's very easy 😃",2019-03-31 21:15:16,most_relevant,com.gmail.jmartindev.timetune +Jordan Braswell,https://lh3.googleusercontent.com/a-/AOh14Gh22azIvhDF6poLnUtgWFofV1E4YAzeKyy_JKVAQw,im sure the pro version is great but it didn't keep my interest long enough,3,0,,2019-02-01 19:30:01,,,most_relevant,com.gmail.jmartindev.timetune +Abby Baron,https://lh3.googleusercontent.com/a-/AOh14Gg61vjtPCMTa1kv4Gojlp2iVa-Ec9RgryM_RgmUs9U,I am so confused,3,0,2.9,2020-03-31 17:27:45,"Hi! Please check our starting guide here, it's easier that it seems: https://timetune.help/en/getting-started/",2020-03-31 17:52:33,most_relevant,com.gmail.jmartindev.timetune +Intellect engineer,https://lh3.googleusercontent.com/-h_5C2Fx6fo8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMRa3xIvBPMeTDsSm29CgmjhTHC8g/photo.jpg,it is useful but not the perfect,3,0,2.5.3,2019-02-12 06:54:34,Hi! What would you like to add or change? Your feedback will help make TimeTune better. Thanks! 😃,2019-02-12 08:29:05,most_relevant,com.gmail.jmartindev.timetune +Facalet Marian,https://lh3.googleusercontent.com/a-/AOh14Gii9GyGMC6jTRP8kDSpGNi9wjyAtXLKx7883LVEew,Has potential but i need it for the programer which costs money,3,0,,2018-12-20 09:41:25,,,most_relevant,com.gmail.jmartindev.timetune +John Nazarene Dela Pisa,https://lh3.googleusercontent.com/a-/AOh14GiFQKEr95poKV91clsGetBcwaLc_ImdWRfndSQx,there's a bug preventing me to add names on tags please fix this,3,0,2.5.2,2018-12-30 13:16:15,"Hi! We're really interested in this case. If you could please contact by email at timetuneapp@gmail.com and help us, we'd be really grateful. Thank you very much 🧡",2018-12-30 16:27:54,most_relevant,com.gmail.jmartindev.timetune +中村かな,https://lh3.googleusercontent.com/-ZXUOLfjxalE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO8IyIhWbKcWN1b26VIVLH0q-IyAg/photo.jpg,No japanese support :(,3,0,2.5.3,2019-01-17 20:54:32,"Hi! We need help with the Japanese translation. If you'd like to help or know anyone who can help, please send them to https://crowdin.com/project/timetune, thanks! 😃",2019-01-17 22:23:26,most_relevant,com.gmail.jmartindev.timetune +Ramūnas Atkočius,https://lh3.googleusercontent.com/a-/AOh14Gj7mQ88AUUiRRpo0JoK2QFhX4D2Q08om4YkpLbpCbg,not enough customatization,3,0,2.6.5,2019-08-14 17:10:47,"Hi, what would you like to customize? We're open to ideas. Thanks!",2019-08-14 21:00:57,most_relevant,com.gmail.jmartindev.timetune +abdelhakim benmouhamed,https://lh3.googleusercontent.com/a-/AOh14GhKYu5CQuOG0yfeL7Ys3JO1DekCzpYGwHeoinVu,It doesn't ring or do any sign to remind me about my work,3,0,2.6.5,2019-08-30 08:28:30,"Hi. This happens because Huawei devices block background tasks by default, it's not a fault with the app. If you already checked https://timetune.help/en/troubleshooting/ and https://dontkillmyapp.com/ we strongly recommend to check or ask in Huawei forums. Chances are other users with the same device have published specific instructions there.",2019-08-30 15:31:24,most_relevant,com.gmail.jmartindev.timetune +vishwa Industries,https://lh3.googleusercontent.com/a-/AOh14Ggo1LtdVIl-TjQRyYd-hLcMTRxD1EcpqRI7JfZyrA,"I liked it ,nic one. thanks!",3,0,2.5.1,2018-10-23 16:41:33,,,most_relevant,com.gmail.jmartindev.timetune +VR r,https://lh3.googleusercontent.com/a-/AOh14Gi65fUT-OcsbhbnqLz3k3SrQYXSdnjiGgtyvqixsw,not really the app that I was looking for but ok,3,0,,2019-06-11 04:52:33,,,most_relevant,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Give me the best observation Time...,3,0,2.5.1,2018-11-29 19:04:54,,,most_relevant,com.gmail.jmartindev.timetune +SINGER Somya Yadav,https://lh3.googleusercontent.com/a-/AOh14GhFCwiuELISOvuH2lI7obGJlR_sAAzy3LRStwAXCQ,it does not remind us so I deleted this app,3,0,,2019-06-24 16:06:16,"Hi, this happens because Vivo devices block background tasks by default, it's not a fault with the app. You can see how to solve it here: https://timetune.help/en/troubleshooting/",2019-06-24 20:00:13,most_relevant,com.gmail.jmartindev.timetune +Ani Rasolo,https://lh3.googleusercontent.com/a-/AOh14GjlGtzDx1J27RfB9Zwhjc__cHVu8CC3pm72SAr-3Q,Gets me moving when I get a reminder,3,0,2.6.1,2019-05-13 10:58:09,,,most_relevant,com.gmail.jmartindev.timetune +Nicole,https://lh3.googleusercontent.com/a-/AOh14GgAHHnXbn8VERjEPgzGBHOXliWmeu1dPbXiM0YuFw,how to view statistics?,3,0,2.5.3,2019-01-24 19:04:21,"Hi Nicole! To view the routine statistics, just tap on the statistics icon that appears on each routine card. Apart from this, when you open a routine each day has a 'Day summary' submenu option too. That being said, our intention is to add more and better statistics in future versions 📈😃",2019-01-24 22:09:47,most_relevant,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,It hard to use,3,1,2.5,2018-10-06 01:53:23,Hi! You can find a starting guide here: https://timetune.center/android-help/,2018-10-06 08:20:11,most_relevant,com.gmail.jmartindev.timetune +KANGYANG_ PWAJOK,https://lh3.googleusercontent.com/a-/AOh14GjaZOBqVzuLeg92EEMy9dZrZvFOPe3z8WYc59kJNQ,not too bad,3,0,2.5.3,2019-02-20 13:32:37,,,most_relevant,com.gmail.jmartindev.timetune +Sophie M,https://lh3.googleusercontent.com/a-/AOh14Ggey8jhTtld4rHYrdjbSjjmkl9nS4pak_plmAcVtw,im so confused with this app,3,0,2.6.1,2019-04-28 21:32:19,"Hi Sophie! Sorry about that. The application is still evolving and some things are not intuitive yet. Please take a look at our Getting Started guide (https://timetune.center/android-help/). Once you get the idea, you'll see it's very easy. Thanks!",2019-04-29 07:10:58,most_relevant,com.gmail.jmartindev.timetune +Pedro Barba,https://lh3.googleusercontent.com/-4DxIDcGyZ9A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN9fyewQeMbqINT5cV8tjqGpsWEEw/photo.jpg,its serves a purpose,3,0,2.6.1,2019-08-10 13:32:54,,,most_relevant,com.gmail.jmartindev.timetune +Aleksejs,https://lh3.googleusercontent.com/-27guv-9kTlo/AAAAAAAAAAI/AAAAAAAAAO4/AAKWJJNDgysyaVaTVbsf-M_d_ht1Jcwtog/photo.jpg,"Hmm, I just don't like it",3,0,2.6.4,2019-07-24 15:39:25,,,most_relevant,com.gmail.jmartindev.timetune +S.A,https://lh3.googleusercontent.com/a-/AOh14Gjh8IeDHBuz-GaSz0z_ZAx3Ix04zb7tYPXi17Mndg,no reminder tone else 5 star,3,0,2.6,2019-04-15 06:10:27,"Hi. OnePlus devices include many settings to block notifications. Please check instructions for OnePlus here: https://dontkillmyapp.com/oneplus If the problem is only the sound, you can contact us at timetuneapp@gmail.com and we can help. Thanks.",2019-04-15 08:12:36,most_relevant,com.gmail.jmartindev.timetune +Sinthya de Andrade,https://lh3.googleusercontent.com/a-/AOh14Giwkq9uh60e_mcvuW5w8U7y4exQkwRIkdaOau1xyA,"A really good app but since the new update the interface look so bad, was so much cuter and clean before now it's weird",3,0,2.9,2020-04-04 22:32:34,"Hi, thanks for your feedback. We remain open to all possibilities for the future.",2020-04-05 08:30:14,most_relevant,com.gmail.jmartindev.timetune +Shivani Nashier,https://lh3.googleusercontent.com/-pMiOEojTp9Y/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPo8m01SFcpQVwar6g2XQmGZIuLZQ/photo.jpg,I have tried various time organizing apps and this one is best till now.,3,0,2.9,2020-04-05 08:54:49,,,most_relevant,com.gmail.jmartindev.timetune +Avis Ejerenwa,https://lh3.googleusercontent.com/a-/AOh14GgWyT2o1R7Cyb_W1HxbbkvvGVwXAhIJdA3td6hWYA,"This is a very cool app, and thus have the ratings. How ever it will be nice if you can add the functionality of sharing task or even with other users. This will make it the all in one Project/Task manager. Review Update : Previously, I was able to pick custom tags when setting a new event, but now I can't and I have to pick a color and look for the same icon each time I want to create a new event. This is counter productive as the main aim of the app is to help optimize time. Please fix this",3,0,2.7.1,2020-02-03 16:55:04,"Hi, please contact us at timetuneapp@gmail.com and we'll find what's happening. Thanks.",2020-02-03 19:25:44,most_relevant,com.gmail.jmartindev.timetune +janardhan pai,https://lh3.googleusercontent.com/a-/AOh14GiZyzpHY9U4IsyqMSsq1cltj_AJusj7hdmq0VIG,Good,3,0,2.6.8,2019-11-21 05:25:13,,,most_relevant,com.gmail.jmartindev.timetune +Xavi Srr,https://lh3.googleusercontent.com/a-/AOh14GhQmUt6dPFXuKHUpYDlacDMAM6qkcm_PIY2xm1DYg,Good,3,0,2.6.5,2019-09-07 05:01:08,,,most_relevant,com.gmail.jmartindev.timetune +Sakib Hasan,https://lh3.googleusercontent.com/a-/AOh14Ggs5gFwAZBe0Z4dowqHeyJtE68pbqCtufJLlTjaOg,critical,3,0,2.6.4,2019-07-22 09:58:51,,,most_relevant,com.gmail.jmartindev.timetune +Sourabh kumar Prasant,https://lh3.googleusercontent.com/a-/AOh14Gj8eg_DraKtrgurat8BotQNM5BsIWv8ycWwlctcqg,Some features are to be paid.,3,0,2.6.1,2019-04-25 12:34:57,"Hi Sourabh. Remember that there are only three premium features but none of them is essential. You can use as many routines, reminders, timers and events as you need for free. Thanks.",2019-04-26 07:18:19,most_relevant,com.gmail.jmartindev.timetune +Mohammad Wael,https://lh3.googleusercontent.com/a-/AOh14Gik6oAT9w0I6Qj9A0ZRrfdMST2OYuoloDT49t13jw,great concept,3,0,2.6,2019-04-03 16:10:12,,,most_relevant,com.gmail.jmartindev.timetune +Rohini Jambhalikar,https://lh3.googleusercontent.com/a-/AOh14GjHzQ-xqjqZ84zcLFimpJuvDiC2qf-60odco3yhYA,nice app,3,0,2.6,2019-04-22 08:05:08,,,most_relevant,com.gmail.jmartindev.timetune +DeadEnd Jeni,https://lh3.googleusercontent.com/a-/AOh14GhMbDzcTwMZhnjivuq4fBIgph5IT-TTStICnxp_RQ,I love this app. I would really love an option to check off or mark that a task was complete.,3,0,2.5.3,2019-03-03 22:47:02,Hi Jeni! Thank you very much for your suggestion 👍 This is a possibility we're considering for the future of the app 😃,2019-03-04 08:12:51,most_relevant,com.gmail.jmartindev.timetune +Faizah Dz,https://lh3.googleusercontent.com/a-/AOh14GixVaF6CD4EGYdsnYf0Km8rlRfamCR-8dv6STg_xQ,"Lebih suka tampilan aplikasi yang lama, karena lebih mudah digunakan & diatur daripada harus terus scroll ke bawah untuk melihat hari berikutnya.",3,0,2.5.2,2018-12-31 17:21:12,"Thank you very much for your feedback, Faizah. We're currently gathering feedback about the new interface in order to make decisions for the future.",2018-12-31 18:06:19,most_relevant,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Good app and nice after the latest update,3,0,2.5.1,2018-10-24 06:22:28,"This happens because Xiaomi devices block background tasks by default, it's not a fault with the app. You can find special instructions for Xiaomi here: https://timetune.center/troubleshooting/#brands",2018-03-31 14:15:23,most_relevant,com.gmail.jmartindev.timetune +Amartya Nath,https://lh3.googleusercontent.com/a-/AOh14Gh25jRwvewrjFUiQqslny2LhOSYOEIRMVWGRSgm,It's okay,3,0,2.5.1,2018-12-01 19:43:41,,,most_relevant,com.gmail.jmartindev.timetune +Kishan Singh bhati,https://lh3.googleusercontent.com/a-/AOh14GjmUejRfHe8FoWzuUKnGLcKIDVxIzy-JlQfHfYYNQ,good app.,3,0,2.5.1,2018-12-21 04:57:14,"Hi! If you have any questions or suggestions about the app, let us know. We're here to help! 😃",2018-12-21 19:44:04,most_relevant,com.gmail.jmartindev.timetune +Angela Kvasha,https://lh3.googleusercontent.com/a-/AOh14Gh46EBnjYxFycvpZQPooimFb8tbH6mS40ft4F-NrA,"Really don't like that they changed the empty time slots back to the way they were (whenever you delete an activity the activity gets replaced with an empty block separate from the empty blocks before or after it), I find it to be extremely unnecessary. But the new feature of increasing or decreasing an activity in 1, 5 or 15 minute chunks is great, and the programmer feature works well as always, particularly good for planning out studies and work.",3,30,2.5,2019-02-15 22:31:46,"Hi Angela! Thank you very much for your feedback, we really appreciate it 😃 The thing about empty blocks is a trade-off. If we want empty blocks to be movable, we cannot join them automatically (and vice versa). So, we preferred to give the user the freedom to manage their blocks as they need. Remember you can join the blocks if you need it too.",2018-10-26 08:34:26,most_relevant,com.gmail.jmartindev.timetune +L. F. T.,https://lh3.googleusercontent.com/-2zuE1hBltC4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOM8KUIFfVDG1irfI47EpB85WH39w/photo.jpg,I don't like the new update. It's very confusing. I can't use it anymore :(,3,2,2.5,2018-10-03 23:11:43,"Hi, could you give us more details? What do you find confusing? If you had to choose one thing, what would you miss most from the old interface?",2018-10-04 08:29:27,most_relevant,com.gmail.jmartindev.timetune +Bhuvan T s,https://lh3.googleusercontent.com/a-/AOh14GjO3NEATTV0x9vGDTO8dNORUdr07rcMkipkFHfSoQ,Hell,3,0,2.5,2018-10-09 14:21:28,Hi. Please give more details. We want to know in order to improve. Thanks.,2018-10-09 14:30:01,most_relevant,com.gmail.jmartindev.timetune +Katie Gray,https://lh3.googleusercontent.com/a-/AOh14GiOqoTkGSTpulkCvDRocfOZeeTeX66VJ_QpZca_,"Could be a lot better. I wish we were able to check off items in our +routine as we finish them so we can move on to the next task. I would also +like to see a timer associated with the routines so we can see if we are +falling behind or are ahead of the time we have budgeted. I have my morning +routine, but it has multiple tasks within it. If we were able to condense +my tasks into the routine, it would make things look more organized. All in +all a very good app if you want to stay organized, but I don't think I +wouldn't use this app until the mentioned points are added. If these all +exist already, please let me know- because I couldn't figure out how to get +to them",3,0,2.4.4,2018-08-12 08:07:26,"Thank you very much for your feedback and suggestions, Katie. We don't have these features yet but the project is still growing. We'll be adding more features progressively.",2018-08-12 08:55:08,most_relevant,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I like this app i really do. However one caveat i feel is that it can only sync to a gmail or the native phones calendar. Outlook calendars are not supported as far as I can tell. So for me, I work with outlook, thus any meetings etc cant be viewed seamlessly with respect to a current timeline plan.",3,0,2.4.4,2018-09-03 02:59:37,"Hi, thank you very much for your feedback. You're right, for the moment we only sync with Gmail accounts, but we'd like to add other providers in future versions.",2018-09-03 08:39:48,most_relevant,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"It's well put together. But the timer functionality doesn't really belong, +the controls are unintuitive and they have an arbitrary 5min minimum which +ruined the use-case I was going to use it for.",3,0,2.4.4,2018-08-02 02:22:55,Hi. Thank you very much for your feedback. The project is young but more improvements will be added progressively.,2018-08-02 08:21:14,most_relevant,com.gmail.jmartindev.timetune +Ashish Lamba,https://lh3.googleusercontent.com/a-/AOh14GgIudiCa4uasVwHetfaZGrr65qn5XQK0F2FNufioeI,"There is one problem that not notified me accurate time it's 5 to 10 +minutes after wake me up why I don't know please help me regarding this",3,0,2.4.4,2018-07-18 02:48:15,"Hi Ashish. Please check possible causes on our troubleshooting page (https://timetune.center/troubleshooting/). If you cannot find a solution there, you can contact by email for more help. Thanks.",2018-07-18 08:49:02,most_relevant,com.gmail.jmartindev.timetune +Sagar saini,https://lh3.googleusercontent.com/a-/AOh14Gi4G0hQzVzNWz4u8eXJIV6fYT47obOXfToBrdwWCA,"App is good but have some bugs.....Notification changes automatically to +default after some time",3,0,2.4.4,2018-07-05 18:33:22,"Hi Sagar. Please check our troubleshooting page for possible solutions: https://timetune.center/troubleshooting/ (if you don't find the solution there, you can contact by email for more help). Thanks.",2018-07-05 21:02:44,most_relevant,com.gmail.jmartindev.timetune +i i,https://lh3.googleusercontent.com/a-/AOh14GjKjrxfygkqFu9My4NeBfEYoMMjkUzYZeiHfIFp,I loved this app when I used it 2 years ago but can I no longer log in?,3,0,2.4.4,2018-07-09 07:47:18,Hi. There must be some confusion here. We never had a 'log in' option. This is a possibility we're considering for the future. Thanks.,2018-07-09 08:57:06,most_relevant,com.gmail.jmartindev.timetune +Jessica Munro,https://lh3.googleusercontent.com/-GUZebiXebXs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOhZ5O7d-VQZ2V5fUKSvsGSjnAaKg/photo.jpg,It is ok but maby it could be a bit more clear,3,0,2.4.4,2018-08-11 21:25:27,Hi Jessica. Thank you very much for your feedback. Our intention is to add improvements in successive versions.,2018-08-12 08:53:27,most_relevant,com.gmail.jmartindev.timetune +António Quizela,https://lh3.googleusercontent.com/a-/AOh14GitGW9mrXPFamZ1EhNriGjvbPsmwkNkZ-rvvSkP9g,It's a good time planner/controller ...,3,0,2.4.4,2018-06-13 12:50:51,,,most_relevant,com.gmail.jmartindev.timetune +Pankaj Mishra,https://lh3.googleusercontent.com/a-/AOh14Gi_F0-f5HW-1R0Sy_sL1_625tHQHKC1BRPeoVeddQ,Nice app,3,0,2.4.4,2018-06-15 02:39:46,,,most_relevant,com.gmail.jmartindev.timetune +Kamal Sharma,https://lh3.googleusercontent.com/-xgEFy_i7064/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPlwdsEhi7piugbac0IjEQaTKowKA/photo.jpg,"Please also add the option to import few activities from any day instead of the whole day onto timeLine of a routine. Further please add the feature of allowing a to start a routine custom routine Using time interval instead of defining exact time, because on some bad days due to unavoidable circumstances we are out of schedule and adding a fresh custom timetable for the day hurts a lot modifying Timings for every activity. For rest of its features it worth 5*****.",3,8,2.4.3,2018-09-09 03:19:37,"Thanks for your suggestions, Kamal. More improvements will be added progressively.",2018-09-09 08:12:34,most_relevant,com.gmail.jmartindev.timetune +Faris Aiman,https://lh3.googleusercontent.com/-b2ohWwwkjDI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMejAiupgqBvnjc__1VEwAQIefPhw/photo.jpg,"idk wht hppen but every time i open the app it stated tht the app hs been +blocked by system..idk y..btw im using oppo f1s",3,0,2.4.3,2018-05-29 16:49:16,"This happens because the device is blocking our background tasks, it's not a fault with the app. You can find special instructions for Oppo here: https://timetune.center/troubleshooting/#brands",2018-05-29 17:18:10,most_relevant,com.gmail.jmartindev.timetune +Rajni 01,https://lh3.googleusercontent.com/a-/AOh14Gil0MDSIl-X6tknooAUuhAcCNixYfTmubYkQxqtOA,"It would help me a lot if it could silence the notification from other apps +when I'm studying",3,0,2.4.3,2018-08-09 05:37:05,"Thank you very much for your suggestion, Rajni. We will investigate if this is possible.",2018-08-09 08:43:17,most_relevant,com.gmail.jmartindev.timetune +Mohit Singh,https://lh3.googleusercontent.com/a-/AOh14Ghh9lydTHCo9OA897dD5y4i_uW0tq1qZsApMOoE,"I liked its features. These are well thought through. If I could go back in +timeline, it would have been better.",3,0,2.4.3,2018-06-05 12:49:03,Thank you very much for your suggestion about the timeline. We will analzye the idea.,2018-06-05 13:22:07,most_relevant,com.gmail.jmartindev.timetune +Jason Kidd,https://lh3.googleusercontent.com/a-/AOh14GhNPAfp7c5WldfeD0eep5GRV86LXyVDSITm5SOiHA,Not for me,3,0,2.4.3,2018-05-16 13:39:05,,,most_relevant,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Gd,3,0,2.4.3,2018-06-08 10:48:15,,,most_relevant,com.gmail.jmartindev.timetune +K-pop lover,https://lh3.googleusercontent.com/a-/AOh14Gh_eyuNwjj0b9W1x4oGMnwn3uZnl1PFaVP2HXp4HA,Amazing app,3,0,2.4.3,2018-06-01 20:33:32,,,most_relevant,com.gmail.jmartindev.timetune +Moja Baba,https://lh3.googleusercontent.com/a-/AOh14Gi6U2LFkrSuEoe_aJNiOC4YBHULSDOEhxOQqW61wA,"It's okay application however it is not that practical. Reason is more +often than not I have some event I'd like to add and shift around my +routine. This is not possible at the moment (using programmer for 2 out of +3 days is meticulous just so I can add 1 event). It would be good to have +the ability to move and split routine items with events. In essence make +programmer less of a hustle, and more natural and quick to use.",3,1,2.4.2,2018-05-13 22:37:40,Hi. Thank you very much for your feedback. More improvements will be added progressively.,2018-05-14 07:35:48,most_relevant,com.gmail.jmartindev.timetune +Juan Gallardo,https://lh3.googleusercontent.com/a-/AOh14GikIxSyrPFZ8DrWOq6vuBc32y9ob3uEEherW0hp1g,"The app is really neat. It would be great if there was the option to pause +timers!",3,1,2.4.2,2018-04-28 03:09:04,"Thanks for your suggestion, Juan. We will analyze the idea.",2018-04-28 10:57:06,most_relevant,com.gmail.jmartindev.timetune +Yokanan Samudra,https://lh3.googleusercontent.com/a-/AOh14GjSIKtX9AkSrpT_pFJzHHdiwEMY9sappXVDWjSX3A,"Reminder sometime not working, so i must restart the reminder. Please fix it",3,0,2.4.2,2018-05-10 22:29:34,"Hi. This happens because Xiaomi devices block background tasks by default, it's not a fault with the app. You can find special instructions for Xiaomi here: https://timetune.center/troubleshooting/",2018-05-11 08:20:58,most_relevant,com.gmail.jmartindev.timetune +Arv Gopal,https://lh3.googleusercontent.com/-rRJmnTQMT2M/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNxhS29dkranlX9cTL3LBY9g8Lc5g/photo.jpg,Must have this App,3,0,2.4.2,2018-04-29 16:16:01,,,most_relevant,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Well done,3,0,2.4.2,2018-04-29 02:58:03,,,most_relevant,com.gmail.jmartindev.timetune +Dhvani Mehta,https://lh3.googleusercontent.com/a-/AOh14GhH4RXtSEw5-SEZkx-tjj-B1V05MHcG8GGFjc5MnIE,"I like this app👍but my routine won't work and notifications won't make +sounds and not appear on screen...",3,0,2.4.1,2018-04-15 04:15:55,"Hi Dhvani. This happens because the battery optimizations in the device are blocking our background tasks, it's not a problem of the app. You can see how to solve it here: https://timetune.center/troubleshooting/",2018-04-15 08:32:38,most_relevant,com.gmail.jmartindev.timetune +Ricardo Hassan,https://lh3.googleusercontent.com/a-/AOh14GiLsZOvdKVNzUjbr3xneCZ-R_HZU3KjYP7yOIIdiQ,Would love to be able to add daily reminders qith ease,3,0,2.4.1,2018-04-13 13:54:25,,,most_relevant,com.gmail.jmartindev.timetune +THOR zz,https://lh3.googleusercontent.com/a-/AOh14GgsFhuoiF8mw5keyiyrANxVuEji7XwdUWwwdLsBtA,Quite good but also need some improvement,3,0,2.4.1,2018-04-14 10:38:27,Hi Rajat. What would you like to add? All suggestions are welcome ;),2018-04-14 11:56:43,most_relevant,com.gmail.jmartindev.timetune +donna maria,https://lh3.googleusercontent.com/a-/AOh14GgmChNjZDrhVsz-yXgOFMRn9WIx5BmDbyr_XCJg,Great but basic in design and you cant not preview things such as sound. Its basic to use but some features are a little annoying like all the tags in one place. Id like the option to categorise.,3,1,2.4,2018-03-23 01:02:13,"Thanks for your feedback, Donna. It should be possible to preview the sound in the sound picker. If it doesn't play, please check the output channel in Settings / Notifications and the volume levels. If you can't solve it, you can contact by email and we'll help more. The app is still young and more improvements will be added progressively.",2018-03-23 10:50:16,most_relevant,com.gmail.jmartindev.timetune +Tim Jones,https://lh3.googleusercontent.com/a-/AOh14Gg7UWUmuuvS-1YoMC_lFwabRqfX7DUilkMcorr0rQ,Paid the 2.99 for the calendar sync as I really needed that and found that it didn't work. However they quickly refunded my money and the issue may have been with the compatibility of my phone.,3,0,2.4,2018-04-10 07:15:03,"This is explained in the troubleshooting section (https://timetune.center/troubleshooting/#calendar). Did you check there or ask for support before giving a low rating, as we ask in our description? We want to help, but you need to give us the chance. If you prefer a refund, contact by email and we'll do it too, there's no problem either. Thanks.",2018-04-07 09:34:52,most_relevant,com.gmail.jmartindev.timetune +Nithin Philip,https://lh3.googleusercontent.com/-2QjtrJ8DBJQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMyxbuystJrjNiormgTP8bI0LaJNQ/photo.jpg,Im facing an issue please.i have subscribed to your pro version and paid money google play.unfortunately im still an free user .the money debited from the bank.can you please help me?,3,0,2.4,2018-04-07 09:50:20,Hi Nithin. Please contact by email and we'll find what happened. Thanks.,2018-04-07 15:02:41,most_relevant,com.gmail.jmartindev.timetune +Merazul Basit Chowdhury,https://lh3.googleusercontent.com/a-/AOh14GjG4T5mvOqEg5r2dFjYlhXspGjtPLXY5xZtyqJu,The user interfaceis not good enough. It is not that much understandable,3,0,2.4,2018-03-27 17:35:37,"Hi, thanks for your feedback. The project is still young but more improvements will be added progressively. Remember that you can send any suggestions by email (Settings / Send feedback). All suggestions are welcome.",2018-03-27 20:16:17,most_relevant,com.gmail.jmartindev.timetune +yulianti rusdiana,https://lh3.googleusercontent.com/a-/AOh14GhLikno3UMIPcpnaFPCX3_2nU2f1a8yUnxC2ZGIzg,Widget sering ngadat dan ndak update dengan hari dan jamnya. Butuhnya pasang widget agar terupdate tapi seringnya malah gak cocok dengan waktunya. Notifikasinya pun sering g muncul.,3,0,2.4,2018-03-25 05:03:47,"Hi. This happens because Asus devices block background tasks by default, it's not a fault with the app. You can find special instructions for Asus here: https://timetune.center/troubleshooting/#brands",2018-03-25 09:44:04,most_relevant,com.gmail.jmartindev.timetune +Fernando Sam,https://lh3.googleusercontent.com/-8i9YzKalxjA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPJZiDsd9y09aGFctIuwwK9dXUBnw/photo.jpg,I guess i am wanting the routines to have synched my calendar and not my timeline... it is not clear how to keep track of my performance?i am going to have to enter everything thing in my calendar into the routines bin??,3,0,2.4,2018-03-24 13:49:41,"Hi Fernando. Thanks for your feedback. The project is still evolving, our intention is to add a tracking option in future versions. For the moment the calendar sync option is from Google Calendar to TimeTune, but we're considering to do a full sync in the future.",2018-03-24 15:56:35,most_relevant,com.gmail.jmartindev.timetune +bala subramanian,https://lh3.googleusercontent.com/-TNIShOzjCWM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMBmDit6FsCYqLysartfSecPtuGRQ/photo.jpg,It seems to be improved and noted no option to delete routines and need to go all the days and delete...,3,0,2.4,2018-04-02 09:06:04,"Hi. You can delete routines here: Main menu / Routines / click on a routine card submenu (the three vertical dots in the routine card) and select 'Delete'. If you were referring to a different thing, please let us know. Thanks.",2018-04-02 08:32:54,most_relevant,com.gmail.jmartindev.timetune +Siddhartha Hundekari,https://lh3.googleusercontent.com/a-/AOh14GgOKBYOazf_C9QWtpsxDv6FsrOz4Y1lLuxYlIhBWA,Reminder Notification tone is very low in volume,3,0,2.4,2018-03-29 16:59:13,Hi Siddhartha. You can try with another output channel (Settings / Notifications / Output channel). Remember to check the corresponding volume level too.,2018-03-29 20:00:51,most_relevant,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,great app for arranging schedules and activities. easy tool to teach u good productivity.,3,0,2.4,2018-03-29 04:45:31,,,most_relevant,com.gmail.jmartindev.timetune +Eric,https://lh3.googleusercontent.com/-50lLOqY4SNE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO1BuqfftHo4rgDtZrQ_sQEJFPfIQ/photo.jpg,"There are a lot of really cool feature with this app, but I stopped using it almost as soon as I started because of one key missing feature - the calendar view. It's weird to me that a planner app doesn't have a calendar view. It has a calendar sync option if you pay for it, but I'm not going to buy it only to find out that is not what I want. Could also be greatly improved if it included tasks and projects. Really awesome functionality, but missing some core essentials for me",3,29,2.3.4,2018-01-12 11:51:14,"Thank you very much for your feedback, Eric. The project is still young but more improvements will be added progressively.",2018-01-12 14:17:18,most_relevant,com.gmail.jmartindev.timetune +Mari Lee,https://lh3.googleusercontent.com/a-/AOh14GglMVyhiouX7HnRE5Mb34jftCNvnjtcPLNpA3tPwRY,I really like the idea but needs more updating. I move around a lot so I'd need it to update the routines and timelines with my current time zone. Or at least make it an option. Ill check back in. Few and see how it's progressing 😁,3,4,2.3.4,2018-01-14 03:10:41,"Thank you very much for your feedback, Mari. The project is young but more improvements will be added progressively.",2018-01-14 08:56:52,most_relevant,com.gmail.jmartindev.timetune +Mohamed Magdy,https://lh3.googleusercontent.com/-P4eXfKKlWXw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNxrAKlmYZvK_OBcoB0qGbIl5yKkw/photo.jpg,Hard to use Edit: after your polite replay i edited my review from one star to 3 stars still find it hard to use.. good app don't require to read a manual to use it. It should be user friendly and clear thanks any way,3,0,2.3.4,2018-01-21 11:10:57,"Thank you very much for giving more details, Mohamed. We'll be adding more improvements progressively.",2018-01-21 16:11:08,most_relevant,com.gmail.jmartindev.timetune +Laura Bunny,https://lh3.googleusercontent.com/a-/AOh14GiNhpEON7RWd6Y4x0GzGJGpm_XAm0OAba71MhvwZQ,You cannot check off when you have finished a task in your routine. 😐 Also a tad confusing. Tags are cute.,3,0,2.3.4,2018-01-24 12:16:45,Hi. Thanks for the feedback. The project is still young but more improvements will be added progressively. We recommend to take a look at our 'Getting started' guide (https://timetune.center/android-help/). Once you get the idea you'll see it's very easy.,2018-01-24 21:57:50,most_relevant,com.gmail.jmartindev.timetune +Dave Simpson,https://lh3.googleusercontent.com/a-/AOh14GgVfe8KzlZSNTe3WSizgnLAbyPzkhcl5M-6v77qOg,Great app but as someone else mentioned there's no calendar view which for me makes it pointless. Real Shame. The search goes on...,3,0,2.3.4,2018-02-05 14:02:11,"Thanks for your feedback, Dave. Keep in mind that the project is still young, more improvements will be added progressively.",2018-02-05 18:11:15,most_relevant,com.gmail.jmartindev.timetune +Kronometri,https://lh3.googleusercontent.com/a-/AOh14GgLMjbyAG3W2PZlcb9a_1sGdj7aCwFK5xmdERNm5A,Apparently I rated this app one star this time last year but I don't remember what the issue was so whatever you guys did up to now with improving the app is good. Unfortunately I'm heavily dependent on having a calendar view(not Google calendar integration but rather an option to display days via calendar) so until it's put into the app I will be uninstalling and standing by for the update.,3,0,2.3.4,2018-03-07 14:43:09,Thanks for your feedback and suggestion. We'll be adding more improvements progressively.,2018-03-07 16:01:44,most_relevant,com.gmail.jmartindev.timetune +Septy Chasanah,https://lh3.googleusercontent.com/a-/AOh14GhM9E21LHf35b3le2MjwpUEbi_2CQ7-xkGZjVUnlA,I update to latest version and notification sound won't stop. I saw in log its already fixed so I try to reinstall couple of times but still the same. I'm not always around or have the phone on my hand all the time to make it stop. Considering to download older version instead,3,0,2.3.4,2018-01-25 13:06:29,Hi Septy. If you contact by email we can give you a test to verify and try to solve the issue. Thanks.,2018-01-25 18:56:54,most_relevant,com.gmail.jmartindev.timetune +Tanu Goyal,https://lh3.googleusercontent.com/a-/AOh14Ght0qJdarQJY6E3j3ig3XlOgeIkaVeMReAhGu9rQIY,"I have set up notifications on my activities to pop up before one minute of another activity, but it never works, I don't get any reminders or notifications before my activity.Please fix it.",3,0,2.3.4,2017-12-29 03:58:15,"This happens because the device is blocking our background tasks, it's not a fault with the app. You need to find the places in your device settings where you can give TimeTune permission to run in the background and auto-start. You may need to pin the app to the list of recent apps too. If you don't find how to do it, please search in Vivo forums.",2017-12-29 11:06:33,most_relevant,com.gmail.jmartindev.timetune +Prakash Ragunathan,https://lh3.googleusercontent.com/a-/AOh14GgZO_fZ1pNSnjtA-P7ARg9HdA0CpHl7KkkGLdMG,"No snooze option for reminders. This causes some task misses. Please look at the app ""To do reminder with alarm"" for reminder buzz types and options. It would be good if these features are added in future.",3,0,2.3.4,2018-03-02 11:58:38,"Thank you very much for your feedback, Prakash. The app is young but more improvements will be added progressively.",2018-03-02 21:41:08,most_relevant,com.gmail.jmartindev.timetune +utkarsh sharma,https://lh3.googleusercontent.com/a-/AOh14GhyYW1Hxz2yH_XzgTkwuAt9U8lQJs8BszYyBwHnTQ,I don't know why but there aren't any notifications.. It never shows anything let it be reminder or routine,3,0,2.3.4,2018-02-08 04:04:04,Hi. This happens because the device is blocking our background tasks. You need to find the places in your device settings (usually on the battery settings) where you can give TimeTune permission to run in the background and auto-start. You may need to pin the app to the list of recent apps too. More info: https://timetune.center/troubleshooting/,2018-02-08 10:05:13,most_relevant,com.gmail.jmartindev.timetune +Tramek Patigdas,https://lh3.googleusercontent.com/-ISg0PjUKg3w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPzC4nR1sCT3vHl0fl14HFE1hp2sg/photo.jpg,Music doesn't play as notification of reminder... Hate it I had skipped my one routine..,3,0,2.3.4,2018-03-06 13:55:44,Hi Tramek. In most cases this is just a configuration issue. If you contact by email we can help you find what happened. Thanks.,2018-03-06 14:23:07,most_relevant,com.gmail.jmartindev.timetune +Jules Frost,https://lh3.googleusercontent.com/a-/AOh14GgziM-C7-oXNkVyHcO4_cwShvWUZ3Vdmubou-wtuw,Doesn't seem to alarm on notification. You give it an alarm go back to it and it says no alarm set,3,0,2.3.4,2017-12-12 23:39:50,"Hi. This usuallly happens when the device blocks our background tasks. You can take a look at our troubleshooting page for more information (https://timetune.center/troubleshooting/). If you don't find the answer there, you can contact by email for more help. Thanks.",2017-12-13 09:27:56,most_relevant,com.gmail.jmartindev.timetune +Anto Alex,https://lh3.googleusercontent.com/a-/AOh14GhJw_OyD2sjM5gbwN-MhLARm1MeZ0K66WrMLdvxvw,"Routine maker is amazing.., but notifications are not coming when the phone is in lock mode. So, i uninstalled it.",3,0,2.3.4,2018-01-16 02:09:30,"This happens because the device is blocking our background tasks, it's not a fault with the app. You can find how to solve it here: https://timetune.center/troubleshooting/",2018-01-16 07:48:44,most_relevant,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Just started using it, a little triki to configure at first.",3,0,2.3.4,2017-12-03 03:11:21,Hi! Remember there's an easy 'Getting started' guide on the Help section. This is the link: https://timetune.center/android-help/,2017-12-03 10:52:53,most_relevant,com.gmail.jmartindev.timetune +grxcy,https://lh3.googleusercontent.com/a-/AOh14GhP2gYTQ8eAmoCcXLgWjSAfyz9LNV48DbwaSxsslig,Its okay for a plan in a phone,3,0,2.3.4,2018-01-27 04:07:07,,,most_relevant,com.gmail.jmartindev.timetune +ruhil arshad,https://lh3.googleusercontent.com/-zj7nslfDAn0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPJPgvNLrx1Le5ybEUry8kYmqybPQ/photo.jpg,It didnt sync with the widget. Overall it great app,3,0,2.3.4,2018-02-19 02:20:13,"Hi. This happens because Huawei devices bock background tasks by default, it's not a fault with the app. You can find special instructions for Huawei here: https://timetune.center/troubleshooting/#brands",2018-02-19 09:36:04,most_relevant,com.gmail.jmartindev.timetune +Hamzeh Odat,https://lh3.googleusercontent.com/a-/AOh14Gidj4sTJbBC8kltybmuKOnjoE2JQV5x2-sKeWll5gc,Too much complex,3,1,2.3.4,2018-01-14 09:38:44,"Hi Hamzeh. We recommend to take a look at our 'Getting started' guide (https://timetune.center/android-help/). Once you get the idea, you'll see it's very easy. That said, more improvements will be added progressively.",2018-01-14 12:50:08,most_relevant,com.gmail.jmartindev.timetune +JKayombo_ Jr,https://lh3.googleusercontent.com/a-/AOh14Giz-4QYNB7A-aYnhWuNrrCtatga7Br3uWS_4IcGT5U,Very litle one,3,0,2.3.4,2018-01-21 23:59:58,,,most_relevant,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,I think its a nice app. A nice initiative,3,0,2.3.4,2018-03-01 22:40:58,,,most_relevant,com.gmail.jmartindev.timetune +j a n w e e,https://lh3.googleusercontent.com/a-/AOh14GhsbZ4sd_FlouCttbaQKDPfB-vulz0qlOYN8emnqw,The notification nor alarm won't work.,3,0,2.3.4,2018-01-29 00:54:11,"Hi. This happens because the device is blocking our background tasks, it's not a fault with the app. You need to find the places in your device settings where you can give TimeTune permission to run in the background and auto-start. You may need to pin the app to the list of recent apps too. More info: https://timetune.center/troubleshooting/",2018-01-29 09:47:11,most_relevant,com.gmail.jmartindev.timetune +Asif Khattak,https://lh3.googleusercontent.com/a-/AOh14GgoJWL_NcPZGFZpPgGjEMdUojRoO9B-ZcZp1Qn7,No signup option...?,3,0,2.3.4,2018-03-06 15:47:38,"Hi Asif. The project is still young, this is a feature we want to implement in future versions. Thanks for your understanding.",2018-03-06 16:43:54,most_relevant,com.gmail.jmartindev.timetune +Abhishek Deb Roy,https://lh3.googleusercontent.com/a-/AOh14GhPcIbMuVgJFtNgtM7y7G4L-J6P1kBJpjryzu9fZA,cloning is not working notification not accurate,3,0,2.3.4,2017-12-20 14:48:28,"Hi. This happens because Xiaomi devices block background tasks by default, it's not a fault with the app. You will find special instructions for Xiaomi here: https://timetune.center/troubleshooting/#brands",2017-12-20 17:18:29,most_relevant,com.gmail.jmartindev.timetune +Tlicia Jones,https://lh3.googleusercontent.com/-DgjkraE9Ua0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNdsz1_sc2tqk7oT3JmPIigkjNrtQ/photo.jpg,My routine is not repeating,3,0,2.3.4,2018-01-08 19:57:49,Hi Tlicia. Please contact by email so we can help you better. It might be a simple configuration issue. Thanks.,2018-01-08 22:02:59,most_relevant,com.gmail.jmartindev.timetune +Devarshini Changea,https://lh3.googleusercontent.com/a-/AOh14GgtFXj9BKxEd-fdD1ziq44AJQIbLeEX-gADYH-U,It's not bad,3,0,2.3.4,2018-01-11 05:56:36,,,most_relevant,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Great,3,0,2.3.4,2017-12-14 01:25:34,,,most_relevant,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,The app is glitchy. Notification alarms fail. I have to frequently update the time in the app. It often shows wrong timing. These issues prevent a 5 star rating,3,3,2.3.3,2017-11-27 12:57:36,"This happens because the device configuration is blocking our background tasks, it's not a fault with the app. You need to find a place (or places) on your device settings (usually on the power management settings) where you can allow TimeTune to run in the background and auto-start. More information here: https://timetune.center/troubleshooting/",2017-11-27 15:15:42,most_relevant,com.gmail.jmartindev.timetune +nivedha ganeshan,https://lh3.googleusercontent.com/a-/AOh14GgERdFFl_ekhQJjVq4t1mAkLq3X4C_0VELJJshPkg,I really liked the reply from the app and i cleared the problem witj the persistent notification And thank you time tune.. Plz if possible include a checklist option for routine which will be even more helpful Thank you!!,3,1,2.3.3,2017-11-27 03:30:57,Thanks for your suggestion about the checklist. We will analyze the idea.,2017-11-27 15:04:15,most_relevant,com.gmail.jmartindev.timetune +chimezie M. aliuna,https://lh3.googleusercontent.com/a-/AOh14GgA-JHwqrtHI1jV_cDwglYcesBvCHPUowMCj3WJAQ,"All I needed is calendar that has a loud reminder alarm system such that one's event cannot be skipped even if u slept off. But most unfortunately ur reminder only bips once a small sound that one will easily miss even while holding the phone, almost no sound at all. Pls could it be settings issue or what? I need solution pls that I may come back n give u 5*. I use Camon Cx",3,0,2.3.3,2017-11-27 11:02:02,"Hi. You can already change the sound if you edit a notification and click on the sound name. Just select a repeating sound or a custom mp3 sound from your personal storage. If you want a louder volume, you can go to Settings / Notifications / Output channel, and select a different volume output.",2017-11-27 15:11:04,most_relevant,com.gmail.jmartindev.timetune +Ashley,https://lh3.googleusercontent.com/a-/AOh14GiwqqfB6JywZMYi6ecgvVjAriQ3h9nXpSMM7YwYFg,"I paid for the pro version after playing with the app for a few minutes. Was hoping to use this to help manage my ADHD but I have two big issues with the app 1) I can't find a way to edit routines after they've already been created WITHOUT deleting the whole day. I don't think there is. 2) After I clear a day, the app shuts down. I can deal with the second issue until an update but I don't think I would have purchased the upgraded version if I would have been aware of the first issue. Still, three stars because other than the glitch & missing feature the app does exactly what it says it will.",3,1,2.3.3,2017-12-02 04:31:01,"Hi Ashley. If by editing routines you mean changing the activities, you just need to click on any activity and edit the times (if you were referring to a different thing please give us more details). The error after clearing a day will be solved very soon. Apart from this, if you'd like a refund, just contact by email and we'll do it. No problem.",2017-12-02 07:34:27,most_relevant,com.gmail.jmartindev.timetune +christy spann,https://lh3.googleusercontent.com/a-/AOh14GhxXezGhqiHCxuTZ68md6cnhY6EZRQz5eND3Imq4g,It still won't stop ringing and I tried to change the tone and it wouldn't do that either. This is after the update,3,2,2.3.3,2017-11-24 17:07:25,Hi Christy. Please contact by email so we can help you better. Thank you very much.,2017-11-24 17:20:02,most_relevant,com.gmail.jmartindev.timetune +S Z,https://lh3.googleusercontent.com/a-/AOh14GiqTsCnCU2FlyGipbAptSYodHf4l6AH_kHunTqm,Timeline keeps ignoring certain tasks and hardly ever actually notifies me. Good if I'm keeping an eye on it.,3,2,2.3.3,2017-11-24 07:21:11,"This happens because Huawei devices block background tasks by default, it's not a fault with the app. You can find special instructions for Huawei here: https://timetune.center/troubleshooting/#brands",2017-11-24 09:28:22,most_relevant,com.gmail.jmartindev.timetune +Hemant Sen,https://lh3.googleusercontent.com/a-/AOh14GjxNElUncJ2VQlkInq-MXnONXTe9I_umbypdrBDYw,Widget stuck after some time and not updating according to app untill we lauch app why plz fix it,3,0,2.3.3,2017-12-01 10:27:33,"This happens because Xiaomi devices block background tasks by default, it's not a fault with the app. You will find special instructions for Xiaomi here: https://timetune.center/troubleshooting/#brands",2017-12-01 14:44:45,most_relevant,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Nice app,3,0,2.3.3,2017-11-26 00:30:27,,,most_relevant,com.gmail.jmartindev.timetune +Ellie Deanne,https://lh3.googleusercontent.com/-I8xU-toI-sY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPnjYpUwVHQCuThjTA6c-2UDMV9qw/photo.jpg,I love this app. Only issue is there is no check mark to check if you completed something. Of course in a perfect world we get it all done and don't forget but for those not so perfect people I wish there was a way to check off what you finished for the day,3,1,2.3.1,2017-10-12 23:54:08,"Thank you very much for your suggestion about the check mark, Ellie. We will analyze the idea.",2017-10-13 08:05:25,most_relevant,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Events imported from synced calendars REALLY need to be seen in the events tab! Also should be able to view timeline for an arbitrary future date. If they fix this, the app will be great.",3,0,2.3.1,2017-10-10 11:30:29,"Thanks for your suggestions, we will analyze the ideas and more improvements will be added progressively.",2017-10-10 15:54:14,most_relevant,com.gmail.jmartindev.timetune +Shivani Nashier,https://lh3.googleusercontent.com/-pMiOEojTp9Y/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPo8m01SFcpQVwar6g2XQmGZIuLZQ/photo.jpg,I have tried various time organizing apps and this one is best till now.,3,0,2.9,2020-04-05 08:54:49,,,newest,com.gmail.jmartindev.timetune +Sinthya de Andrade,https://lh3.googleusercontent.com/a-/AOh14Giwkq9uh60e_mcvuW5w8U7y4exQkwRIkdaOau1xyA,"A really good app but since the new update the interface look so bad, was so much cuter and clean before now it's weird",3,0,2.9,2020-04-04 22:32:34,"Hi, thanks for your feedback. We remain open to all possibilities for the future.",2020-04-05 08:30:14,newest,com.gmail.jmartindev.timetune +Maanya Ajeet kumar,https://lh3.googleusercontent.com/-rIRcLD_3KTc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNlTSjTqRBGS73Ohnj-GE8haWvpkQ/photo.jpg,I'm still trying it out but so far it has helped a lot. One would not waste time if they have this app in hand.,3,0,2.9,2020-04-01 16:35:53,,,newest,com.gmail.jmartindev.timetune +Amber Ray,https://lh3.googleusercontent.com/a-/AOh14Gjo4ahbU_ImAdDshKIziojkTk2cZXz0YmgoQEmRAw,"This is a decent time managment app. The ability to create routines is handy, though it doesnt warn you or show if activities are overlapping. The most recent update (as of 3/30/2020) made the app look much cleaner, which is nice. I would like to see more personalization options t'wards the look af the tags and app. Choices now are very slim. The $5 price tag for the pro version doesn't feel worth it (yes, buyer's remorse), so if you can manage fine with the free version, stick with that.",3,9,2.9,2020-03-31 18:29:23,"Hi, thank you very much for your feedback 👍 We keep working on new improvements for the app 👷‍♀️ Stay tuned for more changes in 2020 🙂",2020-03-31 20:44:31,newest,com.gmail.jmartindev.timetune +Abby Baron,https://lh3.googleusercontent.com/a-/AOh14Gg61vjtPCMTa1kv4Gojlp2iVa-Ec9RgryM_RgmUs9U,I am so confused,3,0,2.9,2020-03-31 17:27:45,"Hi! Please check our starting guide here, it's easier that it seems: https://timetune.help/en/getting-started/",2020-03-31 17:52:33,newest,com.gmail.jmartindev.timetune +Kritika Vaishnave,https://lh3.googleusercontent.com/a-/AOh14Gh-WpY4V57CydvRD4DniNpkc3XY86kfBdM1ytUDGQ,"Notification sound does not work now, before it does.",3,0,2.7.1,2020-03-18 15:04:10,Hi. Remember that Xiaomi devices are very aggressive with battery management and they include many controls to block apps and notifications. If you already checked https://timetune.help/en/troubleshooting/ and https://dontkillmyapp.com/ we strongly recommend to ask in Xiaomi forums for instructions about your specific device model. Thanks.,2020-03-18 21:28:12,newest,com.gmail.jmartindev.timetune +Vaibhav Sharma,https://lh3.googleusercontent.com/a-/AOh14Ghdlo2Z3L69ClFDIQEN21aMvSNOHvebpgEWM7Rb,The app was awesome but it stopped working in a week. I'm not able to add any routine now.,3,0,,2020-03-13 13:38:00,Hi. Please contact us at timetuneapp@gmail.com and we'll help you solve the problem. Thanks.,2020-03-13 13:46:19,newest,com.gmail.jmartindev.timetune +Carl J du Preez,https://lh3.googleusercontent.com/a-/AOh14GhVesgc8E1jIjOOxosK-BsbR7SRihwCbbuvuy_7LZQ,It's usefull - but would be much nicer if there was an option to play a notification tone just once instead of repeating it continuously.,3,1,2.8,2020-03-13 06:35:03,Hi. The app shows all the sounds from the device (repetitive and non-repetitive). You just need to select a non-repetitive sound. Is that what you were looking for?,2020-03-13 10:20:26,newest,com.gmail.jmartindev.timetune +Karlee Barker,https://lh3.googleusercontent.com/a-/AOh14GjwJMMphYBIlZvmJgRSiU2Z2x64aq0CtKUPj0Jf,"I bought the premium version because the app said this would allow me to create routines for a bunch of specific dates but i cannot find this feature? I'm a casual worker and my routines are based around different morning, afternoon and night shifts that don't fall on any usual days of the week.",3,3,2.8,2020-03-11 05:50:29,"Hi Karlee! The Programmer feature allows you to enable your routines in specific dates. You can find the programmer in the bottom menu (it's the option in the center). You can see how to use it here: https://timetune.help/en/getting-started/ (if you cannot find it or have additional questions, please contact us at timetuneapp@gmail.com). Thanks 🙂",2020-03-11 08:58:02,newest,com.gmail.jmartindev.timetune +Nik F,https://lh3.googleusercontent.com/-YtWsJ0YEgJU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMTt-luu74WWjIiCNru144YWQKOhg/photo.jpg,Hi. Thanks for responding and I'll be more specific: Please bring back the pretty orange background for the top bar and each of the routines. The current color is too pale.,3,7,2.8,2020-02-19 08:04:27,Thanks for giving more details 👍 We take note of the idea 📝,2020-02-19 08:34:44,newest,com.gmail.jmartindev.timetune +Lois Kim,https://lh3.googleusercontent.com/a-/AOh14GjGGX04r0kQiTLJPH2nCAwtA-s9PMHKWUFy-PmeKw,"When I tried to load in my own alarm sound, it wouldn't let me.",3,0,2.8,2020-02-17 22:50:28,Hi! If you contact us at timetuneapp@gmail.com and we'll help you solve the problem 🙂,2020-02-18 09:16:55,newest,com.gmail.jmartindev.timetune +jioran C,https://lh3.googleusercontent.com/-XAmyaRlK6C0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPsHpYmE24YxRMLRNICmsD0Nfzgkw/photo.jpg,"I was using journal but can't write much until my hand gets better so I was looking for the app to plan my day preciously by time. Thought time line of this app would work, like all the icon and pre-made taps. But disappointed that I can not use those icons by itself for my event unless you creat another ""routine"" If dev's can modify the app that makes all those taps can be added to timeline by itself with my own time not only as events or routine, that would be perfect! Thanks",3,2,2.7.1,2020-02-14 16:00:18,"Hi, we don't fully understand your suggestion. Would you mind contacting us at timetuneapp@gmail.com and give us a specific example? Thanks!",2020-02-14 20:47:10,newest,com.gmail.jmartindev.timetune +Sweetness 94,https://lh3.googleusercontent.com/a-/AOh14GiskKEfyuZ-7j4mpWT2o75xSRWsUaYbutML_L0idg,I really like this app. But I stopped using it because it's too hard to type out my entire routine on the app. I wish it was windows compatible.,3,0,2.7.1,2020-02-08 19:42:28,"Hi, thanks for your feedback 👍 Making the jump to other platforms is a possibility we'd like to explore in the future, provided the project grows as expected 📈 That being said, we're working on some improvements to make the mobile input more efficient in coming versions 🙂",2020-02-08 23:21:55,newest,com.gmail.jmartindev.timetune +WE LOVE KOREA,https://lh3.googleusercontent.com/a-/AOh14Gg0QYR-fcjAmpvWhuLWHVeK0Fw7H36RHFLhXW6Etw,"Pretty good, could be better",3,0,2.7.1,2020-02-08 01:01:59,Hi! What feature would you like to see in TimeTune? We're open to suggestions 🙂,2020-02-08 09:47:19,newest,com.gmail.jmartindev.timetune +Avis Ejerenwa,https://lh3.googleusercontent.com/a-/AOh14GgWyT2o1R7Cyb_W1HxbbkvvGVwXAhIJdA3td6hWYA,"This is a very cool app, and thus have the ratings. How ever it will be nice if you can add the functionality of sharing task or even with other users. This will make it the all in one Project/Task manager. Review Update : Previously, I was able to pick custom tags when setting a new event, but now I can't and I have to pick a color and look for the same icon each time I want to create a new event. This is counter productive as the main aim of the app is to help optimize time. Please fix this",3,0,2.7.1,2020-02-03 16:55:04,"Hi, please contact us at timetuneapp@gmail.com and we'll find what's happening. Thanks.",2020-02-03 19:25:44,newest,com.gmail.jmartindev.timetune +xmerz r,https://lh3.googleusercontent.com/-Q7mAZo-whkY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMBf8v1IUh5hI_DlZxKGpvgGfg7gg/photo.jpg,"Tried this app for a bit. The logic is very different from what I need, so the experience wasn't good. This app focuses on routines and is built around this concept. It was very confusing at first (because it started with abstract ideas, not what average joe is already familiar with; e.g. calendar/timeline) and the entire experience just felt awkward. For me, all I want is, see the day/week/month, add to-do items one by one, and be able to turn any of these items into routines when I want to.",3,0,,2020-01-30 19:34:56,"Hi! It seems you're looking for a standard to-do app or habits app. We recommend to search for those terms instead. Although TimeTune was not what you needed, thanks a lot for trying our app! 🙂👍",2020-01-30 09:34:19,newest,com.gmail.jmartindev.timetune +Randeh,https://lh3.googleusercontent.com/a-/AOh14GhgeYSsyl9QaV8Ep3ZOHxaSv-ycTLZtqmSqPTxRJA,Difficult to use and doesn't show name of activity only when I click on it,3,0,,2020-01-28 03:48:36,"Hi Randeh, sorry about that. The project is still evolving but we'll be adding more improvements progressively.",2020-01-28 09:27:27,newest,com.gmail.jmartindev.timetune +Not Your Average Joe,https://lh3.googleusercontent.com/-KDjFEsUozBk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMNm_Az4uc0lnr9ZxPR-9-6ProPpg/photo.jpg,I like the ideas of the app. However the biggest inconvience for me is when something happens that disrupts my routines. There doesn't seem to be anyway to change the routine for one day with out changing it for every day in the futurs as well. It is annoying to have to manualy change a routine and then have to change it back the next day. I would like to see an option to edit or rearrage single intances of items in the time line without effecting the base routine or future dates.,3,31,2.7,2020-01-11 01:22:27,"Hi! Thank you very much for your feedback 👍 Indeed, this is an option we'd like to add in future versions 🙂",2020-01-11 11:12:31,newest,com.gmail.jmartindev.timetune +Ee Xx,https://lh3.googleusercontent.com/-XbP9sZN15wc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPR5etWifDwLKFiNyALHiXA91Bo2A/photo.jpg,Stupid decision to remove timer.,3,0,2.7,2020-01-07 11:54:41,"Hi, sorry about the timers. It has been a difficult decision for us, but we remain open to all possibilities for the future. Are you in favor of a new app only for timers but with more powerful features?",2020-01-07 16:55:09,newest,com.gmail.jmartindev.timetune +Bibi Todaro,https://lh3.googleusercontent.com/a-/AOh14Gj532V5zI3LfXrtaR5R_4v14wp7CK_xakJbVO7p,"It's ok but I wish I could move activities around in a routine instead of having to manually change the time one by one E.g. if I have yoga 9-10 then study 10-12 and want to swap them I can't just move around the blocks I have to delete study, change the time of yoga then add study with the new time. It's time consuming and not practical. Would also be good to be able to change settings of a routine e.g. from 4 days to 2 instead of deleting the entire routine and start over",3,3,2.7,2020-01-05 23:16:55,"Hi! You can already swap blocks by long-clicking on a block and using the arrows on the top bar 🙂 About changing the number the days in a routine, you don't need to start over. You can create a new routine with the desired amount of days and quickly import your activities from the old routine with the 'Import day' option from the top submenu 😉",2020-01-06 08:51:08,newest,com.gmail.jmartindev.timetune +Saz Ads,https://lh3.googleusercontent.com/-V1VM6Qo0eQA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMtfqr9tNuGWdxO3dGpY48yU3dxVA/photo.jpg,"I sadly had to uninstall this app as tgere was no general opt-out option for direct marketing activity. I could opt out of seeing personalised ads on this app i couldnt opt of my data being collected and combined with other sources and shared by all of their many advertising partners, which for an app like this is just too invasive. Very saddened, as the app does look really good.",3,2,2.7,2020-01-04 23:02:47,"Hi! If you opted out of personalized ads, no data is collected at all. Maybe we just need to change the text to explain it better. Can you confirm that this was the problem? If it is, we'll rewrite the informative text 🙂",2020-01-05 08:01:18,newest,com.gmail.jmartindev.timetune +kwhero,https://lh3.googleusercontent.com/a-/AOh14GjcDI9k_8uZ_P4z0mHiZWSDbbSrNPVlAA9u2ehLwg,"I used to use this app to set intervals of when I would check in to games I was playing, but since they removed the timer feature for some reason, the scheduling stuff doesn't suit my purposes. Still, the app should be able to help you maintain a schedule just fine, but most phones have that feature built in.",3,2,2.7,2020-01-04 16:51:54,"Hi, thanks for your feedback 👍 If we create an app just for timers, with more powerful features, would you use it? Which features would you like to see in an app like that?",2020-01-04 19:14:31,newest,com.gmail.jmartindev.timetune +The Ippy Bee Project,https://lh3.googleusercontent.com/a-/AOh14GggbGY_j8Z5cvqyBcLIQLznPsNKR1E-da1F2tpDbQ,Really like this app but wish I could see my WHOLE calendar or at least have the option to search for a specific date. That would make it perfect as I want to use it as my go to planner.,3,1,2.6.8,2019-12-31 10:42:16,Hi! Thanks for your suggestion 👍 We'll evaluate the possibilities 🔎 Cheers! 🙂,2019-12-31 13:39:47,newest,com.gmail.jmartindev.timetune +janardhan pai,https://lh3.googleusercontent.com/a-/AOh14GiZyzpHY9U4IsyqMSsq1cltj_AJusj7hdmq0VIG,Good,3,0,2.6.8,2019-11-21 05:25:13,,,newest,com.gmail.jmartindev.timetune +Daniele Guiso,https://lh3.googleusercontent.com/a-/AOh14Gg8u_gI14JqdgcBF7SF2GO6PjIe7Um4ZauVbRmKwQ,"Manca solo una visualizzazione in prospettiva degli eventi, che faccia capire bene quanto tempo occupano",3,0,,2019-11-02 11:24:26,"Hi. Thanks for your feedback, Daniele 👍 The app is still growing but we'll add more improvements progressively 🙂",2019-11-02 21:09:59,newest,com.gmail.jmartindev.timetune +Satyajeet Bera,https://lh3.googleusercontent.com/a-/AOh14GgSE5hKy3iK8xuZa8f_PldtZYPez9WCREcnKxOPVQ,love the app... bt still some feature like temporary modification if somebody is late then adjustment is required and please add tasker integration for advance options if you can... people will ready to pay for tasker plugin support also,3,0,2.6.6,2019-11-02 05:59:03,"Thank you very much for your suggestions, Satyajeet. We will evaluate the ideas 🔎",2019-11-02 09:29:59,newest,com.gmail.jmartindev.timetune +Cassie Watson,https://lh3.googleusercontent.com/-tn5W9mlGJrA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP94QOyQPMBrqNszMEbOsFlp4iidQ/photo.jpg,"My original review seems to have disappeared. I have an issue on my Galaxy Note S8 where I can't turn off the alarms without uninstalling. I received a response from support, but couldn't respond directly. Their response was simply that I should be able to swipe the notification and the sound go away. Yes, I agree, that should happen. However, that isn't what happens. There is no notification from the app for the alarm. I receive other notifications from the app. Running out of room to explain.",3,0,,2019-10-22 12:44:17,Hi Cassie. Please be so kind to click on 'Settings / Advanced / Send technical report' and put your name at the end. The technical report will allow us to help you better. Thanks! 🙂,2019-10-22 20:10:58,newest,com.gmail.jmartindev.timetune +Sundeep Kumar Vinnakota,https://lh3.googleusercontent.com/-OXRwbt1k-bM/AAAAAAAAAAI/AAAAAAAABpo/AAKWJJP9onuAv8flZIobVjyFlWsuDE7SUg/photo.jpg,"Routine module and programming is nice. Any plans to make it a tracker app - log if the schedule event is accomplished completely, partially or not accomplished..? For example - drinking water few times a day. Exercising 1hr per day.",3,1,2.6.6,2019-10-22 04:17:27,"Thank you very much for your suggestion, Sundeep 👍 Our intention is to explore some tracking capabilities in future versions 🙂",2019-10-22 07:48:00,newest,com.gmail.jmartindev.timetune +Rezaira Obedencio Menoria,https://lh3.googleusercontent.com/a-/AOh14Gi8LGmoIteR_mZ1mPTe6q8d_SVjrEW5fc-WQ0pucQ,"I love the app. Great concept. But the thing is you cant use it or it wont notify you, not unless you open the app. Once you close the background it will lost.",3,0,,2019-10-19 07:44:02,"Hi. In Samsung devices the common cause for this is the Power Saving Mode blocking our app. Apart from that, remember that other apps like anti-virus, cleaner tools or battery savers can block apps too. More information here: https://timetune.help/en/troubleshooting/ and here: https://dontkillmyapp.com/",2019-10-19 07:58:41,newest,com.gmail.jmartindev.timetune +Evyatar Kaufman,https://lh3.googleusercontent.com/a-/AOh14GizvD77vkN-rgNAs0J9mEtN9MOGLWklkf0VRyrpx54,There's a lot to be improved.. hope this app to get better with the time,3,0,2.6.6,2019-10-14 22:49:29,"Hi! Please give us more details, we're interested in your feedback. Which parts did you find more difficult?",2019-10-15 06:30:38,newest,com.gmail.jmartindev.timetune +Daniel Shahata,https://lh3.googleusercontent.com/-FTTcovoNWps/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMga7n-sDOw2nE6ALHBo3q8t0avhA/photo.jpg,"Good but very confusing It was good if I knew how to use it. The whole set up was very confusing and hard to understand, I really hope in the future it becomes simpler",3,0,,2019-09-09 01:15:22,"Sorry about that, Daniel. Indeed, our intention is to make things more intuitive in future updates. Meanwhile, we recommend to check our starting guide here: https://timetune.help/en/getting-started/",2019-09-09 08:30:07,newest,com.gmail.jmartindev.timetune +Raj V Jain,https://lh3.googleusercontent.com/a-/AOh14GjmMVgthO4ga_jE0adApbHrYxyWXBoLpPGEHqEHNA,"Great UI. The idea is great but need a way to mark tasks/routine item as complete. and so, we can't even know our progress. Guess the use case itself is completely different.",3,0,2.6.5,2019-09-08 07:31:15,Hi Raj. This is a possibility we're definitely considering for the future of the app 🙂,2019-09-08 07:49:55,newest,com.gmail.jmartindev.timetune +Xavi Srr,https://lh3.googleusercontent.com/a-/AOh14GhQmUt6dPFXuKHUpYDlacDMAM6qkcm_PIY2xm1DYg,Good,3,0,2.6.5,2019-09-07 05:01:08,,,newest,com.gmail.jmartindev.timetune +manu soi,https://lh3.googleusercontent.com/a-/AOh14GjBOzJrk3vQRyODIoGS08WTmE5njzGj3g7WkpEA7Q,I think the app should request permission over other apps or if possible have it as a widget. It keeps getting inactive when removed from recent files tab of the phone.,3,0,2.4.4,2019-09-02 10:15:03,"Hi Manu. This happens because Tecno added a control to kill applications when removed from the list of recent apps, it's not a fault with TimeTune. This is a common practice in Chinese manufacturers, and the only way to solve it is to find that control and change it. More information here: https://dontkillmyapp.com/",2019-09-02 14:20:32,newest,com.gmail.jmartindev.timetune +abdelhakim benmouhamed,https://lh3.googleusercontent.com/a-/AOh14GhKYu5CQuOG0yfeL7Ys3JO1DekCzpYGwHeoinVu,It doesn't ring or do any sign to remind me about my work,3,0,2.6.5,2019-08-30 08:28:30,"Hi. This happens because Huawei devices block background tasks by default, it's not a fault with the app. If you already checked https://timetune.help/en/troubleshooting/ and https://dontkillmyapp.com/ we strongly recommend to check or ask in Huawei forums. Chances are other users with the same device have published specific instructions there.",2019-08-30 15:31:24,newest,com.gmail.jmartindev.timetune +parker ingham,https://lh3.googleusercontent.com/-xvi92pyKtck/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO-DsXH0sdcSSGsZ8hEnCYOQAgxKw/photo.jpg,"When you start to reschedule things, the interface is very awkward moving times around. For example, moving everything forward or backward on the schedule is very un intuitive",3,0,,2019-08-28 10:15:35,"Hi, sorry about that. The project is still evolving but we'll be adding improvements progressively. Thanks.",2019-08-28 14:14:55,newest,com.gmail.jmartindev.timetune +Pastel Gacha,https://lh3.googleusercontent.com/a-/AOh14Gj8lU4KSjaFJ37S1J2XcNgfKxHxrMCXIt6XQWPU,It's really confusing! Its hadd to make routines and stuff. Just over all really confusing. But over great way to track routines. I love the tag idea. Mabey you should add a default school tag?,3,0,2.6.5,2019-08-27 12:09:35,"Hi, sorry about that. We recommend to take a look at our starting guide here: https://timetune.help/en/getting-started/ About adding other tags, you can already create your custom tags here: Main menu / Tags 🙂",2019-08-27 20:32:35,newest,com.gmail.jmartindev.timetune +Divita Sharma,https://lh3.googleusercontent.com/a-/AOh14GiSgG3v2xznbLrc3t48zLMQrBPbxIxQ8IIl9-PT,this app stops the alarm I set after the while and then. this is the 3rd time this has happened. otherwise it's the best.,3,0,2.5.1,2019-08-15 14:09:24,"Hi Divita. We don't fully understand your feedback. When you say that the app stops the alarm, do you mean that the alarm doesn't go off when it should? or that it sounds but it stops abruptly? Give us more details and we'll help you. You can contact us at timetuneapp@gmail.com for better communication if you want. Thanks.",2019-08-15 17:28:20,newest,com.gmail.jmartindev.timetune +Ramūnas Atkočius,https://lh3.googleusercontent.com/a-/AOh14Gj7mQ88AUUiRRpo0JoK2QFhX4D2Q08om4YkpLbpCbg,not enough customatization,3,0,2.6.5,2019-08-14 17:10:47,"Hi, what would you like to customize? We're open to ideas. Thanks!",2019-08-14 21:00:57,newest,com.gmail.jmartindev.timetune +Pedro Barba,https://lh3.googleusercontent.com/-4DxIDcGyZ9A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN9fyewQeMbqINT5cV8tjqGpsWEEw/photo.jpg,its serves a purpose,3,0,2.6.1,2019-08-10 13:32:54,,,newest,com.gmail.jmartindev.timetune +Morton Muggsy,https://lh3.googleusercontent.com/a-/AOh14GiN0wQu7t7wQ47skNgWLHrAkr6suGwC3iwPoc9OZQ,"i think the app is satisfaying my will. but the pro version keeps a non-ecard user not happy, so im giving you 3/5 bcuz of this.",3,0,2.6.4,2019-07-31 18:50:18,"Hi, thanks for your feedback. The payment methods available in each country are a responsibility of Google. We developers just use their paywall and don't have a say in that. You can check the available methods for your country in this page: https://support.google.com/googleplay/answer/2651410",2019-07-31 21:46:24,newest,com.gmail.jmartindev.timetune +ButtonMash0847,https://lh3.googleusercontent.com/a-/AOh14Ggd8dpR9BQ0Y6l1Asmb9gIPYHmR2shZmXWfyymTlw,has potential but the interface isnt user friendly at all,3,0,2.6.4,2019-07-31 00:32:10,"Hi! If possible, please let us know which screens or which steps you found difficult. That will help us a lot. Thanks!",2019-07-31 09:17:38,newest,com.gmail.jmartindev.timetune +Papiya Manna,https://lh3.googleusercontent.com/a-/AOh14GhWNgybHaCrKQ8jtgk_QzxahobP_gkr1vb0emSE,"This is app is perfect just need a checklist and daily, weekly and monthly tracker for each task... Had it been have all these, I would have given all 5 stars! You know sometimes we miss(or intentionally ignore) reminders and we need trackers for those for self development!",3,0,2.6.4,2019-07-25 19:02:11,"Hi, thank you very much for your suggestion 👍 This is a possibility we're definitely considering for the future 🙂",2019-07-25 21:48:52,newest,com.gmail.jmartindev.timetune +Aleksejs,https://lh3.googleusercontent.com/-27guv-9kTlo/AAAAAAAAAAI/AAAAAAAAAO4/AAKWJJNDgysyaVaTVbsf-M_d_ht1Jcwtog/photo.jpg,"Hmm, I just don't like it",3,0,2.6.4,2019-07-24 15:39:25,,,newest,com.gmail.jmartindev.timetune +Sakib Hasan,https://lh3.googleusercontent.com/a-/AOh14Ggs5gFwAZBe0Z4dowqHeyJtE68pbqCtufJLlTjaOg,critical,3,0,2.6.4,2019-07-22 09:58:51,,,newest,com.gmail.jmartindev.timetune +Sri Venkata Sheshu Swamy,https://lh3.googleusercontent.com/a-/AOh14Gh3dNDBNMRfZCbq00MjlpukTE4m58r2N7q7eUF8GB8,"How different it is from Google Calendar ? Your idea is Good and interesting, I am a knd of person who try following this.",3,0,2.6.4,2019-07-19 18:59:30,"Hi! TimeTune is not intended to substitute your calendar, but to complement it. TimeTune allows you to create multiple routines and change your whole schedule for the day (or future days) by just enabling a switch. Apart from that, our intention is to add an option to track the accomplishment of the routine so you can optimize your time.",2019-07-19 21:01:07,newest,com.gmail.jmartindev.timetune +Silver Darksbane,https://lh3.googleusercontent.com/a-/AOh14Gh_M-7P1f8OHM6bW9jWcFJu0JCQzKn6OFWnV3tS,it's ok,3,0,,2019-07-17 13:47:15,,,newest,com.gmail.jmartindev.timetune +Khan Bhasani,https://lh3.googleusercontent.com/a-/AOh14GgstH0LMn5MErAJHBhPLMeszYU-tGjNbV19LOih,notification does not sound. pls develop......... Why can not be set for 6 days in a routine week ...? Please like this,3,0,2.6.4,2019-07-04 01:24:10,"Hi. We don't fully understand your question about the routine, could you give us an example? Thanks.",2019-07-04 08:38:20,newest,com.gmail.jmartindev.timetune +Carrie Dooley,https://lh3.googleusercontent.com/a-/AOh14Ghku0LrWxDrbNAdJl8L8GMcVv-rAzawHqEGnKMeAA,"It's really only useful if you are doing recurring tasks at the same time, on the same days, etc. I set up a lot of tags (categories) but they can only be applied to the routines, not events or reminders. I was also not able to copy/duplicate events, which would have allowed me to reuse the same tasks at different times or days without setting up a brand new event. Disappointed in the app's scheduling capabilities.",3,1,,2019-06-29 23:25:36,Hi Carrie. Keep in mind that the project is still young and evolving. We'll be adding features progressively. Thanks for your understanding.,2019-06-29 23:52:11,newest,com.gmail.jmartindev.timetune +Gleidys Soto,https://lh3.googleusercontent.com/a-/AOh14Ggf1BDtdxSWrzN2FPVgKLiyeqogkizcC6U0cYkH,This app is great if you know how to use it... I downloaded it and it just doesn't work for me it says it's a routine app but it doesn't really let you put your whole routine it only let's you put one reminder at a time.,3,0,2.6.4,2019-06-26 14:29:04,"Hi Gleidys. You can create your routines on the routine main section (Main menu / Routines). To know more about the basics, we recommend to check our guide for beginners here: https://timetune.help/en/getting-started/",2019-06-26 15:25:48,newest,com.gmail.jmartindev.timetune +vibhor mishra,https://lh3.googleusercontent.com/-d_NwbO9zKJg/AAAAAAAAAAI/AAAAAAAABuY/AAKWJJOt3wDmci_0WmqOOe79tzyiMAV7Lw/photo.jpg,good great greatest very good nice decent adjusting,3,0,2.6.4,2019-06-26 05:15:14,,,newest,com.gmail.jmartindev.timetune +Sanjeev Seelan,https://lh3.googleusercontent.com/-xxrtrtS7qDA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNQvz5Q2c_nkIuOHK-xTbzqAeoQdw/photo.jpg,"It does the job I wanted, that is to ring alarm at the set time. However I am unable to clear the timeline! That is old ones. Couldn't get much help from their help center",3,1,2.6.3,2019-06-25 08:57:29,"Hi Sanjeev. For the moment, the timeline acts as a log of the things that happened, and that's why it can't be cleared (yet). We'll add other possibilities in future versions. Thanks.",2019-06-25 16:47:53,newest,com.gmail.jmartindev.timetune +SINGER Somya Yadav,https://lh3.googleusercontent.com/a-/AOh14GhFCwiuELISOvuH2lI7obGJlR_sAAzy3LRStwAXCQ,it does not remind us so I deleted this app,3,0,,2019-06-24 16:06:16,"Hi, this happens because Vivo devices block background tasks by default, it's not a fault with the app. You can see how to solve it here: https://timetune.help/en/troubleshooting/",2019-06-24 20:00:13,newest,com.gmail.jmartindev.timetune +VR r,https://lh3.googleusercontent.com/a-/AOh14Gi65fUT-OcsbhbnqLz3k3SrQYXSdnjiGgtyvqixsw,not really the app that I was looking for but ok,3,0,,2019-06-11 04:52:33,,,newest,com.gmail.jmartindev.timetune +Alia Mirza,https://lh3.googleusercontent.com/a-/AOh14GgE-3OHgBViE_dDSEFR9C7HcJq4cO5eIk31hgMd,"Not bad but not great. Pros: 3rd party calendar sync, time line view, icons & colour options to customise. Cons: can't sync devices, no task list or tick box. More options needed such as daily time line view, font size & highlight current day. Editing isn't easy & I think the whole app including widget could have a neater, tidier look. Overall it's not very intuitive, needs more options & flexibity. It has some way to go. I've got premium btw.",3,2,2.6.2,2019-06-03 16:18:54,"Hi Alia! Thank you very much for your feedback. You're right, the app is still evolving and some things need to improve. Our intention is to refine everything progressively. About device synchronization, remember that you can use the backup function from the settings to save your data to Google Drive and restore it on another device. Cheers!",2019-06-03 16:55:24,newest,com.gmail.jmartindev.timetune +Monto Monto,https://lh3.googleusercontent.com/-LnoPqcat_5A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMs5OACbcfWiuD-slaW3XwVrl8kAw/photo.jpg,"While it has helped me be more productive, recently the notification settings are bugging out. When I tap on 'ADD notification', and select a louder notification (for when I wake up) and press done, I find out sooner or later than it had reset it to the ""opener"" (my default notification sound that is quiter). This has caused me great annoyance because of this and do not know why this app decided to bug out!",3,1,2.6.2,2019-05-30 09:54:27,"Hi Kane. Sorry for the trouble. Please contact us at timetuneapp@gmail.com, it's the only way we can help you. Thanks.",2019-05-30 20:28:03,newest,com.gmail.jmartindev.timetune +Anmol,https://lh3.googleusercontent.com/-Gl3kmCtXIqs/AAAAAAAAAAI/AAAAAAAAQD8/AAKWJJNKKodCOcq9W-j6Xtp5snZZAkvLRA/photo.jpg,It would be better if there is an option in which we are able to check whether we really followed time table or not .,3,1,2.6.2,2019-05-25 01:53:25,Hi! Thank you very much for your suggestion 👍 This is a feature we'd like to add in future versions 😃,2019-05-25 08:22:13,newest,com.gmail.jmartindev.timetune +Liantorin 2004,https://lh3.googleusercontent.com/a-/AOh14Gg4H1i6WP5WKYN-CQTPfoXF-Z36q-onEO47uGv2NQ,"For 2.6.1: TimeTune background task error keep persists due to: screen is off, battery saver, powered off. You can also add new features: ""Refresh Background Tasks when accessing app"" toggle switch, it refreshes everytime when they accessing the app even background tasks blocked by system",3,0,,2019-05-23 14:55:35,"Hi. Thanks for your suggestion, we'll evaluate the possibility. However, remember that other users with Redmi 4X have been able to configure their devices and avoid this problem. We strongly recommend to check or ask in Xiaomi forums for instructions about your specific device model. Thanks.",2019-05-23 15:39:35,newest,com.gmail.jmartindev.timetune +Bhaven Chaudhary,https://lh3.googleusercontent.com/a-/AOh14GhhItlSrdOQ4hsOK7FKPzu1oQs9Vm18ZvJaLSgILA,"nice app but after enabling it, whenever i tried to open clock from taskbar this aap gets open instead, which i don't what",3,0,2.6.1,2019-05-22 07:55:44,"Hi Bhaven. When there's an alarm scheduled, the taskbar opens the application that owns that alarm. You can change this behavior for TimeTune by using weak alarms instead of clock alarms (TimeTune / Settings / Advanced / Scheduling method).",2019-05-22 20:17:56,newest,com.gmail.jmartindev.timetune +Abhay Pratap Singh,https://lh3.googleusercontent.com/a-/AOh14GiObce5UMIKCAz1d2C55SGc8Wl8LX_n9QlY1X1bMw,One Problem With This App Is It Stops And Also Notification Also Hide And Ask For Refresh And Troubleshooting Then It Again Start Show Every Time I Have To Open The App And Refresh Then It Start Working This Must Be Solve,3,0,2.6.1,2019-05-21 01:14:30,"Hi Abhay. This happens because Xiaomi devices block background tasks by default, it's not a fault with the app. You can see how to solve it here: https://timetune.help/en/troubleshooting/ and here: https://dontkillmyapp.com/xiaomi We recommend to ask in Xiaomi forums as well about your specific model. Thanks.",2019-05-21 07:12:11,newest,com.gmail.jmartindev.timetune +TG4 Life,https://lh3.googleusercontent.com/a-/AOh14Ggsswvwq0eTjFvSKLku2AtQHCmX0iQroLIqMdd71Q,I would've given it full cuz its an amazing app and i would recommend it but the down is that it takes too long to set a schedule otherwise it is an awesome app.,3,0,2.6.1,2019-05-13 14:49:53,"Hi! Thanks for your feedback, we'll make improvements in successive versions. Meanwhile, remember to use the 'Clone day' feature to create your schedule faster. You can read more about it here: https://timetune.help/en/getting-started/",2019-05-13 17:45:57,newest,com.gmail.jmartindev.timetune +Ani Rasolo,https://lh3.googleusercontent.com/a-/AOh14GjlGtzDx1J27RfB9Zwhjc__cHVu8CC3pm72SAr-3Q,Gets me moving when I get a reminder,3,0,2.6.1,2019-05-13 10:58:09,,,newest,com.gmail.jmartindev.timetune +Leo Rowan,https://lh3.googleusercontent.com/a-/AOh14GjZ1lFrZOYGdflYWorK956u6GpRDXLzGovg5eg1,"This app has a lot of potential, but a few things could be added, and tweaked. I recommend adding a calender, and more icon options.",3,1,2.6.1,2019-05-10 00:05:36,"Thank you very much for your feedback, Leo. Indeed, the application is still young but more improvements will be added progressively.",2019-05-10 06:44:10,newest,com.gmail.jmartindev.timetune +Imamul Arefin Rimon,https://lh3.googleusercontent.com/a-/AOh14GgyiOH4Makbxq3ELPGlarT2xzsnpRYszT3FHJUG,The problem is the phone is not ringing even though Ring is turned on. Output is given Alarm Volume. Yet Its not ringing..,3,0,2.6.1,2019-05-06 13:42:18,Hi Imamul. Remember that Xiaomi devices block notifications by default when the screen is off. You can find instructions for Xiaomi here: https://timetune.help/en/troubleshooting/#brands,2019-05-06 14:38:53,newest,com.gmail.jmartindev.timetune +Sophie M,https://lh3.googleusercontent.com/a-/AOh14Ggey8jhTtld4rHYrdjbSjjmkl9nS4pak_plmAcVtw,im so confused with this app,3,0,2.6.1,2019-04-28 21:32:19,"Hi Sophie! Sorry about that. The application is still evolving and some things are not intuitive yet. Please take a look at our Getting Started guide (https://timetune.center/android-help/). Once you get the idea, you'll see it's very easy. Thanks!",2019-04-29 07:10:58,newest,com.gmail.jmartindev.timetune +FREAKY EXPLORER,https://lh3.googleusercontent.com/a-/AOh14Gj-GbA5SGaGMCLo0kG3kM1f1oTf9gCneL_J8nID,"first I was using this app but when I downloaded it after a long time then strange problems occured such as the routines remainder are not coming although it's option is on... also when I login back then a caption stating ""no authorisation provided to app"" is flashed... please tell me how to resolve it",3,0,,2019-04-28 12:14:15,"Hi. This happens because Vivo devices block background tasks by default, it's not a fault with the app. You can see how to solve it here: https://timetune.center/troubleshooting/",2019-04-28 17:52:51,newest,com.gmail.jmartindev.timetune +Sourabh kumar Prasant,https://lh3.googleusercontent.com/a-/AOh14Gj8eg_DraKtrgurat8BotQNM5BsIWv8ycWwlctcqg,Some features are to be paid.,3,0,2.6.1,2019-04-25 12:34:57,"Hi Sourabh. Remember that there are only three premium features but none of them is essential. You can use as many routines, reminders, timers and events as you need for free. Thanks.",2019-04-26 07:18:19,newest,com.gmail.jmartindev.timetune +Rohini Jambhalikar,https://lh3.googleusercontent.com/a-/AOh14GjHzQ-xqjqZ84zcLFimpJuvDiC2qf-60odco3yhYA,nice app,3,0,2.6,2019-04-22 08:05:08,,,newest,com.gmail.jmartindev.timetune +S.A,https://lh3.googleusercontent.com/a-/AOh14Gjh8IeDHBuz-GaSz0z_ZAx3Ix04zb7tYPXi17Mndg,no reminder tone else 5 star,3,0,2.6,2019-04-15 06:10:27,"Hi. OnePlus devices include many settings to block notifications. Please check instructions for OnePlus here: https://dontkillmyapp.com/oneplus If the problem is only the sound, you can contact us at timetuneapp@gmail.com and we can help. Thanks.",2019-04-15 08:12:36,newest,com.gmail.jmartindev.timetune +Sarah Dawn,https://lh3.googleusercontent.com/a-/AOh14GjZ69XpNFNSIxryYDD0_qhgBUWpLoDSTfRgdgT85A,This app is useful. BUT. It would be so much more useful if you could set a routine to be repeated every weekday/ weekend day/ week/2week/4week/month/etc. It is badly in need of this feature. I thought buying pro would allow me to do this and it hasn't helped at all and I'm disappointed I spent the money. Please say that it is an upcoming feature. Resetting routines for every day is really inconvenient!,3,4,2.6,2019-04-07 12:00:14,"Hi! When you have a moment, please contact by email at timetuneapp@gmail.com and tell us a bit more about your schedule. We're open to adding a feature like this, but we need more details in order to find a solution that works for everyone. Additionally, we can make a refund too. Thanks!",2019-04-07 20:34:21,newest,com.gmail.jmartindev.timetune +Mohammad Wael,https://lh3.googleusercontent.com/a-/AOh14Gik6oAT9w0I6Qj9A0ZRrfdMST2OYuoloDT49t13jw,great concept,3,0,2.6,2019-04-03 16:10:12,,,newest,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,UI can be improved. More rounded corners instead of hard corners. It makes the app look more modern. (my opinion),3,0,2.6,2019-04-01 11:09:03,"Hi! We want to improve UI, but we need more details. Tell us please what you didn't like and we'll make it better. Thanks!",2019-03-17 21:00:05,newest,com.gmail.jmartindev.timetune +Srikanth S,https://lh3.googleusercontent.com/a-/AOh14Gis5JPRcbx493HKiMNQ5z9KgkcacOXXJM36Do5SLw,bit complicated in adding routines.. I didn't understood,3,0,,2019-03-31 18:39:01,"Hi! We recommend to take a look at our 'Getting started' guide: https://timetune.center/android-help/ Once you get the idea, you'll see it's very easy 😃",2019-03-31 21:15:16,newest,com.gmail.jmartindev.timetune +I'm Shaine,https://lh3.googleusercontent.com/a-/AOh14Gj1HQ0niwASae1sa-VcfHPx9j8Ot40X16xB0mRB0A,The layout for the app is awesome. But it would be better if non-routine task can be added into the timeline with the same activity for routine task.,3,0,,2019-03-30 18:22:28,,,newest,com.gmail.jmartindev.timetune +DDA subman,https://lh3.googleusercontent.com/a-/AOh14Gi_Mjy_sbeWBS-BFuFnSSWxTw68WbOzS6cGqeX_ZQ,"the app is good ,but it would be better if it had a timeline (Please do something about that)",3,0,2.6,2019-03-30 12:41:57,"Hi. Thanks for your feedback, but we need more details. The application already has a timeline section (Main menu / Timeline). Do you mean a different kind of timeline? You can point us to another app as an example. Thanks.",2019-03-30 16:59:53,newest,com.gmail.jmartindev.timetune +Kamlesh Tandekar,https://lh3.googleusercontent.com/-u5f_Orkr1B0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMDjo6hooowrtscQ6gGP6Uf3uJFbQ/photo.jpg,"App is good. But I want to suggest something > There should be To do list type of feature, that is what sort of things we are doing regularly from our routine will be selected and those which left undone will be not selected. In this way more clear picture of time allotment and productivity can be seen.",3,1,2.6,2019-03-28 18:18:14,"Thank you very much for your suggestion, Kamlesh 👍😃",2019-03-28 21:48:41,newest,com.gmail.jmartindev.timetune +m_3lg,https://lh3.googleusercontent.com/a-/AOh14GgBywaxBxq0JEKTLhv9yI3-YGuMX-xTF08IQLvemA,"it's a great app, but I can not depends on it, because sometimes it is not working well, I have to refresh background task",3,0,2.6,2019-03-28 12:07:44,Hi! This happens because the power saving mode or similar is blocking our application. You can see how to solve it here: https://timetune.center/troubleshooting/,2019-03-28 16:19:54,newest,com.gmail.jmartindev.timetune +Alan Bosco,https://lh3.googleusercontent.com/a-/AOh14Gio9nZ8D6MGOpZKiML6CCiOJ4OjZbkIDUFGpoAs3w,This is so complicated it took me awhile to to figure all the stuff. I would suggest add some tutorial on YouTube so anyone can get used to it. and the app is solid and will think about purchasing the pro version.,3,0,2.6,2019-03-24 17:11:50,"Hi Alan! You're right. The app is still evolving and some things are not intuitive yet. Our intention is to improve everything progressively. Meanwhile, we recommend to take a look at our 'Getting started' guide to know how the basics work: https://timetune.center/android-help/",2019-03-24 18:24:34,newest,com.gmail.jmartindev.timetune +Hriatpuia Sailo,https://lh3.googleusercontent.com/a-/AOh14GiF5bo7q-xLsdFJ-A3QJQYFwauEof4nvkzOu6xtXA,Just tested the pro version. Needs to be more stable. Sometimes my work starts at 12 am?? And it doesn't sync with my google calendar. Widget needs to be fine tuned. Not quite satisfied so 3 stars.,3,0,2.5.3,2019-03-14 19:22:45,"Hi! You can make work start at any time you like. If you need help, contact by email and we'll show you how. About calendar sync, please check that your account has been enabled for synchronization (https://timetune.center/troubleshooting/#calendar). About the widget, please tell us more details, we'd like to know what you'd like to tweak. Thanks!",2019-03-14 21:09:38,newest,com.gmail.jmartindev.timetune +Openeyesfreedomawaits,https://lh3.googleusercontent.com/-bDPuX_Pv9xw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNIB4y_pB2GZKFtKWQwULNTDUh-aQ/photo.jpg,i love this app so far but the notifications are not really working for me,3,0,2.5.3,2019-03-14 04:11:08,Hi! This happens because the device is blocking our background tasks by default. You can see how to solve it here: https://timetune.center/troubleshooting/,2019-03-14 09:28:40,newest,com.gmail.jmartindev.timetune +Seb P,https://lh3.googleusercontent.com/a-/AOh14GhS-v0hhNpPsxjYfLGwA0GQIWpicHJ90ezmx2MTKw,not practical,3,0,,2019-03-13 23:26:10,"Hi, thanks for your feedback. Keep in mind that the project is still young and evolving. If you tell us the things you didn't like, we'll make them better. Your opinion is important. Thank you very much.",2019-03-14 09:22:00,newest,com.gmail.jmartindev.timetune +Christopher mattias,https://lh3.googleusercontent.com/-Mg5SkWBSjZc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMIGNCoyrL8wTcMjLPEQHCW_-Cp_A/photo.jpg,"The app is overall good, just bought the upgraded version since I wanted to sync the google calender. I still cannot sync the Google calender into the calender and also would like to know if sync the 'routine' from timetune into the Google calender is possible? Thanks!",3,0,2.5.3,2019-03-13 08:34:39,"Hi! For the moment, the sync feature allows to see calendar events in TimeTune's timeline. Going the other way (from TimeTune to the Calendar) is something we're considering for the future. If you have problems with the sync feature, please click on 'Settings / Advanced / Send technical report' and put your name at the end, so we can help. Thanks!",2019-03-13 15:22:50,newest,com.gmail.jmartindev.timetune +Selling Memes,https://lh3.googleusercontent.com/a-/AOh14GgExUFqdlkqCz7-KEvXWbdnObqe_-K4c2QP1OeGoA,"Its a good way to manage your time, but after a while the timeline menu bugs out and stops sending notifications. Besides that the app is very good.",3,0,2.5.3,2019-03-07 17:28:40,Hi! In Samsung devices this happens because the power saving mode is blocking our application. You can see how to solve this here: https://timetune.center/troubleshooting/,2019-03-07 21:27:23,newest,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Good app!,3,0,,2019-03-05 22:16:31,,,newest,com.gmail.jmartindev.timetune +Tiffany Mendez,https://lh3.googleusercontent.com/a-/AOh14Gj-2JCiAP4pmoQi9MJsWP95wLcdv7LadV2tJkMhpN4,Its good. i like the little picture icons. i wish for 2 things: that you can share as a jpg file and not a txt file to email. and that the length of the boxes represented the amount of time used. for example: snack time would be a short box. sleep would be a long box. thanks!,3,0,2.5.3,2019-03-04 12:23:31,"Thank you very much for your suggestions, Tiffany! 👍😃",2019-03-04 18:19:06,newest,com.gmail.jmartindev.timetune +DeadEnd Jeni,https://lh3.googleusercontent.com/a-/AOh14GhMbDzcTwMZhnjivuq4fBIgph5IT-TTStICnxp_RQ,I love this app. I would really love an option to check off or mark that a task was complete.,3,0,2.5.3,2019-03-03 22:47:02,Hi Jeni! Thank you very much for your suggestion 👍 This is a possibility we're considering for the future of the app 😃,2019-03-04 08:12:51,newest,com.gmail.jmartindev.timetune +Mohit Lohokare,https://lh3.googleusercontent.com/a-/AOh14GhJ2V7HsN2DjG3V_b2gTpVwxJLPSYgflWtlGScqKA,"Hi, please provide accepted, pending, decline tags on rutine notifications of activites and also show day progress for these tags or activites in app. I think it will ""force the mind"" to follow daily schedule.",3,0,2.5.3,2019-03-03 07:22:23,"Thank you very much for your suggestions, Mohit! This is a possibility we're considering for future updates.",2019-03-03 08:41:55,newest,com.gmail.jmartindev.timetune +Ali Tahrei Sh.,https://lh3.googleusercontent.com/a-/AOh14GiKsgmgQC8fBxuURu3RMgw8oxsBPKVY5tLyy2_0,"I bought the pro version in hope I can organize my time to do my tasks, but the progrmer just disables the routine, that's all!!!! really?!!! the other thing I didn't like was to set a routine for a reoccurring like school or sleep I had to set it for every single day, one by one!!! you could have add a reapet feature to it. I'm not happy I wish I could get my money back!",3,0,2.5.3,2019-02-26 15:08:47,"Hi. The programmer allows to schedule any routine in a specific date or period (check that the default program is not set as 'All routines disabled'). About activities, you can create only one and make use of the clone option (long-click and clone). In any case, if you prefer a refund please contact by email and we'll do it, no problem. Thanks.",2019-02-26 21:13:11,newest,com.gmail.jmartindev.timetune +KANGYANG_ PWAJOK,https://lh3.googleusercontent.com/a-/AOh14GjaZOBqVzuLeg92EEMy9dZrZvFOPe3z8WYc59kJNQ,not too bad,3,0,2.5.3,2019-02-20 13:32:37,,,newest,com.gmail.jmartindev.timetune +Miloš Macura,https://lh3.googleusercontent.com/a-/AOh14GhgbUPlHPv14TyIaw64kJq209KSHKSumduyhOzC,"Great potential, but I can't use the app to its full extent due to its counter-intuitive layout. Just filling two days in Routine view turned it into an endless scroll. Shame, the app really looked like what I was looking for. Reply: Thanks for taking my review into account. Yes, I think a horisontal orientation would be much better. Maybe leave both options? That way everyone can decide what best suits them.",3,0,,2019-02-17 00:22:59,Hi! Sorry about that. Would it work for you if the days were in horizontal?,2019-02-14 17:37:57,newest,com.gmail.jmartindev.timetune +Angela Kvasha,https://lh3.googleusercontent.com/a-/AOh14Gh46EBnjYxFycvpZQPooimFb8tbH6mS40ft4F-NrA,"Really don't like that they changed the empty time slots back to the way they were (whenever you delete an activity the activity gets replaced with an empty block separate from the empty blocks before or after it), I find it to be extremely unnecessary. But the new feature of increasing or decreasing an activity in 1, 5 or 15 minute chunks is great, and the programmer feature works well as always, particularly good for planning out studies and work.",3,30,2.5,2019-02-15 22:31:46,"Hi Angela! Thank you very much for your feedback, we really appreciate it 😃 The thing about empty blocks is a trade-off. If we want empty blocks to be movable, we cannot join them automatically (and vice versa). So, we preferred to give the user the freedom to manage their blocks as they need. Remember you can join the blocks if you need it too.",2018-10-26 08:34:26,newest,com.gmail.jmartindev.timetune +Intellect engineer,https://lh3.googleusercontent.com/-h_5C2Fx6fo8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMRa3xIvBPMeTDsSm29CgmjhTHC8g/photo.jpg,it is useful but not the perfect,3,0,2.5.3,2019-02-12 06:54:34,Hi! What would you like to add or change? Your feedback will help make TimeTune better. Thanks! 😃,2019-02-12 08:29:05,newest,com.gmail.jmartindev.timetune +Connor,https://lh3.googleusercontent.com/a-/AOh14GhNJCmSmCCmebbhU0YOb6e37pceKTgRfNE2FnbGrA,The Concept is quite elligant yet also hard and confusing to understand. It would be eaier if there was a calendar setting and/or addition to help the user plan along with a timeline.,3,0,2.5.3,2019-02-12 01:13:24,"Hi! Thank you very much for your feedback. You're right, some things are not intuitive yet. Our intention is to refine the app in successive versions.",2019-02-12 08:24:09,newest,com.gmail.jmartindev.timetune +Bikash Rajbanshi As Df,https://lh3.googleusercontent.com/a-/AOh14GhpldrXkogtnwNSNbMXTw9K1DmpIA3dCcpSHvecdDA,"this is good but, you need to update: where we can sync on our desktop or another phone via google or else.",3,0,2.5.3,2019-02-11 04:20:11,Hi! Thanks a lot for your suggestion 👍 The app is still young but this is a possibility we're considering for the future 😃,2019-02-11 08:47:44,newest,com.gmail.jmartindev.timetune +Bee Romeo,https://lh3.googleusercontent.com/a-/AOh14Gi3hGdy6nc8rzKMHi2DvS24ArQwCKKd57PHR85e7Q,"It seems very nice, the inferface can just get pretty overwhelming to look can.",3,0,2.5.3,2019-02-07 14:11:24,,,newest,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I like this app, but in the world of Time/Schedule Management you have to be multi-platform. I would recommend that your next step in development is a web interface as the majority of a professionals day is spent on a PC or laptop.",3,0,2.5.3,2019-02-05 16:42:18,"Hi! Thank you very much for your suggestion 👍 We're definitely open to this possibility, provided the project grows as expected 📈 Cheers!",2019-02-05 21:40:40,newest,com.gmail.jmartindev.timetune +Jordan Braswell,https://lh3.googleusercontent.com/a-/AOh14Gh22azIvhDF6poLnUtgWFofV1E4YAzeKyy_JKVAQw,im sure the pro version is great but it didn't keep my interest long enough,3,0,,2019-02-01 19:30:01,,,newest,com.gmail.jmartindev.timetune +vaibhav salokhe,https://lh3.googleusercontent.com/a-/AOh14Gi4x0VLTnnboGsdugB-hlTjyNTd95ptLVfRBIlu,i used to love this app..... but now it has been ruined..... made things more complicated and v can't assign according to days of week....,3,0,,2019-01-30 07:32:29,"Hi, we're sorry to hear that. Please tell us exactly which things you find difficult and we'll look into it, we want to help. If you prefer, you can contact by email at timetuneapp@gmail.com for better communication. Thanks.",2019-01-30 08:17:20,newest,com.gmail.jmartindev.timetune +thej kzang,https://lh3.googleusercontent.com/a-/AOh14GiXOG-HA7LMVlE1VYr-Dvr9FsIS_kQqHWUhdq-J,It does not play ring tone on my mobile.,3,0,,2019-01-28 08:06:17,"Hi! If possible, please click on 'Settings / Advanced / Send technical report' and put your name at the end so know it comes from you. With the technical report we'll be able to help you. Thanks.",2019-01-28 09:11:00,newest,com.gmail.jmartindev.timetune +Sena Ingrid,https://lh3.googleusercontent.com/a-/AOh14GiN_WPtEUFzu7qgbhJ3Yt8TAw1VLhA4UnU5HVY5,"It's not clear how much it cost the premium account. Also, every time I try to go premium I get a message saying ""the in-app billing are not available on this device"". I've always do in-app purchasing and it was the first time that I got this issue. Really disappointed.",3,50,2.5.3,2019-01-27 22:31:52,Hi Sena! This error usually happens when the Google Play Services application is not enabled or installed on the device. You can see how to solve it here: https://www.techadvisor.co.uk/how-to/mobile-phone/install-google-play-xiaomi-3676150/,2019-01-28 09:07:41,newest,com.gmail.jmartindev.timetune +Nicole,https://lh3.googleusercontent.com/a-/AOh14GgAHHnXbn8VERjEPgzGBHOXliWmeu1dPbXiM0YuFw,how to view statistics?,3,0,2.5.3,2019-01-24 19:04:21,"Hi Nicole! To view the routine statistics, just tap on the statistics icon that appears on each routine card. Apart from this, when you open a routine each day has a 'Day summary' submenu option too. That being said, our intention is to add more and better statistics in future versions 📈😃",2019-01-24 22:09:47,newest,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,It's simple and easy to use but notification often doesn't work about 10 times a day.,3,0,2.5.3,2019-01-19 23:56:40,Hi! This happens because the device configuration is blocking our background tasks. You can see how to solve it here: https://timetune.center/troubleshooting/,2019-01-20 09:48:29,newest,com.gmail.jmartindev.timetune +中村かな,https://lh3.googleusercontent.com/-ZXUOLfjxalE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO8IyIhWbKcWN1b26VIVLH0q-IyAg/photo.jpg,No japanese support :(,3,0,2.5.3,2019-01-17 20:54:32,"Hi! We need help with the Japanese translation. If you'd like to help or know anyone who can help, please send them to https://crowdin.com/project/timetune, thanks! 😃",2019-01-17 22:23:26,newest,com.gmail.jmartindev.timetune +abcdefg hijklmno,https://lh3.googleusercontent.com/-X5Q8tDSzdxw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPs3Yr4rtelZbvb__8yJ0OwPJiqmw/photo.jpg,I think the old version is better than the latest version. Hope that there is an option to choose between the horizantal or vertical interface. The shifting of days from left/right is easier than the new one. I barely use the app since the change of interface. Ive been using this for a very long time and it was really helpful.,3,3,2.5.3,2019-01-17 17:49:43,Hi! Sorry the new version is causing you trouble. We're currently gathering opinions about the interface to make decisions about it.,2019-01-17 22:20:46,newest,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,nice I really like this app this is very nice app to remind me our daily routine and save our time,3,0,2.5.2,2019-01-08 13:21:15,,,newest,com.gmail.jmartindev.timetune +Rishabh Sen,https://lh3.googleusercontent.com/a-/AOh14Gjbow15WPlYwbLQXuTK8ToGhYIfehko6DUXMexyeQ,"It doesn't sound for notification even i had set every options like alarm tone, vibrate etc..... Plz reply",3,0,2.5.2,2019-01-02 11:20:14,"Hi Rishabh. This happens because Xiaomi devices block background tasks by default, it's not a fault with the app. You can find general instructions for Xiaomi here: https://timetune.center/troubleshooting/#brands",2019-01-02 11:48:03,newest,com.gmail.jmartindev.timetune +Faizah Dz,https://lh3.googleusercontent.com/a-/AOh14GixVaF6CD4EGYdsnYf0Km8rlRfamCR-8dv6STg_xQ,"Lebih suka tampilan aplikasi yang lama, karena lebih mudah digunakan & diatur daripada harus terus scroll ke bawah untuk melihat hari berikutnya.",3,0,2.5.2,2018-12-31 17:21:12,"Thank you very much for your feedback, Faizah. We're currently gathering feedback about the new interface in order to make decisions for the future.",2018-12-31 18:06:19,newest,com.gmail.jmartindev.timetune +Thành Nguyễn,https://lh3.googleusercontent.com/a-/AOh14GiGIDPG90M1HZ90bkY7VoAvjD_Bn3TC0nYfdu5MwA,I have purchased Pro version but still no calendar view. Please add calendar view beside the Timeline view,3,0,2.5.2,2018-12-31 03:41:26,"Thanks for your suggestion, Thành! 😃",2018-12-31 08:21:09,newest,com.gmail.jmartindev.timetune +John Nazarene Dela Pisa,https://lh3.googleusercontent.com/a-/AOh14GiFQKEr95poKV91clsGetBcwaLc_ImdWRfndSQx,there's a bug preventing me to add names on tags please fix this,3,0,2.5.2,2018-12-30 13:16:15,"Hi! We're really interested in this case. If you could please contact by email at timetuneapp@gmail.com and help us, we'd be really grateful. Thank you very much 🧡",2018-12-30 16:27:54,newest,com.gmail.jmartindev.timetune +Jerahmeel Cosinas,https://lh3.googleusercontent.com/-0r7SR_ymZXo/AAAAAAAAAAI/AAAAAAAABjk/AAKWJJPoJOaylb4aZ1j4nOd2x_b0kcT-qQ/photo.jpg,"Looks promising. Would like to see: routine sharing/sync (some routines you have to do with your wife), marking activity as done, have tags on timers and have more analytics on the actual timeline data (not routines). I personally would pay a premium for these features.",3,3,2.5.2,2018-12-28 14:44:05,"Thank you very much for your suggestions, Jerahmeel! 👍 The project is young but we'll be adding improvements progressively 😃",2018-12-28 20:57:17,newest,com.gmail.jmartindev.timetune +Kishan Singh bhati,https://lh3.googleusercontent.com/a-/AOh14GjmUejRfHe8FoWzuUKnGLcKIDVxIzy-JlQfHfYYNQ,good app.,3,0,2.5.1,2018-12-21 04:57:14,"Hi! If you have any questions or suggestions about the app, let us know. We're here to help! 😃",2018-12-21 19:44:04,newest,com.gmail.jmartindev.timetune +Facalet Marian,https://lh3.googleusercontent.com/a-/AOh14Gii9GyGMC6jTRP8kDSpGNi9wjyAtXLKx7883LVEew,Has potential but i need it for the programer which costs money,3,0,,2018-12-20 09:41:25,,,newest,com.gmail.jmartindev.timetune +Obaid Paracha,https://lh3.googleusercontent.com/a-/AOh14GiBtA5_tUShspQ-ea3RnnsDlNoDPzA4eeXzy7i3zA,"it seems like a really nice app. But some functionality is broken. when I add routine delete few items, it merges in wrong way so some days become small while others have 34 hours",3,0,2.5.1,2018-12-19 21:10:38,"Hi, we're interested in this case. If possible, please contact by email at timetuneapp@gmail.com so we can investigate. Thanks a lot 👍",2018-12-21 19:38:35,newest,com.gmail.jmartindev.timetune +Dhanush Gopal,https://lh3.googleusercontent.com/a-/AOh14GhPeiB1J3oLrvbxg3u97xu_4reqJ9LZ6maVlbMu7A,Needs an In-app Guide to make the user understand how it works. Update: I really appreciate you responding and working on it. Thanks,3,0,,2018-12-18 11:59:36,"Hi! You're right, adding an onboarding tutorial is on our to-do list. Meanwhile, please check our starting guide (this is the link: https://timetune.center/android-help/). Once you get the idea, you'll see it's very easy. Thanks.",2018-12-18 11:23:10,newest,com.gmail.jmartindev.timetune +ザン,https://lh3.googleusercontent.com/a-/AOh14GiWFDpoqXJKkpg3wXsR-aWhnkooSs-iDLLzmbtM,i think you need to improve the ui... and the ui names. its really confusing.,3,0,2.5.1,2018-12-04 09:46:30,"Hi! Thank you very much for your feedback 👍 We're open to making changes, but we need to know more details. If possible, please contact by email and tell us what you'd like to change, it's the only way we can do something about it. Thanks! 😃",2018-12-04 09:58:17,newest,com.gmail.jmartindev.timetune +Amartya Nath,https://lh3.googleusercontent.com/a-/AOh14Gh25jRwvewrjFUiQqslny2LhOSYOEIRMVWGRSgm,It's okay,3,0,2.5.1,2018-12-01 19:43:41,,,newest,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Give me the best observation Time...,3,0,2.5.1,2018-11-29 19:04:54,,,newest,com.gmail.jmartindev.timetune +Nicholas Theophilus,https://lh3.googleusercontent.com/a-/AOh14GieS9QUWmcLrCFDrIwCfsmRJJduP8uqYEB2ILwR-aE,"Please!!😥... bring back the old UI for routine edits with horizontal stripes... please)). Or at least give the option to select a preference. Please, thanks... it makes it more editing a little more difficult and much less appealing... please😢",3,2,2.5.1,2018-11-23 17:07:14,"Hi Nicholas. We're still gathering feedback about this. We're open to the possibility, but we need more time to make a decision. Sorry for the inconvenience.",2018-11-23 21:37:46,newest,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Nicely....,3,0,,2018-11-22 08:19:44,,,newest,com.gmail.jmartindev.timetune +EXV diamond,https://lh3.googleusercontent.com/a-/AOh14GjwvqjvUwntlE_qXGs3xUeYgIbbng9vUT4MlJK8,The program is really awesome but i'm using the oppo f7 and it doesn't do any notification i followed a guide but it didn't help that's the programs only problem,3,0,,2018-11-19 22:52:13,Hi. Oppo devices are very aggressive and have too many settings to prevent apps from doing work in the background. They add different settings to different models too. If you already checked our troubleshooting page we strongly recommend to check the official Oppo forums. It's very probable that other users published there the steps for your model.,2018-11-20 09:39:26,newest,com.gmail.jmartindev.timetune +DancingFor Angels,https://lh3.googleusercontent.com/a-/AOh14Gj-WI0pigB63Cogi248n9BhtFAQKmaDXASzhVOg,"Edit: You have to buy the pro version if you want to sync your calendar, which to me is an essential component of a time planning app...",3,0,2.5.1,2018-11-14 21:11:04,"This is not true. There are only three premium features but none of them is essential. You can use as many routines, reminders, timers and events as you need in the free version. Please check it better before giving an unfair review.",2018-11-12 18:15:41,newest,com.gmail.jmartindev.timetune +Rohit Modee,https://lh3.googleusercontent.com/-CLIXQLmUY8M/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMsbDqgvc2AVXaLrdCg0gtvEY5FdA/photo.jpg,Timer not working when screen locked.,3,0,2.5.1,2018-11-12 11:16:34,"This happens because Huawei devices block background tasks by default, it's not a fault with the app. You can find special instructions for Huawei here: https://timetune.center/troubleshooting/#brands",2018-11-12 18:14:34,newest,com.gmail.jmartindev.timetune +Jahsina,https://lh3.googleusercontent.com/a-/AOh14Gjsxemd3g9HY5Jn_e0AGi0HQh9MRLoMuttEvxLq7g,Loved it initially but after a while the notifications would stop showing up and I was constantly having to refresh background tasks; too much for me to use often.,3,0,2.5.1,2018-10-29 00:51:31,Hi. This happens when the Samsung Power Saving Mode is blocking our background tasks. You can find instructions for Samsung here: https://timetune.center/troubleshooting/#brands,2018-10-29 08:48:30,newest,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,New version of time tune is difficult to use please upgrade it,3,0,2.5.1,2018-10-28 15:21:35,"Hi, thank you very much for your feedback, we really appreciate it 👍 If you tell us which actions you find most difficult in this version, we can look into it. Thanks.",2018-10-28 21:15:03,newest,com.gmail.jmartindev.timetune +Ratri Arista,https://lh3.googleusercontent.com/-j5QKKVUj5kk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOJtxiGihLIwq1lA5q6BAszkbZ6qA/photo.jpg,Good but doesnt make me go do habits bcz no pressure just notif.,3,0,,2018-10-28 11:58:19,"Hi, thank you very much for your feedback. The project is still young but more improvements will be added progressively.",2018-10-28 21:07:43,newest,com.gmail.jmartindev.timetune +A. Rajina Banu,https://lh3.googleusercontent.com/a-/AOh14GhD5ZoCsnNic7OJwkLFwPIENXIe7JcLrAbId7O1MA,Good,3,0,,2018-10-28 02:21:58,,,newest,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Good app and nice after the latest update,3,0,2.5.1,2018-10-24 06:22:28,"This happens because Xiaomi devices block background tasks by default, it's not a fault with the app. You can find special instructions for Xiaomi here: https://timetune.center/troubleshooting/#brands",2018-03-31 14:15:23,newest,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I used to have 5 stars, but then the layout changed and I find it incredibly difficult to organise. I'll go so far as saying I hate it, it's just soo much. I want to have a separate view for each day not an endless scroll like some facebook timeline.",3,7,2.5.1,2018-10-23 20:51:44,"Thank you very much for your feedback, Lauren. We really appreciate it. We're currently gathering opinions about the interface to make decisions. Thanks.",2018-10-23 21:02:38,newest,com.gmail.jmartindev.timetune +vishwa Industries,https://lh3.googleusercontent.com/a-/AOh14Ggo1LtdVIl-TjQRyYd-hLcMTRxD1EcpqRI7JfZyrA,"I liked it ,nic one. thanks!",3,0,2.5.1,2018-10-23 16:41:33,,,newest,com.gmail.jmartindev.timetune +AngieLuila Bradley,https://lh3.googleusercontent.com/a-/AOh14GhHkkr2fa7rLp-2IQgRieVIcWcRTK1u7hyQd2Ajyg,Pros: I like the layout. I like the ease of entering tasks. I like the widget. Cons: No check off when complete. No accountability tracking. It just didn't help at all with keeping me on task.,3,1,2.5,2018-10-19 14:31:15,"Hi! Thank you very much for your feedback. The app is still growing, but this is an option we'd like to add in the future 😉",2018-10-19 20:48:59,newest,com.gmail.jmartindev.timetune +Smokescreen,https://lh3.googleusercontent.com/a-/AOh14GgL8_CkAzMTfZ1tfYtFgwQaKo76BFCX3AWEvj-FOA,"I have been using this app for about a year now without any issues, so I'm definitely not fond of the new routines menu. I find that swiping from side to side for the days to be much easier and having the drag and drop feature to be more comfortable (Hope it will be implemented again soon). Also the fact that you can't move a blank time frame up and down makes it difficult to set up the routine. As I have to change the time of every item to move it down. I would prefer the old version, hopefully it all gets fixed soon.",3,1,,2018-10-10 07:27:42,"Hi! Thank you very much for your feedback. We're currently in the process of gathering feedback about the new interface so we can make decisions about it. For the moment, the ability to move empty blocks will most probably come back in the next version. Stay tuned.",2018-10-10 08:35:31,newest,com.gmail.jmartindev.timetune +Bhuvan T s,https://lh3.googleusercontent.com/a-/AOh14GjO3NEATTV0x9vGDTO8dNORUdr07rcMkipkFHfSoQ,Hell,3,0,2.5,2018-10-09 14:21:28,Hi. Please give more details. We want to know in order to improve. Thanks.,2018-10-09 14:30:01,newest,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Decent app, but i was having issues with scheduling my week with it. Any time i tried to M-F (day schedule) it repeated the same schedule perpetually, even on the weekends, regardless of setting day limits or time constraints. Will check back on this one. (Might be my device thats the issue idk) Gui was clean and simple, and you can set specific alarm sounds.",3,1,2.5,2018-10-09 00:33:15,"Hi. Remember that routines repeat themselves automatically. If you create a 5-day routine, it will repeat every 5 days. If you need to map your routine to the days of the week, you need to use a 7-day routine (in this case, you can leave Saturdays and Sundays empty). If you need more help you can contact by email. Thanks 😃",2018-10-09 14:33:43,newest,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,It hard to use,3,1,2.5,2018-10-06 01:53:23,Hi! You can find a starting guide here: https://timetune.center/android-help/,2018-10-06 08:20:11,newest,com.gmail.jmartindev.timetune +L. F. T.,https://lh3.googleusercontent.com/-2zuE1hBltC4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOM8KUIFfVDG1irfI47EpB85WH39w/photo.jpg,I don't like the new update. It's very confusing. I can't use it anymore :(,3,2,2.5,2018-10-03 23:11:43,"Hi, could you give us more details? What do you find confusing? If you had to choose one thing, what would you miss most from the old interface?",2018-10-04 08:29:27,newest,com.gmail.jmartindev.timetune +Rhea Koeva,https://lh3.googleusercontent.com/-AqQf-84SWNo/AAAAAAAAAAI/AAAAAAAAAxg/AAKWJJN-Ljqj0_p9hSGkvsXF6ixlr0Nq0g/photo.jpg,"I like the new ""Jump Day"", and ""Insert Gap"" options, and the Advice/Delay dialog for multiple activities. The Undo feature is a great addition as well. I'm really disappointed with the new look and that vertical scrolling through. Makes it so much harder to use - it's easier to start changing the wrong day since the current activity is not highlighted in any way, and starting time is not that clear as before. Also, those activity/free time blocks take too much space, yet there is not enough space horizontally for the text and a lot of the additional tags aren't visible. I'd prefer a more compact look. It would take a lot of time getting used to this...",3,2,2.5,2018-10-02 06:31:32,"Thank you very much for your feedback, Rhea. We keep gathering feedback about the new interface to make decisions. Meanwhile, please see our reasons for the new interface and the new possibilities here: https://timetune.center/timetune-2-5/",2018-10-01 13:49:09,newest,com.gmail.jmartindev.timetune +Aachman,https://lh3.googleusercontent.com/a-/AOh14Gh5CuQyy_j2ltRUmR1gB4jAw47MATAAouf2_T6K9g,App is overall amazing Only thing that I was missing that there is not any feature for prioritising the activities. Hope the developers will add it soon.,3,0,2.4.4,2018-09-19 17:30:09,"Thanks for your suggestion, Aachman. We will analyze the idea.",2018-09-19 19:59:26,newest,com.gmail.jmartindev.timetune +Erynn Szewczyk,https://lh3.googleusercontent.com/-95i1TXLnFzo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPulRIrOJwOcsqTRfqYSXJWUdbzMQ/photo.jpg,"It would be nice if there was a warning what certain buttons do. I was trying to figure out how to change the day from day one, clicked clear day, and it erased my entire schedule. It should say clear routine if that's what it does. I'm a little pissed as I just paid for the app so I can make a schedule. Still unsure of how to do what I need.",3,0,,2018-09-16 13:44:43,"Hi Erynn. We're really sorry for the inconvenience. Please stay tuned, in the next release we'll add a new undo system that will allow to take any change back, so you don't lose any data when scheduling (the change is already in beta). If you contact by email and tell us more details about what you need to do, we can give you indications. Thanks.",2018-09-16 18:20:00,newest,com.gmail.jmartindev.timetune +Piyush K Sahu,https://lh3.googleusercontent.com/a-/AOh14GhmRYdZCZJsOYHtXUV_1vMgV6hvP-VhoD5rsSMnUw,Just add 'To Do List' feature. Highly recommend.,3,0,2.4.4,2018-09-12 16:49:52,"Hi! Thank you very much for your suggestion, Piyush!",2018-09-12 21:23:25,newest,com.gmail.jmartindev.timetune +Kamal Sharma,https://lh3.googleusercontent.com/-xgEFy_i7064/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPlwdsEhi7piugbac0IjEQaTKowKA/photo.jpg,"Please also add the option to import few activities from any day instead of the whole day onto timeLine of a routine. Further please add the feature of allowing a to start a routine custom routine Using time interval instead of defining exact time, because on some bad days due to unavoidable circumstances we are out of schedule and adding a fresh custom timetable for the day hurts a lot modifying Timings for every activity. For rest of its features it worth 5*****.",3,8,2.4.3,2018-09-09 03:19:37,"Thanks for your suggestions, Kamal. More improvements will be added progressively.",2018-09-09 08:12:34,newest,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I like this app i really do. However one caveat i feel is that it can only sync to a gmail or the native phones calendar. Outlook calendars are not supported as far as I can tell. So for me, I work with outlook, thus any meetings etc cant be viewed seamlessly with respect to a current timeline plan.",3,0,2.4.4,2018-09-03 02:59:37,"Hi, thank you very much for your feedback. You're right, for the moment we only sync with Gmail accounts, but we'd like to add other providers in future versions.",2018-09-03 08:39:48,newest,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,If there is some problem... regarding some phones than you must overcome that... Rest of all things application is great.,3,0,,2018-08-21 07:32:31,"Hi. This happens because the device settings (usually the power saving mode) is blocking our background tasks, it's not a fault with the app. You can find instructions for Samsung here: https://timetune.center/troubleshooting/#brands, but please don't blame us for something it's not our fault.",2018-08-21 07:20:16,newest,com.gmail.jmartindev.timetune +Katie Gray,https://lh3.googleusercontent.com/a-/AOh14GiOqoTkGSTpulkCvDRocfOZeeTeX66VJ_QpZca_,"Could be a lot better. I wish we were able to check off items in our +routine as we finish them so we can move on to the next task. I would also +like to see a timer associated with the routines so we can see if we are +falling behind or are ahead of the time we have budgeted. I have my morning +routine, but it has multiple tasks within it. If we were able to condense +my tasks into the routine, it would make things look more organized. All in +all a very good app if you want to stay organized, but I don't think I +wouldn't use this app until the mentioned points are added. If these all +exist already, please let me know- because I couldn't figure out how to get +to them",3,0,2.4.4,2018-08-12 08:07:26,"Thank you very much for your feedback and suggestions, Katie. We don't have these features yet but the project is still growing. We'll be adding more features progressively.",2018-08-12 08:55:08,newest,com.gmail.jmartindev.timetune +Jessica Munro,https://lh3.googleusercontent.com/-GUZebiXebXs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOhZ5O7d-VQZ2V5fUKSvsGSjnAaKg/photo.jpg,It is ok but maby it could be a bit more clear,3,0,2.4.4,2018-08-11 21:25:27,Hi Jessica. Thank you very much for your feedback. Our intention is to add improvements in successive versions.,2018-08-12 08:53:27,newest,com.gmail.jmartindev.timetune +Rajni 01,https://lh3.googleusercontent.com/a-/AOh14Gil0MDSIl-X6tknooAUuhAcCNixYfTmubYkQxqtOA,"It would help me a lot if it could silence the notification from other apps +when I'm studying",3,0,2.4.3,2018-08-09 05:37:05,"Thank you very much for your suggestion, Rajni. We will investigate if this is possible.",2018-08-09 08:43:17,newest,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"It's well put together. But the timer functionality doesn't really belong, +the controls are unintuitive and they have an arbitrary 5min minimum which +ruined the use-case I was going to use it for.",3,0,2.4.4,2018-08-02 02:22:55,Hi. Thank you very much for your feedback. The project is young but more improvements will be added progressively.,2018-08-02 08:21:14,newest,com.gmail.jmartindev.timetune +Ashish Lamba,https://lh3.googleusercontent.com/a-/AOh14GgIudiCa4uasVwHetfaZGrr65qn5XQK0F2FNufioeI,"There is one problem that not notified me accurate time it's 5 to 10 +minutes after wake me up why I don't know please help me regarding this",3,0,2.4.4,2018-07-18 02:48:15,"Hi Ashish. Please check possible causes on our troubleshooting page (https://timetune.center/troubleshooting/). If you cannot find a solution there, you can contact by email for more help. Thanks.",2018-07-18 08:49:02,newest,com.gmail.jmartindev.timetune +i i,https://lh3.googleusercontent.com/a-/AOh14GjKjrxfygkqFu9My4NeBfEYoMMjkUzYZeiHfIFp,I loved this app when I used it 2 years ago but can I no longer log in?,3,0,2.4.4,2018-07-09 07:47:18,Hi. There must be some confusion here. We never had a 'log in' option. This is a possibility we're considering for the future. Thanks.,2018-07-09 08:57:06,newest,com.gmail.jmartindev.timetune +Sagar saini,https://lh3.googleusercontent.com/a-/AOh14Gi4G0hQzVzNWz4u8eXJIV6fYT47obOXfToBrdwWCA,"App is good but have some bugs.....Notification changes automatically to +default after some time",3,0,2.4.4,2018-07-05 18:33:22,"Hi Sagar. Please check our troubleshooting page for possible solutions: https://timetune.center/troubleshooting/ (if you don't find the solution there, you can contact by email for more help). Thanks.",2018-07-05 21:02:44,newest,com.gmail.jmartindev.timetune +Tera Baap,https://lh3.googleusercontent.com/a-/AOh14GhReTOTTOcy7BiS-5vPTW2bAydXDHN8Mk2AQLrM,"No actually I do have a Sony Xperia phone and time tune doesn't ring on +time and it only runs when I open my phone.. I mean how to activate +notification when it's also off",3,0,,2018-07-01 10:59:31,You need to find the place (or places) in your device settings (usually on the power management settings) where you can give TimeTune permission to run in the background and auto-start. You may need to pin the app to the list of recent apps too. More information here: https://timetune.center/troubleshooting/,2018-07-01 11:07:37,newest,com.gmail.jmartindev.timetune +BENGAL COMPUTER TRAINING CENTRE,https://lh3.googleusercontent.com/a-/AOh14GgG7rpEhbTb4EjFrJ260VKKzobDVM8KfULCJ2pnsA,Tnx,3,0,,2018-06-26 05:40:20,,,newest,com.gmail.jmartindev.timetune +Pankaj Mishra,https://lh3.googleusercontent.com/a-/AOh14Gi_F0-f5HW-1R0Sy_sL1_625tHQHKC1BRPeoVeddQ,Nice app,3,0,2.4.4,2018-06-15 02:39:46,,,newest,com.gmail.jmartindev.timetune +António Quizela,https://lh3.googleusercontent.com/a-/AOh14GitGW9mrXPFamZ1EhNriGjvbPsmwkNkZ-rvvSkP9g,It's a good time planner/controller ...,3,0,2.4.4,2018-06-13 12:50:51,,,newest,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Gd,3,0,2.4.3,2018-06-08 10:48:15,,,newest,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,It's super,3,0,,2018-06-05 16:37:03,,,newest,com.gmail.jmartindev.timetune +Mohit Singh,https://lh3.googleusercontent.com/a-/AOh14Ghh9lydTHCo9OA897dD5y4i_uW0tq1qZsApMOoE,"I liked its features. These are well thought through. If I could go back in +timeline, it would have been better.",3,0,2.4.3,2018-06-05 12:49:03,Thank you very much for your suggestion about the timeline. We will analzye the idea.,2018-06-05 13:22:07,newest,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Really,3,0,,2018-06-03 16:12:34,,,newest,com.gmail.jmartindev.timetune +K-pop lover,https://lh3.googleusercontent.com/a-/AOh14Gh_eyuNwjj0b9W1x4oGMnwn3uZnl1PFaVP2HXp4HA,Amazing app,3,0,2.4.3,2018-06-01 20:33:32,,,newest,com.gmail.jmartindev.timetune +harshwardhan patil,https://lh3.googleusercontent.com/-dpVaPie1phU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP6_dD29KP6g19enWcyVR6C9vOXng/photo.jpg,I luv it,3,0,,2018-05-29 18:43:38,,,newest,com.gmail.jmartindev.timetune +Faris Aiman,https://lh3.googleusercontent.com/-b2ohWwwkjDI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMejAiupgqBvnjc__1VEwAQIefPhw/photo.jpg,"idk wht hppen but every time i open the app it stated tht the app hs been +blocked by system..idk y..btw im using oppo f1s",3,0,2.4.3,2018-05-29 16:49:16,"This happens because the device is blocking our background tasks, it's not a fault with the app. You can find special instructions for Oppo here: https://timetune.center/troubleshooting/#brands",2018-05-29 17:18:10,newest,com.gmail.jmartindev.timetune +Jason Kidd,https://lh3.googleusercontent.com/a-/AOh14GhNPAfp7c5WldfeD0eep5GRV86LXyVDSITm5SOiHA,Not for me,3,0,2.4.3,2018-05-16 13:39:05,,,newest,com.gmail.jmartindev.timetune +Moja Baba,https://lh3.googleusercontent.com/a-/AOh14Gi6U2LFkrSuEoe_aJNiOC4YBHULSDOEhxOQqW61wA,"It's okay application however it is not that practical. Reason is more +often than not I have some event I'd like to add and shift around my +routine. This is not possible at the moment (using programmer for 2 out of +3 days is meticulous just so I can add 1 event). It would be good to have +the ability to move and split routine items with events. In essence make +programmer less of a hustle, and more natural and quick to use.",3,1,2.4.2,2018-05-13 22:37:40,Hi. Thank you very much for your feedback. More improvements will be added progressively.,2018-05-14 07:35:48,newest,com.gmail.jmartindev.timetune +Yokanan Samudra,https://lh3.googleusercontent.com/a-/AOh14GjSIKtX9AkSrpT_pFJzHHdiwEMY9sappXVDWjSX3A,"Reminder sometime not working, so i must restart the reminder. Please fix it",3,0,2.4.2,2018-05-10 22:29:34,"Hi. This happens because Xiaomi devices block background tasks by default, it's not a fault with the app. You can find special instructions for Xiaomi here: https://timetune.center/troubleshooting/",2018-05-11 08:20:58,newest,com.gmail.jmartindev.timetune +Arv Gopal,https://lh3.googleusercontent.com/-rRJmnTQMT2M/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNxhS29dkranlX9cTL3LBY9g8Lc5g/photo.jpg,Must have this App,3,0,2.4.2,2018-04-29 16:16:01,,,newest,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Well done,3,0,2.4.2,2018-04-29 02:58:03,,,newest,com.gmail.jmartindev.timetune +Juan Gallardo,https://lh3.googleusercontent.com/a-/AOh14GikIxSyrPFZ8DrWOq6vuBc32y9ob3uEEherW0hp1g,"The app is really neat. It would be great if there was the option to pause +timers!",3,1,2.4.2,2018-04-28 03:09:04,"Thanks for your suggestion, Juan. We will analyze the idea.",2018-04-28 10:57:06,newest,com.gmail.jmartindev.timetune +Dhvani Mehta,https://lh3.googleusercontent.com/a-/AOh14GhH4RXtSEw5-SEZkx-tjj-B1V05MHcG8GGFjc5MnIE,"I like this app👍but my routine won't work and notifications won't make +sounds and not appear on screen...",3,0,2.4.1,2018-04-15 04:15:55,"Hi Dhvani. This happens because the battery optimizations in the device are blocking our background tasks, it's not a problem of the app. You can see how to solve it here: https://timetune.center/troubleshooting/",2018-04-15 08:32:38,newest,com.gmail.jmartindev.timetune +THOR zz,https://lh3.googleusercontent.com/a-/AOh14GgsFhuoiF8mw5keyiyrANxVuEji7XwdUWwwdLsBtA,Quite good but also need some improvement,3,0,2.4.1,2018-04-14 10:38:27,Hi Rajat. What would you like to add? All suggestions are welcome ;),2018-04-14 11:56:43,newest,com.gmail.jmartindev.timetune +Ricardo Hassan,https://lh3.googleusercontent.com/a-/AOh14GiLsZOvdKVNzUjbr3xneCZ-R_HZU3KjYP7yOIIdiQ,Would love to be able to add daily reminders qith ease,3,0,2.4.1,2018-04-13 13:54:25,,,newest,com.gmail.jmartindev.timetune +Tim Jones,https://lh3.googleusercontent.com/a-/AOh14Gg7UWUmuuvS-1YoMC_lFwabRqfX7DUilkMcorr0rQ,Paid the 2.99 for the calendar sync as I really needed that and found that it didn't work. However they quickly refunded my money and the issue may have been with the compatibility of my phone.,3,0,2.4,2018-04-10 07:15:03,"This is explained in the troubleshooting section (https://timetune.center/troubleshooting/#calendar). Did you check there or ask for support before giving a low rating, as we ask in our description? We want to help, but you need to give us the chance. If you prefer a refund, contact by email and we'll do it too, there's no problem either. Thanks.",2018-04-07 09:34:52,newest,com.gmail.jmartindev.timetune +Nithin Philip,https://lh3.googleusercontent.com/-2QjtrJ8DBJQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMyxbuystJrjNiormgTP8bI0LaJNQ/photo.jpg,Im facing an issue please.i have subscribed to your pro version and paid money google play.unfortunately im still an free user .the money debited from the bank.can you please help me?,3,0,2.4,2018-04-07 09:50:20,Hi Nithin. Please contact by email and we'll find what happened. Thanks.,2018-04-07 15:02:41,newest,com.gmail.jmartindev.timetune +Connor Arbiter,https://lh3.googleusercontent.com/a-/AOh14Gh_nJ8tidCQHgI54s7CRWgezt_9HqT66cuBAxkO6Q,"Good lord... you have to set EVERY LITTLE DETAIL of EVERY SINGLE THING (to get any sort of good results I mean). It feels so unintuitive to have over 25 ""taps and tweaks"" you have to perform for every single item you enter into this. Plus having something you need to do that's instant (like a social media post) has to have a ""start and end time"" and won't let you enter anything less than 5 minutes hahah are you kidding me? At this rate it would take me LONGER to organize my schedule than to just do everything the unorganized way. I'm using an app called Time Planner instead which is still pretty lengthy to set up but much more intuitive",3,0,,2018-04-06 07:56:40,"Not correct. 1) You don't HAVE to set every detail, you CAN set every detail. If you don't want to set everything just use the defaults (they can be configured in the settings). 2) Routines work with blocks of time, if you need something instant, use a Reminder. 3) The minimum is 1 minute, not 5, just slide your finger through the clock. Thanks.",2018-04-06 07:08:45,newest,com.gmail.jmartindev.timetune +bala subramanian,https://lh3.googleusercontent.com/-TNIShOzjCWM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMBmDit6FsCYqLysartfSecPtuGRQ/photo.jpg,It seems to be improved and noted no option to delete routines and need to go all the days and delete...,3,0,2.4,2018-04-02 09:06:04,"Hi. You can delete routines here: Main menu / Routines / click on a routine card submenu (the three vertical dots in the routine card) and select 'Delete'. If you were referring to a different thing, please let us know. Thanks.",2018-04-02 08:32:54,newest,com.gmail.jmartindev.timetune +Quiet Radiation,https://lh3.googleusercontent.com/a-/AOh14Ghmmtkhokc3gley50iJ-1-w3LNxuyjDIjrZwTillg,Can not use custom rutin name,3,0,,2018-03-30 11:07:36,"Hi. If you want to change the routine name, click on the routine card submenu (the three vertical dots on the routine card) and select 'Rename'. If you were referring to a different thing, please let us know. Thanks.",2018-03-30 13:31:04,newest,com.gmail.jmartindev.timetune +Siddhartha Hundekari,https://lh3.googleusercontent.com/a-/AOh14GgOKBYOazf_C9QWtpsxDv6FsrOz4Y1lLuxYlIhBWA,Reminder Notification tone is very low in volume,3,0,2.4,2018-03-29 16:59:13,Hi Siddhartha. You can try with another output channel (Settings / Notifications / Output channel). Remember to check the corresponding volume level too.,2018-03-29 20:00:51,newest,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,great app for arranging schedules and activities. easy tool to teach u good productivity.,3,0,2.4,2018-03-29 04:45:31,,,newest,com.gmail.jmartindev.timetune +Merazul Basit Chowdhury,https://lh3.googleusercontent.com/a-/AOh14GjG4T5mvOqEg5r2dFjYlhXspGjtPLXY5xZtyqJu,The user interfaceis not good enough. It is not that much understandable,3,0,2.4,2018-03-27 17:35:37,"Hi, thanks for your feedback. The project is still young but more improvements will be added progressively. Remember that you can send any suggestions by email (Settings / Send feedback). All suggestions are welcome.",2018-03-27 20:16:17,newest,com.gmail.jmartindev.timetune +yulianti rusdiana,https://lh3.googleusercontent.com/a-/AOh14GhLikno3UMIPcpnaFPCX3_2nU2f1a8yUnxC2ZGIzg,Widget sering ngadat dan ndak update dengan hari dan jamnya. Butuhnya pasang widget agar terupdate tapi seringnya malah gak cocok dengan waktunya. Notifikasinya pun sering g muncul.,3,0,2.4,2018-03-25 05:03:47,"Hi. This happens because Asus devices block background tasks by default, it's not a fault with the app. You can find special instructions for Asus here: https://timetune.center/troubleshooting/#brands",2018-03-25 09:44:04,newest,com.gmail.jmartindev.timetune +Fernando Sam,https://lh3.googleusercontent.com/-8i9YzKalxjA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPJZiDsd9y09aGFctIuwwK9dXUBnw/photo.jpg,I guess i am wanting the routines to have synched my calendar and not my timeline... it is not clear how to keep track of my performance?i am going to have to enter everything thing in my calendar into the routines bin??,3,0,2.4,2018-03-24 13:49:41,"Hi Fernando. Thanks for your feedback. The project is still evolving, our intention is to add a tracking option in future versions. For the moment the calendar sync option is from Google Calendar to TimeTune, but we're considering to do a full sync in the future.",2018-03-24 15:56:35,newest,com.gmail.jmartindev.timetune +donna maria,https://lh3.googleusercontent.com/a-/AOh14GgmChNjZDrhVsz-yXgOFMRn9WIx5BmDbyr_XCJg,Great but basic in design and you cant not preview things such as sound. Its basic to use but some features are a little annoying like all the tags in one place. Id like the option to categorise.,3,1,2.4,2018-03-23 01:02:13,"Thanks for your feedback, Donna. It should be possible to preview the sound in the sound picker. If it doesn't play, please check the output channel in Settings / Notifications and the volume levels. If you can't solve it, you can contact by email and we'll help more. The app is still young and more improvements will be added progressively.",2018-03-23 10:50:16,newest,com.gmail.jmartindev.timetune +Kronometri,https://lh3.googleusercontent.com/a-/AOh14GgLMjbyAG3W2PZlcb9a_1sGdj7aCwFK5xmdERNm5A,Apparently I rated this app one star this time last year but I don't remember what the issue was so whatever you guys did up to now with improving the app is good. Unfortunately I'm heavily dependent on having a calendar view(not Google calendar integration but rather an option to display days via calendar) so until it's put into the app I will be uninstalling and standing by for the update.,3,0,2.3.4,2018-03-07 14:43:09,Thanks for your feedback and suggestion. We'll be adding more improvements progressively.,2018-03-07 16:01:44,newest,com.gmail.jmartindev.timetune +Asif Khattak,https://lh3.googleusercontent.com/a-/AOh14GgoJWL_NcPZGFZpPgGjEMdUojRoO9B-ZcZp1Qn7,No signup option...?,3,0,2.3.4,2018-03-06 15:47:38,"Hi Asif. The project is still young, this is a feature we want to implement in future versions. Thanks for your understanding.",2018-03-06 16:43:54,newest,com.gmail.jmartindev.timetune +Tramek Patigdas,https://lh3.googleusercontent.com/-ISg0PjUKg3w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPzC4nR1sCT3vHl0fl14HFE1hp2sg/photo.jpg,Music doesn't play as notification of reminder... Hate it I had skipped my one routine..,3,0,2.3.4,2018-03-06 13:55:44,Hi Tramek. In most cases this is just a configuration issue. If you contact by email we can help you find what happened. Thanks.,2018-03-06 14:23:07,newest,com.gmail.jmartindev.timetune +Prakash Ragunathan,https://lh3.googleusercontent.com/a-/AOh14GgZO_fZ1pNSnjtA-P7ARg9HdA0CpHl7KkkGLdMG,"No snooze option for reminders. This causes some task misses. Please look at the app ""To do reminder with alarm"" for reminder buzz types and options. It would be good if these features are added in future.",3,0,2.3.4,2018-03-02 11:58:38,"Thank you very much for your feedback, Prakash. The app is young but more improvements will be added progressively.",2018-03-02 21:41:08,newest,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,I think its a nice app. A nice initiative,3,0,2.3.4,2018-03-01 22:40:58,,,newest,com.gmail.jmartindev.timetune +Sara Aliii,https://lh3.googleusercontent.com/-cC0tmTEuQkI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNwL93-qcbyAFgJJNqX4TZqfH4CgA/photo.jpg,"In the widget, why making the timeline of the whole week?! .. i think it will be more better if it is updated day by day .. but overall i like this app ❤",3,0,2.3.1,2018-02-25 14:03:14,"Hi, thanks for your feedback. As with all software, nothing is written in stone. Features like this may change/improve/adapt in the future ;)",2018-02-25 16:29:11,newest,com.gmail.jmartindev.timetune +ruhil arshad,https://lh3.googleusercontent.com/-zj7nslfDAn0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPJPgvNLrx1Le5ybEUry8kYmqybPQ/photo.jpg,It didnt sync with the widget. Overall it great app,3,0,2.3.4,2018-02-19 02:20:13,"Hi. This happens because Huawei devices bock background tasks by default, it's not a fault with the app. You can find special instructions for Huawei here: https://timetune.center/troubleshooting/#brands",2018-02-19 09:36:04,newest,com.gmail.jmartindev.timetune +utkarsh sharma,https://lh3.googleusercontent.com/a-/AOh14GhyYW1Hxz2yH_XzgTkwuAt9U8lQJs8BszYyBwHnTQ,I don't know why but there aren't any notifications.. It never shows anything let it be reminder or routine,3,0,2.3.4,2018-02-08 04:04:04,Hi. This happens because the device is blocking our background tasks. You need to find the places in your device settings (usually on the battery settings) where you can give TimeTune permission to run in the background and auto-start. You may need to pin the app to the list of recent apps too. More info: https://timetune.center/troubleshooting/,2018-02-08 10:05:13,newest,com.gmail.jmartindev.timetune +Danu Chris,https://lh3.googleusercontent.com/a-/AOh14Gj9_zNVWOp7FCxLeIaTguZIN9XYv9o89rn9FQfvyQ,"It's good to manage our time, but why all event and riminder has done not delete automatically?",3,0,,2018-02-06 08:42:48,"Hi. For the moment, events and reminders stay there in case you want to reuse them. But as an alternative, you can go to the top submenu and sort them by status. This will move past events and reminders to the bottom of the list.",2018-02-06 09:56:11,newest,com.gmail.jmartindev.timetune +Dave Simpson,https://lh3.googleusercontent.com/a-/AOh14GgVfe8KzlZSNTe3WSizgnLAbyPzkhcl5M-6v77qOg,Great app but as someone else mentioned there's no calendar view which for me makes it pointless. Real Shame. The search goes on...,3,0,2.3.4,2018-02-05 14:02:11,"Thanks for your feedback, Dave. Keep in mind that the project is still young, more improvements will be added progressively.",2018-02-05 18:11:15,newest,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,One with a calendar view would be helpful,3,0,,2018-02-04 06:28:53,Thank you very much for your suggestion. We will analyze the idea.,2018-02-04 09:59:22,newest,com.gmail.jmartindev.timetune +j a n w e e,https://lh3.googleusercontent.com/a-/AOh14GhsbZ4sd_FlouCttbaQKDPfB-vulz0qlOYN8emnqw,The notification nor alarm won't work.,3,0,2.3.4,2018-01-29 00:54:11,"Hi. This happens because the device is blocking our background tasks, it's not a fault with the app. You need to find the places in your device settings where you can give TimeTune permission to run in the background and auto-start. You may need to pin the app to the list of recent apps too. More info: https://timetune.center/troubleshooting/",2018-01-29 09:47:11,newest,com.gmail.jmartindev.timetune +grxcy,https://lh3.googleusercontent.com/a-/AOh14GhP2gYTQ8eAmoCcXLgWjSAfyz9LNV48DbwaSxsslig,Its okay for a plan in a phone,3,0,2.3.4,2018-01-27 04:07:07,,,newest,com.gmail.jmartindev.timetune +Septy Chasanah,https://lh3.googleusercontent.com/a-/AOh14GhM9E21LHf35b3le2MjwpUEbi_2CQ7-xkGZjVUnlA,I update to latest version and notification sound won't stop. I saw in log its already fixed so I try to reinstall couple of times but still the same. I'm not always around or have the phone on my hand all the time to make it stop. Considering to download older version instead,3,0,2.3.4,2018-01-25 13:06:29,Hi Septy. If you contact by email we can give you a test to verify and try to solve the issue. Thanks.,2018-01-25 18:56:54,newest,com.gmail.jmartindev.timetune +Netra Ghimire,https://lh3.googleusercontent.com/a-/AOh14GjvUf9SOqEHqXuc-stWj8YT9ZtU1pcG1FHusKOW,Nice app ..want toThank bro who created this.,3,0,,2018-01-24 17:05:28,,,newest,com.gmail.jmartindev.timetune +Laura Bunny,https://lh3.googleusercontent.com/a-/AOh14GiNhpEON7RWd6Y4x0GzGJGpm_XAm0OAba71MhvwZQ,You cannot check off when you have finished a task in your routine. 😐 Also a tad confusing. Tags are cute.,3,0,2.3.4,2018-01-24 12:16:45,Hi. Thanks for the feedback. The project is still young but more improvements will be added progressively. We recommend to take a look at our 'Getting started' guide (https://timetune.center/android-help/). Once you get the idea you'll see it's very easy.,2018-01-24 21:57:50,newest,com.gmail.jmartindev.timetune +tejas ukalkar,https://lh3.googleusercontent.com/a-/AOh14GhEX6YoWpcOKCS57-ymb0DFjgSFtYFN9MY1xZJGnQ,Design is awesome but app should notify even if it's not running in background,3,0,2.2.1,2018-01-22 04:53:53,"This happens because the device configuration is blocking our background tasks, it's not a fault with the app. You need to find a place on your device settings (usually on the power management settings) where you can allow TimeTune to run in the background. More information here: http://timetune.center/troubleshooting/",2017-06-16 12:57:00,newest,com.gmail.jmartindev.timetune +JKayombo_ Jr,https://lh3.googleusercontent.com/a-/AOh14Giz-4QYNB7A-aYnhWuNrrCtatga7Br3uWS_4IcGT5U,Very litle one,3,0,2.3.4,2018-01-21 23:59:58,,,newest,com.gmail.jmartindev.timetune +Mohamed Magdy,https://lh3.googleusercontent.com/-P4eXfKKlWXw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNxrAKlmYZvK_OBcoB0qGbIl5yKkw/photo.jpg,Hard to use Edit: after your polite replay i edited my review from one star to 3 stars still find it hard to use.. good app don't require to read a manual to use it. It should be user friendly and clear thanks any way,3,0,2.3.4,2018-01-21 11:10:57,"Thank you very much for giving more details, Mohamed. We'll be adding more improvements progressively.",2018-01-21 16:11:08,newest,com.gmail.jmartindev.timetune +Anto Alex,https://lh3.googleusercontent.com/a-/AOh14GhJw_OyD2sjM5gbwN-MhLARm1MeZ0K66WrMLdvxvw,"Routine maker is amazing.., but notifications are not coming when the phone is in lock mode. So, i uninstalled it.",3,0,2.3.4,2018-01-16 02:09:30,"This happens because the device is blocking our background tasks, it's not a fault with the app. You can find how to solve it here: https://timetune.center/troubleshooting/",2018-01-16 07:48:44,newest,com.gmail.jmartindev.timetune +Amanda Dragoo,https://lh3.googleusercontent.com/a-/AOh14GhVmwb3MTJbwKvGP7eVPHcdfMV5b_6ZaJkJtsJm4Q,I love this app and the idea behind it with the weekly and daily routines. I wish I could view my month or week at a glance however so I can see my weekly routine and how my non reoccurring events affect and lay out with my routine.,4,0,2.9,2020-04-03 19:13:55,"Thank you very much for your suggestions, Amanda. The app is still evolving and we'll be adding improvements progressively 🙂",2020-04-03 20:57:34,most_relevant,com.gmail.jmartindev.timetune +Jenny Baysa,https://lh3.googleusercontent.com/-4wKKrfxLc5E/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPfE5TjhG91OGgzjVMJcp0SZjmgtQ/photo.jpg,"Great app to plan out your weekly schedule, especially for a college student. However I wish it would show the amount of time being spent on each activity on the widget. It shows it when you go into the app but that's less convenient and helpful if you want to do a quick check to see how much time you have for today's lunch break.",4,6,2.7.1,2020-01-28 05:48:41,"Thank you very much for your suggestion, Jenny. The app is still evolving but we'll be adding more improvements in successive updates.",2020-01-28 09:29:06,most_relevant,com.gmail.jmartindev.timetune +Yu Hang Ng,https://lh3.googleusercontent.com/-PhuVWE96sxU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN5j9yyUKSfHZ4FVOMzqECPLJhm6g/photo.jpg,"Great app, very easy to schedule. I think it would be great if there is a button from the notification panel that allows muting of all events for the rest of the day. Another feature could be the user can push forward or backwards the whole timetable (or pushing forward the event and shortening another) from the popup for unexpected event that delays everything",4,0,2.7.1,2020-02-05 12:13:56,"Hi! You can mute notifications for the day here: Settings / Notifications / Silence notifications. The popup has a mute button too. Is that what you were looking for? About moving the schedule backwards or forwards, its a possibility we'd like to explore in future versions 🙂",2020-02-05 22:05:08,most_relevant,com.gmail.jmartindev.timetune +KD Cliff,https://lh3.googleusercontent.com/a-/AOh14GhA-eVH0BRSkXNzyVJL4miwgmsCpEgcv4ekGQQlWQ,This app is great so far. But I wish there was an option to select several days at a time for each routine.. if there is already pls let me know.,4,0,2.8,2020-03-21 12:07:32,"Hi, we don't fully understand your question. Could you give us an example? (if you prefer it, you can contact us at timetuneapp@gmail.com for better communication). Thanks! 🙂",2020-03-21 15:47:33,most_relevant,com.gmail.jmartindev.timetune +Teyanna Evelyn,https://lh3.googleusercontent.com/a-/AOh14Gi2uKSzOtAEDrKC3m-Cz3DRZK61KmlYCQoNdf4H,Its a good app but i dont understand how in the picture they got their timeline like all their routines all my one has is the days of the week and to make a routine you only get two additonal tags im confused how did they get so many?,4,0,2.7.1,2020-01-29 21:49:06,"You can assign up to 3 tags to each block (in case you do three things at the same time), but different blocks can have different tags. You can check all the tags here: Main menu / Tags. We recommend to check our starting guide too (https://timetune.help/en/getting-started/). If you have additional questions, contact by email and we'll help 💗",2020-01-30 09:25:04,most_relevant,com.gmail.jmartindev.timetune +Ani Ghosh,https://lh3.googleusercontent.com/a-/AOh14Gj-b6EQ2WgcvL36NBcG8KdV5whYjtSuqzvWo1Jsfw,Nice app It helps a lot to save time. You will understand where you used more time and where you should spend more time.,4,2,2.8,2020-02-24 04:22:23,,,most_relevant,com.gmail.jmartindev.timetune +Jonata G.C.,https://lh3.googleusercontent.com/a-/AOh14Gh7nkdpdwZahqq2XB3hoN_2JHcKT6s1tFjp_y12,"A great app but i miss a overview of week activity's, the app get confusing to use after adding some tasks",4,0,2.8,2020-03-25 10:40:05,"Hi, sorry about that. Stay tuned, we're working on some changes that will improve that. Thanks.",2020-03-25 12:08:57,most_relevant,com.gmail.jmartindev.timetune +Sarah Beadles,https://lh3.googleusercontent.com/a-/AOh14GiJDPKd8mT7h09ih_kUNOQ4Ey8aJv-xKIgVe2O3,Easy to use and very useful especially spending lots of time at home at the moment,4,0,2.8,2020-03-28 20:56:09,"Stay safe, Sarah! 💗🙂",2020-03-28 21:47:16,most_relevant,com.gmail.jmartindev.timetune +Ozwaald Empire,https://lh3.googleusercontent.com/a-/AOh14GihymsBxNWzNpFwnU7hQRn1ftHmfyQXOmhn-FhilA,"Fine app. Would be perfect to have desktop web version also, to make adding routine much easier.",4,0,2.8,2020-03-20 13:43:41,"Hi! Thanks for your suggestion 👍 This is a possibility we'd like to explore in the future, provided the app grows as expected 📈",2020-03-20 15:07:35,most_relevant,com.gmail.jmartindev.timetune +kaustubh amare,https://lh3.googleusercontent.com/a-/AOh14GhGPiFj7U3RqOhRjNksnZ6HnfFUDG3p_PCTT1HvjQ,"Make some more widgets, rest all app is nice and user-friendly",4,0,2.9,2020-04-04 10:46:20,"Hi, thanks for your suggestion 👍 The project is still evolving but we'll be adding improvements progressively 🙂",2020-04-04 18:41:54,most_relevant,com.gmail.jmartindev.timetune +Kaelyn Drummond,https://lh3.googleusercontent.com/-wX2FQ1eQ_F0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNp2oY62FlYF51sB8jBmdujwvKXGw/photo.jpg,Good app and really helpful with time management and staying organized,4,0,2.8,2020-03-13 06:00:43,https://media.giphy.com/media/5ArJanyCfxgiY/giphy.gif,2020-03-14 22:32:09,most_relevant,com.gmail.jmartindev.timetune +Chime Chibuike,https://lh3.googleusercontent.com/a-/AOh14Gh-YrjyH__aIWQ84x2QWIlvNn7rNWk0uvwrGuTYAA,It's simply the best for time allocation to activities and routines.,4,0,2.8,2020-03-11 04:35:19,https://media.giphy.com/media/5ArJanyCfxgiY/giphy.gif,2020-03-14 22:36:10,most_relevant,com.gmail.jmartindev.timetune +samuel mwaura,https://lh3.googleusercontent.com/a-/AOh14GgHiscdBYXrgx7Qv5tStK_fSu4t5E4wk-AXfXK6,Very easy to use plus best time route app available,4,0,2.7.1,2020-01-21 10:02:53,,,most_relevant,com.gmail.jmartindev.timetune +jon doh,https://lh3.googleusercontent.com/a-/AOh14GgjryZt-wzcCupZApV99MJaGpFBKuwQrBCbrBUq,"UPDATE: This app is great! But I'm currently not using it. I'm not using it because the widget colors don't work for me. I'd like there to be different colored backgrounds and text colors for past vs current vs future activities. I want to see at a glance what I ought to be doing at that moment, without opening the app. I'm keeping the app installed, in the hopes that the widget will be improved. Thanks, dev!",4,0,2.6.8,2019-12-19 05:33:35,"Thanks for your suggestion about the widget, Jon 👍 We'll evaluate the idea 🔎",2019-12-19 09:02:11,most_relevant,com.gmail.jmartindev.timetune +David James Welte,https://lh3.googleusercontent.com/a-/AOh14GjTFW9IyQ7sKPtIZ8bI-nd_84j92shYq2OZaJw3gA,I have found this app helps me stick to my daily schedule.,4,0,2.7.1,2020-01-20 07:05:46,,,most_relevant,com.gmail.jmartindev.timetune +Anastacia Howell,https://lh3.googleusercontent.com/a-/AOh14GiiyzM4m4zoR6QtDPcC3etlzt4ZoysXGQANbjegLQ,"I'm liking it so far. It's a very customizable experience, and I can really get into the details without the interface being too complex. I would like to see more widget options for the ap on the home screen. I like to see my schedule and routine the moment I open my phone. While there is a widget, it's rather lack luster. Synced with the programming, I think it would be cool if they had a calendar widget available.",4,1,2.6.8,2019-12-13 14:07:04,"Thanks for suggestion, Anastacia! 👍🙂",2019-12-13 21:14:55,most_relevant,com.gmail.jmartindev.timetune +Lily_ Lemon,https://lh3.googleusercontent.com/a-/AOh14GiW0n9LH86XepWjrju2L_MZ0Xm8ZmNjo1b0dpkf6A,"I like this app because it's better than another app I found and is really good at reminding me to stick to schedule. But I gave it four stars because even though I haven't had any issue with this yet, it does have in app purchases wich I don't think are needed here. But overall if you need to plan a day or routine, use this app.",4,22,2.6.6,2019-10-15 15:44:46,Hi! Thanks for your feedback 👍 The in-app purchase is the only way we can keep working on the app 👷‍♀️ Thanks for your understanding 🙂,2019-10-15 20:41:09,most_relevant,com.gmail.jmartindev.timetune +Astha,https://lh3.googleusercontent.com/a-/AOh14GgD2QGqHO6t00tRJnfyiNBcQ7d2pPcix7_GmJ8S6g,Love this app. Helps me a lot!,4,0,2.7.1,2020-02-12 12:42:18,,,most_relevant,com.gmail.jmartindev.timetune +Anemone Spare,https://lh3.googleusercontent.com/a-/AOh14GhresRVA3Yh6t-pwRF0wPVqft_WpzS5hjWw_R2iYA,"Nice app! Super helpful to plan anything, recommend it. However, it would be nice if you could at a to-do list function? That way I could tick off the things I need to complete for one time only, such as homework. Good work tho!",4,16,2.6.6,2019-10-10 16:20:53,"Hi, thank you very much for your suggestion 👍🙂 We will evaluate the idea 🔎",2019-10-10 20:56:15,most_relevant,com.gmail.jmartindev.timetune +Bob Lagg,https://lh3.googleusercontent.com/-GxIzYd1Gsv0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOc0422L4ZVCBGJwThgDCbS8M0VNg/photo.jpg,Rarely(read never) do i write reviews but this app has been transformative for my life and productivity in general. The only issue i sometimes have is the custom song i apply to notifications doesnt always play,4,1,2.6.6,2019-11-06 19:36:18,Hi! If you contact us at timetuneapp@gmail.com we can try to find why that happens. Thanks! 🙂,2019-11-06 21:18:30,most_relevant,com.gmail.jmartindev.timetune +Samii Porras,https://lh3.googleusercontent.com/a-/AOh14GgNZZ25Ca5NNlo56FP_2LVsNw1_xrBTM8DMH_4t2eo,This is my favorite daily schedule app! It is so simple to use and super versatile. I paid for the pro version just so I could do everything and it was well worth it!,4,1,2.6.6,2019-11-07 20:33:41,,,most_relevant,com.gmail.jmartindev.timetune +Ellie Gibson,https://lh3.googleusercontent.com/-UXJgPM1oxB8/AAAAAAAAAAI/AAAAAAAADiE/AAKWJJPHLxGH77HTTMD0lrQjf10wY9QU7A/photo.jpg,I'm struggling to see the use of routines and programmes right now. But the other features are really useful. Would love the option for a task's or to do list!,4,1,2.6.8,2019-12-09 12:30:49,"Hi Ellie! Please check our starting guide here: https://timetune.help/en/getting-started/ If after checking the guide you have additional questions, contact us at timetuneapp@gmail.com and we'll gladly answer them. We take note of your suggestion too. Thanks! 🙂",2019-12-09 20:54:06,most_relevant,com.gmail.jmartindev.timetune +Crissel Nolasco,https://lh3.googleusercontent.com/a-/AOh14Gjur0sNQkqrheMiR2_0CaetduApFvK7EDFZQYdu,"I love this app and I definitely recommend, just sad that the timer wont be available in the app anymore, it was very useful",4,0,2.6.8,2019-12-16 11:10:05,"Hi Crissel! Sorry about the timers. It has been a difficult decision for us, but you will understand why we are doing it here: https://timetune.app/removing-timers/ In any case, we remain open to all possibilities, even the possibility of bringing timers back again in a future version. Cheers! 🙂",2019-12-16 21:57:33,most_relevant,com.gmail.jmartindev.timetune +Kanthi Sri,https://lh3.googleusercontent.com/a-/AOh14GiP4vrj8DTBHOo-7IzoqdAKjsZ55-9tfFEx9Kfeow,I really love this app but notifications are not working at all even after i allow all the permissions. So I'm not able to use this app.,4,0,2.6.8,2019-12-15 16:45:47,Hi. Vivo devices are very aggressive with battery optimizations and they include many controls to block apps and notifications. If you already checked https://timetune.help/en/troubleshooting/ and https://dontkillmyapp.com/ we strongly recommend to check or ask in Vivo user forums for instructions about your specific device model. Thanks.,2019-12-15 21:37:50,most_relevant,com.gmail.jmartindev.timetune +benjaminausbiberbach,https://lh3.googleusercontent.com/-K7ErL_XY59M/AAAAAAAAAAI/AAAAAAAAHh0/AAKWJJM580euAx07rg4Bx_Yo0VkiQCKiSQ/photo.jpg,"Very useful, but a feature to postpone events more easily would be nice.",4,0,2.6.6,2019-10-31 12:15:21,"Hi, thank you very much for your suggestion 👍 We will examine the idea 🔎🙂",2019-10-31 15:19:59,most_relevant,com.gmail.jmartindev.timetune +Kumar Mritunjay,https://lh3.googleusercontent.com/-9fE7X_ON5yY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN_GMgOO7qqoSUCf4JRKj3SD94hmA/photo.jpg,"Very nice app for maintaining our schedule... Need to improve sechudule reminder, not working properly..",4,0,2.6.6,2019-10-27 05:45:43,"Hi Kumar. If you experience problems with reminders, remember that Huawei blocks third-party applications by default. Please check https://timetune.help/en/troubleshooting/ and https://dontkillmyapp.com/ for more instructions. Additionally, you can check or ask in Huawei forums too for specific steps for your device model. Thanks.",2019-10-27 08:45:55,most_relevant,com.gmail.jmartindev.timetune +Tori L,https://lh3.googleusercontent.com/a-/AOh14GjHYKy-ea50xj-mfwZFSNRdQiGbIpJm-hTzdXeT3w,Could you allow me to add activities on my timeline because my routine and plan is always changing and cannot be limited to a fixed routine. I use this as a daily planner to plan out my full days and weeks ahead of time so it would be good if i can add activities far ahead of time.,4,1,2.6.6,2019-10-15 05:19:40,"Hi Tori! Thank you very much for your suggestion 👍 For the moment, we recommend to use the Events section for that, but we'd like to explore other alternatives in the future 🙂 Cheers!",2019-10-15 06:35:25,most_relevant,com.gmail.jmartindev.timetune +Loreta Zariņa,https://lh3.googleusercontent.com/a-/AOh14GgzgJ6VfFusVmYyebpjHTOMFDlCG3K_8z_oq7uZCg,I'd like to see an option to mark parts of my routine as complete.,4,0,2.6.8,2020-01-01 07:16:17,Hi Loreta! Thanks for your suggestion 👍 This is a possibility we're considering for the future 🙂,2020-01-01 08:43:48,most_relevant,com.gmail.jmartindev.timetune +Nicole,https://lh3.googleusercontent.com/a-/AOh14Ght-UDWNyKvpkLT-942xrq9S5opqvzl2pAKqznIrA,For god sake change the default color this red is burning my eyes,4,0,2.6.6,2019-10-30 19:07:56,"Hi, sorry about that. For the moment, please try the dark theme, the red is darker there. Thanks.",2019-10-30 21:14:54,most_relevant,com.gmail.jmartindev.timetune +M Otimi,https://lh3.googleusercontent.com/-ttYnK8Bnlak/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNANovS37FrWQAmqgvaBwUPwanqZw/photo.jpg,Have re-defined my routines and activities. Working well.,4,0,2.6.6,2019-10-30 07:04:10,"Hi, there's a limit of 20 active routines at the same time because it helps with performance. However, if you give us more details and tell us how you use more than 20 routines at the same time, we're open to increase the limit if necessary. If you prefer a refund, contact us at timetuneapp@gmail.com and we'll do it too, no problem. Thanks.",2019-09-29 20:33:47,most_relevant,com.gmail.jmartindev.timetune +lilheidi76,https://lh3.googleusercontent.com/a-/AOh14GiFarigT39qWvesljoxc2xzCe6ELWav1lFbKXhL,"I really love TimeTune in helping me better utilize my time, see where it is all going and plan routine tasks so that I can stay on top of my busy life. The only thing missing for me is the ability to tick things as completed and cross if not done. I'd love to be able to analyze my routine to see what worked well and what I struggled to acheive. I find it rewarding and motivating being able to check things off as done.",4,2,2.6.5,2019-10-09 23:12:57,"Hi! We're currently evaluating different alternatives for that. If possible, please take a look at this article and let us know which approach you prefer: https://timetune.app/most-requested/",2019-10-10 07:50:40,most_relevant,com.gmail.jmartindev.timetune +Josiah Tuali,https://lh3.googleusercontent.com/a-/AOh14GjdBuKv-1vnKeTDM0igb7I_aDJ5ICrmqbDiTuLu5w,It has a button just for what I need...I bit hard to read the scheds though,4,0,2.6.6,2019-10-27 11:15:58,,,most_relevant,com.gmail.jmartindev.timetune +Rekha Rathi,https://lh3.googleusercontent.com/a-/AOh14GjEdklhJwC05pehLh6w22jAelNeZGsw7-VYsUpW,Good and helpful but the notification alarm does not snoozes automatically . The notification stays on the notification bar until not removed. Pls keep a limit till after which it should snooze.,4,0,,2020-01-17 18:09:04,"Hi! We don't fully understand the problem. If you are referring to the sound of the notification, remember that the sound stops when you remove the notification from the notification area. If you are referring to a different thing, please give us more details or send a screenshot to timetuneapp@gmail.com Thanks 🙂",2019-10-17 20:18:45,most_relevant,com.gmail.jmartindev.timetune +Elise Evans,https://lh3.googleusercontent.com/a-/AOh14GjlWI99t-GjjoXBavE5M8zlmIbCQm95FazeHPUDP-8,"Excellent app!! I use it every day. I've got a few small requests though, if possible! Another app I tried had the option to drag & drop timelines to reschedule times, e.g. make things a little shorter or longer. It's not an absolute necessity, but I find it a little clunky having to edit each event in turn, although I do love the ""add this gap to previous/next activity"" option. Also, not a necessity but would be a nice touch - I'd love to be able to reorder my routines. Couldn't figure out why they were all in a funny order, but it arranges them alphabetically, and since I make a routine for each day of the week, they were all very jumbled up. I've solved it for now by adding numbers to the start of each name, but again, just slightly clunky. As for the rest, I absolutely adore it. Love the persistent notification; each time I pick my phone up absentmindedly to check my notifications, I see what I'm meant to be doing, and it gets me back on track. Thank you!!",4,0,2.5,2018-10-22 22:28:28,"Hi Elise! Thank you very much for your suggestions, we will analyze the ideas. About making activities a bit shorter/longer, remember that you can click on the times on the left to quickly add/subtract minutes (we don't know if this is the method you're currently using). In any case, you're totally right, these interactions can be improved 😃",2018-10-23 08:50:37,most_relevant,com.gmail.jmartindev.timetune +Cassie Watson,https://lh3.googleusercontent.com/a-/AOh14GiprPGcJqYdn7CVI1yw4106AfeGDcBP5GvUYvo32Q,"I like all the scheduling possibilities and tools. I'm giving it 4 stars because the alarm I have set thru the app can't be turned off. I had to uninstall it, just to get it to turn off. Very annoying.",4,0,,2019-10-21 10:56:07,Hi Cassie! The sound should stop when you swipe the notification from the notification area. Please try it and let us know. Thanks! 🙂,2019-10-21 21:24:18,most_relevant,com.gmail.jmartindev.timetune +Harout Denyo,https://lh3.googleusercontent.com/a-/AOh14GjWNze98YX0zo8cS2YaTA6j3CFxnqppcHLsBw17VA,"Great app! The app offers very interesting and unique features as well . But there is only one problem for people like myself. I spend most of my time doing some work on my laptop, and I try as much as I can to ignore my cellphone whilst working. If only I could manipulate and change my schedule in TimeTune accordingly on my laptop or pc it would be perfect.",4,6,2.5.1,2018-11-03 05:21:43,"Hi! Thank you very much for your suggestion, we will analyze the idea 👍",2018-11-03 09:20:27,most_relevant,com.gmail.jmartindev.timetune +Sheldon Noray,https://lh3.googleusercontent.com/a-/AOh14Gg70awyguo_vOTAVZHiDrMfNm01998gU7iiDc77Rg,"Good app but it needs more work. I gave it four stars because its missing a premium selection, that is an overview of your activities so one can see total time spent on what. This could be in a form of a pie, bar, or line chart. You can include all so we have a choice. With this anyone can now keep track of time spent on a daily activity and limit time spent on said activity. So far good work work guys.",4,0,2.6,2019-04-04 15:46:00,"Thank you very much for your feedback, Sheldon 👍 Indeed, the app is still young but more improvements will be added progressively. Cheers!",2019-04-04 20:25:54,most_relevant,com.gmail.jmartindev.timetune +Cindy Ide,https://lh3.googleusercontent.com/-7W4E7Lrl7xo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNVYId6VTJ4KDB2idoFOxfXrYjqkg/photo.jpg,"My own structuring of little tasks and routines improves with this app. I really like the app, but I would also like it on my laptop. It would be great if you developed an option to install and use it on both devices, as I don't always have my phone on me while working. Or did I miss something? It doesn't allow me to install the app on my laptop, it only shows that it is already installed on my phone. Looking forward to your response. Thanks in advance!",4,0,2.4.4,2018-09-13 18:54:53,"Hi Cindy! Thanks a lot for the feedback. For the moment we only have the mobile version, but adding a desktop version is a possibility we might consider in the future if the project grows enough.",2018-09-13 20:02:41,most_relevant,com.gmail.jmartindev.timetune +Shelly B,https://lh3.googleusercontent.com/a-/AOh14GjdC_HO9iN-S9oF4ztMw4sYijnK54qJYuCacNCy,I really like this app to establish a new routine. I strongly rely on my calendar at work but setting it up for routines outside of work is tedious. At first it takes a moment to understand how repeating activities are set up but now it's a great tool! Feature suggestion: it would be also really great if you could include a habit tracker into the same app.,4,2,2.5,2018-10-17 11:04:37,Hi! Thank you very much for your feedback and suggestion. We'll analyze the idea.,2018-10-17 17:15:28,most_relevant,com.gmail.jmartindev.timetune +James Rampant,https://lh3.googleusercontent.com/a-/AOh14GgcZk0vTNP742CInAEB58R5wQgr5yAbDAT6-__Diw,"It's a good app and being able to route alerts through different sound channels is a great idea. I've found a bug though and couldn't find a way to contact you about it besides here: It's daylight savings today and while timetune has the correct time, for some reason it has pushed forward all my events by one hour. So an event which says it is happening at 6:30 is now on my timeline as 7:30. Hopefully its just for today.",4,14,2.5,2018-10-06 23:41:06,Hi James! Please try this: Settings / Advanced / Refresh background tasks. Does everything in the timeline get updated correctly after this?,2018-10-07 08:18:47,most_relevant,com.gmail.jmartindev.timetune +trav man,https://lh3.googleusercontent.com/-pLaDTX3PeH8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMn0vsK1Yt1yVz93T6lubRuRdXo7g/photo.jpg,"I really like this app. The concept of blocking your times is great and I find it helps me structure my time really well. It's also a load off of my mind knowing that I don't need to think about when to eat or what time to check my email because I am at ease knowing it's all planned for and I will be informed accordingly. My only disappointment, with the service and not the app, is that I am unable to structure my timeline online on a PC. I think there are limitations of the mobile device that makes the scheduling somewhat confusing. I think it will be perfect to incorporate a way to set up your schedule on a nice large screen and use your phone for viewing and notifications.",4,13,2.5.2,2018-12-30 07:28:31,"Hi! Thank you very much for your feedback 👍😃 You certainly get the benefits of timeboxing right ⏳ About having a desktop version, it's a possibility we may consider in the future if the project grows adequately 📈 Meanwhile, if there's anything that can make the mobile version friendlier for you, don't hesitate to tell us at timetuneapp@gmail.com",2018-12-30 10:03:16,most_relevant,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Used to love this app, amazing UI, simple. Definitely one of my favourite, and so helpful. This new UI thought, not for me... Too much clutter and scrolling! Tried to get used to it but its not for me, so it's time to let it go. Useful non the less, so try it, maybe it's your thing! Edit: I don't know how to answer so I'll edit and hopefully it gets trough. If I can get something back, I would like the choice to go horizontal (make it a choice on pro). A bunch of horizontal scrolls is not a problem if instead I have to do a bunch of vertical ones. Looks less intuitive to me. And I can use the go-to option, but I kinda already could and never did. I liked to scroll horizontal, because I liked the view that it gave me, and the side comparison of days on same level.",4,0,2.5.1,2018-11-13 06:59:43,Thank you very much for giving more details. We keep gathering feedback from all users in order to make decisions about the interface.,2018-11-13 08:17:01,most_relevant,com.gmail.jmartindev.timetune +Ian Dunn,https://lh3.googleusercontent.com/a-/AOh14Gh1c-Tq1mkWTP2HuyrFXXs943LzGJq0IwVC4iR9QQ,"This is the best time blocking app I've found, but it still has some significant pain points. I wish there was a desktop version, since creating/updating blocks would be 5x faster with a keyboard, mouse, and large screen. Editing would be faster too if blocks could temporarily overlap, and if routines were per day instead of per week.",4,0,2.5,2018-10-09 15:27:42,"Thank you very much for your feedback and suggestions, Ian. The app is still young but more improvements will be added progressively.",2018-10-09 19:49:56,most_relevant,com.gmail.jmartindev.timetune +Elga Benedicta,https://lh3.googleusercontent.com/a-/AOh14GiVqdzCRgYHjRvjir0FYcoo1dzPp-yghFjExQmqMwE,"I just tried this app and I am already compelled to buy the premium version. I think this app has many potential, please make more simple UI so that when we're looking at timeline it doesn't feel so cluttered. A minimal look will be so much better. Look forward to more addition to the app and more great features.",4,1,2.5.1,2018-12-04 13:52:15,"Thank you very much for your feedback, Elga 👍 We'll be adding more improvements in successive versions.",2018-12-04 21:32:59,most_relevant,com.gmail.jmartindev.timetune +Jake Tompkins,https://lh3.googleusercontent.com/a-/AOh14GiaL3oAuANlSGkcJmr0C2JWVntV-9MUb75h-BAKBQ,"Great app and I want to import my calendar so that I can replace my calendar widget with it, but I cant buy the pro version. I tapped purchase once to see the price, then hit cancel in the google pay modal. Now whenever I tap to buy it I get a modal saying that in app purchases are not enabled on this device. Google Play Services is installed and works normally with other apps (and worked fine the first time I tapped to buy).",4,0,2.5.3,2019-03-15 17:38:53,"Hi Jake! That's odd 🤔 Please try this: 1️⃣ Restart the device and try the purchase again 2️⃣ If that doesn't work, reinstall the app and try again (remember to backup your data first!) 3️⃣ If that doesn't work either, please click on 'Settings / Advanced / Send technical report' and put your name at the end, so we can investigate. Thanks!",2019-03-15 21:39:50,most_relevant,com.gmail.jmartindev.timetune +Derrick Ryan,https://lh3.googleusercontent.com/a-/AOh14GhnIsiUyHC1LKO_-8aEH-PSwNNDmSO1FfQ3z4bbsw,"Well I like having an agenda where, if needed, I can be reminded of what I need to do. However, I am not liking how after 3-5 days of reminders, it just stops doing it and I have to go in in order to refresh. At this point a normal calendar app preinstalled would be better, since I can set it to remind me every day. Could this be fixed?",4,0,2.5.1,2018-12-07 12:53:42,"Hi Derrick. In Samsung devices, the usual suspect is the power saving mode in the device settings. You can see how to solve it in our troubleshooting page (https://timetune.center/troubleshooting/#brands). Apart from this, if you have battery savings apps in your device (like Greenify, etc), you need to whitelist the app there too.",2018-12-07 16:44:17,most_relevant,com.gmail.jmartindev.timetune +Beau Williams,https://lh3.googleusercontent.com/a-/AOh14Ghw7pLk1QkXT3mcgdHVunw6VjtFBkMxSPJkQPAd,"Great for maintaining and keeping a routine. This is detailed enough to develop any kind of daily/weekly/monthly routine, and flexible enough to incorporate out-of-routine events and distractions if you use it right. It is a bit tedious for some people, (that's why the 4 stars) but they can keep it simple and high-level if they like. But, if you really want to tame that beast called your work week, school agenda, or personal days like me, this will take care of it.",4,7,2.6.4,2019-08-01 09:13:35,,,most_relevant,com.gmail.jmartindev.timetune +P Sut,https://lh3.googleusercontent.com/-JrOgTpmR4BY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMmyALFjahrLxm96tmZqx3OfSL6uA/photo.jpg,"Really helpful app. I've looked at lots of other schedule apps, but this one is the easiest for me to customize precisely. Great for making routines! Since a few of my routines overlap, it would be amazing if there were an option to see routine titles in the widget timeline above or before the task, in order to keep an overview of which/whose routine is in effect. Both of my children have their own different weekly routines, so it would be nice to see on the timeline, that for example, it's kid#1 who has school on Monday mornings and kid#2 on Monday afternoon instead of two ""time for school"" tasks with no specifics. It would also be great if this app could be accessible from my computer desktop or if I could sync with other family members.",4,14,2.6.5,2019-09-03 09:25:27,"Hi, thank you very much for your suggestions 👍 For the moment, as an alternative, we recommend to use different tags for different routines (for example including the name the kid in the tag). We'll try to find other solutions in future versions though. Cheers!",2019-09-03 21:14:40,most_relevant,com.gmail.jmartindev.timetune +Anna Waraksa,https://lh3.googleusercontent.com/a-/AOh14Gj43fMFz_VQSGH3wf5DeIWyQo7xMPHYoBM-9UMcLQ,"After installing and uninstalling several other apps I finally found this one and it suits my needs the best. I like the appearance and all the features. There are two things I'm missing however - subtasks and the possibility to tick off every single completed task or event for the specific day. This would make this app a perfect tool for me and I wouldn't mind to pay for it. As a busy mom battling depression I need a simple tool to help me to organise my day and week, and to remember my tasks.",4,46,2.6.1,2019-04-30 13:21:27,Hi Anna! Thank you very much for your feedback and suggestions 👍The application is still growing but we'll be adding more improvements progressively. Cheers! 😃,2019-04-30 18:22:43,most_relevant,com.gmail.jmartindev.timetune +Mahesh S Nair,https://lh3.googleusercontent.com/a-/AOh14GioA-jC2wq9d6o2f5tVptBi0Mic9asEw9x9srzurw,I wish to buy the pro version and also encourage my friends and family to do the same but hope you can make some improvements to the app. The UI looks very minimal which is a vanilla android template for an app development. Please make the UI a bit more appealing. We would have also like to do routines that are repeated in intervals of more than 15 days. Present app doesn't allow me to set a monthly routine. Hope the icons can be more rich and appealing.,4,2,2.6.5,2019-08-13 08:23:46,"Thanks for your suggestions, Mahesh. Indeed, the app is still evolving but more improvements will be added progressively.",2019-08-13 18:39:49,most_relevant,com.gmail.jmartindev.timetune +Tanner Sheahan,https://lh3.googleusercontent.com/a-/AOh14GimUbA6i4f3Evvg-qxMTKWLpEiWKrgoCaDCiEVL-SI,"Great so far, two requests for devs. I just started using TimeTune and I like it, has most options I was looking for to help my time management and utilize time blocking Requests; 1: Whole Week View - I'm looking for healthy rhythm and repetition in my weekly routine as an independent worker, difficult to visualize when I can only view one day. 2: Sharing - I'd love to be able to share my routine with my wife through this app. Perhaps two ways to share; ""by whole routine,"" and ""by tag.""",4,5,2.6.5,2019-09-01 00:05:17,"Thanks for your suggestions, Tanner! 👍🙂",2019-09-01 07:33:33,most_relevant,com.gmail.jmartindev.timetune +Tasha Julius,https://lh3.googleusercontent.com/-xllX8WgtZOc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMs-na1MOWi5k4unrbU7U7XpfYpnQ/photo.jpg,"so far so good! relatively easy to use. I was really hoping to be able to check off routine items when completed. trying to build up on habits. so it would be great to be able to track completed progress. calendar sync in pro verson went seamless! however when i go to change a routine item because it conflicts with a calendar appointment,there is not option to just edit that one Tuesday. its either all Tuesdays or no Tuesdays. It would be great to see date options & completed progress tracking",4,29,2.6,2019-03-28 11:14:26,"Hi Tasha! Thank you very much for your feedback and suggestions 👍 Indeed, the app is still young but we'll be adding improvement progressively. Cheers!",2019-03-28 16:17:36,most_relevant,com.gmail.jmartindev.timetune +Norbert Faludi,https://lh3.googleusercontent.com/-jO-MPYmuRXc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMZefJTG51zLRuVGfGu-D5r_buKEQ/photo.jpg,"It's the best app for organizing my days. But I have a little bug, when it's running in the background I don't get notification about my new activity and I have to refresh the background data to resolve this problem. It would be great if you could fix this little annoying bug.",4,0,2.5.1,2018-11-09 21:39:42,"Hi Norbert! This happens because Xiaomi devices block background tasks by default, it's not a fault with the app. You can find instructions for Xiaomi here: https://timetune.center/troubleshooting/#brands",2018-11-09 21:49:59,most_relevant,com.gmail.jmartindev.timetune +Soph,https://lh3.googleusercontent.com/a-/AOh14GiJmxZipz2iY4p1zKIpIKBX0tFhmApCO9bqwjetfA,"Would be perfect if: - You could update cloned activities, meaning if you changed one all of them would change too - You could check off the activities like a to do list (it works as a reward system) - You could scroll up in your timetable to see what you did that day/things you missed because it only shows everything from that point in time forwards. Otherwise really love the design and layout, and it makes me super organised.",4,0,2.5.3,2019-02-03 20:46:48,"Thank you very much for your suggestions, Sofia! 😃 The ability to scroll back in the timeline will be added in the next version (2.6) and is already in beta 🎉",2019-02-03 21:34:22,most_relevant,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I like this app a lot. One thing that stops me from buying pro version is that I desparately need it to export routines to my Google calendar (now I think that it is just possible from Google calendar to TimeTune). That is because the interface of TimeTune is much, much better than Google calendar interface, and I need all my routines in Google calendar in order to sync it with my Google Home speaker, so it can read it out loud every time I ask and remind me even without my phone.",4,0,2.5.3,2019-02-05 15:11:19,Hi! Thank you very much for your suggestion 👍 We will explore the idea 🔎,2019-02-05 16:00:23,most_relevant,com.gmail.jmartindev.timetune +douglas whiting,https://lh3.googleusercontent.com/a-/AOh14GgBtw6eZBg_V4Kz2MVu42Na-uiQ_OO_puAl6fEcxA,"Good app does what you need it to do, a little light on instruction or where to find them as i know the app has more functionality, but don't know without some digging where to find it, also wouldn't mind if the Pro version had more features to entice people to buy it or if the free version had a few adds per day for the dev. 😊",4,0,2.5.2,2019-01-06 08:36:30,"Hi! Thank you very much for your feedback and suggestions 👍 Remember to check our 'Getting started' guide (https://timetune.center/android-help/) if you need it. But you're right, some things are not intuitive and we need a proper tutorial. In any case, the app is young but more improvements will be added progressively 😃",2019-01-06 10:02:00,most_relevant,com.gmail.jmartindev.timetune +sudhanshu singh,https://lh3.googleusercontent.com/-nqy-ZarrLcg/AAAAAAAAAAI/AAAAAAAAACA/AAKWJJPk7m_GoOZ-A3d0-1NBj9W6w2wFng/photo.jpg,this app is great but i have a problem. the timeline after a while says this app has been blocked by your system and its gives two options. 1) troubleshoot and 2) Refresh background task. This ptoblem is occuring every time. The troubleshoot isnt helping me. I have a vivo phone. please help!!.,4,0,2.5.3,2019-03-08 11:12:52,Hi! Please check this: Apps drawer > iManager > App manager > Autostart manager > allow our apps to auto-start in the background. More info: https://www.youtube.com/watch?v=0-T_IMwJSgo and https://www.youtube.com/watch?v=SfCuF-2ST3w,2019-03-08 21:33:32,most_relevant,com.gmail.jmartindev.timetune +Miriam B,https://lh3.googleusercontent.com/-XJy6B1XXKqM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPv_O24SPMZK-i1SuiResfQO8vkrg/photo.jpg,"Edit: I use comments to add reminders about what I'm specifically planning to do to complete each task day by day, like grocery lists and assignment titles. I would really like to be able to add comments for just one cycle of the routine and have them disappear after the week restarts. I thought it might be useful to have this function on the timeline page rather than the routine edit screen, which seems to only be useful for permanent comments. I hope this makes sense!",4,1,2.6.1,2019-05-15 04:40:28,"Hi, thanks for giving more details 👍 We take note of the suggestion.",2019-05-15 08:38:57,most_relevant,com.gmail.jmartindev.timetune +イデア,https://lh3.googleusercontent.com/a-/AOh14GjLfqu9P9CA6us1xsJywQi5Wge_sAmoPI8yt6gLcw,"Great App. Like the options of multiple routines, calender, and reminders. However I wish there was more control over the routines. I'd like to be able to pick the start of my day instead of it starting at 12am. I'd also like to be able to pick what week days for a routine to be active so I can have different routines each day. You can manually program it if you pay for pro version but it's a hassle to go day by day if the routine is going to be used for months.",4,10,2.6.4,2019-06-30 06:36:48,"Hi. If you make the last activity of the previous day finish past 12am, the day will start later. Apart from that, we're currently evaluating the possibility of assigning week days to a routine as well. Stay tuned. Thanks.",2019-06-30 08:52:32,most_relevant,com.gmail.jmartindev.timetune +Sasa Po,https://lh3.googleusercontent.com/-YodvCQOoYHA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOrTpC0llXxrVzanht3txwP6ZiY8Q/photo.jpg,"A great app for setting routines, simple to use and very customizable. A slight learning curve for the routine setting, eg. The +/- symbols. A few things that could be improved: easily assigning routine for each day rather than programming a period of time (from the pro version) or the same routine (from the free version). Also the widget could be more useful if it indicated the ending time as well. The comment text style could also be better differentiated title/tag of the event.",4,4,2.6.5,2019-09-23 06:56:09,"Hi! Thank you very much for your feedback 👍 Knowing which features are still bumpy is very important for us 🙂 Feel free to tell us all the suggestions you might have, we'd love to hear them 👂",2019-09-23 09:27:52,most_relevant,com.gmail.jmartindev.timetune +Ian Maberry,https://lh3.googleusercontent.com/a-/AOh14Ggr8HkfqajoGVIF4rHQi9_W9z0OcSDF65wr3KTzduY,"I really like this app, especially the routines. I've given this 4 stars and will change to 5 stars once there is better online sync, a web interface, and a way to sync with Google calendar. Also, tablet adaptation would be good. This app has a lot of potential.",4,0,2.5.3,2019-01-21 20:20:05,"Thank you very much for your suggestions, Ian! Indeed, the app is still evolving and we'll be adding features progressively. Cheers!",2019-01-21 22:05:40,most_relevant,com.gmail.jmartindev.timetune +Rakesh Singh,https://lh3.googleusercontent.com/a-/AOh14Gh9eJNHTyazehrAxWItddKxRfhDzBDWp8p3kcikZA,"Ok so i bought a pro version. It is a decent app but has some issues. I created a few routines but when using programmer I can't apply them based on Day of the week instead I have to choose date. For example on every Monday, Wednesday and Friday I have a different routine but on Tuesday and Thursday I have a different one. But using programmer I can't apply routine based on day of week ( have to choose a date instead).",4,1,2.6.2,2019-05-26 17:02:09,"Hi, thanks for your feedback. Our intention is to add more features progressively. However, if we understood correctly, what you need can be achieved with a single 7-day routine, where you can add all your activities for the week. This way you don't even need the programmer. If you meant a different thing, contact us by email and we'll help more.",2019-05-26 18:46:26,most_relevant,com.gmail.jmartindev.timetune +Viss Luger,https://lh3.googleusercontent.com/-iIRw6muUYgM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPyftMBVLTNPka7qTb4vYf7sUZggg/photo.jpg,"App is great for student's and other people who lack time management skills.As long as your remain objective and honest to yourself,this app will work to help you be more efficient with your time.This is one of those apps that has the potential to change your life when used correctly.Good interface and simple structure.Give it a chance!",4,9,2.6.3,2019-06-15 20:49:20,,,most_relevant,com.gmail.jmartindev.timetune +Murugappan Venkatachalam,https://lh3.googleusercontent.com/a-/AOh14GgcfTTF5PHVPfJjz3LIfN2M4oRIqZMtq05h1IeYLA,"New update made me little bitter(in routine section ) ,kindly take it back and give the old one. In the routine section , first the app allowed me to edit the routine of daily easily and separately , but now all the days are one by one and not side by side , actually side by side is best and easy to edit , thank you for your reply :-)",4,3,2.4.4,2019-02-22 16:35:18,"Hi! If you had to choose, what's the thing that you miss the most from the old interface?",2018-10-03 08:20:30,most_relevant,com.gmail.jmartindev.timetune +Faisal Baig,https://lh3.googleusercontent.com/a-/AOh14Gi4G1JciO8Dpr_dMBUblqlroHrcQ415i2iDocu8,Just completed my first schedule. I have high hopes for this app. I had a couple of suggestions that I think would improve the user experience. one would be collision detection when you try to make a new routine with an existing enabled technique.,4,0,2.6,2019-04-13 16:27:10,"Hi, thank you very much for your suggestion! 👍😃",2019-04-14 07:56:47,most_relevant,com.gmail.jmartindev.timetune +Sean Yeo,https://lh3.googleusercontent.com/a-/AOh14GhLMM8ZLJ1jGeezSU14ajBxSAe2W7aQ5Wdj0Ia3-Q,"This app is really very useful, but it would be better with a feature that import the routines created to other calendar apps (through gmail or some sort), as for laptop uses. 🙏🙏 Other than that, it is awesome, would definitely recommend to my friends, keep it up!! 👍💪",4,0,2.5.1,2018-11-25 14:17:40,"Thank you very much for your suggestion, Sean. The project is still young but more improvements will be added progressively.",2018-11-25 14:27:01,most_relevant,com.gmail.jmartindev.timetune +Alessa Young,https://lh3.googleusercontent.com/a-/AOh14GiLaAr4F88aFyl6CUvDFotP9FXR6ewAQVNvgF1LuQ,Wanted vertical and horizontal in routines like before and not to display that alarm clock. Thank you for your feedback i love it.,4,0,,2019-11-09 09:20:11,"Hi Alessa! Thank you very much for your feedback 👍 About the alarm clock icon, remember that you can make it disappear here: Settings / Advanced / Scheduling method / Weak alarms.",2019-02-10 21:45:57,most_relevant,com.gmail.jmartindev.timetune +Siemkens Dadurkaite,https://lh3.googleusercontent.com/a-/AOh14GgigKEBd1Kn8uxVx3N7LsaBN-gtGskVL7CmB42sWw,"very nice app... adds pop up randomly but not bothersome... very useful to set up a routine to follow :) good work developers!! quite flexible but could work more like a calendar ... that way each day is tailored as you like... but i also like the option of having set a routine once, it applies for as many days as you want",4,17,2.6.3,2019-06-16 11:01:06,"Hi! We don't fully understand it when you say that 'ads pop up randomly', because our app doesn't show ads at all. It would be helpful if you could send a screenshot at timetuneapp@gmail.com, we're intrigued by that. We take note of your suggestion too 👍",2019-06-16 19:41:19,most_relevant,com.gmail.jmartindev.timetune +Fireheart 01,https://lh3.googleusercontent.com/-BsoH5uqsD1s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP8S3-i8uZoMQYjlP5CBBkL6fOn8g/photo.jpg,"very good. it is a bit complicated to use. It should probably have a tutorial or an expailnation about the different functions, as some of them just seem to be the same thing with just a differeent look. (i could just be stupid, which is a possibility).",4,0,,2019-07-17 02:56:33,"Hi! We are currently working on an integrated tutorial 👷‍♀️ Meanwhile, please take a look at our guide for beginners here: https://timetune.help/en/getting-started/ If you have questions after checking the guide, please contact us at timetuneapp@gmail.com and we'll answer them. Thanks! 😀",2019-07-17 07:26:06,most_relevant,com.gmail.jmartindev.timetune +Sarah Hatch,https://lh3.googleusercontent.com/a-/AOh14GiCX3d116A8uxPBbHbkTN_BxIpFa8tR_Dxx8zyiuA,"Really well for procrastinators and forgetfulness!! I constantly forget things but this keeps me on track. I will admit though that the tags should have an option on sorting them (clicking and dragging them to be in a specific order) other than that, perfect app and no issues so far!!",4,1,2.6.5,2019-10-01 19:34:46,"Thanks for your suggestion about the tags, Sarah 👍 We will evaluate the idea 🔎 Cheers!",2019-10-01 21:02:53,most_relevant,com.gmail.jmartindev.timetune +Sameer,https://lh3.googleusercontent.com/a-/AOh14GhbW5PDUf2zae2LwidHm6pnHTX96ofF1EoA18wPJA,"Hey, Great app, though recently I have started to experience an issue. The app is continuously asking me to refresh the background task, and as a result it's not consistently showing notification, if i forget to do so.",4,0,2.5.3,2019-01-20 04:57:41,Hi Sameer! This happens because the device configuration is blocking our background tasks and notifications. You can see how to solve it here: https://timetune.center/android-help/,2019-01-20 09:52:19,most_relevant,com.gmail.jmartindev.timetune +kizmox star,https://lh3.googleusercontent.com/-ioA_zSunaRA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPOD0FtqUApntVvr-OxlJ466TOsAw/photo.jpg,Easy to use to schedule repeat event alarms. Easy to create different routines and turn them on or off. This feature was helpful for me. Only item missing is a time tracker for client jobs or training specific tasks. Even manual tracker would be good.,4,0,2.6,2019-04-06 17:09:17,"Hi, thanks for your suggestion! 👍😃",2019-04-06 20:28:05,most_relevant,com.gmail.jmartindev.timetune +Joao Mello,https://lh3.googleusercontent.com/-Hy9sDWgjUxg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNxAGx5ubDRc_1lxQXrsvSq8Qy_EQ/photo.jpg,"Great app, easy and simple to use. The ability to save different schedules and just toggle each or all of them is perfect. Have some seasonal schedules that I can just turn on or off as required, while keeping other routine schedules.",4,0,,2019-03-28 05:39:11,,,most_relevant,com.gmail.jmartindev.timetune +adwoa.anokye,https://lh3.googleusercontent.com/a-/AOh14Gh00jDAExPq89ppky2EQZQloKmQCZmgCHoZYMvOpg,"It's a great app is great for reminders.the only thing is that it doesn't always refresh automatically, meaning that if you're too busy to do it manually every so often, you're going to miss your reminders...",4,0,2.5.2,2018-12-29 09:21:23,Hi! Oppo devices are very aggressive with background tasks and have a lot of settings to prevent apps from doing work in the background. You can find generic instructions for Oppo in our troubleshooting page (https://timetune.center/troubleshooting/) but it all boils down to find the places where those settings are located in your specific model 🔎,2018-12-29 10:34:07,most_relevant,com.gmail.jmartindev.timetune +Busy Monkey Studios,https://lh3.googleusercontent.com/a-/AOh14Gho3_JTzxHrUNOoe6qy7Mz6ocykTC2ylBsaiEvo,This is a good app with loads of potential. It integrates really well with Google calendar with the only slight disadvantage that you can't choose to hide or dismiss all day events. The widget is great and the notifications seem to work well. I look forward to seeing more updates.,4,2,2.5.3,2019-01-29 15:23:33,"Hi, thank you very much for your feedback. Indeed, the app is young but we'll be adding improvements progressively 😃",2019-01-29 21:37:27,most_relevant,com.gmail.jmartindev.timetune +Umendra Kumar Sharma,https://lh3.googleusercontent.com/-4NGMEklwBFU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNJwL7swQ3HsGqQOoNensvouIAO5A/photo.jpg,It's an essential daily time management app.It can further improve by providing the more detailed analysis and auto suggestion for the activity based on past routines.Further the routine creation can be simplified by providing the 1 step auto update functionality along with individual task creation functionality currently provided.,4,0,2.5.3,2019-02-10 08:38:15,"Hi! Thank you very much for your feedback and suggestions 👍 Indeed, the project is still evolving and more improvements will be added progressively 😃 Cheers!",2019-02-10 21:39:18,most_relevant,com.gmail.jmartindev.timetune +Elizabeth Thorpe,https://lh3.googleusercontent.com/a-/AOh14GhJniulgcDWrlq-FMkVNe8PJTJFAKT2vJx0UyE,"good app, but not what im looking for. i'd like to be able to check items off my routine as i complete them, but i cannot do that. i do like that there are a variety of tags to choose from, and that i can create my own tags. i also like that you can clone a routine over several days.",4,28,2.6.2,2019-06-02 19:34:36,"Hi Elizabeth! Thank you very much for your feedback. Indeed, this is a possibility we're considering for the future of the app 😃",2019-06-02 20:02:21,most_relevant,com.gmail.jmartindev.timetune +Nils T. Burmeister,https://lh3.googleusercontent.com/a-/AOh14GjSY4jKWVjGLuxQv--ZM3jhSmOkr5zStt6wHWlyZOA,"Clear and nice design, works perfectly. It would be great when calendar synchronization would also export routines to my calendar, so I am able to manage my routines in the app but main events in the calendar app with blocked time of routines.",4,0,2.6,2019-04-22 21:33:07,"Thank you very much for your suggestion, Nils! 👍😃",2019-04-23 07:42:35,most_relevant,com.gmail.jmartindev.timetune +Wilder Ways,https://lh3.googleusercontent.com/-RwZCFwmbdIo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPdhMyHPjFZSAqKUAdNplH182bhaA/photo.jpg,love the simplicity.... really works for setting core routines... not for every tiny extra thing that you want to add beyond your core routine but great for setting new daily practices and keeping you mindful of over-investment in certain tasks and procrastination.,4,1,2.6.2,2019-06-06 08:32:53,,,most_relevant,com.gmail.jmartindev.timetune +Zaid Siddiqui,https://lh3.googleusercontent.com/-zSFdVuZLDOo/AAAAAAAAAAI/AAAAAAAAKeE/AAKWJJOHCk-C2ufXGTX-WviKstE8PEmBxw/photo.jpg,Excellent app for time management and routines. I love how customizable tags are and how versatile the difference between routines and events are. I just wish there was a deeper Google Calendar immersion so that I could edit icons and add tags to imported events.,4,1,2.6.3,2019-06-21 18:11:20,"Thank you very much for your suggestion, Zaid 👍 We will analyze the idea 🔎 Cheers!",2019-06-21 20:52:33,most_relevant,com.gmail.jmartindev.timetune +K T,https://lh3.googleusercontent.com/-a35N0sflfRg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMSf2M6j3pTn4khDhV0L1bLOw1ODQ/photo.jpg,Very nice app and easy to use. My only complaint is that I wish there was an option to have a weekly view in block format like a planner versus just the timeline. But it is still very convient to use the routines.,4,1,2.6.5,2019-08-23 21:48:02,"Hi, thanks for your suggestion 👍 We will evaluate the idea 🔎",2019-08-24 07:00:56,most_relevant,com.gmail.jmartindev.timetune +Rupali Jadhav,https://lh3.googleusercontent.com/a-/AOh14GgwCbWXFM-D3Iw_CsxGrCvf212E2NTOFgOjK-iNxA,I liked this app. I would like to recommend one more thing. Please add the schedule to calendar as well. As right now it is getting all calendar events. But it will be great if all the schedule will also get saved at calendar.,4,0,2.6.5,2019-09-30 21:04:19,"Thanks for your suggestion, Rupali 👍 We will evaluate the idea 🔎",2019-10-01 08:10:10,most_relevant,com.gmail.jmartindev.timetune +S K,https://lh3.googleusercontent.com/-bwCtPptIVNI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN8QEktL0tqxPRDtgPjwKhQ5V0peQ/photo.jpg,"How do I ""push back"" and/or ""bump up"" a daily routine? *Edit: They answered my issue. Other than needing an easier way to do what I mentioned above, I love this app. Very easy to use and very started. I love that you can create your own Tags too.",4,0,2.6.4,2019-07-26 21:42:14,"Hi, we answered your email. Sorry for the delay, we usually answer emails once a day. Thanks.",2019-07-26 13:21:31,most_relevant,com.gmail.jmartindev.timetune +nick sapper,https://lh3.googleusercontent.com/-vzFh-u8ji2E/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNUONDS3QecGwfgyONumaHtQfa3Yg/photo.jpg,"App is artistically awesome! However, I find it a bit annoying that once an event or reminder is over it removes it from the weekly view, I love being able to reflect on my day and imput things i may have missed to have a full scope of my day",4,0,2.5.1,2018-11-23 02:11:29,"Thank you very much for your feedback, Nick. We will analyze this idea.",2018-11-23 09:12:53,most_relevant,com.gmail.jmartindev.timetune +Raphael King,https://lh3.googleusercontent.com/-scg54EVuPlg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO0cOX9HcI_ndavdIAg1ylaVq_q3Q/photo.jpg,This app is damn near perfect. But you know what would be awesome? Being able to check off each complete tasks by adding a check mark. I would even pay for that feature. Make my life a lot easier.,4,0,2.5.3,2019-01-21 23:17:45,"Hi, thanks for your suggestion! 👍😃",2019-01-22 11:20:02,most_relevant,com.gmail.jmartindev.timetune +Red Rose,https://lh3.googleusercontent.com/a-/AOh14GgVNFgzjreRNIUux04T2YUN0fE6Ya_x-2EsyKG4cw,"It is a great app, love the design and the possibilities. But it really needs tk have a setting to change the hour configuration from a clock to keyboard so we can edit the event and routines in a split screen.",4,0,2.5.1,2019-05-18 18:58:23,"Hi, thank you very much for your suggestion. We will analyze the idea.",2019-05-18 21:09:55,most_relevant,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"it's absolutely amazing and helps me organize my life the features are great and customizable, i personally love the fact you can have more than one routine it makes it simple to switch my reminders when i have different scheduled weeks",4,0,2.5.3,2019-02-26 20:19:44,,,most_relevant,com.gmail.jmartindev.timetune +Ruben Medina,https://lh3.googleusercontent.com/a-/AOh14Gi0pFtVf3D6cFO7xDC9fl1AACUYq0s26XoANlkgzA,"It is absolutely amazing, only as a teenager i have no money to buy the pro version. Even without the extra features, it's awesome. Although the tags are annoying.",4,0,2.5.1,2018-12-04 02:56:53,,,most_relevant,com.gmail.jmartindev.timetune +pritesh madrecha,https://lh3.googleusercontent.com/-yB8QCaal0sc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMCP1QiC0ExslSgNcF53zejUCs1EA/photo.jpg,Its a great app for those who understands the precious value of time. It takes time to set your own schedule but once you start....its fabulous... Keep modifying it to get best of it...,4,1,2.4,2018-10-05 17:21:35,,,most_relevant,com.gmail.jmartindev.timetune +Mirrycke Ackermann,https://lh3.googleusercontent.com/-_IFb3sgI--I/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNFNpspBQdXlxd5FhgedKLpu9ZAhA/photo.jpg,"I couldn't find any other app that allows for routines with cool schedules and calendar features. I love how it tells me how much time I have left in the day. The ""when the day start"" setting confuses me though...",4,7,2.6.3,2019-06-14 18:33:32,Hi! We don't fully identify the setting you're referring to. Could you please send a screenshot at timetuneapp@gmail.com? We'll explain any doubts you might have. Thanks! 😃,2019-06-14 21:19:25,most_relevant,com.gmail.jmartindev.timetune +Cat B,https://lh3.googleusercontent.com/a-/AOh14GjEf5bUwA3rGXc3uq3vWm4LOHFHfmU_QpP1Ae46kQ,"Good organizer. This apps is lovely to look at and good for scheduling. It is more for idealized schedule as it does not really let you adjust during the day if something comes up. Overall, good.",4,2,2.6.5,2019-08-10 14:59:03,,,most_relevant,com.gmail.jmartindev.timetune +Zach Capon,https://lh3.googleusercontent.com/-sO87E72WW5U/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOxBtzHfwf3VbfaRA9JH09h5hgbYQ/photo.jpg,"Just downloaded the app and noticed that I cant have 2 events overlapping eachother? My example is to be in the office (for my job) and do schoolwork. But i categorize these as two different events and want to be able to see them as such, so I know everything I am doing. Please add this!",4,0,2.6.5,2019-09-18 18:09:37,"Hi. For the moment, the way to achieve this is to break the time slot in smaller slots and add a secondary tag to the slot that has two activities. But you're right, this could be tackled differently. We'll explore other options in future versions. Thanks for your feedback! 👍",2019-09-18 20:12:04,most_relevant,com.gmail.jmartindev.timetune +Chadli Mascarenhas,https://lh3.googleusercontent.com/a-/AOh14GjiL6MPwYMBZKiaIv8jhcIsFmUzgVVxddKjbnPL,"Fantastic app, great layout and super helpful. Editing entire routines can still be a bit cumbersome, but it's better than any other routine/calendar/daily scheduling app I've used.",4,0,2.6,2019-04-08 12:09:07,,,most_relevant,com.gmail.jmartindev.timetune +Baron Elementalist,https://lh3.googleusercontent.com/a-/AOh14Gi4db-Ec1PIti8J0E_czsVSdVV1nxKtsoBDGf9sJQ,"I definitely like this app. However, I can't rate it 5/5 because it erased all of my routines this morning, so it's been a bit of a tedious process trying to reprogram everything back in.",4,0,2.5.1,2018-11-17 03:56:22,"Hi. That shouldn't happen at all. Just in case, remember to backup your database periodically or automatically to Google Drive (Settings / Backup / Google Drive) so you can recover it in situations like this.",2018-11-17 09:25:41,most_relevant,com.gmail.jmartindev.timetune +:Deepak Goyal,https://lh3.googleusercontent.com/a-/AOh14Gha-z6_2JcjejaF4uqBjsrkuRoxMQjnN655H22P1g,This app is good to schedule your daily routine on a weekly basis...I liked it.. But I could be better if we could log our actual activities time also and if this app could show a comparison between what was scheduled and what is actual,4,0,2.5.1,2018-11-17 04:53:26,Hi! Thank you very much for your suggestion. This is a possibility we're considering for the future.,2018-11-17 09:26:16,most_relevant,com.gmail.jmartindev.timetune +Vaidehi Bala,https://lh3.googleusercontent.com/a-/AOh14GjDEN1OqiYO1w7fhN6_D2HVpdZvrRwKqXFTy51e2w,"I liked this app very much. It helped me schedule my time. That happiness didnt last long, as it kept shutting down often. If that problem is sorted out, then this is one of my life saver app. Thumbs up!",4,0,2.5.1,2018-11-22 10:13:53,"This happens because Xiaomi devices block background work by default, it's not a fault with the app. You can find instructions for Xiaomi here: https://timetune.center/troubleshooting/#brands",2018-11-22 11:23:50,most_relevant,com.gmail.jmartindev.timetune +Loren Heckard,https://lh3.googleusercontent.com/a-/AOh14GhEKtSmVdJ6qTU0ZU408IjRTCi_VLELxbenNQL8Mw,"Would love to be able to remove tags that already exist, or at least edit them. I'd like to be able to use different icons and colors for specific named tags that already exist. And if I make any mistakes on a new one, it's permanent.",4,2,2.5,2018-10-04 22:33:07,Hi Loren! You can edit or remove tags here: Main menu / Tags 😉,2018-10-05 08:02:46,most_relevant,com.gmail.jmartindev.timetune +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Fabulous and simple, yet amazing, design. It has the right tools to organize my time. Can wait for the new features coming up.",4,0,2.5,2018-10-21 03:52:52,,,most_relevant,com.gmail.jmartindev.timetune +Harmony Jackson,https://lh3.googleusercontent.com/a-/AOh14GjfWUYz29SrJwFWkcDDwLRfz5xTqQ3bL1MvNsjq0jg,Only thing missing is being able to check off each task/event. I'd like to know that I am making progress of keeping the routine or of I need to tweak the routines a bit.,4,0,2.4.4,2018-09-24 10:47:36,Hi! Thank you very much for your suggestion. This is a possibility we may consider in future versions.,2018-09-24 20:34:33,most_relevant,com.gmail.jmartindev.timetune +Lenomo Machine,https://lh3.googleusercontent.com/-IUp9R-Nsgpc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMeyzdo7gGBRhU5khH58EjJDyYSdg/photo.jpg,Helps me to plan my day! What I'm missing: widget shows comming events only and you can't see the previous events. So when you are a bit late the widget is not helping.,4,0,2.5.1,2018-12-18 06:40:46,Thank you very much for your suggestion! 👍,2018-12-18 11:25:00,most_relevant,com.gmail.jmartindev.timetune +Ajay Kumar Singh,https://lh3.googleusercontent.com/a-/AOh14Gji71N2W8SVGdNVAneCPGUs9eUzJRuRLqRSQARtuA,Good app,4,0,2.9.2,2020-04-06 02:16:10,"Stay tuned, we're currently working on this. Apart from that, our intention is to add automatic cloud backups with Cloud Firestore in future versions. You can read more about it here: https://timetune.center/goodbye-drive-backups/",2019-05-12 13:45:54,newest,com.gmail.jmartindev.timetune +midco Sydney,https://lh3.googleusercontent.com/a-/AOh14Giq59DiC_hzx19wnUow9h92EYrVJ5zqIoQYfh8y,"This apps quite easy to use and looks simple. Just it doesn't really meet my requirements, it can be better if it got the calendar and tickbox. I've purchased it but it still like the same. It said sync to my calendar but it didn't shows what I've planned in my google calendar. The only thing I am satisfield is the notification sounds.",4,0,2.9,2020-04-05 14:53:27,"Hi, thanks for your suggestions 👍 The app is still evolving and we'll be adding improvements progressively 👷‍♀️ Please check the following link for a solution to the calendar issue: https://timetune.help/en/troubleshooting/#calendar (if that doesn't work, you can contact us at timetuneapp@gmail.com and we'll find the reason) 🙂",2020-04-05 15:59:12,newest,com.gmail.jmartindev.timetune +Abdeali Stationwala,https://lh3.googleusercontent.com/a-/AOh14GgEJ7iH9xouVcHlZA3Um3KNLnahv13sMV57BgdutQ,Not upto the mark but its okay. Ads give ptoblem and ui is little weak.,4,0,2.9.1,2020-04-05 10:37:06,Hi! Thanks for your feedback 👍 The app is still evolving but we'll be adding improvements progressively 👷‍♀️ You can join our communities or contact us at timetuneapp@gmail.com if you want to provide more details about suggestions or ideas.,2020-04-05 10:57:57,newest,com.gmail.jmartindev.timetune +honey,https://lh3.googleusercontent.com/a-/AOh14Gjyvo4v4ztdSVe2RdCeF1U2rnDPPuujPqRkF_Ls,"Developer responded to my issue quickly and politely. App is pretty good so far, maybe a little more clarity is needed about the user interface for dummies like me :) Like an arrow to indicate I can swipe for the rest of my schedule.",4,0,2.9.1,2020-04-05 08:54:07,"Thanks for your suggestion, Alyssa 👍 We'll be adding improvements progressively 🙂 Stay safe 💗",2020-04-05 10:51:07,newest,com.gmail.jmartindev.timetune +Emily,https://lh3.googleusercontent.com/a-/AOh14Gi2QC3xBir0SVUfbDH_TGr-XcurNBj6mVlP33SJHA,I think the app really helps you stay organized. It really helped me out. The only complaint I have it that you have to pay for the premium version but I mean... how else are you supposed to be able to make money off of an app so...,4,0,2.9.1,2020-04-05 02:58:25,Hi! Remember that none of the premium features is essential. You can create as many routines and events as you need for free 🙂,2020-04-05 08:33:09,newest,com.gmail.jmartindev.timetune +CELIC GONZALEZ ROBLES,https://lh3.googleusercontent.com/-bd4vlBjoab4/AAAAAAAAAAI/AAAAAAAABm8/AAKWJJNyi-yifAYA3h7ZdknVllKlPHnUcg/photo.jpg,Real good. You star focus on you schedule and all the dead times,4,0,,2020-04-04 18:41:21,,,newest,com.gmail.jmartindev.timetune +kaustubh amare,https://lh3.googleusercontent.com/a-/AOh14GhGPiFj7U3RqOhRjNksnZ6HnfFUDG3p_PCTT1HvjQ,"Make some more widgets, rest all app is nice and user-friendly",4,0,2.9,2020-04-04 10:46:20,"Hi, thanks for your suggestion 👍 The project is still evolving but we'll be adding improvements progressively 🙂",2020-04-04 18:41:54,newest,com.gmail.jmartindev.timetune +Siew Theng Beh,https://lh3.googleusercontent.com/a-/AOh14Gh11SQBj8fTqleZ6ahQCuNVS-WlcctUqBGIBBSH,Can sync it to laptop?,4,0,,2020-04-04 07:31:35,"Hi! Not for the moment, but it's a possibility we'd like to explore in the future, provided the project grows adequately 🙂",2020-04-04 07:57:51,newest,com.gmail.jmartindev.timetune +Amanda Dragoo,https://lh3.googleusercontent.com/a-/AOh14GhVmwb3MTJbwKvGP7eVPHcdfMV5b_6ZaJkJtsJm4Q,I love this app and the idea behind it with the weekly and daily routines. I wish I could view my month or week at a glance however so I can see my weekly routine and how my non reoccurring events affect and lay out with my routine.,4,0,2.9,2020-04-03 19:13:55,"Thank you very much for your suggestions, Amanda. The app is still evolving and we'll be adding improvements progressively 🙂",2020-04-03 20:57:34,newest,com.gmail.jmartindev.timetune +Gary Schwegmann,https://lh3.googleusercontent.com/a-/AOh14Gjanhs7zlfG_U5LVQXvwLvAX0WjN5lSL_Op9dWPMg,Decent,4,0,2.8,2020-03-30 17:01:35,,,newest,com.gmail.jmartindev.timetune +Sarah Beadles,https://lh3.googleusercontent.com/a-/AOh14GiJDPKd8mT7h09ih_kUNOQ4Ey8aJv-xKIgVe2O3,Easy to use and very useful especially spending lots of time at home at the moment,4,0,2.8,2020-03-28 20:56:09,"Stay safe, Sarah! 💗🙂",2020-03-28 21:47:16,newest,com.gmail.jmartindev.timetune +Jonata G.C.,https://lh3.googleusercontent.com/a-/AOh14Gh7nkdpdwZahqq2XB3hoN_2JHcKT6s1tFjp_y12,"A great app but i miss a overview of week activity's, the app get confusing to use after adding some tasks",4,0,2.8,2020-03-25 10:40:05,"Hi, sorry about that. Stay tuned, we're working on some changes that will improve that. Thanks.",2020-03-25 12:08:57,newest,com.gmail.jmartindev.timetune +KD Cliff,https://lh3.googleusercontent.com/a-/AOh14GhA-eVH0BRSkXNzyVJL4miwgmsCpEgcv4ekGQQlWQ,This app is great so far. But I wish there was an option to select several days at a time for each routine.. if there is already pls let me know.,4,0,2.8,2020-03-21 12:07:32,"Hi, we don't fully understand your question. Could you give us an example? (if you prefer it, you can contact us at timetuneapp@gmail.com for better communication). Thanks! 🙂",2020-03-21 15:47:33,newest,com.gmail.jmartindev.timetune +Ozwaald Empire,https://lh3.googleusercontent.com/a-/AOh14GihymsBxNWzNpFwnU7hQRn1ftHmfyQXOmhn-FhilA,"Fine app. Would be perfect to have desktop web version also, to make adding routine much easier.",4,0,2.8,2020-03-20 13:43:41,"Hi! Thanks for your suggestion 👍 This is a possibility we'd like to explore in the future, provided the app grows as expected 📈",2020-03-20 15:07:35,newest,com.gmail.jmartindev.timetune +Ekenedilichukwu Ede,https://lh3.googleusercontent.com/a-/AOh14GjZXeCBRc8id9J8HQelCBIHf3sCVbbd0MzQF29_,Amazing helps manage your time and habit formation,4,0,,2020-03-18 17:17:12,,,newest,com.gmail.jmartindev.timetune +Kaelyn Drummond,https://lh3.googleusercontent.com/-wX2FQ1eQ_F0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNp2oY62FlYF51sB8jBmdujwvKXGw/photo.jpg,Good app and really helpful with time management and staying organized,4,0,2.8,2020-03-13 06:00:43,https://media.giphy.com/media/5ArJanyCfxgiY/giphy.gif,2020-03-14 22:32:09,newest,com.gmail.jmartindev.timetune +Chime Chibuike,https://lh3.googleusercontent.com/a-/AOh14Gh-YrjyH__aIWQ84x2QWIlvNn7rNWk0uvwrGuTYAA,It's simply the best for time allocation to activities and routines.,4,0,2.8,2020-03-11 04:35:19,https://media.giphy.com/media/5ArJanyCfxgiY/giphy.gif,2020-03-14 22:36:10,newest,com.gmail.jmartindev.timetune +Maheer Asif,https://lh3.googleusercontent.com/-8jDpesbCdh8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNL7JmtvWFfi_vAk5dCOtjIjY40Cg/photo.jpg,😐😐😘😘😘😘😘😘😘😘😘😘😘😘😘,4,0,,2020-03-08 05:40:42,,,newest,com.gmail.jmartindev.timetune +luiz miguel,https://lh3.googleusercontent.com/a-/AOh14GhBE0oQDS2p1KgxUf4Jln_uZ61TLFEowMl5eBjN3g,Nāo é exatamente Oque estou Procurando,4,0,2.8,2020-03-06 21:44:41,Hi Luiz! What were you looking for?,2020-03-07 08:46:31,newest,com.gmail.jmartindev.timetune +Sean Piercy,https://lh3.googleusercontent.com/a-/AOh14GjuQ-DF68pOKtUQns_fbL2rmJwNwB8EwOZ3Mi-QBg,"It's an excellent app but I would ditch the ads, you shouldn't need theme with a premium version available. They make your app look cheap and distract users.",4,0,2.8,2020-02-25 00:56:23,"Hi, sorry about the ads. It was a difficult decision for us to show them again, but you will understand why we did it here: https://timetune.app/changing-monetization-model/",2020-02-25 08:16:57,newest,com.gmail.jmartindev.timetune +Ani Ghosh,https://lh3.googleusercontent.com/a-/AOh14Gj-b6EQ2WgcvL36NBcG8KdV5whYjtSuqzvWo1Jsfw,Nice app It helps a lot to save time. You will understand where you used more time and where you should spend more time.,4,2,2.8,2020-02-24 04:22:23,,,newest,com.gmail.jmartindev.timetune +Amadi Daniel,https://lh3.googleusercontent.com/-QHhKZRjJybU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNRGEhZ7g2hXxyaK5Hlx5c0SKVuwQ/photo.jpg,Beautiful app for personal growthv,4,0,2.8,2020-02-20 13:08:07,,,newest,com.gmail.jmartindev.timetune +Rafaella Pereira,https://lh3.googleusercontent.com/a-/AOh14GitJT2qPGa25QJMQgZsRjLRTgLRbpvB9f0lZBKTlg,A liked because is simple and clean,4,0,,2020-02-16 14:36:22,,,newest,com.gmail.jmartindev.timetune +Astha,https://lh3.googleusercontent.com/a-/AOh14GgD2QGqHO6t00tRJnfyiNBcQ7d2pPcix7_GmJ8S6g,Love this app. Helps me a lot!,4,0,2.7.1,2020-02-12 12:42:18,,,newest,com.gmail.jmartindev.timetune +Yu Hang Ng,https://lh3.googleusercontent.com/-PhuVWE96sxU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN5j9yyUKSfHZ4FVOMzqECPLJhm6g/photo.jpg,"Great app, very easy to schedule. I think it would be great if there is a button from the notification panel that allows muting of all events for the rest of the day. Another feature could be the user can push forward or backwards the whole timetable (or pushing forward the event and shortening another) from the popup for unexpected event that delays everything",4,0,2.7.1,2020-02-05 12:13:56,"Hi! You can mute notifications for the day here: Settings / Notifications / Silence notifications. The popup has a mute button too. Is that what you were looking for? About moving the schedule backwards or forwards, its a possibility we'd like to explore in future versions 🙂",2020-02-05 22:05:08,newest,com.gmail.jmartindev.timetune +Vijay Prabhu,https://lh3.googleusercontent.com/a-/AOh14GjWd1HY1h1qBo8-jKRiLl9wCMK8digjppyfJB6tYU8,It's good,4,0,,2020-01-30 02:23:38,,,newest,com.gmail.jmartindev.timetune +Teyanna Evelyn,https://lh3.googleusercontent.com/a-/AOh14Gi2uKSzOtAEDrKC3m-Cz3DRZK61KmlYCQoNdf4H,Its a good app but i dont understand how in the picture they got their timeline like all their routines all my one has is the days of the week and to make a routine you only get two additonal tags im confused how did they get so many?,4,0,2.7.1,2020-01-29 21:49:06,"You can assign up to 3 tags to each block (in case you do three things at the same time), but different blocks can have different tags. You can check all the tags here: Main menu / Tags. We recommend to check our starting guide too (https://timetune.help/en/getting-started/). If you have additional questions, contact by email and we'll help 💗",2020-01-30 09:25:04,newest,com.gmail.jmartindev.timetune +Jenny Baysa,https://lh3.googleusercontent.com/-4wKKrfxLc5E/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPfE5TjhG91OGgzjVMJcp0SZjmgtQ/photo.jpg,"Great app to plan out your weekly schedule, especially for a college student. However I wish it would show the amount of time being spent on each activity on the widget. It shows it when you go into the app but that's less convenient and helpful if you want to do a quick check to see how much time you have for today's lunch break.",4,6,2.7.1,2020-01-28 05:48:41,"Thank you very much for your suggestion, Jenny. The app is still evolving but we'll be adding more improvements in successive updates.",2020-01-28 09:29:06,newest,com.gmail.jmartindev.timetune +samuel mwaura,https://lh3.googleusercontent.com/a-/AOh14GgHiscdBYXrgx7Qv5tStK_fSu4t5E4wk-AXfXK6,Very easy to use plus best time route app available,4,0,2.7.1,2020-01-21 10:02:53,,,newest,com.gmail.jmartindev.timetune +David James Welte,https://lh3.googleusercontent.com/a-/AOh14GjTFW9IyQ7sKPtIZ8bI-nd_84j92shYq2OZaJw3gA,I have found this app helps me stick to my daily schedule.,4,0,2.7.1,2020-01-20 07:05:46,,,newest,com.gmail.jmartindev.timetune +Rekha Rathi,https://lh3.googleusercontent.com/a-/AOh14GjEdklhJwC05pehLh6w22jAelNeZGsw7-VYsUpW,Good and helpful but the notification alarm does not snoozes automatically . The notification stays on the notification bar until not removed. Pls keep a limit till after which it should snooze.,4,0,,2020-01-17 18:09:04,"Hi! We don't fully understand the problem. If you are referring to the sound of the notification, remember that the sound stops when you remove the notification from the notification area. If you are referring to a different thing, please give us more details or send a screenshot to timetuneapp@gmail.com Thanks 🙂",2019-10-17 20:18:45,newest,com.gmail.jmartindev.timetune +Senductive,https://lh3.googleusercontent.com/a-/AOh14GgHUGHW2MilgPt-6HUyI4D-Q9UqkdwPdgH9ujd05A,It's good,4,0,,2020-01-13 05:33:29,,,newest,com.gmail.jmartindev.timetune +Durjam,https://lh3.googleusercontent.com/a-/AOh14GjNIqa82eqp6C5Jpck4n2ZgO6QBgVCM7dpuhqbH7A,"Nice, tho I would like to be able to name a routine and give me a notification of the name",4,0,2.7,2020-01-09 14:35:22,"Hi, thanks for your suggestion. For the moment, remember that you can click on any item on the timeline and it will show you the routine it belongs to. But we get your idea.",2020-01-09 20:48:17,newest,com.gmail.jmartindev.timetune +Suman Khanra,https://lh3.googleusercontent.com/a-/AOh14GiEckMt1zU2IJdlvyI6fxCWyh_y-rHeRegJhAp76g,"Give A Option For Time Range, Like : Sleep 7Hrs But Not From Start To End Cause We Cant Follow That Much",4,0,2.6.6,2020-01-07 16:37:08,"Thanks for your suggestion, Suman 👍",2020-01-07 16:57:20,newest,com.gmail.jmartindev.timetune +Loreta Zariņa,https://lh3.googleusercontent.com/a-/AOh14GgzgJ6VfFusVmYyebpjHTOMFDlCG3K_8z_oq7uZCg,I'd like to see an option to mark parts of my routine as complete.,4,0,2.6.8,2020-01-01 07:16:17,Hi Loreta! Thanks for your suggestion 👍 This is a possibility we're considering for the future 🙂,2020-01-01 08:43:48,newest,com.gmail.jmartindev.timetune +jon doh,https://lh3.googleusercontent.com/a-/AOh14GgjryZt-wzcCupZApV99MJaGpFBKuwQrBCbrBUq,"UPDATE: This app is great! But I'm currently not using it. I'm not using it because the widget colors don't work for me. I'd like there to be different colored backgrounds and text colors for past vs current vs future activities. I want to see at a glance what I ought to be doing at that moment, without opening the app. I'm keeping the app installed, in the hopes that the widget will be improved. Thanks, dev!",4,0,2.6.8,2019-12-19 05:33:35,"Thanks for your suggestion about the widget, Jon 👍 We'll evaluate the idea 🔎",2019-12-19 09:02:11,newest,com.gmail.jmartindev.timetune +Crissel Nolasco,https://lh3.googleusercontent.com/a-/AOh14Gjur0sNQkqrheMiR2_0CaetduApFvK7EDFZQYdu,"I love this app and I definitely recommend, just sad that the timer wont be available in the app anymore, it was very useful",4,0,2.6.8,2019-12-16 11:10:05,"Hi Crissel! Sorry about the timers. It has been a difficult decision for us, but you will understand why we are doing it here: https://timetune.app/removing-timers/ In any case, we remain open to all possibilities, even the possibility of bringing timers back again in a future version. Cheers! 🙂",2019-12-16 21:57:33,newest,com.gmail.jmartindev.timetune +Kanthi Sri,https://lh3.googleusercontent.com/a-/AOh14GiP4vrj8DTBHOo-7IzoqdAKjsZ55-9tfFEx9Kfeow,I really love this app but notifications are not working at all even after i allow all the permissions. So I'm not able to use this app.,4,0,2.6.8,2019-12-15 16:45:47,Hi. Vivo devices are very aggressive with battery optimizations and they include many controls to block apps and notifications. If you already checked https://timetune.help/en/troubleshooting/ and https://dontkillmyapp.com/ we strongly recommend to check or ask in Vivo user forums for instructions about your specific device model. Thanks.,2019-12-15 21:37:50,newest,com.gmail.jmartindev.timetune +Anastacia Howell,https://lh3.googleusercontent.com/a-/AOh14GiiyzM4m4zoR6QtDPcC3etlzt4ZoysXGQANbjegLQ,"I'm liking it so far. It's a very customizable experience, and I can really get into the details without the interface being too complex. I would like to see more widget options for the ap on the home screen. I like to see my schedule and routine the moment I open my phone. While there is a widget, it's rather lack luster. Synced with the programming, I think it would be cool if they had a calendar widget available.",4,1,2.6.8,2019-12-13 14:07:04,"Thanks for suggestion, Anastacia! 👍🙂",2019-12-13 21:14:55,newest,com.gmail.jmartindev.timetune +Thony Thorn,https://lh3.googleusercontent.com/a-/AOh14GganWyPZf8y5iFf37AyYrsrkps_tjk8KZq5w6TP,Great app.. Please fix.. Alarm popup not autohides.. or show longer time ex 5-10min,4,0,,2019-12-13 07:47:34,"Hi, thanks for your suggestion about the popup 👍 We will evaluate the possibility 🔎",2019-12-13 08:54:28,newest,com.gmail.jmartindev.timetune +Ellie Gibson,https://lh3.googleusercontent.com/-UXJgPM1oxB8/AAAAAAAAAAI/AAAAAAAADiE/AAKWJJPHLxGH77HTTMD0lrQjf10wY9QU7A/photo.jpg,I'm struggling to see the use of routines and programmes right now. But the other features are really useful. Would love the option for a task's or to do list!,4,1,2.6.8,2019-12-09 12:30:49,"Hi Ellie! Please check our starting guide here: https://timetune.help/en/getting-started/ If after checking the guide you have additional questions, contact us at timetuneapp@gmail.com and we'll gladly answer them. We take note of your suggestion too. Thanks! 🙂",2019-12-09 20:54:06,newest,com.gmail.jmartindev.timetune +Alessa Young,https://lh3.googleusercontent.com/a-/AOh14GiLaAr4F88aFyl6CUvDFotP9FXR6ewAQVNvgF1LuQ,Wanted vertical and horizontal in routines like before and not to display that alarm clock. Thank you for your feedback i love it.,4,0,,2019-11-09 09:20:11,"Hi Alessa! Thank you very much for your feedback 👍 About the alarm clock icon, remember that you can make it disappear here: Settings / Advanced / Scheduling method / Weak alarms.",2019-02-10 21:45:57,newest,com.gmail.jmartindev.timetune +Samii Porras,https://lh3.googleusercontent.com/a-/AOh14GgNZZ25Ca5NNlo56FP_2LVsNw1_xrBTM8DMH_4t2eo,This is my favorite daily schedule app! It is so simple to use and super versatile. I paid for the pro version just so I could do everything and it was well worth it!,4,1,2.6.6,2019-11-07 20:33:41,,,newest,com.gmail.jmartindev.timetune +Bob Lagg,https://lh3.googleusercontent.com/-GxIzYd1Gsv0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOc0422L4ZVCBGJwThgDCbS8M0VNg/photo.jpg,Rarely(read never) do i write reviews but this app has been transformative for my life and productivity in general. The only issue i sometimes have is the custom song i apply to notifications doesnt always play,4,1,2.6.6,2019-11-06 19:36:18,Hi! If you contact us at timetuneapp@gmail.com we can try to find why that happens. Thanks! 🙂,2019-11-06 21:18:30,newest,com.gmail.jmartindev.timetune +Marcos Lenker,https://lh3.googleusercontent.com/-gzWY0ri4lVg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOVbjP52O2nZ0m2CmtTm4II01RIjQ/photo.jpg,It's amazing,4,0,2.6.6,2019-11-06 00:14:02,,,newest,com.gmail.jmartindev.timetune +benjaminausbiberbach,https://lh3.googleusercontent.com/-K7ErL_XY59M/AAAAAAAAAAI/AAAAAAAAHh0/AAKWJJM580euAx07rg4Bx_Yo0VkiQCKiSQ/photo.jpg,"Very useful, but a feature to postpone events more easily would be nice.",4,0,2.6.6,2019-10-31 12:15:21,"Hi, thank you very much for your suggestion 👍 We will examine the idea 🔎🙂",2019-10-31 15:19:59,newest,com.gmail.jmartindev.timetune +Nicole,https://lh3.googleusercontent.com/a-/AOh14Ght-UDWNyKvpkLT-942xrq9S5opqvzl2pAKqznIrA,For god sake change the default color this red is burning my eyes,4,0,2.6.6,2019-10-30 19:07:56,"Hi, sorry about that. For the moment, please try the dark theme, the red is darker there. Thanks.",2019-10-30 21:14:54,newest,com.gmail.jmartindev.timetune +M Otimi,https://lh3.googleusercontent.com/-ttYnK8Bnlak/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNANovS37FrWQAmqgvaBwUPwanqZw/photo.jpg,Have re-defined my routines and activities. Working well.,4,0,2.6.6,2019-10-30 07:04:10,"Hi, there's a limit of 20 active routines at the same time because it helps with performance. However, if you give us more details and tell us how you use more than 20 routines at the same time, we're open to increase the limit if necessary. If you prefer a refund, contact us at timetuneapp@gmail.com and we'll do it too, no problem. Thanks.",2019-09-29 20:33:47,newest,com.gmail.jmartindev.timetune +Daniel Saunders,https://lh3.googleusercontent.com/-VV6FCe3YZRM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPtSpd4NnN9IFvcl8w8XK53fW-90A/photo.jpg,Useful. Good notifications,4,0,2.6.6,2019-10-27 12:26:56,,,newest,com.gmail.jmartindev.timetune +Josiah Tuali,https://lh3.googleusercontent.com/a-/AOh14GjdBuKv-1vnKeTDM0igb7I_aDJ5ICrmqbDiTuLu5w,It has a button just for what I need...I bit hard to read the scheds though,4,0,2.6.6,2019-10-27 11:15:58,,,newest,com.gmail.jmartindev.timetune +Kumar Mritunjay,https://lh3.googleusercontent.com/-9fE7X_ON5yY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN_GMgOO7qqoSUCf4JRKj3SD94hmA/photo.jpg,"Very nice app for maintaining our schedule... Need to improve sechudule reminder, not working properly..",4,0,2.6.6,2019-10-27 05:45:43,"Hi Kumar. If you experience problems with reminders, remember that Huawei blocks third-party applications by default. Please check https://timetune.help/en/troubleshooting/ and https://dontkillmyapp.com/ for more instructions. Additionally, you can check or ask in Huawei forums too for specific steps for your device model. Thanks.",2019-10-27 08:45:55,newest,com.gmail.jmartindev.timetune +Priyansh Vats,https://lh3.googleusercontent.com/a-/AOh14Gi0fJzNbznXUCkrU4ILa94xUWNSTYgiFaZQHA55,"Nice! ,There is all i needed in this app.",4,0,,2019-10-21 12:18:02,,,newest,com.gmail.jmartindev.timetune +Cassie Watson,https://lh3.googleusercontent.com/a-/AOh14GiprPGcJqYdn7CVI1yw4106AfeGDcBP5GvUYvo32Q,"I like all the scheduling possibilities and tools. I'm giving it 4 stars because the alarm I have set thru the app can't be turned off. I had to uninstall it, just to get it to turn off. Very annoying.",4,0,,2019-10-21 10:56:07,Hi Cassie! The sound should stop when you swipe the notification from the notification area. Please try it and let us know. Thanks! 🙂,2019-10-21 21:24:18,newest,com.gmail.jmartindev.timetune +rãk,https://lh3.googleusercontent.com/a-/AOh14GjRag-35fRCNM9miLO6N22W6JNMIGfhcCzXgDHCdw,Good app,4,0,2.6.6,2019-10-20 11:03:31,,,newest,com.gmail.jmartindev.timetune +Lily_ Lemon,https://lh3.googleusercontent.com/a-/AOh14GiW0n9LH86XepWjrju2L_MZ0Xm8ZmNjo1b0dpkf6A,"I like this app because it's better than another app I found and is really good at reminding me to stick to schedule. But I gave it four stars because even though I haven't had any issue with this yet, it does have in app purchases wich I don't think are needed here. But overall if you need to plan a day or routine, use this app.",4,22,2.6.6,2019-10-15 15:44:46,Hi! Thanks for your feedback 👍 The in-app purchase is the only way we can keep working on the app 👷‍♀️ Thanks for your understanding 🙂,2019-10-15 20:41:09,newest,com.gmail.jmartindev.timetune +Tori L,https://lh3.googleusercontent.com/a-/AOh14GjHYKy-ea50xj-mfwZFSNRdQiGbIpJm-hTzdXeT3w,Could you allow me to add activities on my timeline because my routine and plan is always changing and cannot be limited to a fixed routine. I use this as a daily planner to plan out my full days and weeks ahead of time so it would be good if i can add activities far ahead of time.,4,1,2.6.6,2019-10-15 05:19:40,"Hi Tori! Thank you very much for your suggestion 👍 For the moment, we recommend to use the Events section for that, but we'd like to explore other alternatives in the future 🙂 Cheers!",2019-10-15 06:35:25,newest,com.gmail.jmartindev.timetune +Nubia Cruz,https://lh3.googleusercontent.com/a-/AOh14GjNARHE-fc75u6cHeNnha_0Zk7BS_CkwVZ7Q4aGdQ,"It's working really good so far, I've been looking for something like this for so long. Thank you.",4,0,2.6.5,2019-10-10 17:04:39,,,newest,com.gmail.jmartindev.timetune +Anemone Spare,https://lh3.googleusercontent.com/a-/AOh14GhresRVA3Yh6t-pwRF0wPVqft_WpzS5hjWw_R2iYA,"Nice app! Super helpful to plan anything, recommend it. However, it would be nice if you could at a to-do list function? That way I could tick off the things I need to complete for one time only, such as homework. Good work tho!",4,16,2.6.6,2019-10-10 16:20:53,"Hi, thank you very much for your suggestion 👍🙂 We will evaluate the idea 🔎",2019-10-10 20:56:15,newest,com.gmail.jmartindev.timetune +lilheidi76,https://lh3.googleusercontent.com/a-/AOh14GiFarigT39qWvesljoxc2xzCe6ELWav1lFbKXhL,"I really love TimeTune in helping me better utilize my time, see where it is all going and plan routine tasks so that I can stay on top of my busy life. The only thing missing for me is the ability to tick things as completed and cross if not done. I'd love to be able to analyze my routine to see what worked well and what I struggled to acheive. I find it rewarding and motivating being able to check things off as done.",4,2,2.6.5,2019-10-09 23:12:57,"Hi! We're currently evaluating different alternatives for that. If possible, please take a look at this article and let us know which approach you prefer: https://timetune.app/most-requested/",2019-10-10 07:50:40,newest,com.gmail.jmartindev.timetune +Maen Sosmed,https://lh3.googleusercontent.com/a-/AOh14GhdLuPu6Td5dsUclIL2MHHkK3RiIRqQK9vWEtwjJQ,"I got many work many problem but with this, this app can give me something new, i can manage my daily activities, this is my solution live for me",4,0,,2019-10-06 13:25:50,,,newest,com.gmail.jmartindev.timetune +Roshaan Rauf,https://lh3.googleusercontent.com/a-/AOh14Gg-ZOpZ9lQ2Y2_n0-c_IGzgPlcGMkFR8O93H9tLZw,"Good app, just one suggestion, consider putting a weekly template with times on the side, its much easier to follow and visually appealing",4,0,2.5.2,2019-10-05 11:12:32,"Thank you very much for your suggestion, Roshaan 👍 We will evaluate the idea 🔎",2019-10-05 16:08:14,newest,com.gmail.jmartindev.timetune +Sarah Hatch,https://lh3.googleusercontent.com/a-/AOh14GiCX3d116A8uxPBbHbkTN_BxIpFa8tR_Dxx8zyiuA,"Really well for procrastinators and forgetfulness!! I constantly forget things but this keeps me on track. I will admit though that the tags should have an option on sorting them (clicking and dragging them to be in a specific order) other than that, perfect app and no issues so far!!",4,1,2.6.5,2019-10-01 19:34:46,"Thanks for your suggestion about the tags, Sarah 👍 We will evaluate the idea 🔎 Cheers!",2019-10-01 21:02:53,newest,com.gmail.jmartindev.timetune +Rupali Jadhav,https://lh3.googleusercontent.com/a-/AOh14GgwCbWXFM-D3Iw_CsxGrCvf212E2NTOFgOjK-iNxA,I liked this app. I would like to recommend one more thing. Please add the schedule to calendar as well. As right now it is getting all calendar events. But it will be great if all the schedule will also get saved at calendar.,4,0,2.6.5,2019-09-30 21:04:19,"Thanks for your suggestion, Rupali 👍 We will evaluate the idea 🔎",2019-10-01 08:10:10,newest,com.gmail.jmartindev.timetune +Mirajahmad miraj,https://lh3.googleusercontent.com/-PYlDcVfC6Hc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM_8FhtgzVkER8v5i4aO8R4ScP4_g/photo.jpg,Good for saving time,4,0,2.6.4,2019-09-29 08:38:01,,,newest,com.gmail.jmartindev.timetune +wangui chege,https://lh3.googleusercontent.com/a-/AOh14GhWzWocYYkA19IGRz0duVrJ0HLtOY-MydLoOIMt0Q,Great and simple to use..,4,0,2.6.5,2019-09-28 19:50:05,,,newest,com.gmail.jmartindev.timetune +Shovo Ahamed,https://lh3.googleusercontent.com/a-/AOh14GiwXcR9V0KxHkVuuwhVv3FeEei4WsyIHT4Jdm43RA,Good,4,0,2.6.5,2019-09-25 05:58:12,,,newest,com.gmail.jmartindev.timetune +Latik Kothwar,https://lh3.googleusercontent.com/a-/AOh14GjSDypBAHHSoYJkKXy7XN8vBakJPe2kqJwUHO_gsg,"Still need to improve on routine like day of every first week, every second week of the month.",4,0,2.6.5,2019-09-25 05:51:34,"Thanks for your suggestion, Latik 👍 Indeed, this is a possibility we'd like to explore in future versions 🙂",2019-09-25 08:13:44,newest,com.gmail.jmartindev.timetune +Kondamuri Sai Sindhoori,https://lh3.googleusercontent.com/-VkKlaSuvb5E/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNTs02DXgn2w3tsZ7F4lGxsXJKdlQ/photo.jpg,It's very nice.but how to get Time line on home screen,4,0,2.6.5,2019-09-23 16:44:28,"Hi, please check our guide for beginners to see how to do it: https://timetune.help/en/getting-started/ If after checking the guide you have additional questions, contact us at timetuneapp@gmail.com and we'll help in all we can 🙂",2019-09-23 21:02:26,newest,com.gmail.jmartindev.timetune +Sasa Po,https://lh3.googleusercontent.com/-YodvCQOoYHA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOrTpC0llXxrVzanht3txwP6ZiY8Q/photo.jpg,"A great app for setting routines, simple to use and very customizable. A slight learning curve for the routine setting, eg. The +/- symbols. A few things that could be improved: easily assigning routine for each day rather than programming a period of time (from the pro version) or the same routine (from the free version). Also the widget could be more useful if it indicated the ending time as well. The comment text style could also be better differentiated title/tag of the event.",4,4,2.6.5,2019-09-23 06:56:09,"Hi! Thank you very much for your feedback 👍 Knowing which features are still bumpy is very important for us 🙂 Feel free to tell us all the suggestions you might have, we'd love to hear them 👂",2019-09-23 09:27:52,newest,com.gmail.jmartindev.timetune +Zach Capon,https://lh3.googleusercontent.com/-sO87E72WW5U/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOxBtzHfwf3VbfaRA9JH09h5hgbYQ/photo.jpg,"Just downloaded the app and noticed that I cant have 2 events overlapping eachother? My example is to be in the office (for my job) and do schoolwork. But i categorize these as two different events and want to be able to see them as such, so I know everything I am doing. Please add this!",4,0,2.6.5,2019-09-18 18:09:37,"Hi. For the moment, the way to achieve this is to break the time slot in smaller slots and add a secondary tag to the slot that has two activities. But you're right, this could be tackled differently. We'll explore other options in future versions. Thanks for your feedback! 👍",2019-09-18 20:12:04,newest,com.gmail.jmartindev.timetune +Ameya Kolhatkar,https://lh3.googleusercontent.com/a-/AOh14Gi_iByG5yhAfrSbgLAHVWe6oG2jaDEeCaw_ITMUcg,"Clean os, lots of features",4,0,2.6.5,2019-09-17 15:34:54,,,newest,com.gmail.jmartindev.timetune +Timothy Kennedy,https://lh3.googleusercontent.com/a-/AOh14GjyaE_SKp0Iq6QIRk5rbANwELT_bl7bg28bXnfkmA,Took a bit of time to learn but so far its a great app. Definitely appreciate the ability.to set passive or more aggressive reminders.,4,0,2.6.5,2019-09-16 09:37:55,,,newest,com.gmail.jmartindev.timetune +Alyssa Reddy,https://lh3.googleusercontent.com/a-/AOh14GgAfaOEsMnoNiHrt-GA9mI2UhPEnnfkyKCBtqHi_A,Everything I wanted and more! Finally has updated almost to perfection. integration with Google fit or samsung health and or any gear would be amazing!,4,0,2.6.5,2019-09-14 02:19:33,Hi Alyssa! Thanks for your suggestion 👍 Is there a specific update that you liked most than the others? 🙂,2019-09-14 07:13:28,newest,com.gmail.jmartindev.timetune +Akash Choudhury,https://lh3.googleusercontent.com/a-/AOh14GikRNz-9E6D5SUgJROa_6ZO5KeqzKCgFlaFkFT49vI,Can I have a feature where I can maintain a record of how many times I actually finished the activity I was putting in? Include that and it's 5 stars from me.,4,0,2.6.5,2019-09-13 08:55:54,Hi Akash! We're considering this possibility for future updates. You can vote on your preferred approach here: https://timetune.app/most-requested/,2019-09-13 20:52:18,newest,com.gmail.jmartindev.timetune +GIRISH. K GIRI,https://lh3.googleusercontent.com/a-/AOh14Ghh74tIt6ZiilBKLStqaJAbc9qsO0rJQzDTAfqZ,Nice app,4,0,2.6.5,2019-09-10 18:54:37,,,newest,com.gmail.jmartindev.timetune +Rohith Zinny,https://lh3.googleusercontent.com/a-/AOh14Gg2lAMCAZBTD1pG9BdmbOY-P8A-11kzqnSP3nIGlg,Nice,4,0,2.6.5,2019-09-04 15:17:48,,,newest,com.gmail.jmartindev.timetune +GooKik PS,https://lh3.googleusercontent.com/-Fn36ZUr80vQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN294CnEhgZLWplWpaBTAWqILRxRw/photo.jpg,Adding function of goal list eg. the work has a goal and the goal shall finish in which days.,4,0,2.6.5,2019-09-04 06:51:29,"Hi, thank you very much for your suggestion! 👍🙂",2019-09-04 08:27:34,newest,com.gmail.jmartindev.timetune +P Sut,https://lh3.googleusercontent.com/-JrOgTpmR4BY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMmyALFjahrLxm96tmZqx3OfSL6uA/photo.jpg,"Really helpful app. I've looked at lots of other schedule apps, but this one is the easiest for me to customize precisely. Great for making routines! Since a few of my routines overlap, it would be amazing if there were an option to see routine titles in the widget timeline above or before the task, in order to keep an overview of which/whose routine is in effect. Both of my children have their own different weekly routines, so it would be nice to see on the timeline, that for example, it's kid#1 who has school on Monday mornings and kid#2 on Monday afternoon instead of two ""time for school"" tasks with no specifics. It would also be great if this app could be accessible from my computer desktop or if I could sync with other family members.",4,14,2.6.5,2019-09-03 09:25:27,"Hi, thank you very much for your suggestions 👍 For the moment, as an alternative, we recommend to use different tags for different routines (for example including the name the kid in the tag). We'll try to find other solutions in future versions though. Cheers!",2019-09-03 21:14:40,newest,com.gmail.jmartindev.timetune +Tanner Sheahan,https://lh3.googleusercontent.com/a-/AOh14GimUbA6i4f3Evvg-qxMTKWLpEiWKrgoCaDCiEVL-SI,"Great so far, two requests for devs. I just started using TimeTune and I like it, has most options I was looking for to help my time management and utilize time blocking Requests; 1: Whole Week View - I'm looking for healthy rhythm and repetition in my weekly routine as an independent worker, difficult to visualize when I can only view one day. 2: Sharing - I'd love to be able to share my routine with my wife through this app. Perhaps two ways to share; ""by whole routine,"" and ""by tag.""",4,5,2.6.5,2019-09-01 00:05:17,"Thanks for your suggestions, Tanner! 👍🙂",2019-09-01 07:33:33,newest,com.gmail.jmartindev.timetune +K T,https://lh3.googleusercontent.com/-a35N0sflfRg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMSf2M6j3pTn4khDhV0L1bLOw1ODQ/photo.jpg,Very nice app and easy to use. My only complaint is that I wish there was an option to have a weekly view in block format like a planner versus just the timeline. But it is still very convient to use the routines.,4,1,2.6.5,2019-08-23 21:48:02,"Hi, thanks for your suggestion 👍 We will evaluate the idea 🔎",2019-08-24 07:00:56,newest,com.gmail.jmartindev.timetune +Nawit Atd,https://lh3.googleusercontent.com/-QXOaWPkPFbQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMMkEClEsZOKnq_SRiktaAwjIJabQ/photo.jpg,"Nothing like a to-do list, this is a power tool. Only one of its kind. With this I can eventually time my teeth brushing and even toilet visits to the minute. Definitely not a to-do list.",4,0,2.6.5,2019-08-23 18:34:14,,,newest,com.gmail.jmartindev.timetune +جميل بن رشيد الزلامي - ابو مشاري,https://lh3.googleusercontent.com/a-/AOh14Gggbs6TMZzFSwD-EvBMAH3KaU8S8pwVSW7rt0tip9I,good and useful,4,0,2.6.5,2019-08-17 14:45:09,,,newest,com.gmail.jmartindev.timetune +Mahesh S Nair,https://lh3.googleusercontent.com/a-/AOh14GioA-jC2wq9d6o2f5tVptBi0Mic9asEw9x9srzurw,I wish to buy the pro version and also encourage my friends and family to do the same but hope you can make some improvements to the app. The UI looks very minimal which is a vanilla android template for an app development. Please make the UI a bit more appealing. We would have also like to do routines that are repeated in intervals of more than 15 days. Present app doesn't allow me to set a monthly routine. Hope the icons can be more rich and appealing.,4,2,2.6.5,2019-08-13 08:23:46,"Thanks for your suggestions, Mahesh. Indeed, the app is still evolving but more improvements will be added progressively.",2019-08-13 18:39:49,newest,com.gmail.jmartindev.timetune +Evans Njoroge,https://lh3.googleusercontent.com/-q_7McZlt50M/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM-OBRpa8BkhDsvSKAECvuu9MI8Dw/photo.jpg,Its good for time management,4,0,2.6.5,2019-08-13 05:31:49,,,newest,com.gmail.jmartindev.timetune +Yahya M Aji,https://lh3.googleusercontent.com/a-/AOh14Gj1QWB-axaGUF-ykSw7JtY908f6ithaCcPJaFNxQg,not exactly what i needed,4,0,2.6.5,2019-08-11 05:39:32,"Hi. TimeTune is still evolving. If you tell us the features you expected to find, we will evaluate the possibility of adding them. Thanks.",2019-08-11 08:11:44,newest,com.gmail.jmartindev.timetune +Cat B,https://lh3.googleusercontent.com/a-/AOh14GjEf5bUwA3rGXc3uq3vWm4LOHFHfmU_QpP1Ae46kQ,"Good organizer. This apps is lovely to look at and good for scheduling. It is more for idealized schedule as it does not really let you adjust during the day if something comes up. Overall, good.",4,2,2.6.5,2019-08-10 14:59:03,,,newest,com.gmail.jmartindev.timetune +JITENDRA NAIK,https://lh3.googleusercontent.com/-G6eqIM1zuwo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNhtd2zDvTAwCajaeZtwugICxTo_A/photo.jpg,add notebook page,4,0,2.6.5,2019-08-10 10:39:35,"Thanks for your suggestion, Jitendra! 👍🙂",2019-08-10 11:36:24,newest,com.gmail.jmartindev.timetune +Wai Phyo Oo,https://lh3.googleusercontent.com/--i1Fix9uDqM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPGy3w020hu3b31vmP5fRunxjUkqg/photo.jpg,This is a really useful app. Is this weekly scheduled repeat every week until I delete it?,4,0,2.6.5,2019-08-07 16:58:59,"Hi! Yes, your routine will repeat every week automatically 🙂",2019-08-07 21:16:22,newest,com.gmail.jmartindev.timetune +Lauren Robie,https://lh3.googleusercontent.com/a-/AOh14GjoQWcWXF2UP2JDxHYUs_3LTB_TyO1mev70Y-nfjFE,good,4,0,2.6.4,2019-08-03 04:58:16,,,newest,com.gmail.jmartindev.timetune +Beau Williams,https://lh3.googleusercontent.com/a-/AOh14Ghw7pLk1QkXT3mcgdHVunw6VjtFBkMxSPJkQPAd,"Great for maintaining and keeping a routine. This is detailed enough to develop any kind of daily/weekly/monthly routine, and flexible enough to incorporate out-of-routine events and distractions if you use it right. It is a bit tedious for some people, (that's why the 4 stars) but they can keep it simple and high-level if they like. But, if you really want to tame that beast called your work week, school agenda, or personal days like me, this will take care of it.",4,7,2.6.4,2019-08-01 09:13:35,,,newest,com.gmail.jmartindev.timetune +Hello Hello,https://lh3.googleusercontent.com/a-/AOh14Ghs2uC0EcpjN4dV2zx2rhEREWGUM77isa510hdzRA,"pretty good, so i can set my life straight on my daily good habits and positive impacts of my self motivation",4,0,2.6.4,2019-07-28 14:23:57,,,newest,com.gmail.jmartindev.timetune +S K,https://lh3.googleusercontent.com/-bwCtPptIVNI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN8QEktL0tqxPRDtgPjwKhQ5V0peQ/photo.jpg,"How do I ""push back"" and/or ""bump up"" a daily routine? *Edit: They answered my issue. Other than needing an easier way to do what I mentioned above, I love this app. Very easy to use and very started. I love that you can create your own Tags too.",4,0,2.6.4,2019-07-26 21:42:14,"Hi, we answered your email. Sorry for the delay, we usually answer emails once a day. Thanks.",2019-07-26 13:21:31,newest,com.gmail.jmartindev.timetune +Bhagi kadam,https://lh3.googleusercontent.com/a-/AOh14Gjaut_oadMcDKyX0-eptOSwJDAkjjvZ_d2i7dFjSA,The app is great but the notifications are not working. Please do help with this issue.,4,0,2.6.4,2019-07-26 17:54:22,"Hi. This happens because Xiaomi devices block background tasks by default, it's not a fault with the app. We recommend to check here: https://timetune.help/en/troubleshooting/ and here: https://dontkillmyapp.com/xiaomi Apart from that, we recommend to check in Xiaomi forums as well for instructions about your specific model. Thanks.",2019-07-26 19:59:38,newest,com.gmail.jmartindev.timetune +Samantha Alba,https://lh3.googleusercontent.com/a-/AOh14GjnlUgM0rGC4oh_D4H3hgLlh_cMyx_lQLZC0Tvr,"i love rhat there ia a wodget on my acreen so i can always see which tasks i ahould be working on. Does the full version connect to your preferred calendar. i ahve been using my gmail calendar for years, hut i dont see where they sync up.",4,0,2.6.4,2019-07-25 18:39:50,Hi Samantha. The full version allows to see events from Google Calendar in TimeTune's timeline. Other options will be added in future versions. Thanks.,2019-07-25 21:47:52,newest,com.gmail.jmartindev.timetune +Ghost Mx,https://lh3.googleusercontent.com/-voTnGoLzMuI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPp8gHT8OiMKCOu5cFOdqcLUfLtgA/photo.jpg,useful,4,0,2.6.4,2019-07-20 17:27:59,,,newest,com.gmail.jmartindev.timetune +Ayse Sahsivar,https://lh3.googleusercontent.com/a-/AOh14Gg3_L15RaV-awSvQDbO9c8ZmOIWEWuQsFMVOEoFvQ,I was supppeerrrr exited about the app and it was really good but one of my alarms I set wouldn't turn off unless I deleted the app.,4,0,,2019-07-20 15:43:25,Hi! TimeTune plays notification sounds a bit differently than other apps. The sound will stop when you remove the notification from the notification area or when you click on the 'Close' button in the notification. Thanks.,2019-07-20 20:41:36,newest,com.gmail.jmartindev.timetune +barbra autio,https://lh3.googleusercontent.com/-VkERzkiIXP0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN78pg5TUScU5PalGRiW5eonvySVQ/photo.jpg,this app seems awsome and it is just mabe a touch up on sound otherwise I love it! this is exactly what I needed,4,0,2.6.4,2019-07-18 03:01:04,"Hi. If you experience problems with the sound, you can try changing the output channel here: Settings / Notifications / Output channel.",2019-07-18 07:16:09,newest,com.gmail.jmartindev.timetune +Fireheart 01,https://lh3.googleusercontent.com/-BsoH5uqsD1s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP8S3-i8uZoMQYjlP5CBBkL6fOn8g/photo.jpg,"very good. it is a bit complicated to use. It should probably have a tutorial or an expailnation about the different functions, as some of them just seem to be the same thing with just a differeent look. (i could just be stupid, which is a possibility).",4,0,,2019-07-17 02:56:33,"Hi! We are currently working on an integrated tutorial 👷‍♀️ Meanwhile, please take a look at our guide for beginners here: https://timetune.help/en/getting-started/ If you have questions after checking the guide, please contact us at timetuneapp@gmail.com and we'll answer them. Thanks! 😀",2019-07-17 07:26:06,newest,com.gmail.jmartindev.timetune +Kumar Shivam,https://lh3.googleusercontent.com/a-/AOh14Ghue4AaDOhOQspC4X7Bra1s03dsnDOKnSPUf1H3YQ,good app,4,0,2.6.4,2019-07-14 20:38:01,Hi. If the problem has been solved (as you explained by email) why do you keep the 1-star rating?,2019-07-14 20:33:07,newest,com.gmail.jmartindev.timetune +GRiiMAZE,https://lh3.googleusercontent.com/-XSDXv_bvhmo/AAAAAAAAAAI/AAAAAAAAACo/AAKWJJNcWS5jqG9pCoRC7UYuHXysLF-H0A/photo.jpg,I like the simplicity of this app. It deserves 5 stars if other features is free.,4,0,2.6.4,2019-07-12 06:18:27,,,newest,com.gmail.jmartindev.timetune +Amy Arellano,https://lh3.googleusercontent.com/a-/AOh14Gh-1bPLpnws1H28Fu0nmVvJAbIcgbA18dnUqKpO,"This app is the best to schedule my day! Further more, here are some possible features to add! ; a homework option w/ reminder, water reminder, mood tracker, monthly routine, and calendar? Also would like if premium was cheaper :(",5,2,2.9,2020-04-03 00:47:12,"Thank you very much for your suggestions, Amy 👍 The app is still evolving and we'll be adding more improvements progressively 🙂",2020-04-03 08:13:20,most_relevant,com.gmail.jmartindev.timetune +Vivek Kr.,https://lh3.googleusercontent.com/-YmD4AhTnmv4/AAAAAAAAAAI/AAAAAAAAAG0/AAKWJJOw2SYbad8q01Gk3sBo3gP2qf1bfw/photo.jpg,This is a great app to manage schedule. interface and otherthings are perfect. But I wish that the on-screen notification should be like the lock screen popup notification.,5,0,2.9,2020-04-03 16:04:42,"Thanks for your suggestion, Vivek 🙂",2020-04-03 20:51:12,most_relevant,com.gmail.jmartindev.timetune +Sarah Hineman,https://lh3.googleusercontent.com/-zvf0GAMTWKc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMRrE-QyvqLTSvD9GYirDqV0gddGw/photo.jpg,"Really good and super helpful. Because of Covid-19, there's a chance I won't be going to school for a couple months and I wanted an easy to follow routine to factor in my online courses for a minimum of 2 hours. Didn't do just that, but I was actually able to fit in all my chores with more than enough free time to spare. I really recommend the app, and will definitely be telling my friends!",5,86,2.8,2020-03-17 02:45:55,"Thank you very much for your support, Sarah 👍 Stay safe! 🙂",2020-03-17 09:12:08,most_relevant,com.gmail.jmartindev.timetune +amir Abedini,https://lh3.googleusercontent.com/-sJzcOm4RO6g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOU5qL55sDtXfLTJla2CkpenPaL-Q/photo.jpg,Best! But bringing menu bar from side to below Was a big mistake! Bc there is ad bar and then there is menu bar! So its like half of the screen is gone and its so ugly! (Ik ad bar will be gone if we pay) I had to downgrade to 2.7.1 to fix it.. Plz bring back menu bar to where it was so that i can update,5,0,2.7.1,2020-04-02 08:35:38,Thanks for your feedback 👍 We're open to all possibilities for the future.,2020-04-02 08:51:30,most_relevant,com.gmail.jmartindev.timetune +- godsspeed -,https://lh3.googleusercontent.com/a-/AOh14Ggro4HcRSmHTr7zWBCtHfxQgsWUSE7G-Q5QoeteAg,"I just downloaded this app and I can tell that it's very useful and user freindly, I used other apps to organize myself but this one takes the cake and on top of that the developers/owner of this app responds to issues or suggested features unlike other apps I've used, that's the main reason I think this app is great",5,18,2.8,2020-03-25 08:08:55,,,most_relevant,com.gmail.jmartindev.timetune +E. R. Pettus,https://lh3.googleusercontent.com/a-/AOh14Gje5dBVKwYH2UZZ8QbUh-SHanjiRnc-yWP4uzn5AA,"Have you heard of that saying, ""Where did the time go""? Well this app helps me stay on schedule with my day instead of it just disappearing with nothing accomplished. Love the interface and very user friendly.",5,1,2.8,2020-03-25 23:30:35,,,most_relevant,com.gmail.jmartindev.timetune +White Cat,https://lh3.googleusercontent.com/a-/AOh14Gh_J22qYZ8DcI1UjG7cQA--52LxpYAy9rNroWFN,I have tried many time managing apps and I like this one the most!,5,0,2.9,2020-04-02 09:46:41,,,most_relevant,com.gmail.jmartindev.timetune +Uriel Cobo-Cuisana,https://lh3.googleusercontent.com/-G97VJg2Hyo0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMzuZlwFnFL1I7Nv_dMc68a95WPlA/photo.jpg,Great app! Helped me get my time optimized and scheduled. Thank you very much developers!(1 suggestion would be to add auto backup on the cloud through google and so on),5,0,2.8,2020-03-20 22:53:32,Hi! Thanks for your suggestion 👍 That's a possibility we'd like to explore in future versions 🙂,2020-03-21 08:52:12,most_relevant,com.gmail.jmartindev.timetune +edward andika,https://lh3.googleusercontent.com/a-/AOh14GjfZ1E-y7Z54p4enIxvPaOvHcvMA5o4-poXd4c4fQ,"No, what I mean is, in the past it wasnt ""day 1"" instead monday tuesday wednesday and etc, but I'm fine with it being this way, I can adapt to the problem quickly. Nice job, this apps is worth the price, been using it for 2 years",5,8,2.8,2020-03-04 16:19:05,"Hi! Nothing has changed about that. The names of the days will appear when you create a 7-day routine.The descriptions 'Day 1', 'Day 2', etc appear in atypical routines (when the number of days is different than 7). Is that what you were looking for?",2020-03-04 16:07:11,most_relevant,com.gmail.jmartindev.timetune +Bruno Wendt,https://lh3.googleusercontent.com/a-/AOh14GgKlKtp7j2Wziq-PEepGsHpuhHF2UM27hWX9XSB,"Since I linked it with a smart watch I've been able to make the most out of everyday, which is huge since I used to do nothing due to indecision. I've scheduled time for both professional stuff, self-improvement and working through my backlog of movies and games. Super easy to use too, and good backup support (I switched phones and all my routines were imported). Solid app.",5,0,2.9,2020-04-04 02:37:04,,,most_relevant,com.gmail.jmartindev.timetune +Mirek Ch,https://lh3.googleusercontent.com/-UrLcJs2bJU4/AAAAAAAAAAI/AAAAAAAABeU/AAKWJJN2H9vRD1pu1vi_fAfXsHJJUO41Rw/photo.jpg,"Powerfull, easy to use, active blog, doing what promising even as free. Will give it a try and probably gonna buy. I ussually read negative reviews first, so small note - dont understant why people complaints about tutorial. Having it is beneficial. And frankly its quite good.",5,6,2.7.1,2020-02-08 20:38:50,Thank you very much for your feedback 🙂 We're happy to hear you like TimeTune 💗 We have a hunch you'll like the upcoming changes (you can already see them in beta if you like). Cheers!,2020-02-08 23:35:29,most_relevant,com.gmail.jmartindev.timetune +Christian Gill,https://lh3.googleusercontent.com/a-/AOh14Gg5J6NrddrrAALODm4_lncx7IMYSm8HqDeKbn7fAsM,This app has really helped me organize my schedule and block out my routines that don't fit into other time blocks and have smaller increments of type that are hard to see in other calendar apps. I would recommend using for morning and evening routines.,5,11,2.8,2020-03-02 05:24:58,,,most_relevant,com.gmail.jmartindev.timetune +Tobi Lol,https://lh3.googleusercontent.com/a-/AOh14Gjv49o2xcukpBT1YvYdqaGrWNiN03EHCj4xE0VSMA,"Its amazing for both daily routines and for events to put on a calendar and it's very intuitive, so no much n thead about it at all. Also being free it offers alot and more with prob but i use free only.",5,2,2.7.1,2020-02-14 04:30:57,,,most_relevant,com.gmail.jmartindev.timetune +Yogesh Kumar,https://lh3.googleusercontent.com/a-/AOh14GiB8tTVkWMOM4kwZxxDPcDm-XH7tehfHl0GM2kbgQI,"Nice app... Good layout and design.. One request- Add tracking as well to the tasks.. then it will be complete solution Along with setting up tasks I need to track as well which tasks I have done today, weekwise and monthwise",5,5,2.8,2020-02-24 19:06:31,"Hi, thank you very much for your suggestion 👍 This is a possibility we'd like to explore in future updates 🙂",2020-02-24 20:35:06,most_relevant,com.gmail.jmartindev.timetune +Kat Me,https://lh3.googleusercontent.com/a-/AOh14Gh5lz520SD0TTGThRYe6YoeEyRYTE_CxmVxUWlTPQ,If you are looking for a perfect organiser of your time. This is the app for you. Love it and you will too if you are like me and want some organisation in your life. Perfect!,5,1,2.8,2020-03-24 13:13:30,,,most_relevant,com.gmail.jmartindev.timetune +Lynne Shaw,https://lh3.googleusercontent.com/a-/AOh14GgK8O22ZXmcULUE29l8ROHTERlZE-4xV4TYUboMAw,The more I use this app the more I love it. I've been looking for something like this for a long time. One thing: I'd like to be able to sort my routines chronologically rather than alphabetically.,5,12,2.8,2020-02-21 11:19:16,"Thanks for your suggestion, Lynne! 👍🙂",2020-02-21 16:44:58,most_relevant,com.gmail.jmartindev.timetune +Shinsuke Ito,https://lh3.googleusercontent.com/a-/AOh14GgvbfKIqfT8pucRCwKBD_tcZfmSTjcVjXy1nQYVkg,"Simple yet effective app to manage daily and weekly schedules. A tad difficult to learn and setup, but once you get going it feels natural.",5,3,2.7.1,2020-02-03 00:12:33,,,most_relevant,com.gmail.jmartindev.timetune +Karthickeyan raj,https://lh3.googleusercontent.com/a-/AOh14GjCoLB4vtmpMSkawl8wcIaGhQlkP-blp4xCUZldfg,It's amazing! I've started to being more organized after using TimeTune. The best daily routine scheduler and reminder out there! 😊😊,5,0,2.7.1,2020-01-31 11:01:32,,,most_relevant,com.gmail.jmartindev.timetune +Addie Kingsland,https://lh3.googleusercontent.com/a-/AOh14GjimVBJGa8bMTkMm95aNtd0NRmnmrpA2OLWEwzp,Really really good at what it does. Great customization with a really lightweight interface. I can't wait to see where it goes.,5,0,2.7.1,2020-02-01 21:50:27,🙂💗,2020-02-02 08:58:23,most_relevant,com.gmail.jmartindev.timetune +Kim van Bussel,https://lh3.googleusercontent.com/a-/AOh14Gg0NjmzHLbEb17BSqMyz6fmzkLNJFq-554mHn1A,"Love this app, really wanted something to block plan my day, it is flexible, you can make your own tags and events are automatically imported from calendar",5,4,2.7.1,2020-01-23 00:48:59,,,most_relevant,com.gmail.jmartindev.timetune +Braden Scott,https://lh3.googleusercontent.com/a-/AOh14GiWumN2NvayaJLRg8_-Cqy5Qo_cd9pSSEih07knVw,This app os great for planning out your days. Its helped me become more effective at aticking to a plan. The customer service is very quick and helpful!,5,4,2.7.1,2020-01-28 15:57:27,,,most_relevant,com.gmail.jmartindev.timetune +Matthew Childree,https://lh3.googleusercontent.com/-ioleViASgZk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMQiDy9Vzi0KUQcMsb6Rk9cHTAA7g/photo.jpg,"The app has great routine planner, helps me keep organized! It's important to me for someone with ADHD!",5,1,2.8,2020-03-02 03:33:52,,,most_relevant,com.gmail.jmartindev.timetune +Brizzly Phone,https://lh3.googleusercontent.com/a-/AOh14Gie4lkt0zty3cmttmEZEjtrxdm11sDr3kz3c2nnYA,Great app to keep your timing steady.,5,0,2.9.1,2020-04-04 22:11:29,,,most_relevant,com.gmail.jmartindev.timetune +Alidin Abylkasym uulu,https://lh3.googleusercontent.com/-5073r1AFEgQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPuH0aDIc0lBgE7qKUe4j37RK-6nA/photo.jpg,This app is just perfect. It helped me to manage my time so that I didn't waste any of my time. I highly recommend it to others,5,0,2.8,2020-03-11 09:21:25,,,most_relevant,com.gmail.jmartindev.timetune +Kevin Navarro,https://lh3.googleusercontent.com/a-/AOh14GgFtlfUsWMpOfQeD7_nD-xZ0DM5GYiHdVJ-MCosDks,"Very simple interface, definitely helps me be more productive with my time",5,0,2.7.1,2020-02-03 21:49:18,,,most_relevant,com.gmail.jmartindev.timetune +Maduro Kai,https://lh3.googleusercontent.com/-fLFazmYGAvw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMxklVxuZHoDCITG733EmkmIOsE1A/photo.jpg,Pretty cool app..helps a lot to get into your new routine! Recommend to everyone :),5,0,2.7.1,2020-01-28 09:10:50,,,most_relevant,com.gmail.jmartindev.timetune +Karim M. Elsayad 6023,https://lh3.googleusercontent.com/a-/AOh14Gjt_5O8j_fsHiAlzfV1SOeqZ3ySWEX88gEkG-Z_lQ,Amazing app. Has everything I want from a time management app.,5,0,2.8,2020-02-22 21:19:11,,,most_relevant,com.gmail.jmartindev.timetune +Paul Acolour,https://lh3.googleusercontent.com/a-/AOh14GiO8sJNQ-NZeudOx8SM8PWypVzUzJ3b6fJG7ygjOg,Good UI and helpful options. Have recently purchased the pro version for extra functionality,5,0,2.8,2020-02-27 01:25:30,,,most_relevant,com.gmail.jmartindev.timetune +Hugo Rivera,https://lh3.googleusercontent.com/a-/AOh14Gh6wOQEoWd1SBftwTIragh4PxssEJoAnAQ62hAg,Friendly app that help you to optimize your time.,5,0,2.8,2020-03-18 11:04:02,,,most_relevant,com.gmail.jmartindev.timetune +Chanakya Kohli,https://lh3.googleusercontent.com/-AoOTb8-Fces/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNBPB51G25gVniyv7jhTzIGofpkng/photo.jpg,"Great application to organize a schedule, especially procrastinators.",5,0,2.8,2020-03-02 15:59:07,,,most_relevant,com.gmail.jmartindev.timetune +Amy Hatch,https://lh3.googleusercontent.com/a-/AOh14Gi0u4nc1AcLHdendbqjdcjkF1005PssgHW17gSx,Really easy to use and great for calendar blocking,5,0,2.8,2020-03-22 11:21:50,,,most_relevant,com.gmail.jmartindev.timetune +Saisham Mahamuni,https://lh3.googleusercontent.com/-Wi7Wnrw_ic0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM8Hn1TLAhLSUZbsKc2XOoWxaDQZA/photo.jpg,Best timetable app but i want you suggest that upcoming timeline we can see in notification bar it makes app more better for all,5,0,2.7.1,2020-02-17 13:54:21,"Hi. Remember that the app already has the option to show a persistent notification where you can see the current and next activities (Settings / Notifications / Persistent notification). Is that what you were looking for? If you were referring to a different thing, please contact us at timetuneapp@gmail.com and give us more details. Thanks! 🙂",2020-02-17 22:16:17,most_relevant,com.gmail.jmartindev.timetune +Lamyaa Vlogs,https://lh3.googleusercontent.com/a-/AOh14GhdTPKFeFCB6og7_VTdxI9sLPzUe2p0LItINZTy,Best app. It keeps me organise and it's great app. Exactly what I was looking for,5,0,2.8,2020-02-21 15:12:11,,,most_relevant,com.gmail.jmartindev.timetune +Shivesh Kumar,https://lh3.googleusercontent.com/a-/AOh14Gj6BRnVnIo2SJCsEvmuR4BfJV9DdO5D8c_hv_nRyg,Simply one of the best applications that must be in every Time Manager's mobile...,5,0,2.8,2020-03-02 08:31:07,,,most_relevant,com.gmail.jmartindev.timetune +Aaron Lund,https://lh3.googleusercontent.com/-84p3lYArbPI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMnpsmNVXIx2dvAy7q3_MNR8BXQiw/photo.jpg,"Exactly what i was looking for, a way to set up and visualize my weekly routine",5,0,2.8,2020-02-18 00:56:56,,,most_relevant,com.gmail.jmartindev.timetune +Amanda Shako,https://lh3.googleusercontent.com/a-/AOh14GicpjvVThtOTprWYIvwEWEIrwJdUkw7htGR6aQNqA,Fun easy to do Notifications are perfect it's just totally amazing,5,0,2.8,2020-03-27 10:25:56,,,most_relevant,com.gmail.jmartindev.timetune +Kunal Roy,https://lh3.googleusercontent.com/a-/AOh14GglyueIZUgRCFY8v0CoyZTrScbOX1UHl74A0OxY0w,Customise and tailored according to your needs. Best for every class of jobs as well as for students for making their routine. Go for it guys.,5,0,2.8,2020-03-02 09:30:53,,,most_relevant,com.gmail.jmartindev.timetune +Sayed Bhuyan,https://lh3.googleusercontent.com/a-/AOh14GjDGLGsCsxpsp_spJZjOBEebzEFvnCStRuoSj9vJQ,"I was looking for exact same app for a long time. And this is the app. After using this app for about a week, I understood my time and routine better than ever! I was amazed to see that I had more than 40 hours available a week whereas I thought I didn’t have enough time in my life. I strongly recommend to those who wants to get the blessings of a routine. And I suggest the developers that if you can bring a option to view the routine in a printable weekly calendar that would be better. Thanks",5,28,2.7,2020-01-19 13:01:55,"Thanks for your suggestion, Sayed! 👍🙂",2020-01-19 17:53:38,most_relevant,com.gmail.jmartindev.timetune +Chris Morris,https://lh3.googleusercontent.com/-4cVHLkKaBYo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNMSY7I71CxjYV_D4NWBSdBu7IAzg/photo.jpg,Great! intuitive and easy to use.,5,0,2.8,2020-02-21 19:03:51,,,most_relevant,com.gmail.jmartindev.timetune +Veronica Maggie,https://lh3.googleusercontent.com/a-/AOh14Gi-nLEOF-CbjTZvF-8rQJJMI2ESwqbzGMC9-GKUqw,"I like this a lot, ive been searching for this kinda app for so longggg",5,0,2.8,2020-03-29 15:35:03,,,most_relevant,com.gmail.jmartindev.timetune +Shiva Mudunuri,https://lh3.googleusercontent.com/a-/AOh14GiHnSxG2HhAmyCEQ79-PuQeJH83Bi69vqi6d7aaHA,It's one of the best time management app... Just love it.,5,0,2.8,2020-03-11 15:38:15,,,most_relevant,com.gmail.jmartindev.timetune +Calum Fawthrop,https://lh3.googleusercontent.com/a-/AOh14GjtfMkx3R8fVeoWXfmnfMxHQ5MnDcc4qY9p1aAlWQ,"Absolutely fallen in love with this app! Time management is my biggest struggle with ADHD, and the idle notifications reminding me of what I should be doing and what is coming up soon are quickly becoming essential. Hoping the developers will take the statistics of how much time is spent on each tag that's currently in only routines to the tag page as well, for daily and weekly.",5,8,2.6.6,2019-10-13 02:22:02,"Thank you very much for your suggestion, Calum! The app is still growing and we'll be adding improvements progressively. Cheers! 🙂",2019-10-13 07:49:46,most_relevant,com.gmail.jmartindev.timetune +Scoox,https://lh3.googleusercontent.com/a-/AOh14GiRNwrUbYsuU9jYCASjBuDdhAlDINevq8LAbGO61A,"● 2019-10-15 EDIT: Just wanted to update my previous reviews to say that the problem I initially encountered seems to have gone away. I don't know exactly when, or how (maybe thanks to an automatic update of the app itself or Android), but TimeTune notifications now happen reliably and on time, just as you would expect, so I'm now upgrading my initial 4 stars to 5 stars—big thanks to the devs! ● 2018-11-05 EDIT: Already in touch with support and testing. After restarting my device it appears to be working, but I will need to test for a few days before I can confirm ● INITIAL REVIEW: App itself is great, but Android keeps closing it after a few minutes of inactivity. As a result, notifications don't happen. I've followed the troubleshooting steps which I was already familiar with and have worked for other apps. just not for TimeTune. I wish I could fix this, it's such a great app!",5,26,2.6.6,2019-10-15 04:18:32,We're happy to hear that! 🙂 Feel free to contact again for any other issues that might arise. Cheers!,2019-10-14 20:09:09,most_relevant,com.gmail.jmartindev.timetune +Saptarshi Pal,https://lh3.googleusercontent.com/a-/AOh14GjB0Lwyv1pGUPqgQ9tqTKa0wPRKvana3fIImqhg_qs,"This app is exactly what I was searching for. Tried many productivity apps, but this the ideal app for that purpose. It lets you plan your whole day as a schedule and lets you repeat the schedule as a custom routine. Lots of other tools and customizations. Best for procrastinators (like me) and for students who are preparing for exams.",5,48,2.6.8,2019-12-12 07:56:02,,,most_relevant,com.gmail.jmartindev.timetune +Eric Moritz,https://lh3.googleusercontent.com/a-/AOh14Gj_mnjCNupT0CdOszJT4mAzbF6n8bze0DgREypXSg,"I've only been using this app for a week so take this with a gain of salt. I've never been someone who could stick to a routine. This app is great because I can configure it to get in my face about what I'm supposed to be doing. The pop-up, the voice notification, the persistent icon in my status bar work together to get my lazy butt on track.",5,16,2.7,2020-01-04 15:50:33,Hi Eric! Feel free to contact us at timetuneapp@gmail.com to let us know if there's anything we can do to help you stick to your schedule better. Cheers! 🙂,2020-01-04 19:10:31,most_relevant,com.gmail.jmartindev.timetune +Rylie Klover,https://lh3.googleusercontent.com/-rc672fQnNZY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPJUgollUpyS7UtoGAm9gaQJKD9gA/photo.jpg,"Perfect... Simply... Perfect, this app flawless, I give 5 stars to this AMAZING app, it is SO simple, yet advanced, and SO adjustable to YOUR terms and conditions, I LOVE this app and I am NEVER going back to any other schedule 😍",5,2,2.7,2020-01-15 07:58:00,,,most_relevant,com.gmail.jmartindev.timetune +Fernando jaramillo Robles,https://lh3.googleusercontent.com/a-/AOh14GiS45jBEJN6cTNOvtS_bFRVXdMWPDAgRLTBqgiY1A,"I love this app, it is really useful in order to keep a schedule. Still I was wondering if it is possible to add tasks alone of the schedule grid and then choose the day to add it. This will make easier to define the tasks yo wanna meet and then sort them along the week, or add unexpected events to modify a full day schedule.",5,12,2.6.6,2019-10-15 01:05:59,Hi Fernando! Thank you very much for your suggestion 👍 We will evaluate the idea 🔎 Cheers!,2019-10-15 06:33:26,most_relevant,com.gmail.jmartindev.timetune +Muny Styles,https://lh3.googleusercontent.com/a-/AOh14Gh6LdM8egIaw9jZXQi8aWtLskyCzp8_GJvshUhb,The best time managing app + easy to use,5,0,2.8,2020-02-28 09:20:22,,,most_relevant,com.gmail.jmartindev.timetune +alkahi ihakla,https://lh3.googleusercontent.com/a-/AOh14Gi94QmUV8LoMNrF36s3V-sqfc0YB_zx2eMLTHzx,"This app is amazing. I've always liked to create schedules to better plan my day but using other apps haven't worked out for me. This app however is absolutely fantastic, I love the fact that you can create your own tags for each subject and set events with reminders. Good work!",5,2,2.6.6,2019-10-30 03:15:58,Thanks a lot! 👍🙂,2019-10-30 11:00:56,most_relevant,com.gmail.jmartindev.timetune +MV C,https://lh3.googleusercontent.com/a-/AOh14GjZsL8K_b3tFr_TLYLFetGxYZTCVaul9_OSfL_c,I needed some help but the friendly team were quick to assist - thank you guys! I am really amazed at this feature-rich free version. This is a great quality app supplying you with a wealth of options to choose from - all the power is in your hands! Kudos to this passionate team!! TEN STARS!!,5,35,2.6.7,2019-11-10 23:34:10,Thanks a lot! 💗🙂,2019-11-11 00:15:54,most_relevant,com.gmail.jmartindev.timetune +benis smol,https://lh3.googleusercontent.com/a-/AOh14Gg_qp25v-731trmu36XM0_xvtnQe6b0WJaTFFub,"Honestly, pretty simple to use, and I like the simplicity in the design. As well as I haven't seen an ad as of yet, and it doesn't push for money, it's just here to help and for that it deserves much more then a thanks.",5,5,2.6.6,2019-10-16 05:01:31,,,most_relevant,com.gmail.jmartindev.timetune +Mersi V,https://lh3.googleusercontent.com/-ZmXURvheyZA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNb8_CfSRzgogkhQ0HVjloWYa51CA/photo.jpg,I SWEAR IT DESERVES MORE THAN 5 STARS! It TOTALLY deserves infinite stars I LUV this app it really helps me with my exams and studying whilst making me do other things like guitar and daily planning. REALLY LOVE THIS APP! 😗,5,0,2.7.1,2020-01-18 23:40:04,,,most_relevant,com.gmail.jmartindev.timetune +Suman Nath,https://lh3.googleusercontent.com/a-/AOh14GjcMtMfe4BiHTkdLQ51mG0PRRjFm0ct9WLOmR3vSg,Excellent app for time management.,5,0,2.7.1,2020-02-18 02:25:16,,,most_relevant,com.gmail.jmartindev.timetune +Wade Barrett,https://lh3.googleusercontent.com/a-/AOh14Gh7C4keeexHQwWYMjTEpylSYtLe-3YO7Uv9bhEl3A,"This app is great, if you like structure in your life. I love it, give it a try folks.",5,0,2.8,2020-02-25 01:27:04,"Hi, if it's a 1-day routine, you can change the days here: Routines / routine card sub-menu / Repeat. About the setup being time consuming, remember it's a work you only have to do once, then it pays off. But you're right, we're looking for ways to improve that. If you're up for it, contact us by email and we'll study your case. We want to help.",2019-11-24 08:39:26,most_relevant,com.gmail.jmartindev.timetune +sampath yadav,https://lh3.googleusercontent.com/-Ga7XeP8BxqE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN6SaS_YfYugpz2SITXzxk5HaUquw/photo.jpg,"It worked fine at my first installation. When i did a virus scan. Afterwards, reminders or daily routines are not ringing. Please suggest me . Thank you i fixed it. But notification sound is very short.",5,1,2.6.6,2019-11-08 15:11:59,"Hi. When you set up your notifications, you can click on the name of the sound and change it for a longer sound or a repetitive sound. Alternatively, you can click on the 'Custom' button to choose a sound from your personal storage (like a song for example).",2019-11-08 15:32:01,most_relevant,com.gmail.jmartindev.timetune +A. C,https://lh3.googleusercontent.com/a-/AOh14Gj7prpsh_zg_IufiI1JhehybOv3rHx4WQ2Kveyz4Q,"The best app of its kind, it may appear difficult to get the hang of it at first but once you read the Getting started guide you realise how easy it is to use. One of the best app purchases I have made",5,1,2.6.8,2019-12-29 20:36:32,,,most_relevant,com.gmail.jmartindev.timetune +VL,https://lh3.googleusercontent.com/a-/AOh14GjmWFAL6LJu1xXJds7_yDEgJOlHVbwTkiwulXjlIQ,"Simply put: Perfect. The free version is already amazing, I can only imagine how great the premium version is.",5,13,2.7,2020-01-10 20:11:25,,,most_relevant,com.gmail.jmartindev.timetune +Main Acc,https://lh3.googleusercontent.com/a-/AOh14GhzDBtCpPzmn7Yzebwn4UeuPEPapQoFBTTQm92s,"Very good app, to plan your day. I really like it",5,0,2.7.1,2020-01-28 01:13:04,,,most_relevant,com.gmail.jmartindev.timetune +Alyssa Stevens,https://lh3.googleusercontent.com/a-/AOh14Gi7kAYw1MG-FQsg4516nZJqq1SffSKDlDiMtxjaTw,I love the app so much... but I am really hoping that you guys dont get rid of your alarm feature in December because I love that feature so much and I dont want to have to get a new app that has the alarm feature and have to start all over again!,5,2,2.6.6,2019-10-27 23:28:01,"Hi Alyssa! Removing timers has been a difficult decision for us, but you will understand why we are doing it here: https://timetune.app/removing-timers/ In any case, we remain open to all possibilities, even the possibility of bringing timers back again in a future version 🙂",2019-10-28 08:23:14,most_relevant,com.gmail.jmartindev.timetune +Alex,https://lh3.googleusercontent.com/-d00goxQNpPs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMSwIt5Yfe12MSrW2_dDBwQsBPuPQ/photo.jpg,The app is just what I wanted! But I'd be so glad if there's a feature to move all the routine events in time equally. Like if you wake 30 mins late you can move all of the events 30 mins upwards,5,1,2.6.8,2019-12-05 04:13:22,Hi Alex! Thank you very much for your suggestion 👍 We'll add your vote for this feature to our list 📝,2019-12-05 09:32:42,most_relevant,com.gmail.jmartindev.timetune +Ghazal Asgarieh,https://lh3.googleusercontent.com/a-/AOh14GjmIpFpoUxVWtJCQ_QMpu1ZlS7qHNFBydehIUlrYQ,Hi! I've been using this app for a week and I can see how easy it made it for me to get used to my daily routines. Pluse it has a great user experience and interface design!,5,0,2.6.6,2019-10-28 15:42:11,Thanks Ghazal! 👍🙂,2019-10-28 21:05:08,most_relevant,com.gmail.jmartindev.timetune +Teddy Bear,https://lh3.googleusercontent.com/-7u8-VFJjIlk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPopdIJunXEsKuCbbVndTAeoPgZ_Q/photo.jpg,I love it! After all those problems i had with my time i found this great app. It let's me manage my time as well and its so easy to use!,5,0,2.6.6,2019-10-31 16:18:48,,,most_relevant,com.gmail.jmartindev.timetune +TheNewbzz,https://lh3.googleusercontent.com/a-/AOh14GiL5MAOOa2e0xV7YPH2kUWFJ5DSJrFYjVsfZxtVQQ,The user interface is very intuitive. So far I love the up. If the helps me stick to a schedule for a few days I'll buy the pro version. Keep up the good work!!!,5,1,2.6.6,2019-11-09 12:27:11,,,most_relevant,com.gmail.jmartindev.timetune +Alexa AP,https://lh3.googleusercontent.com/a-/AOh14Gg6xZMfuI1w1JobYZ2ToKrxvSsYDFjN2BHVUlpC0A,I LOVE IT It's perfect! I used it in the past and I really like the new aesthetic changes and some additional functions. Still being an awesome app.,5,0,2.6.6,2019-11-09 18:07:48,,,most_relevant,com.gmail.jmartindev.timetune +Krishnanshu Yog,https://lh3.googleusercontent.com/a-/AOh14Gi6k657lV55slZBwaBnKF8VFzLvOCyBLxH_ltbu7YQ,I have buy pro version but it's not showing ..one time the yellow 🌟 changes to red 💓 but after sometime it again changes to 🌟.. totally bad experience.....sorry but after few minutes only after mailing timetune they returned my money lots of love😌😌😌😌😌😌😌😌😌😌😘😘😘😘😘😘😘😘😘😘😘😘😘😘😘😘👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍,5,0,2.7,2020-01-13 20:01:56,,,most_relevant,com.gmail.jmartindev.timetune +Heena Tariq,https://lh3.googleusercontent.com/a-/AOh14GgIouO2_jruZ03H9BIy3OzXU-v77IxcbA76HWlH4w,"Hi, Great app. Just a small thing: I wish I could sync my Outlook Calendar, but only Gmail is present. Otherwise, great!",5,0,2.6.6,2019-10-24 08:54:12,"Thanks for your suggestion, Heena! 👍🙂",2019-10-24 20:08:54,most_relevant,com.gmail.jmartindev.timetune +Mayur Chavda,https://lh3.googleusercontent.com/-SLA0vmmoKGc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOAy3US0ZSSgo0GhzU51ogpcu0Umw/photo.jpg,Nice application for daily rut in Good job editors 😘😊😀,5,0,2.7.1,2020-01-16 20:02:39,,,most_relevant,com.gmail.jmartindev.timetune +B.Sudeep B.Sudeep,https://lh3.googleusercontent.com/a-/AOh14Gho0L9x7D_pIne4dOqYuV3hCtEAHDlYel5IYMmOnQ,It's my most favourite app. Thanks for creating such an amazing app.,5,0,2.8,2020-04-04 04:14:41,,,most_relevant,com.gmail.jmartindev.timetune +Fabian Ariel,https://lh3.googleusercontent.com/a-/AOh14GiMAaY-X49JrEleoYn0yU6TUCayD9QXd4qARTHwfg,"Just what I was looking for! Google calendar is good enough but it doesn't have this, this is what I needed. Now I can see all the hours that I have free during the week.",5,3,2.6.8,2019-11-13 15:28:28,,,most_relevant,com.gmail.jmartindev.timetune +Sarah bjorkman,https://lh3.googleusercontent.com/a-/AOh14GhTJhx2dDGzFsFKm1_YhQ5AId5bpxzOR5I_J_bgRA,Great app with lots of options and they don't ask for money at every turn but truthfully I am looking for something simple. But will definitely recommend.,5,0,2.6.8,2019-11-18 06:01:11,,,most_relevant,com.gmail.jmartindev.timetune +Ultrasound,https://lh3.googleusercontent.com/a-/AOh14GjjMQt2Msgysw0am3wULiZ-4jDhBwAujdk8_gE2Yw,It is a very easy to use app. It has helped me greatly. However you could improve by not removing timers.,5,0,2.6.6,2019-10-22 12:11:12,"Hi! Sorry about the timers. It has been a difficult decision for us, but you will understand why we are doing it here: https://timetune.app/blog/ In any case, we remain open to all possibilities, even the possibility of bringing timers back again in the future 🙂",2019-10-22 20:09:25,most_relevant,com.gmail.jmartindev.timetune +Munem Shahrear Himel,https://lh3.googleusercontent.com/a-/AOh14GjU7970USJps1sH4jQeEc_8g7old0lFhCekeB07,Just awesome...every thing you need in a daily routine..good interface but i wish the i had the programmer option in free.bravo the developer team who made this,5,2,2.6.8,2019-11-17 00:19:24,,,most_relevant,com.gmail.jmartindev.timetune +Redhe Kandhari,https://lh3.googleusercontent.com/a-/AOh14GhJIsHt6zoMAGcyoDLjj-a29c3JzQI6VCKQGyvi,This App is really is the best . It helps me to do everything on time and keeps me organized. This app has really easy set ups too .,5,0,2.6.8,2019-11-12 17:20:37,,,most_relevant,com.gmail.jmartindev.timetune +Alessandro,https://lh3.googleusercontent.com/a-/AOh14GhOmy4LXNozmnOjRuTL3OedeaGJb4KnMs1zmsioaw,Very useful app. How do I get the notifications to disappear automatically once they pop up? I don't want to stay clear them every time. Thank you.,5,0,2.6.8,2019-12-07 09:38:52,"Hi Alessandro. You can change the time for the popup here: Settings / Notifications / Popup window timeout. However, this is only for the pop-up, not the notification on the status bar. We may add more controls in future versions.",2019-12-07 16:12:59,most_relevant,com.gmail.jmartindev.timetune +Jon Gordon,https://lh3.googleusercontent.com/-cVTVtlpjg80/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPQb_ncIo9qiuBF-hpElNGiBYdJEQ/photo.jpg,"Great App, loved the design style, feels great to use, elegant and quick way to construct your day",5,0,2.6.6,2019-10-13 09:15:21,,,most_relevant,com.gmail.jmartindev.timetune +Jessica Keniston,https://lh3.googleusercontent.com/a-/AOh14GgOgS5qYvJBmjKKdYax3MyW4xM9TlYLG81RhuqCzCU,I LOVE how it says what the task is!,5,0,2.8,2020-03-06 03:09:31,,,most_relevant,com.gmail.jmartindev.timetune +Denver Gown,https://lh3.googleusercontent.com/a-/AOh14Gi7fI9QdMKUAfxsSvf1glCn6kTGPBvt32Bwqjpz4g,I cannot recommend this app enough. I was looking for something that couldplan my day out and this ticked every box! Would highly recommend!!,5,1,2.6.8,2019-11-12 21:56:33,,,most_relevant,com.gmail.jmartindev.timetune +Kimai Rosy,https://lh3.googleusercontent.com/-3HLRYG-Qc64/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN_e_XwLBZViKLelmCylqMHKrMDLg/photo.jpg,I think it's great however sometimes I would like a better tutorial like how can I personalize the sound of one item in my routine.,5,5,2.7,2020-01-01 20:12:27,"Hi. When you add a notification to an activity, you can click on the sound name and change it for any other built-in sound or any custom sound. If you cannot find how to do it, contact us at timetuneapp@gmail.com and we'll show you.Thanks.",2020-01-01 20:41:36,most_relevant,com.gmail.jmartindev.timetune +Marta Kuchta,https://lh3.googleusercontent.com/a-/AOh14GhOUnBUc487NGnuXm0JqeYsy2VV9NX71p4TCdrgBA,TimeTune is a great app too keep up with dailu routines. It has many useful options and it's overall great.,5,0,2.6.6,2019-10-13 19:04:31,,,most_relevant,com.gmail.jmartindev.timetune +Gaurav Mata,https://lh3.googleusercontent.com/-O_hjCH2QKss/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOfx65SGrOlcDeK30qOScVd8i-Elw/photo.jpg,Best app for managing time.,5,0,2.7.1,2020-01-27 16:58:45,,,most_relevant,com.gmail.jmartindev.timetune +VIEW THE PAST,https://lh3.googleusercontent.com/a-/AOh14GgKhJssU88MRh-SiY8Mqqrchq63tJiEb3BLbG39kQ,probably the best app for routine day planners.this also have text play voice,5,2,2.7,2020-01-14 09:05:49,,,most_relevant,com.gmail.jmartindev.timetune +Ganesh Gupt,https://lh3.googleusercontent.com/a-/AOh14GhSyt2uejlej1Jb27Em63Vjh1m2dO4uqdGL7QjqWA,Its very good and notify every time by time to do fixed routine,5,0,2.7,2020-01-09 22:38:11,,,most_relevant,com.gmail.jmartindev.timetune +TechAdict & DesignAdict,https://lh3.googleusercontent.com/a-/AOh14GgbTm680o_AWxRqq3U-LXCWF-Oj5Ke2gKcgVqFWkcU,"Great for setting daily habits, tasks and ads your Google calendar events into the timeline",5,0,2.6.6,2019-10-18 06:54:46,,,most_relevant,com.gmail.jmartindev.timetune +Bhagyshree Lichade,https://lh3.googleusercontent.com/-7NnV2RGP2J0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNtMwxGER1fwd6qFk6wvAligMP1vA/photo.jpg,Nice app for time table and reminder,5,0,2.7.1,2020-01-24 02:28:05,,,most_relevant,com.gmail.jmartindev.timetune +Utsav Saha,https://lh3.googleusercontent.com/a-/AOh14Gizq4M63_pzFEFZJqxEYnnROjzPvDO7Df7p9o1p5Q,One of the Simplest yet Best App for time management... Hardworking People...must give it a Try...,5,0,2.6.6,2019-10-23 05:30:03,,,most_relevant,com.gmail.jmartindev.timetune +Binayak Panda,https://lh3.googleusercontent.com/a-/AOh14GjWntY_EeSgGokYVBTwt7geo7wF2bKeXOf2rJgdPQ,This is one of the apps which I would recommend everyone to do check this out!!,5,0,2.7.1,2020-02-07 20:59:42,,,most_relevant,com.gmail.jmartindev.timetune +Steve Reid,https://lh3.googleusercontent.com/-FgLOQLL6RhI/AAAAAAAAAAI/AAAAAAAACpo/AAKWJJOgbPB7EG60NDPSXyKK-at47Ko2Og/photo.jpg,Pretty much exactly what I was looking for. Simple and easy to use.,5,0,2.6.8,2019-12-02 22:21:27,,,most_relevant,com.gmail.jmartindev.timetune +Basudev Yadav,https://lh3.googleusercontent.com/a-/AOh14Ggmtut957VhMpCryt_XSF3W45mFJeuUkXxPTaYEsA,And very concise app for making perfect timetables.,5,0,2.6.6,2019-10-12 00:18:20,,,most_relevant,com.gmail.jmartindev.timetune +Dmitriy Spirihin,https://lh3.googleusercontent.com/a-/AOh14GhLYvJ6CdpAJKCATgr6F1qpsez93SwdD3ReGWPT3A,Useful app Convenient interface,5,0,2.7.1,2020-02-10 08:33:17,,,most_relevant,com.gmail.jmartindev.timetune +lol lol,https://lh3.googleusercontent.com/-sI1Lf1vrb0U/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM8D5gOQWQMfr3DtPR2jLA2UY9AfQ/photo.jpg,Just starting using it but i already LOVE IT!! It is an amazing app and it is so helpful.,5,0,2.6.6,2019-10-25 14:07:54,,,most_relevant,com.gmail.jmartindev.timetune +Quentin Dechauffour,https://lh3.googleusercontent.com/-1kU_UrMOFd8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNMirlO12tCDRdrKm49J5xwEGrXWQ/photo.jpg,Super useful for the lockdown,5,1,2.8,2020-03-23 09:29:27,,,most_relevant,com.gmail.jmartindev.timetune +xRay,https://lh3.googleusercontent.com/a-/AOh14GgsDGTEZMVy1iIaNfB9LXBL1qyJyqF_tJ6EVc8dkOg,Vibration notification doesn't work. Please resolve,5,0,2.6.8,2019-11-28 08:31:56,"Hi, please contact us at timetuneapp@gmail.com, we'll help you find what's happening. Thanks.",2019-11-28 10:36:33,most_relevant,com.gmail.jmartindev.timetune +Thanas K.,https://lh3.googleusercontent.com/-OfngDXAMTxM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPeX1KjnGrqw_0V4WWW596RQfhq3g/photo.jpg,Its a nice app for making routines,5,0,2.8,2020-03-24 08:57:23,,,most_relevant,com.gmail.jmartindev.timetune +Richard Wong,https://lh3.googleusercontent.com/-kp4Bjz0KezA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNYrkLzW5XuRkyIPKpPq5mLbb7hpA/photo.jpg,Simple app. Easy to use.,5,0,2.7.1,2020-02-06 00:53:55,,,most_relevant,com.gmail.jmartindev.timetune +Joey Aguacito,https://lh3.googleusercontent.com/-10N2w60D4vc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOdUY6UTSIUaVPaIDJWpWhWp8_prQ/photo.jpg,Very useful.. as it reminds time discipline,5,0,2.6.6,2019-10-24 21:10:37,,,most_relevant,com.gmail.jmartindev.timetune +eletak11,https://lh3.googleusercontent.com/a-/AOh14GgtWqyMDMmBl1dwHUTJR2WiTZl9xzEFcPMAg7zBKg,Simple and neat,5,0,2.8,2020-03-26 18:02:49,,,most_relevant,com.gmail.jmartindev.timetune +Dipanshu Bisht,https://lh3.googleusercontent.com/-zs8-v_laK-E/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNUIiBq6JuNVkdbdPRus8OHt3a4vw/photo.jpg,Bought the paid version to support the devs for making this awesome app!,5,0,2.7,2020-01-08 12:39:49,,,most_relevant,com.gmail.jmartindev.timetune +Alok Ratn,https://lh3.googleusercontent.com/-kd1culOAhs8/AAAAAAAAAAI/AAAAAAAAACo/AAKWJJOcZSHRbasXtrwryCGnsnbGjhEZ-A/photo.jpg,Best app for time management,5,0,2.7.1,2020-01-28 17:07:22,,,most_relevant,com.gmail.jmartindev.timetune +Julie Hirschy,https://lh3.googleusercontent.com/a-/AOh14GhNa9ZHB-7OIWanWAeE_byn2zyrNkZH6jePWcSBxqU,"So happy with it, helps me with my block scheduling 👌🏻",5,0,2.7.1,2020-01-17 20:18:26,,,most_relevant,com.gmail.jmartindev.timetune +Mohammad Shaakir Bhat,https://lh3.googleusercontent.com/-B-9czwUHIOg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMIoykwn82QEnY7w3mOx393yZJpZw/photo.jpg,Very helpful to organize your days.,5,0,2.6.6,2019-10-12 00:40:09,,,most_relevant,com.gmail.jmartindev.timetune +Reshma Boodhun,https://lh3.googleusercontent.com/-nGOVVRD2TuU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPZb1YMhYDvTHtr7AnSVC_tvKQBhQ/photo.jpg,"To me it is by far the Best ""time planner"" for a daily schedule.",5,0,2.9.2,2020-04-06 17:54:31,,,newest,com.gmail.jmartindev.timetune +Tnrrpg,https://lh3.googleusercontent.com/a-/AOh14GinVNHyObIhEpIyAQr3Vp6oqQN25gs2I206ZJMCZw,Awesome,5,0,,2020-04-06 10:04:49,,,newest,com.gmail.jmartindev.timetune +Nirvadesh Ramkishore,https://lh3.googleusercontent.com/a-/AOh14Gjes9VJRJnJ9-S_hU9jDuWNpNHkoPa0FgqpSP46eE4,Initial setup is hard to comprehend but it's a great tool once you've learnt your way around it (by trial and error). Thanks,5,0,,2020-04-06 08:45:54,"Thanks for your feedback, Nirvadesh 👍 We're working on some improvements to make the app more intuitive 🙂",2020-04-06 10:08:03,newest,com.gmail.jmartindev.timetune +Kinga Wesołowska,https://lh3.googleusercontent.com/a-/AOh14GiwUj3myzdjitnCeh24J9s9LvGiRu34VD7ZmbXHGA,"I really like how this app is working. It's easy to use and routines are very useful. I had little problem and I got a response in one hour, so thank you for the help!",5,0,2.9.1,2020-04-06 07:45:44,"Hi, please wait a while until version 2.9.2 is live for everyone (you can check the number version in Google Play before installing). In version 2.9.2 the problem will not happen anymore. Sorry for the inconvenience.",2020-04-05 17:13:35,newest,com.gmail.jmartindev.timetune +Sonya Duke,https://lh3.googleusercontent.com/a-/AOh14GiSdtLFaWx5uc_cbDUw3tDrQOi-K_hBqx-yGihS,"Great! Love this app, you can organise your timetable and clone events, you can have a weekly cycle, daily cycle or a odd day cycle. Love this!! Great aesthetics as well",5,0,2.9.1,2020-04-06 03:54:39,,,newest,com.gmail.jmartindev.timetune +Milad Ghorbani,https://lh3.googleusercontent.com/a-/AOh14GjtdAYYmuo602IFq_THRJjx5hWRri0uSQEncNPd,This app was exactly what I expected to organise my time. Thanks.,5,0,,2020-04-06 01:11:20,,,newest,com.gmail.jmartindev.timetune +new shOt,https://lh3.googleusercontent.com/-CDMxPsDENuE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPQz0ZybAR_Dbu2acbZ4XZ0nzwn7w/photo.jpg,"It's weird, like i didn't even open the app but the fact they answer criticism and try to improve, based on what's here, is just the type i want.",5,0,2.9.2,2020-04-05 23:25:36,,,newest,com.gmail.jmartindev.timetune +Joshua,https://lh3.googleusercontent.com/a-/AOh14GjPcnogzOSisC79pDqUIrIH43p8qwtZcN7j0hYjuA,"Experience after my time on this app, supper detailed, and incredibly smooth. The best part is how convenient the lay out is. My style and ways of doing things changed right after I hit the OPEN APP BUTTON!",5,0,2.9,2020-04-05 14:28:56,,,newest,com.gmail.jmartindev.timetune +Sean Xie,https://lh3.googleusercontent.com/a-/AOh14GgLML_x19QTg6QHVDPWQnTQcwRsggf4wBclIaMBnFQ,"Love this, exactly what I was looking for. However would be great if there is a web app or app on Mac",5,0,2.9,2020-04-05 10:29:33,"Hi! Thanks for your suggestion, Sean 👍 That's a possibility we'd like to explore in the future, provided the project grows adequately 📈 Cheers! 🙂",2020-04-05 10:53:22,newest,com.gmail.jmartindev.timetune +firda isdianto,https://lh3.googleusercontent.com/a-/AOh14GhAsfTytu6jPB-JAVMqW04osJNt80ybAEXhV6Q,I've been using this app for around 3 or 4 years now. It really helps to keep myself on track. Especially because I'm easily get distracted. The interface is very simple and easy to use.,5,0,2.9.1,2020-04-05 09:40:24,,,newest,com.gmail.jmartindev.timetune +Brizzly Phone,https://lh3.googleusercontent.com/a-/AOh14Gie4lkt0zty3cmttmEZEjtrxdm11sDr3kz3c2nnYA,Great app to keep your timing steady.,5,0,2.9.1,2020-04-04 22:11:29,,,newest,com.gmail.jmartindev.timetune +B.Sudeep B.Sudeep,https://lh3.googleusercontent.com/a-/AOh14Gho0L9x7D_pIne4dOqYuV3hCtEAHDlYel5IYMmOnQ,It's my most favourite app. Thanks for creating such an amazing app.,5,0,2.8,2020-04-04 04:14:41,,,newest,com.gmail.jmartindev.timetune +Bruno Wendt,https://lh3.googleusercontent.com/a-/AOh14GgKlKtp7j2Wziq-PEepGsHpuhHF2UM27hWX9XSB,"Since I linked it with a smart watch I've been able to make the most out of everyday, which is huge since I used to do nothing due to indecision. I've scheduled time for both professional stuff, self-improvement and working through my backlog of movies and games. Super easy to use too, and good backup support (I switched phones and all my routines were imported). Solid app.",5,0,2.9,2020-04-04 02:37:04,,,newest,com.gmail.jmartindev.timetune +AWT,https://lh3.googleusercontent.com/a-/AOh14GgqnnSSL6qFsGNZX1Eg1AMsn27w-RaT3inHmJ9GKw,💪🏼💪🏼,5,0,2.9,2020-04-04 00:50:42,,,newest,com.gmail.jmartindev.timetune +Sasha Mamaev,https://lh3.googleusercontent.com/a-/AOh14GiuBxrgNvsS6spA8kc1DDn9YyqOXgSAYbTtgWc0vq4,Awesome 🌞 app,5,0,2.9,2020-04-03 19:22:35,,,newest,com.gmail.jmartindev.timetune +Vivek Kr.,https://lh3.googleusercontent.com/-YmD4AhTnmv4/AAAAAAAAAAI/AAAAAAAAAG0/AAKWJJOw2SYbad8q01Gk3sBo3gP2qf1bfw/photo.jpg,This is a great app to manage schedule. interface and otherthings are perfect. But I wish that the on-screen notification should be like the lock screen popup notification.,5,0,2.9,2020-04-03 16:04:42,"Thanks for your suggestion, Vivek 🙂",2020-04-03 20:51:12,newest,com.gmail.jmartindev.timetune +shean bennett,https://lh3.googleusercontent.com/a-/AOh14Gi0B_ifbbxP6Zq9yTgYGER4JKxOyKVWuHpGZDD7aA,It would be great if we could push the scheduled events to put them later or sooner,5,0,2.8,2020-04-03 15:11:06,Hi! That's a possibility we're considering for the future of the app 🙂,2020-04-03 20:49:23,newest,com.gmail.jmartindev.timetune +Asam Keping,https://lh3.googleusercontent.com/-vKUZGUHsZBk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO1GwqdnrQtDo0XLUF-umojhZucPQ/photo.jpg,Excellent and terbaik...👍👍👍,5,0,2.9,2020-04-03 11:34:30,,,newest,com.gmail.jmartindev.timetune +sandhya Bagathi,https://lh3.googleusercontent.com/-5I_68v4HdvA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMH6sQVPBwYlMYsgP_AnBeXnuF1EQ/photo.jpg,Yah.. best and very useful aap,5,0,2.8,2020-04-03 05:06:02,,,newest,com.gmail.jmartindev.timetune +Amy Arellano,https://lh3.googleusercontent.com/a-/AOh14Gh-1bPLpnws1H28Fu0nmVvJAbIcgbA18dnUqKpO,"This app is the best to schedule my day! Further more, here are some possible features to add! ; a homework option w/ reminder, water reminder, mood tracker, monthly routine, and calendar? Also would like if premium was cheaper :(",5,2,2.9,2020-04-03 00:47:12,"Thank you very much for your suggestions, Amy 👍 The app is still evolving and we'll be adding more improvements progressively 🙂",2020-04-03 08:13:20,newest,com.gmail.jmartindev.timetune +Farhad Mehryari,https://lh3.googleusercontent.com/a-/AOh14GiLvvk6aUk_jZzMV3-Q19w9-htFEXN4mm40bfYBzw,This is absolutely what I was looking for! It generates my job events Thanks.,5,0,,2020-04-02 18:51:52,,,newest,com.gmail.jmartindev.timetune +Andy Vlog,https://lh3.googleusercontent.com/-L6tBIY-gxtE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOpZt0y-kVgsZZuOBZl0CFO5CDaig/photo.jpg,Very good app!!!!,5,0,,2020-04-02 15:23:04,,,newest,com.gmail.jmartindev.timetune +White Cat,https://lh3.googleusercontent.com/a-/AOh14Gh_J22qYZ8DcI1UjG7cQA--52LxpYAy9rNroWFN,I have tried many time managing apps and I like this one the most!,5,0,2.9,2020-04-02 09:46:41,,,newest,com.gmail.jmartindev.timetune +amir Abedini,https://lh3.googleusercontent.com/-sJzcOm4RO6g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOU5qL55sDtXfLTJla2CkpenPaL-Q/photo.jpg,Best! But bringing menu bar from side to below Was a big mistake! Bc there is ad bar and then there is menu bar! So its like half of the screen is gone and its so ugly! (Ik ad bar will be gone if we pay) I had to downgrade to 2.7.1 to fix it.. Plz bring back menu bar to where it was so that i can update,5,0,2.7.1,2020-04-02 08:35:38,Thanks for your feedback 👍 We're open to all possibilities for the future.,2020-04-02 08:51:30,newest,com.gmail.jmartindev.timetune +Nice Cardoso,https://lh3.googleusercontent.com/-x66JECQhfqg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOLtPJ4UnuOmJP1sPOXse7LYTxQ6Q/photo.jpg,It's helping me a lot to deal with my anxiety ♡♡,5,0,2.8,2020-04-02 03:31:47,,,newest,com.gmail.jmartindev.timetune +ibrarahmed ahmed,https://lh3.googleusercontent.com/a-/AOh14GiTcIRKtuHkpQB5lBUoKmH76WgGa5vVJlbe0_dT,Very nice,5,0,2.9,2020-04-01 17:33:57,,,newest,com.gmail.jmartindev.timetune +Rido Pratama,https://lh3.googleusercontent.com/a-/AOh14Gh28mFXI_Ye1gANWIc0ohhNxq0scQx6BxnJeQov0g,Like the new Schedule page,5,0,2.9,2020-04-01 05:45:34,👍🙂,2020-04-01 08:19:32,newest,com.gmail.jmartindev.timetune +Ritesh Yadav,https://lh3.googleusercontent.com/a-/AOh14Gh5Xe7Ycp-B_qK2QiMuYt5fwl4_53AaB67GS_i8UA,It's really a nice app.,5,0,2.9,2020-03-31 20:31:18,,,newest,com.gmail.jmartindev.timetune +Alireza Mianji,https://lh3.googleusercontent.com/-PYOmzj_XBH4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPMFhcv0zo4ZTuCcMLJT7TqOw94RQ/photo.jpg,Nice,5,0,2.8,2020-03-29 21:47:29,,,newest,com.gmail.jmartindev.timetune +Iris Hamelin,https://lh3.googleusercontent.com/-pyNvGda35ic/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP7GA2-WZCxdTgHI7bllEWWh7uMbg/photo.jpg,This is awesome because the app helps you keep yourself on track. It definetly helps when doing Distance Learning because of COVID-19.,5,0,,2020-03-29 16:42:22,,,newest,com.gmail.jmartindev.timetune +Veronica Maggie,https://lh3.googleusercontent.com/a-/AOh14Gi-nLEOF-CbjTZvF-8rQJJMI2ESwqbzGMC9-GKUqw,"I like this a lot, ive been searching for this kinda app for so longggg",5,0,2.8,2020-03-29 15:35:03,,,newest,com.gmail.jmartindev.timetune +Hardeep Singh Khalsa,https://lh3.googleusercontent.com/-bbleXZuNWRs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOiRpjaSdX-fG0b7TSOgLy9USfl_Q/photo.jpg,Exellent,5,0,2.8,2020-03-29 11:11:49,,,newest,com.gmail.jmartindev.timetune +Marija Djukanovic,https://lh3.googleusercontent.com/a-/AOh14GinCO7O3ad01PtV3IrAtNX-nSRWdprce3dAjfQmjw,Great!,5,0,2.8,2020-03-29 02:03:11,,,newest,com.gmail.jmartindev.timetune +Alessio Giuliani,https://lh3.googleusercontent.com/-H5S1MleHggI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM3iL_wcfxYNDShicgULASZPkO1Bw/photo.jpg,Great App!,5,0,2.8,2020-03-28 18:10:34,,,newest,com.gmail.jmartindev.timetune +Muhammad Bakhsh,https://lh3.googleusercontent.com/a-/AOh14Giley694MCkWJjXCtgtd_zvZC5U4KN1-G3-eDrdDA,After using many other like app finally i decided to return back and use this.very composed app is developed,5,0,2.2,2020-03-28 17:58:38,,,newest,com.gmail.jmartindev.timetune +Shreyas Panicker,https://lh3.googleusercontent.com/-jFqx4f-Y2fI/AAAAAAAAAAI/AAAAAAAAAJI/AAKWJJPB186uFXaqAm-IdZQIeB5cTAvNUA/photo.jpg,Very useful app,5,0,2.8,2020-03-28 05:40:19,,,newest,com.gmail.jmartindev.timetune +Amanda Shako,https://lh3.googleusercontent.com/a-/AOh14GicpjvVThtOTprWYIvwEWEIrwJdUkw7htGR6aQNqA,Fun easy to do Notifications are perfect it's just totally amazing,5,0,2.8,2020-03-27 10:25:56,,,newest,com.gmail.jmartindev.timetune +eletak11,https://lh3.googleusercontent.com/a-/AOh14GgtWqyMDMmBl1dwHUTJR2WiTZl9xzEFcPMAg7zBKg,Simple and neat,5,0,2.8,2020-03-26 18:02:49,,,newest,com.gmail.jmartindev.timetune +E. R. Pettus,https://lh3.googleusercontent.com/a-/AOh14Gje5dBVKwYH2UZZ8QbUh-SHanjiRnc-yWP4uzn5AA,"Have you heard of that saying, ""Where did the time go""? Well this app helps me stay on schedule with my day instead of it just disappearing with nothing accomplished. Love the interface and very user friendly.",5,1,2.8,2020-03-25 23:30:35,,,newest,com.gmail.jmartindev.timetune +GAMING BOY,https://lh3.googleusercontent.com/a-/AOh14Gir9fpflxuV5h-vUjwdgMdhr2uk5wFRyCRXs-Un,Super helpful app. It help me in my study,5,0,,2020-03-25 12:23:28,,,newest,com.gmail.jmartindev.timetune +Abhik Dutta,https://lh3.googleusercontent.com/a-/AOh14Gh7xJbJsfAALfFpiTSwYOUfCBIXOeQ3TzMk_IRBDpM,App is one of the coolest app but some functions i didn't understand properly what's their functionality.,5,0,,2020-03-25 11:50:55,,,newest,com.gmail.jmartindev.timetune +- godsspeed -,https://lh3.googleusercontent.com/a-/AOh14Ggro4HcRSmHTr7zWBCtHfxQgsWUSE7G-Q5QoeteAg,"I just downloaded this app and I can tell that it's very useful and user freindly, I used other apps to organize myself but this one takes the cake and on top of that the developers/owner of this app responds to issues or suggested features unlike other apps I've used, that's the main reason I think this app is great",5,18,2.8,2020-03-25 08:08:55,,,newest,com.gmail.jmartindev.timetune +Kat Me,https://lh3.googleusercontent.com/a-/AOh14Gh5lz520SD0TTGThRYe6YoeEyRYTE_CxmVxUWlTPQ,If you are looking for a perfect organiser of your time. This is the app for you. Love it and you will too if you are like me and want some organisation in your life. Perfect!,5,1,2.8,2020-03-24 13:13:30,,,newest,com.gmail.jmartindev.timetune +Thanas K.,https://lh3.googleusercontent.com/-OfngDXAMTxM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPeX1KjnGrqw_0V4WWW596RQfhq3g/photo.jpg,Its a nice app for making routines,5,0,2.8,2020-03-24 08:57:23,,,newest,com.gmail.jmartindev.timetune +Deborah Alimo,https://lh3.googleusercontent.com/a-/AOh14Gj8H7QiaxYDQ-xg0NKWLYGK4u1sItP0Yx17dQRYHQ,Its very efficient and helpful,5,0,,2020-03-24 02:51:35,,,newest,com.gmail.jmartindev.timetune +Aigoo Trivago,https://lh3.googleusercontent.com/-MpNZIJs1k2A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNUNcxxLFxVoTL9HgfDKOlwF96H6w/photo.jpg,Nice appp verry recommended... Make my life more organized,5,0,,2020-03-23 15:06:53,,,newest,com.gmail.jmartindev.timetune +Quentin Dechauffour,https://lh3.googleusercontent.com/-1kU_UrMOFd8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNMirlO12tCDRdrKm49J5xwEGrXWQ/photo.jpg,Super useful for the lockdown,5,1,2.8,2020-03-23 09:29:27,,,newest,com.gmail.jmartindev.timetune +Onamika Riza,https://lh3.googleusercontent.com/-sAwoGDP0BLA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP4xd4g1hvxsMusJKwHTludXAMrzQ/photo.jpg,nice,5,0,2.8,2020-03-22 18:28:16,,,newest,com.gmail.jmartindev.timetune +Amy Hatch,https://lh3.googleusercontent.com/a-/AOh14Gi0u4nc1AcLHdendbqjdcjkF1005PssgHW17gSx,Really easy to use and great for calendar blocking,5,0,2.8,2020-03-22 11:21:50,,,newest,com.gmail.jmartindev.timetune +esmaeil aliniya,https://lh3.googleusercontent.com/a-/AOh14GgvVpsJrntHOVVjKY6SqeZ5jhZ6yDwsLhjoprRH5g,Good job,5,0,2.8,2020-03-21 22:25:29,,,newest,com.gmail.jmartindev.timetune +Derrick Mossi,https://lh3.googleusercontent.com/a-/AOh14Gj8eI-evxYGLC9UrcSO6wbFnyPfFC034df35Mu1Qw,Helps plan out the day. It's just the best.,5,0,,2020-03-21 20:16:14,,,newest,com.gmail.jmartindev.timetune +Uriel Cobo-Cuisana,https://lh3.googleusercontent.com/-G97VJg2Hyo0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMzuZlwFnFL1I7Nv_dMc68a95WPlA/photo.jpg,Great app! Helped me get my time optimized and scheduled. Thank you very much developers!(1 suggestion would be to add auto backup on the cloud through google and so on),5,0,2.8,2020-03-20 22:53:32,Hi! Thanks for your suggestion 👍 That's a possibility we'd like to explore in future versions 🙂,2020-03-21 08:52:12,newest,com.gmail.jmartindev.timetune +Wei Bin Sia,https://lh3.googleusercontent.com/a-/AOh14GhzUPUWGMr41hHqk4LJrIlVXAN6Vlo7DaBNlELsPg,As per expected,5,0,2.8,2020-03-19 13:20:22,,,newest,com.gmail.jmartindev.timetune +Hugo Rivera,https://lh3.googleusercontent.com/a-/AOh14Gh6wOQEoWd1SBftwTIragh4PxssEJoAnAQ62hAg,Friendly app that help you to optimize your time.,5,0,2.8,2020-03-18 11:04:02,,,newest,com.gmail.jmartindev.timetune +Anurag Khandelwal,https://lh3.googleusercontent.com/a-/AOh14GjTxwv6vbxr9bOplc6TnPklPxyQtwGMEF-6Ij_U,Just the app I need!,5,0,2.8,2020-03-17 18:10:48,,,newest,com.gmail.jmartindev.timetune +Peeky Sike,https://lh3.googleusercontent.com/-Hl23vmca1Ew/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMe3ZWyFNYToFH46VRulojm563WzQ/photo.jpg,Honestly it's not a bad app at all.,5,0,2.8,2020-03-17 12:02:12,,,newest,com.gmail.jmartindev.timetune +Sarah Hineman,https://lh3.googleusercontent.com/-zvf0GAMTWKc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMRrE-QyvqLTSvD9GYirDqV0gddGw/photo.jpg,"Really good and super helpful. Because of Covid-19, there's a chance I won't be going to school for a couple months and I wanted an easy to follow routine to factor in my online courses for a minimum of 2 hours. Didn't do just that, but I was actually able to fit in all my chores with more than enough free time to spare. I really recommend the app, and will definitely be telling my friends!",5,86,2.8,2020-03-17 02:45:55,"Thank you very much for your support, Sarah 👍 Stay safe! 🙂",2020-03-17 09:12:08,newest,com.gmail.jmartindev.timetune +Robo,https://lh3.googleusercontent.com/a-/AOh14GgOCfbSyDkB6hQlRBsi2PnPTIHkWrXbEfYbxDqqAQ,It's a nice app.,5,0,,2020-03-14 23:02:41,,,newest,com.gmail.jmartindev.timetune +Raju pinninti,https://lh3.googleusercontent.com/-B4Q1tnKFG1c/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOuxIeOdvq21AwDRAV8lDlZRPOJqA/photo.jpg,Thop,5,0,,2020-03-12 20:36:50,,,newest,com.gmail.jmartindev.timetune +Shiva Mudunuri,https://lh3.googleusercontent.com/a-/AOh14GiHnSxG2HhAmyCEQ79-PuQeJH83Bi69vqi6d7aaHA,It's one of the best time management app... Just love it.,5,0,2.8,2020-03-11 15:38:15,,,newest,com.gmail.jmartindev.timetune +Alidin Abylkasym uulu,https://lh3.googleusercontent.com/-5073r1AFEgQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPuH0aDIc0lBgE7qKUe4j37RK-6nA/photo.jpg,This app is just perfect. It helped me to manage my time so that I didn't waste any of my time. I highly recommend it to others,5,0,2.8,2020-03-11 09:21:25,,,newest,com.gmail.jmartindev.timetune +Jay Shankar,https://lh3.googleusercontent.com/a-/AOh14Gjw3DI83GDbQUueBXXJX5ZtarF1r1EXAdDs_uOxtTo,Overall amazing.. pls guide me how to amend a single day activity,5,0,2.8,2020-03-10 06:20:58,Hi Jay! Could you contact us at timetuneapp@gmail.com and give us an example of what you need? Thanks! 🙂,2020-03-10 09:00:14,newest,com.gmail.jmartindev.timetune +kashish bhardwaj,https://lh3.googleusercontent.com/-w60G6O2XP2c/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOfEfaUky6IgqTrBl7UCKMbUWoRuA/photo.jpg,Bestestestestestest,5,0,2.8,2020-03-08 13:29:48,,,newest,com.gmail.jmartindev.timetune +Nicoya Si,https://lh3.googleusercontent.com/-rLVvNgTkrCY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOQiDjehPOktHMw3XmqBjmrn3-JAg/photo.jpg,Love it it only thing lacking is just some ideas to motivate me what should i do,5,0,,2020-03-07 10:44:42,,,newest,com.gmail.jmartindev.timetune +Jessica Keniston,https://lh3.googleusercontent.com/a-/AOh14GgOgS5qYvJBmjKKdYax3MyW4xM9TlYLG81RhuqCzCU,I LOVE how it says what the task is!,5,0,2.8,2020-03-06 03:09:31,,,newest,com.gmail.jmartindev.timetune +LASkAR DesigNers,https://lh3.googleusercontent.com/a-/AOh14GjvhcPrIp48Tohwo9SIjRxl9rDYjvm1PGVLlmNKow,I gave 5* to this App in the past. But new updated routine list is so unsatisfactory. A lot of scrolling. Older style was better.,5,0,2.8,2020-03-04 19:28:10,"Hi, thank you very much for your feedback. We're currently gathering opinions about the new interface in order to make decisions.",2018-10-09 19:53:22,newest,com.gmail.jmartindev.timetune +Eileen Klein,https://lh3.googleusercontent.com/-fif6MPMheUc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMxvCQrsmpcdzTgHxVJJWZtg-U5Qg/photo.jpg,Great way to keep track with voice prompts as reminders,5,0,,2020-03-04 17:58:10,,,newest,com.gmail.jmartindev.timetune +edward andika,https://lh3.googleusercontent.com/a-/AOh14GjfZ1E-y7Z54p4enIxvPaOvHcvMA5o4-poXd4c4fQ,"No, what I mean is, in the past it wasnt ""day 1"" instead monday tuesday wednesday and etc, but I'm fine with it being this way, I can adapt to the problem quickly. Nice job, this apps is worth the price, been using it for 2 years",5,8,2.8,2020-03-04 16:19:05,"Hi! Nothing has changed about that. The names of the days will appear when you create a 7-day routine.The descriptions 'Day 1', 'Day 2', etc appear in atypical routines (when the number of days is different than 7). Is that what you were looking for?",2020-03-04 16:07:11,newest,com.gmail.jmartindev.timetune +panashe tizvone,https://lh3.googleusercontent.com/a-/AOh14GjqoQGFzW2WuMvFiMIBI3-dHwMALMoPFyiJmf8O,Good habit tracker,5,0,2.8,2020-03-04 07:26:17,,,newest,com.gmail.jmartindev.timetune +Ruby Mentis,https://lh3.googleusercontent.com/a-/AOh14GhshUSYTgV-dr-84D_XN97fE4Twz5gPZfOk55Lw,It is awesome. Definitely recommend 💜,5,0,2.8,2020-03-03 09:19:42,,,newest,com.gmail.jmartindev.timetune +Shivputra Neelakandan,https://lh3.googleusercontent.com/a-/AOh14GgTofPEyPz6R5kWNLcs24rlX0c_uqIt1xriK2NvRQ,The only best time scheduler in play store.,5,0,2.8,2020-03-03 03:40:07,,,newest,com.gmail.jmartindev.timetune +Chanakya Kohli,https://lh3.googleusercontent.com/-AoOTb8-Fces/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNBPB51G25gVniyv7jhTzIGofpkng/photo.jpg,"Great application to organize a schedule, especially procrastinators.",5,0,2.8,2020-03-02 15:59:07,,,newest,com.gmail.jmartindev.timetune +Kunal Roy,https://lh3.googleusercontent.com/a-/AOh14GglyueIZUgRCFY8v0CoyZTrScbOX1UHl74A0OxY0w,Customise and tailored according to your needs. Best for every class of jobs as well as for students for making their routine. Go for it guys.,5,0,2.8,2020-03-02 09:30:53,,,newest,com.gmail.jmartindev.timetune +Ryan Nourbaran,https://lh3.googleusercontent.com/-vhQLgUUy-WI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPqKeB18J_uIHt-Arlow5-U_pwj3w/photo.jpg,Very well made and easy to use,5,0,,2020-03-02 08:47:19,,,newest,com.gmail.jmartindev.timetune +Shivesh Kumar,https://lh3.googleusercontent.com/a-/AOh14Gj6BRnVnIo2SJCsEvmuR4BfJV9DdO5D8c_hv_nRyg,Simply one of the best applications that must be in every Time Manager's mobile...,5,0,2.8,2020-03-02 08:31:07,,,newest,com.gmail.jmartindev.timetune +Christian Gill,https://lh3.googleusercontent.com/a-/AOh14Gg5J6NrddrrAALODm4_lncx7IMYSm8HqDeKbn7fAsM,This app has really helped me organize my schedule and block out my routines that don't fit into other time blocks and have smaller increments of type that are hard to see in other calendar apps. I would recommend using for morning and evening routines.,5,11,2.8,2020-03-02 05:24:58,,,newest,com.gmail.jmartindev.timetune +Matthew Childree,https://lh3.googleusercontent.com/-ioleViASgZk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMQiDy9Vzi0KUQcMsb6Rk9cHTAA7g/photo.jpg,"The app has great routine planner, helps me keep organized! It's important to me for someone with ADHD!",5,1,2.8,2020-03-02 03:33:52,,,newest,com.gmail.jmartindev.timetune +Sean Foster,https://lh3.googleusercontent.com/a-/AOh14Gj3bps10ajBgx89XeiP-PV_C242BHJXIcUYoWVTKA,"Perfect! Time Tune is simple, customizable and incredibly useful! I've been searching for an app like this for a very, very long time! Thank you!",5,0,,2020-03-01 19:46:52,,,newest,com.gmail.jmartindev.timetune +jayakrishnan nair,https://lh3.googleusercontent.com/a-/AOh14Gidjoh3qAFK59zxUF8nC50TuxVL04b8RrBYTOw68A,One of the apps in my toolbox. Manages my time well. Has good features. Thanks for the developers,5,0,2.8,2020-03-01 18:37:45,,,newest,com.gmail.jmartindev.timetune +Muny Styles,https://lh3.googleusercontent.com/a-/AOh14Gh6LdM8egIaw9jZXQi8aWtLskyCzp8_GJvshUhb,The best time managing app + easy to use,5,0,2.8,2020-02-28 09:20:22,,,newest,com.gmail.jmartindev.timetune +Paul Acolour,https://lh3.googleusercontent.com/a-/AOh14GiO8sJNQ-NZeudOx8SM8PWypVzUzJ3b6fJG7ygjOg,Good UI and helpful options. Have recently purchased the pro version for extra functionality,5,0,2.8,2020-02-27 01:25:30,,,newest,com.gmail.jmartindev.timetune +Alik Hakhverdyan,https://lh3.googleusercontent.com/a-/AOh14GiaON1BlkiF1toI3UcEnU51FyA2G8lY0qCPuEBSDg,Nicest programm for planning your week,5,0,2.8,2020-02-26 20:50:12,,,newest,com.gmail.jmartindev.timetune +Wade Barrett,https://lh3.googleusercontent.com/a-/AOh14Gh7C4keeexHQwWYMjTEpylSYtLe-3YO7Uv9bhEl3A,"This app is great, if you like structure in your life. I love it, give it a try folks.",5,0,2.8,2020-02-25 01:27:04,"Hi, if it's a 1-day routine, you can change the days here: Routines / routine card sub-menu / Repeat. About the setup being time consuming, remember it's a work you only have to do once, then it pays off. But you're right, we're looking for ways to improve that. If you're up for it, contact us by email and we'll study your case. We want to help.",2019-11-24 08:39:26,newest,com.gmail.jmartindev.timetune +Yogesh Kumar,https://lh3.googleusercontent.com/a-/AOh14GiB8tTVkWMOM4kwZxxDPcDm-XH7tehfHl0GM2kbgQI,"Nice app... Good layout and design.. One request- Add tracking as well to the tasks.. then it will be complete solution Along with setting up tasks I need to track as well which tasks I have done today, weekwise and monthwise",5,5,2.8,2020-02-24 19:06:31,"Hi, thank you very much for your suggestion 👍 This is a possibility we'd like to explore in future updates 🙂",2020-02-24 20:35:06,newest,com.gmail.jmartindev.timetune +Vimal Ashok,https://lh3.googleusercontent.com/a-/AOh14GggntcNTNny1Wv2W7HWDsr9LhcoeT9TrqE_X8Rp,It helps me,5,0,2.8,2020-02-24 12:22:49,,,newest,com.gmail.jmartindev.timetune +abdelkader ayedi,https://lh3.googleusercontent.com/a-/AOh14GjF-5P8GLlnFfhJMDhOsj9jr2hDq7fHo2H_Y9bA4UY,Nice app,5,0,2.8,2020-02-23 21:01:34,,,newest,com.gmail.jmartindev.timetune +Karim M. Elsayad 6023,https://lh3.googleusercontent.com/a-/AOh14Gjt_5O8j_fsHiAlzfV1SOeqZ3ySWEX88gEkG-Z_lQ,Amazing app. Has everything I want from a time management app.,5,0,2.8,2020-02-22 21:19:11,,,newest,com.gmail.jmartindev.timetune +Chris Morris,https://lh3.googleusercontent.com/-4cVHLkKaBYo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNMSY7I71CxjYV_D4NWBSdBu7IAzg/photo.jpg,Great! intuitive and easy to use.,5,0,2.8,2020-02-21 19:03:51,,,newest,com.gmail.jmartindev.timetune +Lamyaa Vlogs,https://lh3.googleusercontent.com/a-/AOh14GhdTPKFeFCB6og7_VTdxI9sLPzUe2p0LItINZTy,Best app. It keeps me organise and it's great app. Exactly what I was looking for,5,0,2.8,2020-02-21 15:12:11,,,newest,com.gmail.jmartindev.timetune +Lynne Shaw,https://lh3.googleusercontent.com/a-/AOh14GgK8O22ZXmcULUE29l8ROHTERlZE-4xV4TYUboMAw,The more I use this app the more I love it. I've been looking for something like this for a long time. One thing: I'd like to be able to sort my routines chronologically rather than alphabetically.,5,12,2.8,2020-02-21 11:19:16,"Thanks for your suggestion, Lynne! 👍🙂",2020-02-21 16:44:58,newest,com.gmail.jmartindev.timetune +Eduardo Diodetti,https://lh3.googleusercontent.com/a-/AOh14GjnIZhuZ5aY0TIgovKVtHJHxdEBVSJp1s5Zez7j_A,"MUITO ÚTIL, em poucas palavras é o que esse app é",5,0,2.8,2020-02-20 22:28:30,,,newest,com.gmail.jmartindev.timetune +Anil Reddy,https://lh3.googleusercontent.com/a-/AOh14Giv2erRSFH5MeUnCzsbwvNOLPS0sG5EGbNmzNKl,"Perfect app which I was looking for a long time. Thank god it provides routine summary. But if I follow different routines for different days, I can't find how much time I spent for a particular activity in a particular period of time. Please add statistics for the past days with filters having duration like for last 1 week or past 1 month or for a year or from a selected day to till date etc. Please bring this feature in upcoming updates, so that I will help us a lot",5,0,,2020-02-20 10:18:58,"Hi! Thank you very much for your suggestion 👍 Indeed, this is a feature we'd like to add in future versions 🙂 Stay tuned for changes.",2020-02-20 11:11:41,newest,com.gmail.jmartindev.timetune +faith,https://lh3.googleusercontent.com/a-/AOh14GgtElNaXapus_r5oH4bg6-PD963kn1468grQ0_1cw,Very good app,5,0,2.8,2020-02-20 03:00:43,,,newest,com.gmail.jmartindev.timetune +Mohan Singh Rawat,https://lh3.googleusercontent.com/a-/AOh14GjXct4BvUNJBpr8tsKrMATStxlOkuc0hrHPn7wi2g,Hi seems a good app to me for India this will cost 200 . Is it yearly cost or for lifetime .please let me know,5,0,2.7.1,2020-02-18 17:24:15,"Hi, the payment is for lifetime 🙂",2020-02-18 21:28:49,newest,com.gmail.jmartindev.timetune +Suman Nath,https://lh3.googleusercontent.com/a-/AOh14GjcMtMfe4BiHTkdLQ51mG0PRRjFm0ct9WLOmR3vSg,Excellent app for time management.,5,0,2.7.1,2020-02-18 02:25:16,,,newest,com.gmail.jmartindev.timetune +Aaron Lund,https://lh3.googleusercontent.com/-84p3lYArbPI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMnpsmNVXIx2dvAy7q3_MNR8BXQiw/photo.jpg,"Exactly what i was looking for, a way to set up and visualize my weekly routine",5,0,2.8,2020-02-18 00:56:56,,,newest,com.gmail.jmartindev.timetune +Ferbks,https://lh3.googleusercontent.com/a-/AOh14GjSIgNfCpfqHLFzc7vXRCTxgRc2buY2PWCaZ5qwkw,"Um app muito bom com várias atividades já prontas e com possibilidade de personalização de atividades. A única coisa ruim é a notificação. De você não estiver com o celular na mão ou muito perto de você, você provavelmente não vai ver a notificação (só coloco a vibração). Tirando isso é perfeito.",5,0,2.8,2020-02-17 22:21:25,,,newest,com.gmail.jmartindev.timetune +Saisham Mahamuni,https://lh3.googleusercontent.com/-Wi7Wnrw_ic0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM8Hn1TLAhLSUZbsKc2XOoWxaDQZA/photo.jpg,Best timetable app but i want you suggest that upcoming timeline we can see in notification bar it makes app more better for all,5,0,2.7.1,2020-02-17 13:54:21,"Hi. Remember that the app already has the option to show a persistent notification where you can see the current and next activities (Settings / Notifications / Persistent notification). Is that what you were looking for? If you were referring to a different thing, please contact us at timetuneapp@gmail.com and give us more details. Thanks! 🙂",2020-02-17 22:16:17,newest,com.gmail.jmartindev.timetune +Purva,https://lh3.googleusercontent.com/a-/AOh14Gj4YNVyDbZuMAEq67XPWQDl5mNmiQPZK1PLMkhrZUw,"It's all great. I just love it. It sets my Schedule, Timetable, Reminders so perfectly fine. We can adjust it however we want to.",5,0,2.7.1,2020-02-16 13:48:05,Hi. You will find generic instructions for Oppo here: https://timetune.center/troubleshooting/#brands But remember that every device is different and your specific model may have additional settings that need configuration.,2018-11-14 15:18:37,newest,com.gmail.jmartindev.timetune +Sime Arsov,https://lh3.googleusercontent.com/a-/AOh14GjbZhSEP0SdRaw8tW2AxUd5HY38y1WZezgvijNT,"Well, I downloaded it, liked it and bought it. It didnt disappoint me after a long time of usage. The one and only app I have bought and probably ever will buy. Thank you.",5,0,2.7.1,2020-02-14 14:46:23,"Hi! We're really glad to know that you like TimeTune 😃 You're right about the widget, we'll try to find a way to differentiate the days better. Have a great day! 😉",2018-09-25 20:26:52,newest,com.gmail.jmartindev.timetune +Amanda C,https://lh3.googleusercontent.com/-bxxnJt3lGwY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPKWUC2q8HeDTJFVc1soS6Byu96PA/photo.jpg,"Update: After I read the reply I redownloaded this app. Waste of $4.25! It's NOT WORTH ANY AMOUNT OF MONEY! Not a lot of extras to charge money AND it's only cute on a computer. The ""lists"" are not very easy to make and I never did find the ""meal plan"" or journal parts. The goal part is not on the app. Any.do is FREE and a lot easier for lists with reminders and also includes a calendar. Not worth the cost. Yeah it's cute but not as easy to use as other free calendars. Pretty disappointed...",1,3,1.2.13,2020-01-29 02:33:04,"Hi again Amanda! We are sorry that you are having a frustrating experience. Goals, tasks, and meals are located below the calendar views when you scroll down, but we are more than happy to explain further as well as provide insight into using our list function. Feel free to email us at hello@artfulagenda.com.",2020-01-29 17:22:47,most_relevant,com.artfulagenda.app +Jennifer Counts,https://lh3.googleusercontent.com/-bmrULqJ6fq8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO8zQ_31xZ-dc_oR5tLLED8jtudiw/photo.jpg,"I did the free trial. This planner does NOT have push notifications. You can set up your events and appointments, even make them reoccurring, but Artful Agenda App will NOT remind you or notify you. What good is a digital planner if it does not have push notifications. If I am going to pay for an app, it should at least have most of the features a free app has.",1,9,1.2.16,2020-02-27 04:38:25,,,most_relevant,com.artfulagenda.app +Lauren Wickert,https://lh3.googleusercontent.com/a-/AOh14GjtdadCCRhoQvYCZtBCuOzVsJZJlU-xVvFP-Fo5Rg,only option is paid subsctiption app? No thanks. I can't constantly pay for apps within my budget so I'd much rather have the option to use a version with ads.,1,29,1.2.14,2020-01-31 20:44:35,,,most_relevant,com.artfulagenda.app +Karleen Jung,https://lh3.googleusercontent.com/-La5oPKn6yFo/AAAAAAAAAAI/AAAAAAAAGYk/AAKWJJO1GXSI9a_Ja26c0s3LYHlS-SO7Uw/photo.jpg,"There's one thing that makes me crazy about apps. It's when their developers don't tell you up front what the cost is of after the free trial. So, I won't be trying this as much as I'd like to.",1,4,1.2.17,2020-03-06 02:41:10,,,most_relevant,com.artfulagenda.app +Jacquelyn Sinclair,https://lh3.googleusercontent.com/a-/AOh14Ggu4HhxPDtqBMqpYoHUPkeHrDVX21T4xHBW5hRD,My events show up at the wrong time in my calendar even when they've been manually entered. What's the point of a planner that doest let you plan.,1,1,1.2.15,2020-02-13 17:55:26,,,most_relevant,com.artfulagenda.app +Holly T,https://lh3.googleusercontent.com/-pjbWbJx6Yug/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMONW3uV5j66l8NxgqXZjWeHkyi3w/photo.jpg,App install page says nothing about it being a free trial for 2 weeks. So you have to pay to use this app. This is not disclosed on the app page from which you initiate install.,1,3,1.2.12,2019-12-29 03:54:11,Hi Holly! Our install page does clearly state that this app requires a paid subscription.,2020-01-16 22:29:06,most_relevant,com.artfulagenda.app +Andrea Hamud,https://lh3.googleusercontent.com/a-/AOh14Gi3ojefFjLYjtSvQIcQGSorFFTCOhHP7CQY9JC5,Terrible! I transferred all my lists from Google to this app do they would all be in one place and they didn't save! So beyond frustrating.,1,3,1.2.12,2019-12-31 04:15:52,"Hi Andrea! Our tech support team would love to help you with this issue. Please submit a ticket through the app or email us at hello@artfulagenda.com. Our list tab is one of our core functions, and we are confident we can troubleshoot this issue for you!",2020-01-16 22:27:50,most_relevant,com.artfulagenda.app +Gina Stone,https://lh3.googleusercontent.com/a-/AOh14GgplX9u3xOQwIYcWgt3d41EY5taVKosN738YZs1,"I downloaded this after seeing someone advertise it. Looked cool so I figured try it out, right? Until I downloaded and it prompted me for a subscription. Lady you are nuts. People rather by the paper agenda at the store for cheaper. You do not see the full texture of the book, it's an online planner on top of it. I'm not paying you for that. I downloaded a FREE calendar that does the exact same thing. Terrible marketing skills.",1,1,,2019-11-26 14:30:48,"Hi Gina! Our subscription gives you access to all versions of Artful Agenda, including the desktop version that looks like an open book. We encourage you to check that out! Many of our users find that our handwriting options, stickers, and cover designs make this a great alternative to a paper planner that they are willing to pay for.",2020-01-16 22:33:23,most_relevant,com.artfulagenda.app +Susie Cox,https://lh3.googleusercontent.com/a-/AOh14GiC7FHW9baQ-Js5D8M0m6gfcJfcbBigWckDCrzs3g,"This app is a total rip-off! I stupidly paid for the one-time subscription of $35.00, had the app less than one hour. The print was so tiny I could barely see it. A lesson learned the hard way...no more app subscriptions for me. Users beware! Forewarned is forarmed. Hang on to your wallets if you try out this app!",1,3,,2019-09-07 16:20:18,"Hi Susie! We're so sorry you experienced an issue! Users are not charged until the completion of their free trial. If you had any trouble cancelling, you can email hello@artfulagenda.com and we would be glad to assist.",2020-01-27 18:25:32,most_relevant,com.artfulagenda.app +Brad Burgau,https://lh3.googleusercontent.com/a-/AOh14GiW1xH-PfT-8uuvAaPiQLreEgl4447GEUPdVSZxtWg,"SLOW on laptop, does not sync with website. No stickers on app, just laptop. I set up my calander on my ohone, then went to desktop. I can't open up my calander unlesss I give payment info on laptop. I already set up payment in Google Play. And to get to that screen takes a LONG time.",1,14,1.2.3,2019-10-04 21:07:58,"Hi Brad! Thank you for the feedback! We have recently released an updated version of the app that should eliminate this problem. If you do experience anything like this again, please submit a ticket through the app or reach out via hello@artfulagenda.com. Our dedicated tech support team will treat your ticket with high priority. ",2020-01-27 18:29:49,most_relevant,com.artfulagenda.app +everything blue,https://lh3.googleusercontent.com/a-/AOh14GidT5gJUWwKXUQ2yZ3QuoxKycbBf1S9gBISEIKOtw,could you make an option to not stop the trial because i dont think some people want to do the trial and it doesn't mention that before you download the app and when you do you guys get paid.,1,0,,2019-10-25 15:13:07,Hi everything blue! We apologize for any confusion. Our store listing clearly states that this app requires a paid subscription after the free trial.,2020-01-16 22:37:44,most_relevant,com.artfulagenda.app +Stacey Lee-Jenkins,https://lh3.googleusercontent.com/a-/AOh14GigLPMzcgVD2z9p7GlCRiUFFNwubEMqhwI6U1Lgzo4,Doesn't work. Error messages appear everywhere when I open the app.,1,14,1.1.2,2019-07-08 20:18:06,"Hi Stacey! We are so sorry you experienced this issue. We have recently released an updated version of the app that should eliminate this problem. If you do experience anything like this again, please submit a ticket through the app or reach out via hello@artfulagenda.com. Our dedicated tech support team will treat your ticket with high priority. ",2020-01-27 18:21:05,most_relevant,com.artfulagenda.app +Lisa G,https://lh3.googleusercontent.com/a-/AOh14Gg6Er8urireM0wTXpmoDMcUPftGxC9Xg4Ry4MgOaA,You can't even try it out. They are automatically asking you to pick a subscriber plan before you can even see a calendar or anything.,1,5,1.2.3,2019-10-02 02:15:37,Hi G! Thank you for your review! We do not charge customers until the completion of their free trial. We encourage you to pick a plan to try it out!,2020-01-27 18:28:29,most_relevant,com.artfulagenda.app +Rin,https://lh3.googleusercontent.com/a-/AOh14GjdQcMtensveGFGAVCQV_Q7iJC90csOMRZSZiHwlA,It wouldn't let me try the app. It just told me to subscribe.,1,1,,2019-10-24 21:04:51,Hi Rin! We do not charge customers until the completion of their free trial. We encourage you to pick a plan to try it out!,2020-01-16 22:39:05,most_relevant,com.artfulagenda.app +Lisa Johnson,https://lh3.googleusercontent.com/-GD9Kg9mcuik/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMo_WF1ZEjth5F8Qn0uRBk6Be9ryw/photo.jpg,Impossible to use.,1,0,1.2.16,2020-02-26 20:31:06,,,most_relevant,com.artfulagenda.app +Rebecca Stotts,https://lh3.googleusercontent.com/-XyiTFLvvFpg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNjxQ7Yr-RUlIXecxhjBPYwc7E_gw/photo.jpg,This is a pay to play calendar only,1,2,1.2.1,2019-09-12 21:53:51,Hi Rebecca! We apologize for any confusion. Our store listing clearly states that this app requires a paid subscription after the free trial.,2020-01-27 18:26:13,most_relevant,com.artfulagenda.app +Y0ur_Mockingjay,https://lh3.googleusercontent.com/a-/AOh14GgfixsoalWBQlt745uMJ2xZV-T9_UuUpeL_tq3ZLOo,"If this was free, yeah I'd totally use this. Who honestly wants to pay to keep track of your life? Wth?",1,0,,2020-02-12 02:51:45,,,most_relevant,com.artfulagenda.app +Hadiyah Lynch,https://lh3.googleusercontent.com/-4fLk5UAfUe4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO-oUTDsKn70CSvaZALakTn3M3zww/photo.jpg,always freezing,1,1,1.0.1,2019-04-01 02:09:55,"Hi Hadiyah! Our app is currently in beta testing. We placed it in the app store so that our beta testers would be able to easily access it, but it's not yet bug free and ready for everyone to use. We can be reached at hello@artfulagenda.com and would appreciate the opportunity to remedy this issue for you. We hope to hear from you!",2019-04-01 18:16:23,most_relevant,com.artfulagenda.app +Karleen Jung,https://lh3.googleusercontent.com/-La5oPKn6yFo/AAAAAAAAAAI/AAAAAAAAGYk/AAKWJJO1GXSI9a_Ja26c0s3LYHlS-SO7Uw/photo.jpg,"There's one thing that makes me crazy about apps. It's when their developers don't tell you up front what the cost is of after the free trial. So, I won't be trying this as much as I'd like to.",1,4,1.2.17,2020-03-06 02:41:10,,,newest,com.artfulagenda.app +Jennifer Counts,https://lh3.googleusercontent.com/-bmrULqJ6fq8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO8zQ_31xZ-dc_oR5tLLED8jtudiw/photo.jpg,"I did the free trial. This planner does NOT have push notifications. You can set up your events and appointments, even make them reoccurring, but Artful Agenda App will NOT remind you or notify you. What good is a digital planner if it does not have push notifications. If I am going to pay for an app, it should at least have most of the features a free app has.",1,9,1.2.16,2020-02-27 04:38:25,,,newest,com.artfulagenda.app +Lisa Johnson,https://lh3.googleusercontent.com/-GD9Kg9mcuik/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMo_WF1ZEjth5F8Qn0uRBk6Be9ryw/photo.jpg,Impossible to use.,1,0,1.2.16,2020-02-26 20:31:06,,,newest,com.artfulagenda.app +Jacquelyn Sinclair,https://lh3.googleusercontent.com/a-/AOh14Ggu4HhxPDtqBMqpYoHUPkeHrDVX21T4xHBW5hRD,My events show up at the wrong time in my calendar even when they've been manually entered. What's the point of a planner that doest let you plan.,1,1,1.2.15,2020-02-13 17:55:26,,,newest,com.artfulagenda.app +Y0ur_Mockingjay,https://lh3.googleusercontent.com/a-/AOh14GgfixsoalWBQlt745uMJ2xZV-T9_UuUpeL_tq3ZLOo,"If this was free, yeah I'd totally use this. Who honestly wants to pay to keep track of your life? Wth?",1,0,,2020-02-12 02:51:45,,,newest,com.artfulagenda.app +Lauren Wickert,https://lh3.googleusercontent.com/a-/AOh14GjtdadCCRhoQvYCZtBCuOzVsJZJlU-xVvFP-Fo5Rg,only option is paid subsctiption app? No thanks. I can't constantly pay for apps within my budget so I'd much rather have the option to use a version with ads.,1,29,1.2.14,2020-01-31 20:44:35,,,newest,com.artfulagenda.app +Amanda C,https://lh3.googleusercontent.com/-bxxnJt3lGwY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPKWUC2q8HeDTJFVc1soS6Byu96PA/photo.jpg,"Update: After I read the reply I redownloaded this app. Waste of $4.25! It's NOT WORTH ANY AMOUNT OF MONEY! Not a lot of extras to charge money AND it's only cute on a computer. The ""lists"" are not very easy to make and I never did find the ""meal plan"" or journal parts. The goal part is not on the app. Any.do is FREE and a lot easier for lists with reminders and also includes a calendar. Not worth the cost. Yeah it's cute but not as easy to use as other free calendars. Pretty disappointed...",1,3,1.2.13,2020-01-29 02:33:04,"Hi again Amanda! We are sorry that you are having a frustrating experience. Goals, tasks, and meals are located below the calendar views when you scroll down, but we are more than happy to explain further as well as provide insight into using our list function. Feel free to email us at hello@artfulagenda.com.",2020-01-29 17:22:47,newest,com.artfulagenda.app +Andrea Hamud,https://lh3.googleusercontent.com/a-/AOh14Gi3ojefFjLYjtSvQIcQGSorFFTCOhHP7CQY9JC5,Terrible! I transferred all my lists from Google to this app do they would all be in one place and they didn't save! So beyond frustrating.,1,3,1.2.12,2019-12-31 04:15:52,"Hi Andrea! Our tech support team would love to help you with this issue. Please submit a ticket through the app or email us at hello@artfulagenda.com. Our list tab is one of our core functions, and we are confident we can troubleshoot this issue for you!",2020-01-16 22:27:50,newest,com.artfulagenda.app +Holly T,https://lh3.googleusercontent.com/-pjbWbJx6Yug/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMONW3uV5j66l8NxgqXZjWeHkyi3w/photo.jpg,App install page says nothing about it being a free trial for 2 weeks. So you have to pay to use this app. This is not disclosed on the app page from which you initiate install.,1,3,1.2.12,2019-12-29 03:54:11,Hi Holly! Our install page does clearly state that this app requires a paid subscription.,2020-01-16 22:29:06,newest,com.artfulagenda.app +Gina Stone,https://lh3.googleusercontent.com/a-/AOh14GgplX9u3xOQwIYcWgt3d41EY5taVKosN738YZs1,"I downloaded this after seeing someone advertise it. Looked cool so I figured try it out, right? Until I downloaded and it prompted me for a subscription. Lady you are nuts. People rather by the paper agenda at the store for cheaper. You do not see the full texture of the book, it's an online planner on top of it. I'm not paying you for that. I downloaded a FREE calendar that does the exact same thing. Terrible marketing skills.",1,1,,2019-11-26 14:30:48,"Hi Gina! Our subscription gives you access to all versions of Artful Agenda, including the desktop version that looks like an open book. We encourage you to check that out! Many of our users find that our handwriting options, stickers, and cover designs make this a great alternative to a paper planner that they are willing to pay for.",2020-01-16 22:33:23,newest,com.artfulagenda.app +everything blue,https://lh3.googleusercontent.com/a-/AOh14GidT5gJUWwKXUQ2yZ3QuoxKycbBf1S9gBISEIKOtw,could you make an option to not stop the trial because i dont think some people want to do the trial and it doesn't mention that before you download the app and when you do you guys get paid.,1,0,,2019-10-25 15:13:07,Hi everything blue! We apologize for any confusion. Our store listing clearly states that this app requires a paid subscription after the free trial.,2020-01-16 22:37:44,newest,com.artfulagenda.app +Rin,https://lh3.googleusercontent.com/a-/AOh14GjdQcMtensveGFGAVCQV_Q7iJC90csOMRZSZiHwlA,It wouldn't let me try the app. It just told me to subscribe.,1,1,,2019-10-24 21:04:51,Hi Rin! We do not charge customers until the completion of their free trial. We encourage you to pick a plan to try it out!,2020-01-16 22:39:05,newest,com.artfulagenda.app +Brad Burgau,https://lh3.googleusercontent.com/a-/AOh14GiW1xH-PfT-8uuvAaPiQLreEgl4447GEUPdVSZxtWg,"SLOW on laptop, does not sync with website. No stickers on app, just laptop. I set up my calander on my ohone, then went to desktop. I can't open up my calander unlesss I give payment info on laptop. I already set up payment in Google Play. And to get to that screen takes a LONG time.",1,14,1.2.3,2019-10-04 21:07:58,"Hi Brad! Thank you for the feedback! We have recently released an updated version of the app that should eliminate this problem. If you do experience anything like this again, please submit a ticket through the app or reach out via hello@artfulagenda.com. Our dedicated tech support team will treat your ticket with high priority. ",2020-01-27 18:29:49,newest,com.artfulagenda.app +Lisa G,https://lh3.googleusercontent.com/a-/AOh14Gg6Er8urireM0wTXpmoDMcUPftGxC9Xg4Ry4MgOaA,You can't even try it out. They are automatically asking you to pick a subscriber plan before you can even see a calendar or anything.,1,5,1.2.3,2019-10-02 02:15:37,Hi G! Thank you for your review! We do not charge customers until the completion of their free trial. We encourage you to pick a plan to try it out!,2020-01-27 18:28:29,newest,com.artfulagenda.app +Rebecca Stotts,https://lh3.googleusercontent.com/-XyiTFLvvFpg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNjxQ7Yr-RUlIXecxhjBPYwc7E_gw/photo.jpg,This is a pay to play calendar only,1,2,1.2.1,2019-09-12 21:53:51,Hi Rebecca! We apologize for any confusion. Our store listing clearly states that this app requires a paid subscription after the free trial.,2020-01-27 18:26:13,newest,com.artfulagenda.app +Susie Cox,https://lh3.googleusercontent.com/a-/AOh14GiC7FHW9baQ-Js5D8M0m6gfcJfcbBigWckDCrzs3g,"This app is a total rip-off! I stupidly paid for the one-time subscription of $35.00, had the app less than one hour. The print was so tiny I could barely see it. A lesson learned the hard way...no more app subscriptions for me. Users beware! Forewarned is forarmed. Hang on to your wallets if you try out this app!",1,3,,2019-09-07 16:20:18,"Hi Susie! We're so sorry you experienced an issue! Users are not charged until the completion of their free trial. If you had any trouble cancelling, you can email hello@artfulagenda.com and we would be glad to assist.",2020-01-27 18:25:32,newest,com.artfulagenda.app +Stacey Lee-Jenkins,https://lh3.googleusercontent.com/a-/AOh14GigLPMzcgVD2z9p7GlCRiUFFNwubEMqhwI6U1Lgzo4,Doesn't work. Error messages appear everywhere when I open the app.,1,14,1.1.2,2019-07-08 20:18:06,"Hi Stacey! We are so sorry you experienced this issue. We have recently released an updated version of the app that should eliminate this problem. If you do experience anything like this again, please submit a ticket through the app or reach out via hello@artfulagenda.com. Our dedicated tech support team will treat your ticket with high priority. ",2020-01-27 18:21:05,newest,com.artfulagenda.app +Hadiyah Lynch,https://lh3.googleusercontent.com/-4fLk5UAfUe4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO-oUTDsKn70CSvaZALakTn3M3zww/photo.jpg,always freezing,1,1,1.0.1,2019-04-01 02:09:55,"Hi Hadiyah! Our app is currently in beta testing. We placed it in the app store so that our beta testers would be able to easily access it, but it's not yet bug free and ready for everyone to use. We can be reached at hello@artfulagenda.com and would appreciate the opportunity to remedy this issue for you. We hope to hear from you!",2019-04-01 18:16:23,newest,com.artfulagenda.app +A Chicas,https://lh3.googleusercontent.com/a-/AOh14GiwtG57IP5iMi1pHeJKQoKBC-IMQnK-Km3ugREXnEE,I really like the app/online portal but having everything in one does me no good w/o push notifications & I wish this had a widget so I didn't have to open the app to look at everything.i paid for this & I don't feel like I got my investment back as I maybe use the app once in a blue moon. It looks great but it just doesn't work to what I feel is it's full protein. I hope you add this & don't make me pay for it.,2,4,1.2.19,2020-03-23 04:45:10,,,most_relevant,com.artfulagenda.app +Grace Combs,https://lh3.googleusercontent.com/a-/AOh14GhBBsnHws4Cxu7x9_0xRJgxQ8EKacrf6hrd01vQdQ,"Love it and it's good start to build on! But there appears to be syncing issues between calendars no matter how many times I refresh. I'm going to give it time before I give up on it. I'm big on my Happy Planner and would totally ditch it for this if it had similar features, such as a budget planner one could add. I wouldn't use most of the stickers, which is unfortunate because I love my stickers in my planners. Overall....good start?",2,5,1.2.3,2019-10-01 10:49:46,Hi Grace! Thank you for the feedback! We have recently released an updated version of the app that should eliminate this problem. We are also continuously adding new features so stay tuned!,2020-01-27 18:33:07,most_relevant,com.artfulagenda.app +Julia,https://lh3.googleusercontent.com/a-/AOh14GgjD8WWQ1defDQ40MD5z6bxyWwC2E0iqLzIKTsM6A,"Absolutely no mention of paying to use this app until you've downloaded it and signed up. Too bad, it looked pretty.",2,2,,2019-09-11 19:19:36,Hi Julia! We do not charge customers until the completion of their free trial. We encourage you to pick a plan to try it out!,2020-01-27 18:32:10,most_relevant,com.artfulagenda.app +Heather Barson,https://lh3.googleusercontent.com/a-/AOh14GitWkUbjJaD28ML_9-F6FRwCgUFwCXr4UisDRGHwA,"Okay if you like planning with Google. It's exactly like that, just prettier. I don't see how this can replace a paper planner at all.",2,1,,2019-08-20 19:59:21,"Hi Heather! Thank you for your feedback! We encourage you to check out our meal planning, goal setting, journaling, and list making features. We feel these help set us apart from other digital calendars. Also, be on the lookout for even more stickers and covers coming soon!",2020-01-27 18:31:49,most_relevant,com.artfulagenda.app +Kitten Momma,https://lh3.googleusercontent.com/a-/AOh14GgiAXWu84lSNtd00OtLImksBTIPWPA542vaNx_bDnY,There is a subscription to the service. I wish i would have knownBEFORE I downloaded. Looks beautiful though.,2,0,,2020-02-15 20:03:38,,,most_relevant,com.artfulagenda.app +Miss Tonya c007,https://lh3.googleusercontent.com/a-/AOh14GjwPtQhAbltZL5sFAjGAwjaUGwQumtF90nH7Yy6UGg,Its ok,2,0,,2019-12-27 15:59:15,,,most_relevant,com.artfulagenda.app +A Chicas,https://lh3.googleusercontent.com/a-/AOh14GiwtG57IP5iMi1pHeJKQoKBC-IMQnK-Km3ugREXnEE,I really like the app/online portal but having everything in one does me no good w/o push notifications & I wish this had a widget so I didn't have to open the app to look at everything.i paid for this & I don't feel like I got my investment back as I maybe use the app once in a blue moon. It looks great but it just doesn't work to what I feel is it's full protein. I hope you add this & don't make me pay for it.,2,4,1.2.19,2020-03-23 04:45:10,,,newest,com.artfulagenda.app +Kitten Momma,https://lh3.googleusercontent.com/a-/AOh14GgiAXWu84lSNtd00OtLImksBTIPWPA542vaNx_bDnY,There is a subscription to the service. I wish i would have knownBEFORE I downloaded. Looks beautiful though.,2,0,,2020-02-15 20:03:38,,,newest,com.artfulagenda.app +Miss Tonya c007,https://lh3.googleusercontent.com/a-/AOh14GjwPtQhAbltZL5sFAjGAwjaUGwQumtF90nH7Yy6UGg,Its ok,2,0,,2019-12-27 15:59:15,,,newest,com.artfulagenda.app +Grace Combs,https://lh3.googleusercontent.com/a-/AOh14GhBBsnHws4Cxu7x9_0xRJgxQ8EKacrf6hrd01vQdQ,"Love it and it's good start to build on! But there appears to be syncing issues between calendars no matter how many times I refresh. I'm going to give it time before I give up on it. I'm big on my Happy Planner and would totally ditch it for this if it had similar features, such as a budget planner one could add. I wouldn't use most of the stickers, which is unfortunate because I love my stickers in my planners. Overall....good start?",2,5,1.2.3,2019-10-01 10:49:46,Hi Grace! Thank you for the feedback! We have recently released an updated version of the app that should eliminate this problem. We are also continuously adding new features so stay tuned!,2020-01-27 18:33:07,newest,com.artfulagenda.app +Julia,https://lh3.googleusercontent.com/a-/AOh14GgjD8WWQ1defDQ40MD5z6bxyWwC2E0iqLzIKTsM6A,"Absolutely no mention of paying to use this app until you've downloaded it and signed up. Too bad, it looked pretty.",2,2,,2019-09-11 19:19:36,Hi Julia! We do not charge customers until the completion of their free trial. We encourage you to pick a plan to try it out!,2020-01-27 18:32:10,newest,com.artfulagenda.app +Heather Barson,https://lh3.googleusercontent.com/a-/AOh14GitWkUbjJaD28ML_9-F6FRwCgUFwCXr4UisDRGHwA,"Okay if you like planning with Google. It's exactly like that, just prettier. I don't see how this can replace a paper planner at all.",2,1,,2019-08-20 19:59:21,"Hi Heather! Thank you for your feedback! We encourage you to check out our meal planning, goal setting, journaling, and list making features. We feel these help set us apart from other digital calendars. Also, be on the lookout for even more stickers and covers coming soon!",2020-01-27 18:31:49,newest,com.artfulagenda.app +Lourdes Erguera,https://lh3.googleusercontent.com/a-/AOh14Gg-IunpMRHGvopZeYZ9htrYRkAgyjsntKGlJFgZ77c,"Download it because I love that it has a weekly, monthly and daily goal views, also lists and water intake goals but it doesn't have push notifications and it seems like I can't cross off events, only goals or tasks and that's a huge deal at least for me so it would be great if you guys can make that happen",3,0,1.2.19,2020-03-29 19:54:00,,,most_relevant,com.artfulagenda.app +Anna Reed,https://lh3.googleusercontent.com/-j2lEu8vU4Ag/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMTG2aHO6PdmpsTN2N6ZF3ZJFAHMw/photo.jpg,"Great concept the idea of this is great but theres a couple things that need work and i have a few ideas app is very slow or laggy. Sometimes it wont let me click on the sugested address. Also would be useful to be able to click address in planner and pull up directions in google map, i would also like to be able to link a list to a event and or address would also like to be able to ""build my desired layout ,more themes and stickers",3,6,1.2.14,2020-02-08 15:24:53,,,most_relevant,com.artfulagenda.app +planning awesome,https://lh3.googleusercontent.com/a-/AOh14GicS9LP-pGPr2JVEq8hNea038Rg-px_I33E0mLC5Q,"I just got this app about 2 days ago. I love it! I would give it ⭐⭐⭐⭐⭐ ... if the developers added new features such as: *more affordable $20/year *more stickers: love variety *journaling pages : customizable to be added anywhere within the planner *fully customizable upcoming event pages: to help plan for weddings, anniversaries, birthdays, graduations, parent to be planning & baby or adopted child showers, Valentine's, marriage proposal 😊",3,3,1.2.15,2020-02-16 11:10:42,,,most_relevant,com.artfulagenda.app +Kimberly Sampson,https://lh3.googleusercontent.com/a-/AOh14Gjx6My6DY0fHJII3IrxqKpgfr9uSu1jVffTXgVSkQ4,"Needs a widget! Once it has multiple different widgets, calendar, to do list, grocery list...etc I might revisit it.",3,2,1.2.13,2020-01-30 17:21:54,Hi Kimberly! Thanks for your feedback! A widget is on our list of features to develop!,2020-01-16 22:29:35,most_relevant,com.artfulagenda.app +Amanda Craven,https://lh3.googleusercontent.com/-e2JlTKAMu4g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPQk9cZuBFMTBYLqdCu97Lj-wLoXg/photo.jpg,"Not Fully Developed. This app could be great, but in their rush to put it out, the features are highly lacking. No push notifications, you cannot upload stickers, no widget, pretty buggy. I really liked the idea of it, but it needs improvement. I will update to 5 stars if and when these features are added. They did reach out to me to resolve my issues, so I am updating to three stars.",3,4,1.2.8,2020-03-21 06:15:55,,,most_relevant,com.artfulagenda.app +Jennifer May,https://lh3.googleusercontent.com/-VclNDtkk5ME/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPUAZsI1ZvfGGvm7mY7M8I-pJzaLA/photo.jpg,"There were a lot less options for handwriting, covers, and stickers than I anticipated for something you want me to pay an annual or monthly subscription for. It's a great concept but the execution fell short for me.",3,10,1.2.12,2020-01-04 00:18:45,"Hi Jennifer! We appreciate your feedback. We currently offer 12 covers, 6 handwriting options and 12 sticker pack options. Our design team is working to add even more soon!",2020-01-16 22:26:36,most_relevant,com.artfulagenda.app +Rachel Lacy,https://lh3.googleusercontent.com/a-/AOh14Gg2zP7HdTT0tdEZ3WXzpyt92P32KmqmYkKcN-RUWA,Love your hard work. But it's there a widget? With the calendar open?,3,0,1.2.13,2020-01-25 22:41:32,Hi Rachel! Thank you! Widgets are on our list of features to develop! Stay tuned!,2020-01-27 17:39:05,most_relevant,com.artfulagenda.app +Patricia Boland,https://lh3.googleusercontent.com/a-/AOh14GigTj7c6VVVM0gIGgw6uZjzzUsL5epZGesi3l8tKg,I like this better then the calendar that comes on my phone but it's too pricey. I dont mind paying for an app I like or paying for the downloads I want in an app but you cant justify this price for what you get.,3,5,,2019-11-03 15:23:57,"Hi Patricia! Thank you for the feedback! We encourage you to check out our meal planning, goal setting, journaling, and list making features. We feel these help set us apart from other digital calendars. Also, be on the lookout for even more stickers and covers coming soon!",2020-01-27 18:35:15,most_relevant,com.artfulagenda.app +Crystal Gonzalez,https://lh3.googleusercontent.com/a-/AOh14GgjqYB4NdcViVVkYjbgyEE3YYKdT-TmuWK3SvMkrQ,It would be good if it was a free app. I understand in app purchases but only if the app itself was free.,3,0,,2020-02-23 01:37:52,,,most_relevant,com.artfulagenda.app +Michelle Price Miller,https://lh3.googleusercontent.com/-VxmdYtY7AC4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJONt3GHcdYZNNubJqBatBhFG_EejQ/photo.jpg,"I wanted to play with it for a few minutes before putting in my payment info. I realize I can cancel, but would prefer to do a quick test first. I",3,14,1.1.4,2019-08-01 19:49:33,Hi Michelle! We do not charge customers until the completion of their free trial. We encourage you to pick a plan to try it out!,2020-01-27 18:34:14,most_relevant,com.artfulagenda.app +Hydee Fisher,https://lh3.googleusercontent.com/a-/AOh14Gi5uG-iMb2jyw-2_0-_8OyZnViz2-0VZ5qikcw,Love it so far. Wish it had a widget for Android though.,3,0,,2019-09-15 14:16:45,Hi Hydee! Thanks for your feedback! A widget is on our list of features to develop!,2020-01-27 18:34:43,most_relevant,com.artfulagenda.app +Lourdes Erguera,https://lh3.googleusercontent.com/a-/AOh14Gg-IunpMRHGvopZeYZ9htrYRkAgyjsntKGlJFgZ77c,"Download it because I love that it has a weekly, monthly and daily goal views, also lists and water intake goals but it doesn't have push notifications and it seems like I can't cross off events, only goals or tasks and that's a huge deal at least for me so it would be great if you guys can make that happen",3,0,1.2.19,2020-03-29 19:54:00,,,newest,com.artfulagenda.app +Amanda Craven,https://lh3.googleusercontent.com/-e2JlTKAMu4g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPQk9cZuBFMTBYLqdCu97Lj-wLoXg/photo.jpg,"Not Fully Developed. This app could be great, but in their rush to put it out, the features are highly lacking. No push notifications, you cannot upload stickers, no widget, pretty buggy. I really liked the idea of it, but it needs improvement. I will update to 5 stars if and when these features are added. They did reach out to me to resolve my issues, so I am updating to three stars.",3,4,1.2.8,2020-03-21 06:15:55,,,newest,com.artfulagenda.app +Crystal Gonzalez,https://lh3.googleusercontent.com/a-/AOh14GgjqYB4NdcViVVkYjbgyEE3YYKdT-TmuWK3SvMkrQ,It would be good if it was a free app. I understand in app purchases but only if the app itself was free.,3,0,,2020-02-23 01:37:52,,,newest,com.artfulagenda.app +planning awesome,https://lh3.googleusercontent.com/a-/AOh14GicS9LP-pGPr2JVEq8hNea038Rg-px_I33E0mLC5Q,"I just got this app about 2 days ago. I love it! I would give it ⭐⭐⭐⭐⭐ ... if the developers added new features such as: *more affordable $20/year *more stickers: love variety *journaling pages : customizable to be added anywhere within the planner *fully customizable upcoming event pages: to help plan for weddings, anniversaries, birthdays, graduations, parent to be planning & baby or adopted child showers, Valentine's, marriage proposal 😊",3,3,1.2.15,2020-02-16 11:10:42,,,newest,com.artfulagenda.app +Anna Reed,https://lh3.googleusercontent.com/-j2lEu8vU4Ag/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMTG2aHO6PdmpsTN2N6ZF3ZJFAHMw/photo.jpg,"Great concept the idea of this is great but theres a couple things that need work and i have a few ideas app is very slow or laggy. Sometimes it wont let me click on the sugested address. Also would be useful to be able to click address in planner and pull up directions in google map, i would also like to be able to link a list to a event and or address would also like to be able to ""build my desired layout ,more themes and stickers",3,6,1.2.14,2020-02-08 15:24:53,,,newest,com.artfulagenda.app +Kimberly Sampson,https://lh3.googleusercontent.com/a-/AOh14Gjx6My6DY0fHJII3IrxqKpgfr9uSu1jVffTXgVSkQ4,"Needs a widget! Once it has multiple different widgets, calendar, to do list, grocery list...etc I might revisit it.",3,2,1.2.13,2020-01-30 17:21:54,Hi Kimberly! Thanks for your feedback! A widget is on our list of features to develop!,2020-01-16 22:29:35,newest,com.artfulagenda.app +Rachel Lacy,https://lh3.googleusercontent.com/a-/AOh14Gg2zP7HdTT0tdEZ3WXzpyt92P32KmqmYkKcN-RUWA,Love your hard work. But it's there a widget? With the calendar open?,3,0,1.2.13,2020-01-25 22:41:32,Hi Rachel! Thank you! Widgets are on our list of features to develop! Stay tuned!,2020-01-27 17:39:05,newest,com.artfulagenda.app +Jennifer May,https://lh3.googleusercontent.com/-VclNDtkk5ME/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPUAZsI1ZvfGGvm7mY7M8I-pJzaLA/photo.jpg,"There were a lot less options for handwriting, covers, and stickers than I anticipated for something you want me to pay an annual or monthly subscription for. It's a great concept but the execution fell short for me.",3,10,1.2.12,2020-01-04 00:18:45,"Hi Jennifer! We appreciate your feedback. We currently offer 12 covers, 6 handwriting options and 12 sticker pack options. Our design team is working to add even more soon!",2020-01-16 22:26:36,newest,com.artfulagenda.app +Patricia Boland,https://lh3.googleusercontent.com/a-/AOh14GigTj7c6VVVM0gIGgw6uZjzzUsL5epZGesi3l8tKg,I like this better then the calendar that comes on my phone but it's too pricey. I dont mind paying for an app I like or paying for the downloads I want in an app but you cant justify this price for what you get.,3,5,,2019-11-03 15:23:57,"Hi Patricia! Thank you for the feedback! We encourage you to check out our meal planning, goal setting, journaling, and list making features. We feel these help set us apart from other digital calendars. Also, be on the lookout for even more stickers and covers coming soon!",2020-01-27 18:35:15,newest,com.artfulagenda.app +Hydee Fisher,https://lh3.googleusercontent.com/a-/AOh14Gi5uG-iMb2jyw-2_0-_8OyZnViz2-0VZ5qikcw,Love it so far. Wish it had a widget for Android though.,3,0,,2019-09-15 14:16:45,Hi Hydee! Thanks for your feedback! A widget is on our list of features to develop!,2020-01-27 18:34:43,newest,com.artfulagenda.app +Michelle Price Miller,https://lh3.googleusercontent.com/-VxmdYtY7AC4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJONt3GHcdYZNNubJqBatBhFG_EejQ/photo.jpg,"I wanted to play with it for a few minutes before putting in my payment info. I realize I can cancel, but would prefer to do a quick test first. I",3,14,1.1.4,2019-08-01 19:49:33,Hi Michelle! We do not charge customers until the completion of their free trial. We encourage you to pick a plan to try it out!,2020-01-27 18:34:14,newest,com.artfulagenda.app +Leanne Matthews,https://lh3.googleusercontent.com/a-/AOh14Gg9x5NCPTmvJHsvbapIFhiTcKucnUa0q8VBUFIxsz8,I love the concept & look of this mobile app & the desktop version. I wish I could set recurring tasks or add time reminders to tasks. You also can't set reminders if you add an event directly into Artful Agenda. You have to add it to your Google calendar first to set the reminder then let it sync to Artful Agenda. I've paid for the year subscription & I'm really hoping it has more functionality by the end of my subscription or I won't be renewing.,4,2,1.2.13,2020-01-21 21:56:39,Hi Leanne! Thank you so much for the review and feedback! We are adding features all the time so stay tuned!,2020-01-27 18:19:02,most_relevant,com.artfulagenda.app +Melissa Ruiz,https://lh3.googleusercontent.com/a-/AOh14GhtIn7-wFInp71Qr9t-VV-YEY_0m3pTOsuuFjrV_Q,"Love the app ... was able to download it to my iPhone. I went to download it to my Samsung tablet. BUT once I hit open, all I get is black screen. I uninstalled the app and reinstalled it several times and it still won't work",4,2,1.2.17,2020-03-10 09:51:50,,,most_relevant,com.artfulagenda.app +Tiffany B,https://lh3.googleusercontent.com/a-/AOh14GiXZxJ6eZ0F9tuBaVu3owspY5KLI7gEmxpMw0AuSg,"Plz ???❤1.Widget that shows the current date, list of upcoming events, 1 click option to open calendar 2.Ability to set reminders/alerts for scheduled events 3. Ability to sync to phone's stock calendar (Android) 4.Additional settings ability to customize the color of the circle indicating current date 5. Ability to actually see the inspirational quotes in the app even if a new tab was necessary 6.Ability to create tasks and designate their priority as high, low or routine along with the option",4,0,1.2.15,2020-02-19 19:08:02,,,most_relevant,com.artfulagenda.app +Katie Shadish,https://lh3.googleusercontent.com/a-/AOh14GhyBmnCsGBmtpmQ-vEE6Eka1Z33OYS3FLenm02LYQ,Could use more fonts and options and a habit tracker. But it's a great start.,4,0,1.2.15,2020-02-14 20:30:38,"We really appreciate your feedback, Katie! A habit tracker is on our list of things to add, and I will make note of your request for more fonts!",2020-02-14 22:50:57,most_relevant,com.artfulagenda.app +Joan O'Brien,https://lh3.googleusercontent.com/-A0tr2qVtv08/AAAAAAAAAAI/AAAAAAAAADk/AAKWJJMLCP4z2P9niarEIMOenOSJn0pTvg/photo.jpg,Love the look of this agenda. List feature is great way to track & complete to do lists!,4,0,1.2.13,2020-01-28 22:50:23,,,most_relevant,com.artfulagenda.app +Emilie Geohegan,https://lh3.googleusercontent.com/-AbaYMS0B_F8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM8sZ6diT0UyXIS587vD3s0FgzVxA/photo.jpg,"Like the app, but wish it had widgets to be able to see calendar at all times",4,14,1.2.7,2019-11-15 20:02:42,Hi Emilie! Thanks for your feedback! A widget is on our list of features to develop!,2020-01-16 22:34:16,most_relevant,com.artfulagenda.app +Brittany Fryer,https://lh3.googleusercontent.com/a-/AOh14GixGBrJjY3rUJkR4XjFX__BhM7ESBxSBNAjwodyIA,"I love this app! It makes my day to day so much more organized and pretty. It allows you to keep a check on your daily water intake, your to do lists, grocery lists, events, whatever you have in mind! I find that the layout of it all helps me to maintain productivity. I only wish there were a widget available!",4,3,1.2.3,2019-10-12 14:55:49,Hi Brittany! We are so happy to have you as a customer and are thrilled that you like Artful Agenda! Stay tuned as widgets are on our list of features to develop!,2020-01-27 18:37:44,most_relevant,com.artfulagenda.app +Kirsten Morgan,https://lh3.googleusercontent.com/a-/AOh14Gi63NGzECOlBEOXaOvmUGnnlwWJWE8lpcwYTpNxlQ,"Love it so far! I would like to be able to move appointments around on the same day. for example, they are listed in the order you enter them. But I want my am on the top of each page and my p.m. appointments in the afternoon on the month view. it would be great if you can just drag and drop. I also would like a printing feature for my lists so that I can actually print them out while packing.",4,6,1.0.6,2019-05-25 18:23:02,Hi Kirsten! Thank you so much for the review and feedback! Stay tuned as we're continuously adding new features!,2020-01-27 18:36:05,most_relevant,com.artfulagenda.app +Charity Adams,https://lh3.googleusercontent.com/a-/AOh14GguBKjGRyzCc2cyF17Pokpd1t0PQ6Ti2VhdxM3NjMM,just installed Love that syncs with google. Wish the mobile app allowed Screen rotation. Wish I could Zoom on the week a month view. I understand mobile i in beta. Looking forward to the evolution.,4,4,1.0.8,2019-07-02 03:46:42,Hi Charity! Thank you so much for the review and feedback! Stay tuned as we're continuously adding new features!,2020-01-27 18:36:18,most_relevant,com.artfulagenda.app +Casey Griffin,https://lh3.googleusercontent.com/a-/AOh14Gi1S8KT-uTRt_Kpw3b0IGZ09unmnx1aofSNNz6_,"Love this app so far, it just needs push notifications, widgets, and a habit tracker, hut all in due time I'm sure 😊",4,7,1.1.2,2019-07-21 17:21:53,Hi Casey! Thank you so much for the review and feedback! Stay tuned as we're continuously adding new features! Push notifications and widgets are on our list of features to develop!,2020-01-27 18:36:49,most_relevant,com.artfulagenda.app +Lauren Scott,https://lh3.googleusercontent.com/a-/AOh14GhxzqxgHDgbZRuT5TqXEDgBh20-Kl_oJtFteyZC,So far I really like it. when will the stickers and tablet features be ready?,4,0,1.1.2,2019-08-01 16:20:05,,,most_relevant,com.artfulagenda.app +Sarah Rettinger,https://lh3.googleusercontent.com/a-/AOh14GjLoMhR-GEBF56ZxeweIJEvYEridR_15ZUCZHz2Sw,"I live this calendar app, but I wish it was a widget.",4,1,1.1.4,2019-08-26 19:44:30,Hi Sarah! Thanks for your feedback! A widget is on our list of features to develop!,2020-01-27 18:37:15,most_relevant,com.artfulagenda.app +tina t,https://lh3.googleusercontent.com/a-/AOh14GjgvBgiXZDx1t_xtkgGtHzRVXIyNt2mwNW7kFoT3A,so far so good,4,0,1.0.5,2019-05-08 07:19:39,,,most_relevant,com.artfulagenda.app +Melissa Ruiz,https://lh3.googleusercontent.com/a-/AOh14GhtIn7-wFInp71Qr9t-VV-YEY_0m3pTOsuuFjrV_Q,"Love the app ... was able to download it to my iPhone. I went to download it to my Samsung tablet. BUT once I hit open, all I get is black screen. I uninstalled the app and reinstalled it several times and it still won't work",4,2,1.2.17,2020-03-10 09:51:50,,,newest,com.artfulagenda.app +Tiffany B,https://lh3.googleusercontent.com/a-/AOh14GiXZxJ6eZ0F9tuBaVu3owspY5KLI7gEmxpMw0AuSg,"Plz ???❤1.Widget that shows the current date, list of upcoming events, 1 click option to open calendar 2.Ability to set reminders/alerts for scheduled events 3. Ability to sync to phone's stock calendar (Android) 4.Additional settings ability to customize the color of the circle indicating current date 5. Ability to actually see the inspirational quotes in the app even if a new tab was necessary 6.Ability to create tasks and designate their priority as high, low or routine along with the option",4,0,1.2.15,2020-02-19 19:08:02,,,newest,com.artfulagenda.app +Katie Shadish,https://lh3.googleusercontent.com/a-/AOh14GhyBmnCsGBmtpmQ-vEE6Eka1Z33OYS3FLenm02LYQ,Could use more fonts and options and a habit tracker. But it's a great start.,4,0,1.2.15,2020-02-14 20:30:38,"We really appreciate your feedback, Katie! A habit tracker is on our list of things to add, and I will make note of your request for more fonts!",2020-02-14 22:50:57,newest,com.artfulagenda.app +Joan O'Brien,https://lh3.googleusercontent.com/-A0tr2qVtv08/AAAAAAAAAAI/AAAAAAAAADk/AAKWJJMLCP4z2P9niarEIMOenOSJn0pTvg/photo.jpg,Love the look of this agenda. List feature is great way to track & complete to do lists!,4,0,1.2.13,2020-01-28 22:50:23,,,newest,com.artfulagenda.app +Leanne Matthews,https://lh3.googleusercontent.com/a-/AOh14Gg9x5NCPTmvJHsvbapIFhiTcKucnUa0q8VBUFIxsz8,I love the concept & look of this mobile app & the desktop version. I wish I could set recurring tasks or add time reminders to tasks. You also can't set reminders if you add an event directly into Artful Agenda. You have to add it to your Google calendar first to set the reminder then let it sync to Artful Agenda. I've paid for the year subscription & I'm really hoping it has more functionality by the end of my subscription or I won't be renewing.,4,2,1.2.13,2020-01-21 21:56:39,Hi Leanne! Thank you so much for the review and feedback! We are adding features all the time so stay tuned!,2020-01-27 18:19:02,newest,com.artfulagenda.app +Emilie Geohegan,https://lh3.googleusercontent.com/-AbaYMS0B_F8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM8sZ6diT0UyXIS587vD3s0FgzVxA/photo.jpg,"Like the app, but wish it had widgets to be able to see calendar at all times",4,14,1.2.7,2019-11-15 20:02:42,Hi Emilie! Thanks for your feedback! A widget is on our list of features to develop!,2020-01-16 22:34:16,newest,com.artfulagenda.app +Brittany Fryer,https://lh3.googleusercontent.com/a-/AOh14GixGBrJjY3rUJkR4XjFX__BhM7ESBxSBNAjwodyIA,"I love this app! It makes my day to day so much more organized and pretty. It allows you to keep a check on your daily water intake, your to do lists, grocery lists, events, whatever you have in mind! I find that the layout of it all helps me to maintain productivity. I only wish there were a widget available!",4,3,1.2.3,2019-10-12 14:55:49,Hi Brittany! We are so happy to have you as a customer and are thrilled that you like Artful Agenda! Stay tuned as widgets are on our list of features to develop!,2020-01-27 18:37:44,newest,com.artfulagenda.app +Sarah Rettinger,https://lh3.googleusercontent.com/a-/AOh14GjLoMhR-GEBF56ZxeweIJEvYEridR_15ZUCZHz2Sw,"I live this calendar app, but I wish it was a widget.",4,1,1.1.4,2019-08-26 19:44:30,Hi Sarah! Thanks for your feedback! A widget is on our list of features to develop!,2020-01-27 18:37:15,newest,com.artfulagenda.app +Lauren Scott,https://lh3.googleusercontent.com/a-/AOh14GhxzqxgHDgbZRuT5TqXEDgBh20-Kl_oJtFteyZC,So far I really like it. when will the stickers and tablet features be ready?,4,0,1.1.2,2019-08-01 16:20:05,,,newest,com.artfulagenda.app +Casey Griffin,https://lh3.googleusercontent.com/a-/AOh14Gi1S8KT-uTRt_Kpw3b0IGZ09unmnx1aofSNNz6_,"Love this app so far, it just needs push notifications, widgets, and a habit tracker, hut all in due time I'm sure 😊",4,7,1.1.2,2019-07-21 17:21:53,Hi Casey! Thank you so much for the review and feedback! Stay tuned as we're continuously adding new features! Push notifications and widgets are on our list of features to develop!,2020-01-27 18:36:49,newest,com.artfulagenda.app +Charity Adams,https://lh3.googleusercontent.com/a-/AOh14GguBKjGRyzCc2cyF17Pokpd1t0PQ6Ti2VhdxM3NjMM,just installed Love that syncs with google. Wish the mobile app allowed Screen rotation. Wish I could Zoom on the week a month view. I understand mobile i in beta. Looking forward to the evolution.,4,4,1.0.8,2019-07-02 03:46:42,Hi Charity! Thank you so much for the review and feedback! Stay tuned as we're continuously adding new features!,2020-01-27 18:36:18,newest,com.artfulagenda.app +Kirsten Morgan,https://lh3.googleusercontent.com/a-/AOh14Gi63NGzECOlBEOXaOvmUGnnlwWJWE8lpcwYTpNxlQ,"Love it so far! I would like to be able to move appointments around on the same day. for example, they are listed in the order you enter them. But I want my am on the top of each page and my p.m. appointments in the afternoon on the month view. it would be great if you can just drag and drop. I also would like a printing feature for my lists so that I can actually print them out while packing.",4,6,1.0.6,2019-05-25 18:23:02,Hi Kirsten! Thank you so much for the review and feedback! Stay tuned as we're continuously adding new features!,2020-01-27 18:36:05,newest,com.artfulagenda.app +tina t,https://lh3.googleusercontent.com/a-/AOh14GjgvBgiXZDx1t_xtkgGtHzRVXIyNt2mwNW7kFoT3A,so far so good,4,0,1.0.5,2019-05-08 07:19:39,,,newest,com.artfulagenda.app +Jennifer Wolf,https://lh3.googleusercontent.com/-mxWO8B7wK40/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPvG63BaBxHKpOrtyIan00CUMgM_A/photo.jpg,"Super cute & functional! It syncs with both my personal (google) and work (outlook) calendars, space to plan priorities and meals (weekly/daily views) and LISTS! I don't use the stickers as much, but all the colors for events and background are enough for me right now. Can't wait for the widget to come out someday!",5,5,1.2.13,2020-01-25 14:58:53,,,most_relevant,com.artfulagenda.app +Candice Arnold,https://lh3.googleusercontent.com/a-/AOh14Gh1WHwMs5kWdqey9dKz7STU22zo9hBesCdMR9qEzA,"I have thoroughly enjoyed my AA ever since I found out about last year! I had been looking for an organizer that I use as a calendar and to handle my many ""things to do"" lists. Thank you Katy for your vision and concept.",5,0,1.2.13,2020-01-23 21:35:10,,,most_relevant,com.artfulagenda.app +Sarah Layton,https://lh3.googleusercontent.com/a-/AOh14Gh6ceAvt3d_6HIKoGnYqNxolGYxWooTb5GG2PLbnfg,"Love, love, love this app!! I have been a paper planner lover for 30 years and I just switched to Artful Agenda and I couldn't be more pleased. Try it, you'll love it!!!",5,1,1.2.13,2020-01-23 22:13:10,,,most_relevant,com.artfulagenda.app +Shawna Daigle,https://lh3.googleusercontent.com/a-/AOh14GgaSyeo35nL9bIz3uXOYJ9ESFoE6bCcKuArkZ7WQA,Love this app!!! It's so easy to use. It helps me be organized with the option of having multiple lists. Plus....it's colorful!!,5,1,1.2.13,2020-01-24 16:20:27,,,most_relevant,com.artfulagenda.app +Rhea Pepin,https://lh3.googleusercontent.com/-wtAriV9LXeE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNZPl9tSbxmnxqugaMAxDJlISO4bw/photo.jpg,This is perfect. I'm able to get all of my family calendars in one place without having to lug around a traditional agenda. Also they are wonderful at fixing any issues and responding to all emails.,5,2,1.2.15,2020-02-12 04:26:59,,,most_relevant,com.artfulagenda.app +Sarah Jane Kramer,https://lh3.googleusercontent.com/a-/AOh14GibS4n9mocRavf03ALaYKHMqHMqZA8wa4fEvLdSMA,It's a beautiful digital calendar that u can customize with a cover and stickers and fonts - so much prettier than the standard calendar that comes on your phone!,5,1,1.2.13,2020-01-23 22:37:03,,,most_relevant,com.artfulagenda.app +Christine Denstedt,https://lh3.googleusercontent.com/a-/AOh14GjzNmFGfKJNpqu5NGzuesUCpugz_mWcciXZh2cy8UU,"I normally don't review apps, but this one is amazing. This digital planner was exactly what I wanted. Give it a try, you won't regret it.",5,1,1.2.13,2020-01-23 20:49:37,,,most_relevant,com.artfulagenda.app +Kristal Pence,https://lh3.googleusercontent.com/a-/AOh14Ggf6DR24BovA3s9WVcEx_-1_y33cQMINDhk6Y6A8g,Love this app!! I'm much more organized with it!,5,0,1.2.19,2020-04-04 00:10:47,,,most_relevant,com.artfulagenda.app +Kit Smith,https://lh3.googleusercontent.com/-kVOyAvB5o00/AAAAAAAAAAI/AAAAAAAAGSU/AAKWJJPJfGSiauJ_5wQ33t20ePJ2L2y8Tw/photo.jpg,I love all of the features. Especially the lists and the stickers.,5,0,1.2.13,2020-01-28 02:18:27,We are so thrilled that you are loving Artful!,2020-01-29 17:23:23,most_relevant,com.artfulagenda.app +Shannon Poore,https://lh3.googleusercontent.com/a-/AOh14Gj02-sasON-i-s4kK4CAZtTyedexjGCDWglem4J0Q,"The perfect marriage of pen & pixel. If you love the features and visuals of a paper planner but stink at keeping up with it, this is for you. It allows me to: -sync to my Google calendars, & color code -switch an event from one Google calendar to another which even Google calendar won't let me do -look at my schedule as a single day, week, or month without having to put items in 3 different places -set and write down goals -track water & meal plan -make lists -check off tasks",5,4,1.2.8,2019-12-10 05:31:46,Thank you so much for your review! We are so happy that you love Artful Agenda!,2020-01-16 22:30:21,most_relevant,com.artfulagenda.app +Leah Adams,https://lh3.googleusercontent.com/a-/AOh14GhgVUzr9wdtqMXrQxyNhwK5wfcOP6Rzjvh9uN5C4uE,"This app is beautiful, and has really helped me keep my business, large family, homeschool and church activities all in order! No more chaos for this girl!",5,0,1.2.13,2020-01-23 20:37:06,,,most_relevant,com.artfulagenda.app +Kimberly L,https://lh3.googleusercontent.com/a-/AOh14GjkEJuxs3bHfB36BKSuVGJRpl4qTmrgG4wFUQ0u6g,"I absolutely LOVE this app! I am a very OCD person when it comes to being organized and love my planner but really wanted something digital...very portable and environmentally friendly... I found it here! I love the way it syncs in seconds across my devices, phone, iPad, Google home device, and laptop. It’s super user friendly and very customizable! I tried several other digital planners and this one beats them hands down!",5,0,,2020-01-24 00:22:01,,,most_relevant,com.artfulagenda.app +Traci Cracraft,https://lh3.googleusercontent.com/-lPoT_VFCzDM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMppHYpPsVbDTGw_bu8weDe25Famw/photo.jpg,"So I love this app- I think it's perfect for what I needed, at the time. Sadly my job changed and so did my need for a calendar/planner. Artful Agenda was still great but I found myself no longer using the stickers or really having time to add information to it. I canceled my subscription- they were super easy to work with. I still recommend this app to girls when asked - ❤❤ I love and miss Artful agenda. When my job changes again I'll be back.",5,2,1.2.3,2019-11-02 00:34:05,Thank you so much for your kind review! We really appreciate you and hope to have you as a customer again!,2020-01-16 22:35:51,most_relevant,com.artfulagenda.app +Elizabeth Fortin,https://lh3.googleusercontent.com/a-/AOh14Gjy_-o67jp5RqdTmC5Uz5SWZn3cgAz3NzMW_H_B,"Perfect, I'm loving every element so far ,I love that I can at some point once it's all done use it like my paper planner and sync them with my phone, I hate carrying my paper planner and also having to update my cell calendar , I love and cant wait to see and use all the coming soons I'm so excited ,I'm hoping also a widget will be something to come soon as well so that I can have it open on my phone and not always have to open the app for quick reference. Keep it up",5,2,1.2.3,2019-10-15 20:42:31,,,most_relevant,com.artfulagenda.app +Kalinda Keicher,https://lh3.googleusercontent.com/a-/AOh14GhfdwoFjhoggU0nPsJSdewXptAIE71AQ7PwHMUbBQ,LOVE THIS APP!! This app had saved me so many stressful headaches!! The creator is ALWAYS on top of it and so helpful with everyone's questions. Install this app - you won't be sorry!,5,0,,2020-01-23 23:48:29,,,most_relevant,com.artfulagenda.app +Heather Roberts,https://lh3.googleusercontent.com/-EJtbZ8khALk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMNZjBGWjRp6cM2tApHzSYwMWJLAw/photo.jpg,"Amazing planner! I've been using the desktop version linked with my Google calendar and it was working great! Now with the app, it's even better than I thought it would be! I love having all of my appointments in one place and it's so easy to use! I especially enjoy the extra feature of being able to add notes to my tasks! It has helped me stay on task with work, cleaning, and everything else!",5,7,1.0.7,2019-06-18 17:05:07,,,most_relevant,com.artfulagenda.app +Jennifer Butler,https://lh3.googleusercontent.com/-830I_RQGeig/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPE6mZR_XcEnSkE7HTX0RjdFvrI7Q/photo.jpg,"I have always been a paper planner girl, but now that I've tried Artful Agenda I will never go back! I love the custom covers, adorable stickers and the ability to link multiple calendars together in one place! It's extremely functional and I am obsessed with the fact that I can access it straight from my phone (and computer, too!). No more anxiety about losing my paper planner...loving this beautiful, digital way to organize!",5,7,1.0.7,2019-06-17 20:05:00,,,most_relevant,com.artfulagenda.app +Andie Prochnow,https://lh3.googleusercontent.com/a-/AOh14GhZ9FbYbkpMF5A38aOl4eUvjf0U7nqfOF2WNVgKQK0,I love this calendar app! This is the only digital calendar that I have been happy with! I can easily see what I have coming up. I love the 'tasks' and the ability to make my to do list right on the app...and the ability to easily snooze a task ii didn't get to until tomorrow. LOVE IT!,5,3,1.0.3,2019-04-07 02:41:57,We are so thrilled that you are loving Artful Agenda! :),2019-04-07 04:16:12,most_relevant,com.artfulagenda.app +Becky Parkinson,https://lh3.googleusercontent.com/a-/AOh14Gh17ykdFycKjOV4yHAoHx-kr9UgdjAAhOWm4FNpcQ,"I never thought I could switch to a digital planner and yet here I am, my husband is so happy to see everything that used to take him time sifting through my calendar. We're all synced up on Google calendar now and i have the beautiful version for me to see on Artful Agenda with the lists I need to run my box and family!",5,2,1.0.7,2019-06-18 02:56:46,,,most_relevant,com.artfulagenda.app +Kindra Smith,https://lh3.googleusercontent.com/a-/AOh14Gh-rVmJ1joB9yOuNgRd8uzMoDzkF-ydRiNPexMg,"I love this app! It's a perfect replacement for my paper calendar. I love that I can have my schedule, meal plan, tasks to do and more all at the tip of my fingers wherever I am. I'm excited for all the plans they have to add even more awesome features!",5,1,1.0.7,2019-06-17 20:35:50,,,most_relevant,com.artfulagenda.app +Heather Lichtlin,https://lh3.googleusercontent.com/-mDp10fdLQBY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPPU2hwN3UwVI8TAaqMariHXvf1ng/photo.jpg,as someone who is obsessed with trendy planners with pops of color I can't get enough of artful agenda. it combines the convenience of a digital calendar with the joy of having a fun planner to organize everything in. and they ade always adding new features that are awesome!,5,1,1.0.7,2019-06-17 19:52:47,,,most_relevant,com.artfulagenda.app +Barbara Webber,https://lh3.googleusercontent.com/a-/AOh14GjHe2z9NvXuSb_ZK2hCa3D9ZOyUzDByyVuhSXTT,"This is a perfect app solution for as a hybrid between digital and paper calendars. I love the ""extras"" to make is like my paper calendar in visual effects. I also enjoy the ability to combine multiple digital calendars into one! This is perfect!",5,0,,2019-06-17 19:42:51,,,most_relevant,com.artfulagenda.app +Kelly Janssen,https://lh3.googleusercontent.com/a-/AOh14GixO3H_ZOGenbjVZD50IP_H53inHUMi49iBaqp6PQ,This is my dream calendar app! It works perfectly with my Google calendar while also offering list making capabilities as well as meal planning! As a mom and business owner it gives me everything I need in a digital calendar!,5,1,1.0.7,2019-06-17 21:47:30,,,most_relevant,com.artfulagenda.app +Christina Alonzo,https://lh3.googleusercontent.com/-7Y0CWOm1W6o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOhDcxp6Kcr5hqfnUaQzujiq21c0Q/photo.jpg,"I just ADORE this app. It has saved my sanity on more than one occasion. Super simple to use and I love being able to color code things. And the water tracker, my goodness.",5,1,1.0.7,2019-06-18 01:04:47,,,most_relevant,com.artfulagenda.app +Jenna Bubbles,https://lh3.googleusercontent.com/a-/AOh14GgjFWNNrIVtx5rTZ2ET6Hl71IjZ9CcPv38Eh8-vCA,"Omg just what I've been looking for and you can also have it on a desk top so whenever I'm working and can't reach my phone for booking clients this comes in handy, can't wait to see what is coming soon 😍😍 Edit: I went on the computer to see if there is a major difference and OMG there is I totally love the desktop site I cannot wait for more features to come I totally recommend this app to anyone🥰🥰🥰 so in love",5,10,1.1.2,2019-08-01 15:51:22,,,most_relevant,com.artfulagenda.app +Annette Spears,https://lh3.googleusercontent.com/a-/AOh14GgRevgQPpLljjV31e5HZ1pvvZ6o8tHHdkhlfOO1ew,"My Planner system is now complete! I love the web app and now with the mobile app, my on-the -go planning is also on point. The app is fast, beautiful and a perfect planning companion. Awesome!",5,3,1.0.7,2019-06-18 03:00:21,,,most_relevant,com.artfulagenda.app +Nikki Morrell,https://lh3.googleusercontent.com/a-/AOh14GgUpYJB8N8lSWQIPusYGtFNGC9nDkGGt44aPowwEA,"I love that all my calendars are integrated in one spot, work, school, kids, small business. its pretty, functional, tracks meals, to dos and water intake. I'm thrilled to have something pretty to add joy to my day. Thanks Beta Team!",5,3,1.0.2,2019-04-02 09:00:11,We are so happy that you are loving Artful so far! Thanks for giving us feedback and helping us make it even better!,2019-04-03 20:21:04,most_relevant,com.artfulagenda.app +Krystal Lung,https://lh3.googleusercontent.com/a-/AOh14GgakJft81h4QCpybp6MjpRB2yxUYfZRGqdNRshMtg,I love Artful Agenda!!! It is the beauty and organization of a paper planner with the convenience of being online and on my phone! love the new featured that keep rolling out!,5,0,1.0.7,2019-06-17 19:20:57,,,most_relevant,com.artfulagenda.app +Kat Grannemann,https://lh3.googleusercontent.com/-i-beL99jMVU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP9yXSFsB_O-ZdaAda_P7UpBk_G2w/photo.jpg,I have been using Artful Agenda on a desktop this year and love all it's features. Now the app makes it even more accessible. I love planning meals and mapping out my day!,5,0,1.0.7,2019-06-17 20:29:21,,,most_relevant,com.artfulagenda.app +Kristen Victoria Hayes,https://lh3.googleusercontent.com/a-/AOh14GgjOfGiedt2CyQBXOaD68VvhL9xmYY8YzzGmPOMvw,This app is literally like a dream come true. It is girly and has all of the things a paper planner has but electronically. I love it!,5,0,1.0.7,2019-06-19 01:29:49,,,most_relevant,com.artfulagenda.app +Joy to the world,https://lh3.googleusercontent.com/a-/AOh14GgIxM0B_LRrrSao0wP96lqgI8z3ZgTsIfn7eWYvRQ,"Love it so far! Excited for the ""coming soon"" items. I use a paper planner bc digital planners never seem to have the layout I want but so far this seems to be a great replacement!",5,1,1.1.5,2019-09-02 15:09:57,,,most_relevant,com.artfulagenda.app +Susan Stone,https://lh3.googleusercontent.com/a-/AOh14Gg7E5OkLeakw6NQ_aIHUXh8VIzuQ4eKAkjs7ffZvg,love love love this!!!! its the best of both worlds - paper and digital and syncs with all your calendars ! awesome app!,5,0,1.0.7,2019-06-17 23:29:17,,,most_relevant,com.artfulagenda.app +M Valenciano,https://lh3.googleusercontent.com/-MLNGxFbqGCQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOueEvWjkQBDeB41J1K9XXr8Y4Rhw/photo.jpg,nice planner that replaced paper planner. i absolutely love it! no more spending money on Etsy for digital planners that do not give me notifications. this one does!,5,0,,2019-06-17 21:29:15,,,most_relevant,com.artfulagenda.app +Kimberly Dahlberg,https://lh3.googleusercontent.com/a-/AOh14Gh8swo2X6cJgWdKshSZdWvF4IyfeDMbhkwt2FpT6SE,I love that this app combines all of my various calendars (work and personal) to have a quick total view of my day(s). Such a timesaver!!!,5,1,1.0.7,2019-06-17 19:36:03,,,most_relevant,com.artfulagenda.app +rebecca jones,https://lh3.googleusercontent.com/-R1um0q6L9YU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMm9Nuu1Uo6qehtTpDmNZLm29Ubng/photo.jpg,this app is just what I have been looking for - it really feels like a paper planner.,5,0,1.0.7,2019-06-17 19:27:03,,,most_relevant,com.artfulagenda.app +nichole burke,https://lh3.googleusercontent.com/a-/AOh14GhtNhWkGunAn-dmGSPU1xZ5a__Vkig157R0qeWW1Os,This has replaced my paper planner (and I am addicted to it)! The most amazing app and product ever!,5,0,1.0.7,2019-06-17 19:24:08,,,most_relevant,com.artfulagenda.app +Emily Vos,https://lh3.googleusercontent.com/-ZHg2qGO87pk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMet9i74Ow5zcUh14zgao7SnDVHnA/photo.jpg,"Fun cover, stickers and layouts.",5,0,1.2.3,2019-11-04 14:48:23,Thank you so much for your review! We are so happy to have you as a customer and are thrilled that you like Artful Agenda!,2020-01-16 22:34:43,most_relevant,com.artfulagenda.app +Sarah Reade,https://lh3.googleusercontent.com/a-/AOh14GhT_pxPPrMpJCL7HbUpF0cP3uH-1HN80X0QclKA-Tw,This is the perfect calendar app! And its gorgeous to boot!,5,0,1.0.7,2019-06-17 20:08:44,,,most_relevant,com.artfulagenda.app +Brianne Linder,https://lh3.googleusercontent.com/a-/AOh14GjJMzqJNPQHB4YWqqKgMHhD50aRlcWWNhcudg5JnQ,the perfect planner app! I'm so thankful for Artful Agenda!,5,0,1.0.7,2019-06-17 19:31:09,,,most_relevant,com.artfulagenda.app +Heather Paladino,https://lh3.googleusercontent.com/-vhIWjQ9e--I/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPZm_VnadWAJdgL2UV3ggeleCIR8w/photo.jpg,"This app is practical, beautiful, fun, and easy to use! Highly recommend!",5,1,1.0.7,2019-06-18 02:34:05,,,most_relevant,com.artfulagenda.app +Megan Wright,https://lh3.googleusercontent.com/a-/AOh14GgI_kzyHkPPPi4UfdmPWy3CwTYy1tqhL6mYYr6kDw,"I've been a paper planner girl for years! I need the pretty colors and stickers. While I still have a paper planner (that hasn't been touched for months) I needed something on my phone because with 3 kids spaced 6 years apart, we are busy. We homeschool year round as well as appointments and family stuff. Artful Agenda fits everything I need. Update on the fly and it's PRETTY! I keep a tab open on my desktop as well as the app on my phone. ⭐⭐⭐⭐⭐",5,4,1.0.7,2019-06-18 17:42:01,,,most_relevant,com.artfulagenda.app +Breann Fagan,https://lh3.googleusercontent.com/-G0jcCY9bSVo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMMXZTmqR9qB3bEy4HPy_xHhlOqrQ/photo.jpg,Finally something that lets me feel like I'm using a paper planner but I don't accidentally leave it at home!,5,0,1.0.7,2019-06-17 22:41:51,,,most_relevant,com.artfulagenda.app +Raechel Knight,https://lh3.googleusercontent.com/a-/AOh14GiSfY3iqx-Rx6-rcjpuHcchKFBEryD-p7wgWpZRLQ,perfect hybrid of digital and paper...im in love!,5,0,1.0.7,2019-06-17 19:32:08,,,most_relevant,com.artfulagenda.app +Kaelyn Johnson,https://lh3.googleusercontent.com/a-/AOh14GiGarxNROkpS1Q4vGzXeKDn2mk5Xg2Jcz4PTNVOmw,great app. love it,5,0,1.0.7,2019-06-19 23:57:03,,,most_relevant,com.artfulagenda.app +Lisa Wallace,https://lh3.googleusercontent.com/a-/AOh14GirBtIv9No2Xsd_LghW2Q9FEnCskVtIGzUHKkBWWA,i am loving this and plan to buy it. do you intend to add a widget for phones and tablets?,5,0,1.1.4,2019-08-04 02:30:41,,,most_relevant,com.artfulagenda.app +Christine M. Hayes,https://lh3.googleusercontent.com/a-/AOh14GhlY3U5Z0VnNj2Zxr2vyav8L9ks2Y5NaSTbl10oQA,love it. Cant wait for it to do even more.,5,0,1.0.7,2019-06-17 22:46:11,,,most_relevant,com.artfulagenda.app +Tanya Flauss,https://lh3.googleusercontent.com/a-/AOh14Gij_tSti3h0kfe-uLGknr7BeqC8GlMH28Sqx2-e,A fun and beautiful way to organize your life! I'm a huge fan!!!,5,0,1.0.7,2019-06-17 20:19:38,,,most_relevant,com.artfulagenda.app +Jennifer Oakland,https://lh3.googleusercontent.com/a-/AOh14GgCHAfRd6Z4bKwIKXmUs-Bpx_70ob9d57UCTqhntRQ,The best yet!,5,0,1.0.7,2019-06-18 03:19:54,,,most_relevant,com.artfulagenda.app +heather hanscome,https://lh3.googleusercontent.com/-w3hwFjhJu2Y/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOa8heaoxYD1sdFNN8hv-rxdTDreg/photo.jpg,Obsessed.,5,0,1.2.15,2020-02-20 15:37:02,,,most_relevant,com.artfulagenda.app +Nikki Daniels,https://lh3.googleusercontent.com/-fUuXTh4mbPs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMFJEaQWAEj9jB3rP_ulEMTLdsmRw/photo.jpg,Awesome app!!!,5,0,1.1.5,2019-09-06 22:12:10,,,most_relevant,com.artfulagenda.app +Kristal Pence,https://lh3.googleusercontent.com/a-/AOh14Ggf6DR24BovA3s9WVcEx_-1_y33cQMINDhk6Y6A8g,Love this app!! I'm much more organized with it!,5,0,1.2.19,2020-04-04 00:10:47,,,newest,com.artfulagenda.app +heather hanscome,https://lh3.googleusercontent.com/-w3hwFjhJu2Y/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOa8heaoxYD1sdFNN8hv-rxdTDreg/photo.jpg,Obsessed.,5,0,1.2.15,2020-02-20 15:37:02,,,newest,com.artfulagenda.app +Rhea Pepin,https://lh3.googleusercontent.com/-wtAriV9LXeE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNZPl9tSbxmnxqugaMAxDJlISO4bw/photo.jpg,This is perfect. I'm able to get all of my family calendars in one place without having to lug around a traditional agenda. Also they are wonderful at fixing any issues and responding to all emails.,5,2,1.2.15,2020-02-12 04:26:59,,,newest,com.artfulagenda.app +Kit Smith,https://lh3.googleusercontent.com/-kVOyAvB5o00/AAAAAAAAAAI/AAAAAAAAGSU/AAKWJJPJfGSiauJ_5wQ33t20ePJ2L2y8Tw/photo.jpg,I love all of the features. Especially the lists and the stickers.,5,0,1.2.13,2020-01-28 02:18:27,We are so thrilled that you are loving Artful!,2020-01-29 17:23:23,newest,com.artfulagenda.app +Jennifer Wolf,https://lh3.googleusercontent.com/-mxWO8B7wK40/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPvG63BaBxHKpOrtyIan00CUMgM_A/photo.jpg,"Super cute & functional! It syncs with both my personal (google) and work (outlook) calendars, space to plan priorities and meals (weekly/daily views) and LISTS! I don't use the stickers as much, but all the colors for events and background are enough for me right now. Can't wait for the widget to come out someday!",5,5,1.2.13,2020-01-25 14:58:53,,,newest,com.artfulagenda.app +Shawna Daigle,https://lh3.googleusercontent.com/a-/AOh14GgaSyeo35nL9bIz3uXOYJ9ESFoE6bCcKuArkZ7WQA,Love this app!!! It's so easy to use. It helps me be organized with the option of having multiple lists. Plus....it's colorful!!,5,1,1.2.13,2020-01-24 16:20:27,,,newest,com.artfulagenda.app +Kimberly L,https://lh3.googleusercontent.com/a-/AOh14GjkEJuxs3bHfB36BKSuVGJRpl4qTmrgG4wFUQ0u6g,"I absolutely LOVE this app! I am a very OCD person when it comes to being organized and love my planner but really wanted something digital...very portable and environmentally friendly... I found it here! I love the way it syncs in seconds across my devices, phone, iPad, Google home device, and laptop. It’s super user friendly and very customizable! I tried several other digital planners and this one beats them hands down!",5,0,,2020-01-24 00:22:01,,,newest,com.artfulagenda.app +Kalinda Keicher,https://lh3.googleusercontent.com/a-/AOh14GhfdwoFjhoggU0nPsJSdewXptAIE71AQ7PwHMUbBQ,LOVE THIS APP!! This app had saved me so many stressful headaches!! The creator is ALWAYS on top of it and so helpful with everyone's questions. Install this app - you won't be sorry!,5,0,,2020-01-23 23:48:29,,,newest,com.artfulagenda.app +Sarah Jane Kramer,https://lh3.googleusercontent.com/a-/AOh14GibS4n9mocRavf03ALaYKHMqHMqZA8wa4fEvLdSMA,It's a beautiful digital calendar that u can customize with a cover and stickers and fonts - so much prettier than the standard calendar that comes on your phone!,5,1,1.2.13,2020-01-23 22:37:03,,,newest,com.artfulagenda.app +Sarah Layton,https://lh3.googleusercontent.com/a-/AOh14Gh6ceAvt3d_6HIKoGnYqNxolGYxWooTb5GG2PLbnfg,"Love, love, love this app!! I have been a paper planner lover for 30 years and I just switched to Artful Agenda and I couldn't be more pleased. Try it, you'll love it!!!",5,1,1.2.13,2020-01-23 22:13:10,,,newest,com.artfulagenda.app +Candice Arnold,https://lh3.googleusercontent.com/a-/AOh14Gh1WHwMs5kWdqey9dKz7STU22zo9hBesCdMR9qEzA,"I have thoroughly enjoyed my AA ever since I found out about last year! I had been looking for an organizer that I use as a calendar and to handle my many ""things to do"" lists. Thank you Katy for your vision and concept.",5,0,1.2.13,2020-01-23 21:35:10,,,newest,com.artfulagenda.app +Christine Denstedt,https://lh3.googleusercontent.com/a-/AOh14GjzNmFGfKJNpqu5NGzuesUCpugz_mWcciXZh2cy8UU,"I normally don't review apps, but this one is amazing. This digital planner was exactly what I wanted. Give it a try, you won't regret it.",5,1,1.2.13,2020-01-23 20:49:37,,,newest,com.artfulagenda.app +Leah Adams,https://lh3.googleusercontent.com/a-/AOh14GhgVUzr9wdtqMXrQxyNhwK5wfcOP6Rzjvh9uN5C4uE,"This app is beautiful, and has really helped me keep my business, large family, homeschool and church activities all in order! No more chaos for this girl!",5,0,1.2.13,2020-01-23 20:37:06,,,newest,com.artfulagenda.app +Shannon Poore,https://lh3.googleusercontent.com/a-/AOh14Gj02-sasON-i-s4kK4CAZtTyedexjGCDWglem4J0Q,"The perfect marriage of pen & pixel. If you love the features and visuals of a paper planner but stink at keeping up with it, this is for you. It allows me to: -sync to my Google calendars, & color code -switch an event from one Google calendar to another which even Google calendar won't let me do -look at my schedule as a single day, week, or month without having to put items in 3 different places -set and write down goals -track water & meal plan -make lists -check off tasks",5,4,1.2.8,2019-12-10 05:31:46,Thank you so much for your review! We are so happy that you love Artful Agenda!,2020-01-16 22:30:21,newest,com.artfulagenda.app +Emily Vos,https://lh3.googleusercontent.com/-ZHg2qGO87pk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMet9i74Ow5zcUh14zgao7SnDVHnA/photo.jpg,"Fun cover, stickers and layouts.",5,0,1.2.3,2019-11-04 14:48:23,Thank you so much for your review! We are so happy to have you as a customer and are thrilled that you like Artful Agenda!,2020-01-16 22:34:43,newest,com.artfulagenda.app +Traci Cracraft,https://lh3.googleusercontent.com/-lPoT_VFCzDM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMppHYpPsVbDTGw_bu8weDe25Famw/photo.jpg,"So I love this app- I think it's perfect for what I needed, at the time. Sadly my job changed and so did my need for a calendar/planner. Artful Agenda was still great but I found myself no longer using the stickers or really having time to add information to it. I canceled my subscription- they were super easy to work with. I still recommend this app to girls when asked - ❤❤ I love and miss Artful agenda. When my job changes again I'll be back.",5,2,1.2.3,2019-11-02 00:34:05,Thank you so much for your kind review! We really appreciate you and hope to have you as a customer again!,2020-01-16 22:35:51,newest,com.artfulagenda.app +Elizabeth Fortin,https://lh3.googleusercontent.com/a-/AOh14Gjy_-o67jp5RqdTmC5Uz5SWZn3cgAz3NzMW_H_B,"Perfect, I'm loving every element so far ,I love that I can at some point once it's all done use it like my paper planner and sync them with my phone, I hate carrying my paper planner and also having to update my cell calendar , I love and cant wait to see and use all the coming soons I'm so excited ,I'm hoping also a widget will be something to come soon as well so that I can have it open on my phone and not always have to open the app for quick reference. Keep it up",5,2,1.2.3,2019-10-15 20:42:31,,,newest,com.artfulagenda.app +Nikki Daniels,https://lh3.googleusercontent.com/-fUuXTh4mbPs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMFJEaQWAEj9jB3rP_ulEMTLdsmRw/photo.jpg,Awesome app!!!,5,0,1.1.5,2019-09-06 22:12:10,,,newest,com.artfulagenda.app +Joy to the world,https://lh3.googleusercontent.com/a-/AOh14GgIxM0B_LRrrSao0wP96lqgI8z3ZgTsIfn7eWYvRQ,"Love it so far! Excited for the ""coming soon"" items. I use a paper planner bc digital planners never seem to have the layout I want but so far this seems to be a great replacement!",5,1,1.1.5,2019-09-02 15:09:57,,,newest,com.artfulagenda.app +Lisa Wallace,https://lh3.googleusercontent.com/a-/AOh14GirBtIv9No2Xsd_LghW2Q9FEnCskVtIGzUHKkBWWA,i am loving this and plan to buy it. do you intend to add a widget for phones and tablets?,5,0,1.1.4,2019-08-04 02:30:41,,,newest,com.artfulagenda.app +Jenna Bubbles,https://lh3.googleusercontent.com/a-/AOh14GgjFWNNrIVtx5rTZ2ET6Hl71IjZ9CcPv38Eh8-vCA,"Omg just what I've been looking for and you can also have it on a desk top so whenever I'm working and can't reach my phone for booking clients this comes in handy, can't wait to see what is coming soon 😍😍 Edit: I went on the computer to see if there is a major difference and OMG there is I totally love the desktop site I cannot wait for more features to come I totally recommend this app to anyone🥰🥰🥰 so in love",5,10,1.1.2,2019-08-01 15:51:22,,,newest,com.artfulagenda.app +Kaelyn Johnson,https://lh3.googleusercontent.com/a-/AOh14GiGarxNROkpS1Q4vGzXeKDn2mk5Xg2Jcz4PTNVOmw,great app. love it,5,0,1.0.7,2019-06-19 23:57:03,,,newest,com.artfulagenda.app +Kristen Victoria Hayes,https://lh3.googleusercontent.com/a-/AOh14GgjOfGiedt2CyQBXOaD68VvhL9xmYY8YzzGmPOMvw,This app is literally like a dream come true. It is girly and has all of the things a paper planner has but electronically. I love it!,5,0,1.0.7,2019-06-19 01:29:49,,,newest,com.artfulagenda.app +Megan Wright,https://lh3.googleusercontent.com/a-/AOh14GgI_kzyHkPPPi4UfdmPWy3CwTYy1tqhL6mYYr6kDw,"I've been a paper planner girl for years! I need the pretty colors and stickers. While I still have a paper planner (that hasn't been touched for months) I needed something on my phone because with 3 kids spaced 6 years apart, we are busy. We homeschool year round as well as appointments and family stuff. Artful Agenda fits everything I need. Update on the fly and it's PRETTY! I keep a tab open on my desktop as well as the app on my phone. ⭐⭐⭐⭐⭐",5,4,1.0.7,2019-06-18 17:42:01,,,newest,com.artfulagenda.app +Heather Roberts,https://lh3.googleusercontent.com/-EJtbZ8khALk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMNZjBGWjRp6cM2tApHzSYwMWJLAw/photo.jpg,"Amazing planner! I've been using the desktop version linked with my Google calendar and it was working great! Now with the app, it's even better than I thought it would be! I love having all of my appointments in one place and it's so easy to use! I especially enjoy the extra feature of being able to add notes to my tasks! It has helped me stay on task with work, cleaning, and everything else!",5,7,1.0.7,2019-06-18 17:05:07,,,newest,com.artfulagenda.app +Jennifer Oakland,https://lh3.googleusercontent.com/a-/AOh14GgCHAfRd6Z4bKwIKXmUs-Bpx_70ob9d57UCTqhntRQ,The best yet!,5,0,1.0.7,2019-06-18 03:19:54,,,newest,com.artfulagenda.app +Annette Spears,https://lh3.googleusercontent.com/a-/AOh14GgRevgQPpLljjV31e5HZ1pvvZ6o8tHHdkhlfOO1ew,"My Planner system is now complete! I love the web app and now with the mobile app, my on-the -go planning is also on point. The app is fast, beautiful and a perfect planning companion. Awesome!",5,3,1.0.7,2019-06-18 03:00:21,,,newest,com.artfulagenda.app +Becky Parkinson,https://lh3.googleusercontent.com/a-/AOh14Gh17ykdFycKjOV4yHAoHx-kr9UgdjAAhOWm4FNpcQ,"I never thought I could switch to a digital planner and yet here I am, my husband is so happy to see everything that used to take him time sifting through my calendar. We're all synced up on Google calendar now and i have the beautiful version for me to see on Artful Agenda with the lists I need to run my box and family!",5,2,1.0.7,2019-06-18 02:56:46,,,newest,com.artfulagenda.app +Heather Paladino,https://lh3.googleusercontent.com/-vhIWjQ9e--I/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPZm_VnadWAJdgL2UV3ggeleCIR8w/photo.jpg,"This app is practical, beautiful, fun, and easy to use! Highly recommend!",5,1,1.0.7,2019-06-18 02:34:05,,,newest,com.artfulagenda.app +Christina Alonzo,https://lh3.googleusercontent.com/-7Y0CWOm1W6o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOhDcxp6Kcr5hqfnUaQzujiq21c0Q/photo.jpg,"I just ADORE this app. It has saved my sanity on more than one occasion. Super simple to use and I love being able to color code things. And the water tracker, my goodness.",5,1,1.0.7,2019-06-18 01:04:47,,,newest,com.artfulagenda.app +Susan Stone,https://lh3.googleusercontent.com/a-/AOh14Gg7E5OkLeakw6NQ_aIHUXh8VIzuQ4eKAkjs7ffZvg,love love love this!!!! its the best of both worlds - paper and digital and syncs with all your calendars ! awesome app!,5,0,1.0.7,2019-06-17 23:29:17,,,newest,com.artfulagenda.app +Christine M. Hayes,https://lh3.googleusercontent.com/a-/AOh14GhlY3U5Z0VnNj2Zxr2vyav8L9ks2Y5NaSTbl10oQA,love it. Cant wait for it to do even more.,5,0,1.0.7,2019-06-17 22:46:11,,,newest,com.artfulagenda.app +Breann Fagan,https://lh3.googleusercontent.com/-G0jcCY9bSVo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMMXZTmqR9qB3bEy4HPy_xHhlOqrQ/photo.jpg,Finally something that lets me feel like I'm using a paper planner but I don't accidentally leave it at home!,5,0,1.0.7,2019-06-17 22:41:51,,,newest,com.artfulagenda.app +Kelly Janssen,https://lh3.googleusercontent.com/a-/AOh14GixO3H_ZOGenbjVZD50IP_H53inHUMi49iBaqp6PQ,This is my dream calendar app! It works perfectly with my Google calendar while also offering list making capabilities as well as meal planning! As a mom and business owner it gives me everything I need in a digital calendar!,5,1,1.0.7,2019-06-17 21:47:30,,,newest,com.artfulagenda.app +M Valenciano,https://lh3.googleusercontent.com/-MLNGxFbqGCQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOueEvWjkQBDeB41J1K9XXr8Y4Rhw/photo.jpg,nice planner that replaced paper planner. i absolutely love it! no more spending money on Etsy for digital planners that do not give me notifications. this one does!,5,0,,2019-06-17 21:29:15,,,newest,com.artfulagenda.app +Kindra Smith,https://lh3.googleusercontent.com/a-/AOh14Gh-rVmJ1joB9yOuNgRd8uzMoDzkF-ydRiNPexMg,"I love this app! It's a perfect replacement for my paper calendar. I love that I can have my schedule, meal plan, tasks to do and more all at the tip of my fingers wherever I am. I'm excited for all the plans they have to add even more awesome features!",5,1,1.0.7,2019-06-17 20:35:50,,,newest,com.artfulagenda.app +Kat Grannemann,https://lh3.googleusercontent.com/-i-beL99jMVU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP9yXSFsB_O-ZdaAda_P7UpBk_G2w/photo.jpg,I have been using Artful Agenda on a desktop this year and love all it's features. Now the app makes it even more accessible. I love planning meals and mapping out my day!,5,0,1.0.7,2019-06-17 20:29:21,,,newest,com.artfulagenda.app +Tanya Flauss,https://lh3.googleusercontent.com/a-/AOh14Gij_tSti3h0kfe-uLGknr7BeqC8GlMH28Sqx2-e,A fun and beautiful way to organize your life! I'm a huge fan!!!,5,0,1.0.7,2019-06-17 20:19:38,,,newest,com.artfulagenda.app +Sarah Reade,https://lh3.googleusercontent.com/a-/AOh14GhT_pxPPrMpJCL7HbUpF0cP3uH-1HN80X0QclKA-Tw,This is the perfect calendar app! And its gorgeous to boot!,5,0,1.0.7,2019-06-17 20:08:44,,,newest,com.artfulagenda.app +Jennifer Butler,https://lh3.googleusercontent.com/-830I_RQGeig/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPE6mZR_XcEnSkE7HTX0RjdFvrI7Q/photo.jpg,"I have always been a paper planner girl, but now that I've tried Artful Agenda I will never go back! I love the custom covers, adorable stickers and the ability to link multiple calendars together in one place! It's extremely functional and I am obsessed with the fact that I can access it straight from my phone (and computer, too!). No more anxiety about losing my paper planner...loving this beautiful, digital way to organize!",5,7,1.0.7,2019-06-17 20:05:00,,,newest,com.artfulagenda.app +Heather Lichtlin,https://lh3.googleusercontent.com/-mDp10fdLQBY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPPU2hwN3UwVI8TAaqMariHXvf1ng/photo.jpg,as someone who is obsessed with trendy planners with pops of color I can't get enough of artful agenda. it combines the convenience of a digital calendar with the joy of having a fun planner to organize everything in. and they ade always adding new features that are awesome!,5,1,1.0.7,2019-06-17 19:52:47,,,newest,com.artfulagenda.app +Barbara Webber,https://lh3.googleusercontent.com/a-/AOh14GjHe2z9NvXuSb_ZK2hCa3D9ZOyUzDByyVuhSXTT,"This is a perfect app solution for as a hybrid between digital and paper calendars. I love the ""extras"" to make is like my paper calendar in visual effects. I also enjoy the ability to combine multiple digital calendars into one! This is perfect!",5,0,,2019-06-17 19:42:51,,,newest,com.artfulagenda.app +Kimberly Dahlberg,https://lh3.googleusercontent.com/a-/AOh14Gh8swo2X6cJgWdKshSZdWvF4IyfeDMbhkwt2FpT6SE,I love that this app combines all of my various calendars (work and personal) to have a quick total view of my day(s). Such a timesaver!!!,5,1,1.0.7,2019-06-17 19:36:03,,,newest,com.artfulagenda.app +Raechel Knight,https://lh3.googleusercontent.com/a-/AOh14GiSfY3iqx-Rx6-rcjpuHcchKFBEryD-p7wgWpZRLQ,perfect hybrid of digital and paper...im in love!,5,0,1.0.7,2019-06-17 19:32:08,,,newest,com.artfulagenda.app +Brianne Linder,https://lh3.googleusercontent.com/a-/AOh14GjJMzqJNPQHB4YWqqKgMHhD50aRlcWWNhcudg5JnQ,the perfect planner app! I'm so thankful for Artful Agenda!,5,0,1.0.7,2019-06-17 19:31:09,,,newest,com.artfulagenda.app +rebecca jones,https://lh3.googleusercontent.com/-R1um0q6L9YU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMm9Nuu1Uo6qehtTpDmNZLm29Ubng/photo.jpg,this app is just what I have been looking for - it really feels like a paper planner.,5,0,1.0.7,2019-06-17 19:27:03,,,newest,com.artfulagenda.app +nichole burke,https://lh3.googleusercontent.com/a-/AOh14GhtNhWkGunAn-dmGSPU1xZ5a__Vkig157R0qeWW1Os,This has replaced my paper planner (and I am addicted to it)! The most amazing app and product ever!,5,0,1.0.7,2019-06-17 19:24:08,,,newest,com.artfulagenda.app +Krystal Lung,https://lh3.googleusercontent.com/a-/AOh14GgakJft81h4QCpybp6MjpRB2yxUYfZRGqdNRshMtg,I love Artful Agenda!!! It is the beauty and organization of a paper planner with the convenience of being online and on my phone! love the new featured that keep rolling out!,5,0,1.0.7,2019-06-17 19:20:57,,,newest,com.artfulagenda.app +Andie Prochnow,https://lh3.googleusercontent.com/a-/AOh14GhZ9FbYbkpMF5A38aOl4eUvjf0U7nqfOF2WNVgKQK0,I love this calendar app! This is the only digital calendar that I have been happy with! I can easily see what I have coming up. I love the 'tasks' and the ability to make my to do list right on the app...and the ability to easily snooze a task ii didn't get to until tomorrow. LOVE IT!,5,3,1.0.3,2019-04-07 02:41:57,We are so thrilled that you are loving Artful Agenda! :),2019-04-07 04:16:12,newest,com.artfulagenda.app +Nikki Morrell,https://lh3.googleusercontent.com/a-/AOh14GgUpYJB8N8lSWQIPusYGtFNGC9nDkGGt44aPowwEA,"I love that all my calendars are integrated in one spot, work, school, kids, small business. its pretty, functional, tracks meals, to dos and water intake. I'm thrilled to have something pretty to add joy to my day. Thanks Beta Team!",5,3,1.0.2,2019-04-02 09:00:11,We are so happy that you are loving Artful so far! Thanks for giving us feedback and helping us make it even better!,2019-04-03 20:21:04,newest,com.artfulagenda.app +Eliran Gonen,https://lh3.googleusercontent.com/-dnjTrKTW_bs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP7Vgq8jiUCYXoxKNb4SS00IYdZpg/photo.jpg,Used it until simple backup was premiumized. Restore wont work between different versions unless you modi-hack the file. Author would not tell you that you can do it though if you ask his help ! . Restore dont recognize my backup file at all so all my lists are basically inaccessible now. Will never install this again and I suggest anyone who values his data not to !,1,28,2.1.0,2020-02-19 11:00:44,"Eliran, manual backup is still free. Tasks is a hobby project of mine with all non cloud features offered for free without ads. It simply relies on donations and my spare time to move forward. Other users asked like normal humans and emailed me instead of just getting angry and changing their reviews. If you need help you could just email me 🤷‍♂️",2020-02-19 11:14:50,most_relevant,com.tasks.android +Johninwinky,https://lh3.googleusercontent.com/-FR_Pe3uVuKs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMt9fz8yWVYX52JMmvpDgGrkerWew/photo.jpg,Too complicated and time consuming to set a task. No way to repeat on a monthly basis and specific day of the week at the same time. Not worth the time it takes to use it. Uninstalling.,1,0,2.1.0,2020-04-04 13:39:14,"Johninwinky, apologies my app was too complicated for you. Tasks is a hobby project of mine with all features offered for free without ads. Most users tell me how simply & intuitive it is. For quick task input simply use quick add (bottom of screen). If you required help setting up repeating tasks you could have looked at the help or emailed me",2020-04-04 14:28:23,most_relevant,com.tasks.android +Thippesh S,https://lh3.googleusercontent.com/a-/AOh14Ghv6gpy46iLd8kD8RlJwDpw-kNzFxc-tEikPH-cQg,"Definitely I appropriate your hard work and this app different from all those big guys apps, but question is if someone lost the phone or uninstalled the app, what is the purpose this app?, So i'm just suggesting, > you can limit the how many task can be added by users without premium >Opt. In Ads for auto backup",1,0,2.1.0,2020-02-13 09:10:07,"Thippesh, there is a manual backup in Settings. Servers, storage etc. around the world cost money. I cannot afford to give this for free. Why you you think I should pay for your usage? If you were me would you pay for everyone? You could just make a manual backup or ay for the service you use/want instead of moaning that it's not free.",2020-02-13 09:43:52,most_relevant,com.tasks.android +suraj singh,https://lh3.googleusercontent.com/a-/AOh14Gg4rH7bqdV2hzuxn5ybddLiMViMIziJMbus0JOvFQ,When i set to remind me daily it shows even in past and it doesn't remind me kindly let me know the way to set it proper,1,0,2.3.2,2020-04-03 04:06:46,"Suraj, unfortunately this is an issue with your device not Tasks. Vivo add very aggressive power saving to their devices which breaks the standard Android alarm manager functions. You will have seen a warning dialog telling you this. Here is the link (also available via the Help button in the main menu): https://mytasksapp.com/help/faqs",2020-04-03 08:11:29,most_relevant,com.tasks.android +Holly James,https://lh3.googleusercontent.com/-PgT-ze11eGA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPuPYKgkCDCHv032VqJgT86ChkieQ/photo.jpg,"Has no sign in option only export and the file won't open, so unless you have an IT friend you lose your file which meant all the stuff I put in tasks has gotten lost. If the developer revolves this is I will edit this review.",1,10,2.1.0,2020-02-17 01:03:26,"Holly, this simply isn't true. If you have a backup file you have never lost your data. You could simply have done me the courtesy of emailing me directly (tasks.list.app@gmail.com) so I could help you. Why would you try to ask an ""IT"" friend instead of simply asking the developer directly? Bizarre!",2020-02-17 07:48:55,most_relevant,com.tasks.android +John Walker,https://lh3.googleusercontent.com/-XD4RTvP4ZWs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNEEnfLMcQh1XckBewp4EpwNi62JQ/photo.jpg,Subscription only. No outright purchase. Too bad. Seems like a nice app.,1,0,2.1.0,2020-02-20 22:35:31,"John, Tasks is a hobby project fo mine with the most popular suggestions added over time with all non cloud features (optional) offered for free without advertising. It simply relies on subscriptions and my spare time to move forward. Servers, storage etc. cost me money each month you use them. I cannot afford to pay for your use",2020-02-21 08:39:51,most_relevant,com.tasks.android +Mitya,https://lh3.googleusercontent.com/a-/AOh14GizazBOhBYEBcIHGJA86rilE2T3z9rs-Wa3dpbrpFc,An Average Task manager that asks 16GBP for the annual subscription ? No thanks and there are better free and paid alternatives that are better organised.,1,38,2.1.0,2020-02-03 20:56:23,"Mitya, Tasks Premium is optional. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. I offer all other features for free without advertising. It has taken hundreds of hours to write, support & improve Unfortunately servers and storage etc. cost money and I cannot afford to give everything for free",2020-02-03 21:18:04,most_relevant,com.tasks.android +Krasimir Kazakov,https://lh3.googleusercontent.com/a-/AOh14Ggwxut5tclqHR6ZBdcIF2QGUk2AryANJ4_XRwmQlEU,"Monthly payments for a todo app? Not gonna happen, thank you.",1,0,2.2.0,2020-03-11 21:39:46,"Krasimir, Tasks Is a hobby project of mine with all non cloud features offered for free without advertising. It has taken hundreds of hours to write, improve and support. Cloud services use servers, storage etc. around the world cost me money each month you use it. I do not sell/share your data and so this is the only way to support my work",2020-03-11 22:09:34,most_relevant,com.tasks.android +Kimosh Mosh,https://lh3.googleusercontent.com/-eGaH6b7HeYI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNUlB2aG93X43YDdXub0HjQSPTi-w/photo.jpg,Scheduling reminder intervals does not work!!!!,1,0,2.2.0,2020-03-05 17:19:06,"Kimosh, apologies if you're having an issue. However, I have the same device (Pixel 2 XL) as one of.my test devices and reminders definitely do work. Maybe you could email me with more details of what you have tried so I can help you (tasks.list.app@gmail.com). Thanks, Steve",2020-03-05 17:28:41,most_relevant,com.tasks.android +God Zoo,https://lh3.googleusercontent.com/a-/AOh14GhMzUq1I9bw2aULMt1SpK9UtgxEMTqJMFfBj0ylL_8,I remember the days when you bought an app and owned it.. Now every developer wants to lock you into a lifetime subscription process where they can charge you for eternity. I simply refuse to rent my own notepad.,1,38,2.0.0,2020-01-29 05:31:53,"Tasks Premium is completely optional with all other features offered for free without advertising. Maybe you'd prefer ads? It has taken hundreds of hours to write, support and improve. Premium requires servers, storage etc. around the world which cost me money every month. A one time fee simply isn't a workable solution!",2020-01-29 06:45:55,most_relevant,com.tasks.android +Bhushan Firake,https://lh3.googleusercontent.com/-RBzy4vY94J0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOevDhHLWW582PDu_ErACto4zY63g/photo.jpg,"there are better and simple other apps which provide automatic online sync or backup feature like Micr_oso_ft's to do, and many other. why people think this app easy, it's not. I donated on this app and wasted.",1,1,1.34.4,2019-11-07 15:20:49,"Hi Bhushan, Tasks is a community driven hobby project of mine with the most popular suggestions added over time with all features and support offered for free without advertising. It simply relies on donations and my spare time to move forward. Thanks for your donations :) I am currently working on automatic cloud backup. I hope this helps, Steve",2019-11-07 16:05:43,most_relevant,com.tasks.android +Bob Bennett,https://lh3.googleusercontent.com/-i2c1rkoZpic/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPlQW46mNITBck09DkeU25md7atRQ/photo.jpg,"Dont work, the best it got was the vibration notification worked. I can't get any sound at all from this app.",1,1,2.0.0,2020-02-02 18:26:33,"Bob, apologies you had an issue. However, this is an problem with your device not Tasks. Unfortunately Samsung add very aggressive power saving to their devices which breaks the standard Android alarm manager functions. Please check your power settings and checkout the online help: https://mytasksapp.com/help/faqs. I hope this helps, Steve",2020-02-02 18:32:34,most_relevant,com.tasks.android +P C,https://lh3.googleusercontent.com/-ktV6oIGE6qg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNieXGxpKSufXtsrJ8HffU6jA9nnw/photo.jpg,"Would be nice if you could import tasks from other applications, but not only is that a problem, but importing from a previous version of Tasks is impossible too? Nevermind. I'll just stick to what I got.",1,1,2.0.0,2019-11-22 17:43:18,"You can import data from Wunderlist. There is no common data format between apps and so what you're asking is not easy, but from your feedback I'm sure you knew that. If you have a backup you've never lost your data, you could have simply emailed me so I could help you import it, instead you've gone down the ungrateful, complaining route. Your loss",2019-11-22 17:55:27,most_relevant,com.tasks.android +Mugenman,https://lh3.googleusercontent.com/a-/AOh14GghbFt2XEUYBAzJq6ycmm8EFjORwemHeSL0-kuFYA,"I deleted a list but I still get alarms for one of the tasks in that list, even after restarting my phone.",1,2,2.0.0,2020-02-04 19:56:59,"Hi Mugenman, apologies you've hd an issue with my app. You could have simply done me the courtesy of contacting me directly so I could've helped you .Did you try upgrading to the latest version? Thanks, Steve",2020-02-04 20:43:26,most_relevant,com.tasks.android +Gita Elangbam,https://lh3.googleusercontent.com/a-/AOh14GhqfIiNM3H-wGU3Z3MCoL1fnt0QQB6Bh4nqQAKNnQ,"Yes, I started with a 3 star review, but I did drop it down to a 1 star review. Why? The developed asked me to send a screenshot of a spontaneous mismatch between what I typed and what the app accepted as my task. As per every ""busy"" developer, he requested for me to email so that he quietly resolves the problem. I will not do so; he may take off my review, but every user be warned: You may retype your tasks with this app only for the program to clear it when exitting the edit menu.",1,2,2.0.0,2020-01-07 05:16:58,"Hi Gita, apologies you're having an issue. You are the only user to report anything like this and I cannot reproduce it. Maybe you would do me the courtesy of emailing me with the steps to reproduce it so I can help you. Thanks, Steve EDIT: Tasks is a hobby project of mine and has relied on the help of users. Without help how will things improve?",2020-01-07 07:50:02,most_relevant,com.tasks.android +Erwin Djatmiko,https://lh3.googleusercontent.com/a-/AOh14GhEffvxeGWnRpaHRRXZysHrs6kjZJjC6w_iihVgSQ,"Edit: I'm using this application many year since release. And i'm loved it and donate, Now you make this application subscription $15 a year? Really?? Not happy with that...",1,1,1.34.4,2019-11-22 11:47:28,"HI Erwin, I have offered all features and support for free for 2 years now. Tasks is a hobby project of mine and has taken hundreds of hours to write. All features are still free. Premium is optional and requires a lot of hardware around the world which I simply cannot afford to run on donations alone. Would you be happier with adverts? Steve",2019-11-22 11:52:07,most_relevant,com.tasks.android +B,https://lh3.googleusercontent.com/-p8xJkDfKkWI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMmfQRa2K65wzCUcTWO30DGOcAMDA/photo.jpg,"Garbage. The one time I can't remember if i checked the notification for taking my medication or not, there was no way to go and see which days I checked it or not. What's the point of that?",1,21,1.34.3,2019-10-24 23:56:38,"Tasks is a community driven hobby project of mine with the most popular suggestions added over time. All features and support are offered for free without advertising and it simply relies on donations and my spare time to move forward. Tasks is not designed to be a medication app, there are thousands of those on the PlayStore. Thanks, Steve",2019-10-25 08:16:53,most_relevant,com.tasks.android +Papa Zote,https://lh3.googleusercontent.com/-Vfd6CpU0l0U/AAAAAAAAAAI/AAAAAAAAB3s/AAKWJJNDgLfO5Mltxl-eVzEo4_fcGXHQkQ/photo.jpg,A simple app that could not be more complicated to operate.,1,0,2.0.0,2020-01-02 15:13:09,"Papa, apologies my app was too complicated for you. When you first open Tasks there is context based help. In the main menu there is a ""Help"" button with a full guide. Tasks is a hobby project of mine with all features offered for free without advertising. Maybe you could be a little more specific? What was too complicated for you? Thanks, Steve",2020-01-02 15:38:49,most_relevant,com.tasks.android +Jakov Babic,https://lh3.googleusercontent.com/a-/AOh14Gi1DMhgQG0qtaGETYGCxu2UUfrJnWu03SzhP243,Lag all the time,1,0,2.2.0,2020-03-09 17:27:10,"Jakov, apologies you're having an issue with my app. You are the first to report any issues like this. Please email (tasks.list.app@gmail.com) with more details of when it happens and how to reproduce the problem. A short video would also really help so I can see the problem on your device. Thanks, Steve",2020-03-09 17:37:21,most_relevant,com.tasks.android +Venturepreneur 2018,https://lh3.googleusercontent.com/-ZFahhz-Ubm8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMU4t9c6N0rvDLC_dyQ2Qd-kOX3ZA/photo.jpg,Always missing the notifications even when it is not optimized and restricted in background.,1,19,2.0.0,2019-12-12 07:13:39,This is an issue with your device not Tasks. Some manufacturers add very aggressive power saving to their devices which interferes with the standard Android alarm manager functions. Maybe in future you would do app developers the courtesy of emailing them first. Steve,2019-12-12 10:01:58,most_relevant,com.tasks.android +PRIYANSHU MISHRA,https://lh3.googleusercontent.com/a-/AOh14GjgAXnskm97J_vz2u8L_SNx1QdpjCn0zs-x2Wpe,Need to make more convinient I just set 3 time alarm for the task but it didnt work,1,3,2.0.0,2020-01-16 14:10:23,"Priyanshu, apologies you had an issue. This is an issue with your device not Tasks. Samsung add very aggressive power saving to their devices which breaks the standard Android alarm manager functions. Please checkout the online help for details: https://mytasksapp.com/help/faqs#notifications. I hope this helps Steve",2020-01-16 14:11:49,most_relevant,com.tasks.android +Keleb Gadol,https://lh3.googleusercontent.com/a-/AOh14GhUdI9bio0C8GXWji7AxUSUrbJkFSYj2pVlob-xAA,"I removed this paid app. I missed about a dozen events over the few months I owned this. I would look at the app a few minutes after an event was supposed to pop up, and it showed that it had missed. I'm trying out Simple Calendar, which testing seems to work better.",1,0,1.33.3,2020-02-02 00:12:59,"Kaleb apologies you had an issue with my app. However, this is an issue with your device not Tasks. LG add.very aggressive power saving to their devices which breaks the standard Android alarm manager functions. Check your power settings for Tasks or checkout the online help: https://mytasksapp.com/help/faqs. I hope this helps, Steve",2020-02-02 08:10:24,most_relevant,com.tasks.android +Plamen Hristov,https://lh3.googleusercontent.com/a-/AOh14Gj0Gz3kbB_7xQadGGfgamadSRB4SWSCEGathVd9kQ,"Dear developers, thank you for deleting all my reminders after updating the app! It was not pleasant at all, believe me!",1,5,1.34,2019-10-13 11:21:11,"Dear Plamen, thank you for your sarcasm! Reminders did not change in the last update & so this is not possible. You are the only one to have this issue and all delete operations are protected by user actions. You could have done me the courtesy of contacting me directly so I could help instead of writing sarcastic rubbish. I hope this helps, Steve",2019-10-13 11:30:26,most_relevant,com.tasks.android +Depoit T,https://lh3.googleusercontent.com/a-/AOh14Gj_9yCVuZ7zofL9qKWeZW9ahvhMmvptvfd8rDxOs0A,"I do not like the functionality of the app. I found it is very easy to delete a sub list. But if you create a second list I could not figure out how to delete it after going through all settings. I also did not like the fact that you can only add one item within the sub list. Other people may be okay with these nuances, but for me it's not. I only use this app for about a half an hour and then deleted it.",1,0,,2019-11-17 17:02:42,"Hi Depoit, to clarify a few things. To delete a sub list simply open the sub list menu (3 dots top right) and click delete. If there is only 1 sub list the parent list will also be deleted. I believe you are getting confused between sub lists and tasks. I offer all support for free. You could have emailed me directly for help. Steve",2019-11-17 17:40:57,most_relevant,com.tasks.android +Nora Pitz,https://lh3.googleusercontent.com/a-/AOh14GhUXlSRZiG6CYnSuA3hCR4TuhxybTeiNlI_3tR5eb0,Recurrent tasks don't work,1,2,1.34.4,2019-11-16 03:24:33,"Hi Nora, this is an issue with your device not Tasks. Unfortunately some manufacturers add very aggressive power saving to their devices which interferes with the standard Android alarm manager functions. Please check all power optimisation settings and enable where appropriate. I hope this helps, Steve",2019-11-16 09:07:37,most_relevant,com.tasks.android +K Lyons,https://lh3.googleusercontent.com/a-/AOh14GjOcfeLtpNaUD63ntOgkhmz2dxhcRroJyScUDow,"Used to work ok, now, something is skrewy. Now, if I restart my phone, EVERY SINGLE task comes up as a notification, never mind of when the tasks were/are due, and the schedule I set. Now, after I dismiss tasks, they pop up again, ignoring its schedule. Also, wish app could remember which day the task is for. If you have a daily task that you complete after midnight, it thinks you completed it early and won't remind you later that day. Finally, wish app opened to an overview of all lists.",1,4,1.31,2019-08-28 10:39:29,"Hi, apologies you're having an issue! You could have contacted me directly first for help? How do you normally dismiss notifications? I added a feature to automatically re-display notifications that were displayed before your turned off your phone. Thanks, Steve",2019-08-28 10:56:05,most_relevant,com.tasks.android +Agnes M.,https://lh3.googleusercontent.com/-W5bpRdTVzIE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPN6AleCZOtcTn2QU3-qAvSPp3L3Q/photo.jpg,I just removed this app! I missed several events in the last couple of months because it did not notify me!!!!!,1,0,1.25,2020-02-27 15:53:06,"Agnes, apologies you missed your events. However, this is an issue with your device not Tasks. Unfortunately Samsung add very aggressive power saving to their devices which breaks the standard Android alarm manager functions that Tasks relies on. Checkout the online help: https://mytasksapp.com/help/faqs#notifications I hope this helps, Steve",2020-02-27 16:09:34,most_relevant,com.tasks.android +Fernando Moura,https://lh3.googleusercontent.com/-JoPr8y46IjA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOearcsXebbImTr3MFM7VnJ3ct9WA/photo.jpg,"after few months it started not checking the task. I mean I check and few hours later it is unchecked. it should be cleared and the next date for the same task should be displayed, example: task 1 to date 01/jan/2019 and repeat task 1 to date 01/feb/2019. after checking the task for January the task for February should be displayed, but after some time the task for January is unchecked.",1,2,1.26,2019-05-08 11:43:16,"Hi Fernando, apologies you're having an issue with my app. Some help is available on my websites FAQs: https://mytasksapp.com/help/faqs. Please contact me directly with more details so I can help. Thanks, Steve",2019-05-08 13:10:05,most_relevant,com.tasks.android +Udhaya Bala,https://lh3.googleusercontent.com/a-/AOh14Gj6CP0g1bkZSiqv9kY9uNgRkzb6CNchemoU4vjetw,Can't rely for reminders. No alarm comes even if I select Alarm. Because of relying on this app I missed an important task.,1,0,1.33.3,2019-11-08 04:17:35,"Hi Udhaya, this is an issue with your device not Tasks. Unfortunately OnePlus add very aggressive power saving to their devices. This interferes with the standard android alarm manager functions. Please check all power optimisation settings related to Tasks app and enable where appropriate. I hope this helps, Steve",2019-11-08 08:48:23,most_relevant,com.tasks.android +Tanner Chrishop,https://lh3.googleusercontent.com/-cZ2JphhYXe4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP8HoRG_QFvG3C81m977f1PvdPNNg/photo.jpg,"Needlessly compicated for a to do list app. try to add a new item to your list and youll accidentally add a new list. try to swipe to switch between lists and youll remove an item from your list. What did you just remove? Hard to say, cant seem to find an undo option among the numerous other options.",1,0,1.25,2019-03-03 15:20:38,"Hi Tanner, Tasks is a community driven hobby project of mine. To add a new list, you must be tapping ""New list""? To add a new task you simply tap the yellow plus icon. +Swipe to delete can be disabled in settings. There is an undo action at the bottom of your screen whenever you delete a list/task. I hope this helps, Steve",2019-03-03 15:53:18,most_relevant,com.tasks.android +Ingrid Guzman,https://lh3.googleusercontent.com/-SAQAj5FpQe8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNhvWFSDqAH9yEOpQFFwuB23-iDJA/photo.jpg,"at the beginning was good but i wait two months later and the app keep putting back as not done reminders that i mark as done already and the other task that have date and mark as priority don't even showed me, if you can fix that ill stay with the app otherwise i will keep looking... sadly the only remid app that work good was the apple one but i don't have iphone anymore so? came on please make this one work",1,124,1.25,2019-02-09 13:29:01,Are these recurring tasks? Recurring tasks will be reset at midnight ready to be completed again. Checkout my website for details: https://mytasksapp.com/help/faqs. Is this what you meant? Steve,2019-02-09 16:00:18,most_relevant,com.tasks.android +MARY JANE,https://lh3.googleusercontent.com/a-/AOh14GjimXyudMYWvIKhcaKJMvijnDlp_qbLby7YMBFNVdE,I cant even get on thing on the opening page much less start a list??,1,1,,2020-01-15 14:49:14,"Hi Mary, apologies if you're having an issue. I'm not 100% sure I understand? You are the first to report what sounds like a serious issue. Could you do me the courtesy of emailing me (tasks.list.app@gmail.com) with a screen shot of the problem? Thanks, Steve",2020-01-15 15:59:04,most_relevant,com.tasks.android +Shana G,https://lh3.googleusercontent.com/a-/AOh14Girw12M0itJvFRS0GhAe5HK3is23VkiU8UzcB8nXGM,"Thought this was a great app until I realized it doesn't get rid of the ""checked"" daily tasks to remind you of the new daily tasks... and that is exactly what I was using this for... DAILY tasks I need done. When I check ""remove checked tasks"" it does NOTHING and those checked tasks just stay there. :(",1,0,1.25.1,2019-03-24 18:45:43,"Hi Shana, apologies you're having an issue with my app. Completed tasks will not be remove by the ""remove checked"" if they are recurring and the next date it valid. Tasks is a community driven hobby project of mine. Maybe an extra setting would help you? Please contact me directly if you need any extra assistance. Thanks, Steve",2019-03-24 18:56:30,most_relevant,com.tasks.android +Lourens du Toit,https://lh3.googleusercontent.com/a-/AOh14GiRaXPeZlYxwwjxosJWKN3az2x4hGbZ6K4dm9WaPw,Don't use this unless you sync your tasks. The backup and restore functionality from one device to the next is bad.,1,0,1.33.3,2019-10-11 15:14:47,"Hi, if you have a backup file you have never lost your data. Please do not tell other users things are broken when you do not understand how they work. You could have done me the courtesy of contacting me directly so I could help you. Thanks, Steve",2019-10-11 15:21:31,most_relevant,com.tasks.android +Ananta Sood,https://lh3.googleusercontent.com/a-/AOh14GiYYvNN4zsVlTP7m7uCparvUA3xqbZzqpe3h7xRPw,"It doesn't ring the alarm at the right time. only when I open my phone, it starts ringing. useless for me because I want it to ring at the right time and remind me on my realme phone. Highly disappointed! :(",1,144,1.28,2019-06-23 06:11:50,"Hi Ananta, apologies you're having an issue with my app. Unfortunately Oppo add very aggressive power saving to their devices. This can interfere with the standard Android alarm manager functions. Please check all power optimisation settings and enable Tasks app where appropriate. I hope this helps, Steve",2019-06-23 07:33:15,most_relevant,com.tasks.android +Shannan Rivers,https://lh3.googleusercontent.com/a-/AOh14Gh_Zc2fn3vpSjkCbyeOqj5hglCYPExQK9tpU5Qtkg,Why was I charged $1.49 for this app? I was charged 2/4/2020.,1,0,,2020-03-20 12:45:12,"Hi Shannan, Tasks is a community driven hobby project of mine with all non cloud features offered for free without advertising. Thank you for signing up to Tasks Premium and helping support my project. Steve",2020-03-20 13:46:49,most_relevant,com.tasks.android +Cornell Farlin,https://lh3.googleusercontent.com/-yDdRWa3Yy2U/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPtYZ4VDStFMBNMz3INrVo2JcZRUg/photo.jpg,"I set a reminder to do a task daily at a certain time, however, this app does not retain the same time on the daily reminders. it will remind you and set the task to do but at an earlier time.",1,3,1.24.2,2019-01-26 17:04:30,"Hi Cornell, apologies you had an issue with my app. I have an S8 as a test device and have not seen any issues. Can you contact me directly so I may understand the problem and get this fixed. Thanks, Steve",2019-01-26 18:21:29,most_relevant,com.tasks.android +Zh aa,https://lh3.googleusercontent.com/-_EciXcHHtdo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPBoHuWI8ja2NmjdOi0lNVldUB_JQ/photo.jpg,I don't get a notification or any alarm after i set the due date reminder at all. I've already tried a couple of times how do i fix this. My settings also allow notifications for the app. Also how do i set widget on home screen thanks.,1,2,1.28,2019-06-21 12:03:14,"Hi, unfortunately Oppo add very aggressive power saving to their devices. This interferes with the standard Android alarm manager functions. Please check all power optimisation settings related to Tasks app and enable where appropriate. I hope this helps, Steve",2019-06-21 12:46:36,most_relevant,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Looked good, but wasn't. After installing Tasks, my keyboard stopped appearing for all my apps. It was only when I removed Tasks (as a last resort) that the keyboard appeared again.",1,2,,2019-03-05 10:19:09,"Hi, I have no idea why that would happen. Could you install my app again to see if it happens again and let me know. I have tested my app on Samsung devices without issue. Thanks, Steve",2019-03-05 11:56:23,most_relevant,com.tasks.android +John Prinny,https://lh3.googleusercontent.com/a-/AOh14GiF0hDf_EcrfofcRXYYqskBwHIP3S78UaLIHZ8k,Well it's broken now. I haven't messed with any settings in or out of the app and now there's no alarm. It just vibrates. I checked and it all still has the alarms and correct sounds yet it only vibrates when it shows a reminder. Why do these reminder apps always break?,1,42,1.33,2019-09-05 22:12:36,"Hi John, simply turn up the volume :) it's due to phone manufacturers messing with standard Android in unexpected ways. Samsung in their wisdom have removed the alarm volume. Therefore I've had to use media volume.You could have given me the courtesy of contacting me directly. I hope this helps, Steve",2019-09-06 06:54:04,most_relevant,com.tasks.android +Orel Levy,https://lh3.googleusercontent.com/a-/AOh14Gj5O5Wi8e6ZYe0KAymOLotwVjp4pK3BAaw1hYz5Ngo,"Doesn't have a built-in backup and even after exporting a backup file - an error shows up. Additionally, the support email is an invalid email address. A total waist of time for setting it.",1,17,1.28,2019-07-09 14:01:50,"Hi Orel, Tasks is a community driven hobby project of mine. It is offered for free without advertising. It includes a backup/restore feature in settings. What error did you see? You are the first to report any problem with the support email address (which I monitor daily). Did you use tasks.list.app@gmail.com? Thanks, Steve",2019-07-09 14:45:27,most_relevant,com.tasks.android +Fuzail Wani,https://lh3.googleusercontent.com/-Al-vqudJQpU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMdDdc6sPazaX7QCpDwS_Dd0IDBGw/photo.jpg,Why isn't this app getting downloaded There is some issue with the app It had been recommended to me by my buddy but this thing isn't getting installed on my phone,1,0,,2020-03-28 21:00:08,"Fuzail, this is clearly an issue with your device not Tasks. Have you tried searching the web for help? Alternatively, you could have done me the courtesy of emailing me so I could help you. Steve",2020-03-28 22:05:17,most_relevant,com.tasks.android +Brenda Itoney,https://lh3.googleusercontent.com/a-/AOh14GgM3BpdPi58edI9Rkdapn4XGELPg_QvVZ-zHGL_Cw,"Too complicated, trying to add items to a list, it keeps trying to use the item names instead to make a new list or send the old list to this.",1,4,1.26,2019-05-28 12:36:34,"Hi Benda, apologies my app was too complicated for you. However, I'm not 1200% sure I understand what you were struggling with. Tasks are simply added using the big yellow + button or quick add (bottom of your screen). Tasks is a hobby project of mine and is designed to be as simple or complex as you need. What would you change? Thanks, Steve",2019-05-28 13:09:54,most_relevant,com.tasks.android +Andrew Williams,https://lh3.googleusercontent.com/a-/AOh14Gj3ZQc3SihqDmMHI6qqSuUo014z9xuegGMVYvkLdw,"When I share a list with someone over messenger or sms, just the name of the list is shared, not the actual list with an ability to collaborate",1,40,1.26,2019-05-16 16:29:11,"Hi Andrew, this is correct. Tasks/lists are shared as plain text. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It simply relies on donations and my spare time to move forward. I am currently working on server code to enable list sharing, cloud backup and device to device sync. Steve",2019-05-16 17:24:13,most_relevant,com.tasks.android +Susie Zalaudek,https://lh3.googleusercontent.com/a-/AOh14Gh0kOzlk6hiL5LufEN_03kBSZruxCdZ32YZbfdP,NO INSTRUCTIONS I can't even get started because there are no instructions. I put in list title groceries and that's it when I try to make a list it asks for sub titles won't let me even start a list just sends ya in circles DELETE DELETE,1,5,1.21,2018-11-21 13:09:21,"Hi Susie, apologies you didn't find my app simple to use. You should have been guided through with context based help. There is also online support at https://mytasksapp.com and you can contact me directly. Task is a community driven hobby project of mine but I still try to reply to everyone within a couple of hours. Steve",2018-11-21 13:50:32,most_relevant,com.tasks.android +Carisma Curry,https://lh3.googleusercontent.com/-BnNbhykKsOw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNon78TnwDcT5b-qF42fAAgh2kr3w/photo.jpg,Terrible!!! I'm not getting the pre alerts I set or the reminders themselves. I go in to check on upcoming reminders & see outdated ones in red that never alerted me!!,1,122,1.25.1,2019-03-16 11:32:42,"Hi Carisma, apologies you're having an issue with my app. Tasks is a community driven hobby project of mine. Could you contact me directly so I can investigate this problem. I have not seen this on my test devices (including an S8). Thanks, Steve",2019-03-16 11:47:20,most_relevant,com.tasks.android +Carol Chia,https://lh3.googleusercontent.com/-nEJWQzkZKmA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO8W5DEhmS6Ue0jEa8PA7FZ-LynNQ/photo.jpg,it was alright in the beginning but search bar disappeared after adding my tasks. guess there is bug who can't handle long task list. not recommending.,1,4,1.24.2,2019-01-28 10:30:10,"Hi Carol, did you scroll up? Simply scroll to see the top bar. This allows you to see more of your list. I hope this helps, Steve",2019-01-28 10:34:11,most_relevant,com.tasks.android +Johnny BKK,https://lh3.googleusercontent.com/a-/AOh14GgjXjh2AP4HDZnzQRLpmRNXP9xyO-HuVM_8vt0PQg,"I use it for awhile then deleted 👎 It is take more time to use than other Note Apps., confusing and have no reason to keep it ⭐ Many better Note Apps out there ⭐",1,0,1.25,2019-03-14 14:08:36,"Hi Johnny, apologies you didn't like my app. Tasks is a community driven hobby project of mine. What features do you think are missing? What made Tasks to confusing? Many users connect how simple my app is to use. Thanks, Steve",2019-03-14 14:38:27,most_relevant,com.tasks.android +Emmette Saleeby,https://lh3.googleusercontent.com/-hxMAy4qha_o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOogleD9heiIgL-OysJIOXhjyGqFw/photo.jpg,App is very buggy. Completed tasks keep showing up as not completed. Notification alarm won't work. Uninstalling.,1,0,,2019-01-08 02:53:46,"Hi Emmette, apologies my app wasn't for you. Could you contact me directly with the steps to reproduce as I have the same phone as a test device and have not seen any issues. Thanks, Steve",2019-01-08 08:23:24,most_relevant,com.tasks.android +Prisha Pani,https://lh3.googleusercontent.com/a-/AOh14Ggz0YNS4PCKwx4H-JgkZzDO77OyejDGqsZZ4NlM,When you try to write a task and you want to set the reminder at the same time you have to make a reminder for each one and its wasting my time. If I could I would rate this app 0 stars,1,2,,2019-05-19 16:38:20,"Hi Prisha, apologies my app wasn't for you. Tasks is a community driven hobby project of mine with the mot popular suggestions added over time. It relies upon donations and my spare time to move forward. How would my app know you want a reminder if you don't set one? Thanks, Steve",2019-05-19 18:46:40,most_relevant,com.tasks.android +Dakota,https://lh3.googleusercontent.com/a-/AOh14GgyBsxcvp0GVCnHBMFN5cgHucxigihHEiurbtvfwQ,"Absolutely terrible. Most unless app I have downloaded, to date.",1,2,2.0.0,2019-12-17 19:19:29,"Dakota, maybe you can be more specific? You are the only one to say this. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundreds of hours to write, maintain and support and simply relies.on.donations and my spare time. What was too.complicates for you? Steve",2019-12-17 21:45:13,most_relevant,com.tasks.android +Alyssa Basilio,https://lh3.googleusercontent.com/a-/AOh14GhKq-Pdv6SDcgaRj77Essb2mXfGwoHXnkTYy3qHeA,I settled an alarm on this app. But it never popped up. This looks like a great app but please fix this. All my notifications in this app is open.,1,0,,2019-02-21 04:07:19,"Hi Alyssa, apologies you're having an issue with my app. Some devices have very aggressive power saving which can interfere with the standard Android Alarm manager. Please change all power saving settings related to Tasks and enable where appropriate. Thanks, Steve",2019-02-21 07:59:40,most_relevant,com.tasks.android +Jemma Callaghan,https://lh3.googleusercontent.com/a-/AOh14GiaGNJH5Sszg9aC5skzmUUw2QPhy5Hdt0lNUaMhbCU,"Was really enjoying this & then the notifications just stopped which is a big part of what I needed the app for:( annoying, finding a new app for this now",1,0,1.33.3,2019-09-25 03:25:56,"Hi Jemma, this is an issue with your device not Tasks. Huawei add very aggressive power saving to their devices which interferes with the standard Android alarm manager functions. I wish users knew how to use their devices 😔Please checkout the FAQs for details: https://mytasksapp.com/help/faqs. I hope this helps, Steve",2019-10-05 17:47:43,most_relevant,com.tasks.android +Navi Mae,https://lh3.googleusercontent.com/-hjJrLxdWVzw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOCGq3bO3C1J-HGJqXECzLFFKyp7A/photo.jpg,ive tried this app 2 times. Its great but everytime i use it it installs pop up adds all over my phone. As soon as I go to open one app their is an add...not cool. I deleted it for the 3 and final time.,1,0,,2019-03-14 12:59:00,"Hi Navi. are you sure you are reviewing my app? Tasks is a hobby project of mine. It is offered for free without adverts. Thanks, Steve",2019-03-14 14:08:56,most_relevant,com.tasks.android +Mike Gardiner,https://lh3.googleusercontent.com/-9OXikKaaEmM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMslBILDhpFe9gMW7PT5nvsWDEqjw/photo.jpg,This app will not update nor uninstall properly. Fix it and I'll try it again.,1,2,1.24.2,2019-02-09 20:08:26,"Hi Mike. I'm not sure I understand your issue. You are using the latest version. How do you know updates are not working? Uninstall is managed by your device and the PlayStore. Can you give me more details of your issue? Thanks, Steve",2019-02-09 21:50:55,most_relevant,com.tasks.android +Margaret MacMackin,https://lh3.googleusercontent.com/a-/AOh14Gg5rywTrogkXndbSEb2pMe_NecS1AJEPxMuhwWjJw,it was great until it disappeared. Very unhappy that I lost the app and ALL my info.,1,2,1.28,2019-06-29 22:13:46,"Hi Margaret, apologies you had an issue. However, apps can not simply disappear from a device. What did you do? Thanks, Steve",2019-06-30 07:10:01,most_relevant,com.tasks.android +sampath yadav,https://lh3.googleusercontent.com/-Ga7XeP8BxqE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN6SaS_YfYugpz2SITXzxk5HaUquw/photo.jpg,my mobile is getting switched off after installing.it worked fine on 1st day of installing. please fix it,1,2,1.25.1,2019-04-22 11:13:17,"Hi Sampath, Tasks is a native android application. It has very simple permissions, Tasks is not able to switch off your phone. I hope this helps, Steve",2019-04-22 12:16:28,most_relevant,com.tasks.android +Piyush Viroja,https://lh3.googleusercontent.com/-yTyZ25rG5d8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN0ejw49Zx5aKC2vgMkdU2T2vPSBg/photo.jpg,"app is awesome, but in this no login facility and assign task",1,1,1.25,2019-02-21 12:33:06,"Hi Piyush, Tasks is a community driven hobby project of mine with the most popular suggestions added over time. I am currently working on server code to enable list sharing, device to device sync and cloud backup. I hope this helps get a couple more stars :) Steve",2019-02-21 13:57:53,most_relevant,com.tasks.android +Mama Mia,https://lh3.googleusercontent.com/a-/AOh14GiOi9wLviKe-ZHQ9gUw5AwvkLqzmC-zQ5ycdnE-,"too much setup. i just want to write my notes not title & subtitle everything! on the plus side, no permissions🙂",1,0,,2019-04-21 13:16:04,"Hi, apologies my app was not for you. I'm not 100% sure I understand. You can create tasks that simply have a title, All fields except title are optional. You can add items quickly using quick add. Tasks is a community driven hobby project of mine. It is offered for free without ads. If you have suggestions, just let me know. Thanks, Steve",2019-04-21 16:37:11,most_relevant,com.tasks.android +Kevin Wangai,https://lh3.googleusercontent.com/-w-4GzQclXrk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNEKkU4GyaeOm1vqbKakA0jf---0Q/photo.jpg,alarms and notifications don't work which is crucial to an organiser,1,1,1.21,2019-03-09 05:29:46,"Hi Kevin, apologies you had an issue with my app. Some device manufacturers add very aggressive power saving to their devices which can interfere with the standard Android alarm manager functions. Please simply check all power optimisation settings related to Tasks app. I hope this helps, Steve",2019-03-10 15:24:57,most_relevant,com.tasks.android +Wawan Pure,https://lh3.googleusercontent.com/a-/AOh14GhRrsCgh9jBjTVVc7EiLr48-w_NvWOVISmxkegQ,"Do not have the account sync feature, how we backup data when we change device ?!",1,1,,2018-10-06 15:11:11,"Hi, there is a backup/restore feature in settings. I am currently writing server code to enable full cloud backup including device to device sync. I hope this helps. Steve",2018-10-06 19:11:02,most_relevant,com.tasks.android +Chris Coughlan,https://lh3.googleusercontent.com/-gE7gQIIdt_E/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPcho9QwMf23PZesE766ERdFwc1sQ/photo.jpg,Swipe to delete is terrible. Takes almost 5 swipes so work rendering the app useless.,1,2,1.26,2019-05-15 07:39:51,"Hi Chris, apologies you had an issue with my app. Where were you swiping from? I have an S7 as a test device and cannot reproduce your issue. Were you swiping from the dots on the right by accident? Note, swipe to delete can be disabled and you can long press a task to delete it or open the task and click the delete icon (top right). Thanks Steve",2019-05-15 08:41:48,most_relevant,com.tasks.android +Chipmans,https://lh3.googleusercontent.com/a-/AOh14GjJfBHNJcu2ZG4eubI0DPxGmPnyLuZS3TTxjjWKkrU,Tried making a simple to do list. Was gone when I went back later,1,0,,2019-01-08 17:34:34,"HI, apologies you had an issue with my app. How did you create the list? All delete options are protected by user interaction. Please let me know the steps to reproduce as this should not happen and I do not want it to happen to other users. Thanks, Steve",2019-01-08 18:08:19,most_relevant,com.tasks.android +Neeraj Mishra,https://lh3.googleusercontent.com/-83Nyrdl0Yxs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN-itjdijs6qJjbVgyvDR3p6EbHhA/photo.jpg,I am not able to set the time . It is automatically taking the remainder timing,1,0,1.21,2018-12-03 15:53:14,"Hi Neeraj, by default the time will be the top of the next hour. To change it simply tap it. If you're still having a problem please just contact me. I hope this helps, Steve",2018-12-03 16:29:55,most_relevant,com.tasks.android +ABHISHEK BHARDWAJ,https://lh3.googleusercontent.com/a-/AOh14Gghy2yGCQPcBzvpB13fYhugRUBfCwE3aGGfmKrw,Loved for a while. One fine day my subtasks got deleted. It was in a task for which i didn't set any due date. Bad experience.,1,0,1.30,2019-10-13 04:14:47,"Hi Abhishek, it is not possible for sub tasks to simply delete themselves. All delete operations are protected by user actions. Maybe you could have done me the courtesy of contacting me directly to ensure this doesn't happen to anyone else and improving Tasks for everyone instead of going straight to the PlayStore and complaining. Thanks, Steve",2019-10-13 09:42:39,most_relevant,com.tasks.android +Mohammad Mahdi Noorsalehi,https://lh3.googleusercontent.com/a-/AOh14GhJTUAi5QqL1hZMuUw2lgEWo_FbrZ16EGIhtRFXPA,What should I do if I want more sublists ?! There is no way ! 🙁,1,0,2.2.0,2020-03-05 17:39:10,"Mohammad, what have you tried? Simply tap the white + button top right to add more sub lists. This is mentioned in the help available through the ""Help"" button in the main menu. Alternatively, you could simply email me for help. I hope this helps, Steve",2020-03-05 19:26:09,most_relevant,com.tasks.android +Dickson J,https://lh3.googleusercontent.com/a-/AOh14GiSWAXpJXvfMWXez5ZdWG00HNQGErMyriPTHxLB,Unable to manage easily.. complicated,1,0,,2019-02-06 16:12:29,"Hi Dickson, Apologies my app was not for you. Tasks is hobby project of mine and designed to be simple to use. Can you give me more detail? What did you find complicated? What could be improved? Thanks, Steve",2019-02-06 16:25:13,most_relevant,com.tasks.android +Joshua Karchie,https://lh3.googleusercontent.com/-0P8fIbTZ-As/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMKK_QDOOLhAYc2EV_YGAzvaZA9wQ/photo.jpg,After a week my tasks never showed up. Completely stopped working 👍,1,0,,2018-11-15 02:34:54,"Hi Joshua, apologies you're having an issue. Could you contact me directly via support with more details to ensure my apps quality keeps improving. Thanks, Steve",2018-11-15 08:48:33,most_relevant,com.tasks.android +philip b,https://lh3.googleusercontent.com/a-/AOh14GjJKT6eGJmaHUNy0nxcPM9uwYigznbEFh59eZ8jLA,I wanted a to do list.. this is not such.. continually asking to name things unnecessarily complicated ~ KISS,1,8,1.26,2019-06-02 08:29:29,"Hi Philip, apologies you found my app too complicated. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. I'm not sure I understand what is too complicated? All content is created by you? You must add lists and tasks to become productive. Maybe you could give a few more details. Thanks, Steve",2019-06-02 08:34:37,most_relevant,com.tasks.android +Hough Household,https://lh3.googleusercontent.com/-NuwLI5MGkxw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMtlj7IuBGYN69XMcMiNy_zztHz1Q/photo.jpg,Can only put 5 tasks before having to pay,1,0,,2020-02-28 01:26:32,"Hough, are you sure you're rating my app? Tasks is a hobby project of mine and contains no such restriction. In fact all non cloud features are offer d for free without advertising. Please kindly amend your review. Thanks, Steve",2020-02-28 06:58:12,most_relevant,com.tasks.android +Kathy Clyne,https://lh3.googleusercontent.com/a-/AOh14Giz75CPR8QM0af1_RNr-To3tsPT-lpieHzTigJOmg,This app just isnt for me,1,0,2.2.0,2020-03-03 15:24:09,"Kathy, maybe you could be specific? Tasks is a community driven hobby project of mine with all non cloud features and support offered for free without advertising. It has taken hundr ds of hours to write, maintain and support and simply relies on donations and my spare time to move forward. What did you have difficulty with? Thanks, Steve",2020-03-03 15:48:38,most_relevant,com.tasks.android +B. Noneof Yourbusiness,https://lh3.googleusercontent.com/-14XyRoKkfHQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMDJcXQKUNQR2G2arQE0UVCxCIXlg/photo.jpg,doesn't allow you to do a Samsung back up and restore,1,0,1.30,2019-07-21 01:15:00,"Security is very important to most users and so Tasks saves all data in a database that is encrypted. This means that only Tasks app can read your data (unlike many of your apps). This is why Tasks includes a backup/restore feature in settings. You could simply have used that?! I hope this helps, Steve",2019-07-29 14:09:13,most_relevant,com.tasks.android +Ray Stone,https://lh3.googleusercontent.com/-mI1htx8mUNM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOXN-OcOcl67GXA21ImKvwZ2FTNFg/photo.jpg,"Awful hard to start, impossible to figure out",1,0,2.0.0,2019-11-29 00:57:20,"Ray, apologies my app was too complicated for you. You are the only one to say this, so maybe you could give a few more details as to what you found so ""impossible"". I have provided context based help when you first launch and there is a ""Help"" button in the main menu. What more did you need? Or maybe you just couldn't be bothered to work it out?",2019-11-29 09:24:36,most_relevant,com.tasks.android +Tahmeena Nazarwal,https://lh3.googleusercontent.com/a-/AOh14GiNXNU-voi7UTTYoFRBn_FklISVm9GbOTdN0WZYYw,Doesn't sync to calendar,1,1,1.33.2,2019-09-08 14:36:43,"Hi Tahmeena, I do not claim this as a feature on the PlayStore. However, you can enable the calendar view in settings and long press tasks in the list and click add to calendar. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. I will add your suggestion to my list for future improvements. Steve.",2019-09-08 07:53:47,most_relevant,com.tasks.android +Tad,https://lh3.googleusercontent.com/-TSKPDrLhJZo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP0QlNJOpSrnqEYUZOArwzqVtsCyg/photo.jpg,Notifications only come up when you come app,1,1,,2019-01-28 03:01:49,"Hi Tad, apologies you're having an issue with my app. Huawei add very aggressive power saving to their devices which can interfere with the standard Android alarm manager function. Please check power saving setting related to Tasks app. I hope this helps, Steve",2019-01-28 07:10:41,most_relevant,com.tasks.android +Ivan Kuznetsov,https://lh3.googleusercontent.com/-2ADPqmup9tE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP1316cMIPZZWaAk92hgOwiAAdDIw/photo.jpg,The alarm doesn't work,1,0,,2020-02-13 14:02:51,"Ivan, apologies you're having a problem. This is an issue with your device not Tasks. Xiaomi add very aggressive power saving to their devices which breaks the standard Android alarm manager functions. Checkout the online help: https://mytasksapp.com/help/faqs. In future email developers before making bold claims in a public forum. Steve",2020-02-13 14:26:06,most_relevant,com.tasks.android +Simone Parent,https://lh3.googleusercontent.com/a-/AOh14GhIlaJn2ni-FM2D4Uiqiq9uHmPFMI5FzFrYZD_Aag,"How can one trust an app that is supposed 2 help organize, when u misspell ""Organize.""",1,0,,2019-07-29 07:00:09,"Hi Simone, really, 1 star for using English! not US English? I live and work in the UK where we use an ""s"" not a ""z"". Tasks is a community driven hobby project of mine with the most popular suggestions added over time. All features are offered for free without advertising. Maybe you would reconsider your public review. Thanks, Steve",2019-07-29 14:09:48,most_relevant,com.tasks.android +Patrick Lam,https://lh3.googleusercontent.com/-NIqZbhyzPAY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOmZmVo6r6V3mATH9mmdawX2utQrg/photo.jpg,I consider it as not easy to use.,1,0,,2019-04-09 12:11:47,"Hi Patrick, Tasks is a community driven hobby project of mine. It is designed to be as simple as possible, whilst being able to add/use more advanced feature if you need to. What did you feel was too complicated? All feedback is added to my list for future improvements. Thanks, Steve",2019-04-09 12:59:45,most_relevant,com.tasks.android +Nicola Lucas,https://lh3.googleusercontent.com/a-/AOh14GjRXrDSLSNFjPyb4xFvBZzzrM1m1E3D_i2RPwlP,Only get about half of the reminders,1,0,2.0.0,2019-12-03 17:00:59,"Nicolai, this is an issue with your device not Tasks.Huawei add very aggressive power saving to their devices which interferes with the standard Android alarm manager functions. Checkout the FAQs for details: https://mytasksapp.com/help/faqs#notifications. Maybe in future you would do app developers the courtesy of emailing them first. Steve",2019-12-03 17:24:40,most_relevant,com.tasks.android +pubg tech,https://lh3.googleusercontent.com/a-/AOh14Gg384yvlxm6iBdxGxQ7TPBmHbX_TWIwASIbTM-oCg,Worst apk reminder not work,1,0,,2019-09-11 05:33:47,"Hi, apologies if you're not receiving reminders. This is an issue with your device not Tasks. Unfortunately OnePlus add very aggressive power saving to their devices which interferes with the standard Android alarm manager functions. Please check all power optimisation setting. I wish users would get to know their devices better! Steve",2019-09-11 07:27:20,most_relevant,com.tasks.android +Palrapii Tongkam,https://lh3.googleusercontent.com/a-/AOh14GgThnzo6mMInBHYtZoDSfe5CSkVCW6urUcxq-3pCg,It'hs just too complicate to use for me,1,1,,2019-10-05 17:05:38,"Hi Palrapii, apologies my app was too complicated for you. Maybe you can be more specific? When you first use Tasks there is context based help. There is a ""Help"" button in the main menu. I know you will never reply as 1 star is very easy to give but good feedback very hard. How would you simplify Tasks if Tasks were made for you and you alone?",2019-10-05 17:43:32,most_relevant,com.tasks.android +Ramkumar Reddy,https://lh3.googleusercontent.com/a-/AOh14GgmhP3gJio6YOpVB_qFvtDcSxbtKV5PbbAvgES_,Reminders are not showing notifications for the past 1 week to me sir .. 😢,1,0,1.25.1,2019-03-27 05:43:28,"Hi Ramkumar, apologies you're having an issue with my app. Unfortunately some manufacturers add very aggressive power saving to their devices which interferes with the standard Android alarm manager functions. Please check all power optimisation settings related to Tasks app and enable where appropriate. I hope this helps, Steve",2019-03-27 09:10:14,most_relevant,com.tasks.android +Damien H.,https://lh3.googleusercontent.com/-MI_euXJW9Og/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPWjC05ort9-G9tWrhKcpnB7xYyZQ/photo.jpg,"💩👎💩👎💩👎💩 👻☠️ IMPOSSIBLE TO DELETE LIST, OR SUB LISTS (TABS)!!! ☠️👻 REGRET v2.0 UPGRADE!! 👎💩👎💩👎💩👎💩👎💩👎💩👎💩👎💩👎💩👎💩👎💩👎💩👎💩👎💩👎💩👎💩👎",1,1,,2019-12-23 15:23:45,"Hi Damien, to delete a list simply open the sub list menu (3 dots top right) and click ""Delete sub list"". Help is available through the ""Help"" button in the main menu: https://mytasksapp.com/help/faqs. For anything else you could have simply done me the courtesy of contacting me directly. I hope this helps, Steve",2019-12-23 15:37:58,most_relevant,com.tasks.android +Sarah L,https://lh3.googleusercontent.com/a-/AOh14GjN27tdEx5qyIwqola_MjHcSA5vfW5VWaQgTEF8rw,Too hard to use,1,0,,2020-03-11 12:39:03,"Sarah, apologies my app was too complicated for you. Most users say how simply and intuitive it is. When you open Tasks there is context based help to get you going as fast as possible. There is the ""Help"" button in the main menu. What was too complicated for you? Please help improve my app for everyone instead of leaving vague feedback. Thanks",2020-03-11 12:54:13,most_relevant,com.tasks.android +noman sun,https://lh3.googleusercontent.com/-6VWYIIwlLhQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMOKoklWbtcFV7YhUBPR4o2kckCdQ/photo.jpg,Not good. Wasted time.,1,1,,2019-11-13 21:04:29,"Hi Norman, maybe you could be more specific? Tasks is a community driven hobby project with all features offer d for free without advertising. It simply relies on donations and my spare time to move forward. What more do you want? Thanks, Steve",2019-11-13 22:21:15,most_relevant,com.tasks.android +EME Infinity,https://lh3.googleusercontent.com/a-/AOh14GgigBFAaxIueCFnr4HryL3SaKnqBXCWem-uLrcziQ,This app is not the best.,1,1,,2019-12-27 04:21:00,"Hi, maybe you could be more specific? Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It has taken hundreda of hours to write, maintain, improve and support. It simply relies.on donations and my spare time. It may not be the best but it is in constant development. I hope this helps, Steve",2019-12-27 12:34:31,most_relevant,com.tasks.android +ALMAN 6709,https://lh3.googleusercontent.com/-SFsHJqZdGTs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO53h7iF8PS_kBv33Fz1cMCvLAj6g/photo.jpg,it doesnt do any thing its gliched everytime i open it,1,0,,2019-06-09 08:35:10,"Hi, apologies you had an issue with my app. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It is offered for free without advertising. You are the first to report an issue of this kind. What do these ""glitches"" look like? Thanks, Steve",2019-06-09 17:09:50,most_relevant,com.tasks.android +pratibha 123,https://lh3.googleusercontent.com/-CbD_o0k_Hgs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP7PZ2P4TfFGn2y0xdmyyaTmSiD3A/photo.jpg,No hourly reminder.,1,0,,2019-12-28 18:09:01,"Hi Pratibha, this is possible. Simply add a date and time (next occurrence (e.g. 9am tomorrow) add a reminder e.g. hourly and save. For more help checkout the ""help"" button in the main menu: https://mytasksapp.com/help/faqs. I hope this helps, Steve",2019-12-28 19:44:12,most_relevant,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,It's takes a lot of space,1,0,,2018-10-02 06:29:14,"Hi, why do you think that? How much space is Tasks using on your device? On my test devices my app is the smallest of all the major todo list apps. I will see what I can do. Steve",2018-10-02 07:52:30,most_relevant,com.tasks.android +Daniel Krenn,https://lh3.googleusercontent.com/a-/AOh14GhJz7Z3ZKR8JY9PwSjhJi6YGP89FF8uCPOjlmvQGg,Doesn't even have a repeat feature,1,2,1.21,2018-10-02 19:30:28,"Hi Daniel, to set a repeat simply add a date and time, enable the reminder and set a repeat. I hope this helps, Steve",2018-10-02 19:38:41,most_relevant,com.tasks.android +Simon WoodburyForget,https://lh3.googleusercontent.com/a-/AOh14GihlXpsq5e_lenaNyZAfQSaLuSdUxHMD6dgQp7BiA,"Date, no time.",1,0,1.24.2,2019-02-04 13:34:18,"Hi Simon, I'm not 100% sure I understand. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. What would you like to see? Thanks, Steve",2019-02-04 14:03:37,most_relevant,com.tasks.android +B Mann,https://lh3.googleusercontent.com/a-/AOh14Gi9pn3j5yPO7HA-u0BcdRPzA_22ujH09V4yWllEdDs,i don't want to name EVERYTHING!!!!!!😣😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠,1,0,,2019-07-06 12:26:29,"Apologies you didn't like my app. I'm not sure I understand. All content is create by you and so lists, tasks etc. need a name? Am I missing something? Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It is offered for free without ads. Please give a few more details. Thanks, Steve",2019-07-06 15:24:12,most_relevant,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Hard to set up,1,1,,2018-11-16 08:04:14,"Hi, can you be more specific? Tasks is in constant development and simplicity is one of my main goals. You can find additional help here: https://mytasksapp.com/help. Thanks, Steve",2018-11-16 08:43:57,most_relevant,com.tasks.android +Darlene Franklin,https://lh3.googleusercontent.com/a-/AOh14Ggv3LJmIJajPBts-tTrq3ztzu066eO8U_qODp84sg,It's too difficult to understand,1,1,1.20.3,2018-09-28 19:08:42,"I'm sorry you're having difficulty. Can you be more specific so I can help future users. Thanks, Steve",2018-09-28 19:32:56,most_relevant,com.tasks.android +B Ma,https://lh3.googleusercontent.com/-UClQDfY-gIw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMbaR_QKx0wFzhIk8OnT7zkusCMPw/photo.jpg,Does not work,1,1,1.21,2018-10-28 00:23:57,"Hi, apologies you're having an issue. What does not work? Which functions are you have problems with? Thanks, Steve",2018-10-28 09:39:32,most_relevant,com.tasks.android +Sam Beckwith Jr,https://lh3.googleusercontent.com/a-/AOh14GiNfJVeYbyePY-TWY65ZdFSu8_5QyNi-kisHacKsw,Very pricey,1,0,2.1.0,2020-02-17 06:34:24,"Sam, Tasks is a hobby project of mine with all non-cloud features offered for free without advertising. The cloud features are OPTIONAL! Servers, storage etc. cost me money each month you use them. I know you want everything for free, but if you don't support the apps you use they will simply die, You could give a star for each feature you use?",2020-02-17 07:53:37,most_relevant,com.tasks.android +Bob Goyden,https://lh3.googleusercontent.com/-qRKP8r_iWnY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN4G2TkliX9Y0IhUkqhnQq0CHA17A/photo.jpg,Bad,1,0,2.0.0,2020-01-09 22:45:13,"Bob, maybe you could me more.specifix? Tasks is a community driven hobby project of mine with all features and support offered for free without advertising. It simply relies.on donations and my spare time to move forward. What more do you want?",2020-01-11 20:32:02,most_relevant,com.tasks.android +Andrew Robertson,https://lh3.googleusercontent.com/a-/AOh14Gh89wa1YnWgz5noQvwULOu0C_T7XgvXCC6OQxSy,Over complicated,1,0,1.34.4,2019-10-29 10:20:48,"Andrew, apologies my app was too complicated for you. Could be more specific? What was too complicated for you? Tasks is a hobby project of mine with all feature offered for free without advertising and has taken hundreds of hours. Maybe you could show a little more gratitude. Bad reviews are easy to give but constructive feedback much harder.",2019-10-29 10:45:18,most_relevant,com.tasks.android +Pat Sanchez,https://lh3.googleusercontent.com/a-/AOh14GhC5Hy9_v147ef7EtkeyYMc8C3PQAL5a8Q1VQ0U6g,Terrible app,1,0,1.33.3,2019-09-23 04:13:11,"Hi Pat, apologies my app was too complicated for you. Maybe you can be more specific? Tasks is a hobby project of mine with the most popular suggestions added over time. I know you will never reply as 1 star is very easy to give but good feedback very hard. How would you simplify Tasks if Tasks were made for you and you alone?",2019-10-05 17:48:39,most_relevant,com.tasks.android +A J,https://lh3.googleusercontent.com/a-/AOh14GjzWBPAFI-syMSV4mUnvEWi0D23N9OHk_WPWMOrfyo,Too complicated,1,0,1.33.3,2019-09-26 03:14:15,"Hi TDTT, apologies my app was too complicated for you. Maybe you can be more specific? When you first use Tasks there is context based help. There is a ""Help"" button in the main menu. I know you will never reply as 1 star is very easy to give but good feedback very hard. How would you simplify Tasks if Tasks were made for you and you alone?",2019-10-05 17:44:33,most_relevant,com.tasks.android +Johninwinky,https://lh3.googleusercontent.com/-FR_Pe3uVuKs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMt9fz8yWVYX52JMmvpDgGrkerWew/photo.jpg,Too complicated and time consuming to set a task. No way to repeat on a monthly basis and specific day of the week at the same time. Not worth the time it takes to use it. Uninstalling.,1,0,2.1.0,2020-04-04 13:39:14,"Johninwinky, apologies my app was too complicated for you. Tasks is a hobby project of mine with all features offered for free without ads. Most users tell me how simply & intuitive it is. For quick task input simply use quick add (bottom of screen). If you required help setting up repeating tasks you could have looked at the help or emailed me",2020-04-04 14:28:23,newest,com.tasks.android +suraj singh,https://lh3.googleusercontent.com/a-/AOh14Gg4rH7bqdV2hzuxn5ybddLiMViMIziJMbus0JOvFQ,When i set to remind me daily it shows even in past and it doesn't remind me kindly let me know the way to set it proper,1,0,2.3.2,2020-04-03 04:06:46,"Suraj, unfortunately this is an issue with your device not Tasks. Vivo add very aggressive power saving to their devices which breaks the standard Android alarm manager functions. You will have seen a warning dialog telling you this. Here is the link (also available via the Help button in the main menu): https://mytasksapp.com/help/faqs",2020-04-03 08:11:29,newest,com.tasks.android +Fuzail Wani,https://lh3.googleusercontent.com/-Al-vqudJQpU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMdDdc6sPazaX7QCpDwS_Dd0IDBGw/photo.jpg,Why isn't this app getting downloaded There is some issue with the app It had been recommended to me by my buddy but this thing isn't getting installed on my phone,1,0,,2020-03-28 21:00:08,"Fuzail, this is clearly an issue with your device not Tasks. Have you tried searching the web for help? Alternatively, you could have done me the courtesy of emailing me so I could help you. Steve",2020-03-28 22:05:17,newest,com.tasks.android +Shannan Rivers,https://lh3.googleusercontent.com/a-/AOh14Gh_Zc2fn3vpSjkCbyeOqj5hglCYPExQK9tpU5Qtkg,Why was I charged $1.49 for this app? I was charged 2/4/2020.,1,0,,2020-03-20 12:45:12,"Hi Shannan, Tasks is a community driven hobby project of mine with all non cloud features offered for free without advertising. Thank you for signing up to Tasks Premium and helping support my project. Steve",2020-03-20 13:46:49,newest,com.tasks.android +Krasimir Kazakov,https://lh3.googleusercontent.com/a-/AOh14Ggwxut5tclqHR6ZBdcIF2QGUk2AryANJ4_XRwmQlEU,"Monthly payments for a todo app? Not gonna happen, thank you.",1,0,2.2.0,2020-03-11 21:39:46,"Krasimir, Tasks Is a hobby project of mine with all non cloud features offered for free without advertising. It has taken hundreds of hours to write, improve and support. Cloud services use servers, storage etc. around the world cost me money each month you use it. I do not sell/share your data and so this is the only way to support my work",2020-03-11 22:09:34,newest,com.tasks.android +Sarah L,https://lh3.googleusercontent.com/a-/AOh14GjN27tdEx5qyIwqola_MjHcSA5vfW5VWaQgTEF8rw,Too hard to use,1,0,,2020-03-11 12:39:03,"Sarah, apologies my app was too complicated for you. Most users say how simply and intuitive it is. When you open Tasks there is context based help to get you going as fast as possible. There is the ""Help"" button in the main menu. What was too complicated for you? Please help improve my app for everyone instead of leaving vague feedback. Thanks",2020-03-11 12:54:13,newest,com.tasks.android +Jakov Babic,https://lh3.googleusercontent.com/a-/AOh14Gi1DMhgQG0qtaGETYGCxu2UUfrJnWu03SzhP243,Lag all the time,1,0,2.2.0,2020-03-09 17:27:10,"Jakov, apologies you're having an issue with my app. You are the first to report any issues like this. Please email (tasks.list.app@gmail.com) with more details of when it happens and how to reproduce the problem. A short video would also really help so I can see the problem on your device. Thanks, Steve",2020-03-09 17:37:21,newest,com.tasks.android +Mohammad Mahdi Noorsalehi,https://lh3.googleusercontent.com/a-/AOh14GhJTUAi5QqL1hZMuUw2lgEWo_FbrZ16EGIhtRFXPA,What should I do if I want more sublists ?! There is no way ! 🙁,1,0,2.2.0,2020-03-05 17:39:10,"Mohammad, what have you tried? Simply tap the white + button top right to add more sub lists. This is mentioned in the help available through the ""Help"" button in the main menu. Alternatively, you could simply email me for help. I hope this helps, Steve",2020-03-05 19:26:09,newest,com.tasks.android +Kimosh Mosh,https://lh3.googleusercontent.com/-eGaH6b7HeYI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNUlB2aG93X43YDdXub0HjQSPTi-w/photo.jpg,Scheduling reminder intervals does not work!!!!,1,0,2.2.0,2020-03-05 17:19:06,"Kimosh, apologies if you're having an issue. However, I have the same device (Pixel 2 XL) as one of.my test devices and reminders definitely do work. Maybe you could email me with more details of what you have tried so I can help you (tasks.list.app@gmail.com). Thanks, Steve",2020-03-05 17:28:41,newest,com.tasks.android +Kathy Clyne,https://lh3.googleusercontent.com/a-/AOh14Giz75CPR8QM0af1_RNr-To3tsPT-lpieHzTigJOmg,This app just isnt for me,1,0,2.2.0,2020-03-03 15:24:09,"Kathy, maybe you could be specific? Tasks is a community driven hobby project of mine with all non cloud features and support offered for free without advertising. It has taken hundr ds of hours to write, maintain and support and simply relies on donations and my spare time to move forward. What did you have difficulty with? Thanks, Steve",2020-03-03 15:48:38,newest,com.tasks.android +Alexander D,https://lh3.googleusercontent.com/-ED5LgvLm8Qc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM4kDhrPDUZWoggMyNA9wiepSxY4g/photo.jpg,Usless,1,0,,2020-03-03 14:48:12,"Alexander, maybe you could be specific? Tasks is a community driven hobby project of mine with all non cloud features and support offered for free without advertising. It has taken hundr ds of hours to write, maintain and support and simply relies on donations and my spare time to move forward. What did you have difficulty with? Thanks, Steve",2020-03-03 14:51:41,newest,com.tasks.android +Hough Household,https://lh3.googleusercontent.com/-NuwLI5MGkxw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMtlj7IuBGYN69XMcMiNy_zztHz1Q/photo.jpg,Can only put 5 tasks before having to pay,1,0,,2020-02-28 01:26:32,"Hough, are you sure you're rating my app? Tasks is a hobby project of mine and contains no such restriction. In fact all non cloud features are offer d for free without advertising. Please kindly amend your review. Thanks, Steve",2020-02-28 06:58:12,newest,com.tasks.android +Agnes M.,https://lh3.googleusercontent.com/-W5bpRdTVzIE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPN6AleCZOtcTn2QU3-qAvSPp3L3Q/photo.jpg,I just removed this app! I missed several events in the last couple of months because it did not notify me!!!!!,1,0,1.25,2020-02-27 15:53:06,"Agnes, apologies you missed your events. However, this is an issue with your device not Tasks. Unfortunately Samsung add very aggressive power saving to their devices which breaks the standard Android alarm manager functions that Tasks relies on. Checkout the online help: https://mytasksapp.com/help/faqs#notifications I hope this helps, Steve",2020-02-27 16:09:34,newest,com.tasks.android +John Walker,https://lh3.googleusercontent.com/-XD4RTvP4ZWs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNEEnfLMcQh1XckBewp4EpwNi62JQ/photo.jpg,Subscription only. No outright purchase. Too bad. Seems like a nice app.,1,0,2.1.0,2020-02-20 22:35:31,"John, Tasks is a hobby project fo mine with the most popular suggestions added over time with all non cloud features (optional) offered for free without advertising. It simply relies on subscriptions and my spare time to move forward. Servers, storage etc. cost me money each month you use them. I cannot afford to pay for your use",2020-02-21 08:39:51,newest,com.tasks.android +Eliran Gonen,https://lh3.googleusercontent.com/-dnjTrKTW_bs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP7Vgq8jiUCYXoxKNb4SS00IYdZpg/photo.jpg,Used it until simple backup was premiumized. Restore wont work between different versions unless you modi-hack the file. Author would not tell you that you can do it though if you ask his help ! . Restore dont recognize my backup file at all so all my lists are basically inaccessible now. Will never install this again and I suggest anyone who values his data not to !,1,28,2.1.0,2020-02-19 11:00:44,"Eliran, manual backup is still free. Tasks is a hobby project of mine with all non cloud features offered for free without ads. It simply relies on donations and my spare time to move forward. Other users asked like normal humans and emailed me instead of just getting angry and changing their reviews. If you need help you could just email me 🤷‍♂️",2020-02-19 11:14:50,newest,com.tasks.android +Sam Beckwith Jr,https://lh3.googleusercontent.com/a-/AOh14GiNfJVeYbyePY-TWY65ZdFSu8_5QyNi-kisHacKsw,Very pricey,1,0,2.1.0,2020-02-17 06:34:24,"Sam, Tasks is a hobby project of mine with all non-cloud features offered for free without advertising. The cloud features are OPTIONAL! Servers, storage etc. cost me money each month you use them. I know you want everything for free, but if you don't support the apps you use they will simply die, You could give a star for each feature you use?",2020-02-17 07:53:37,newest,com.tasks.android +Holly James,https://lh3.googleusercontent.com/-PgT-ze11eGA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPuPYKgkCDCHv032VqJgT86ChkieQ/photo.jpg,"Has no sign in option only export and the file won't open, so unless you have an IT friend you lose your file which meant all the stuff I put in tasks has gotten lost. If the developer revolves this is I will edit this review.",1,10,2.1.0,2020-02-17 01:03:26,"Holly, this simply isn't true. If you have a backup file you have never lost your data. You could simply have done me the courtesy of emailing me directly (tasks.list.app@gmail.com) so I could help you. Why would you try to ask an ""IT"" friend instead of simply asking the developer directly? Bizarre!",2020-02-17 07:48:55,newest,com.tasks.android +Ivan Kuznetsov,https://lh3.googleusercontent.com/-2ADPqmup9tE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP1316cMIPZZWaAk92hgOwiAAdDIw/photo.jpg,The alarm doesn't work,1,0,,2020-02-13 14:02:51,"Ivan, apologies you're having a problem. This is an issue with your device not Tasks. Xiaomi add very aggressive power saving to their devices which breaks the standard Android alarm manager functions. Checkout the online help: https://mytasksapp.com/help/faqs. In future email developers before making bold claims in a public forum. Steve",2020-02-13 14:26:06,newest,com.tasks.android +Thippesh S,https://lh3.googleusercontent.com/a-/AOh14Ghv6gpy46iLd8kD8RlJwDpw-kNzFxc-tEikPH-cQg,"Definitely I appropriate your hard work and this app different from all those big guys apps, but question is if someone lost the phone or uninstalled the app, what is the purpose this app?, So i'm just suggesting, > you can limit the how many task can be added by users without premium >Opt. In Ads for auto backup",1,0,2.1.0,2020-02-13 09:10:07,"Thippesh, there is a manual backup in Settings. Servers, storage etc. around the world cost money. I cannot afford to give this for free. Why you you think I should pay for your usage? If you were me would you pay for everyone? You could just make a manual backup or ay for the service you use/want instead of moaning that it's not free.",2020-02-13 09:43:52,newest,com.tasks.android +Mugenman,https://lh3.googleusercontent.com/a-/AOh14GghbFt2XEUYBAzJq6ycmm8EFjORwemHeSL0-kuFYA,"I deleted a list but I still get alarms for one of the tasks in that list, even after restarting my phone.",1,2,2.0.0,2020-02-04 19:56:59,"Hi Mugenman, apologies you've hd an issue with my app. You could have simply done me the courtesy of contacting me directly so I could've helped you .Did you try upgrading to the latest version? Thanks, Steve",2020-02-04 20:43:26,newest,com.tasks.android +Mitya,https://lh3.googleusercontent.com/a-/AOh14GizazBOhBYEBcIHGJA86rilE2T3z9rs-Wa3dpbrpFc,An Average Task manager that asks 16GBP for the annual subscription ? No thanks and there are better free and paid alternatives that are better organised.,1,38,2.1.0,2020-02-03 20:56:23,"Mitya, Tasks Premium is optional. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. I offer all other features for free without advertising. It has taken hundreds of hours to write, support & improve Unfortunately servers and storage etc. cost money and I cannot afford to give everything for free",2020-02-03 21:18:04,newest,com.tasks.android +Bob Bennett,https://lh3.googleusercontent.com/-i2c1rkoZpic/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPlQW46mNITBck09DkeU25md7atRQ/photo.jpg,"Dont work, the best it got was the vibration notification worked. I can't get any sound at all from this app.",1,1,2.0.0,2020-02-02 18:26:33,"Bob, apologies you had an issue. However, this is an problem with your device not Tasks. Unfortunately Samsung add very aggressive power saving to their devices which breaks the standard Android alarm manager functions. Please check your power settings and checkout the online help: https://mytasksapp.com/help/faqs. I hope this helps, Steve",2020-02-02 18:32:34,newest,com.tasks.android +Keleb Gadol,https://lh3.googleusercontent.com/a-/AOh14GhUdI9bio0C8GXWji7AxUSUrbJkFSYj2pVlob-xAA,"I removed this paid app. I missed about a dozen events over the few months I owned this. I would look at the app a few minutes after an event was supposed to pop up, and it showed that it had missed. I'm trying out Simple Calendar, which testing seems to work better.",1,0,1.33.3,2020-02-02 00:12:59,"Kaleb apologies you had an issue with my app. However, this is an issue with your device not Tasks. LG add.very aggressive power saving to their devices which breaks the standard Android alarm manager functions. Check your power settings for Tasks or checkout the online help: https://mytasksapp.com/help/faqs. I hope this helps, Steve",2020-02-02 08:10:24,newest,com.tasks.android +God Zoo,https://lh3.googleusercontent.com/a-/AOh14GhMzUq1I9bw2aULMt1SpK9UtgxEMTqJMFfBj0ylL_8,I remember the days when you bought an app and owned it.. Now every developer wants to lock you into a lifetime subscription process where they can charge you for eternity. I simply refuse to rent my own notepad.,1,38,2.0.0,2020-01-29 05:31:53,"Tasks Premium is completely optional with all other features offered for free without advertising. Maybe you'd prefer ads? It has taken hundreds of hours to write, support and improve. Premium requires servers, storage etc. around the world which cost me money every month. A one time fee simply isn't a workable solution!",2020-01-29 06:45:55,newest,com.tasks.android +PRIYANSHU MISHRA,https://lh3.googleusercontent.com/a-/AOh14GjgAXnskm97J_vz2u8L_SNx1QdpjCn0zs-x2Wpe,Need to make more convinient I just set 3 time alarm for the task but it didnt work,1,3,2.0.0,2020-01-16 14:10:23,"Priyanshu, apologies you had an issue. This is an issue with your device not Tasks. Samsung add very aggressive power saving to their devices which breaks the standard Android alarm manager functions. Please checkout the online help for details: https://mytasksapp.com/help/faqs#notifications. I hope this helps Steve",2020-01-16 14:11:49,newest,com.tasks.android +MARY JANE,https://lh3.googleusercontent.com/a-/AOh14GjimXyudMYWvIKhcaKJMvijnDlp_qbLby7YMBFNVdE,I cant even get on thing on the opening page much less start a list??,1,1,,2020-01-15 14:49:14,"Hi Mary, apologies if you're having an issue. I'm not 100% sure I understand? You are the first to report what sounds like a serious issue. Could you do me the courtesy of emailing me (tasks.list.app@gmail.com) with a screen shot of the problem? Thanks, Steve",2020-01-15 15:59:04,newest,com.tasks.android +Bob Goyden,https://lh3.googleusercontent.com/-qRKP8r_iWnY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN4G2TkliX9Y0IhUkqhnQq0CHA17A/photo.jpg,Bad,1,0,2.0.0,2020-01-09 22:45:13,"Bob, maybe you could me more.specifix? Tasks is a community driven hobby project of mine with all features and support offered for free without advertising. It simply relies.on donations and my spare time to move forward. What more do you want?",2020-01-11 20:32:02,newest,com.tasks.android +Gita Elangbam,https://lh3.googleusercontent.com/a-/AOh14GhqfIiNM3H-wGU3Z3MCoL1fnt0QQB6Bh4nqQAKNnQ,"Yes, I started with a 3 star review, but I did drop it down to a 1 star review. Why? The developed asked me to send a screenshot of a spontaneous mismatch between what I typed and what the app accepted as my task. As per every ""busy"" developer, he requested for me to email so that he quietly resolves the problem. I will not do so; he may take off my review, but every user be warned: You may retype your tasks with this app only for the program to clear it when exitting the edit menu.",1,2,2.0.0,2020-01-07 05:16:58,"Hi Gita, apologies you're having an issue. You are the only user to report anything like this and I cannot reproduce it. Maybe you would do me the courtesy of emailing me with the steps to reproduce it so I can help you. Thanks, Steve EDIT: Tasks is a hobby project of mine and has relied on the help of users. Without help how will things improve?",2020-01-07 07:50:02,newest,com.tasks.android +Papa Zote,https://lh3.googleusercontent.com/-Vfd6CpU0l0U/AAAAAAAAAAI/AAAAAAAAB3s/AAKWJJNDgLfO5Mltxl-eVzEo4_fcGXHQkQ/photo.jpg,A simple app that could not be more complicated to operate.,1,0,2.0.0,2020-01-02 15:13:09,"Papa, apologies my app was too complicated for you. When you first open Tasks there is context based help. In the main menu there is a ""Help"" button with a full guide. Tasks is a hobby project of mine with all features offered for free without advertising. Maybe you could be a little more specific? What was too complicated for you? Thanks, Steve",2020-01-02 15:38:49,newest,com.tasks.android +pratibha 123,https://lh3.googleusercontent.com/-CbD_o0k_Hgs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP7PZ2P4TfFGn2y0xdmyyaTmSiD3A/photo.jpg,No hourly reminder.,1,0,,2019-12-28 18:09:01,"Hi Pratibha, this is possible. Simply add a date and time (next occurrence (e.g. 9am tomorrow) add a reminder e.g. hourly and save. For more help checkout the ""help"" button in the main menu: https://mytasksapp.com/help/faqs. I hope this helps, Steve",2019-12-28 19:44:12,newest,com.tasks.android +EME Infinity,https://lh3.googleusercontent.com/a-/AOh14GgigBFAaxIueCFnr4HryL3SaKnqBXCWem-uLrcziQ,This app is not the best.,1,1,,2019-12-27 04:21:00,"Hi, maybe you could be more specific? Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It has taken hundreda of hours to write, maintain, improve and support. It simply relies.on donations and my spare time. It may not be the best but it is in constant development. I hope this helps, Steve",2019-12-27 12:34:31,newest,com.tasks.android +Damien H.,https://lh3.googleusercontent.com/-MI_euXJW9Og/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPWjC05ort9-G9tWrhKcpnB7xYyZQ/photo.jpg,"💩👎💩👎💩👎💩 👻☠️ IMPOSSIBLE TO DELETE LIST, OR SUB LISTS (TABS)!!! ☠️👻 REGRET v2.0 UPGRADE!! 👎💩👎💩👎💩👎💩👎💩👎💩👎💩👎💩👎💩👎💩👎💩👎💩👎💩👎💩👎💩👎💩👎",1,1,,2019-12-23 15:23:45,"Hi Damien, to delete a list simply open the sub list menu (3 dots top right) and click ""Delete sub list"". Help is available through the ""Help"" button in the main menu: https://mytasksapp.com/help/faqs. For anything else you could have simply done me the courtesy of contacting me directly. I hope this helps, Steve",2019-12-23 15:37:58,newest,com.tasks.android +Dakota,https://lh3.googleusercontent.com/a-/AOh14GgyBsxcvp0GVCnHBMFN5cgHucxigihHEiurbtvfwQ,"Absolutely terrible. Most unless app I have downloaded, to date.",1,2,2.0.0,2019-12-17 19:19:29,"Dakota, maybe you can be more specific? You are the only one to say this. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundreds of hours to write, maintain and support and simply relies.on.donations and my spare time. What was too.complicates for you? Steve",2019-12-17 21:45:13,newest,com.tasks.android +Venturepreneur 2018,https://lh3.googleusercontent.com/-ZFahhz-Ubm8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMU4t9c6N0rvDLC_dyQ2Qd-kOX3ZA/photo.jpg,Always missing the notifications even when it is not optimized and restricted in background.,1,19,2.0.0,2019-12-12 07:13:39,This is an issue with your device not Tasks. Some manufacturers add very aggressive power saving to their devices which interferes with the standard Android alarm manager functions. Maybe in future you would do app developers the courtesy of emailing them first. Steve,2019-12-12 10:01:58,newest,com.tasks.android +Amy Lopez,https://lh3.googleusercontent.com/-tTvELr8U8gs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNrZ9nXGWV5NrdjONagzVZVlKjISQ/photo.jpg,No good,1,0,,2019-12-05 16:13:31,"Amy, maybe you could be more specific? Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write and simply relies on donations and my spare time to move forward. What was ""no good""? You could have done me the courtesy of emailing me. Steve",2019-12-05 16:39:32,newest,com.tasks.android +Nicola Lucas,https://lh3.googleusercontent.com/a-/AOh14GjRXrDSLSNFjPyb4xFvBZzzrM1m1E3D_i2RPwlP,Only get about half of the reminders,1,0,2.0.0,2019-12-03 17:00:59,"Nicolai, this is an issue with your device not Tasks.Huawei add very aggressive power saving to their devices which interferes with the standard Android alarm manager functions. Checkout the FAQs for details: https://mytasksapp.com/help/faqs#notifications. Maybe in future you would do app developers the courtesy of emailing them first. Steve",2019-12-03 17:24:40,newest,com.tasks.android +Ray Stone,https://lh3.googleusercontent.com/-mI1htx8mUNM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOXN-OcOcl67GXA21ImKvwZ2FTNFg/photo.jpg,"Awful hard to start, impossible to figure out",1,0,2.0.0,2019-11-29 00:57:20,"Ray, apologies my app was too complicated for you. You are the only one to say this, so maybe you could give a few more details as to what you found so ""impossible"". I have provided context based help when you first launch and there is a ""Help"" button in the main menu. What more did you need? Or maybe you just couldn't be bothered to work it out?",2019-11-29 09:24:36,newest,com.tasks.android +P C,https://lh3.googleusercontent.com/-ktV6oIGE6qg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNieXGxpKSufXtsrJ8HffU6jA9nnw/photo.jpg,"Would be nice if you could import tasks from other applications, but not only is that a problem, but importing from a previous version of Tasks is impossible too? Nevermind. I'll just stick to what I got.",1,1,2.0.0,2019-11-22 17:43:18,"You can import data from Wunderlist. There is no common data format between apps and so what you're asking is not easy, but from your feedback I'm sure you knew that. If you have a backup you've never lost your data, you could have simply emailed me so I could help you import it, instead you've gone down the ungrateful, complaining route. Your loss",2019-11-22 17:55:27,newest,com.tasks.android +Erwin Djatmiko,https://lh3.googleusercontent.com/a-/AOh14GhEffvxeGWnRpaHRRXZysHrs6kjZJjC6w_iihVgSQ,"Edit: I'm using this application many year since release. And i'm loved it and donate, Now you make this application subscription $15 a year? Really?? Not happy with that...",1,1,1.34.4,2019-11-22 11:47:28,"HI Erwin, I have offered all features and support for free for 2 years now. Tasks is a hobby project of mine and has taken hundreds of hours to write. All features are still free. Premium is optional and requires a lot of hardware around the world which I simply cannot afford to run on donations alone. Would you be happier with adverts? Steve",2019-11-22 11:52:07,newest,com.tasks.android +Depoit T,https://lh3.googleusercontent.com/a-/AOh14Gj_9yCVuZ7zofL9qKWeZW9ahvhMmvptvfd8rDxOs0A,"I do not like the functionality of the app. I found it is very easy to delete a sub list. But if you create a second list I could not figure out how to delete it after going through all settings. I also did not like the fact that you can only add one item within the sub list. Other people may be okay with these nuances, but for me it's not. I only use this app for about a half an hour and then deleted it.",1,0,,2019-11-17 17:02:42,"Hi Depoit, to clarify a few things. To delete a sub list simply open the sub list menu (3 dots top right) and click delete. If there is only 1 sub list the parent list will also be deleted. I believe you are getting confused between sub lists and tasks. I offer all support for free. You could have emailed me directly for help. Steve",2019-11-17 17:40:57,newest,com.tasks.android +Nora Pitz,https://lh3.googleusercontent.com/a-/AOh14GhUXlSRZiG6CYnSuA3hCR4TuhxybTeiNlI_3tR5eb0,Recurrent tasks don't work,1,2,1.34.4,2019-11-16 03:24:33,"Hi Nora, this is an issue with your device not Tasks. Unfortunately some manufacturers add very aggressive power saving to their devices which interferes with the standard Android alarm manager functions. Please check all power optimisation settings and enable where appropriate. I hope this helps, Steve",2019-11-16 09:07:37,newest,com.tasks.android +noman sun,https://lh3.googleusercontent.com/-6VWYIIwlLhQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMOKoklWbtcFV7YhUBPR4o2kckCdQ/photo.jpg,Not good. Wasted time.,1,1,,2019-11-13 21:04:29,"Hi Norman, maybe you could be more specific? Tasks is a community driven hobby project with all features offer d for free without advertising. It simply relies on donations and my spare time to move forward. What more do you want? Thanks, Steve",2019-11-13 22:21:15,newest,com.tasks.android +Udhaya Bala,https://lh3.googleusercontent.com/a-/AOh14Gj6CP0g1bkZSiqv9kY9uNgRkzb6CNchemoU4vjetw,Can't rely for reminders. No alarm comes even if I select Alarm. Because of relying on this app I missed an important task.,1,0,1.33.3,2019-11-08 04:17:35,"Hi Udhaya, this is an issue with your device not Tasks. Unfortunately OnePlus add very aggressive power saving to their devices. This interferes with the standard android alarm manager functions. Please check all power optimisation settings related to Tasks app and enable where appropriate. I hope this helps, Steve",2019-11-08 08:48:23,newest,com.tasks.android +Bhushan Firake,https://lh3.googleusercontent.com/-RBzy4vY94J0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOevDhHLWW582PDu_ErACto4zY63g/photo.jpg,"there are better and simple other apps which provide automatic online sync or backup feature like Micr_oso_ft's to do, and many other. why people think this app easy, it's not. I donated on this app and wasted.",1,1,1.34.4,2019-11-07 15:20:49,"Hi Bhushan, Tasks is a community driven hobby project of mine with the most popular suggestions added over time with all features and support offered for free without advertising. It simply relies on donations and my spare time to move forward. Thanks for your donations :) I am currently working on automatic cloud backup. I hope this helps, Steve",2019-11-07 16:05:43,newest,com.tasks.android +Andrew Robertson,https://lh3.googleusercontent.com/a-/AOh14Gh89wa1YnWgz5noQvwULOu0C_T7XgvXCC6OQxSy,Over complicated,1,0,1.34.4,2019-10-29 10:20:48,"Andrew, apologies my app was too complicated for you. Could be more specific? What was too complicated for you? Tasks is a hobby project of mine with all feature offered for free without advertising and has taken hundreds of hours. Maybe you could show a little more gratitude. Bad reviews are easy to give but constructive feedback much harder.",2019-10-29 10:45:18,newest,com.tasks.android +Brenda Sommers,https://lh3.googleusercontent.com/a-/AOh14Ghhb_o28sR70yQFMqgtyWZRu6RtBDZwTXLD3mtD,Extremely unintuitive.,1,1,,2019-10-26 18:04:32,"HI Brenda, apologies my app was too complicated for you. Maybe you could be more specific? Tasks is a hobby project of mine with all features offered for free without advertising. It simply relies on donations and my spare time to move forward. It Tasks were made for you and you alone, how would you make it more intuitive? Thanks, Steve",2019-10-27 10:32:17,newest,com.tasks.android +B,https://lh3.googleusercontent.com/-p8xJkDfKkWI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMmfQRa2K65wzCUcTWO30DGOcAMDA/photo.jpg,"Garbage. The one time I can't remember if i checked the notification for taking my medication or not, there was no way to go and see which days I checked it or not. What's the point of that?",1,21,1.34.3,2019-10-24 23:56:38,"Tasks is a community driven hobby project of mine with the most popular suggestions added over time. All features and support are offered for free without advertising and it simply relies on donations and my spare time to move forward. Tasks is not designed to be a medication app, there are thousands of those on the PlayStore. Thanks, Steve",2019-10-25 08:16:53,newest,com.tasks.android +Plamen Hristov,https://lh3.googleusercontent.com/a-/AOh14Gj0Gz3kbB_7xQadGGfgamadSRB4SWSCEGathVd9kQ,"Dear developers, thank you for deleting all my reminders after updating the app! It was not pleasant at all, believe me!",1,5,1.34,2019-10-13 11:21:11,"Dear Plamen, thank you for your sarcasm! Reminders did not change in the last update & so this is not possible. You are the only one to have this issue and all delete operations are protected by user actions. You could have done me the courtesy of contacting me directly so I could help instead of writing sarcastic rubbish. I hope this helps, Steve",2019-10-13 11:30:26,newest,com.tasks.android +ABHISHEK BHARDWAJ,https://lh3.googleusercontent.com/a-/AOh14Gghy2yGCQPcBzvpB13fYhugRUBfCwE3aGGfmKrw,Loved for a while. One fine day my subtasks got deleted. It was in a task for which i didn't set any due date. Bad experience.,1,0,1.30,2019-10-13 04:14:47,"Hi Abhishek, it is not possible for sub tasks to simply delete themselves. All delete operations are protected by user actions. Maybe you could have done me the courtesy of contacting me directly to ensure this doesn't happen to anyone else and improving Tasks for everyone instead of going straight to the PlayStore and complaining. Thanks, Steve",2019-10-13 09:42:39,newest,com.tasks.android +Lourens du Toit,https://lh3.googleusercontent.com/a-/AOh14GiRaXPeZlYxwwjxosJWKN3az2x4hGbZ6K4dm9WaPw,Don't use this unless you sync your tasks. The backup and restore functionality from one device to the next is bad.,1,0,1.33.3,2019-10-11 15:14:47,"Hi, if you have a backup file you have never lost your data. Please do not tell other users things are broken when you do not understand how they work. You could have done me the courtesy of contacting me directly so I could help you. Thanks, Steve",2019-10-11 15:21:31,newest,com.tasks.android +Palrapii Tongkam,https://lh3.googleusercontent.com/a-/AOh14GgThnzo6mMInBHYtZoDSfe5CSkVCW6urUcxq-3pCg,It'hs just too complicate to use for me,1,1,,2019-10-05 17:05:38,"Hi Palrapii, apologies my app was too complicated for you. Maybe you can be more specific? When you first use Tasks there is context based help. There is a ""Help"" button in the main menu. I know you will never reply as 1 star is very easy to give but good feedback very hard. How would you simplify Tasks if Tasks were made for you and you alone?",2019-10-05 17:43:32,newest,com.tasks.android +Erick Garin,https://lh3.googleusercontent.com/a-/AOh14Gi6dubELRml0inBcBwj40nNZPKM6Q0-609eqOQJ,pangit,1,0,,2019-10-01 12:39:02,"Hi Erick, maybe you could be more specific? Tasks is a community driven hobby project of mine with the most popular suggestions added over time. All features and support are offered for free without advertising and it simply relies on donations and my spare time. If Tasks were designed for you and only you, what would you change? Thanks, Steve",2019-10-01 13:38:14,newest,com.tasks.android +A J,https://lh3.googleusercontent.com/a-/AOh14GjzWBPAFI-syMSV4mUnvEWi0D23N9OHk_WPWMOrfyo,Too complicated,1,0,1.33.3,2019-09-26 03:14:15,"Hi TDTT, apologies my app was too complicated for you. Maybe you can be more specific? When you first use Tasks there is context based help. There is a ""Help"" button in the main menu. I know you will never reply as 1 star is very easy to give but good feedback very hard. How would you simplify Tasks if Tasks were made for you and you alone?",2019-10-05 17:44:33,newest,com.tasks.android +Jemma Callaghan,https://lh3.googleusercontent.com/a-/AOh14GiaGNJH5Sszg9aC5skzmUUw2QPhy5Hdt0lNUaMhbCU,"Was really enjoying this & then the notifications just stopped which is a big part of what I needed the app for:( annoying, finding a new app for this now",1,0,1.33.3,2019-09-25 03:25:56,"Hi Jemma, this is an issue with your device not Tasks. Huawei add very aggressive power saving to their devices which interferes with the standard Android alarm manager functions. I wish users knew how to use their devices 😔Please checkout the FAQs for details: https://mytasksapp.com/help/faqs. I hope this helps, Steve",2019-10-05 17:47:43,newest,com.tasks.android +Pat Sanchez,https://lh3.googleusercontent.com/a-/AOh14GhC5Hy9_v147ef7EtkeyYMc8C3PQAL5a8Q1VQ0U6g,Terrible app,1,0,1.33.3,2019-09-23 04:13:11,"Hi Pat, apologies my app was too complicated for you. Maybe you can be more specific? Tasks is a hobby project of mine with the most popular suggestions added over time. I know you will never reply as 1 star is very easy to give but good feedback very hard. How would you simplify Tasks if Tasks were made for you and you alone?",2019-10-05 17:48:39,newest,com.tasks.android +pubg tech,https://lh3.googleusercontent.com/a-/AOh14Gg384yvlxm6iBdxGxQ7TPBmHbX_TWIwASIbTM-oCg,Worst apk reminder not work,1,0,,2019-09-11 05:33:47,"Hi, apologies if you're not receiving reminders. This is an issue with your device not Tasks. Unfortunately OnePlus add very aggressive power saving to their devices which interferes with the standard Android alarm manager functions. Please check all power optimisation setting. I wish users would get to know their devices better! Steve",2019-09-11 07:27:20,newest,com.tasks.android +Tahmeena Nazarwal,https://lh3.googleusercontent.com/a-/AOh14GiNXNU-voi7UTTYoFRBn_FklISVm9GbOTdN0WZYYw,Doesn't sync to calendar,1,1,1.33.2,2019-09-08 14:36:43,"Hi Tahmeena, I do not claim this as a feature on the PlayStore. However, you can enable the calendar view in settings and long press tasks in the list and click add to calendar. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. I will add your suggestion to my list for future improvements. Steve.",2019-09-08 07:53:47,newest,com.tasks.android +John Prinny,https://lh3.googleusercontent.com/a-/AOh14GiF0hDf_EcrfofcRXYYqskBwHIP3S78UaLIHZ8k,Well it's broken now. I haven't messed with any settings in or out of the app and now there's no alarm. It just vibrates. I checked and it all still has the alarms and correct sounds yet it only vibrates when it shows a reminder. Why do these reminder apps always break?,1,42,1.33,2019-09-05 22:12:36,"Hi John, simply turn up the volume :) it's due to phone manufacturers messing with standard Android in unexpected ways. Samsung in their wisdom have removed the alarm volume. Therefore I've had to use media volume.You could have given me the courtesy of contacting me directly. I hope this helps, Steve",2019-09-06 06:54:04,newest,com.tasks.android +K Lyons,https://lh3.googleusercontent.com/a-/AOh14GjOcfeLtpNaUD63ntOgkhmz2dxhcRroJyScUDow,"Used to work ok, now, something is skrewy. Now, if I restart my phone, EVERY SINGLE task comes up as a notification, never mind of when the tasks were/are due, and the schedule I set. Now, after I dismiss tasks, they pop up again, ignoring its schedule. Also, wish app could remember which day the task is for. If you have a daily task that you complete after midnight, it thinks you completed it early and won't remind you later that day. Finally, wish app opened to an overview of all lists.",1,4,1.31,2019-08-28 10:39:29,"Hi, apologies you're having an issue! You could have contacted me directly first for help? How do you normally dismiss notifications? I added a feature to automatically re-display notifications that were displayed before your turned off your phone. Thanks, Steve",2019-08-28 10:56:05,newest,com.tasks.android +Amit Yadav,https://lh3.googleusercontent.com/a-/AOh14GgFDVK95_YCelXwq9874AeAstzCTpw8Se2899E4xg,Nice good,1,0,1.31,2019-08-24 22:10:13,"Amit, I'm a little confused about your feedback!? Positive words but terrible rating. Tasks is a community driven hobby project of mine. All features are offered for free without advertising. It simply relies on donations and my spare time. What would help make my app a 5 star app for you? Thanks, Steve",2019-09-05 14:52:17,newest,com.tasks.android +Simone Parent,https://lh3.googleusercontent.com/a-/AOh14GhIlaJn2ni-FM2D4Uiqiq9uHmPFMI5FzFrYZD_Aag,"How can one trust an app that is supposed 2 help organize, when u misspell ""Organize.""",1,0,,2019-07-29 07:00:09,"Hi Simone, really, 1 star for using English! not US English? I live and work in the UK where we use an ""s"" not a ""z"". Tasks is a community driven hobby project of mine with the most popular suggestions added over time. All features are offered for free without advertising. Maybe you would reconsider your public review. Thanks, Steve",2019-07-29 14:09:48,newest,com.tasks.android +B. Noneof Yourbusiness,https://lh3.googleusercontent.com/-14XyRoKkfHQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMDJcXQKUNQR2G2arQE0UVCxCIXlg/photo.jpg,doesn't allow you to do a Samsung back up and restore,1,0,1.30,2019-07-21 01:15:00,"Security is very important to most users and so Tasks saves all data in a database that is encrypted. This means that only Tasks app can read your data (unlike many of your apps). This is why Tasks includes a backup/restore feature in settings. You could simply have used that?! I hope this helps, Steve",2019-07-29 14:09:13,newest,com.tasks.android +Orel Levy,https://lh3.googleusercontent.com/a-/AOh14Gj5O5Wi8e6ZYe0KAymOLotwVjp4pK3BAaw1hYz5Ngo,"Doesn't have a built-in backup and even after exporting a backup file - an error shows up. Additionally, the support email is an invalid email address. A total waist of time for setting it.",1,17,1.28,2019-07-09 14:01:50,"Hi Orel, Tasks is a community driven hobby project of mine. It is offered for free without advertising. It includes a backup/restore feature in settings. What error did you see? You are the first to report any problem with the support email address (which I monitor daily). Did you use tasks.list.app@gmail.com? Thanks, Steve",2019-07-09 14:45:27,newest,com.tasks.android +B Mann,https://lh3.googleusercontent.com/a-/AOh14Gi9pn3j5yPO7HA-u0BcdRPzA_22ujH09V4yWllEdDs,i don't want to name EVERYTHING!!!!!!😣😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠😠,1,0,,2019-07-06 12:26:29,"Apologies you didn't like my app. I'm not sure I understand. All content is create by you and so lists, tasks etc. need a name? Am I missing something? Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It is offered for free without ads. Please give a few more details. Thanks, Steve",2019-07-06 15:24:12,newest,com.tasks.android +Margaret MacMackin,https://lh3.googleusercontent.com/a-/AOh14Gg5rywTrogkXndbSEb2pMe_NecS1AJEPxMuhwWjJw,it was great until it disappeared. Very unhappy that I lost the app and ALL my info.,1,2,1.28,2019-06-29 22:13:46,"Hi Margaret, apologies you had an issue. However, apps can not simply disappear from a device. What did you do? Thanks, Steve",2019-06-30 07:10:01,newest,com.tasks.android +Ananta Sood,https://lh3.googleusercontent.com/a-/AOh14GiYYvNN4zsVlTP7m7uCparvUA3xqbZzqpe3h7xRPw,"It doesn't ring the alarm at the right time. only when I open my phone, it starts ringing. useless for me because I want it to ring at the right time and remind me on my realme phone. Highly disappointed! :(",1,144,1.28,2019-06-23 06:11:50,"Hi Ananta, apologies you're having an issue with my app. Unfortunately Oppo add very aggressive power saving to their devices. This can interfere with the standard Android alarm manager functions. Please check all power optimisation settings and enable Tasks app where appropriate. I hope this helps, Steve",2019-06-23 07:33:15,newest,com.tasks.android +Zh aa,https://lh3.googleusercontent.com/-_EciXcHHtdo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPBoHuWI8ja2NmjdOi0lNVldUB_JQ/photo.jpg,I don't get a notification or any alarm after i set the due date reminder at all. I've already tried a couple of times how do i fix this. My settings also allow notifications for the app. Also how do i set widget on home screen thanks.,1,2,1.28,2019-06-21 12:03:14,"Hi, unfortunately Oppo add very aggressive power saving to their devices. This interferes with the standard Android alarm manager functions. Please check all power optimisation settings related to Tasks app and enable where appropriate. I hope this helps, Steve",2019-06-21 12:46:36,newest,com.tasks.android +ALMAN 6709,https://lh3.googleusercontent.com/-SFsHJqZdGTs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO53h7iF8PS_kBv33Fz1cMCvLAj6g/photo.jpg,it doesnt do any thing its gliched everytime i open it,1,0,,2019-06-09 08:35:10,"Hi, apologies you had an issue with my app. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It is offered for free without advertising. You are the first to report an issue of this kind. What do these ""glitches"" look like? Thanks, Steve",2019-06-09 17:09:50,newest,com.tasks.android +philip b,https://lh3.googleusercontent.com/a-/AOh14GjJKT6eGJmaHUNy0nxcPM9uwYigznbEFh59eZ8jLA,I wanted a to do list.. this is not such.. continually asking to name things unnecessarily complicated ~ KISS,1,8,1.26,2019-06-02 08:29:29,"Hi Philip, apologies you found my app too complicated. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. I'm not sure I understand what is too complicated? All content is created by you? You must add lists and tasks to become productive. Maybe you could give a few more details. Thanks, Steve",2019-06-02 08:34:37,newest,com.tasks.android +Brenda Itoney,https://lh3.googleusercontent.com/a-/AOh14GgM3BpdPi58edI9Rkdapn4XGELPg_QvVZ-zHGL_Cw,"Too complicated, trying to add items to a list, it keeps trying to use the item names instead to make a new list or send the old list to this.",1,4,1.26,2019-05-28 12:36:34,"Hi Benda, apologies my app was too complicated for you. However, I'm not 1200% sure I understand what you were struggling with. Tasks are simply added using the big yellow + button or quick add (bottom of your screen). Tasks is a hobby project of mine and is designed to be as simple or complex as you need. What would you change? Thanks, Steve",2019-05-28 13:09:54,newest,com.tasks.android +Prisha Pani,https://lh3.googleusercontent.com/a-/AOh14Ggz0YNS4PCKwx4H-JgkZzDO77OyejDGqsZZ4NlM,When you try to write a task and you want to set the reminder at the same time you have to make a reminder for each one and its wasting my time. If I could I would rate this app 0 stars,1,2,,2019-05-19 16:38:20,"Hi Prisha, apologies my app wasn't for you. Tasks is a community driven hobby project of mine with the mot popular suggestions added over time. It relies upon donations and my spare time to move forward. How would my app know you want a reminder if you don't set one? Thanks, Steve",2019-05-19 18:46:40,newest,com.tasks.android +Andrew Williams,https://lh3.googleusercontent.com/a-/AOh14Gj3ZQc3SihqDmMHI6qqSuUo014z9xuegGMVYvkLdw,"When I share a list with someone over messenger or sms, just the name of the list is shared, not the actual list with an ability to collaborate",1,40,1.26,2019-05-16 16:29:11,"Hi Andrew, this is correct. Tasks/lists are shared as plain text. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It simply relies on donations and my spare time to move forward. I am currently working on server code to enable list sharing, cloud backup and device to device sync. Steve",2019-05-16 17:24:13,newest,com.tasks.android +Chris Coughlan,https://lh3.googleusercontent.com/-gE7gQIIdt_E/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPcho9QwMf23PZesE766ERdFwc1sQ/photo.jpg,Swipe to delete is terrible. Takes almost 5 swipes so work rendering the app useless.,1,2,1.26,2019-05-15 07:39:51,"Hi Chris, apologies you had an issue with my app. Where were you swiping from? I have an S7 as a test device and cannot reproduce your issue. Were you swiping from the dots on the right by accident? Note, swipe to delete can be disabled and you can long press a task to delete it or open the task and click the delete icon (top right). Thanks Steve",2019-05-15 08:41:48,newest,com.tasks.android +Fernando Moura,https://lh3.googleusercontent.com/-JoPr8y46IjA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOearcsXebbImTr3MFM7VnJ3ct9WA/photo.jpg,"after few months it started not checking the task. I mean I check and few hours later it is unchecked. it should be cleared and the next date for the same task should be displayed, example: task 1 to date 01/jan/2019 and repeat task 1 to date 01/feb/2019. after checking the task for January the task for February should be displayed, but after some time the task for January is unchecked.",1,2,1.26,2019-05-08 11:43:16,"Hi Fernando, apologies you're having an issue with my app. Some help is available on my websites FAQs: https://mytasksapp.com/help/faqs. Please contact me directly with more details so I can help. Thanks, Steve",2019-05-08 13:10:05,newest,com.tasks.android +sampath yadav,https://lh3.googleusercontent.com/-Ga7XeP8BxqE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN6SaS_YfYugpz2SITXzxk5HaUquw/photo.jpg,my mobile is getting switched off after installing.it worked fine on 1st day of installing. please fix it,1,2,1.25.1,2019-04-22 11:13:17,"Hi Sampath, Tasks is a native android application. It has very simple permissions, Tasks is not able to switch off your phone. I hope this helps, Steve",2019-04-22 12:16:28,newest,com.tasks.android +Mama Mia,https://lh3.googleusercontent.com/a-/AOh14GiOi9wLviKe-ZHQ9gUw5AwvkLqzmC-zQ5ycdnE-,"too much setup. i just want to write my notes not title & subtitle everything! on the plus side, no permissions🙂",1,0,,2019-04-21 13:16:04,"Hi, apologies my app was not for you. I'm not 100% sure I understand. You can create tasks that simply have a title, All fields except title are optional. You can add items quickly using quick add. Tasks is a community driven hobby project of mine. It is offered for free without ads. If you have suggestions, just let me know. Thanks, Steve",2019-04-21 16:37:11,newest,com.tasks.android +Patrick Lam,https://lh3.googleusercontent.com/-NIqZbhyzPAY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOmZmVo6r6V3mATH9mmdawX2utQrg/photo.jpg,I consider it as not easy to use.,1,0,,2019-04-09 12:11:47,"Hi Patrick, Tasks is a community driven hobby project of mine. It is designed to be as simple as possible, whilst being able to add/use more advanced feature if you need to. What did you feel was too complicated? All feedback is added to my list for future improvements. Thanks, Steve",2019-04-09 12:59:45,newest,com.tasks.android +Tony M,https://lh3.googleusercontent.com/-VpfvmSfYBi8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMrHjelsPwICgbcaF993yQ7eQRedg/photo.jpg,USELESS. SO CONFUSING TO USE. CANT SET SIMPLE REMINDERS,1,0,,2019-04-02 00:29:08,"Hi Tony, apologies my app was not for you. To set a reminder simply add a date and time and save. Tasks automatically enables it for you. Tasks is a community driven hobby project of mine. What did you find too complicated? There is a getting started guide available under the help button (left side menu). Thanks, Steve",2019-04-02 11:25:57,newest,com.tasks.android +Ramkumar Reddy,https://lh3.googleusercontent.com/a-/AOh14GgmhP3gJio6YOpVB_qFvtDcSxbtKV5PbbAvgES_,Reminders are not showing notifications for the past 1 week to me sir .. 😢,1,0,1.25.1,2019-03-27 05:43:28,"Hi Ramkumar, apologies you're having an issue with my app. Unfortunately some manufacturers add very aggressive power saving to their devices which interferes with the standard Android alarm manager functions. Please check all power optimisation settings related to Tasks app and enable where appropriate. I hope this helps, Steve",2019-03-27 09:10:14,newest,com.tasks.android +Shana G,https://lh3.googleusercontent.com/a-/AOh14Girw12M0itJvFRS0GhAe5HK3is23VkiU8UzcB8nXGM,"Thought this was a great app until I realized it doesn't get rid of the ""checked"" daily tasks to remind you of the new daily tasks... and that is exactly what I was using this for... DAILY tasks I need done. When I check ""remove checked tasks"" it does NOTHING and those checked tasks just stay there. :(",1,0,1.25.1,2019-03-24 18:45:43,"Hi Shana, apologies you're having an issue with my app. Completed tasks will not be remove by the ""remove checked"" if they are recurring and the next date it valid. Tasks is a community driven hobby project of mine. Maybe an extra setting would help you? Please contact me directly if you need any extra assistance. Thanks, Steve",2019-03-24 18:56:30,newest,com.tasks.android +Carisma Curry,https://lh3.googleusercontent.com/-BnNbhykKsOw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNon78TnwDcT5b-qF42fAAgh2kr3w/photo.jpg,Terrible!!! I'm not getting the pre alerts I set or the reminders themselves. I go in to check on upcoming reminders & see outdated ones in red that never alerted me!!,1,122,1.25.1,2019-03-16 11:32:42,"Hi Carisma, apologies you're having an issue with my app. Tasks is a community driven hobby project of mine. Could you contact me directly so I can investigate this problem. I have not seen this on my test devices (including an S8). Thanks, Steve",2019-03-16 11:47:20,newest,com.tasks.android +Johnny BKK,https://lh3.googleusercontent.com/a-/AOh14GgjXjh2AP4HDZnzQRLpmRNXP9xyO-HuVM_8vt0PQg,"I use it for awhile then deleted 👎 It is take more time to use than other Note Apps., confusing and have no reason to keep it ⭐ Many better Note Apps out there ⭐",1,0,1.25,2019-03-14 14:08:36,"Hi Johnny, apologies you didn't like my app. Tasks is a community driven hobby project of mine. What features do you think are missing? What made Tasks to confusing? Many users connect how simple my app is to use. Thanks, Steve",2019-03-14 14:38:27,newest,com.tasks.android +Navi Mae,https://lh3.googleusercontent.com/-hjJrLxdWVzw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOCGq3bO3C1J-HGJqXECzLFFKyp7A/photo.jpg,ive tried this app 2 times. Its great but everytime i use it it installs pop up adds all over my phone. As soon as I go to open one app their is an add...not cool. I deleted it for the 3 and final time.,1,0,,2019-03-14 12:59:00,"Hi Navi. are you sure you are reviewing my app? Tasks is a hobby project of mine. It is offered for free without adverts. Thanks, Steve",2019-03-14 14:08:56,newest,com.tasks.android +Kevin Wangai,https://lh3.googleusercontent.com/-w-4GzQclXrk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNEKkU4GyaeOm1vqbKakA0jf---0Q/photo.jpg,alarms and notifications don't work which is crucial to an organiser,1,1,1.21,2019-03-09 05:29:46,"Hi Kevin, apologies you had an issue with my app. Some device manufacturers add very aggressive power saving to their devices which can interfere with the standard Android alarm manager functions. Please simply check all power optimisation settings related to Tasks app. I hope this helps, Steve",2019-03-10 15:24:57,newest,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Looked good, but wasn't. After installing Tasks, my keyboard stopped appearing for all my apps. It was only when I removed Tasks (as a last resort) that the keyboard appeared again.",1,2,,2019-03-05 10:19:09,"Hi, I have no idea why that would happen. Could you install my app again to see if it happens again and let me know. I have tested my app on Samsung devices without issue. Thanks, Steve",2019-03-05 11:56:23,newest,com.tasks.android +Tanner Chrishop,https://lh3.googleusercontent.com/-cZ2JphhYXe4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP8HoRG_QFvG3C81m977f1PvdPNNg/photo.jpg,"Needlessly compicated for a to do list app. try to add a new item to your list and youll accidentally add a new list. try to swipe to switch between lists and youll remove an item from your list. What did you just remove? Hard to say, cant seem to find an undo option among the numerous other options.",1,0,1.25,2019-03-03 15:20:38,"Hi Tanner, Tasks is a community driven hobby project of mine. To add a new list, you must be tapping ""New list""? To add a new task you simply tap the yellow plus icon. +Swipe to delete can be disabled in settings. There is an undo action at the bottom of your screen whenever you delete a list/task. I hope this helps, Steve",2019-03-03 15:53:18,newest,com.tasks.android +Brendan Slade,https://lh3.googleusercontent.com/a-/AOh14Ggnz5LSPqJA2ibyjO2ZeHob8q08FYp8XZVTJXhaMg,useless,1,0,,2019-02-26 05:25:30,"Hi Brendan, apologies you didn't find my app helpful. Could you be more specific? Tasks is a community driven hobby project of mine. What would like to see added? Thanks, Steve",2019-02-26 09:03:53,newest,com.tasks.android +Piyush Viroja,https://lh3.googleusercontent.com/-yTyZ25rG5d8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN0ejw49Zx5aKC2vgMkdU2T2vPSBg/photo.jpg,"app is awesome, but in this no login facility and assign task",1,1,1.25,2019-02-21 12:33:06,"Hi Piyush, Tasks is a community driven hobby project of mine with the most popular suggestions added over time. I am currently working on server code to enable list sharing, device to device sync and cloud backup. I hope this helps get a couple more stars :) Steve",2019-02-21 13:57:53,newest,com.tasks.android +Alyssa Basilio,https://lh3.googleusercontent.com/a-/AOh14GhKq-Pdv6SDcgaRj77Essb2mXfGwoHXnkTYy3qHeA,I settled an alarm on this app. But it never popped up. This looks like a great app but please fix this. All my notifications in this app is open.,1,0,,2019-02-21 04:07:19,"Hi Alyssa, apologies you're having an issue with my app. Some devices have very aggressive power saving which can interfere with the standard Android Alarm manager. Please change all power saving settings related to Tasks and enable where appropriate. Thanks, Steve",2019-02-21 07:59:40,newest,com.tasks.android +Mike Gardiner,https://lh3.googleusercontent.com/-9OXikKaaEmM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMslBILDhpFe9gMW7PT5nvsWDEqjw/photo.jpg,This app will not update nor uninstall properly. Fix it and I'll try it again.,1,2,1.24.2,2019-02-09 20:08:26,"Hi Mike. I'm not sure I understand your issue. You are using the latest version. How do you know updates are not working? Uninstall is managed by your device and the PlayStore. Can you give me more details of your issue? Thanks, Steve",2019-02-09 21:50:55,newest,com.tasks.android +Ingrid Guzman,https://lh3.googleusercontent.com/-SAQAj5FpQe8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNhvWFSDqAH9yEOpQFFwuB23-iDJA/photo.jpg,"at the beginning was good but i wait two months later and the app keep putting back as not done reminders that i mark as done already and the other task that have date and mark as priority don't even showed me, if you can fix that ill stay with the app otherwise i will keep looking... sadly the only remid app that work good was the apple one but i don't have iphone anymore so? came on please make this one work",1,124,1.25,2019-02-09 13:29:01,Are these recurring tasks? Recurring tasks will be reset at midnight ready to be completed again. Checkout my website for details: https://mytasksapp.com/help/faqs. Is this what you meant? Steve,2019-02-09 16:00:18,newest,com.tasks.android +Dickson J,https://lh3.googleusercontent.com/a-/AOh14GiSWAXpJXvfMWXez5ZdWG00HNQGErMyriPTHxLB,Unable to manage easily.. complicated,1,0,,2019-02-06 16:12:29,"Hi Dickson, Apologies my app was not for you. Tasks is hobby project of mine and designed to be simple to use. Can you give me more detail? What did you find complicated? What could be improved? Thanks, Steve",2019-02-06 16:25:13,newest,com.tasks.android +Simon WoodburyForget,https://lh3.googleusercontent.com/a-/AOh14GihlXpsq5e_lenaNyZAfQSaLuSdUxHMD6dgQp7BiA,"Date, no time.",1,0,1.24.2,2019-02-04 13:34:18,"Hi Simon, I'm not 100% sure I understand. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. What would you like to see? Thanks, Steve",2019-02-04 14:03:37,newest,com.tasks.android +Carol Chia,https://lh3.googleusercontent.com/-nEJWQzkZKmA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO8W5DEhmS6Ue0jEa8PA7FZ-LynNQ/photo.jpg,it was alright in the beginning but search bar disappeared after adding my tasks. guess there is bug who can't handle long task list. not recommending.,1,4,1.24.2,2019-01-28 10:30:10,"Hi Carol, did you scroll up? Simply scroll to see the top bar. This allows you to see more of your list. I hope this helps, Steve",2019-01-28 10:34:11,newest,com.tasks.android +Tad,https://lh3.googleusercontent.com/-TSKPDrLhJZo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP0QlNJOpSrnqEYUZOArwzqVtsCyg/photo.jpg,Notifications only come up when you come app,1,1,,2019-01-28 03:01:49,"Hi Tad, apologies you're having an issue with my app. Huawei add very aggressive power saving to their devices which can interfere with the standard Android alarm manager function. Please check power saving setting related to Tasks app. I hope this helps, Steve",2019-01-28 07:10:41,newest,com.tasks.android +Cornell Farlin,https://lh3.googleusercontent.com/-yDdRWa3Yy2U/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPtYZ4VDStFMBNMz3INrVo2JcZRUg/photo.jpg,"I set a reminder to do a task daily at a certain time, however, this app does not retain the same time on the daily reminders. it will remind you and set the task to do but at an earlier time.",1,3,1.24.2,2019-01-26 17:04:30,"Hi Cornell, apologies you had an issue with my app. I have an S8 as a test device and have not seen any issues. Can you contact me directly so I may understand the problem and get this fixed. Thanks, Steve",2019-01-26 18:21:29,newest,com.tasks.android +Chipmans,https://lh3.googleusercontent.com/a-/AOh14GjJfBHNJcu2ZG4eubI0DPxGmPnyLuZS3TTxjjWKkrU,Tried making a simple to do list. Was gone when I went back later,1,0,,2019-01-08 17:34:34,"HI, apologies you had an issue with my app. How did you create the list? All delete options are protected by user interaction. Please let me know the steps to reproduce as this should not happen and I do not want it to happen to other users. Thanks, Steve",2019-01-08 18:08:19,newest,com.tasks.android +Emmette Saleeby,https://lh3.googleusercontent.com/-hxMAy4qha_o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOogleD9heiIgL-OysJIOXhjyGqFw/photo.jpg,App is very buggy. Completed tasks keep showing up as not completed. Notification alarm won't work. Uninstalling.,1,0,,2019-01-08 02:53:46,"Hi Emmette, apologies my app wasn't for you. Could you contact me directly with the steps to reproduce as I have the same phone as a test device and have not seen any issues. Thanks, Steve",2019-01-08 08:23:24,newest,com.tasks.android +Joel Blackburn,https://lh3.googleusercontent.com/-sEGxsluNxuE/AAAAAAAAAAI/AAAAAAAAC40/AAKWJJMEcg9sngKMyeRtPqxD2o1iT4BTig/photo.jpg,Sucks,1,0,,2018-12-13 12:57:27,"Hi Joel, apologies my app wasn't for you. Tasks is a hobby project of mine with the most popular suggestions added over time. What didn't you like? How could I improve my app? Thanks, Steve",2018-12-13 13:23:11,newest,com.tasks.android +Neeraj Mishra,https://lh3.googleusercontent.com/-83Nyrdl0Yxs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN-itjdijs6qJjbVgyvDR3p6EbHhA/photo.jpg,I am not able to set the time . It is automatically taking the remainder timing,1,0,1.21,2018-12-03 15:53:14,"Hi Neeraj, by default the time will be the top of the next hour. To change it simply tap it. If you're still having a problem please just contact me. I hope this helps, Steve",2018-12-03 16:29:55,newest,com.tasks.android +Barbara Dunning,https://lh3.googleusercontent.com/a-/AOh14GiE12tU-Qgz28EYUgB7no1MMR5JyQztnAzAYrknOh4,"I loved this app at first, but now when I change my task dates/times, it doesn't actually change them, and continues to alert me at the original time even though I've clearly changed it. It's very annoying.",2,3,2.3.2,2020-03-23 01:12:05,"Hi Barbara, apologies you're having an issue. You are the only user to report anything like this. Maybe you could do me the courtesy of emailing me directly with more details. How are you changing the date? And the steps to reproduce this. Together we can help you love my app again :) Steve",2020-03-23 07:55:52,most_relevant,com.tasks.android +Ryan WS,https://lh3.googleusercontent.com/a-/AOh14GjI1lwWASddu_7418VlukRBF3GD40ZQ6NFqkAt9,"Almost what i need, except there's no option to set a start & end time with reminder for the start. So it's useless (for me).",2,5,2.2.0,2020-02-23 03:38:01,"Hi Ryan, apologies my app wasn't quite right for you. However, Tasks is a community driven hobby project of mine with all features and support offered for free without advertising. It simply relies on donations and my spare time to move forward. I will add your suggestion to my list for future improvements. I hope this helps, Steve",2020-02-23 08:45:22,most_relevant,com.tasks.android +Surupa Ray,https://lh3.googleusercontent.com/a-/AOh14GhQyWndArhGvG68xrtk3PGrs2QfjYEG7XmEVOdxJw,While swiping towards right the tasks are getting deleted. At least it should ask for confirmation whether the delete is happening accidentally or we really want to delete.,2,0,2.2.0,2020-03-03 05:14:20,"Hi Surupa, you could simply disable swipe to delete in settings!? Note, when you delete a task/list you will see a temporary popup at the bottom of your screen with an undo action. If you miss this your tasks will be moved to your ""Deleted items"" list (main menu). I hope this helps, Steve",2020-03-03 08:13:53,most_relevant,com.tasks.android +louisel carlos,https://lh3.googleusercontent.com/-Gp0b46y9QCc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMvIhzWtCkT6O1hsghtYmVOk4jPww/photo.jpg,Reminder notification not on time for about an hour so it is inconvenient,2,0,2.3.2,2020-04-02 07:02:27,"Carlos, unfortunately this is an issue with your device not Tasks. Redmi add very aggressive power saving to their devices which breaks the standard Android alarm manager functions. You will have seen a warning dialog telling you this. Here is the link (also available via the Help button in the main menu): https://mytasksapp.com/help/faqs",2020-04-02 07:18:16,most_relevant,com.tasks.android +goose,https://lh3.googleusercontent.com/a-/AOh14Gh7JdKwd5FgE79V2nDWaIlWAsExja9yepJZs47y,"i like how its organized and how many choices and the customization. but, i set alarms and keep in mind, i have all permissions on, and it didnt go on my screen, so i missed a very important meeting.",2,0,2.0.0,2020-01-16 22:14:10,"Mack, apologies you've had an issue with my app. This is almost always an issue with your device not Tasks. I am not familiar with your device however searching Google many other apps have the same issue. There will be a magic setting that will allow the standard Android alarm manager to function properly. Please email me when you find it :) Steve",2020-01-17 08:53:09,most_relevant,com.tasks.android +Sian Butterfield,https://lh3.googleusercontent.com/-xSP1lEQLV8s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNMaKg-i3hV1IpyJULTIOGKsxrg6w/photo.jpg,Had high hopes for this because it had everything I wanted but the completed tasks that I keep putting as completed come back the next day which is just irritating. Have tried all the settings to get of it but I can't and can't be bothered to persevere anymore,2,242,1.34.4,2019-11-13 18:28:40,"Hi Sian, you could have done me the courtesy of contacting me directly so I could help. For anyone who reads this don't struggle on your own, just ask. Steve",2019-11-13 21:01:51,most_relevant,com.tasks.android +Sunie Fillmore,https://lh3.googleusercontent.com/-5-rC2MuOh0w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN5S6PJ3unRrb4qv701vIxkeJwMkQ/photo.jpg,"I really want to love this app but it won't even let me select PM so its constantly telling me its past the due date, which makes the app very useless to me.",2,1,2.0.0,2020-02-04 17:14:46,"Hi Sunie, apologies you're having an issue with setting AM/PM. Could you email directly (tasks.list.app@gmail.com) with a screenshot of what it looks like as everything looks good on my test devices. Maybe there is something specific to your device font or theme that is causing an issue. Thanks for your help in advance, Steve",2020-02-04 17:20:47,most_relevant,com.tasks.android +David Goodrich,https://lh3.googleusercontent.com/a-/AOh14GipPpvBuhYhLWstXlbQqeeCH9-XA86CedZ9ZUz-Qg,"Would like to assign priority rating to each task (A=do it soon, B=do it later, C=low priority, Z=take it off the list)",2,0,2.0.0,2019-12-18 02:23:46,"David, this is possible! Simply change the priority of a task e.g. high, medium, low, none. You can even sort by priority. A popular suggestion has been tags, these will be added in a future update. Finally, maybe in future you would do developers the courtesy of emailing them directly instead of coming here to complain. I hope this helps, Steve.",2019-12-18 08:58:11,most_relevant,com.tasks.android +TGI Roopashri,https://lh3.googleusercontent.com/a-/AOh14Gi5bRTEx04irnQYnQnEQkKeFpzwlgOJA7nCtVuGQA,"While changing list, by scrolling right to left, task get deleted, it's very confusing",2,5,2.0.0,2019-12-25 12:57:17,"When you first installed Tasks there was context based help regarding this. There is a setting to disable swipe to delete. For more help with basic features and setting checkout the ""Help"" button in the main menu. I hope this helps, Steve",2019-12-25 13:48:17,most_relevant,com.tasks.android +Giorgica Tranta,https://lh3.googleusercontent.com/-dOlzoHc04Zk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOjloLtthWuopLokY5ZCUP_V5SgcQ/photo.jpg,why would tasks be tabs instead of a list? the whole screen is empty and you make us scroll tabs :O,2,0,1.34.4,2019-11-11 08:02:19,"Giorgica, tasks are not tabs. The tabs are sub lists. Tasks has the hierarchy: parent list -> sub list(s) -> task(s) -> sub task(s). When you first open Tasks you will see context based help which will guide you through creating a list and task. There is also a ""Help"" button in the main menu, did you find this? I hope this helps, Steve",2019-11-11 09:11:15,most_relevant,com.tasks.android +Brian Miller,https://lh3.googleusercontent.com/-4u70-Bj53wY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPssmH16537Bz6zKRNahxzNtkieug/photo.jpg,Switching from one list to another stinks. Otherwise helpful,2,0,1.34.1,2019-10-31 14:51:07,"Hi Brian, maybe you could email me your suggestions for improvements instead of simply saying it ""stinks"". Tasks is a community driven hobby project of mine with all features offered for free without advertising. It simply relies on donations and my spare time. Please help to improve Tasks and show your full support for my project. Thanks, Steve",2019-10-31 15:50:34,most_relevant,com.tasks.android +Samantha Wan,https://lh3.googleusercontent.com/-qJgbiROd6D4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPikmU4mtsTSOq0weBoWFG3xDcyeQ/photo.jpg,"Not sure why everyone's given this such high reviews. The reminders don't work for me, which makes the whole point of having this app useless",2,6,2.0.0,2019-12-22 23:50:48,"Samantha, unlike you, others email me and get support or look at the help instead of just coming here to complain. This is an issue with your device not Tasks. Huawei add very aggressive power saving to their device which interferes with the standard Android alarm manager functions. Go here for details: https://mytasksapp.com/help/faqs. Steve",2019-12-23 09:19:38,most_relevant,com.tasks.android +Awkward Pony,https://lh3.googleusercontent.com/a-/AOh14GiKrZjYsHi_OrVNwUUZ0-0Cm7wZCtmOb6pCb5Zamg,"I actually really like this app but one of the biggest features that needs to work properly for my routines is repeating reminders. I set reminds for monthly bills such as rent, and set it to repeat ""monthly"". But when I complete the task, it uncompletes itself the very next day WITHOUT setting the reminder to the next month. Basically if i set it to November 1st, it tries to remind me again, daily, on november 1st. It doesn't work. I love the app but the most important feature is broken sadly.",2,0,1.33,2019-11-04 15:11:10,If the date and time are not being updated this is.almost certainly due to aggressive power saving on your device not Tasks. Tasks is a hobby project of mine with all features and support offered for free without advertising. It simply relies on donations and my spare time. You could have done me the courtesy of contacting me directly. Steve,2019-11-04 15:26:27,most_relevant,com.tasks.android +sally mcgregor,https://lh3.googleusercontent.com/-NpG2uDh-fos/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN2dTbUwoOIoEbZ7IeJguSH2ZuANg/photo.jpg,Not able to install on more than two devices. I found this frustrating as I had one phone stolen and another broke. Now I can’t download on my new phone because it’s already on the other with my main email. Does not allow another email. Not too pleased about this.,2,1,,2020-02-15 09:52:01,"Sally, I'm not sure I understand. You can install Tasks on as many devices as you wish. This sounds like an issue with google PlayStore not my app. However, If you're having an issue you could simply do me the courtesy of emailing directly (tasks.list.app@gmail.com) so I can help you instead of simply complaining. Steve",2020-02-15 09:56:22,most_relevant,com.tasks.android +Shalin Shah,https://lh3.googleusercontent.com/-K6hZiHhAxrA/AAAAAAAAAAI/AAAAAAAAAMc/AAKWJJN1BypVXPzubOYArqywo_-D5wr8UA/photo.jpg,"App is unable to manage Recurring Tasks. App has almost everything, but it fails on managing recurring task. After setting the task to be of Repeat type, marking task Completed for a specific day is marking entire task as completed..!!! And for this only reason, I had to uninstall. Please make necessary changes and inform.",2,0,,2019-12-01 18:08:41,"Hi Shalin, unfortunately you simply don't understand how my app works. You could have done me the courtesy of emailing me or looking at the ""Help"" (main menu): https://mytasksapp.com/help/faqs#recurring-task. Why do users think they understand everything in 10 seconds? Tasks will reset recurring tasks at midnight ready to be completed again. Steve",2019-12-01 18:18:45,most_relevant,com.tasks.android +Nathan Guerra,https://lh3.googleusercontent.com/a-/AOh14GihVRLEs0qeVCEbN9Q4nnVHHksHEAkSD3gDKgnxIAs,"Cancel means stop the action...not throw away all the notes I just made...sorry but this was suppse to save time not waste ideas and planning...poor comms from app on a normalized UI function. First go and really turned me off, could be lots more awesome, but things like this and not being able to recover the info quickly then...not acceptable when doing business tasks nowadays.",2,3,1.30,2019-10-31 22:25:30,"HI Nathan, apologies if you had an issue but I'm not 100% sure I understand. ""Cancel means stop""? on what? Where? Maybe you could do me the courtesy of contacting me directly (tasks.list.app@gmail.com)? Tasks is a hobby project of mine, please show your support and help to improve it for everyone.",2019-11-01 08:51:04,most_relevant,com.tasks.android +Phil Roggenbuck,https://lh3.googleusercontent.com/a-/AOh14GgzXT6AGeAWUtzeSr3Mw40xPGONiqNn1ANDiD-Jl50,"Awesome app, the only missing thing is that you can only set a date, I would like to have buttons to remind me later on the day. Or on the next day, or next week. UPDATE: No what I meant, is that I want to say remind me today and not remind me at date today at specific time. UPDATE: I would then receive the notification, at a specific time 5 hours later or something that can be altered in the settings. And also I don't want to put in a date! Look at the app TickTick has exactly what I want. :)",2,0,1.24.2,2019-02-13 09:00:07,"Hi Phil, Tasks is a community driven hobby project of mine with the most popular suggestions added over time. I will add your suggestion to my list for future improvements. I hope this helps, Steve",2019-02-13 09:19:06,most_relevant,com.tasks.android +Athena Roberts,https://lh3.googleusercontent.com/a-/AOh14GizWGjL30GaAv4hCyju6ZXAeVw7kys042qDVwgung,"28 Oct 2018: same problem. Repeating tasks do not update and advance to next due date when completed. Checks it as done and then unchecks sometime at night with previous due date. 27 Oct 2018: After hearing back from the author, giving it another shot. Put two repeating tasks on it. See how it goes. 27 Oct 2018: This app didn't work as well for me. It would regularly uncheck tasks I'd completed or check tasks I'd not completed. The repeating task function didn't work well either.",2,0,1.21,2018-10-28 16:52:13,"To add a repeating task: Create a new task, add a date and time (next occurrence e.g. 9am tomorrow), enable the reminder, add a repeat e.g. daily, save. You will receive a notification at 9am from tomorrow onwards. If you complete the task it will be reset at midnight (automatically) ready to be completed again the following day. Thanks, Steve",2018-10-28 17:07:33,most_relevant,com.tasks.android +Roderick Roy,https://lh3.googleusercontent.com/a-/AOh14GiO3H0x32FXmRG0dHi4NdO_ZP1qbRKVg8yqa_Dn,"Looking as everyone else's very +ve reviews. I seem to be the odd one out but I didn't find it straightforward. It is too easy to delete a list (on my S9 at least) with even a slight bit of a swipe. Once deleted it is lost. Why not have a 'back' or 'undo' button? Personally I don't find the heading, group, list structure particularly straightforward although I've now got used to it.",2,0,1.21,2018-10-27 11:46:57,"Hi Roderick, as I mentioned before: when you delete a task/list there is a temporary popup at the bottom fo the screen with an undo action. Swipe to delete can also be disabled in settings. I hope this helps, Steve",2018-10-27 17:20:35,most_relevant,com.tasks.android +um pseudonimo,https://lh3.googleusercontent.com/-qgzZdDMpIro/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNAYs_mqkwFXzWIPuzAlOeuykENyg/photo.jpg,"simple app, widget is bad (left side has a bar that ruins symmetry, also you cant remove the new task button), also, why can I change list color but cant change button color? would also be cool to preview what ""compact/cozy"" and whatnot settings do instead of having to select them one by one, leave settings, and go back in to change them again. all in all, its almost a 5 star app, but the nuissances ruin the experience a bit.",2,0,1.25,2019-02-24 03:50:43,"Hi, Tasks is a community driven hobby project of mine with the most popular suggestions added over time. I have tried to make my app as customisable as possible. However, each customisation takes time away from more mayor features. Note: There is a setting to remove the coloured bar on the left. I hope this helps, Steve",2019-02-24 10:18:34,most_relevant,com.tasks.android +Mento Matthews,https://lh3.googleusercontent.com/a-/AOh14GjxyggB0WIfLBf6YW2iILbiIy_btB3BthMUfmwltw,"It is not very flexible. It's a pain to make sub lists and quickly edit them. I wish when the app opened you see a list of all of your major tasks or a calendar. If these things are possible, maybe adding a tutorial feature when the app first downloads and opens would help streamline the experience.",2,0,,2019-05-02 19:13:41,"Hi Mento, this is possible. To see all tasks simply create a filtered list (left side menu) with the default options. then in settings set this as your default list. You can also enable the calendar in settings. Help is available through the ""Help"" button in the left side menu. I hope this helps, Steve",2019-05-02 19:34:02,most_relevant,com.tasks.android +Moreno Hector,https://lh3.googleusercontent.com/-9rkH5WamjuE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNhkDtSoUvADhMBOr1rdyiCa5jlEg/photo.jpg,No subscription tank you. Please full price. I no lack forever.,2,0,,2020-03-14 05:34:44,"Moreno, Tasks is a community driven hobby project of mine with all non cloud features offered for free without advertising. It has taken hundreds of hours to rite, improve and support and simply relies on my spare time to move forward. Servers, storage etc. around the world cost me money each month you use them.. You could show a little gratitude!",2020-03-15 10:46:29,most_relevant,com.tasks.android +Andy Troyer,https://lh3.googleusercontent.com/a-/AOh14Gi8lv3zMasCaeMhns_eFpAFDI94ge87c2HM48i9lf0,Without syncing to the cloud this todo app is unfortunately worthless. Love it otherwise and would have given it 4 or 5 stars. Please add sync since in my quest to find a good todo app this is the only one I've seen that doesn't sync anywhere between devices.,2,1,1.21,2018-10-15 02:43:58,"Hi Andy, Tasks is a community driven hobby project of mine. Sync has been a very popular suggestion and so I am currently working on server code to enable device to device sync, list sharing and cloud backup. I hope this helps, Steve",2018-10-15 08:08:58,most_relevant,com.tasks.android +Joker K,https://lh3.googleusercontent.com/-BT01WQmWj0g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMElntTAWxPRu0QbQIkwJ0NEGqpJg/photo.jpg,Too complicated to save and add.,2,1,1.34.4,2019-11-19 18:42:34,"Hi Joker, apologies my app was too complicated for you. Maybe you could be more specific and help improve my app for everyone else. Tasks is a community driven hobby project fo mine with the most popular suggestions added over time with all features and support offered for free without advertising. It simply relies on donations and my spare time.",2019-11-19 19:16:14,most_relevant,com.tasks.android +george fisher,https://lh3.googleusercontent.com/-gy_hwXzGBzg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNoqYGaOFNy1DSU6DURKPeyGcpL3Q/photo.jpg,It was okay but when I tried to set a reminder for 15 minutes from now it said reminders set in the past will not show. That is extremely inconvenient and annoying . I tried setting it for 15 minutes from now but didn't work. Would have given five stars if it wasn't for this issue,2,0,1.33.3,2019-09-12 17:11:30,"Hi George, Tasks is trying to tell you that you are setting a reminder in the past e.g. before now. Simply follow the instruction and set a date and time in the future. Apologies if the message is not clear enough. Please contact me directly and I will get you past this stumbling block? I hope this helps, Steve",2019-09-12 17:33:42,most_relevant,com.tasks.android +Nadine Maiwald,https://lh3.googleusercontent.com/a-/AOh14Gjmi88XslYg3kwtdNpNBgmezbH-p7nezIx_aMSA,"Got it primarily for reminders. It has a lot of settings for how you want your alarms or notifications, but those are pretty useless when they don't work. Didn't get a single notification to remind me of the stuff I set up.",2,0,1.21,2018-11-21 08:05:29,"Hi Nadine, apologies you're having an issue with my app. Some users have had problems on some devices because of very aggressive power saving implemented by the manufacturers. Could you check your phones power saving options. Let mw know if you're still having problems. Thanks, Steve",2018-11-21 08:56:08,most_relevant,com.tasks.android +Sudhakar Mothey,https://lh3.googleusercontent.com/a-/AOh14GgBebKGBeVawRz71vbc7_KYEH1pAK9rnRvE_IglPA,"Bad experience as the events created (Ex: Birthdays, Anniversaries, etc.) in Alarm mode is working only sometimes!! In such situations, the event is just turning ""Red"" (but Alarm is not ringing) as if i missed the event...!!",2,0,1.23,2019-01-04 10:32:01,"Hi Sudhakar, apologies you're having an issue with my app. Some manufacturers add very aggressive power saving to their devices which can interfere with the standard Android alarm manager. Please check all power saving and notification settings on your device. I hope this helps, Steve",2019-01-04 10:42:28,most_relevant,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Not competent at scheduling. Recurring tasks are automatically ""completed"" if not checked by the scheduled time. There is no way to know if you missed it. The interface is pleasant though.",2,0,,2019-03-02 09:05:21,"Recurring tasks are not automatically completed. When you receive a notification the reminder is automatically changed to the next occurrence. To know you missed it, you will have a notification. These can be made persistent via settings. I hope this helps, Steve",2019-03-02 09:41:05,most_relevant,com.tasks.android +Tanya Ruppell,https://lh3.googleusercontent.com/-WBTnuwk7Aas/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMyQbS4xLLczwzPtFeQAooi1PJg4w/photo.jpg,"Liked the prioritization by dragging and the highlighting, but there does not seem to be a way to create recurring tasks. That's a deal -breaker for me. I'm uninstalling",2,1,1.21,2018-11-10 12:46:07,"Hi Tanya, to add a recurring task simply add a date and time (next occurrence e.g. 9am tomorrow), enable the reminder, add a repeat (e.g. daily) and save. I hope this helps, Steve",2018-11-10 13:52:09,most_relevant,com.tasks.android +Marcus Korn,https://lh3.googleusercontent.com/a-/AOh14GjNeNInQ6VoX2pTFls6eWDRCtD9YP_W1S4CwQq-bw,"app maybe okay, but its very confusing to understand. I have tried about 30 min to set a simple task for a particular date, but it doesnt show up anywhere. So, i will keep looking for a more simplyfied app. Sorry.",2,0,,2019-07-09 12:17:15,"Hi Marcus, apologies you found my app too complicated for you. Did you look at the help (via the help button in the main menu). I'm not sure how you were unable to do this. There is context based help when you start. Simply add a task, click Due Date and add a date and time when prompted. Good luck finding something at your level. Steve",2019-07-23 10:43:27,most_relevant,com.tasks.android +Sports Fam,https://lh3.googleusercontent.com/a-/AOh14GhuHsOGPRqOMUqpcYUXThrodG4qW75GUAKRE2A7A_0,i hate how you cannot open the app and see all your lists there. you have to have one open at all times and it does not show a list of your list on the home screen. deleting this app for this reason. too bad... the rest is great. but they need a home screen. they don't have one.,2,2,1.29,2019-07-13 16:52:43,"2 stars for no home screen! Too bad. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It is offered for free without advertising. Most users like to pickup where they left off. A home screen has been a popular suggestion and so will be added in a future update. I hope this helps, Steve",2019-07-13 17:20:53,most_relevant,com.tasks.android +Karin Lickers,https://lh3.googleusercontent.com/a-/AOh14Gg5MpgcZvOR0w1WZtahC26-NQqPSc-Fgk7Dws3Go_M,"trying to switch from wunderlist and the import option doesn't work or give any assistance to troubleshoot. I just get the message ""file not found"" with nothing else to say where it's looking for the file so I can get it in the right place.",2,3,1.30,2019-07-25 15:38:20,"Hi Karin, instructions are available via the help button in the main menu: https://mytasksapp.com/help/getting-started. If you need more help, simply email me. I hope this helps, Steve",2019-07-25 16:04:53,most_relevant,com.tasks.android +Carlton Reynolds,https://lh3.googleusercontent.com/a-/AOh14GgBnwmH5ymu7GvRsFjou14hfCde05dTHMgSdxzXTQ,"Tasks that repeat more than once daily dont work, if you have something that is twice a day you have to have two separate tasks. If you leave a task pending until the following day and complete it, it will never work again.",2,20,1.31,2019-08-20 03:10:44,"Hi Carlton, Tasks will always honour the schedule set. When you receive a notification Tasks will automatically increment the date and time to the next occurrence. If you mark a task as completed today it will not display again today. What are you trying to do? Thanks, Steve",2019-08-20 07:33:53,most_relevant,com.tasks.android +CrazyMutant DesertGuy,https://lh3.googleusercontent.com/-ayKqT94Q1xM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPV5tBYQUf9hamU-8c1dmWNKLB_yQ/photo.jpg,"To Do list apps, like this one, are not useful without the capability of using recurring tasks. Too bad because the interface is otherwise well done.",2,0,,2018-11-24 00:09:34,"Hi, to add a recurring task simply: create a new task or edit an existing one, add a date and time (next occurrence), enable the reminder, add a repeat e.g. daily, save. There is more help on my new website: https://mytasksapp.com/help. I hope this helps, Steve",2018-11-24 09:35:10,most_relevant,com.tasks.android +Arunima Jain,https://lh3.googleusercontent.com/a-/AOh14Gil42Bf-oXyZb29XcrS5HvCvHDXQ_Ee8LqLwzXdlg,"I keep completing tasks, and the next day they open automatically again and the notification pops up. Its very irritating and confusing. What's the point of opening a completed task? Maybe you need to add an option to permanently close repeat tasks vs close them for that day",2,0,1.30,2019-07-28 10:53:12,"Hi Arunima, Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It is offered for free without advertising. I will add your suggestion to my list for future improvements. I hope this helps, Steve",2019-07-28 11:13:52,most_relevant,com.tasks.android +Reginald Raphael,https://lh3.googleusercontent.com/a-/AOh14GjOf-FqNrJeV8fyzvN5uDJpHS6u3OjYwWlteURlNQ,so far the app is great. would get 5 stars if it had a tabbing feature where you can side over to each task name instead of having to go to the menu button to switch.,2,1,1.24.1,2019-01-20 04:51:03,"Hi Reginald, Tasks is a community driven hobby project of mine with the most popular suggestions added over time. I will add your suggestion to my list for future improvements. I hope this helps, Steve",2019-01-20 08:59:52,most_relevant,com.tasks.android +Tony Dassow,https://lh3.googleusercontent.com/a-/AOh14GjgngyUEj8RH8yKF6Hjqi-BgWh-jVXlpgL8k1s_,Due Date is wonky. I made a few items on my list and the due will not change from the current day. The due date worked on other items. I don't need another app to work around.,2,0,1.20.3,2018-09-12 16:15:04,"Hi Tony. To change the due date simply tap of the date. To change the time tap the time. If you're having problems please contact me. Thanks, Steve",2018-09-12 16:19:43,most_relevant,com.tasks.android +Connie Rehfuss,https://lh3.googleusercontent.com/a-/AOh14GjZ-EUAjw1WgjW2ohBxQojXNTFFN48l8UIYSX2c,Decent app but does NOT seem to be able to sync with my google calendar. Without that it is pretty useless to me. I like that sub-tasks are listed as an indent to the main task not as a seperate task.,2,0,,2019-08-09 08:46:07,"Hi Connie, I do not claim this as a feature on the PlayStore. However, if you long press a task you will see an ""add to calendar"" option. Alternatively open a tasks detail screen and click the calendar icon (top right). Tasks is a hobby project of mine with all feature offered for free and without advertising. I hope this helps, Steve",2019-08-09 08:58:16,most_relevant,com.tasks.android +Saleema,https://lh3.googleusercontent.com/a-/AOh14GgKmwWb5HFm6LJ5Pjlno52JiOMtMJjGbm95wL4fzCU,Setting am/pm is not easy,2,1,2.0.0,2020-02-04 17:05:46,"Hi Saleema, apologies you're having an issue with setting AM/PM. Could you email directly (tasks.list.app@gmail.com) with a screenshot of what it looks like as everything looks good on my test devices. Maybe there is something specific to your device font or theme that is causing an issue. Thanks for your help in advance, Steve",2020-02-04 17:20:30,most_relevant,com.tasks.android +Joanna Koenigsberg,https://lh3.googleusercontent.com/a-/AOh14GjnK9aVmo8dt3d95lGVSDz38xvj_suYKbiyicio,"it was pretty good on my old phone. then when everything was ported to my new one, the app came, but not the lists I'd made. what's the point of that?! I've deleted it.",2,0,1.23,2019-01-10 18:23:23,"Hi Joanna, there is a backup/restore feature in the app settings. For help checkout my website: https://mytasksapp.com/help/faqs. Tasks is a community driven hobby project of mine. Cloud backup has been a popular suggestion and so I am currently working on server code to enable this. I hope this helps, Steve",2019-01-10 18:37:31,most_relevant,com.tasks.android +Cynthia Desgagné,https://lh3.googleusercontent.com/-5gCNC5EhWtw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMguDMxGJRmFuJG6NDvjM6bEb8AGg/photo.jpg,"I love nearly everything about this app, but it eats up the battery on my phone like crazy because it is always running in the background.",2,0,1.26,2019-06-13 12:44:01,"Hi Cynthia, can I ask why you think this? Tasks is a community driven hobby project fo mine. It does not run any background services. Maybe you could contact me directly with a screenshot of your battery usage? Thanks, Steve",2019-06-13 12:47:42,most_relevant,com.tasks.android +Rony Khairallah,https://lh3.googleusercontent.com/a-/AOh14GjB8O9hYsUTC98reE77-rPFmvO5gLLOEpjsqCwqpA,"Using this apps, i can guarantee you will never remember one single task. Needs more improvements to be classified under reminders category.",2,0,1.26,2019-05-21 19:22:30,"Hi Rony, unfortunately some device manufacturers add very aggressive power saving to their devices which interferes with the standard Android alarm manager functions. Please check all power optimisation settings related to Tasks app and enable where appropriate. I hope this helps, Steve",2019-05-21 19:53:28,most_relevant,com.tasks.android +N Cooper,https://lh3.googleusercontent.com/-HqRIiPWqMzc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNxGPBqDRGOHhuSiBjyyqiEF5NbhQ/photo.jpg,"YOUR CONDESCENDING ATTITUDE IS NOT HELPING YOR CASE. There is a sublist reorder but NOTHING for the MAIN LIST. THERE IS NO SORT OF ANY KIND says sort by DO DATE or lets you PICK WHAT TO SORT BY, A LOGIC CHOICE. Completed tasks NEED TO CHANGE IMIEDIATELY so you KNOW IT'S COMPLETED & next month IS SET. I DIDN'T SAY IT WASN'T SIMPLE. The INTERFACE is NOT VERY INTUITIVE. I DID LOOK AT HELP & THERE is LITTLE FOR THE MAIN LIST. YOU ARE very IRRITATING so I am going to try other choices.",2,0,2.2.0,2020-02-28 03:52:36,"Apologies my app was too complicated for you. To change the sort option simply open the sub list menu (3 dots top right) and click sort. Try scrolling down the list of sort.option. There is a ""Help"" button in the main menu. Completed tasks remain in your list until midnight, again mentioned in the help.",2020-02-28 07:01:58,most_relevant,com.tasks.android +Tyler Rex,https://lh3.googleusercontent.com/a-/AOh14GgtNpy_UeCVI9eojJzxu0afLu_kY6U8k5D5QvrFDQ,PLEASE make a home screen where it shows your active main tasks allowing you to just press and view them without having to click the top left button snd select. this would be VERY convenient. thank you.,2,0,1.30,2019-07-26 06:13:18,"Hi Tyler, giving a low rating and asking for something is not cool. Show some support! Tasks is a community driven hobby project of mine with the most popular suggestions added over time with all features offered for free without advertising. This has been a popular suggestion and so will be added in a future update. I hope this helps, Steve",2019-07-26 07:12:36,most_relevant,com.tasks.android +Colleen Janes,https://lh3.googleusercontent.com/a-/AOh14GhxR2QaD9wIvu5NwCYtLRZ_FE383BZS7cWI-X2t,I found the white text against many of the colors very difficult to read.,2,0,,2019-04-15 06:32:07,"Hi Colleen, apologies you didn't like my app. You are able to choose any colour and so you could simply choose a slightly darker colour. Tasks is a community driven project of mine with the most popular suggestions added over time. I will add your suggestion to my list for future improvements. I hope this helps, Steve",2019-04-15 07:16:25,most_relevant,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,No easy way to import/export tasks in a compatible format (e.g. Google Tasks),2,0,,2018-11-14 22:54:34,"Hi, Tasks is a community driven hobby project of mine. Unfortunately all task apps have different formats and so this was not really possible. Google tasks import has been a popular suggestion and so will be added in a future update. I hope this helps, Steve",2018-11-15 08:44:54,most_relevant,com.tasks.android +Heather Mason,https://lh3.googleusercontent.com/-hCFmkM-rhOc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPEweL3qzRh809oCau3eonOzI_LEg/photo.jpg,I had a reminder set with a certain sound & it never went off,2,0,,2018-10-01 03:49:43,"Hi Heather, apologies you're having an issue. Could you contact me directly so I may help you. Thanks, Steve",2018-10-01 08:10:54,most_relevant,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Does not have a recurring task feature. Useless for me.,2,0,,2019-01-01 00:23:05,"Hi, this is absolutely possible. Please checkout my website for help: https://mytasksapp.com/help/faqs. I hope this helps, Steve",2019-01-01 02:10:22,most_relevant,com.tasks.android +P A,https://lh3.googleusercontent.com/a-/AOh14Gjvb-7_2CLIN_rc4Kse3ZXT0PjGMj6YAEjqrM6V,"Recurence tasks does not work properly, otherwise I would give 4 starts.",2,1,1.26,2019-06-08 12:07:40,"Hi, Tasks is a community driven hobby project of mine with the most popular suggestions added over time. How are Recurring tasks not working ""properly""? How should they work? Maybe you can add some details so I can assist you? Thanks, Steve",2019-06-09 17:13:58,most_relevant,com.tasks.android +Toufica Masud,https://lh3.googleusercontent.com/-7qGIwMg5z3g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO-Y3Y7r7fDcqAHIgzwIpscK8l2_Q/photo.jpg,I don't understand why it's not letting me type in it. It gets hanged everytime. I meant that amake ora onek birokto kortese....sorry I speak only Bahamian,2,3,1.33.3,2019-09-27 09:49:56,"Hi Toufica, could you send me an email: tasks.list.app@gmail.com with a screenshot and the steps to reproduce this? e.g., 1 press x, 2 do y etc. Thanks, Steve",2019-09-27 10:04:21,most_relevant,com.tasks.android +andri triyono,https://lh3.googleusercontent.com/a-/AOh14GhvKOlcXg0ic7ozRIjnR0gspHlJMnPWmbiWxt5KEA,"you should have name to change date with ""yesterday"" ""today"" ""tomorrow"" (not number) on widget view",2,0,1.23,2018-12-10 23:42:04,"Hi, If you expand the widget to your full screen width it will display the date (same as in the app). I hope this helps, Steve",2018-11-22 09:09:54,most_relevant,com.tasks.android +J J,https://lh3.googleusercontent.com/-wR5d_ydGvII/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMpM4RmCcPrx4MiceilQPryqOf_hg/photo.jpg,Seriously? How did it get a 4.8? I can't even find an add button anywhere??? Unless i go to the top left corner? Nah. Not for me,2,0,1.21,2018-10-18 10:08:18,"Hi, apologies Tasks was not for you. You need to add a list before you can add any tasks. To add a list open the menu (top left) and tap add list. You can then add sub lists, tasks etc. I hope this helps, Steve",2018-10-18 09:33:38,most_relevant,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Can't put cute stickers on them no cuteness on phone,2,0,1.21,2018-11-28 03:32:29,"Hi, I'm not sure I understand? You can pick your colours for ""cuteness"". What do you mean by stickers? Thanks, Steve",2018-11-28 08:31:48,most_relevant,com.tasks.android +Riley Road,https://lh3.googleusercontent.com/a-/AOh14GiFqnd7B8h9RDkzSCEz7XwCr9JOk7ZrVtd31LBS,cant complete subtasks through widget .. huge turn off,2,0,1.26,2019-06-04 03:44:43,"Hi Trey, Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It is offered for free without adverts and simply relies on donations and my spare time. Widgets are very limited and can not do the same as apps. Check boxes for subtasks was simply not possible. I hope you understand, Steve",2019-06-04 08:11:33,most_relevant,com.tasks.android +Devinda SL,https://lh3.googleusercontent.com/-sj20iIjXOSk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNv0dSD_fKScY3ppJBqhCZeWxBPVg/photo.jpg,Not Working On Xperia E1!,2,0,,2019-09-28 05:59:06,"Maybe you could be more specific? What is not working? If you mean notifications this is an issue with your phone not Tasks. It is due to aggressive power saving which interferes with the standard Android alarm manager functions. Please check all power optimisation settings related to Tasks app and enable where appropriate. I hope this helps, Steve",2019-09-28 09:14:40,most_relevant,com.tasks.android +Shelly Altman,https://lh3.googleusercontent.com/-GNc7-1L242o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNqKyTs5Fqh6ldzIKVBiGPX0mbylQ/photo.jpg,skips reminders until I pick up and check my phone. then they go off😖,2,5,1.26,2019-05-20 14:47:44,"Hi Shelly, unfortunately some manufacturers add very aggressive power saving to their devices which interferes with the standard Android alarm manager functions. Please check all power optimisation settings related to Tasks app and enable where appropriate. I hope this helps, Steve",2019-05-20 15:49:35,most_relevant,com.tasks.android +Wendy Vercoe,https://lh3.googleusercontent.com/a-/AOh14GhFuyfMV6L24UejN3kYfBQ8hLaEFZ3O4Q2D0o7Lmw,Wish I could sync it across multiple devices :(,2,0,1.28,2019-07-02 06:59:32,"Hi Wendy, this is not mentioned in the PlayStore description! However, Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It is offered for free without adverts. This has been popular and so I am working to enable device to device sync list sharing and cloud backup. I hope this helps, Steve",2019-07-02 07:37:30,most_relevant,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,I uninstalled the app because it sends my phone info to the developer,2,0,,2019-02-24 21:18:29,"Hi, why do you think that? All users data is held in an encrypted area on your device which I do not have access to. Please checkout the privacy policy for details. I hope this helps, Steve",2019-02-24 22:30:47,most_relevant,com.tasks.android +Kitchen Counter,https://lh3.googleusercontent.com/a-/AOh14GjbVTfAWAdVuU322p0dYVXO5Wrodjz3kseQMLv--g,Dont this app have repeat task feature?,2,0,2.0.0,2020-01-23 08:42:52,"Yes, simply add a date and time (next occurrence e.g. 9am tomorrow), add a repeat e.g. daily and save. For more help checkout the online help (available through the ""Help"" button in the main menu https://mytasksapp.com/help/faqs#recurring-task I hope this helps, Steve",2020-01-23 08:56:37,most_relevant,com.tasks.android +Connie Zink,https://lh3.googleusercontent.com/-lemqI4BGJ8A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMmqqvQX4kp9kXf7kkeQaoTplLUkA/photo.jpg,Keeps me on top of things,2,0,2.0.0,2019-12-23 02:24:03,"Hi Connie, I don't understand your feedback! A low rating but positive comment. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. It simply relies on donations and my spare time to move forward. Each star help. Thanks, Steve",2019-12-23 09:16:24,most_relevant,com.tasks.android +somona felix,https://lh3.googleusercontent.com/-4zLgjbUdPnM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMUw_qTCo927Vu8JACzPw9haxSs4g/photo.jpg,I'd like to know how to create home screen widgets.,2,0,1.25.1,2019-03-21 18:39:52,"Hi Somona, simply long press on your home screen select widgets, drag and drop the Tasks widget into a blank area on your home screen. The widget can be resized to meet your needs (checkout my website: https://mytasksapp.com/help/faqs). Select a list by tapping the list icon (top left). I hope this helps, Steve. Did it work?",2019-03-21 18:45:25,most_relevant,com.tasks.android +Debra McFarlane,https://lh3.googleusercontent.com/-CZuzd96pyZA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMML-HicEl3Cjhv0hulapVgW-EP3w/photo.jpg,"just started using it, but so far so good",2,0,1.25,2019-02-24 15:39:04,"Hi Debra, really glad you're finding my app useful. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. What would help make my app a 5 star app for you? Thanks, Steve",2019-02-24 16:01:31,most_relevant,com.tasks.android +Terry Sadler,https://lh3.googleusercontent.com/-Sfk-d00Ytlw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPsvyaBuhghzAdO01SKZfMgSBp3yg/photo.jpg,Hard to use,2,0,,2019-11-30 18:48:22,"Terry, apologies my app was too complicated for you. You are the only one to say this, so maybe you could give a few more details as to what you found so ""hard"". I have provided context based help when you first launch Tasks and there is a ""Help"" button in the main menu. What more did you need? Or maybe you just couldn't be bothered to work it out?",2019-11-30 19:43:11,most_relevant,com.tasks.android +Derek Scott,https://lh3.googleusercontent.com/-xGp1XaANINM/AAAAAAAAAAI/AAAAAAAFMQo/AAKWJJN-nJWVFOC-4my_1WJhtTO4DZdA9g/photo.jpg,Useless. No nesting,2,0,1.33.3,2019-10-05 06:05:30,"Hi Derek, I'm not 100% sure I understand? Tasks has the hierarchy: parent list -> sub list(s) -> task(s) -> sub task(s). how much nesting do you need? What are you trying to do? Tasks is a community driven hobby project fo mine with the most popular suggestions added over time. Maybe a little explanation and I can help you. Thanks, Steve",2019-10-05 07:58:02,most_relevant,com.tasks.android +abhinav srivastava,https://lh3.googleusercontent.com/a-/AOh14Ghi1NTNejcaIaE4CALs0MAPma1uB5qr2QJLiNJL1w,not so good,2,1,1.25,2019-03-14 21:38:08,"Hi Abhinav, apologies my app was not for you. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. What would help make my app a 5 star app for you? Thanks, Steve",2019-03-14 22:04:05,most_relevant,com.tasks.android +YF YF,https://lh3.googleusercontent.com/a-/AOh14Giikm0yZPlyyo9AnRhtvaZi0qhpR7yU3hLHAeOGJg,stupid auto correct,2,3,1.26,2019-06-08 11:44:29,"Hi, I am not sure I understand your feedback? Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It is offered for free without advertising. What did you have an issue with? Thanks, Steve",2019-06-09 13:10:06,most_relevant,com.tasks.android +Sherzad,https://lh3.googleusercontent.com/a-/AOh14Gi9ndAcwQlONfMqaBgZNboGh4gtv22fzFqWIaeu,Useful.,2,0,1.34.4,2019-11-24 06:50:20,"Hi Sherzad, could you be more specific? Are you having an issue with my app? Tasks is a community driven hobby project of mine. Please help improve my app for everyone. Thanks, Steve",2019-11-24 09:08:22,most_relevant,com.tasks.android +maud chassignol,https://lh3.googleusercontent.com/a-/AOh14GiJfV-L13y3j6KheMMdUS-ON1Utim2Ge7vyyXclsQ,le partage est tres nul.... cest juste un texte envoyé a l autre...,2,2,1.26,2019-05-20 06:48:09,"Hi Maud, that is correct. Sharing is not mentioned in the PlayStore description! Tasks is a community driven hobby project of mine with the most popular suggestions added over time. I am currently working server code to enable list sharing between devices. I hope this helps, Steve",2019-05-20 07:08:18,most_relevant,com.tasks.android +Chrissy Kempel,https://lh3.googleusercontent.com/a-/AOh14GjVvc-uUBt_d-aef3wGI98C0RvHJPc8WHyjlWBpSBM,It worked for the first week. Now I can't add a task without it crashing.,2,2,1.20,2018-08-30 04:06:06,"Hi Chrissy, I've pushed an update (v1.20.1) which will fix the issue. Again I'm sorry you had a problem with my app. Let me know if you still have problems. Thanks, Steve",2018-08-30 13:28:12,most_relevant,com.tasks.android +Prashant,https://lh3.googleusercontent.com/a-/AOh14Girg7XKQ81xiojLbClTnfq86KXGUwkf3EbjAytzvw,In this app reminder doesn't work,2,2,1.20,2018-08-30 01:22:22,"Hi, I'm sorry you're having an issue with my app. In other cases this has is due to manufacturers making changes to Android. I am not familiar with Micromax however, is there a power saving app or managements app included. You may need to whitelist Tasks. Let me know if you're still having a problem and I'll try to help. Steve",2018-08-30 07:38:25,most_relevant,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Repeat function doesnt work, so you can't set up tasks to be repeated +daily.. You can basically create a list and then delete items as they are +completed. That is all this does. Basically useless for anything other than +a shopping list.",2,9,1.19.2,2018-07-10 07:20:05,"Hi, I'm sorry you're having issues with my app. Once a task is marked as complete it will not repeat. I've had lots of feedback around reminders and so am currently making enhancements. These will be available in future uodates. I hope this help. Steve",2018-07-10 09:20:13,most_relevant,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Repeat function does not work making the app useless as a task list. Might +as well use my calendar. Almost missed a credit card payment because this +app didn't repeat the task.",2,0,1.19.2,2018-07-22 16:33:17,"Hi, I'm sorry you're having issues with my app. Once a task is marked as complete it will not repeat. I am currently working on improvements to reminders. Could you email me with the issue you saw so I may fix it. Thanks, Steve",2018-07-23 10:38:18,most_relevant,com.tasks.android +Karim Benzema,https://lh3.googleusercontent.com/-wWCreOHqOIM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOWeqV6vim_6Bg0kqVH0izgSnUd7g/photo.jpg,It doesn't ring to notify me,2,0,1.19.2,2018-08-16 12:38:37,"Hi Karim, I'm sorry you're having issues with my app. Other users have had problems receiving notifications on Meizu devices. Please check the app notification settings and any additional power managements settings. If you're still having issues, please contact me directly. Thanks, Steve",2018-08-17 07:52:36,most_relevant,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,No Google tasks integration.,2,0,1.19.2,2018-08-07 10:41:16,"Hi, unfortunately Google tasks data model is too simplistic for synchronisation with Tasks and is why I do not list it as a feature of my app. Cheers, Steve",2018-08-07 15:40:31,most_relevant,com.tasks.android +Noah Burno,https://lh3.googleusercontent.com/a-/AOh14GgWXg2cuwcey-aSySga5MbMgB-RgWKJ3EL4dAabtA,"Dates and times? No such thing here Sure you can colorcode and organize and +sort your tasks to death, but strangely enough there's no changing when a +reminder will go off, no setting when a task is due (perhaps if you used +this for work or a meeting), or not even the ability to set a due date for +a task. It can be put in the details, but when time is of the essence +you're better off using a better task app",2,6,1.18.1,2018-06-14 20:47:04,"Hi Noah, tasks is a community driven hobby project with the most popular suggestion added over time. I've had lots of feedback around reminders and so will be enhancing them in future updates. Thanks, Steve",2018-06-14 21:32:13,most_relevant,com.tasks.android +Judy A,https://lh3.googleusercontent.com/-4FHcFxH1WGs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOtSdC8sN8z4JKsKc0_sE_Ab1O1fQ/photo.jpg,"It sounded good, so I installed it. My first task is an annual subscription +reminder. This app doesn't offer an annual reminder so, yet again, I'd have +to use two different apps for tasks. Why can't anyone get this right.",2,5,1.18.1,2018-06-05 19:09:18,"Hi Judy. Thanks for trying my app. Im sorry my app doesn't meet your requirement. Tasks is a community driven, hobby project with the most popular suggestions added over time. I've had a lot of feedback regarding reminders and so am working on enhancements. Thanks, Steve",2018-06-05 20:19:16,most_relevant,com.tasks.android +Artur,https://lh3.googleusercontent.com/-JItUjJ6ehxg/AAAAAAAAAAI/AAAAAAAAACE/AAKWJJOPaHDKxHVUBi6o0soJ9Z_B6DowBg/photo.jpg,No custom repeat frequency...,2,0,1.18.1,2018-06-14 20:49:50,"Hi Artur. This has been a very popular suggestion and so will be added in a future update. Thanks, Steve",2018-06-14 21:33:52,most_relevant,com.tasks.android +Sacrod AYAN,https://lh3.googleusercontent.com/a-/AOh14Giu8c2xW7pjjWHosgLFBfUYmonGshRUSa8plC4-Vg,Does this app truly have reminders?? It refused to remind me of my event,2,0,1.17,2018-05-01 11:13:21,"Hi, I'm sorry you're having issues with my app. Could you email me so I can assist and find out what's going wrong. Thanks, Steve",2018-05-01 13:26:40,most_relevant,com.tasks.android +Fatima Aisya,https://lh3.googleusercontent.com/a-/AOh14GiEmNTSWH-4LhdD6EQZX145SqGDjAmkUwSHhYLJ,Please make it available as a widget.,2,1,1.11,2017-09-27 23:44:52,"Hi Fatima, a widget is now available in the latest version. Hopefully this helps make it a 5 star app for you. Thanks, Steve",2018-05-01 19:35:15,most_relevant,com.tasks.android +Lorraine Pippard,https://lh3.googleusercontent.com/-y9A_cvaTxDA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOKklktn0M4ab6twJ4B-RpVRU7PmA/photo.jpg,This was OK for a few days but now when I open it it is just a blank screen and I have lost all my tasks. Very annoying as these were important reminders !,2,1,1.1,2017-03-07 12:46:57,"Hi Lorraine, I'm really sorry to her that. Could to tell me what phone you are using, or better still email me at tasks.list.app@gmail.com so I can ensure this doesn't happen again. Many thanks, Steve",2017-03-07 17:34:18,most_relevant,com.tasks.android +Michael Billingsley,https://lh3.googleusercontent.com/a-/AOh14Gj0Mc80L9CuV1DYnYUqa61ayXp5h1XMA-p7KLafsqI,"Was excited for this app. But the fact I can't change the notification +alarm is a deal breaker.",2,0,,2018-04-17 16:06:42,"Hi Michael, tasks is a community driven hobby project of mine with the most popular suggestions added over time. I am currently working on a widget and then reminder/notification enhancements. I hope this helps. Steve",2018-04-17 16:59:11,most_relevant,com.tasks.android +karen thornton,https://lh3.googleusercontent.com/-y8v87GX3nn0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNMKEublKNX8TcEcE-WKfdgfzG3tg/photo.jpg,complicated,2,0,,2019-02-28 22:17:16,"Hi Karen, apologies you found my app too complicated. Could you give more details as I have worked with many users to make it as simple and intuitive as possible. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. Please help me improve Tasks for everyone. Thanks, Steve",2019-03-01 08:14:40,most_relevant,com.tasks.android +louisel carlos,https://lh3.googleusercontent.com/-Gp0b46y9QCc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMvIhzWtCkT6O1hsghtYmVOk4jPww/photo.jpg,Reminder notification not on time for about an hour so it is inconvenient,2,0,2.3.2,2020-04-02 07:02:27,"Carlos, unfortunately this is an issue with your device not Tasks. Redmi add very aggressive power saving to their devices which breaks the standard Android alarm manager functions. You will have seen a warning dialog telling you this. Here is the link (also available via the Help button in the main menu): https://mytasksapp.com/help/faqs",2020-04-02 07:18:16,newest,com.tasks.android +Barbara Dunning,https://lh3.googleusercontent.com/a-/AOh14GiE12tU-Qgz28EYUgB7no1MMR5JyQztnAzAYrknOh4,"I loved this app at first, but now when I change my task dates/times, it doesn't actually change them, and continues to alert me at the original time even though I've clearly changed it. It's very annoying.",2,3,2.3.2,2020-03-23 01:12:05,"Hi Barbara, apologies you're having an issue. You are the only user to report anything like this. Maybe you could do me the courtesy of emailing me directly with more details. How are you changing the date? And the steps to reproduce this. Together we can help you love my app again :) Steve",2020-03-23 07:55:52,newest,com.tasks.android +Moreno Hector,https://lh3.googleusercontent.com/-9rkH5WamjuE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNhkDtSoUvADhMBOr1rdyiCa5jlEg/photo.jpg,No subscription tank you. Please full price. I no lack forever.,2,0,,2020-03-14 05:34:44,"Moreno, Tasks is a community driven hobby project of mine with all non cloud features offered for free without advertising. It has taken hundreds of hours to rite, improve and support and simply relies on my spare time to move forward. Servers, storage etc. around the world cost me money each month you use them.. You could show a little gratitude!",2020-03-15 10:46:29,newest,com.tasks.android +Surupa Ray,https://lh3.googleusercontent.com/a-/AOh14GhQyWndArhGvG68xrtk3PGrs2QfjYEG7XmEVOdxJw,While swiping towards right the tasks are getting deleted. At least it should ask for confirmation whether the delete is happening accidentally or we really want to delete.,2,0,2.2.0,2020-03-03 05:14:20,"Hi Surupa, you could simply disable swipe to delete in settings!? Note, when you delete a task/list you will see a temporary popup at the bottom of your screen with an undo action. If you miss this your tasks will be moved to your ""Deleted items"" list (main menu). I hope this helps, Steve",2020-03-03 08:13:53,newest,com.tasks.android +N Cooper,https://lh3.googleusercontent.com/-HqRIiPWqMzc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNxGPBqDRGOHhuSiBjyyqiEF5NbhQ/photo.jpg,"YOUR CONDESCENDING ATTITUDE IS NOT HELPING YOR CASE. There is a sublist reorder but NOTHING for the MAIN LIST. THERE IS NO SORT OF ANY KIND says sort by DO DATE or lets you PICK WHAT TO SORT BY, A LOGIC CHOICE. Completed tasks NEED TO CHANGE IMIEDIATELY so you KNOW IT'S COMPLETED & next month IS SET. I DIDN'T SAY IT WASN'T SIMPLE. The INTERFACE is NOT VERY INTUITIVE. I DID LOOK AT HELP & THERE is LITTLE FOR THE MAIN LIST. YOU ARE very IRRITATING so I am going to try other choices.",2,0,2.2.0,2020-02-28 03:52:36,"Apologies my app was too complicated for you. To change the sort option simply open the sub list menu (3 dots top right) and click sort. Try scrolling down the list of sort.option. There is a ""Help"" button in the main menu. Completed tasks remain in your list until midnight, again mentioned in the help.",2020-02-28 07:01:58,newest,com.tasks.android +Ryan WS,https://lh3.googleusercontent.com/a-/AOh14GjI1lwWASddu_7418VlukRBF3GD40ZQ6NFqkAt9,"Almost what i need, except there's no option to set a start & end time with reminder for the start. So it's useless (for me).",2,5,2.2.0,2020-02-23 03:38:01,"Hi Ryan, apologies my app wasn't quite right for you. However, Tasks is a community driven hobby project of mine with all features and support offered for free without advertising. It simply relies on donations and my spare time to move forward. I will add your suggestion to my list for future improvements. I hope this helps, Steve",2020-02-23 08:45:22,newest,com.tasks.android +sally mcgregor,https://lh3.googleusercontent.com/-NpG2uDh-fos/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN2dTbUwoOIoEbZ7IeJguSH2ZuANg/photo.jpg,Not able to install on more than two devices. I found this frustrating as I had one phone stolen and another broke. Now I can’t download on my new phone because it’s already on the other with my main email. Does not allow another email. Not too pleased about this.,2,1,,2020-02-15 09:52:01,"Sally, I'm not sure I understand. You can install Tasks on as many devices as you wish. This sounds like an issue with google PlayStore not my app. However, If you're having an issue you could simply do me the courtesy of emailing directly (tasks.list.app@gmail.com) so I can help you instead of simply complaining. Steve",2020-02-15 09:56:22,newest,com.tasks.android +Sunie Fillmore,https://lh3.googleusercontent.com/-5-rC2MuOh0w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN5S6PJ3unRrb4qv701vIxkeJwMkQ/photo.jpg,"I really want to love this app but it won't even let me select PM so its constantly telling me its past the due date, which makes the app very useless to me.",2,1,2.0.0,2020-02-04 17:14:46,"Hi Sunie, apologies you're having an issue with setting AM/PM. Could you email directly (tasks.list.app@gmail.com) with a screenshot of what it looks like as everything looks good on my test devices. Maybe there is something specific to your device font or theme that is causing an issue. Thanks for your help in advance, Steve",2020-02-04 17:20:47,newest,com.tasks.android +Saleema,https://lh3.googleusercontent.com/a-/AOh14GgKmwWb5HFm6LJ5Pjlno52JiOMtMJjGbm95wL4fzCU,Setting am/pm is not easy,2,1,2.0.0,2020-02-04 17:05:46,"Hi Saleema, apologies you're having an issue with setting AM/PM. Could you email directly (tasks.list.app@gmail.com) with a screenshot of what it looks like as everything looks good on my test devices. Maybe there is something specific to your device font or theme that is causing an issue. Thanks for your help in advance, Steve",2020-02-04 17:20:30,newest,com.tasks.android +Kitchen Counter,https://lh3.googleusercontent.com/a-/AOh14GjbVTfAWAdVuU322p0dYVXO5Wrodjz3kseQMLv--g,Dont this app have repeat task feature?,2,0,2.0.0,2020-01-23 08:42:52,"Yes, simply add a date and time (next occurrence e.g. 9am tomorrow), add a repeat e.g. daily and save. For more help checkout the online help (available through the ""Help"" button in the main menu https://mytasksapp.com/help/faqs#recurring-task I hope this helps, Steve",2020-01-23 08:56:37,newest,com.tasks.android +goose,https://lh3.googleusercontent.com/a-/AOh14Gh7JdKwd5FgE79V2nDWaIlWAsExja9yepJZs47y,"i like how its organized and how many choices and the customization. but, i set alarms and keep in mind, i have all permissions on, and it didnt go on my screen, so i missed a very important meeting.",2,0,2.0.0,2020-01-16 22:14:10,"Mack, apologies you've had an issue with my app. This is almost always an issue with your device not Tasks. I am not familiar with your device however searching Google many other apps have the same issue. There will be a magic setting that will allow the standard Android alarm manager to function properly. Please email me when you find it :) Steve",2020-01-17 08:53:09,newest,com.tasks.android +TGI Roopashri,https://lh3.googleusercontent.com/a-/AOh14Gi5bRTEx04irnQYnQnEQkKeFpzwlgOJA7nCtVuGQA,"While changing list, by scrolling right to left, task get deleted, it's very confusing",2,5,2.0.0,2019-12-25 12:57:17,"When you first installed Tasks there was context based help regarding this. There is a setting to disable swipe to delete. For more help with basic features and setting checkout the ""Help"" button in the main menu. I hope this helps, Steve",2019-12-25 13:48:17,newest,com.tasks.android +Connie Zink,https://lh3.googleusercontent.com/-lemqI4BGJ8A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMmqqvQX4kp9kXf7kkeQaoTplLUkA/photo.jpg,Keeps me on top of things,2,0,2.0.0,2019-12-23 02:24:03,"Hi Connie, I don't understand your feedback! A low rating but positive comment. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. It simply relies on donations and my spare time to move forward. Each star help. Thanks, Steve",2019-12-23 09:16:24,newest,com.tasks.android +Samantha Wan,https://lh3.googleusercontent.com/-qJgbiROd6D4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPikmU4mtsTSOq0weBoWFG3xDcyeQ/photo.jpg,"Not sure why everyone's given this such high reviews. The reminders don't work for me, which makes the whole point of having this app useless",2,6,2.0.0,2019-12-22 23:50:48,"Samantha, unlike you, others email me and get support or look at the help instead of just coming here to complain. This is an issue with your device not Tasks. Huawei add very aggressive power saving to their device which interferes with the standard Android alarm manager functions. Go here for details: https://mytasksapp.com/help/faqs. Steve",2019-12-23 09:19:38,newest,com.tasks.android +David Goodrich,https://lh3.googleusercontent.com/a-/AOh14GipPpvBuhYhLWstXlbQqeeCH9-XA86CedZ9ZUz-Qg,"Would like to assign priority rating to each task (A=do it soon, B=do it later, C=low priority, Z=take it off the list)",2,0,2.0.0,2019-12-18 02:23:46,"David, this is possible! Simply change the priority of a task e.g. high, medium, low, none. You can even sort by priority. A popular suggestion has been tags, these will be added in a future update. Finally, maybe in future you would do developers the courtesy of emailing them directly instead of coming here to complain. I hope this helps, Steve.",2019-12-18 08:58:11,newest,com.tasks.android +Shalin Shah,https://lh3.googleusercontent.com/-K6hZiHhAxrA/AAAAAAAAAAI/AAAAAAAAAMc/AAKWJJN1BypVXPzubOYArqywo_-D5wr8UA/photo.jpg,"App is unable to manage Recurring Tasks. App has almost everything, but it fails on managing recurring task. After setting the task to be of Repeat type, marking task Completed for a specific day is marking entire task as completed..!!! And for this only reason, I had to uninstall. Please make necessary changes and inform.",2,0,,2019-12-01 18:08:41,"Hi Shalin, unfortunately you simply don't understand how my app works. You could have done me the courtesy of emailing me or looking at the ""Help"" (main menu): https://mytasksapp.com/help/faqs#recurring-task. Why do users think they understand everything in 10 seconds? Tasks will reset recurring tasks at midnight ready to be completed again. Steve",2019-12-01 18:18:45,newest,com.tasks.android +Terry Sadler,https://lh3.googleusercontent.com/-Sfk-d00Ytlw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPsvyaBuhghzAdO01SKZfMgSBp3yg/photo.jpg,Hard to use,2,0,,2019-11-30 18:48:22,"Terry, apologies my app was too complicated for you. You are the only one to say this, so maybe you could give a few more details as to what you found so ""hard"". I have provided context based help when you first launch Tasks and there is a ""Help"" button in the main menu. What more did you need? Or maybe you just couldn't be bothered to work it out?",2019-11-30 19:43:11,newest,com.tasks.android +Sherzad,https://lh3.googleusercontent.com/a-/AOh14Gi9ndAcwQlONfMqaBgZNboGh4gtv22fzFqWIaeu,Useful.,2,0,1.34.4,2019-11-24 06:50:20,"Hi Sherzad, could you be more specific? Are you having an issue with my app? Tasks is a community driven hobby project of mine. Please help improve my app for everyone. Thanks, Steve",2019-11-24 09:08:22,newest,com.tasks.android +Joker K,https://lh3.googleusercontent.com/-BT01WQmWj0g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMElntTAWxPRu0QbQIkwJ0NEGqpJg/photo.jpg,Too complicated to save and add.,2,1,1.34.4,2019-11-19 18:42:34,"Hi Joker, apologies my app was too complicated for you. Maybe you could be more specific and help improve my app for everyone else. Tasks is a community driven hobby project fo mine with the most popular suggestions added over time with all features and support offered for free without advertising. It simply relies on donations and my spare time.",2019-11-19 19:16:14,newest,com.tasks.android +Sian Butterfield,https://lh3.googleusercontent.com/-xSP1lEQLV8s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNMaKg-i3hV1IpyJULTIOGKsxrg6w/photo.jpg,Had high hopes for this because it had everything I wanted but the completed tasks that I keep putting as completed come back the next day which is just irritating. Have tried all the settings to get of it but I can't and can't be bothered to persevere anymore,2,242,1.34.4,2019-11-13 18:28:40,"Hi Sian, you could have done me the courtesy of contacting me directly so I could help. For anyone who reads this don't struggle on your own, just ask. Steve",2019-11-13 21:01:51,newest,com.tasks.android +Giorgica Tranta,https://lh3.googleusercontent.com/-dOlzoHc04Zk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOjloLtthWuopLokY5ZCUP_V5SgcQ/photo.jpg,why would tasks be tabs instead of a list? the whole screen is empty and you make us scroll tabs :O,2,0,1.34.4,2019-11-11 08:02:19,"Giorgica, tasks are not tabs. The tabs are sub lists. Tasks has the hierarchy: parent list -> sub list(s) -> task(s) -> sub task(s). When you first open Tasks you will see context based help which will guide you through creating a list and task. There is also a ""Help"" button in the main menu, did you find this? I hope this helps, Steve",2019-11-11 09:11:15,newest,com.tasks.android +Awkward Pony,https://lh3.googleusercontent.com/a-/AOh14GiKrZjYsHi_OrVNwUUZ0-0Cm7wZCtmOb6pCb5Zamg,"I actually really like this app but one of the biggest features that needs to work properly for my routines is repeating reminders. I set reminds for monthly bills such as rent, and set it to repeat ""monthly"". But when I complete the task, it uncompletes itself the very next day WITHOUT setting the reminder to the next month. Basically if i set it to November 1st, it tries to remind me again, daily, on november 1st. It doesn't work. I love the app but the most important feature is broken sadly.",2,0,1.33,2019-11-04 15:11:10,If the date and time are not being updated this is.almost certainly due to aggressive power saving on your device not Tasks. Tasks is a hobby project of mine with all features and support offered for free without advertising. It simply relies on donations and my spare time. You could have done me the courtesy of contacting me directly. Steve,2019-11-04 15:26:27,newest,com.tasks.android +Nathan Guerra,https://lh3.googleusercontent.com/a-/AOh14GihVRLEs0qeVCEbN9Q4nnVHHksHEAkSD3gDKgnxIAs,"Cancel means stop the action...not throw away all the notes I just made...sorry but this was suppse to save time not waste ideas and planning...poor comms from app on a normalized UI function. First go and really turned me off, could be lots more awesome, but things like this and not being able to recover the info quickly then...not acceptable when doing business tasks nowadays.",2,3,1.30,2019-10-31 22:25:30,"HI Nathan, apologies if you had an issue but I'm not 100% sure I understand. ""Cancel means stop""? on what? Where? Maybe you could do me the courtesy of contacting me directly (tasks.list.app@gmail.com)? Tasks is a hobby project of mine, please show your support and help to improve it for everyone.",2019-11-01 08:51:04,newest,com.tasks.android +Brian Miller,https://lh3.googleusercontent.com/-4u70-Bj53wY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPssmH16537Bz6zKRNahxzNtkieug/photo.jpg,Switching from one list to another stinks. Otherwise helpful,2,0,1.34.1,2019-10-31 14:51:07,"Hi Brian, maybe you could email me your suggestions for improvements instead of simply saying it ""stinks"". Tasks is a community driven hobby project of mine with all features offered for free without advertising. It simply relies on donations and my spare time. Please help to improve Tasks and show your full support for my project. Thanks, Steve",2019-10-31 15:50:34,newest,com.tasks.android +Derek Scott,https://lh3.googleusercontent.com/-xGp1XaANINM/AAAAAAAAAAI/AAAAAAAFMQo/AAKWJJN-nJWVFOC-4my_1WJhtTO4DZdA9g/photo.jpg,Useless. No nesting,2,0,1.33.3,2019-10-05 06:05:30,"Hi Derek, I'm not 100% sure I understand? Tasks has the hierarchy: parent list -> sub list(s) -> task(s) -> sub task(s). how much nesting do you need? What are you trying to do? Tasks is a community driven hobby project fo mine with the most popular suggestions added over time. Maybe a little explanation and I can help you. Thanks, Steve",2019-10-05 07:58:02,newest,com.tasks.android +Devinda SL,https://lh3.googleusercontent.com/-sj20iIjXOSk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNv0dSD_fKScY3ppJBqhCZeWxBPVg/photo.jpg,Not Working On Xperia E1!,2,0,,2019-09-28 05:59:06,"Maybe you could be more specific? What is not working? If you mean notifications this is an issue with your phone not Tasks. It is due to aggressive power saving which interferes with the standard Android alarm manager functions. Please check all power optimisation settings related to Tasks app and enable where appropriate. I hope this helps, Steve",2019-09-28 09:14:40,newest,com.tasks.android +Toufica Masud,https://lh3.googleusercontent.com/-7qGIwMg5z3g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO-Y3Y7r7fDcqAHIgzwIpscK8l2_Q/photo.jpg,I don't understand why it's not letting me type in it. It gets hanged everytime. I meant that amake ora onek birokto kortese....sorry I speak only Bahamian,2,3,1.33.3,2019-09-27 09:49:56,"Hi Toufica, could you send me an email: tasks.list.app@gmail.com with a screenshot and the steps to reproduce this? e.g., 1 press x, 2 do y etc. Thanks, Steve",2019-09-27 10:04:21,newest,com.tasks.android +george fisher,https://lh3.googleusercontent.com/-gy_hwXzGBzg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNoqYGaOFNy1DSU6DURKPeyGcpL3Q/photo.jpg,It was okay but when I tried to set a reminder for 15 minutes from now it said reminders set in the past will not show. That is extremely inconvenient and annoying . I tried setting it for 15 minutes from now but didn't work. Would have given five stars if it wasn't for this issue,2,0,1.33.3,2019-09-12 17:11:30,"Hi George, Tasks is trying to tell you that you are setting a reminder in the past e.g. before now. Simply follow the instruction and set a date and time in the future. Apologies if the message is not clear enough. Please contact me directly and I will get you past this stumbling block? I hope this helps, Steve",2019-09-12 17:33:42,newest,com.tasks.android +Carlton Reynolds,https://lh3.googleusercontent.com/a-/AOh14GgBnwmH5ymu7GvRsFjou14hfCde05dTHMgSdxzXTQ,"Tasks that repeat more than once daily dont work, if you have something that is twice a day you have to have two separate tasks. If you leave a task pending until the following day and complete it, it will never work again.",2,20,1.31,2019-08-20 03:10:44,"Hi Carlton, Tasks will always honour the schedule set. When you receive a notification Tasks will automatically increment the date and time to the next occurrence. If you mark a task as completed today it will not display again today. What are you trying to do? Thanks, Steve",2019-08-20 07:33:53,newest,com.tasks.android +Connie Rehfuss,https://lh3.googleusercontent.com/a-/AOh14GjZ-EUAjw1WgjW2ohBxQojXNTFFN48l8UIYSX2c,Decent app but does NOT seem to be able to sync with my google calendar. Without that it is pretty useless to me. I like that sub-tasks are listed as an indent to the main task not as a seperate task.,2,0,,2019-08-09 08:46:07,"Hi Connie, I do not claim this as a feature on the PlayStore. However, if you long press a task you will see an ""add to calendar"" option. Alternatively open a tasks detail screen and click the calendar icon (top right). Tasks is a hobby project of mine with all feature offered for free and without advertising. I hope this helps, Steve",2019-08-09 08:58:16,newest,com.tasks.android +Arunima Jain,https://lh3.googleusercontent.com/a-/AOh14Gil42Bf-oXyZb29XcrS5HvCvHDXQ_Ee8LqLwzXdlg,"I keep completing tasks, and the next day they open automatically again and the notification pops up. Its very irritating and confusing. What's the point of opening a completed task? Maybe you need to add an option to permanently close repeat tasks vs close them for that day",2,0,1.30,2019-07-28 10:53:12,"Hi Arunima, Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It is offered for free without advertising. I will add your suggestion to my list for future improvements. I hope this helps, Steve",2019-07-28 11:13:52,newest,com.tasks.android +Tyler Rex,https://lh3.googleusercontent.com/a-/AOh14GgtNpy_UeCVI9eojJzxu0afLu_kY6U8k5D5QvrFDQ,PLEASE make a home screen where it shows your active main tasks allowing you to just press and view them without having to click the top left button snd select. this would be VERY convenient. thank you.,2,0,1.30,2019-07-26 06:13:18,"Hi Tyler, giving a low rating and asking for something is not cool. Show some support! Tasks is a community driven hobby project of mine with the most popular suggestions added over time with all features offered for free without advertising. This has been a popular suggestion and so will be added in a future update. I hope this helps, Steve",2019-07-26 07:12:36,newest,com.tasks.android +Karin Lickers,https://lh3.googleusercontent.com/a-/AOh14Gg5MpgcZvOR0w1WZtahC26-NQqPSc-Fgk7Dws3Go_M,"trying to switch from wunderlist and the import option doesn't work or give any assistance to troubleshoot. I just get the message ""file not found"" with nothing else to say where it's looking for the file so I can get it in the right place.",2,3,1.30,2019-07-25 15:38:20,"Hi Karin, instructions are available via the help button in the main menu: https://mytasksapp.com/help/getting-started. If you need more help, simply email me. I hope this helps, Steve",2019-07-25 16:04:53,newest,com.tasks.android +Sports Fam,https://lh3.googleusercontent.com/a-/AOh14GhuHsOGPRqOMUqpcYUXThrodG4qW75GUAKRE2A7A_0,i hate how you cannot open the app and see all your lists there. you have to have one open at all times and it does not show a list of your list on the home screen. deleting this app for this reason. too bad... the rest is great. but they need a home screen. they don't have one.,2,2,1.29,2019-07-13 16:52:43,"2 stars for no home screen! Too bad. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It is offered for free without advertising. Most users like to pickup where they left off. A home screen has been a popular suggestion and so will be added in a future update. I hope this helps, Steve",2019-07-13 17:20:53,newest,com.tasks.android +Marcus Korn,https://lh3.googleusercontent.com/a-/AOh14GjNeNInQ6VoX2pTFls6eWDRCtD9YP_W1S4CwQq-bw,"app maybe okay, but its very confusing to understand. I have tried about 30 min to set a simple task for a particular date, but it doesnt show up anywhere. So, i will keep looking for a more simplyfied app. Sorry.",2,0,,2019-07-09 12:17:15,"Hi Marcus, apologies you found my app too complicated for you. Did you look at the help (via the help button in the main menu). I'm not sure how you were unable to do this. There is context based help when you start. Simply add a task, click Due Date and add a date and time when prompted. Good luck finding something at your level. Steve",2019-07-23 10:43:27,newest,com.tasks.android +Wendy Vercoe,https://lh3.googleusercontent.com/a-/AOh14GhFuyfMV6L24UejN3kYfBQ8hLaEFZ3O4Q2D0o7Lmw,Wish I could sync it across multiple devices :(,2,0,1.28,2019-07-02 06:59:32,"Hi Wendy, this is not mentioned in the PlayStore description! However, Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It is offered for free without adverts. This has been popular and so I am working to enable device to device sync list sharing and cloud backup. I hope this helps, Steve",2019-07-02 07:37:30,newest,com.tasks.android +Cynthia Desgagné,https://lh3.googleusercontent.com/-5gCNC5EhWtw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMguDMxGJRmFuJG6NDvjM6bEb8AGg/photo.jpg,"I love nearly everything about this app, but it eats up the battery on my phone like crazy because it is always running in the background.",2,0,1.26,2019-06-13 12:44:01,"Hi Cynthia, can I ask why you think this? Tasks is a community driven hobby project fo mine. It does not run any background services. Maybe you could contact me directly with a screenshot of your battery usage? Thanks, Steve",2019-06-13 12:47:42,newest,com.tasks.android +P A,https://lh3.googleusercontent.com/a-/AOh14Gjvb-7_2CLIN_rc4Kse3ZXT0PjGMj6YAEjqrM6V,"Recurence tasks does not work properly, otherwise I would give 4 starts.",2,1,1.26,2019-06-08 12:07:40,"Hi, Tasks is a community driven hobby project of mine with the most popular suggestions added over time. How are Recurring tasks not working ""properly""? How should they work? Maybe you can add some details so I can assist you? Thanks, Steve",2019-06-09 17:13:58,newest,com.tasks.android +YF YF,https://lh3.googleusercontent.com/a-/AOh14Giikm0yZPlyyo9AnRhtvaZi0qhpR7yU3hLHAeOGJg,stupid auto correct,2,3,1.26,2019-06-08 11:44:29,"Hi, I am not sure I understand your feedback? Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It is offered for free without advertising. What did you have an issue with? Thanks, Steve",2019-06-09 13:10:06,newest,com.tasks.android +Riley Road,https://lh3.googleusercontent.com/a-/AOh14GiFqnd7B8h9RDkzSCEz7XwCr9JOk7ZrVtd31LBS,cant complete subtasks through widget .. huge turn off,2,0,1.26,2019-06-04 03:44:43,"Hi Trey, Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It is offered for free without adverts and simply relies on donations and my spare time. Widgets are very limited and can not do the same as apps. Check boxes for subtasks was simply not possible. I hope you understand, Steve",2019-06-04 08:11:33,newest,com.tasks.android +Rony Khairallah,https://lh3.googleusercontent.com/a-/AOh14GjB8O9hYsUTC98reE77-rPFmvO5gLLOEpjsqCwqpA,"Using this apps, i can guarantee you will never remember one single task. Needs more improvements to be classified under reminders category.",2,0,1.26,2019-05-21 19:22:30,"Hi Rony, unfortunately some device manufacturers add very aggressive power saving to their devices which interferes with the standard Android alarm manager functions. Please check all power optimisation settings related to Tasks app and enable where appropriate. I hope this helps, Steve",2019-05-21 19:53:28,newest,com.tasks.android +Shelly Altman,https://lh3.googleusercontent.com/-GNc7-1L242o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNqKyTs5Fqh6ldzIKVBiGPX0mbylQ/photo.jpg,skips reminders until I pick up and check my phone. then they go off😖,2,5,1.26,2019-05-20 14:47:44,"Hi Shelly, unfortunately some manufacturers add very aggressive power saving to their devices which interferes with the standard Android alarm manager functions. Please check all power optimisation settings related to Tasks app and enable where appropriate. I hope this helps, Steve",2019-05-20 15:49:35,newest,com.tasks.android +maud chassignol,https://lh3.googleusercontent.com/a-/AOh14GiJfV-L13y3j6KheMMdUS-ON1Utim2Ge7vyyXclsQ,le partage est tres nul.... cest juste un texte envoyé a l autre...,2,2,1.26,2019-05-20 06:48:09,"Hi Maud, that is correct. Sharing is not mentioned in the PlayStore description! Tasks is a community driven hobby project of mine with the most popular suggestions added over time. I am currently working server code to enable list sharing between devices. I hope this helps, Steve",2019-05-20 07:08:18,newest,com.tasks.android +Mento Matthews,https://lh3.googleusercontent.com/a-/AOh14GjxyggB0WIfLBf6YW2iILbiIy_btB3BthMUfmwltw,"It is not very flexible. It's a pain to make sub lists and quickly edit them. I wish when the app opened you see a list of all of your major tasks or a calendar. If these things are possible, maybe adding a tutorial feature when the app first downloads and opens would help streamline the experience.",2,0,,2019-05-02 19:13:41,"Hi Mento, this is possible. To see all tasks simply create a filtered list (left side menu) with the default options. then in settings set this as your default list. You can also enable the calendar in settings. Help is available through the ""Help"" button in the left side menu. I hope this helps, Steve",2019-05-02 19:34:02,newest,com.tasks.android +Colleen Janes,https://lh3.googleusercontent.com/a-/AOh14GhxR2QaD9wIvu5NwCYtLRZ_FE383BZS7cWI-X2t,I found the white text against many of the colors very difficult to read.,2,0,,2019-04-15 06:32:07,"Hi Colleen, apologies you didn't like my app. You are able to choose any colour and so you could simply choose a slightly darker colour. Tasks is a community driven project of mine with the most popular suggestions added over time. I will add your suggestion to my list for future improvements. I hope this helps, Steve",2019-04-15 07:16:25,newest,com.tasks.android +somona felix,https://lh3.googleusercontent.com/-4zLgjbUdPnM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMUw_qTCo927Vu8JACzPw9haxSs4g/photo.jpg,I'd like to know how to create home screen widgets.,2,0,1.25.1,2019-03-21 18:39:52,"Hi Somona, simply long press on your home screen select widgets, drag and drop the Tasks widget into a blank area on your home screen. The widget can be resized to meet your needs (checkout my website: https://mytasksapp.com/help/faqs). Select a list by tapping the list icon (top left). I hope this helps, Steve. Did it work?",2019-03-21 18:45:25,newest,com.tasks.android +abhinav srivastava,https://lh3.googleusercontent.com/a-/AOh14Ghi1NTNejcaIaE4CALs0MAPma1uB5qr2QJLiNJL1w,not so good,2,1,1.25,2019-03-14 21:38:08,"Hi Abhinav, apologies my app was not for you. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. What would help make my app a 5 star app for you? Thanks, Steve",2019-03-14 22:04:05,newest,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Not competent at scheduling. Recurring tasks are automatically ""completed"" if not checked by the scheduled time. There is no way to know if you missed it. The interface is pleasant though.",2,0,,2019-03-02 09:05:21,"Recurring tasks are not automatically completed. When you receive a notification the reminder is automatically changed to the next occurrence. To know you missed it, you will have a notification. These can be made persistent via settings. I hope this helps, Steve",2019-03-02 09:41:05,newest,com.tasks.android +karen thornton,https://lh3.googleusercontent.com/-y8v87GX3nn0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNMKEublKNX8TcEcE-WKfdgfzG3tg/photo.jpg,complicated,2,0,,2019-02-28 22:17:16,"Hi Karen, apologies you found my app too complicated. Could you give more details as I have worked with many users to make it as simple and intuitive as possible. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. Please help me improve Tasks for everyone. Thanks, Steve",2019-03-01 08:14:40,newest,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,I uninstalled the app because it sends my phone info to the developer,2,0,,2019-02-24 21:18:29,"Hi, why do you think that? All users data is held in an encrypted area on your device which I do not have access to. Please checkout the privacy policy for details. I hope this helps, Steve",2019-02-24 22:30:47,newest,com.tasks.android +Debra McFarlane,https://lh3.googleusercontent.com/-CZuzd96pyZA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMML-HicEl3Cjhv0hulapVgW-EP3w/photo.jpg,"just started using it, but so far so good",2,0,1.25,2019-02-24 15:39:04,"Hi Debra, really glad you're finding my app useful. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. What would help make my app a 5 star app for you? Thanks, Steve",2019-02-24 16:01:31,newest,com.tasks.android +um pseudonimo,https://lh3.googleusercontent.com/-qgzZdDMpIro/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNAYs_mqkwFXzWIPuzAlOeuykENyg/photo.jpg,"simple app, widget is bad (left side has a bar that ruins symmetry, also you cant remove the new task button), also, why can I change list color but cant change button color? would also be cool to preview what ""compact/cozy"" and whatnot settings do instead of having to select them one by one, leave settings, and go back in to change them again. all in all, its almost a 5 star app, but the nuissances ruin the experience a bit.",2,0,1.25,2019-02-24 03:50:43,"Hi, Tasks is a community driven hobby project of mine with the most popular suggestions added over time. I have tried to make my app as customisable as possible. However, each customisation takes time away from more mayor features. Note: There is a setting to remove the coloured bar on the left. I hope this helps, Steve",2019-02-24 10:18:34,newest,com.tasks.android +Phil Roggenbuck,https://lh3.googleusercontent.com/a-/AOh14GgzXT6AGeAWUtzeSr3Mw40xPGONiqNn1ANDiD-Jl50,"Awesome app, the only missing thing is that you can only set a date, I would like to have buttons to remind me later on the day. Or on the next day, or next week. UPDATE: No what I meant, is that I want to say remind me today and not remind me at date today at specific time. UPDATE: I would then receive the notification, at a specific time 5 hours later or something that can be altered in the settings. And also I don't want to put in a date! Look at the app TickTick has exactly what I want. :)",2,0,1.24.2,2019-02-13 09:00:07,"Hi Phil, Tasks is a community driven hobby project of mine with the most popular suggestions added over time. I will add your suggestion to my list for future improvements. I hope this helps, Steve",2019-02-13 09:19:06,newest,com.tasks.android +Reginald Raphael,https://lh3.googleusercontent.com/a-/AOh14GjOf-FqNrJeV8fyzvN5uDJpHS6u3OjYwWlteURlNQ,so far the app is great. would get 5 stars if it had a tabbing feature where you can side over to each task name instead of having to go to the menu button to switch.,2,1,1.24.1,2019-01-20 04:51:03,"Hi Reginald, Tasks is a community driven hobby project of mine with the most popular suggestions added over time. I will add your suggestion to my list for future improvements. I hope this helps, Steve",2019-01-20 08:59:52,newest,com.tasks.android +Joanna Koenigsberg,https://lh3.googleusercontent.com/a-/AOh14GjnK9aVmo8dt3d95lGVSDz38xvj_suYKbiyicio,"it was pretty good on my old phone. then when everything was ported to my new one, the app came, but not the lists I'd made. what's the point of that?! I've deleted it.",2,0,1.23,2019-01-10 18:23:23,"Hi Joanna, there is a backup/restore feature in the app settings. For help checkout my website: https://mytasksapp.com/help/faqs. Tasks is a community driven hobby project of mine. Cloud backup has been a popular suggestion and so I am currently working on server code to enable this. I hope this helps, Steve",2019-01-10 18:37:31,newest,com.tasks.android +Sudhakar Mothey,https://lh3.googleusercontent.com/a-/AOh14GgBebKGBeVawRz71vbc7_KYEH1pAK9rnRvE_IglPA,"Bad experience as the events created (Ex: Birthdays, Anniversaries, etc.) in Alarm mode is working only sometimes!! In such situations, the event is just turning ""Red"" (but Alarm is not ringing) as if i missed the event...!!",2,0,1.23,2019-01-04 10:32:01,"Hi Sudhakar, apologies you're having an issue with my app. Some manufacturers add very aggressive power saving to their devices which can interfere with the standard Android alarm manager. Please check all power saving and notification settings on your device. I hope this helps, Steve",2019-01-04 10:42:28,newest,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Does not have a recurring task feature. Useless for me.,2,0,,2019-01-01 00:23:05,"Hi, this is absolutely possible. Please checkout my website for help: https://mytasksapp.com/help/faqs. I hope this helps, Steve",2019-01-01 02:10:22,newest,com.tasks.android +andri triyono,https://lh3.googleusercontent.com/a-/AOh14GhvKOlcXg0ic7ozRIjnR0gspHlJMnPWmbiWxt5KEA,"you should have name to change date with ""yesterday"" ""today"" ""tomorrow"" (not number) on widget view",2,0,1.23,2018-12-10 23:42:04,"Hi, If you expand the widget to your full screen width it will display the date (same as in the app). I hope this helps, Steve",2018-11-22 09:09:54,newest,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Can't put cute stickers on them no cuteness on phone,2,0,1.21,2018-11-28 03:32:29,"Hi, I'm not sure I understand? You can pick your colours for ""cuteness"". What do you mean by stickers? Thanks, Steve",2018-11-28 08:31:48,newest,com.tasks.android +CrazyMutant DesertGuy,https://lh3.googleusercontent.com/-ayKqT94Q1xM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPV5tBYQUf9hamU-8c1dmWNKLB_yQ/photo.jpg,"To Do list apps, like this one, are not useful without the capability of using recurring tasks. Too bad because the interface is otherwise well done.",2,0,,2018-11-24 00:09:34,"Hi, to add a recurring task simply: create a new task or edit an existing one, add a date and time (next occurrence), enable the reminder, add a repeat e.g. daily, save. There is more help on my new website: https://mytasksapp.com/help. I hope this helps, Steve",2018-11-24 09:35:10,newest,com.tasks.android +Nadine Maiwald,https://lh3.googleusercontent.com/a-/AOh14Gjmi88XslYg3kwtdNpNBgmezbH-p7nezIx_aMSA,"Got it primarily for reminders. It has a lot of settings for how you want your alarms or notifications, but those are pretty useless when they don't work. Didn't get a single notification to remind me of the stuff I set up.",2,0,1.21,2018-11-21 08:05:29,"Hi Nadine, apologies you're having an issue with my app. Some users have had problems on some devices because of very aggressive power saving implemented by the manufacturers. Could you check your phones power saving options. Let mw know if you're still having problems. Thanks, Steve",2018-11-21 08:56:08,newest,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,No easy way to import/export tasks in a compatible format (e.g. Google Tasks),2,0,,2018-11-14 22:54:34,"Hi, Tasks is a community driven hobby project of mine. Unfortunately all task apps have different formats and so this was not really possible. Google tasks import has been a popular suggestion and so will be added in a future update. I hope this helps, Steve",2018-11-15 08:44:54,newest,com.tasks.android +Tanya Ruppell,https://lh3.googleusercontent.com/-WBTnuwk7Aas/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMyQbS4xLLczwzPtFeQAooi1PJg4w/photo.jpg,"Liked the prioritization by dragging and the highlighting, but there does not seem to be a way to create recurring tasks. That's a deal -breaker for me. I'm uninstalling",2,1,1.21,2018-11-10 12:46:07,"Hi Tanya, to add a recurring task simply add a date and time (next occurrence e.g. 9am tomorrow), enable the reminder, add a repeat (e.g. daily) and save. I hope this helps, Steve",2018-11-10 13:52:09,newest,com.tasks.android +Athena Roberts,https://lh3.googleusercontent.com/a-/AOh14GizWGjL30GaAv4hCyju6ZXAeVw7kys042qDVwgung,"28 Oct 2018: same problem. Repeating tasks do not update and advance to next due date when completed. Checks it as done and then unchecks sometime at night with previous due date. 27 Oct 2018: After hearing back from the author, giving it another shot. Put two repeating tasks on it. See how it goes. 27 Oct 2018: This app didn't work as well for me. It would regularly uncheck tasks I'd completed or check tasks I'd not completed. The repeating task function didn't work well either.",2,0,1.21,2018-10-28 16:52:13,"To add a repeating task: Create a new task, add a date and time (next occurrence e.g. 9am tomorrow), enable the reminder, add a repeat e.g. daily, save. You will receive a notification at 9am from tomorrow onwards. If you complete the task it will be reset at midnight (automatically) ready to be completed again the following day. Thanks, Steve",2018-10-28 17:07:33,newest,com.tasks.android +Roderick Roy,https://lh3.googleusercontent.com/a-/AOh14GiO3H0x32FXmRG0dHi4NdO_ZP1qbRKVg8yqa_Dn,"Looking as everyone else's very +ve reviews. I seem to be the odd one out but I didn't find it straightforward. It is too easy to delete a list (on my S9 at least) with even a slight bit of a swipe. Once deleted it is lost. Why not have a 'back' or 'undo' button? Personally I don't find the heading, group, list structure particularly straightforward although I've now got used to it.",2,0,1.21,2018-10-27 11:46:57,"Hi Roderick, as I mentioned before: when you delete a task/list there is a temporary popup at the bottom fo the screen with an undo action. Swipe to delete can also be disabled in settings. I hope this helps, Steve",2018-10-27 17:20:35,newest,com.tasks.android +J J,https://lh3.googleusercontent.com/-wR5d_ydGvII/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMpM4RmCcPrx4MiceilQPryqOf_hg/photo.jpg,Seriously? How did it get a 4.8? I can't even find an add button anywhere??? Unless i go to the top left corner? Nah. Not for me,2,0,1.21,2018-10-18 10:08:18,"Hi, apologies Tasks was not for you. You need to add a list before you can add any tasks. To add a list open the menu (top left) and tap add list. You can then add sub lists, tasks etc. I hope this helps, Steve",2018-10-18 09:33:38,newest,com.tasks.android +Andy Troyer,https://lh3.googleusercontent.com/a-/AOh14Gi8lv3zMasCaeMhns_eFpAFDI94ge87c2HM48i9lf0,Without syncing to the cloud this todo app is unfortunately worthless. Love it otherwise and would have given it 4 or 5 stars. Please add sync since in my quest to find a good todo app this is the only one I've seen that doesn't sync anywhere between devices.,2,1,1.21,2018-10-15 02:43:58,"Hi Andy, Tasks is a community driven hobby project of mine. Sync has been a very popular suggestion and so I am currently working on server code to enable device to device sync, list sharing and cloud backup. I hope this helps, Steve",2018-10-15 08:08:58,newest,com.tasks.android +Heather Mason,https://lh3.googleusercontent.com/-hCFmkM-rhOc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPEweL3qzRh809oCau3eonOzI_LEg/photo.jpg,I had a reminder set with a certain sound & it never went off,2,0,,2018-10-01 03:49:43,"Hi Heather, apologies you're having an issue. Could you contact me directly so I may help you. Thanks, Steve",2018-10-01 08:10:54,newest,com.tasks.android +Tony Dassow,https://lh3.googleusercontent.com/a-/AOh14GjgngyUEj8RH8yKF6Hjqi-BgWh-jVXlpgL8k1s_,Due Date is wonky. I made a few items on my list and the due will not change from the current day. The due date worked on other items. I don't need another app to work around.,2,0,1.20.3,2018-09-12 16:15:04,"Hi Tony. To change the due date simply tap of the date. To change the time tap the time. If you're having problems please contact me. Thanks, Steve",2018-09-12 16:19:43,newest,com.tasks.android +Chrissy Kempel,https://lh3.googleusercontent.com/a-/AOh14GjVvc-uUBt_d-aef3wGI98C0RvHJPc8WHyjlWBpSBM,It worked for the first week. Now I can't add a task without it crashing.,2,2,1.20,2018-08-30 04:06:06,"Hi Chrissy, I've pushed an update (v1.20.1) which will fix the issue. Again I'm sorry you had a problem with my app. Let me know if you still have problems. Thanks, Steve",2018-08-30 13:28:12,newest,com.tasks.android +Prashant,https://lh3.googleusercontent.com/a-/AOh14Girg7XKQ81xiojLbClTnfq86KXGUwkf3EbjAytzvw,In this app reminder doesn't work,2,2,1.20,2018-08-30 01:22:22,"Hi, I'm sorry you're having an issue with my app. In other cases this has is due to manufacturers making changes to Android. I am not familiar with Micromax however, is there a power saving app or managements app included. You may need to whitelist Tasks. Let me know if you're still having a problem and I'll try to help. Steve",2018-08-30 07:38:25,newest,com.tasks.android +Karim Benzema,https://lh3.googleusercontent.com/-wWCreOHqOIM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOWeqV6vim_6Bg0kqVH0izgSnUd7g/photo.jpg,It doesn't ring to notify me,2,0,1.19.2,2018-08-16 12:38:37,"Hi Karim, I'm sorry you're having issues with my app. Other users have had problems receiving notifications on Meizu devices. Please check the app notification settings and any additional power managements settings. If you're still having issues, please contact me directly. Thanks, Steve",2018-08-17 07:52:36,newest,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,No Google tasks integration.,2,0,1.19.2,2018-08-07 10:41:16,"Hi, unfortunately Google tasks data model is too simplistic for synchronisation with Tasks and is why I do not list it as a feature of my app. Cheers, Steve",2018-08-07 15:40:31,newest,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Repeat function does not work making the app useless as a task list. Might +as well use my calendar. Almost missed a credit card payment because this +app didn't repeat the task.",2,0,1.19.2,2018-07-22 16:33:17,"Hi, I'm sorry you're having issues with my app. Once a task is marked as complete it will not repeat. I am currently working on improvements to reminders. Could you email me with the issue you saw so I may fix it. Thanks, Steve",2018-07-23 10:38:18,newest,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Repeat function doesnt work, so you can't set up tasks to be repeated +daily.. You can basically create a list and then delete items as they are +completed. That is all this does. Basically useless for anything other than +a shopping list.",2,9,1.19.2,2018-07-10 07:20:05,"Hi, I'm sorry you're having issues with my app. Once a task is marked as complete it will not repeat. I've had lots of feedback around reminders and so am currently making enhancements. These will be available in future uodates. I hope this help. Steve",2018-07-10 09:20:13,newest,com.tasks.android +Artur,https://lh3.googleusercontent.com/-JItUjJ6ehxg/AAAAAAAAAAI/AAAAAAAAACE/AAKWJJOPaHDKxHVUBi6o0soJ9Z_B6DowBg/photo.jpg,No custom repeat frequency...,2,0,1.18.1,2018-06-14 20:49:50,"Hi Artur. This has been a very popular suggestion and so will be added in a future update. Thanks, Steve",2018-06-14 21:33:52,newest,com.tasks.android +Noah Burno,https://lh3.googleusercontent.com/a-/AOh14GgWXg2cuwcey-aSySga5MbMgB-RgWKJ3EL4dAabtA,"Dates and times? No such thing here Sure you can colorcode and organize and +sort your tasks to death, but strangely enough there's no changing when a +reminder will go off, no setting when a task is due (perhaps if you used +this for work or a meeting), or not even the ability to set a due date for +a task. It can be put in the details, but when time is of the essence +you're better off using a better task app",2,6,1.18.1,2018-06-14 20:47:04,"Hi Noah, tasks is a community driven hobby project with the most popular suggestion added over time. I've had lots of feedback around reminders and so will be enhancing them in future updates. Thanks, Steve",2018-06-14 21:32:13,newest,com.tasks.android +Judy A,https://lh3.googleusercontent.com/-4FHcFxH1WGs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOtSdC8sN8z4JKsKc0_sE_Ab1O1fQ/photo.jpg,"It sounded good, so I installed it. My first task is an annual subscription +reminder. This app doesn't offer an annual reminder so, yet again, I'd have +to use two different apps for tasks. Why can't anyone get this right.",2,5,1.18.1,2018-06-05 19:09:18,"Hi Judy. Thanks for trying my app. Im sorry my app doesn't meet your requirement. Tasks is a community driven, hobby project with the most popular suggestions added over time. I've had a lot of feedback regarding reminders and so am working on enhancements. Thanks, Steve",2018-06-05 20:19:16,newest,com.tasks.android +Sacrod AYAN,https://lh3.googleusercontent.com/a-/AOh14Giu8c2xW7pjjWHosgLFBfUYmonGshRUSa8plC4-Vg,Does this app truly have reminders?? It refused to remind me of my event,2,0,1.17,2018-05-01 11:13:21,"Hi, I'm sorry you're having issues with my app. Could you email me so I can assist and find out what's going wrong. Thanks, Steve",2018-05-01 13:26:40,newest,com.tasks.android +Michael Billingsley,https://lh3.googleusercontent.com/a-/AOh14Gj0Mc80L9CuV1DYnYUqa61ayXp5h1XMA-p7KLafsqI,"Was excited for this app. But the fact I can't change the notification +alarm is a deal breaker.",2,0,,2018-04-17 16:06:42,"Hi Michael, tasks is a community driven hobby project of mine with the most popular suggestions added over time. I am currently working on a widget and then reminder/notification enhancements. I hope this helps. Steve",2018-04-17 16:59:11,newest,com.tasks.android +Fatima Aisya,https://lh3.googleusercontent.com/a-/AOh14GiEmNTSWH-4LhdD6EQZX145SqGDjAmkUwSHhYLJ,Please make it available as a widget.,2,1,1.11,2017-09-27 23:44:52,"Hi Fatima, a widget is now available in the latest version. Hopefully this helps make it a 5 star app for you. Thanks, Steve",2018-05-01 19:35:15,newest,com.tasks.android +Lorraine Pippard,https://lh3.googleusercontent.com/-y9A_cvaTxDA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOKklktn0M4ab6twJ4B-RpVRU7PmA/photo.jpg,This was OK for a few days but now when I open it it is just a blank screen and I have lost all my tasks. Very annoying as these were important reminders !,2,1,1.1,2017-03-07 12:46:57,"Hi Lorraine, I'm really sorry to her that. Could to tell me what phone you are using, or better still email me at tasks.list.app@gmail.com so I can ensure this doesn't happen again. Many thanks, Steve",2017-03-07 17:34:18,newest,com.tasks.android +Vikas A,https://lh3.googleusercontent.com/-eW5dUPe4IAs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO5t5ptQn95i6TDrwArPbD7E0bZYQ/photo.jpg,"App is good, have lot of features, but I would suggest one basic thing that needs to be changed. In ""Tasks"" app the menu can be reached by pressing the title icon. Also to change the list we have to press the icon on top left corner of widget. It is different (and little disturbing) from normal process we are following since many years. Please try to change the menu button on widget to the top left icon. Thanks",3,5,2.3.2,2020-04-01 06:01:38,"Vikas, I'm not sure I understand. The list icon on the widget is at the top left? Maybe you could do me the courtesy of emailing me (tasks.list.app@gmail.com) with more details and a screenshot of what you mean? Thanks, Steve",2020-04-01 07:29:36,most_relevant,com.tasks.android +Lawal Sadeeq Hayeende,https://lh3.googleusercontent.com/-4ItnqrvNjnI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNjX0GHgHnLsynIYZ3exUrXCAkruA/photo.jpg,This is by far the best and complete Todo list app i have come across so far... However the notification and alarm feature doesn't work... Would have gotten a 5 star from me if that had worked. Thank you.,3,0,2.3.2,2020-04-01 07:31:21,"Lawal, apologies you're having an issue. However, this is almost certainly an issue with your device not Tasks. Some manufacturers add very aggressive power saving to their devices which breaks the standard android alarm manager functions. Please check all power optimisation settings related to Tasks app and enable where appropriate. Steve",2020-04-01 09:20:55,most_relevant,com.tasks.android +Sándor Magdó,https://lh3.googleusercontent.com/a-/AOh14GhIteRMkrzjc9vRUz7XvYtQeJq2b1ERp5xSK4pg,"Is it true that non-premium version soon will loose any way for backup/restore or transfer to another phone? If not true: Please point to me what is the backup/restore way that stays in app in the future. Thanks a lot!. If true: That is really bad news - backup is a basic necessity, so non-premium version will become practically useless on the long term. In addition, premium costs twice as much for a single year than, let's say OsmAnd+ for eternity. And that is a much more complex app + the free version is completely usable within reasonable limits. Tasks is a really nice app (except that swichingt between sublists/lists is unreasonably slow) with some unique and essential features. But this wracks it, it will drive me away. Possibly others too. Not a fair move to reduce base functionality like that. RESPONSE TO STEVEN NOTTAGE'S RESPONSE: That is fair enough, except for one important detail: all the people using your free app are now forced to decide - if they want to have a meaningful app - to pay or search for another app. Premium app should only add features and not restrict free app's capabilities. If you add worthwhile features with a fair pricing, people will buy it. Lots of people spent time to set up their tasking system because the app had the right properties for them, now it looks like they were lured into using the app and then forcing them to pay. I payed for a number of apps (all cheaper than yours btw.), and actually my plan was to pay/donate as soon as the slowness of switching between task lists disappear, because I thought the app is really useful and it deserves support. This change is different. I do not mean you should not ask for payment for cloud backup etc., just that you should not remove the free local backup (or any other feature). Or that you should have omitted it from the free version from the start. Best wishes! RESPONSE TO STEVEN NOTTAGE'S SECOND RESPONSE: Actually you can clearly see from my review that I do not want everything for free. My problem is different. If we could not understand each other so far, perhaps it's not worth trying any more. So I won't comment on the rest of your answer. All the best!",3,1,2.2.0,2020-03-13 12:36:09,"Sándor, I understand you just want everything for free & don't want to show my little app any support. You even keep lowering your rating despite me taking the time to reply to you. There are technical reasons in Android 10 why the old backup method is not fit for purpose going forward & I cannot keep maintaining dead code in my spare time for free",2020-03-13 09:47:13,most_relevant,com.tasks.android +Dawie Visser,https://lh3.googleusercontent.com/-D9C0hJxF4WQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP6BMqojDLPX6ufmS6ptmkTMBcfQA/photo.jpg,Good. Would like for completed tasks to automatically move to the bottom,3,0,2.3.2,2020-04-02 19:08:15,"Dawie, this is possible. Simply enable the ""move completed"" setting. For more help with the basic checkout the Help button in the main menu. I hope this helps, Steve",2020-04-02 21:20:37,most_relevant,com.tasks.android +j ****,https://lh3.googleusercontent.com/a-/AOh14GgHzem8z4n9byfv6BtwIKkjGdEWaTLCy3KD_vr2yA,It's got a steep learning curve. And I don't think it's got good Documentation & help [FAQs].,3,0,2.2.0,2020-03-16 14:26:17,"Hi, apologies my app was too complicated for you. Most users say in their reviews how simple and intuitive my app is. When you first open Tasks there is context based help to get you going and there is the ""Help"" button in the main menu. Please email (tasks.list.app@gmail.com) and help improve the docs and help for everyone. Thanks, Steve",2020-03-16 14:44:22,most_relevant,com.tasks.android +Katie skT,https://lh3.googleusercontent.com/a-/AOh14GgJSwyFZDCQy_OA1HLvQFB6y4ruG_ILsg0sCa0uSA,I want to be able to set so that the week starts from Sunday. Highly inconvenient for I frequently set the reminder wrongly. A day behind. Please upgrade so that the week start from Sunday.,3,0,2.3.2,2020-04-04 07:44:22,"Katie, this is possible. Tasks follows your device language setting. e.g. I live and work in the UK and so the week starts on Monday, where as US english starts on a Sunday. Simply change your device to the correct setting. Steve",2020-04-04 09:49:24,most_relevant,com.tasks.android +דוד רימון,https://lh3.googleusercontent.com/a-/AOh14GjDdpqTmps_M6eMx8df21kVwueYXbcobT5iHfL_,"very nice app, but there are a few bugs with the widget not really updating to the correct data e.g. - if you put the widget on home screen, change the name of the tasks list, it doesn't update",3,0,2.1.0,2020-02-10 09:43:44,"Hi, apologies you're having an issue with my app. This is most likely due to power saving added by Motorola or a custom power saving app. This stops the widget from being updated. Please check you power optimisation settings and enable where appropriate. I hope this helps, Steve",2020-02-10 09:49:08,most_relevant,com.tasks.android +ryfky,https://lh3.googleusercontent.com/-7pK6V4AOfmQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNZCtWifjMhTPw-aJHvt4NMn3Dy5A/photo.jpg,"why do not work reminders repeated monthly at all? one-time yes, repeated no. what is wrong?",3,0,2.3.2,2020-04-01 16:21:35,"ryfky, apologies you're having an issue. However, this is an issue with your device not Tasks. some manufacturers add very aggressive power saving to their devices which breaks the standard alarm manager functions. Please checkout the online help (available via the Help button in the main menu): https://mytasksapp.com/help/faqs#notifications",2020-04-01 17:26:27,most_relevant,com.tasks.android +Deeban R,https://lh3.googleusercontent.com/a-/AOh14GiLjapId8vavUrglRxEfxyVtmvl37J4d2KrpXAI,Good. But repeat mode is not working properly. I am looking for some other app,3,0,2.2.0,2020-03-17 16:10:43,"Deeban, if you are not receiving notifications this is due to aggressive power saving added by Motorola. This breaks the standard Android alarm manager functions which Tasks relies on. Checkout the online help: https://mytasksapp.com/help/faqs#notifications. Check the power optimisation setting related to Tasks and enable where appropriate. Steve",2020-03-17 16:41:54,most_relevant,com.tasks.android +Traci Stetler,https://lh3.googleusercontent.com/a-/AOh14GiLaj0mlIK86xhF1jNLbB6IV_Bd5cn4aj1taHyVPg,"I downloaded this app because the other app I was using wouldn't always notify me. Also, they recently decided to change from an analog clock face to having to scroll (similar to a digital clock) to set the due time. I tested this app before I started copying all my tasks, but I came across a problem. When creating a repeat, there is no way to set it to do a certain day of the month (ie: the 3rd Saturday of the month, or the Last Sunday of the month). This is a big issue for me because I have certain things I want to do, but it's not always on the same date of the month. Hopefully, this can be added/changed soon.",3,4,2.0.0,2020-01-10 16:55:22,"Hi Traci, a great suggestion. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It simply relies on donations and my spare time to move forward. I will add your suggestion to my list for future improvements. I hope this helps, Steve",2020-01-11 20:41:38,most_relevant,com.tasks.android +Saayoub Izaz,https://lh3.googleusercontent.com/-Mdxa4TnEaqw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMl7jEcmuoY1DeNXd85CbDVBrExSQ/photo.jpg,"Absolutely love this app and have been using it for months. Different lists in different screens via the widget. Unfortunately the widgets have become unresponsive and now I'm looking for a new app. Will this be fixed ? Using Huawei p20 pro mate for reference Edit: I have reinstalled the app, taken the app off battery saver mode. When I reinstalled it is still the same, clicking on the widget does nothing, can't add tasks at all!",3,0,2.0.0,2020-01-31 08:23:39,"Saayoub, apologies you're having an issue. The widget hasn't changed and you are the first to report this problem so it is most likely an issue with your device. Have you tried removing the widget and re-adding it? Have you had any Android OS updates recently? Huawei add very aggressive power saving which breaks many things, have you disabled this?",2020-01-29 19:22:56,most_relevant,com.tasks.android +Amine AMOUMEN,https://lh3.googleusercontent.com/a-/AOh14Ggj8TkGuiBTvK7_PAdRW3sf9YvUIvjgYhxRd80b,"Tasks helps me stay organized but I still want some option to be in it like if I want to copy a task from a list to another I should duplicate it in the the same list and then move it to the other list . I wish if I can directly duplicate it but not in the same list , instead in another list directly. But in general Tasks is a very helpful app for organizing our life.",3,0,2.0.0,2020-01-28 14:21:27,"Amine, thanks for your suggestion. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It has taken hundreda of hours to write and simply relies on donations and my spare time. I will add your suggestion to my list for future improvements. I hope this helps, Steve",2020-01-28 19:26:56,most_relevant,com.tasks.android +Franky F,https://lh3.googleusercontent.com/a-/AOh14GhW-s1jgLtmexyZjHn_oRJgvSHTcn6FayVQ0kwofw,I really like it. But there's one or two thing's that need to be addit. I Personally use it to make a list of book that planning to buy and read this year i know there's other apps for this but love the check list style but i don't like how it get deleted after 30 day at most it will be great if there is Option for never delete Plus adding a imagine option will be nice like wallpaper behind the task name,3,0,2.0.0,2020-02-03 19:08:37,"Franky, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. It simply relies on donations and my spare time to move forward. Tasks are only deleted after 30 days from your Deleted items (main menu)",2020-02-03 19:35:49,most_relevant,com.tasks.android +Betty Wellman,https://lh3.googleusercontent.com/a-/AOh14Gh3wNgIH44mfm7NH13sl70GaGsA--UlIN8AdIFu,"Haven't used it a lot yet, but enjoying the simple way to add tasks",3,0,2.2.0,2020-03-03 11:56:44,"Hi Betty, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-03 12:13:44,most_relevant,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"This app would do better with a calculator tat adds& subtracts shopping List columns with$totals. Also tabs/swipes for delete/retrieve.⁦👍🏾⁩⁦👍🏼⁩UPDATE--2/16/20. 1.You can't edit[actual item]on a list,like change It's name. 2.AND you CAN'T See*or do a running sub total -add or subtract price totals.What good is a list tat when u put the price of a item your Task list can't be more helpful when creating a cost grocery list or whatever,like[hardware store]items list!!! So I deleted",3,1,2.0.0,2020-02-16 18:26:17,"Hi, to edit a task simply click it. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. I will add your suggestion to my list for future improvements. I hope this helps, Steve",2020-02-16 20:23:24,most_relevant,com.tasks.android +A Google User,https://lh3.googleusercontent.com/a-/AOh14Gj4AjmpkyeL72497TZQGzLRMrQf7dfXIdmffCuviA,"Just started hence neutral stars. I was going to write to the devs but I see you reply here. Open is good. I don't know what a filtered list is. That is my only confusion so far. I was interested in premium but put off by the monthly fee rather than a single license. Meanwhile I was playing with the idea of selling each premium feature separately. That would give you information about what your users want - especially after you add computer support. Feed the wolf you want, Linux 1st.",3,4,2.0.0,2019-12-11 21:26:39,"Hi. Tasks is a hobby project fo mine. It has taken hundreds of hours to write, maintain and support. Unfortunately servers etc. cost me money monthly and I cannot afford to give these features for free. A filtered list is exactly that, a filtered view of your tasks. Checkout the Help"" button in the main menu for more info about features. Steve",2019-12-11 22:03:55,most_relevant,com.tasks.android +Malia Anise,https://lh3.googleusercontent.com/a-/AOh14GilfbPtPw0NLiEZ5KLZP_q7tlnFii0OfP2dJNUlMA,"Its not a bad app at all, but it could be better. If you could keep track of how often you complete a task that would be better. Like if you checked off every time you shampooed your hair it would be nice to keep track so you can change how much you shampoo if needed. Also i feel like having a bar at the top to switch between lists makes more sense than the way it is now. You should still give it a try if you need something like this because you might like it better than i did.",3,1,1.34,2019-10-21 03:59:04,"Hi Malia, the bar at the top is for multiple lists (you can swipe left/right between them). Checkout the ""Help"" button in the main menu. Tasks is a community driven hobby project of mine with all features and support offered for free without advertising. It simply relies on donations and my spare time. I will add your suggestion to my list. Steve",2019-10-21 08:11:16,most_relevant,com.tasks.android +John Bowden,https://lh3.googleusercontent.com/a-/AOh14GiShic2yxDK3MNbneNBLKbVL72aVszf0mgCDm3PAw,"Good BUT... STILL does not handle repeat events such as Daylight Savings Time change (i.e. setting a reminder for the second Sunday of March each year to change clocks that don't adjust automatically). Does not handle ""last day of the month"" reminders well. Also, the list should display an icon by repeating tasks. Backup options are very limited, does not handle integration with e.g. Dropbox. Otherwise it would be perfect for my needs.",3,1,2.0.0,2019-12-02 14:19:14,"Hi John, daylight saving is accounted for. This is part of the Android OS and works on my test devices. Unfortunately I didn't write Tasks for you and you alone. Tasks is a hobby project of mine. It simply relies on donations and my spare time to move forward. I will add your suggestions to my list. Steve BTW, backup is part of Tasks Premium",2019-12-02 14:28:29,most_relevant,com.tasks.android +Jeff Kain,https://lh3.googleusercontent.com/-Ip0QG0n76Qs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN7x17WOK7SpnuPSZ7a0uQAFjyy6w/photo.jpg,Rather new to the app to rate it higher than a 3 at this time. But I like the results it is helping me to achieve. I expect improved time management as I get the app's feature set up to serve me best. I sense I may rate it higher as I experience it benefits more. I do like using it better then Wunderlist.,3,0,1.34.4,2019-11-27 14:24:28,"Hi Jeff, Tasks is a community driven hobby project with all non cloud features and support offered for free without advertising. It has taken hundreds of hours to write, support and improve. For help with features checkout the ""Help"" button in the main menu. For any thing else please email me. Maybe you could show some support! Thanks, Steve",2019-11-27 14:36:19,most_relevant,com.tasks.android +ablantzer,https://lh3.googleusercontent.com/-41X0uN9opNQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOZACw_PI1iz9S3BtmEw6JNTnOnUg/photo.jpg,"I liked a lot about this app, but unfortunately, there is no feature to repeat tasks (hourly, daily, weekly, etc), which is kinda vital for me. Without it, I can't recommend this app. Much as I hate Todoist's subscription model, they seem to be the leader as of right now.",3,3,1.34.4,2019-10-31 19:56:39,"Hi Ablantzer, this is possible. Simply add a date and time (next occurrence e.g. 9am tomorrow) add a repeat e.g. hourly, daily, weekly etc. And save. For more help with basic functions checkout the ""Help"" button in the main menu. I hope this helps, Steve",2019-10-31 20:03:19,most_relevant,com.tasks.android +Kristina Stafford,https://lh3.googleusercontent.com/-_EQkXdlOXlU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOThVBqD2NHk6aG83lF3MlzHscCIw/photo.jpg,I just started using it. So I'm not sure how good it is yet. I do really wish you could do bullet points like: * - - That you could check off. It would be much easier in some cases than a separate sub list. & That is currently what I need 😪.,3,1,2.0.0,2019-12-19 12:57:17,"Kristina, the whole app is bullet pointed lists where the bullets are checkable. You can even have sub tasks. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. What would help make my app a 5 star app for you? Thanks, Steve",2019-12-19 13:38:48,most_relevant,com.tasks.android +Scott Osteen,https://lh3.googleusercontent.com/a-/AOh14Gj-w6gYgGO9Ha8E0i2-TIayx9_184u5H1W9mGcX,"It's a good app, but I wish it would allow multiple users to see each others task list and to send task to each other.",3,0,2.0.0,2020-01-24 02:39:26,"Hi Scott, I recently added device to device sync and automatic cloud backup. I am now.working on a browser based web app and list sharing. In the meantime you can share tasks/lists as plain text using the share icon (top). I hope this helps, Steve",2020-01-24 06:21:04,most_relevant,com.tasks.android +Simon Blake,https://lh3.googleusercontent.com/-PCD-2zjJSL4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM9W53UbyVv7uFsdbtCFnMG1Zowig/photo.jpg,"Seems good so far. I might rate it higher after using it for longer but the annoying pop up messages forced me to either say I didn't like it or rate it now... EDIT: to reply to the response. There was only the option to review now or say I didn't like it. I would have picked review later if that was there. EDIT 2: Thanks for taking my suggestion on board, I will update this review and rating once I have used the app more 👍",3,1,2.0.0,2019-12-30 14:19:45,"Simon, Tasks is a community driven hobby project of mine with all features & support offered for free without advertising. It simply relies on donations and my spare time. That ""annoying pop up"" is a one time popup that can be cancelled and simply asks for a.little.support after a minimum of a week. Great suggestion, I'll add that 👍 Steve",2019-12-30 14:08:46,most_relevant,com.tasks.android +Mairi Franklin,https://lh3.googleusercontent.com/--2otqFYtF30/AAAAAAAAAAI/AAAAAAAAZbg/AAKWJJOfxHSlVMcKxbKAsHzOk9AUIRUAhQ/photo.jpg,"Really pretty good app; but two problems! 1. Sometimes repeat weekly reminders don't work at all, especially if you haven't ticked it the previous week! 2. Please allow multiple reminders for one event! Thanks, it's really promising and useful otherwise!",3,1,2.0.0,2019-11-22 18:32:44,"Hi Mairi, if you are having issue with notifications this is a problem on your device not Tasks. Unfortunately Huawei add very aggressive power saving to their devices which interferes with the standard Android alarm manager functions. Please checkout the FAQs: https://mytasksapp.com/help/faqs#notifications. I hope this helps, Steve",2019-11-22 19:13:58,most_relevant,com.tasks.android +mala wardell,https://lh3.googleusercontent.com/-mqpPd_ozXwY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOyNFG1zVGYBpjIVaePcdrlAb9vvw/photo.jpg,"I've only had this app for about a week but so far so good. No ads (as yet), very easy to use.",3,0,2.0.0,2020-01-13 23:42:31,"Mala, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. It simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-01-14 08:55:47,most_relevant,com.tasks.android +S.S. Nabila,https://lh3.googleusercontent.com/-nSocyDPnydc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN4Ly29FaVa_YGVAWsvIfr2cJadeQ/photo.jpg,As I am a regular user of this app...This app needs some update like the calendar based listing method. People will go to date and list the task...Another problem is so many color for list. It's annoying... Who don't like colors they can select one color for every task list... That is all...🙂🙂🙂,3,0,1.34.4,2019-11-02 04:16:59,I'm not sure I understand your review. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It is offered for free without adverts and simply relies on donations and my spare time to move forward. You are a regular user and so must be getting some benefit from my hard work but give it 1 star. Thanks!,2019-05-28 17:45:02,most_relevant,com.tasks.android +Kay McFall,https://lh3.googleusercontent.com/-9KEUfTaxOUU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMK7exF-jDSEwlfGvbffVUti8XTKQ/photo.jpg,I do have a few problems but the app is fairly easy and I can keep up with everything quite well,3,0,2.0.0,2020-01-16 18:18:45,"Hi Kay, apologies if you're having an issue. You could simply do me the courtesy of emailing me with the details so I may help you: tasks.list.app@gmail.com. I look forward to solving your issue. Steve",2020-01-16 19:57:36,most_relevant,com.tasks.android +Shyam sukhdayini Sharan,https://lh3.googleusercontent.com/-BbX5fWtkGHg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPc7G3dsKMWcHYj7pOq-_-DSSjufA/photo.jpg,"It is good to organise the tasks. The only. Problem is,i am not able to get reminders. I am setting the reminder but it is but showing",3,0,2.0.0,2020-01-02 13:23:47,"Shyam, apologies you're having an issue. This is an issue with your device not Tasks caused by aggressive power saving by Vivo. Have you looked at the help https://mytasksapp.com/help/faqs (available via the ""Help"" button in the main menu). Alternatively you could have done me the courtesy of emailing me directly. I hope this helps, Steve",2020-01-02 15:42:39,most_relevant,com.tasks.android +Hesham Shemais,https://lh3.googleusercontent.com/-Vmaa3pC5q1c/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP0QcXo_hwUiyRUAXLS0JhssHOtpQ/photo.jpg,Useful easy to use and fulfil my needs But i still didn't experience it's use in sharing or groups,3,0,2.0.0,2020-01-26 09:13:18,"Hi Hesham, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. It simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-01-26 13:40:24,most_relevant,com.tasks.android +Megan Richardson,https://lh3.googleusercontent.com/-RykTlpq-edk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOUUk6QFAieJAotgn05oriW9lN4wA/photo.jpg,"Minimum 3 stars, no real problems so far. Nothing to compare it to but its bright and keeping me organized.",3,0,2.0.0,2020-01-03 02:13:19,"Hi Megan, thank you for your positive feedback. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. It simply relies on donations and my spare time to move forward. Let e know how I could make it a 5 star app for you. Thanks, Steve",2020-01-03 10:04:41,most_relevant,com.tasks.android +Andrea Tapia,https://lh3.googleusercontent.com/-xt-wXfLrcEs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOkRC8ZtS09PUxkYvJ7NZIcLV4Zow/photo.jpg,I used to love this app but since my phone updated it no longer works. I recently uninstalled and re installed I hope it works or I'll have to find something new 🙁,3,3,1.34,2019-10-17 05:25:10,"Hi Andrea, apologies you had an issue with my app. Can you be more specific? What no longer works? I have the same device as a test device and have never had any problems. What was the issue you saw? Thanks, Steve",2019-10-17 08:24:43,most_relevant,com.tasks.android +Monica J,https://lh3.googleusercontent.com/-GICWyzdoSQo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO-MNWWkZFLHHYZh29_xxr4yaKo1w/photo.jpg,Those dots on the right of each item are gone. How do you reorder your to do items now?,3,0,2.0.0,2019-12-21 15:10:11,"Hi Monica, when you change the sort option e.g. alphabetical you can no longer drag and drop tasks. Simply change the sort option back to"" User draggable"": open the sub list menu (3 dots top right). For more help with basic features checkout the ""Help"" button in the main menu. I hope this helps, Steve",2019-12-21 16:15:45,most_relevant,com.tasks.android +Ravi Ranjan,https://lh3.googleusercontent.com/a-/AOh14Gjakh2rJntjgaG17hxthw6CaNlND_6Qvn4_fxHjIA,"Does it not have feature to set reminder daily, weekly, monthly and yearly?",3,0,1.34.4,2019-11-06 10:31:00,"Hi Ravi, yes. Did you check the help in the main menu? Simply add a date and time (next occurrence e.g. 9am tomorrow) add a repeat e.g. daily, weekly etc. And save. I hope this helps, Steve",2019-11-06 11:51:29,most_relevant,com.tasks.android +r free,https://lh3.googleusercontent.com/-slMZvZX-whU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM1v8b2Ee36ZJp00yjw2X0iAD7AmA/photo.jpg,I don't see where you can use voice to make tasks??,3,2,2.0.0,2020-01-09 21:27:50,"On most android devices there is a microphone symbol on you keyboard simply click it and use it for speech to text input. I hope this helps, Steve",2020-01-11 20:32:52,most_relevant,com.tasks.android +Beth Cherne,https://lh3.googleusercontent.com/-asqzVvXTfpg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPjcutN1uvSWFr4a88w4n7WNGLMEQ/photo.jpg,"It was fine until I found that to use features like syncing or transferring lists from an older app I had to upgrade to and pay for ""Premium."" Felt like bait and switch.",3,0,,2020-03-11 16:36:25,"Beth, Tasks is a hobby project of mine that has taken 1000s of hours with all non cloud features & support offered for free without ads. I do not hide the fact cloud features are paid for. Servers, storage etc. around the world cost me money each month you use them. I understand everyone always wants everything for free but I cannot afford this",2020-03-11 17:13:20,most_relevant,com.tasks.android +Maxine Villareal,https://lh3.googleusercontent.com/-IUy1zWMkfkY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM4JiMVrDn-Z-70kBvawFLbIhUaPQ/photo.jpg,More hierarchy on task options?,3,0,2.2.0,2020-02-26 11:11:10,"Maxine, Tasks has the hierarchy: parent list -> sub list(s) -> task(s) -> sub task(s). How many levels of hierarchy do you need? Thanks, Steve",2020-02-26 11:59:03,most_relevant,com.tasks.android +Lpedraja2002,https://lh3.googleusercontent.com/a-/AOh14GhQDGDyFbYFi1m010Sw9M3Ra7LvcauFTOsaes_u,"I like how minimalistic the app is. It's very easy to use and has just the necessary features. My biggest complaint is that I can't set a custom due date. Whenever I tap the due date, I get predefined reminder and I can't seem to change it no matter what. I'm using an LG Q7 Plus, don't know if it's a bug with the device or what. Will update the score if this issue ever gets fixed.",3,2,1.20.3,2018-09-24 06:11:33,"Hi, to change the date and time simply tap the corresponding text. Please contact me directly if you\re still having an issue. Thanks, Steve",2018-09-24 10:36:44,most_relevant,com.tasks.android +Katelyn Boulton,https://lh3.googleusercontent.com/-t7wrSZQtod0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMjmt9OyOolhSIK60NdxnZc8QxW0Q/photo.jpg,"This is a great app, and would be 5 stars. The reason it isn't, the early reminder notifications stopped working for me, at all. They had been working fine, then for no reason that I can find, they stopped. I've tried reinstalling the app, but this didn't fix it. I am getting a reminder at the time my tasks are set for (or 3 - 4 minutes late) though. It's incredibly frustrating as this is the only app I've found that offers early reminders, and I'm trying to use that to complete tasks on time.",3,3,1.25.1,2019-04-10 00:25:26,"Hi Katelyn, apologies you're having an issue with my app. On some devices similar behaviour is due to aggressive power saving that interferes with the standard Android alarm manager functions. However, you are the first to report any issues on a Samsung device. Do you have any power optimisation settings enabled? I hope this helps, Steve",2019-04-10 07:24:08,most_relevant,com.tasks.android +Nacimzarem Halawi,https://lh3.googleusercontent.com/a-/AOh14GgMaXP-swL5KozyYzcQI7Ng-r6T-hAG9NJHqn3Y,"this app is really very good and have a simple interface and easy to create tasks unlike other apps which are really cluttered. This is what i exactly needed. However, the problem is, if the phone is locked, it doesnt ring at all. Also, the alarm doesnt go off at the right time. if i have set an alarm at 10am for a task, it some times goes at 10:10. if it is locked, it doesnt go at all. please please fix this.",3,0,1.28,2019-07-07 05:28:23,"Hi Nacimzarem, apologies you're having n issue. Unfortunately some manufacturers add very aggressive power saving to their devices. This interferes with the standard Android alarm manager functions. Please check all power optimisation settings related to Tasks app and enable where appropriate. I hope this help, Steve",2019-07-07 17:03:59,most_relevant,com.tasks.android +Perry Cyr,https://lh3.googleusercontent.com/a-/AOh14GhVAyTwnvX0uvPvlm0tbkr2I1IKPAiStyPq0nbexA,"Hi Stephen, I was getting used to using this instead of the late Inbox Reminders but some repeat reminders just aren't coming up anymore. high reviews and great until it wasn't great. There should be an option to make recurring task reminders to not have ""due dates"". It should come up and I can clear it without removing the reminder from showing up due to needing to move out the due date. Can there be just an option to make a task not have a due date and make it recurring every so often? Thanks!",3,1,1.25.1,2019-04-19 11:06:36,"Hi Perry, I'm not 100% sure I understand. If you remove the date and time how would Tasks know when to display a reminder? Thanks, Steve",2019-04-19 12:02:37,most_relevant,com.tasks.android +Ron Riesenbeck,https://lh3.googleusercontent.com/-3ZKaIR82TRQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNnJyLuYBh95IKY5urxAFOC8My5sw/photo.jpg,"This app has great potential but is not there yet. Example, if a task repeats but without notification, then you manually mark it completed. The task is shown as completed & should advance to the next scheduled date. Instead it is showing up the next day as past due. But, if the task repeats with notification, then on the due date/time the system instantly advances the due date but does not show the task as completed so you have no record of the task due today & I have overlooked many. Not good!",3,2,1.28,2019-07-01 16:16:42,"Hi Ron, apologies you didn't like my app. Tasks will honour the schedule you have set, when you receive a notification Tasks will automatically update the date and time to the next occurrence. Tasks is a community driven hobby project of mine. Recurring tasks have been tricky as many users want different things. I'll add your feedback to my list.",2019-07-01 16:41:30,most_relevant,com.tasks.android +Vivek Doshi,https://lh3.googleusercontent.com/-UbtvvluW8rc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOy8s46PRcErEhzUbkzMPIj16ZVow/photo.jpg,"Very good app but something lacl There is options default task set today, Tommorow etc, one more problem when we ADD task in any list it automatically saved in other. Other when we add task any date it demand time necessary it shoud be Optinal",3,0,1.33.3,2019-10-09 21:04:02,"Hi Vivek, I'm not 1005 sure I understand. Please contact me directly with more details. Maybe a screenshot would help? Tasks is a hobby project of mine with all features and support offered for free without advertising. It simply relies on donations and my spare time to move forward. Maybe you could show a little more support! Thanks, Steve",2019-10-10 09:26:47,most_relevant,com.tasks.android +Paul Iwanaga,https://lh3.googleusercontent.com/a-/AOh14Gjl07X1i2cvs7DAmr3HnzudJjViJIpXJ3YuFB8oqA,"The MOST IMPORTANT features needed: 1) a MULTIPLE sort features like alphabetical, then by priority, date, etc (we are talking about very organized people using these lists) 2) a data import and export feature to backup & import lists (csv files so the 500k+ people who used ListMaster can transition to your app) while keeping our info safe (if our phone dies or is lost or stolen) 3) a feature to attach files or pictures Make ALL of these additional features for $1 month to get monthly income",3,1,1.23,2018-12-18 23:03:12,"Hi Paul, Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It relies on donations and my spare time to move forward. It is offered for free without advertising (as I hate ads). I will add your suggestions to my list for future improvements. I hope this helps, Steve",2018-12-18 16:16:52,most_relevant,com.tasks.android +Courtney Mccullough,https://lh3.googleusercontent.com/a-/AOh14Gh841BWqNqF8tXRrK3d99zG5ltwU47s8NRL02H_,"I love lists, and I really love this easy to use app, however I also love making notes to myself of a *lengthy* nature (usually when I'm trying to go to sleep), like my thoughts on a subject or what Id like to talk about to a friend, it would be amazing if there was a blank note page or lined page without all the Frills of *dates and times and priority and complete* to compete with my eyes. I dislike having to have multiple apps for same basic function. I'd chose this over all others. 👍",3,0,1.23,2019-01-15 13:28:17,"Hi Courtney, really glad you like my app. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It relies on donations and my spare time to move the project forward. Maybe you could contact me directly so I may understand your suggestion fully. Thanks, Steve",2019-01-15 14:28:53,most_relevant,com.tasks.android +Allieloops,https://lh3.googleusercontent.com/a-/AOh14GjmUClLhJsfSs_8Me1EHq7-pKTOxi5lgKxn0pI9TQ,The creating of tasks is pretty straightforward and easy to use but I don't like the idea that tasks in filters are the same copy of tasks in lists. Sometimes I change my mind with which tasks and lists go to which filters and if I want to remove the filter then it deletes all the tasks within it as well. I want to be able to delete the filter without having to delete the tasks themselves entirely.,3,7,1.24.2,2019-02-02 02:11:37,"Hi, filtered lists are exactly that. A filter, this is a common software pattern to view.only the tasks you are interested in. I hope this helps, Steve",2019-02-02 08:33:39,most_relevant,com.tasks.android +Gemma Sinclair,https://lh3.googleusercontent.com/a-/AOh14GjmKBTsxZ-Ndc9F1QC7TlcjcGaDiejL4YqbTzJi,I actually loooooove the app and use it to organise my life but it has now stopped updating as a widget. If I make changes to my lists on the app it will not change on the widget?,3,1,2.0.0,2020-01-02 07:39:43,"Hi Gemma, apologies you're having an issue. This is a problem with your device not Tasks. Remove the Tasks widget and re-add it. Check all power optimisation settings related to Tasks app and enable where appropriate. I hope this helps, Steve",2020-01-02 11:08:16,most_relevant,com.tasks.android +john moreton,https://lh3.googleusercontent.com/-QgI669ui-CY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNzVYKqjslmO_z9AeXI5GzOiW7HGA/photo.jpg,Suddenly stopped giving audio reminders. Tried everything including re-installing and turning on all notifications. Uninstalled.,3,0,,2020-03-03 11:07:51,"John, you could have simply emailed me so I could help. As a reinstall didn't work this is almost certainly as issue with your device not Tasks. I'm assuming your OnePlus has been upgraded to android 10 when it stopped. It's not always the apps fault, manufacturers are very good at breaking things or writing bugs too",2020-03-03 11:29:39,most_relevant,com.tasks.android +Grace Heng,https://lh3.googleusercontent.com/-poRcYvI74eg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMC-isz72d1azd47TZ3qQwx4ZecKg/photo.jpg,"Love the interface and how easy and helpful it would be, but the alarms I set do not not ring. I gave permissions to this app already, yet it doesn't. Edit: Thank you for letting me know it's a Huawei power saving issue! Are there any work-arounds the power saving mode on Huawei to still allow this app to run? The alarms are very important, without them the app is critically impaired on my device. Haha. Thanks!",3,0,,2019-05-21 03:49:59,"Hi Grace, yes, there is help available on my website: https://mytasksapp.com/help/faqs. I hope this helps, Steve",2019-05-21 07:12:56,most_relevant,com.tasks.android +Emily Hubbard,https://lh3.googleusercontent.com/-f5moQRUwFy4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOSjoSxoxLhDcr8XSGT_aoChEF7uA/photo.jpg,"So far it's a nice, simple app that makes it easy to organise tasks. I am a fan if the widget to let me see different lists, BUT when I switch lists, it often unchecks what has already been done which kind of defeats the purpose. If this could be fixed I would increase the rating.",3,1,1.23,2019-01-12 01:15:37,"Hi Emily, apologies you're having an issue with my app. Could you contact me directly with the exact steps to reproduce as I have also have a Pixel device and have not seen any problems. Thanks, Steve",2019-01-12 07:57:56,most_relevant,com.tasks.android +Whitney Sledz,https://lh3.googleusercontent.com/-tvTn5lj-0rk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNQ9h3M5AoVteiDhSmvchog3k4Tmg/photo.jpg,"I loooove this app! But, I have a Note 10+ & it was destroying my battery. I had to uninstall it😭",3,0,,2020-01-16 20:50:46,"Hi Whitney, Tasks only ""consumes"" battery when it's in the foreground. By default Tasks will stop your phone from sleeping when you are viewing a list. There is an option ""Keep screen on"" in setting which you simply need to disable. I wish you'd emailed me first. Steve",2020-01-16 21:03:31,most_relevant,com.tasks.android +Joby Mon,https://lh3.googleusercontent.com/a-/AOh14GjvE66iTxPATLeJMU8ESB252YDApzSISRyLLn1a,"I'm using this app for quite some time, it has big problems which forcing me look for another app, it doesn't remind me on time, all the reminders work when I open this app at that time it was too late.. What the use having this app.. Please correct this problem or else I am happy the all the options and features.. Thank you",3,1,1.25.1,2019-04-15 16:17:20,"Hi Joby. Unfortunately Oppo add very aggressive power saving to their device which interferes with the standard Android alarm manager functions. Please check all power optimisation settings related to Tasks app e.g. Settings > Battery > Energy Saver, select Tasks and turn off Background Freeze and Doze. I hope this helps, Steve",2019-04-15 17:00:07,most_relevant,com.tasks.android +Mel Bal,https://lh3.googleusercontent.com/-ANMmNZP1xfk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNDL226civ46kUXjDob0VughOyuyQ/photo.jpg,"So disappointed to lose everything. I didn't realize the app didn't save your lists. Got a new phone and everything transferred but because this app doesn't have you log in, everything is gone. I had several important lists saved to prepare for my upcoming baby and it's all gone. I'll never remember it all. Time to look for something else to use. Response: From the main screen I didn't see any prompting so did not know I was supposed to or how to.",3,3,1.26,2019-05-26 17:51:30,"Hi Mel, I'm not sure I understand? There is a backup/restore feature which was specifically designed to move between devices? Is this what you did? Thanks, Steve edit: there is a help menu option in main menu, did you find this?",2019-05-26 18:03:49,most_relevant,com.tasks.android +dublinx,https://lh3.googleusercontent.com/a-/AOh14GgRl4D5ZqBMkyg6yTkfbhrwo1NnNSHu-IF2K2TY,"like to check off sub-task via widget without opening app. (checking off task without subtasks works fine). Wish widget showed calendar. Wish app had daily, weekly, monthly, yearly trends, wish app to sync to google calendar. Would be nice if you could rearrange the components of a list (ex:move Note below subtasks ) Btw, 3 of 5 is to me a STRONG like. You guys are doing a great job.",3,0,1.26,2019-06-25 04:17:11,"Hi, apologies you didn't like my app. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It is offered for free without adverts. I will add your suggestions to my list for future improvements. I hope this helps, Steve",2019-06-11 07:24:45,most_relevant,com.tasks.android +Rachel Kackstaetter,https://lh3.googleusercontent.com/a-/AOh14GhUe1oXhiyVAY-ED-uhKV4VsD1GZ2CBNl48a2k63A,very useful and simple. nothing too fancy but still fun no complicated features. i love the multiple lists options and sub category lists. only glitch i find is returning to previous pages after typing...often i have to just hit my home button and navigate all the way back to where i was...but nothing too bad.,3,1,1.26,2019-05-10 17:46:35,"Hi Rachel, thanks for your positive feedback. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. I'm not 100% sure I understand your suggestion. Maybe you could contact me directly with more details and a screenshot to help my understanding? Thanks, Steve",2019-05-11 08:49:22,most_relevant,com.tasks.android +Christian Israel,https://lh3.googleusercontent.com/a-/AOh14Gj7ZKlY4Bj5rpAMfIAYUDanwHNpJnZpv7QSSfsdtg,"This app doesnt require your firstborn in order to function as similar apps do. The Quick post function is great. However, unlike other similar apps, this doesnt have a widget feature to show what the upcoming daily task is on the screen. So for me, that is really unfortunate. If this changes, I will gladly give this a perfect rating.",3,7,1.32,2019-09-01 08:15:04,"Hi Christian, Tasks does include a widget for free. On most devices to add it simply long press on your home screen. Select widgets. Drag and drop the Tasks widget onto your home screen. For more help checkout the FAQs: https://mytasksapp.com/help/faqs. I hope this helps, Steve",2019-09-01 08:19:04,most_relevant,com.tasks.android +Kay Hong,https://lh3.googleusercontent.com/a-/AOh14Gi7nOTlrwb5ASDsSsBYCAkPlh24iZgq02iC-tD8zQ,"Great colors, list & notes with sub-lists, lots of options... but terrible to navigate. very confusing and all over the place. :/ if you want something very detailed, will spend the time to learn to use it, and want tons of colors to differiate your lists then this is for you.",3,8,1.25.1,2019-03-24 19:22:39,"Hi, apologies you didn't like my app. Tasks is a hobby project of mine. Could you contact me directly with more details so I may improve it for future users. For help getting started please checkout my website https://mytasksapp.com. I hope this helps, Steve",2019-03-24 20:13:45,most_relevant,com.tasks.android +Maaya Ash,https://lh3.googleusercontent.com/-Us8ojEqIDcI/AAAAAAAAAAI/AAAAAAAAAMg/AAKWJJOpPrJmL_dBJ7z00iuCFguGeQFAXQ/photo.jpg,"I would have loved it if not for the fact that there is a problem with the widget on my Huawei p20, unfortunately it gets stuck often and cannot click anything, I tried removing the widget and re-doing it, now it doesn't even show my lists, and I have to go into the app to check or add things, which of course means once I'm done with the current ones I'll delete it. A task app with no immediate access on main screen is not too helpful...",3,9,1.23,2018-12-15 11:34:14,"Hi Maaya, apologies you're having an issue with my app. Could you contact me directly with a screenshot of the issue as I've not seen this on any of my test devices. Thanks, Steve",2018-12-15 13:51:54,most_relevant,com.tasks.android +Persistent Tek,https://lh3.googleusercontent.com/-2kegfErrsy0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPsgR_6U4lEf7rnbVbT01r7oI33_w/photo.jpg,I just downloaded& installed this app. I was in search of an app that allows me to insert date and time stamp. Preferably using a button on the screen. This way I can time stamp different sections in my notes and activities. however I didn't find that feature. would love to see that in this app as it needs quite a few of my requirements.,3,0,1.33,2019-09-03 23:49:48,"Hi, Tasks is a community driven hobby project of mine with the most popular suggestions added over time. All features are offered for free without advertising. It simply relies on donations and my spare time to move forward. I will add your suggestion to my list for future improvements. I hope this helps, Steve",2019-09-04 07:59:55,most_relevant,com.tasks.android +Tilak Bisht,https://lh3.googleusercontent.com/a-/AOh14GiBPkeL1BoYCGeqACKf471sUe2WGkIWpGPlnQBWiAc,This application is very good. Feature rich and most powerful. Even though you should add few features in the app. 1- Repeat frequency should have hourly and 30 minutes 2- Add bullet points format in the notes section. Like Google keep have. 3- Provide database backup option with Google Drive and Dropbox.,3,0,1.21,2018-11-02 11:09:22,"There is a backup feature in the app settings. Many users sync this file to Dropbox, Google drive etc. This feature will be deprecated soon in favour of cloud backup (which I am currently working on). Tasks is a community driven hobby project of mine with the most popular suggestions added over time. I will add yours to my list. Steve",2018-11-02 11:32:18,most_relevant,com.tasks.android +John Salerno,https://lh3.googleusercontent.com/a-/AOh14GgR3xR_5VEzff3_h-5pmQUBRaWRMvpE62pMXfGD,"Seems laggy moving between lists and tabs after the latest update. No way to delete a parent list without manually deleting all sublists first? Edit: I see the delete option for subtasks, but how do you delete sublists and parent lists? (I understand it's a hobby project, and I appreciate that. Just making sure I'm not missing something.)",3,0,1.33.3,2019-09-12 20:12:51,"Hi John, you are not looking for a menu, just click on the sub task. It will display the sub task dialog which has a delete option. To delete a task simply long press and click delete. Please note: this is a hobby project and all support if offered for free in my spare time. I hope this helps, Steve",2019-09-12 18:39:20,most_relevant,com.tasks.android +Deborah Davis,https://lh3.googleusercontent.com/-N7Kb7w487zw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOVMjQmPhkpliTkebbs-uJWv7d8EA/photo.jpg,I was hoping for similar to notes app on iPhone. Not even close. But I prob don't know how to use it,3,0,2.0.0,2020-01-02 17:20:07,"Deborah, maybe you could be more specific? Tasks is a community driven hobby project of mine with all features and support offered for free without advertising. Tasks is more a replacement for iOS reminders app. You want a note app. There is a ""Help"" button in the main menu for more details or you could have.done me the courtesy of emailing me",2020-01-02 19:28:46,most_relevant,com.tasks.android +G. H. Nairn,https://lh3.googleusercontent.com/a-/AOh14GjliHSHNYgO6uNEKTDfP4HD3v9VXVzMt9Af-pX8Yg,"Sound now works but when I have the phone's Do Not Disturb feature on my wake up alarm task notifies but no sound. I have it set to ignore Do Not Disturb and have it set to alarm. My other alarm app does sound off during this time but not as reliable as Task, so it's not my phone causing no sound issue, what else could it be Stephen? You get it working and you get 4 stars, restore still does not work, gave up on that.",3,143,1.31,2019-08-24 08:50:08,"Hi, both backup and sound are verified as working on test devices. Please check the docs and your local settings. I hope this helps, Steve",2019-08-23 08:32:43,most_relevant,com.tasks.android +Rémi C.,https://lh3.googleusercontent.com/-BLn1b4jp1BA/AAAAAAAAAAI/AAAAAAAAE74/AAKWJJM2iBt13BUqckurK5zh-3xpRmpvHw/photo.jpg,"It seems like a good app but I haven't found a way to enable a permanent notification for quick task adding. Is it only possible? EDIT: No, I mean a permanent notification that works like your widget, allowing to quickly add new tasks without opening the app. SplenDO and Any. Do have this feature for instance.",3,9,1.21,2018-10-07 08:25:30,"Hi Rémi, you can add a notification for any task by adding a date and time, enable the reminder and save. Is this what you meant? EDIT: I will add it to my list for future improvements. Thanks, Steve",2018-10-07 08:44:30,most_relevant,com.tasks.android +Andrew Miller,https://lh3.googleusercontent.com/a-/AOh14GgQjFE1HHtJGS4adqJbf0tnsjZvQS9L-ngin-Ps8Gc,"Great job on the app, for improvements sake - I would make the lists have a font size option, or something where if the 'items' in the to do list are more than a few words, they can look more organized, given that the square resides in the middle of the 'to do item', to me they seem a bit crammed together",3,2,1.27,2019-06-19 10:22:24,"Hi Andrew, thanks for your feedback. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. I will add your suggestion to my list for future improvements. I hope this helps, Steve",2019-06-19 11:09:29,most_relevant,com.tasks.android +Mama Rice,https://lh3.googleusercontent.com/-JYznClbM_jU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM5H_YPxlzof5VC_0iTtHvvZ7mmlw/photo.jpg,"If all you want is to make lists or be reminded of something once, then this is a great app. BUT if you want a reoccurring reminder....forget it. It won't recreate the reminder for the next occurrence once you complete the first occurrence.",3,1,1.25.1,2019-04-17 13:59:32,"Hi Mama Rice, apologies you're having an issue with my app. You are the first to report this issue on a Samsung device. In most cases this is due to very aggressive power saving which interferes with the standard Android alarm manager functions. Do you have power optimisations enabled for Tasks? Thanks, Steve",2019-04-17 14:30:53,most_relevant,com.tasks.android +Mauri Galvez,https://lh3.googleusercontent.com/a-/AOh14GiVBnjU55bFD7THcC0j8uS3vS8Ez3u7YKLEOZdhhkY,"Decent app, but not worthy of monthly fees. What happened to 1x Pro licenses?",3,0,,2020-01-14 08:05:11,"Mauri, Tasks Premium is completely optional. Tasks is a community driven hobby project of mine with all other features & support offered for free without advertising. Tasks Premium is a global service that costs me money every month. Why do you think you shouldn't have to pay for your usage monthly/yearly? I'm sure you can understand this. Steve",2020-01-14 08:54:58,most_relevant,com.tasks.android +Akunna Igwe,https://lh3.googleusercontent.com/-GzGwHLRy904/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM0_AShGLjCWgT-Y-z8BGAIVU_R1A/photo.jpg,"I personally would like to add to this app, if I had a chance is change how the entires were set up. You had to make up the name. But it would make it better if it had a date and name. To me it feels like something you can do on a piece of paper. Add more cool features that you can't find anywhere else.",3,0,,2019-08-16 12:40:03,"Hi Akunna, I'm a little confused by your feedback. Why did you bother trying my app? Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It is offered for free without advertising. Maybe you could help improve my app for ALL users? What would you like to see? Thanks, Steve",2019-07-30 07:23:54,most_relevant,com.tasks.android +R1t4 D,https://lh3.googleusercontent.com/-mp37OzmnrUs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN92RSc3FXHPP_xRYpKEeNqUV_DRg/photo.jpg,"I have to uninstalled this app on my phone soon i open the apps and trying to make things to do list.. it worked fine just i have trypophobia and those small circles/dot just freaking me out... edit, the small circles/dots that i mean here is when i click new list next we fill the LIST NAME and it appears with small circles/dots in color for me who's having this kind of phobia that kind of design is just scary.. aside of that your apps seems to be simple and easy to use.",3,0,1.30,2019-08-15 16:46:22,"Hi, thanks for the feedback and sorry about that. Steve",2019-08-15 17:22:46,most_relevant,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"want to put a line through items but leave them visible. don't know how to manipulate to keep certain items from week to week, but cancel others. no instructions. but better than other apps that I've seen.",3,1,1.23,2019-01-01 01:38:50,"Hi, you should have had some context based help when first using the app. There is also my new website: https://mytasksapp.com/help/getting-started. I hope this helps, Steve",2019-01-01 02:11:50,most_relevant,com.tasks.android +Vladimir Rubinets,https://lh3.googleusercontent.com/a-/AOh14GjPrIsB9tzCH5XyHBiLk_Sl41qZV5z73B74JZP_sA,"One of the billions of to-do lists app. Nothing special. Unpredictable non-intuitive behavior, as usual. Useless hints for features, that are obvious. I've thrown this app away after the third time, when I accidentally removed my task while simply scrolling the list.",3,0,1.25.1,2019-04-17 06:52:16,"Hi, apologies you didn't like my app. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. What unpredictable behaviour did you experience? Tasks is designed to work for as many users as possible hence the simple hints. And finally swipe to delete can be disabled in settings. I hope this helps, Steve",2019-04-17 08:12:28,most_relevant,com.tasks.android +My Vivo,https://lh3.googleusercontent.com/-UlN_av61WKM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMuKNYGP8PAoCei9woH5MeGSHMNrA/photo.jpg,It was ok but only the first instance of the recurring events shows up on the list/calendar. It is important to see how recurring events impact the schedules in the future so users can avoid scheduling something on those dates/times.,3,1,1.25.1,2019-04-12 03:42:06,"Hi, each task is a single instance, Tasks does not create a new task for each occurrence as that would bloat the lists. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. I will add your suggestion to my list for future improvements. I hope this helps, Steve",2019-04-12 07:42:02,most_relevant,com.tasks.android +Vasilis Tsiadis,https://lh3.googleusercontent.com/-9d9WkzzSdRI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPN1J-E0ixM0WiHjxSdysVsyv5sgQ/photo.jpg,"The app is helpful and has nice features. I would give 5 stars but you apparently you are not able to transfer your lists to another device, unless you have exactly the same version. I had to create all my lists from scratch.",3,1,1.33.3,2019-09-15 13:47:55,"Hi Vasilis, there is a backup and restore feature in settings for transferring between devices. If you had an issue, you could have simply asked for help instead of complaining on the PlayStore. Steve",2019-09-15 15:21:21,most_relevant,com.tasks.android +Emmanuel Alen,https://lh3.googleusercontent.com/a-/AOh14GjH2eYQlL5rUcrLnAWUumbqkONxNtiqJNJXJ0c2,"The app is great! Thank you for providing us this gem! However we work in several devices, we are missing out the multidevice option... and for that reason we may migrante elsewhere. Hope it comes available, thx.",3,0,1.20.3,2018-10-04 10:01:43,"Hi, this has been a very popular suggestion. I am currently working on server code to enable device to device sync, list sharing and cloud backup. I hope this helps. Steve",2018-10-04 10:12:06,most_relevant,com.tasks.android +Sabhie Cat,https://lh3.googleusercontent.com/a-/AOh14GjQKJSfTJvn95ZNkx0oy9lpF1joPEBk36M4LoQc,It it good but I couldn't do simple lists. They would be in one big catagory then in a sub list and it just wasn't the format I wanted,3,0,,2019-11-06 18:47:02,"Hi, I'm not 100% sure I understand? Tasks is designed to be very flexible. You can break your tasks up however you wish. Tasks is a hobby project of mine with all features offered for free without advertising. It simply relies on donations and my spare time to move forward. What were you looking for? Thanks, Steve",2019-11-06 18:50:06,most_relevant,com.tasks.android +Nickolas Usher,https://lh3.googleusercontent.com/-5hRfhFUWkNg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNyLddyJOHoGH3t4d6vs4EY19OZCA/photo.jpg,"It's actually sleek, beautiful, well-designed and exactly what I would want, but without syncing it becomes much less helpful. As soon as that feature is added I will reinstall this as my primary note app.",3,0,,2018-10-20 18:12:12,"Hi Nickolas, thanks for your great feedback. Sorry Tasks is not currently for you. I am currently working on server code to enable device to device sync, cloud backup and list sharing. Maybe in the future :) Steve",2018-10-20 18:30:39,most_relevant,com.tasks.android +Josena George,https://lh3.googleusercontent.com/a-/AOh14GjNy8WX22Mly-YS2eoxd-x8VVM-lcb8GUmyBxxEDA,Notification is not of up to my expectation. Need to keep on reminding us until we check or tick it... Besides that.. The way of organizing the tasks and prioritizing them are perfect. I do love to continue using it if they update the notification part.,3,0,1.28,2019-06-23 10:20:16,"Hi Josena, You should have received a notification which can be made persistent by enabling the corresponding setting. Tasks is a community driven hobby project of mine. it is offered for free without advertising. Please contact me directly and let mw know how you think it should work so I can improve it for future users. Thanks, Steve",2019-06-23 10:18:36,most_relevant,com.tasks.android +Divine Gonsalves,https://lh3.googleusercontent.com/a-/AOh14GgmMhaPIuTUjphqt9xHXHa3WLoB5UHZD6hRPS3r,"It's a good app. However I'm disappointed that thr alarm doesnt ring and bevause i missed the remainder I had to pay overdue library fees! Edit: the app's creator is responsive and lovely 😊 thanks for the advise, Steve.",3,0,1.28,2019-07-10 22:41:22,"Hi Davine, apologies you had an issue with my app. Unfortunately Xiaomi add very aggressive power saving to their devices. This interferes with the standard Android alarm manager functions. Please checkout the FAQs for help: https://mytasksapp.com/help/faqs I hope this helps, Steve",2019-07-10 07:11:46,most_relevant,com.tasks.android +Anon Emus,https://lh3.googleusercontent.com/a-/AOh14Gjzmj58zA3obfSfSm7RakFq2jZI3kM25D7j2y6QEQ,"Good app for setting daily tasks, if it had hourly reminders/alarms it would be great for me, being notified by alarm makes up for it though as most just have short notification sounds that i never hear.",3,0,1.20.3,2018-09-27 10:31:27,"Hi, thanks for your suggestion. I will add it to my list for future updates. Steve",2018-09-27 10:45:59,most_relevant,com.tasks.android +Alex Pride,https://lh3.googleusercontent.com/-w8D1WGQ8gJk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJME2Y72eK--QeTIHeeol3x--ZREXw/photo.jpg,"Good start, would love to see clean material design implemented. Personally, I need the option of a full task list view in my task widget. Again, good start.",3,0,1.21,2018-10-18 03:53:48,"Hi Alex, you could enable the all task list in settings and then choose that in your widget. What other material design aspects do you think are missing? Thanks, Steve",2018-10-18 09:36:45,most_relevant,com.tasks.android +Ash C,https://lh3.googleusercontent.com/-vHI3YOL57uI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNEWkp-o8bf2fl1iCyXTETKGV4KoQ/photo.jpg,Seems nice. I wish there was a way to just do notes and not only tasks. Also...which there was a way to lock certain notes that may be private...in case your phone is lost.,3,0,1.23,2019-01-10 04:08:31,"Hi Ash, you could simply put the notes in the title field? Tasks is a community driven hobby project of mine with the most popular suggestions added over time. I will add your suggestion to my list for future improvements. I hope this helps, Steve",2019-01-10 08:06:50,most_relevant,com.tasks.android +AK Gmeygrlye,https://lh3.googleusercontent.com/a-/AOh14Ghdb555XfZDQTE0dncg5iztyN6z8Fn0dJu0gbo0,"Worked great in beginning. Enjoy multiple lists & sublists. But now I have a task ""haunting"" me, it won't let me delete it. Wrote developers, we'll see. Using SG8+.",3,0,1.28,2019-07-02 08:02:34,"Hi, apologies you're having an issue with my app. Please check your email :) Steve UPDATE, according to your auto reply, you may need to check your spam folder. Steve",2019-07-02 08:15:21,most_relevant,com.tasks.android +Balogun Olanrewaju,https://lh3.googleusercontent.com/-JW3Egx2lHFA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOTfOTeJE-lYQceHdHGYeQZTDCTDw/photo.jpg,"Its not easily understood and it does not notify if you are setting a task that the due date or due time is past. I might want to set 16:00hrm task tomorrow at 18:00hrm today, it will still set the task and will think I have set a task. Meanwhile the date is today",3,0,1.26,2019-07-21 09:04:49,"Hi Balogun, apologies my app was too complicated for you. Have you looked at the help (left side menu)? I'm not 100% sure I understand, if you set a date and time in the past, when would you expect to see a notification? I don't understand your logic? Maybe contact me directly so I can help? I hope this helps, Steve",2019-07-21 09:21:18,most_relevant,com.tasks.android +Anna Barry,https://lh3.googleusercontent.com/a-/AOh14GjNoGh-DBarRiIr67VNA59MYArwXBjWv1QadntUrQ,No white space between tasks. No line between tasks. Checkboxes are in the middle of an item. One big block of text instead of neat list of tasks. Just impossible to see where each task starts.,3,0,,2019-08-07 11:26:53,"Hi Anna, I'm not 100% sure I understand your issue. There is a divider line between tasks. Tasks is a community driven hobby project of mine with the most popular suggestions added over time.All features are offered for free without advertising. Maybe you could send me a screenshot so i can see your issue? Thanks, Steve",2019-08-07 13:11:04,most_relevant,com.tasks.android +Kiril Lukiyan,https://lh3.googleusercontent.com/a-/AOh14GjVxLR0NAmwlMEP9Lv8BuDmIT2L43uKNVG__Va_Ha0,Looks good. But doesn't have web version. Would be 5 stars if I was rating author's dedication. Functionality wise can't give more than 3. The app is inferior to Any.do or microsofts todo,3,0,1.33.3,2019-09-12 09:51:51,"Hi Kiril, I do not claim this in the PlayStore. However, Tasks is a community driven hobby project of mine with all features offered for free without advertising. It simply relies on donations and my spare time. This has been popular and so I am currently working on server code to enable device to device sync, cloud backup and a web app. Steve",2019-09-11 17:42:19,most_relevant,com.tasks.android +Rob,https://lh3.googleusercontent.com/-hmlW9AuQseQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOy63-n1C7oFusbQM76FQ4fHCYudw/photo.jpg,Should not need to tap a notification alert each time i add a new item. Should be by default like almost every other app. in testing it has only not worked once. could be great,3,2,1.23,2018-12-18 18:30:59,"Hi Rob, Tasks is a community driven hobby project of mine with the most popular suggestions added over time. I will add your suggestion to my list for future improvements. I hope this helps, Steve",2018-12-18 22:19:01,most_relevant,com.tasks.android +Kds52x,https://lh3.googleusercontent.com/-QxoZjQ9Z2-s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP2chDadpcRNTEUNHvezLio71jCwQ/photo.jpg,I liked it but the due date you can't change only the due time. Also getting the feature up for the due time is hard enough so going to try a different app.,3,0,1.21,2018-11-29 17:05:02,"Hi, to change the data and time simply tap them. I have made this a little easier in the next update. I hope this helps, Steve",2018-11-29 21:13:49,most_relevant,com.tasks.android +桜の花弁,https://lh3.googleusercontent.com/a-/AOh14Gi6gmTn-LxwtI0PufTfBgMt-pG_2mIVOKT-2V46yg,"Nie ma możliwości ustawienia wyprzedzenia przypomnienia ani zwiększenia liczby przypomnień - dla mnie to wada. Poza tym OK. The application is basically OK, but it is not possible to edit reminders. I would like to be able to set several reminders for one event at different times in advance. It would be good to have this option in the settings to set the default reminder advance.",3,1,1.23,2019-01-05 16:59:15,"Thanks for your extra info. Tasks is a community driven hobby project fo mine with the most popular suggestions added over time. I will add your suggestions to my list for future improvements. In the meantime, you could duplicate a task to have multiple reminders. I hope this helps, Steve",2019-01-06 09:11:53,most_relevant,com.tasks.android +Benjamin Carlson,https://lh3.googleusercontent.com/a-/AOh14Ghiehe108-mypJQpmFBkUSpyyOUtZLktKjXdO3akQ,it would be nice if they had the option to list tasks from top down instead of down up where your first task is at the top instead of at the bottom,3,0,1.25.1,2019-04-13 17:50:45,"Hi Benjamin, simply change the setting ""Where should new tasks be inserted"". I hope this helps, Steve",2019-04-13 18:00:45,most_relevant,com.tasks.android +Joanne Placido,https://lh3.googleusercontent.com/a-/AOh14GgjywzN480f_dvBjVS0xtPzPCPyvjxBzL9fYQofOg,"From the reviews, this app sounds awesome. Unfortunately, I can't use it because I need an app that syncs with Google Tasks.",3,0,1.20.3,2018-09-17 03:02:31,Hi Joanna. Apologies Tasks was not for you. Steve,2018-09-17 13:50:25,most_relevant,com.tasks.android +Kai Xuan,https://lh3.googleusercontent.com/a-/AOh14GiBhfnu4I_5lCfZ5ZoMlE0kLyXf0x0ddZEdkc4cY8g,it has reminders but would be great to show the due date as my reminders are often days before instead of on the due date itself and what heading it was put under so know which project's task it is.,3,1,1.26,2019-05-09 00:52:44,"Hi Kai, I'm not 100% sure I understand. Maybe you could contact me directly with more details? Maybe a screenshot would help? Thanks, Steve",2019-05-09 07:33:28,most_relevant,com.tasks.android +Jane Smith,https://lh3.googleusercontent.com/a-/AOh14GiH4xOIxrB02OqA3ONMA_RI6rgYRUb-iIt6PV-A,"I like the app but I'm not getting notifications of reminders. Have checked all the settings, might be that my phone's too old to be fully compatible",3,1,1.26,2019-04-29 19:33:45,"Hi Jane, apologies you're having an issue with my app. Unfortunately some manufacturers add very aggressive power saving to their devices. This can interfere with the standard Android alarm manager functions. Please check all power optimisation settings related to Tasks app. I hope this helps, Steve",2019-04-29 19:40:54,most_relevant,com.tasks.android +N T,https://lh3.googleusercontent.com/-TjFumMAd_CM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPUSRoO3eltdTctjWDTDHPAV7Bv7Q/photo.jpg,"sub tasks should be possible to leave unticked - for instance I might have put the bins out, but not replaced bin bags. on your apo, if I tick the main task, it assumes I have done the sub task.",3,0,1.30,2019-07-26 06:23:09,"Hi, apologies my app was not designed specifically for you. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. Knowing how my app works, you could simply make them all tasks in a sub list instead? How you organise yourself inside my app is up to you. I hope this helps, Steve",2019-07-26 07:14:49,most_relevant,com.tasks.android +Chris Devl,https://lh3.googleusercontent.com/-WtmAP57slhs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMlvk5Q1zzjjGjatGvvLDfZa-KtAQ/photo.jpg,Great app but tried backing up and restoring for a new phone and got a version mismatch error with no option to convert it. No mention of this beforr backing up. Disappointing.,3,5,1.29,2019-07-29 19:32:19,"Hi Chris, apologies you're having an issue. Tasks is a community driven hobby project of mine. It is offered for free without advertising and simply relies upon donations and my spare time to move forward. If you have a backup you have never lost your data, simply contact me directly and I will help you restore it. I hope this helps, Steve",2019-07-29 19:57:53,most_relevant,com.tasks.android +Stan Rohrer,https://lh3.googleusercontent.com/-qvcbAvNES10/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJONgS-M4hI1AEcnFf_FXZAtNyA2yw/photo.jpg,I couldn't find a way to link to Google Tasks. That is my first priority so I have data backup and desktop list edits.,3,1,1.30,2019-08-08 00:39:03,"Hi Stan, I do not claim this feature on the PlayStore. Why do you think it is supported? Tasks is a community driven hobby project of mine with the most popular suggestions added over time. All features are offered for free without advertising. I could add it in a future update if that helps? Thanks, Steve",2019-08-08 07:43:26,most_relevant,com.tasks.android +Olanrewaju Olasoju,https://lh3.googleusercontent.com/a-/AOh14GjJkirEy93Gpdbfvi-EslD9fPolpzgOltELKUPbHQ,"I love the app, but you cannot add file to your task or schedule, this lack of ability to add file on such good app make it incomplete, I could have rated it 5",3,0,1.33.3,2019-10-07 20:44:05,"Hi Olanrewaju, Tasks is a community driven hobby project of mine with the most popular suggestions added over time. All features and support are offered for free without advertising. The project simply relies on donations and my spare time to move forward. This has been a popular suggestion and so will be added in a future update. Regards, Steve",2019-10-08 07:30:07,most_relevant,com.tasks.android +Brianna Ayala,https://lh3.googleusercontent.com/-JxrTUudioYA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNynX14I84olYFXH-pbNWfth-kN0A/photo.jpg,It doesn't reset or set you reminders but it helps,3,0,1.34.4,2019-11-10 19:40:28,"Hi Brianna, yes Tasks does. By default when you receive a notification/alarm the date and time will automatically increment to the next occurrence. If you're having an issue you could have done me the courtesy of contacting me directly. I hops this helps, Steve",2019-11-10 20:32:33,most_relevant,com.tasks.android +Christian Macalalad,https://lh3.googleusercontent.com/a-/AOh14Gjp4EzWdip6uvhGFhzk2isdb1zzrBvv3s_lBJZRdQ,"its a nice app, but I always accidentally deleting a task when scrolling side to side. please remove the delete feature when scrolling between tasks. thanks",3,0,,2019-06-23 21:04:03,"Hi Christian, simply disable the setting ""Swipe to delete"". This is also mentioned in the FAQs: https://mytasksapp.com/help/faqs. I hope this helps, Steve",2019-06-23 21:27:12,most_relevant,com.tasks.android +Kimberley Kute,https://lh3.googleusercontent.com/a-/AOh14GhAGiCvYdD1oefQnDKmg9uPjBGZ0euVX-Ssf3x6,Easy to use and keep my tasks in check. Love that I can have different sub tasks for different projects though i wish they could vbe color coded so as to differentiate them,3,0,1.33.3,2019-09-14 10:19:41,"Hi Kimberley, this is possible. When you create each new parent list (project) you can choose the color. This color is then used to color coordinate all tasks etc. associated with that list. Is this what you meant? Thanks, Steve",2019-09-14 10:42:18,most_relevant,com.tasks.android +Veronika Vixon,https://lh3.googleusercontent.com/a-/AOh14Ggox2WVqucHb2-LMtT79h27hS4ZJMThnkJzMm9O,has good features although takes a very long time to figure out how the lists work.,3,0,1.28,2019-07-01 08:40:07,"Hi Veronika, what did you find too complicated? There is help in the main menu and context based help when you first install Tasks app. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It is offered for free without advertising. What would you change to help future new users? Thanks, Steve",2019-07-01 09:03:26,most_relevant,com.tasks.android +Alexander Kerner,https://lh3.googleusercontent.com/a-/AOh14GjyMbZGD6zsIG09MzAi8dE9YkG3hAl4FeFkHXGdEcw,"looks very good, But i would love to see cloud sync, for example with google tasks.",3,0,1.23,2019-01-09 08:51:19,"Hi Alexander. Unfortunately Google Tasks sync is not possible as their data model is far too simplistic and would limit functionality and future development. However, Tasks is community driven hobby project of mine. And so I am currently working on server code to enable cloud backup, device to device sync and list sharing. I hope this helps, Steve",2019-01-09 09:20:05,most_relevant,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Could be easier to set up and save notes. Was confusing at first but a good app,3,0,1.21,2018-10-12 23:48:11,"Hi, apologies you found my app confusing. Could you contact me with any suggestion to help future users. Thanks, Steve",2018-10-13 11:12:22,most_relevant,com.tasks.android +Mac Schaff,https://lh3.googleusercontent.com/a-/AOh14GivixhVEZwi1TW4uuQ_oDgZMSjI3G9sTZvBEjBnGA,I miss an option for recurring tasks like do something every 3 days where if I check it a day later that automatically shifts all following tasks by one day.,3,0,,2018-10-02 10:10:59,"Hi Mac, to create a recurring task simply add a date and time (next occurrence), enable the reminder, give it a repeat e.g. every 3 days and save. I hope this helps make Tasks a 5 star app for you. Thanks, Steve",2018-10-02 10:28:08,most_relevant,com.tasks.android +Neda Omrani,https://lh3.googleusercontent.com/-V4JRFZKJuyQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPPahu_TfcmpHrj8CXe76bN3OK30Q/photo.jpg,"works great! easy to use, but I wish I had a daily organizer",3,0,1.28,2019-07-07 17:23:14,"Hi Neda, you have a couple of options. Either enable the calendar view in settings or create filtered lists (main menu) and tailor them to show the specific tasks you want. I hope this helps, Steve",2019-07-07 17:27:14,most_relevant,com.tasks.android +Santosh S,https://lh3.googleusercontent.com/-zZWpOxqgfv4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOOFWFITzrPbg4zIRaQ_9JObzvoBQ/photo.jpg,"it's listing the same tasks after some time even after its checked and completed, in short it's listing the status of tasks",3,0,1.30,2019-08-01 16:54:51,"Hi Santosh, is it a recurring task? If so they are ready at midnight ready to be completed again. Is this what you meant? I hope this helps, Steve",2019-08-01 17:40:59,most_relevant,com.tasks.android +Mangaxris K,https://lh3.googleusercontent.com/-pMD3bzWdnnc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOG7QSAARk06z61S3ZzTY2qkN3n1A/photo.jpg,I'm find this app useful but I'm trying to use it on my desktop? Is there a way to check off items on my laptop in this app? I will change my score once answered Thanks,3,0,1.33.3,2020-03-08 16:14:53,"Hi Mangaxris, this is not currently.ppssible. However, Tasks is a community driven hobby project of mine with the most popular suggestions added over time. This has been very popular and so I am currently working on a browser based web app which will be available in the coming weeks. I hope this helps, Steve",2020-03-08 17:39:17,most_relevant,com.tasks.android +harry sheng,https://lh3.googleusercontent.com/a-/AOh14GhQKKqvfytCi8oCleFEGiWbyn6FTwltmgAHAkJo,"It consumes too much (1/3 of the) battery, otherwise it is great.",3,0,1.21,2018-11-15 03:04:43,"Hi Harry, apologies you're having an issue. Can you contact me directly with more details of how you are using my app? II've not seen this on any of my test devices and you are the first user to report this. Thanks, Steve",2018-11-15 08:51:43,most_relevant,com.tasks.android +samm sssja,https://lh3.googleusercontent.com/-KBjNIqzC5so/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNlmik7-iIpY_fmAhjAA-LYC0h9iw/photo.jpg,"wish the reminder have had a repeat function(e.g. every week), so I don't have to recheck the tasks",3,0,1.26,2019-05-13 00:25:45,"Hi Samm, this is possible, simply add a date and time, (next occurrence) and add a repeat e.g. weekly. For more help checkout my website: https://mytasksapp.com/help/faqs. I hope this helps, Steve",2019-05-13 07:13:38,most_relevant,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"it's a great way to make a to do list, but it never gives reminders when I want it to.",3,0,1.25,2019-02-20 14:57:41,"Hi, apologies you're having an issue with my app. Asus add very aggressive power saving to their devices. You need to change config - battery - boot manager - downloaded apps - activate the ""Tasks"" app. Help available on my website: https://mytasksapp.com/help/faqs. I hope this helps, Steve",2019-02-20 15:12:54,most_relevant,com.tasks.android +Rain Cramer,https://lh3.googleusercontent.com/a-/AOh14GhlVucEIgu7u-Vyvd-h8OjgrcSZBUzIz5oZ0S73Jc4,"Just Downloaded so far great, but I'm looking for an application I can use between two or more, i.e. minors etc. Where I can send a task via messenger for example. does this app upload if the other user also has Task?",3,0,1.25.1,2019-04-14 19:34:40,"Hi, this is not currently possible. Tasks is a community driven hobby project mine with the most popular suggestions added over time. It is offered for free without ads. This has been a very popular suggestion and so I am currently working on server code to enable list sharing, device to device sync and cloud backup. I hope this helps, Steve",2019-04-14 19:41:12,most_relevant,com.tasks.android +abividal,https://lh3.googleusercontent.com/-MbBQSQnFv7c/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPbHA5SqDvO6RIjLpxANzW3WECwIA/photo.jpg,It was good now alatm sound of tasks is full but sound is low only this app i have seperate alarm volume and its full,3,0,1.33,2019-09-04 05:09:05,"Hi, unfortunately Samsung devices don't have a separate alarm volume (they have removed it from vanilla Android) on newer device. Unfortunately Tasks is a hobby project of mine and I cannot afford to buy every device to test with. Therefore I had to use Media volume, simply turn this up. I hope this helps, Steve",2019-09-04 08:05:48,most_relevant,com.tasks.android +Allian Abogado,https://lh3.googleusercontent.com/-Tm5agEok2fs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPKm2LUaKrE9TQLB2KI7F0zW3LRXQ/photo.jpg,"No need for floating button on widget i think, add button on widget needs to be smaller. Also, possible to make the widget until 2x2?",3,0,1.20.3,2018-09-26 13:34:09,"HI Allian, tasks is a community driven project of mine with the most popular suggestions added over time. I will add yours to my list. Steve",2018-09-26 15:54:56,most_relevant,com.tasks.android +Naqiyba Thomas,https://lh3.googleusercontent.com/a-/AOh14GhQJXlRfxUifJ-UO3PxySbw3s_4ExIDLwNtFkppqg,the app is ok . it could be simpler to work. i had to fiddle around a bit and some persons may not have the patience to do so.,3,0,1.25.1,2019-04-03 09:12:44,"Hi Naqiyba, could you give me more details so I may improve simplicity for all users? For more help checkout my website: https://mytasksapp.com/help. I hope this helps, Steve",2019-04-03 13:12:49,most_relevant,com.tasks.android +Michael Lucas,https://lh3.googleusercontent.com/a-/AOh14GjobmET2iYGd1vZPX-s9YREnKYONM_8k5tYSq994g,"wish It would link to my calendar so I can create, edit and complete in one location....that would make it 5 stars",3,0,1.25.1,2019-03-24 17:13:31,"Hi Michael, a great suggestion! Tasks is a community driven hobby project of mine with the most popular suggestions added over time. I will add this to my list for future improvements. I hope this helps, Steve",2019-03-24 18:11:05,most_relevant,com.tasks.android +Jim M,https://lh3.googleusercontent.com/-hUSCu6qhxH8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOi-MxFgQs9bIJrdfTQzK2MscHihw/photo.jpg,Nice but am looking for something that can synchronize with Google Tasks,3,0,1.31,2019-08-25 05:17:07,"Hi Jim, I do not claim this as a feature on the PlayStore! However, Tasks is a community driven hobby project of mine with the most popular suggestions added over time. All features are offered for free without advertising. It simply relies on donations and my spare time. I will add your suggestion to my list. I hope this helps, Steve",2019-08-25 09:15:23,most_relevant,com.tasks.android +Admire V Hunt,https://lh3.googleusercontent.com/a-/AOh14Gjg-J2NltOYtaktR4mKHlrkImxWJoU36ueacwJ7ARg,"How soon until the list sharing is available? If soon, you have just earned a small business customer.",3,0,2.2.0,2020-02-23 21:29:41,"Admire, Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It simply relies on donations/subscriptions & my spare time to move forward. Therefore, I cannot give dates for features. I am currently working on the browser based web app and list sharing. Maybe you could show a little more support? Steve",2020-02-24 11:28:55,most_relevant,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,nice app the only challenge have seen is that sometimes the notifcation alarm does not work,3,0,1.25,2019-03-02 20:11:14,"Hi, apologies you're having an issue with my app. Unfortunately some manufacturers add very aggressive power saving to their phones which can interfere with the standard android alarm manager. Please check all power optimisation settings related to Tasks app and enable where appropriate. I hope this helps, Steve",2019-03-02 21:35:37,most_relevant,com.tasks.android +bhintuna vaidya,https://lh3.googleusercontent.com/a-/AOh14GimfQTLc9fQr1qOsHmOVMgbxfHT-i8a52XWQ-7L,This is really a great app. I'm just finding difficult to put tasks in home widgets. Could you tell me how to do this?,3,0,1.25,2019-02-13 16:49:13,"Hi Bhintuna, please check you email for help :) Steve",2019-02-13 18:00:18,most_relevant,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Easy to use, simple functionality but well done",3,0,1.25,2019-02-27 08:33:46,"Hi, really glad you're finding my app useful. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. What would help make my app a 5 star app for you? Thanks, Steve",2019-02-27 09:27:52,most_relevant,com.tasks.android +Fuzzy D Pozzy,https://lh3.googleusercontent.com/a-/AOh14GhwujTqgXe837eaoWO6NBgXZaCQhKnMoy9cJoTK,"its awesome but needs an improvement,it would be nice if i could visit my notes and edit my notes online in my pc not just through the phone",3,0,1.27,2019-06-16 08:33:14,"Hi, this is not mentioned in the PlayStore description. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. This has been a very popular suggestion and so I am currently working on server code to enable list sharing, cloud backup and a web app. I hope this helps, Steve",2019-06-16 08:38:17,most_relevant,com.tasks.android +Francyne Tardif,https://lh3.googleusercontent.com/-iWYt1HolBD8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMMGNWXMGIEm8X8k2ZBxVdnNo9PDQ/photo.jpg,Good app for task but should be linked with reminders.,3,0,1.31,2019-08-23 03:08:17,"Hi Francyne, this is possible. To create a reminder simply add a date and time to a task. For more complex repeating reminders simply add a repeat e.g. daily. And for more help checkout the ""Help"" button in the main menu. I hope this helps, Steve",2019-08-23 07:16:19,most_relevant,com.tasks.android +Rob Saville,https://lh3.googleusercontent.com/a-/AOh14GhRuHaQ2fZ88Z_PdMvjWSKrQWrBJfoYy1KvoPm1,I found this app difficult to use. That's just my personal opinion. I uninstalled it and got a different one that is easier to use.,3,0,,2019-08-21 08:40:53,"Hi Rob, apologies my app was too complicated for you. Tasks is a community driven hobby project of.mine with the most popular suggestions added over time. All features are offered for free without ads. Maybe you could be more specific, what would you change? Thanks, Steve",2019-08-20 18:43:04,most_relevant,com.tasks.android +Barrie Stricker,https://lh3.googleusercontent.com/-Iwg97p5XTWE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMjPdZf0VP4ODLbUmEWE9yVhV2zXA/photo.jpg,Quick but need moree practice to add sub lines to proper List,3,0,1.26,2019-05-21 12:57:06,"Hi Barrie, I'm not 100% sure I understand your issue? For help getting started checkout the help button in the main menu. For more detailed help with a specific issue please contact me directly. If you're not having an issue, Tasks is a community driven hobby project of mine. What would help make my app a 5 star app for you? Thanks, Steve",2019-05-21 13:01:43,most_relevant,com.tasks.android +Helen Bufton,https://lh3.googleusercontent.com/-E-FbMKufng4/AAAAAAAAAAI/AAAAAAAAyOg/AAKWJJMqsESU6kEKukV4vXYXbisyRI-dIQ/photo.jpg,"just downloaded. seems to be a simple task / to do list that I was looking for. QUESTION. how do I get the app to be an onscreen Widget, which is shown on the screen shots above?? Thank you",3,1,1.26,2019-04-25 11:34:04,"Hi Helen, to add it on most devices: long press on your home screen -> select widgets -> drag and drop the Tasks widget on to your home screen. Use the list button to select a list. Note the widget is dynamic and can be resized to meet your needs. You may also have multiple widgets displaying different lists. I hope this helps, Steve",2019-04-26 07:24:08,most_relevant,com.tasks.android +Alton Moore,https://lh3.googleusercontent.com/-gwJUROSd2xQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMQlEYndH1XTBk7B8wIobaXDENFZQ/photo.jpg,"Good for notes, needs export, email options",3,0,1.21,2018-11-29 04:19:38,"Hi Alton, you can export using the build in backup feature (app settings). You can share lists (share icon at the top) with gmail and email them. I hope this helps, Steve",2018-11-29 09:21:04,most_relevant,com.tasks.android +Kim Hansen,https://lh3.googleusercontent.com/a-/AOh14Ghsm7PEljEfDshj2S3QpQkoNAnRmLFm0YUNf1zH8A,Implement collaborative lists please! so crucial.,3,0,1.25.1,2019-04-19 19:52:56,"HI Kim, Tasks is a community driven hobby project of mine with the most popular suggestions added over time. This has been a very popular suggestion and so i am currently working on server code to enable list sharing, device to device sync and cloud backup. Tasks relies on its kind users, donations and my spare time to move forward. Thanks, Steve",2019-04-20 08:29:57,most_relevant,com.tasks.android +Jesse DeMarcus,https://lh3.googleusercontent.com/-PPj6mRG8pI4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOQfzqTVXAjBovVZzXEgTclTN77Ig/photo.jpg,its a great app but need to add a version were you can restore your notes if lost my app got erased by accident and i dont have any of my notes saved please consider adding to the app,3,0,1.25,2019-02-13 08:45:17,"Hi Jesse, there is a backup/restore feature in settings. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. Therefore, I am currently working on server code to enable cloud backup. I hope this helps, Steve",2019-02-13 09:20:50,most_relevant,com.tasks.android +Priscilla Connell,https://lh3.googleusercontent.com/a-/AOh14Ggx0eqm4viQ1PDAuEwoTbmtuogd2PV0RNXscqZvfA,I have not been using app for very long. Therefore the 3 star rating. After some use I will return to rate again.,3,0,1.33,2019-09-10 10:54:09,"Hi Priscilla, For help getting started checkout the main menu ""Help"" button. Tasks is a community driven hobby project fo mine. All features are offered for free without advertising. It simply relies on donations and my spare time to move forward. Maybe you would consider being a little more supportive instead of pessimistic. Thanks, Steve",2019-09-10 11:21:36,most_relevant,com.tasks.android +Jewél Walvatne,https://lh3.googleusercontent.com/a-/AOh14GgNsBGZTTJbfAyaZmIzNA-CjpoSdX9Tx-UMQRJBt_8,I didn't like the way the lists would set up...,3,0,,2019-02-17 02:31:21,"Hi Jewél, could you be more specific? Tasks is a community driven hobby project of mine with the most popular suggestions added over time. How could I improve my app? Thanks, Steve",2019-02-17 09:25:41,most_relevant,com.tasks.android +Nadjib Benkhellat,https://lh3.googleusercontent.com/-zNO5jZqZPRE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMOV8-pYzADUi5-imxXGYk9YE15kg/photo.jpg,practical and easy to use,3,0,1.25.1,2019-04-23 14:58:49,"Hi Nadjib, really glad you're finding my app useful. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. What would help make my app a 5 star app for you? Thanks, Steve",2019-04-23 15:23:28,most_relevant,com.tasks.android +Yana Valasatava,https://lh3.googleusercontent.com/-rEcZoZfyPgw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOY9gFDEEUTaN-bPUp0l_zedayDmg/photo.jpg,Nice app but UX can be improved.,3,0,1.28,2019-07-12 15:24:35,"Hi Yana, Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It is offered for free and simply relies upon its wonderful users, donations and my spare time to move forward. Maybe you could be more specific? Thanks, Steve",2019-07-12 17:18:53,most_relevant,com.tasks.android +Doug Bromley,https://lh3.googleusercontent.com/a-/AOh14GjXb41-zlMDx9rUpJ38RDLY1rrr6dv1b-3gc7HpxQ,"Lacking in features compared to competition like TickTick, Todoist, etc",3,1,1.23,2019-01-13 06:42:56,"HI Doug, Tasks is a community driven hobby project of mine with the most popular suggestions added over time. Could you give a few more details of what you would like to see? Thanks, Steve",2019-01-13 09:50:06,most_relevant,com.tasks.android +sarah aamarouss,https://lh3.googleusercontent.com/a-/AOh14GigaiYRda-s-0NCcEO-fVNlEz0X-zcDdBjEeSMe,i am still testing it out but so far do good... i like that there is a possibility to organize tasks according to thier importance and nature !,3,0,1.28,2019-07-08 02:02:56,"Hi Sarah, really glad you're finding my app useful. For help please checkout the help button in the main menu. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It is offered for free without advertising. What would help make my app a 5 star app for you? Thanks, Steve",2019-07-08 07:11:22,most_relevant,com.tasks.android +Aditi Mantri,https://lh3.googleusercontent.com/a-/AOh14Ghoi_DgVQ0GscxHvW15or7K8Q93GN4roMDcscPIWg,Amazing and helpful,3,0,1.34.1,2019-11-10 10:06:28,"Hi Aditi, really glad you're finding my hard work helpful. Tasks is a hobby project of mine with the most popular suggestions added over time. All features and support are offered for free without advertising. It simply relies on donations and my spare time. What would help make my app a 5 star app for you? Thanks for your support, Steve",2019-11-10 22:14:43,most_relevant,com.tasks.android +C Yumol,https://lh3.googleusercontent.com/a-/AOh14GgX9EmElLR_JertOlE5XCLi94C15Aw_fk2mqVpU,Simple and easy to use.,3,0,1.20.3,2018-09-15 03:23:46,"Hi, thanks for your positive feedback. What would help make it a 5 star app for you? Thanks, Steve",2018-09-15 19:26:23,most_relevant,com.tasks.android +Sana Sardar,https://lh3.googleusercontent.com/-cOWxdstb5Z4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPOwBC7B_YzyQrzenjUEJIhlw_mTQ/photo.jpg,Gets a on the phone list of things to do done,3,0,2.0.0,2019-11-23 15:25:39,"Hi Sana, really glad you're finding my app useful. Tasks is a hobby project of mine with the most popular suggestions added over time. All features and support are offered for free without advertising. It simply relies on donations and my spare time. What would help make my app a 5 star app for you? Thanks for your support, Steve",2019-11-23 15:31:52,most_relevant,com.tasks.android +Rosanna Lopez,https://lh3.googleusercontent.com/a-/AOh14GgXeGkEQU9aTVZJUcf3YUlkZSUmJSZ1tLh6OTHfYQ,"love it , simple to use",3,0,1.25.1,2019-03-25 21:02:16,"Hi Rosanna, really glad you're finding my app useful. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. What would help make my app a 5 star app for you? Thanks, Steve",2019-03-25 21:44:50,most_relevant,com.tasks.android +Elizabeth Bolton,https://lh3.googleusercontent.com/a-/AOh14GjaFihJDW6t3tSg5-PwfQdQMen6gaaOpq72HaVc,"I wish it had a widget, but I love it otherwise.",3,0,,2020-01-05 05:55:01,"Hi Elizabeth, Tasks includes a widget for free. I'm not sure how you missed this, it is in the online getting started guide (available through the ""Help"" button in the main menu): https://mytasksapp.com/help#widget I hope this helps, Steve",2020-01-05 11:06:05,most_relevant,com.tasks.android +"Michael Flint, SR",https://lh3.googleusercontent.com/a-/AOh14GhV0TncXrB6ge-vVrX_FFZQZBwjM31Zs4roMnL24hM,Nice app but doesn't really have what I'm looking for.,3,0,1.30,2019-07-27 07:36:07,"Hi Michael, apologies you didn't like my app. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It is offered for free without adverts and simply relies on donations and my spare time. Could you be more specific? What didn't you like? Thanks, Steve",2019-07-24 08:08:49,most_relevant,com.tasks.android +Hafeez Shaik,https://lh3.googleusercontent.com/-vaIa1pYaIHY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOGw4LfxhzIXrkIz90wxRvJq5fH1g/photo.jpg,Unable to download,3,0,,2019-10-30 17:51:33,"Hi Hafeez, can you be more specific? What are you unable to download? Tasks is self contained and all you need to download is the app from the PlayStore. Please email me with more details at tasks.list.app@gmail.com. Thanks, Steve",2019-10-30 18:17:57,most_relevant,com.tasks.android +Alistair Wood,https://lh3.googleusercontent.com/-Zck8vFpFFxU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMXRslOcyv3GtAj56zg1tdnUHBduA/photo.jpg,Needs a lot more sophistication,3,0,2.2.0,2020-03-07 09:18:50,"Hi Alistair, apologies you didn't like my app. What sophistication do you require? Tasks is a community driven hobby project of mine with all non cloud features offered for free without advertising. It is designed to be as simple or complex as you require and simply relies on donations and my spare time to move forward. Thanks, Steve",2020-03-07 09:26:35,most_relevant,com.tasks.android +Claudia Olenici,https://lh3.googleusercontent.com/a-/AOh14Gjw01gg7h_pBc95z_3QGSHYgJi4KqFNSs-MpBWrnvw,I like it it's very reorganizing,3,1,1.24,2019-01-18 07:29:19,"Hi Alizebeth, really glad you're finding my app useful. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. What would help make my app a 5 star app for you? Thanks, Steve",2019-01-18 08:16:57,most_relevant,com.tasks.android +Imana Jyoti,https://lh3.googleusercontent.com/-WRak3UXQYBE/AAAAAAAAAAI/AAAAAAAAEpo/AAKWJJNqq6gNLFzJItLDZ-3izXT_uXpnpg/photo.jpg,its good nd loved it but need to more developed,3,0,1.26,2019-05-08 22:35:17,"Hi Imana, really glad you're finding my app useful. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. What would help make my app a 5 star app for you? Thanks, Steve",2019-05-09 07:28:03,most_relevant,com.tasks.android +April Chen,https://lh3.googleusercontent.com/a-/AOh14Ggkp2l6F_P_2bA7MzDg8GPWzHnBpd5MnzEqoLFI8A,How do I set a daily / weekly repeating task?,3,0,1.23,2019-01-03 02:09:11,"Hi April, simply add a date and time, enable the reminder, set the repeat to daily/weekly and save. For more support checkout my website: https://mytasksapp.com/help/faqs. I hope this helps, Steve",2019-01-03 08:16:00,most_relevant,com.tasks.android +Mr. G,https://lh3.googleusercontent.com/-R8Wh9oNiqy8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN4wrB4cJyHjDxfv3ygoXT2qmOPCA/photo.jpg,Lower rating until I use it more -just started,3,0,1.33.3,2019-09-11 13:15:04,"Mr G, that's a very pesimistic view. Tasks is a community driven hobby project of mine. All features and support are offered for free without advertising. It simply relies on donations and my spare time. Maybe you could be more supportive of independently developed apps. For help checkout the Help button in the main menu. I hope this helps, Steve",2019-09-11 13:47:27,most_relevant,com.tasks.android +task Time,https://lh3.googleusercontent.com/-5vpsdfRRsEM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPDANq6oXRPef0TJyg0g3jTCyTXEA/photo.jpg,How to view the App on laptop? just like Wunderlist,3,0,,2019-08-16 07:15:48,"Hi, this is not currently possible. However, Tasks is a community driven hobby project of mine. All features are offered for free without advertising. This has been very popular and so I am currently working on server code to enable device to device sync, cloud backup and list sharing. Once complete I will add a browser based web app. Steve",2019-08-16 07:57:08,most_relevant,com.tasks.android +Marc,https://lh3.googleusercontent.com/-2zVaB5VjffM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNvKLbrNl536w9GKPgbC2Exbon0wg/photo.jpg,fun and easy,3,0,1.25.1,2019-04-28 03:51:27,"Hi Marc, really glad you're finding my app useful. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. What would help make my app a 5 star app for you? Thanks, Steve",2019-04-28 09:23:17,most_relevant,com.tasks.android +Basile khant,https://lh3.googleusercontent.com/-L5YB_6myZhU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOqZl_6jl8Mgx6U2RdKvG-ZL0X5Iw/photo.jpg,Sufficient for my needs simple to use,3,0,1.33.3,2019-09-25 05:19:05,"Hi Basile, really glad you're finding my app ""sufficient"". Tasks is a hobby project of mine with the most popular suggestions added over time. All features and support are offered for free without advertising. It simply relies on donations and my spare time. Maybe you could show a little support for independently developed apps. Steve",2019-10-05 17:47:11,most_relevant,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,great for keeping track of things,3,0,1.25.1,2019-03-23 14:52:15,"Hi, really glad you're finding my app useful. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. What would help make my app a 5 star app for you? Thanks, Steve",2019-03-23 15:41:21,most_relevant,com.tasks.android +Barbara Oliver,https://lh3.googleusercontent.com/-Ix0J7xsWMWo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOoiBwV0IUC87dNCKEMs6bntg3qyg/photo.jpg,"Used it twice, so far so good",3,0,1.34.4,2019-11-21 23:28:19,"Hi Barbara, really glad you're finding my app useful. Tasks is a hobby project of mine with the most popular suggestions added over time. All features and support are offered for free without advertising. It simply relies on donations and my spare time. What would help make my app a 5 star app for you? Thanks for your support, Steve",2019-11-22 09:16:31,most_relevant,com.tasks.android +Connie Mascelli,https://lh3.googleusercontent.com/-t12_w2PhwNk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOgiCz_no147p3OfZ-8LpCXDvddug/photo.jpg,easy to use,3,0,2.0.0,2019-12-16 12:58:26,"Hi Connie, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. It simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2019-12-16 13:44:23,most_relevant,com.tasks.android +Jim Prince,https://lh3.googleusercontent.com/-cAwfmc2k9eM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOao4-ybShFjW2bd-Vfl-VHY-zgOQ/photo.jpg,Got it for he to know do of do not do me to my do do an do gone by hi do you do of do is well your name is on the list for the next few days and I will be there at the same time I don't have a whole lot of time to get the kids to the gum Wall Street journal and send it to you when I get home I will send you the link to the video of the puzzle in my room you have for me to get the kids to the gum Wall Street journal and send it to you when I get home I will send you the link to the video of 🤩🤩,3,0,,2020-02-18 00:36:24,"Hi Jim, I'm not 100% sure I understand. This doesn't appear to be a review for my Tasks app. If you need a little help email me (tasks.list.app@gmail.com). Thanks, Steve",2020-02-18 08:08:00,most_relevant,com.tasks.android +RAJESH KUMAR JENA,https://lh3.googleusercontent.com/a-/AOh14GgUhdM7G4fRqe_xcxEQV_vo7kyg_e2s9wLLCTjPAg,add option to upload to drive,3,0,1.25,2019-03-01 07:18:37,"Hi Rajesh, currently there is a backup/restore feature in settings. This creates a tasks_backup.json file in /Download. This can be uploaded/emailed etc. This is a temporary feature as I am currently working on server code to enable cloud backup. I hope this helps, Steve",2019-03-01 08:13:09,most_relevant,com.tasks.android +Catherine Smith,https://lh3.googleusercontent.com/-hNnoaDC9DhA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPhoGIftOPxzBDmtR4oM_tGNSdfNQ/photo.jpg,Enjoying the app.,3,0,1.33,2019-09-04 20:20:34,"Hi Catherine, glad you like my app :) Tasks is a community driven hobby project of mine with the most popular suggestions added over time. All features are offered for free without advertising. It simply relies on donations and my spare time. Maybe you could show a little more support! What would help make my app a 5 star app for you? Thanks, Steve",2019-09-04 20:35:42,most_relevant,com.tasks.android +Rama Prasad,https://lh3.googleusercontent.com/-ioRNM4sMUgs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNYcluX5Q9DtW8mNo5nUfmXIu2iyA/photo.jpg,better to improve the app features,3,0,1.25.1,2019-04-19 18:40:43,"Hi Rama, really glad you're finding my app useful. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. What would help make my app a 5 star app for you? Thanks, Steve",2019-04-20 08:28:29,most_relevant,com.tasks.android +Islam S M Hasinul,https://lh3.googleusercontent.com/-VLakdNnNZt4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNoqf-IBNUVsKFGhC9bp34KPEE3VA/photo.jpg,Expecting better. Need alarm facilty to remind me in advance.,3,0,1.33.3,2019-09-25 11:04:59,"Hi, this is possible. Simply add a date and time to a task, set reminder type to alarm and save. There are also options to be reminded in advance. If you need help with basic functions checkout the ""Help"" button in the main menu. I hope this helps, Steve",2019-09-25 07:35:34,most_relevant,com.tasks.android +Don Kristt,https://lh3.googleusercontent.com/a-/AOh14Gh93z0MFrYrwRWtURu0MjCfoaUgGT9Jo3twgi3e,Stephen...can 2 people share a task list on their respective phones?,3,0,,2019-05-01 09:11:43,"Hi Don, unfortunately this is not currently possible. However, Tasks is a community driven hobby project of mine with the most popular suggestions added over time. This has been very popular and so I am currently working on server code to enable list sharing, cloud backup and device to device sync. I hope this helps, Steve",2019-05-01 10:02:54,most_relevant,com.tasks.android +Jacqui Plays,https://lh3.googleusercontent.com/-6DBBhic1ek4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMvAaVUx6ctoTTP6YtS81WoyXUjOQ/photo.jpg,Still exploring the app but so far so good,3,0,1.29,2019-07-13 06:59:45,"Hi Jacqui, really glad you're finding my app useful. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It is offered for free without advertising. What would help make my app a 5 star app for you? Thanks, Steve",2019-07-13 09:02:04,most_relevant,com.tasks.android +Deborah Trusson,https://lh3.googleusercontent.com/a-/AOh14GgkfV9jd_W_yeX-GBVr7dHo6OjVknNS7Mp8fPza,Still trying to get used to the app.,3,0,1.25.1,2019-03-28 04:01:26,"Hi Deborah, for some extra help getting started checkout my website: https://mytasksapp.com/help/getting-started. If you have any questions, just ask. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. Let mw know if there is anything that would make my app a 5 star app for you? Thanks, Steve",2019-03-28 08:01:51,most_relevant,com.tasks.android +Harold Herbin,https://lh3.googleusercontent.com/-AI3iUPlHaE4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNJpJ0dg7zpHlqjjb5AmTRGdY5pIA/photo.jpg,Helps me stay organized..,3,0,1.31,2019-08-16 21:22:25,"Hi Harold, thanks for your positive feedback :) Tasks is a community driven hobby project of mine with the most popular suggestions added over time. All features are offered for free without advertising and it simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2019-08-17 08:53:53,most_relevant,com.tasks.android +Brian B,https://lh3.googleusercontent.com/-eKNjZjtsWxY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP6bfrcaAORSpjCHO3IgtwY_nw2cg/photo.jpg,works pretty good so far,3,0,1.25.1,2019-03-26 18:16:18,"Hi Brian, really glad you're finding my app useful. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. What would help make my app a 5 star app for you? Thanks, Steve",2019-03-26 19:54:56,most_relevant,com.tasks.android +Eman Al Alili,https://lh3.googleusercontent.com/a-/AOh14GgCRbvPbQOvNS7XtMXqZiN9Ow0oV-0dMdb63o83th4,some time it's not working not reminding me,3,2,1.26,2019-05-21 06:50:11,"HI Eman, unfortunately some device manufacturers add very aggressive power saving to their devices which interferes with the standard Android alarm manager functions. Please check all power optimisation settings and enable Tasks app where appropriate. I hope this helps, Steve",2019-05-21 07:16:11,most_relevant,com.tasks.android +Vanya Graham,https://lh3.googleusercontent.com/a-/AOh14GguRexK1I1HWTqxNGXaCf5j4qh1DvK6-HGQ1WnAHw,just didnt use it..,3,0,,2019-02-10 12:16:24,"Hi Vanja, Tasks is a community driven hobby project of mine. What would help make my app a 5 star app for you? Thanks, Steve",2019-02-10 13:40:47,most_relevant,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,I am managing need a reminder,3,0,1.21,2018-11-30 04:41:57,"Hi, please see the new online help to add recurring reminders: https://mytasksapp.com/help/faqs. I hope this helps, Steve",2018-11-30 09:07:00,most_relevant,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,ok. its useful,3,0,1.24.2,2019-02-08 13:30:11,"Hi, really glad you're finding my app useful. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. What would help make my app a 5 star app for you? Thanks, Steve",2019-02-08 14:01:59,most_relevant,com.tasks.android +Elina Heininen,https://lh3.googleusercontent.com/-nP-Ti8rq-BU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPxU1Ni9Ch9Ia67sTl9q6ih93NWYA/photo.jpg,Not for me.,3,0,,2019-07-19 20:09:59,"Elina, my app is called Tasks, it is a task list app, things in it are called tasks. To create a grocery list simply add your items, what my app calls them (tasks) has no bearing on what they actually are (groceries). Tasks includes context based help at first, there is a help button (main menu) and I answer all emails. Did you look at these?",2019-07-19 14:31:17,most_relevant,com.tasks.android +Jensen Gooduuyn,https://lh3.googleusercontent.com/a-/AOh14GhAwkU1ASe4lz5r199nEuf4ZnbR7WD7OxwarBKNTw,edited review,3,0,2.1.0,2020-02-19 21:55:48,"Jensen, I'm not sure I understand? If you're having an issue you could simply email me (tasks.list.app@gmail.com). Tasks is a hobby project of mine with all features and support offered for free without advertising. If you have a suggestion giving a poor review is not the way to get what you want! Consider showing support for the software you use.",2020-02-19 21:51:03,most_relevant,com.tasks.android +ENDURANCE NOSA-ADAMS,https://lh3.googleusercontent.com/-njWVpSipEhs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNVVFy5FqfBXZG80S-0Htmu1GDfVA/photo.jpg,It was ok,3,0,2.0.0,2020-02-19 19:00:19,"Hi, apologies you didn't like my app. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-02-19 19:54:04,most_relevant,com.tasks.android +Jesse Yawn,https://lh3.googleusercontent.com/-vIscv-4FAww/AAAAAAAAAAI/AAAAAAAAB_E/AAKWJJMjvJ_8u21wDKSkPxGvz72Qw3cbxQ/photo.jpg,Great app,3,0,2.0.0,2019-12-22 18:44:21,"Hi Jesse, really glad my app is ""great"". Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. It simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2019-12-22 19:45:19,most_relevant,com.tasks.android +Zeinab Mohamed,https://lh3.googleusercontent.com/-zFpThN6zMBk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPSfIjSVn5c85j43tu0EfN_W9_lIw/photo.jpg,Good,3,0,2.0.0,2019-12-30 06:55:17,"Hi Zeinab, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. It simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2019-12-30 10:28:09,most_relevant,com.tasks.android +Pragya Raghuwanshi,https://lh3.googleusercontent.com/-XqyPBDVSGjE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNzxbKeY3Uf9G1vMY8mXlK5XJSEdA/photo.jpg,Good,3,0,2.0.0,2020-03-28 04:54:58,"Hi Pragya, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. It simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-28 10:23:31,most_relevant,com.tasks.android +Vinutha Lava,https://lh3.googleusercontent.com/-cVLKpDSw3yQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNksrCcNsXTxnN96ruga_3qtl-B-w/photo.jpg,Good,3,0,1.34.4,2019-11-29 04:20:44,"Hi Vinutha, really glad you're finding my hard work ""Good"". Tasks is a hobby project of mine. All features and support are offered for free without advertising. It has taken hundred of hours to write and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks for your support, Steve",2019-11-29 09:22:10,most_relevant,com.tasks.android +Monalisa Madueke,https://lh3.googleusercontent.com/-tDPfCtfA0P4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNEIl0YzSykXsi_BP20ENP0MrdNfA/photo.jpg,Excellent app,3,0,1.31,2019-10-02 05:50:14,"Hi Monalisa, really glad you think my app is excellent. Tasks is a hobby project of mine with the most popular suggestions added over time. All features and support are offered for free without advertising. It simply relies on donations and my spare time. What would help make my app a 5 star app for you? Thanks for your support, Steve",2019-10-02 07:15:09,most_relevant,com.tasks.android +Anatolii Lebedev,https://lh3.googleusercontent.com/a-/AOh14GglDiiWweVaXwwvt7ZNuwH1gB2Y7jRJl0WOdry6Og,"Сильно не хватает возможности поделиться списком, например покупок, с семей",3,0,1.30,2019-08-11 11:23:27,"Hi Anatolii, I do not claim this as a feature in the PlayStore! However, Tasks is a community driven hobby project of mine with the most popular suggestions added over time. this has been very popular and so i am currently working on server code to enable device to device sync, cloud backup and list sharing. I hope this helps, Steve",2019-08-11 13:18:03,most_relevant,com.tasks.android +Christine White Lightning,https://lh3.googleusercontent.com/-eseiKC6osjA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNWMC6aL-d7LGxnE2A5RIQ2fC0zhg/photo.jpg,awesome,3,0,1.30,2019-07-26 00:08:27,"Hi Christine, your review is a little confusing? Really glad you're finding my app useful. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. All features are offered for free without advertising. What would help make my app a 5 star app for you? Thanks, Steve",2019-07-26 07:06:11,most_relevant,com.tasks.android +Chepkoech Kiptoo,https://lh3.googleusercontent.com/a-/AOh14Gi_MKGcC96stfzP6lKjWpXW9vQjDXXI_p-zKtKGjg,still testing,3,0,1.29,2019-07-15 19:19:11,"Hi Chepkoech, really glad you're finding my app useful. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It is offered for free without advertising. What would help make my app a 5 star app for you? Thanks, Steve",2019-07-15 19:29:44,most_relevant,com.tasks.android +charles adams,https://lh3.googleusercontent.com/-TAjUgZvjK5U/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO66aq2UUJDOBh1WZcQwMFF_QG_KQ/photo.jpg,still testing,3,0,1.25.1,2019-03-19 12:37:35,"Hi Charles, Tasks is a community riven hobby project of mine. For help getting started checkout my website: https://mytasksapp.com/help/getting-started. If you need more help, just ask :) Steve",2019-03-19 13:47:39,most_relevant,com.tasks.android +Sofia K,https://lh3.googleusercontent.com/a-/AOh14GgZw0x9G_-M4s5ZuXJJucndJgWjQ7DKdz7q1Lf-,useful app,3,0,1.25.1,2019-04-05 10:24:23,"Hi Sofia, really glad you're finding my app useful. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. What would help make my app a 5 star app for you? Thanks, Steve",2019-04-06 12:40:44,most_relevant,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,nice!,3,0,1.25,2019-03-02 13:12:04,"Hi, really glad you're finding my app useful. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. What would help make my app a 5 star app for you? Thanks, Steve",2019-03-02 18:01:08,most_relevant,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Nice app.,3,0,1.21,2018-11-22 13:02:38,"Hi, thanks for your positive feedback. Really glad you're finding my app useful. What would help make it a 5 star app for you? Thanks, Steve",2018-11-22 13:26:37,most_relevant,com.tasks.android +JERRY HOLM,https://lh3.googleusercontent.com/a-/AOh14GgVWE64jr7oCw1Vx2_m-JlkwHAzFvWuaFR0__mdWg,Good,3,0,1.21,2018-11-30 05:20:42,"Hi Jerry, thanks for your positive feedback. What would help make it a 5 star app for you? Thanks, Steve",2018-11-30 09:07:47,most_relevant,com.tasks.android +Wasi imam,https://lh3.googleusercontent.com/-Z1-XcLVrc7Q/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMg6XxoQTmiLMB2ChEbrP6ul7-TQQ/photo.jpg,If more than one task is enabled for same time then it hangs. I have to keep 1 min difference in both task. Pls fix it.,3,1,1.20.1,2018-09-03 03:52:29,"Hi, I'm sorry you're having an issue with my app. Could you please email me with more details? Thanks, Steve",2018-09-03 09:06:28,most_relevant,com.tasks.android +Leif H.,https://lh3.googleusercontent.com/a-/AOh14GgmYSgJ7SIJoFWPW5yElUY0hwbR26N4sJj6ghKY4Q,"I'm looking for a suitable alternative to Any.do, but this isn't it. I'd +like to be able to add tasks for ""tomorrow,"" ""upcoming,"" and so on, +otherwise I will have to either add each task daily, or have 1 large +overwhelming list. Having the option to see my tasks day by day is a huge +stress-reliever for me, so unfortunately I can't choose Tasks over Any.do +at this time. The rest of the app is great, with color coding and so on. I +just really need a daily option.",3,7,1.19.2,2018-07-19 14:19:34,"Hi, thanks for trying Tasks. Due dates and filtered lists have been very popular suggestions by other users and so will be added in future updates. Cheers, Steve",2018-07-23 10:28:23,most_relevant,com.tasks.android +Gracie,https://lh3.googleusercontent.com/a-/AOh14Gisi256aP80_1uBlyQjo0F3L6FA-_fWyj6gV2x5v5A,"Nice app. I wrote the developer and was able to get a prompt response. +Unfortunately for me, the backup and restore process did not work at all +and I will be unable to actually use it. I may look for another update and +try at a later time, but for now this just is not smooth enough between +different devices for me.",3,4,1.19.2,2018-08-09 12:18:12,"Hi, this has been a very popular suggestion and so will be added in future updates. Thanks, Steve",2018-08-09 09:53:12,most_relevant,com.tasks.android +Brad Mihai,https://lh3.googleusercontent.com/a-/AOh14GikM2-V9Uz3M9GmLxE_Vr3HVgbRWROG5WqtZDkQZA,I thought i finally found my reminder :) But this app lacks 2 important aspects: 1. No possibility to sort tasks in chronological order (why ? :) ) 2. No persistent sound. Like any other rekinder app i ve met (why ? :))) ) Plus no subtasks,3,1,1.19.2,2018-08-23 20:35:00,"Hi Brad, there are many sort options for lists. Please use the menu (top right) and tap sort. I have been working on improvements to reminders which include an alarm instead of a notification (persistent sound). This will be available in the coming days as an app update. I will add sub tasks to my list for future improvements. Cheers, Steve",2018-08-24 08:16:28,most_relevant,com.tasks.android +Kristin Holmes,https://lh3.googleusercontent.com/a-/AOh14GiZPoEhIWw34mHGb1DWe3ReCusSznBUJRWDy64,"Would love to have collaborative editing and sharing of list so that I can +create list and share it to my sons phone so it will be in his task list.. +otherwise great app!",3,3,1.19.2,2018-07-07 07:54:21,"Hi Kristin. A great suggestion and one that has been very popular with other users. I will add it in future updates. Thanks, Steve",2018-07-07 10:57:53,most_relevant,com.tasks.android +Kevin Ecker,https://lh3.googleusercontent.com/a-/AOh14GgMbVZQzmOy5KzfqSKBv3nkyfbl-vuRRIfjng1H3A,"A decent to do list app EXCEPT for the ads. I understand ads are necessary and accept that. But forced full screen ads with sound that even when they are done don't let you close them and force you to the play store. If you back up out of the play store, the ad starts all over again.",3,0,1.19.2,2018-08-26 01:51:46,"Hi Kevin. Tasks is free without ads. It always has been and always will be. Is your review for another app? Thanks, Steve",2018-08-26 07:55:40,most_relevant,com.tasks.android +Jeff Davies,https://lh3.googleusercontent.com/a-/AOh14GgdFe8SOL3yr2hLoWmi-hozTlXjMEqi8-Em-SC-aw,"As a taxi driver I do runs for two friends at all times of the day and +night. I've downloaded loads of these things trying to find one that I can +simply put in a job with a simple title like 'Bristol Airport Pickup', with +the time I want to be reminded (not the time I make the first pickup) and +one that I can add notes to for phone numbers, first pickup address and +fare. Most importantly it must sound the notification even if mute is on at +night and early mornings when ai am asleep. Every one I tried did the first +two, none did the latter two. This one. It does let me add notes but sadly +does not make the notification sound when the phone is on silent which is a +big oversight - so it is of no use to me apart from runs when I am awake. +Please fix tbis and I will hapily buy it. Please also add a feature so I +can choose what reminder sound I want instead of it using the default +notification sound.",3,0,1.19.2,2018-07-25 01:29:18,"Hi Jeff, thanks for trying my app. I am currently making improvements to reminders. Changing the notification sound has been a popular suggestion and so will be added. Regarding overriding silent mode, I will investigate what can be done. Cheers, Steve",2018-07-25 07:18:46,most_relevant,com.tasks.android +Dennis Bauer,https://lh3.googleusercontent.com/a-/AOh14GgE6U8zxrb6Uvb0Y-shF7hsar7JOejRJnkhgXU2jA,"Nearly perfect in terms of design, usability. The overall concept and user +experience matches what I need. I would rate it four stars, if sync to +cloud/other devices was added and five stars if sharing/collaboration was +possible.",3,0,1.19.2,2018-07-14 05:44:34,"Hi Dennis, thanks for your positive feedback. I am currently working on enhancements to reminders. Once complete I will begin work on server code to enable cloud backup, device to device sync and list sharing. I hope this helps. Steve",2018-07-15 11:33:25,most_relevant,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Has good potential. You guys should allow the app to display the date when +a task is due. For example if I have to remember what day something is due +(i.e. haircut appt Wed, 7/25/18)",3,0,1.19.2,2018-07-17 14:11:11,"Hi Nikolas, currently if task has a reminder set it will be displayed. Is this not the case for you? I've had lots of feedback around reminders and so am currently making enhancements. I hope this helps. Steve",2018-07-17 14:52:43,most_relevant,com.tasks.android +Elissa D,https://lh3.googleusercontent.com/a-/AOh14GgBwh2AjwoOj-PBLWWbGuz-8nZCrzJVYFslhF3rJVY,"Reminders set to repeat daily don't repeat. The only reason I wanted this app was to have ongoing daily reminder notifications, so I will be uninstalling. Really liked the other features though!",3,0,1.19.2,2018-08-24 01:44:25,"Hi Elissa, Currently once a task is set as complete it will not repeat. This has been popular feedback from users. I have working on improvements to reminders which will be pushed as an app update in the coming days. My app is a constant work in progress based on user feedback. I'm sorry it didn't meet your needs. Steve",2018-08-24 08:19:40,most_relevant,com.tasks.android +Anna Yaroslavtseva,https://lh3.googleusercontent.com/a-/AOh14Gj3Om9LKNTkhBo0lTYLJgg0egAIszeg1h9FAcm-1Q,Why notifications do not work e I y day? I put daily,3,0,1.19.2,2018-08-29 04:44:54,"Hi Anet, I'm sorry you're having issues with my app. After searching I believe there is a security app on Meizu devices. You may need to enable something. Power ->; Standby management ->; enable Tasks reminder. If you're still having problems, please get in contact. Thanks, Steve",2018-08-29 09:12:19,most_relevant,com.tasks.android +Sage,https://lh3.googleusercontent.com/a-/AOh14GiMXG2dXEzhS1Lq67Osi7BO2mI251I7Sap4fNO0ew,Nice looking app though no Google sync,3,0,1.19.2,2018-08-12 22:43:30,,,most_relevant,com.tasks.android +Dacia V,https://lh3.googleusercontent.com/a-/AOh14GgSrbfw-6iQyX4POkBWw1XfD-NTPqLUnLAcQf4cmYM,"It's ok. There's no actual options to make a list. I have to number each +item (task, action, etc) myself & in paragraph form. There's no proper list +formatting in there. Besides that, it's alright. Not what I had hoped :(",3,0,1.19.1,2018-06-26 08:06:01,Hi Dacia. I'm sorry my app is not quite what you are looking for. Could you email me with more details of what exactly you are looking for? Hopefully I can help make it a 5 star app for you. Steve,2018-06-26 14:25:48,most_relevant,com.tasks.android +radja bondoc,https://lh3.googleusercontent.com/-mKVfv9tADUM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOAG89-x5UjwYXyC7-U668rYzrWbw/photo.jpg,"i accidently swipe going to the right it erase task i have to write it +again but everything else is ok",3,0,1.18.1,2018-05-28 07:23:13,"Hi, you can disable this by disabling ""swipe to delete"" in settings. Hopefully this helps make Tasks a 5 star app for you. Thanks, Steve",2018-05-28 08:51:03,most_relevant,com.tasks.android +Ikan Eze,https://lh3.googleusercontent.com/-u6zjnXdZQJ8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM4Ty2xFpXAPjFs0XhPoBlB4gkQtw/photo.jpg,"Kindly add selection ringtones for alarm. There should be an option to +select alarm and the ringtone you want",3,0,1.18.1,2018-05-31 19:24:25,"Hi, this has been a really popular suggestion and so will be added in a future update. Thanks, Steve",2018-06-01 08:02:10,most_relevant,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Beautiful 😆,3,0,1.18.1,2018-06-04 08:45:29,"Hi, I'm glad you like my app. May I ask, what would make it a 5 star app for you? Please email me any suggestions. Thanks, Steve",2018-06-05 20:27:28,most_relevant,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Can you please enable different ringtone modes and if the app, could notify us if we have missed a reminder it'll be great",3,0,1.17,2018-04-09 09:40:47,"Hi, thank you for your suggestion. I will be adding enhancements for reminder in a future update as I've received a lot of feedback. Cheers, Steve",2018-04-09 12:59:51,most_relevant,com.tasks.android +Liz Walker,https://lh3.googleusercontent.com/a-/AOh14Gi2xTTZ35ZEtg2rVt5Z7B4lhPg0uOjAZcHzn7MFz1g,"Overall it is a nice clean design, but reminders seem useless as I'm not given an option to change the time. It's currently 1:45 and no matter what it sets the reminder to 2. Tapping reminder just turns it on/off. Long press and swipe do nothing. Also no due dates + ""today"" list for helping with daily agendas.",3,12,1.16.2,2018-03-06 09:49:08,"Hi Liz, i'm sorry you're having difficulty setting a reminder. To change this, click ""today"" to change the date or ""2"" to change the time. For daily agenda, it is possible to show the all tasks list (setting). If you're still having problems please email me at tasks.list.app@gmail.com so I can help make this a 5 star app for you. Steve",2018-03-06 11:15:25,most_relevant,com.tasks.android +James Brompton,https://lh3.googleusercontent.com/-glwdD_xFWT8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPG2-SQgSRp0d5EgIAVsj5FreMbqQ/photo.jpg,"Basic to do list. Does anyone know how to hide the task notes in task list view? If I create shopping list I will see only one task in ""All"" view.",3,2,1.16.2,2018-02-25 21:51:42,"Hi James, thanks for getting in touch. I am not sure I understand your request. Please contact me at tasks.list.app@gmail.com. Tasks is a hobby project of mine and as such, popular suggestions can be implemented. Cheers, Steve",2018-02-25 21:57:29,most_relevant,com.tasks.android +Bree Jones,https://lh3.googleusercontent.com/a-/AOh14GjO14hDIYj5KcovWV5RJIUunfKKkB82VuP2q6yTiA8,"Generally I liked this app but I found it very frustrating that I couldn't view all my tasks in one area, ie. Inbox. Or by by date. I had to go through each list individually.",3,0,1.16.2,2018-04-11 04:02:39,"Hi Bree, I'm sorry you're having difficulty. There is an all tasks list available in settings. Once enabled, this can then be sorted date. Hopefully this helps make it a 5 star app for you. Thanks, Steve",2018-04-11 07:45:22,most_relevant,com.tasks.android +Katie skT,https://lh3.googleusercontent.com/a-/AOh14GgJSwyFZDCQy_OA1HLvQFB6y4ruG_ILsg0sCa0uSA,I want to be able to set so that the week starts from Sunday. Highly inconvenient for I frequently set the reminder wrongly. A day behind. Please upgrade so that the week start from Sunday.,3,0,2.3.2,2020-04-04 07:44:22,"Katie, this is possible. Tasks follows your device language setting. e.g. I live and work in the UK and so the week starts on Monday, where as US english starts on a Sunday. Simply change your device to the correct setting. Steve",2020-04-04 09:49:24,newest,com.tasks.android +Dawie Visser,https://lh3.googleusercontent.com/-D9C0hJxF4WQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP6BMqojDLPX6ufmS6ptmkTMBcfQA/photo.jpg,Good. Would like for completed tasks to automatically move to the bottom,3,0,2.3.2,2020-04-02 19:08:15,"Dawie, this is possible. Simply enable the ""move completed"" setting. For more help with the basic checkout the Help button in the main menu. I hope this helps, Steve",2020-04-02 21:20:37,newest,com.tasks.android +ryfky,https://lh3.googleusercontent.com/-7pK6V4AOfmQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNZCtWifjMhTPw-aJHvt4NMn3Dy5A/photo.jpg,"why do not work reminders repeated monthly at all? one-time yes, repeated no. what is wrong?",3,0,2.3.2,2020-04-01 16:21:35,"ryfky, apologies you're having an issue. However, this is an issue with your device not Tasks. some manufacturers add very aggressive power saving to their devices which breaks the standard alarm manager functions. Please checkout the online help (available via the Help button in the main menu): https://mytasksapp.com/help/faqs#notifications",2020-04-01 17:26:27,newest,com.tasks.android +Lawal Sadeeq Hayeende,https://lh3.googleusercontent.com/-4ItnqrvNjnI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNjX0GHgHnLsynIYZ3exUrXCAkruA/photo.jpg,This is by far the best and complete Todo list app i have come across so far... However the notification and alarm feature doesn't work... Would have gotten a 5 star from me if that had worked. Thank you.,3,0,2.3.2,2020-04-01 07:31:21,"Lawal, apologies you're having an issue. However, this is almost certainly an issue with your device not Tasks. Some manufacturers add very aggressive power saving to their devices which breaks the standard android alarm manager functions. Please check all power optimisation settings related to Tasks app and enable where appropriate. Steve",2020-04-01 09:20:55,newest,com.tasks.android +Vikas A,https://lh3.googleusercontent.com/-eW5dUPe4IAs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO5t5ptQn95i6TDrwArPbD7E0bZYQ/photo.jpg,"App is good, have lot of features, but I would suggest one basic thing that needs to be changed. In ""Tasks"" app the menu can be reached by pressing the title icon. Also to change the list we have to press the icon on top left corner of widget. It is different (and little disturbing) from normal process we are following since many years. Please try to change the menu button on widget to the top left icon. Thanks",3,5,2.3.2,2020-04-01 06:01:38,"Vikas, I'm not sure I understand. The list icon on the widget is at the top left? Maybe you could do me the courtesy of emailing me (tasks.list.app@gmail.com) with more details and a screenshot of what you mean? Thanks, Steve",2020-04-01 07:29:36,newest,com.tasks.android +Pragya Raghuwanshi,https://lh3.googleusercontent.com/-XqyPBDVSGjE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNzxbKeY3Uf9G1vMY8mXlK5XJSEdA/photo.jpg,Good,3,0,2.0.0,2020-03-28 04:54:58,"Hi Pragya, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. It simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-28 10:23:31,newest,com.tasks.android +Deeban R,https://lh3.googleusercontent.com/a-/AOh14GiLjapId8vavUrglRxEfxyVtmvl37J4d2KrpXAI,Good. But repeat mode is not working properly. I am looking for some other app,3,0,2.2.0,2020-03-17 16:10:43,"Deeban, if you are not receiving notifications this is due to aggressive power saving added by Motorola. This breaks the standard Android alarm manager functions which Tasks relies on. Checkout the online help: https://mytasksapp.com/help/faqs#notifications. Check the power optimisation setting related to Tasks and enable where appropriate. Steve",2020-03-17 16:41:54,newest,com.tasks.android +j ****,https://lh3.googleusercontent.com/a-/AOh14GgHzem8z4n9byfv6BtwIKkjGdEWaTLCy3KD_vr2yA,It's got a steep learning curve. And I don't think it's got good Documentation & help [FAQs].,3,0,2.2.0,2020-03-16 14:26:17,"Hi, apologies my app was too complicated for you. Most users say in their reviews how simple and intuitive my app is. When you first open Tasks there is context based help to get you going and there is the ""Help"" button in the main menu. Please email (tasks.list.app@gmail.com) and help improve the docs and help for everyone. Thanks, Steve",2020-03-16 14:44:22,newest,com.tasks.android +Sándor Magdó,https://lh3.googleusercontent.com/a-/AOh14GhIteRMkrzjc9vRUz7XvYtQeJq2b1ERp5xSK4pg,"Is it true that non-premium version soon will loose any way for backup/restore or transfer to another phone? If not true: Please point to me what is the backup/restore way that stays in app in the future. Thanks a lot!. If true: That is really bad news - backup is a basic necessity, so non-premium version will become practically useless on the long term. In addition, premium costs twice as much for a single year than, let's say OsmAnd+ for eternity. And that is a much more complex app + the free version is completely usable within reasonable limits. Tasks is a really nice app (except that swichingt between sublists/lists is unreasonably slow) with some unique and essential features. But this wracks it, it will drive me away. Possibly others too. Not a fair move to reduce base functionality like that. RESPONSE TO STEVEN NOTTAGE'S RESPONSE: That is fair enough, except for one important detail: all the people using your free app are now forced to decide - if they want to have a meaningful app - to pay or search for another app. Premium app should only add features and not restrict free app's capabilities. If you add worthwhile features with a fair pricing, people will buy it. Lots of people spent time to set up their tasking system because the app had the right properties for them, now it looks like they were lured into using the app and then forcing them to pay. I payed for a number of apps (all cheaper than yours btw.), and actually my plan was to pay/donate as soon as the slowness of switching between task lists disappear, because I thought the app is really useful and it deserves support. This change is different. I do not mean you should not ask for payment for cloud backup etc., just that you should not remove the free local backup (or any other feature). Or that you should have omitted it from the free version from the start. Best wishes! RESPONSE TO STEVEN NOTTAGE'S SECOND RESPONSE: Actually you can clearly see from my review that I do not want everything for free. My problem is different. If we could not understand each other so far, perhaps it's not worth trying any more. So I won't comment on the rest of your answer. All the best!",3,1,2.2.0,2020-03-13 12:36:09,"Sándor, I understand you just want everything for free & don't want to show my little app any support. You even keep lowering your rating despite me taking the time to reply to you. There are technical reasons in Android 10 why the old backup method is not fit for purpose going forward & I cannot keep maintaining dead code in my spare time for free",2020-03-13 09:47:13,newest,com.tasks.android +Beth Cherne,https://lh3.googleusercontent.com/-asqzVvXTfpg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPjcutN1uvSWFr4a88w4n7WNGLMEQ/photo.jpg,"It was fine until I found that to use features like syncing or transferring lists from an older app I had to upgrade to and pay for ""Premium."" Felt like bait and switch.",3,0,,2020-03-11 16:36:25,"Beth, Tasks is a hobby project of mine that has taken 1000s of hours with all non cloud features & support offered for free without ads. I do not hide the fact cloud features are paid for. Servers, storage etc. around the world cost me money each month you use them. I understand everyone always wants everything for free but I cannot afford this",2020-03-11 17:13:20,newest,com.tasks.android +Mangaxris K,https://lh3.googleusercontent.com/-pMD3bzWdnnc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOG7QSAARk06z61S3ZzTY2qkN3n1A/photo.jpg,I'm find this app useful but I'm trying to use it on my desktop? Is there a way to check off items on my laptop in this app? I will change my score once answered Thanks,3,0,1.33.3,2020-03-08 16:14:53,"Hi Mangaxris, this is not currently.ppssible. However, Tasks is a community driven hobby project of mine with the most popular suggestions added over time. This has been very popular and so I am currently working on a browser based web app which will be available in the coming weeks. I hope this helps, Steve",2020-03-08 17:39:17,newest,com.tasks.android +Alistair Wood,https://lh3.googleusercontent.com/-Zck8vFpFFxU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMXRslOcyv3GtAj56zg1tdnUHBduA/photo.jpg,Needs a lot more sophistication,3,0,2.2.0,2020-03-07 09:18:50,"Hi Alistair, apologies you didn't like my app. What sophistication do you require? Tasks is a community driven hobby project of mine with all non cloud features offered for free without advertising. It is designed to be as simple or complex as you require and simply relies on donations and my spare time to move forward. Thanks, Steve",2020-03-07 09:26:35,newest,com.tasks.android +Betty Wellman,https://lh3.googleusercontent.com/a-/AOh14Gh3wNgIH44mfm7NH13sl70GaGsA--UlIN8AdIFu,"Haven't used it a lot yet, but enjoying the simple way to add tasks",3,0,2.2.0,2020-03-03 11:56:44,"Hi Betty, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-03 12:13:44,newest,com.tasks.android +john moreton,https://lh3.googleusercontent.com/-QgI669ui-CY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNzVYKqjslmO_z9AeXI5GzOiW7HGA/photo.jpg,Suddenly stopped giving audio reminders. Tried everything including re-installing and turning on all notifications. Uninstalled.,3,0,,2020-03-03 11:07:51,"John, you could have simply emailed me so I could help. As a reinstall didn't work this is almost certainly as issue with your device not Tasks. I'm assuming your OnePlus has been upgraded to android 10 when it stopped. It's not always the apps fault, manufacturers are very good at breaking things or writing bugs too",2020-03-03 11:29:39,newest,com.tasks.android +Maxine Villareal,https://lh3.googleusercontent.com/-IUy1zWMkfkY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM4JiMVrDn-Z-70kBvawFLbIhUaPQ/photo.jpg,More hierarchy on task options?,3,0,2.2.0,2020-02-26 11:11:10,"Maxine, Tasks has the hierarchy: parent list -> sub list(s) -> task(s) -> sub task(s). How many levels of hierarchy do you need? Thanks, Steve",2020-02-26 11:59:03,newest,com.tasks.android +Admire V Hunt,https://lh3.googleusercontent.com/a-/AOh14Gjg-J2NltOYtaktR4mKHlrkImxWJoU36ueacwJ7ARg,"How soon until the list sharing is available? If soon, you have just earned a small business customer.",3,0,2.2.0,2020-02-23 21:29:41,"Admire, Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It simply relies on donations/subscriptions & my spare time to move forward. Therefore, I cannot give dates for features. I am currently working on the browser based web app and list sharing. Maybe you could show a little more support? Steve",2020-02-24 11:28:55,newest,com.tasks.android +Jensen Gooduuyn,https://lh3.googleusercontent.com/a-/AOh14GhAwkU1ASe4lz5r199nEuf4ZnbR7WD7OxwarBKNTw,edited review,3,0,2.1.0,2020-02-19 21:55:48,"Jensen, I'm not sure I understand? If you're having an issue you could simply email me (tasks.list.app@gmail.com). Tasks is a hobby project of mine with all features and support offered for free without advertising. If you have a suggestion giving a poor review is not the way to get what you want! Consider showing support for the software you use.",2020-02-19 21:51:03,newest,com.tasks.android +ENDURANCE NOSA-ADAMS,https://lh3.googleusercontent.com/-njWVpSipEhs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNVVFy5FqfBXZG80S-0Htmu1GDfVA/photo.jpg,It was ok,3,0,2.0.0,2020-02-19 19:00:19,"Hi, apologies you didn't like my app. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-02-19 19:54:04,newest,com.tasks.android +Jim Prince,https://lh3.googleusercontent.com/-cAwfmc2k9eM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOao4-ybShFjW2bd-Vfl-VHY-zgOQ/photo.jpg,Got it for he to know do of do not do me to my do do an do gone by hi do you do of do is well your name is on the list for the next few days and I will be there at the same time I don't have a whole lot of time to get the kids to the gum Wall Street journal and send it to you when I get home I will send you the link to the video of the puzzle in my room you have for me to get the kids to the gum Wall Street journal and send it to you when I get home I will send you the link to the video of 🤩🤩,3,0,,2020-02-18 00:36:24,"Hi Jim, I'm not 100% sure I understand. This doesn't appear to be a review for my Tasks app. If you need a little help email me (tasks.list.app@gmail.com). Thanks, Steve",2020-02-18 08:08:00,newest,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"This app would do better with a calculator tat adds& subtracts shopping List columns with$totals. Also tabs/swipes for delete/retrieve.⁦👍🏾⁩⁦👍🏼⁩UPDATE--2/16/20. 1.You can't edit[actual item]on a list,like change It's name. 2.AND you CAN'T See*or do a running sub total -add or subtract price totals.What good is a list tat when u put the price of a item your Task list can't be more helpful when creating a cost grocery list or whatever,like[hardware store]items list!!! So I deleted",3,1,2.0.0,2020-02-16 18:26:17,"Hi, to edit a task simply click it. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. I will add your suggestion to my list for future improvements. I hope this helps, Steve",2020-02-16 20:23:24,newest,com.tasks.android +דוד רימון,https://lh3.googleusercontent.com/a-/AOh14GjDdpqTmps_M6eMx8df21kVwueYXbcobT5iHfL_,"very nice app, but there are a few bugs with the widget not really updating to the correct data e.g. - if you put the widget on home screen, change the name of the tasks list, it doesn't update",3,0,2.1.0,2020-02-10 09:43:44,"Hi, apologies you're having an issue with my app. This is most likely due to power saving added by Motorola or a custom power saving app. This stops the widget from being updated. Please check you power optimisation settings and enable where appropriate. I hope this helps, Steve",2020-02-10 09:49:08,newest,com.tasks.android +Franky F,https://lh3.googleusercontent.com/a-/AOh14GhW-s1jgLtmexyZjHn_oRJgvSHTcn6FayVQ0kwofw,I really like it. But there's one or two thing's that need to be addit. I Personally use it to make a list of book that planning to buy and read this year i know there's other apps for this but love the check list style but i don't like how it get deleted after 30 day at most it will be great if there is Option for never delete Plus adding a imagine option will be nice like wallpaper behind the task name,3,0,2.0.0,2020-02-03 19:08:37,"Franky, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. It simply relies on donations and my spare time to move forward. Tasks are only deleted after 30 days from your Deleted items (main menu)",2020-02-03 19:35:49,newest,com.tasks.android +Saayoub Izaz,https://lh3.googleusercontent.com/-Mdxa4TnEaqw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMl7jEcmuoY1DeNXd85CbDVBrExSQ/photo.jpg,"Absolutely love this app and have been using it for months. Different lists in different screens via the widget. Unfortunately the widgets have become unresponsive and now I'm looking for a new app. Will this be fixed ? Using Huawei p20 pro mate for reference Edit: I have reinstalled the app, taken the app off battery saver mode. When I reinstalled it is still the same, clicking on the widget does nothing, can't add tasks at all!",3,0,2.0.0,2020-01-31 08:23:39,"Saayoub, apologies you're having an issue. The widget hasn't changed and you are the first to report this problem so it is most likely an issue with your device. Have you tried removing the widget and re-adding it? Have you had any Android OS updates recently? Huawei add very aggressive power saving which breaks many things, have you disabled this?",2020-01-29 19:22:56,newest,com.tasks.android +Amine AMOUMEN,https://lh3.googleusercontent.com/a-/AOh14Ggj8TkGuiBTvK7_PAdRW3sf9YvUIvjgYhxRd80b,"Tasks helps me stay organized but I still want some option to be in it like if I want to copy a task from a list to another I should duplicate it in the the same list and then move it to the other list . I wish if I can directly duplicate it but not in the same list , instead in another list directly. But in general Tasks is a very helpful app for organizing our life.",3,0,2.0.0,2020-01-28 14:21:27,"Amine, thanks for your suggestion. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It has taken hundreda of hours to write and simply relies on donations and my spare time. I will add your suggestion to my list for future improvements. I hope this helps, Steve",2020-01-28 19:26:56,newest,com.tasks.android +Hesham Shemais,https://lh3.googleusercontent.com/-Vmaa3pC5q1c/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP0QcXo_hwUiyRUAXLS0JhssHOtpQ/photo.jpg,Useful easy to use and fulfil my needs But i still didn't experience it's use in sharing or groups,3,0,2.0.0,2020-01-26 09:13:18,"Hi Hesham, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. It simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-01-26 13:40:24,newest,com.tasks.android +Scott Osteen,https://lh3.googleusercontent.com/a-/AOh14Gj-w6gYgGO9Ha8E0i2-TIayx9_184u5H1W9mGcX,"It's a good app, but I wish it would allow multiple users to see each others task list and to send task to each other.",3,0,2.0.0,2020-01-24 02:39:26,"Hi Scott, I recently added device to device sync and automatic cloud backup. I am now.working on a browser based web app and list sharing. In the meantime you can share tasks/lists as plain text using the share icon (top). I hope this helps, Steve",2020-01-24 06:21:04,newest,com.tasks.android +Whitney Sledz,https://lh3.googleusercontent.com/-tvTn5lj-0rk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNQ9h3M5AoVteiDhSmvchog3k4Tmg/photo.jpg,"I loooove this app! But, I have a Note 10+ & it was destroying my battery. I had to uninstall it😭",3,0,,2020-01-16 20:50:46,"Hi Whitney, Tasks only ""consumes"" battery when it's in the foreground. By default Tasks will stop your phone from sleeping when you are viewing a list. There is an option ""Keep screen on"" in setting which you simply need to disable. I wish you'd emailed me first. Steve",2020-01-16 21:03:31,newest,com.tasks.android +Kay McFall,https://lh3.googleusercontent.com/-9KEUfTaxOUU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMK7exF-jDSEwlfGvbffVUti8XTKQ/photo.jpg,I do have a few problems but the app is fairly easy and I can keep up with everything quite well,3,0,2.0.0,2020-01-16 18:18:45,"Hi Kay, apologies if you're having an issue. You could simply do me the courtesy of emailing me with the details so I may help you: tasks.list.app@gmail.com. I look forward to solving your issue. Steve",2020-01-16 19:57:36,newest,com.tasks.android +Mauri Galvez,https://lh3.googleusercontent.com/a-/AOh14GiVBnjU55bFD7THcC0j8uS3vS8Ez3u7YKLEOZdhhkY,"Decent app, but not worthy of monthly fees. What happened to 1x Pro licenses?",3,0,,2020-01-14 08:05:11,"Mauri, Tasks Premium is completely optional. Tasks is a community driven hobby project of mine with all other features & support offered for free without advertising. Tasks Premium is a global service that costs me money every month. Why do you think you shouldn't have to pay for your usage monthly/yearly? I'm sure you can understand this. Steve",2020-01-14 08:54:58,newest,com.tasks.android +mala wardell,https://lh3.googleusercontent.com/-mqpPd_ozXwY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOyNFG1zVGYBpjIVaePcdrlAb9vvw/photo.jpg,"I've only had this app for about a week but so far so good. No ads (as yet), very easy to use.",3,0,2.0.0,2020-01-13 23:42:31,"Mala, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. It simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-01-14 08:55:47,newest,com.tasks.android +Traci Stetler,https://lh3.googleusercontent.com/a-/AOh14GiLaj0mlIK86xhF1jNLbB6IV_Bd5cn4aj1taHyVPg,"I downloaded this app because the other app I was using wouldn't always notify me. Also, they recently decided to change from an analog clock face to having to scroll (similar to a digital clock) to set the due time. I tested this app before I started copying all my tasks, but I came across a problem. When creating a repeat, there is no way to set it to do a certain day of the month (ie: the 3rd Saturday of the month, or the Last Sunday of the month). This is a big issue for me because I have certain things I want to do, but it's not always on the same date of the month. Hopefully, this can be added/changed soon.",3,4,2.0.0,2020-01-10 16:55:22,"Hi Traci, a great suggestion. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It simply relies on donations and my spare time to move forward. I will add your suggestion to my list for future improvements. I hope this helps, Steve",2020-01-11 20:41:38,newest,com.tasks.android +r free,https://lh3.googleusercontent.com/-slMZvZX-whU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM1v8b2Ee36ZJp00yjw2X0iAD7AmA/photo.jpg,I don't see where you can use voice to make tasks??,3,2,2.0.0,2020-01-09 21:27:50,"On most android devices there is a microphone symbol on you keyboard simply click it and use it for speech to text input. I hope this helps, Steve",2020-01-11 20:32:52,newest,com.tasks.android +Elizabeth Bolton,https://lh3.googleusercontent.com/a-/AOh14GjaFihJDW6t3tSg5-PwfQdQMen6gaaOpq72HaVc,"I wish it had a widget, but I love it otherwise.",3,0,,2020-01-05 05:55:01,"Hi Elizabeth, Tasks includes a widget for free. I'm not sure how you missed this, it is in the online getting started guide (available through the ""Help"" button in the main menu): https://mytasksapp.com/help#widget I hope this helps, Steve",2020-01-05 11:06:05,newest,com.tasks.android +Megan Richardson,https://lh3.googleusercontent.com/-RykTlpq-edk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOUUk6QFAieJAotgn05oriW9lN4wA/photo.jpg,"Minimum 3 stars, no real problems so far. Nothing to compare it to but its bright and keeping me organized.",3,0,2.0.0,2020-01-03 02:13:19,"Hi Megan, thank you for your positive feedback. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. It simply relies on donations and my spare time to move forward. Let e know how I could make it a 5 star app for you. Thanks, Steve",2020-01-03 10:04:41,newest,com.tasks.android +Deborah Davis,https://lh3.googleusercontent.com/-N7Kb7w487zw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOVMjQmPhkpliTkebbs-uJWv7d8EA/photo.jpg,I was hoping for similar to notes app on iPhone. Not even close. But I prob don't know how to use it,3,0,2.0.0,2020-01-02 17:20:07,"Deborah, maybe you could be more specific? Tasks is a community driven hobby project of mine with all features and support offered for free without advertising. Tasks is more a replacement for iOS reminders app. You want a note app. There is a ""Help"" button in the main menu for more details or you could have.done me the courtesy of emailing me",2020-01-02 19:28:46,newest,com.tasks.android +Shyam sukhdayini Sharan,https://lh3.googleusercontent.com/-BbX5fWtkGHg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPc7G3dsKMWcHYj7pOq-_-DSSjufA/photo.jpg,"It is good to organise the tasks. The only. Problem is,i am not able to get reminders. I am setting the reminder but it is but showing",3,0,2.0.0,2020-01-02 13:23:47,"Shyam, apologies you're having an issue. This is an issue with your device not Tasks caused by aggressive power saving by Vivo. Have you looked at the help https://mytasksapp.com/help/faqs (available via the ""Help"" button in the main menu). Alternatively you could have done me the courtesy of emailing me directly. I hope this helps, Steve",2020-01-02 15:42:39,newest,com.tasks.android +Gemma Sinclair,https://lh3.googleusercontent.com/a-/AOh14GjmKBTsxZ-Ndc9F1QC7TlcjcGaDiejL4YqbTzJi,I actually loooooove the app and use it to organise my life but it has now stopped updating as a widget. If I make changes to my lists on the app it will not change on the widget?,3,1,2.0.0,2020-01-02 07:39:43,"Hi Gemma, apologies you're having an issue. This is a problem with your device not Tasks. Remove the Tasks widget and re-add it. Check all power optimisation settings related to Tasks app and enable where appropriate. I hope this helps, Steve",2020-01-02 11:08:16,newest,com.tasks.android +Simon Blake,https://lh3.googleusercontent.com/-PCD-2zjJSL4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM9W53UbyVv7uFsdbtCFnMG1Zowig/photo.jpg,"Seems good so far. I might rate it higher after using it for longer but the annoying pop up messages forced me to either say I didn't like it or rate it now... EDIT: to reply to the response. There was only the option to review now or say I didn't like it. I would have picked review later if that was there. EDIT 2: Thanks for taking my suggestion on board, I will update this review and rating once I have used the app more 👍",3,1,2.0.0,2019-12-30 14:19:45,"Simon, Tasks is a community driven hobby project of mine with all features & support offered for free without advertising. It simply relies on donations and my spare time. That ""annoying pop up"" is a one time popup that can be cancelled and simply asks for a.little.support after a minimum of a week. Great suggestion, I'll add that 👍 Steve",2019-12-30 14:08:46,newest,com.tasks.android +Zeinab Mohamed,https://lh3.googleusercontent.com/-zFpThN6zMBk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPSfIjSVn5c85j43tu0EfN_W9_lIw/photo.jpg,Good,3,0,2.0.0,2019-12-30 06:55:17,"Hi Zeinab, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. It simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2019-12-30 10:28:09,newest,com.tasks.android +Jesse Yawn,https://lh3.googleusercontent.com/-vIscv-4FAww/AAAAAAAAAAI/AAAAAAAAB_E/AAKWJJMjvJ_8u21wDKSkPxGvz72Qw3cbxQ/photo.jpg,Great app,3,0,2.0.0,2019-12-22 18:44:21,"Hi Jesse, really glad my app is ""great"". Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. It simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2019-12-22 19:45:19,newest,com.tasks.android +Monica J,https://lh3.googleusercontent.com/-GICWyzdoSQo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO-MNWWkZFLHHYZh29_xxr4yaKo1w/photo.jpg,Those dots on the right of each item are gone. How do you reorder your to do items now?,3,0,2.0.0,2019-12-21 15:10:11,"Hi Monica, when you change the sort option e.g. alphabetical you can no longer drag and drop tasks. Simply change the sort option back to"" User draggable"": open the sub list menu (3 dots top right). For more help with basic features checkout the ""Help"" button in the main menu. I hope this helps, Steve",2019-12-21 16:15:45,newest,com.tasks.android +Kristina Stafford,https://lh3.googleusercontent.com/-_EQkXdlOXlU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOThVBqD2NHk6aG83lF3MlzHscCIw/photo.jpg,I just started using it. So I'm not sure how good it is yet. I do really wish you could do bullet points like: * - - That you could check off. It would be much easier in some cases than a separate sub list. & That is currently what I need 😪.,3,1,2.0.0,2019-12-19 12:57:17,"Kristina, the whole app is bullet pointed lists where the bullets are checkable. You can even have sub tasks. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. What would help make my app a 5 star app for you? Thanks, Steve",2019-12-19 13:38:48,newest,com.tasks.android +Connie Mascelli,https://lh3.googleusercontent.com/-t12_w2PhwNk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOgiCz_no147p3OfZ-8LpCXDvddug/photo.jpg,easy to use,3,0,2.0.0,2019-12-16 12:58:26,"Hi Connie, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. It simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2019-12-16 13:44:23,newest,com.tasks.android +A Google User,https://lh3.googleusercontent.com/a-/AOh14Gj4AjmpkyeL72497TZQGzLRMrQf7dfXIdmffCuviA,"Just started hence neutral stars. I was going to write to the devs but I see you reply here. Open is good. I don't know what a filtered list is. That is my only confusion so far. I was interested in premium but put off by the monthly fee rather than a single license. Meanwhile I was playing with the idea of selling each premium feature separately. That would give you information about what your users want - especially after you add computer support. Feed the wolf you want, Linux 1st.",3,4,2.0.0,2019-12-11 21:26:39,"Hi. Tasks is a hobby project fo mine. It has taken hundreds of hours to write, maintain and support. Unfortunately servers etc. cost me money monthly and I cannot afford to give these features for free. A filtered list is exactly that, a filtered view of your tasks. Checkout the Help"" button in the main menu for more info about features. Steve",2019-12-11 22:03:55,newest,com.tasks.android +John Bowden,https://lh3.googleusercontent.com/a-/AOh14GiShic2yxDK3MNbneNBLKbVL72aVszf0mgCDm3PAw,"Good BUT... STILL does not handle repeat events such as Daylight Savings Time change (i.e. setting a reminder for the second Sunday of March each year to change clocks that don't adjust automatically). Does not handle ""last day of the month"" reminders well. Also, the list should display an icon by repeating tasks. Backup options are very limited, does not handle integration with e.g. Dropbox. Otherwise it would be perfect for my needs.",3,1,2.0.0,2019-12-02 14:19:14,"Hi John, daylight saving is accounted for. This is part of the Android OS and works on my test devices. Unfortunately I didn't write Tasks for you and you alone. Tasks is a hobby project of mine. It simply relies on donations and my spare time to move forward. I will add your suggestions to my list. Steve BTW, backup is part of Tasks Premium",2019-12-02 14:28:29,newest,com.tasks.android +Vinutha Lava,https://lh3.googleusercontent.com/-cVLKpDSw3yQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNksrCcNsXTxnN96ruga_3qtl-B-w/photo.jpg,Good,3,0,1.34.4,2019-11-29 04:20:44,"Hi Vinutha, really glad you're finding my hard work ""Good"". Tasks is a hobby project of mine. All features and support are offered for free without advertising. It has taken hundred of hours to write and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks for your support, Steve",2019-11-29 09:22:10,newest,com.tasks.android +Jeff Kain,https://lh3.googleusercontent.com/-Ip0QG0n76Qs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN7x17WOK7SpnuPSZ7a0uQAFjyy6w/photo.jpg,Rather new to the app to rate it higher than a 3 at this time. But I like the results it is helping me to achieve. I expect improved time management as I get the app's feature set up to serve me best. I sense I may rate it higher as I experience it benefits more. I do like using it better then Wunderlist.,3,0,1.34.4,2019-11-27 14:24:28,"Hi Jeff, Tasks is a community driven hobby project with all non cloud features and support offered for free without advertising. It has taken hundreds of hours to write, support and improve. For help with features checkout the ""Help"" button in the main menu. For any thing else please email me. Maybe you could show some support! Thanks, Steve",2019-11-27 14:36:19,newest,com.tasks.android +Sana Sardar,https://lh3.googleusercontent.com/-cOWxdstb5Z4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPOwBC7B_YzyQrzenjUEJIhlw_mTQ/photo.jpg,Gets a on the phone list of things to do done,3,0,2.0.0,2019-11-23 15:25:39,"Hi Sana, really glad you're finding my app useful. Tasks is a hobby project of mine with the most popular suggestions added over time. All features and support are offered for free without advertising. It simply relies on donations and my spare time. What would help make my app a 5 star app for you? Thanks for your support, Steve",2019-11-23 15:31:52,newest,com.tasks.android +Mairi Franklin,https://lh3.googleusercontent.com/--2otqFYtF30/AAAAAAAAAAI/AAAAAAAAZbg/AAKWJJOfxHSlVMcKxbKAsHzOk9AUIRUAhQ/photo.jpg,"Really pretty good app; but two problems! 1. Sometimes repeat weekly reminders don't work at all, especially if you haven't ticked it the previous week! 2. Please allow multiple reminders for one event! Thanks, it's really promising and useful otherwise!",3,1,2.0.0,2019-11-22 18:32:44,"Hi Mairi, if you are having issue with notifications this is a problem on your device not Tasks. Unfortunately Huawei add very aggressive power saving to their devices which interferes with the standard Android alarm manager functions. Please checkout the FAQs: https://mytasksapp.com/help/faqs#notifications. I hope this helps, Steve",2019-11-22 19:13:58,newest,com.tasks.android +Barbara Oliver,https://lh3.googleusercontent.com/-Ix0J7xsWMWo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOoiBwV0IUC87dNCKEMs6bntg3qyg/photo.jpg,"Used it twice, so far so good",3,0,1.34.4,2019-11-21 23:28:19,"Hi Barbara, really glad you're finding my app useful. Tasks is a hobby project of mine with the most popular suggestions added over time. All features and support are offered for free without advertising. It simply relies on donations and my spare time. What would help make my app a 5 star app for you? Thanks for your support, Steve",2019-11-22 09:16:31,newest,com.tasks.android +Brianna Ayala,https://lh3.googleusercontent.com/-JxrTUudioYA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNynX14I84olYFXH-pbNWfth-kN0A/photo.jpg,It doesn't reset or set you reminders but it helps,3,0,1.34.4,2019-11-10 19:40:28,"Hi Brianna, yes Tasks does. By default when you receive a notification/alarm the date and time will automatically increment to the next occurrence. If you're having an issue you could have done me the courtesy of contacting me directly. I hops this helps, Steve",2019-11-10 20:32:33,newest,com.tasks.android +Aditi Mantri,https://lh3.googleusercontent.com/a-/AOh14Ghoi_DgVQ0GscxHvW15or7K8Q93GN4roMDcscPIWg,Amazing and helpful,3,0,1.34.1,2019-11-10 10:06:28,"Hi Aditi, really glad you're finding my hard work helpful. Tasks is a hobby project of mine with the most popular suggestions added over time. All features and support are offered for free without advertising. It simply relies on donations and my spare time. What would help make my app a 5 star app for you? Thanks for your support, Steve",2019-11-10 22:14:43,newest,com.tasks.android +Sabhie Cat,https://lh3.googleusercontent.com/a-/AOh14GjQKJSfTJvn95ZNkx0oy9lpF1joPEBk36M4LoQc,It it good but I couldn't do simple lists. They would be in one big catagory then in a sub list and it just wasn't the format I wanted,3,0,,2019-11-06 18:47:02,"Hi, I'm not 100% sure I understand? Tasks is designed to be very flexible. You can break your tasks up however you wish. Tasks is a hobby project of mine with all features offered for free without advertising. It simply relies on donations and my spare time to move forward. What were you looking for? Thanks, Steve",2019-11-06 18:50:06,newest,com.tasks.android +Ravi Ranjan,https://lh3.googleusercontent.com/a-/AOh14Gjakh2rJntjgaG17hxthw6CaNlND_6Qvn4_fxHjIA,"Does it not have feature to set reminder daily, weekly, monthly and yearly?",3,0,1.34.4,2019-11-06 10:31:00,"Hi Ravi, yes. Did you check the help in the main menu? Simply add a date and time (next occurrence e.g. 9am tomorrow) add a repeat e.g. daily, weekly etc. And save. I hope this helps, Steve",2019-11-06 11:51:29,newest,com.tasks.android +S.S. Nabila,https://lh3.googleusercontent.com/-nSocyDPnydc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN4Ly29FaVa_YGVAWsvIfr2cJadeQ/photo.jpg,As I am a regular user of this app...This app needs some update like the calendar based listing method. People will go to date and list the task...Another problem is so many color for list. It's annoying... Who don't like colors they can select one color for every task list... That is all...🙂🙂🙂,3,0,1.34.4,2019-11-02 04:16:59,I'm not sure I understand your review. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It is offered for free without adverts and simply relies on donations and my spare time to move forward. You are a regular user and so must be getting some benefit from my hard work but give it 1 star. Thanks!,2019-05-28 17:45:02,newest,com.tasks.android +ablantzer,https://lh3.googleusercontent.com/-41X0uN9opNQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOZACw_PI1iz9S3BtmEw6JNTnOnUg/photo.jpg,"I liked a lot about this app, but unfortunately, there is no feature to repeat tasks (hourly, daily, weekly, etc), which is kinda vital for me. Without it, I can't recommend this app. Much as I hate Todoist's subscription model, they seem to be the leader as of right now.",3,3,1.34.4,2019-10-31 19:56:39,"Hi Ablantzer, this is possible. Simply add a date and time (next occurrence e.g. 9am tomorrow) add a repeat e.g. hourly, daily, weekly etc. And save. For more help with basic functions checkout the ""Help"" button in the main menu. I hope this helps, Steve",2019-10-31 20:03:19,newest,com.tasks.android +Hafeez Shaik,https://lh3.googleusercontent.com/-vaIa1pYaIHY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOGw4LfxhzIXrkIz90wxRvJq5fH1g/photo.jpg,Unable to download,3,0,,2019-10-30 17:51:33,"Hi Hafeez, can you be more specific? What are you unable to download? Tasks is self contained and all you need to download is the app from the PlayStore. Please email me with more details at tasks.list.app@gmail.com. Thanks, Steve",2019-10-30 18:17:57,newest,com.tasks.android +Malia Anise,https://lh3.googleusercontent.com/a-/AOh14GilfbPtPw0NLiEZ5KLZP_q7tlnFii0OfP2dJNUlMA,"Its not a bad app at all, but it could be better. If you could keep track of how often you complete a task that would be better. Like if you checked off every time you shampooed your hair it would be nice to keep track so you can change how much you shampoo if needed. Also i feel like having a bar at the top to switch between lists makes more sense than the way it is now. You should still give it a try if you need something like this because you might like it better than i did.",3,1,1.34,2019-10-21 03:59:04,"Hi Malia, the bar at the top is for multiple lists (you can swipe left/right between them). Checkout the ""Help"" button in the main menu. Tasks is a community driven hobby project of mine with all features and support offered for free without advertising. It simply relies on donations and my spare time. I will add your suggestion to my list. Steve",2019-10-21 08:11:16,newest,com.tasks.android +Andrea Tapia,https://lh3.googleusercontent.com/-xt-wXfLrcEs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOkRC8ZtS09PUxkYvJ7NZIcLV4Zow/photo.jpg,I used to love this app but since my phone updated it no longer works. I recently uninstalled and re installed I hope it works or I'll have to find something new 🙁,3,3,1.34,2019-10-17 05:25:10,"Hi Andrea, apologies you had an issue with my app. Can you be more specific? What no longer works? I have the same device as a test device and have never had any problems. What was the issue you saw? Thanks, Steve",2019-10-17 08:24:43,newest,com.tasks.android +Vivek Doshi,https://lh3.googleusercontent.com/-UbtvvluW8rc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOy8s46PRcErEhzUbkzMPIj16ZVow/photo.jpg,"Very good app but something lacl There is options default task set today, Tommorow etc, one more problem when we ADD task in any list it automatically saved in other. Other when we add task any date it demand time necessary it shoud be Optinal",3,0,1.33.3,2019-10-09 21:04:02,"Hi Vivek, I'm not 1005 sure I understand. Please contact me directly with more details. Maybe a screenshot would help? Tasks is a hobby project of mine with all features and support offered for free without advertising. It simply relies on donations and my spare time to move forward. Maybe you could show a little more support! Thanks, Steve",2019-10-10 09:26:47,newest,com.tasks.android +Olanrewaju Olasoju,https://lh3.googleusercontent.com/a-/AOh14GjJkirEy93Gpdbfvi-EslD9fPolpzgOltELKUPbHQ,"I love the app, but you cannot add file to your task or schedule, this lack of ability to add file on such good app make it incomplete, I could have rated it 5",3,0,1.33.3,2019-10-07 20:44:05,"Hi Olanrewaju, Tasks is a community driven hobby project of mine with the most popular suggestions added over time. All features and support are offered for free without advertising. The project simply relies on donations and my spare time to move forward. This has been a popular suggestion and so will be added in a future update. Regards, Steve",2019-10-08 07:30:07,newest,com.tasks.android +Monalisa Madueke,https://lh3.googleusercontent.com/-tDPfCtfA0P4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNEIl0YzSykXsi_BP20ENP0MrdNfA/photo.jpg,Excellent app,3,0,1.31,2019-10-02 05:50:14,"Hi Monalisa, really glad you think my app is excellent. Tasks is a hobby project of mine with the most popular suggestions added over time. All features and support are offered for free without advertising. It simply relies on donations and my spare time. What would help make my app a 5 star app for you? Thanks for your support, Steve",2019-10-02 07:15:09,newest,com.tasks.android +Islam S M Hasinul,https://lh3.googleusercontent.com/-VLakdNnNZt4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNoqf-IBNUVsKFGhC9bp34KPEE3VA/photo.jpg,Expecting better. Need alarm facilty to remind me in advance.,3,0,1.33.3,2019-09-25 11:04:59,"Hi, this is possible. Simply add a date and time to a task, set reminder type to alarm and save. There are also options to be reminded in advance. If you need help with basic functions checkout the ""Help"" button in the main menu. I hope this helps, Steve",2019-09-25 07:35:34,newest,com.tasks.android +Basile khant,https://lh3.googleusercontent.com/-L5YB_6myZhU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOqZl_6jl8Mgx6U2RdKvG-ZL0X5Iw/photo.jpg,Sufficient for my needs simple to use,3,0,1.33.3,2019-09-25 05:19:05,"Hi Basile, really glad you're finding my app ""sufficient"". Tasks is a hobby project of mine with the most popular suggestions added over time. All features and support are offered for free without advertising. It simply relies on donations and my spare time. Maybe you could show a little support for independently developed apps. Steve",2019-10-05 17:47:11,newest,com.tasks.android +Vasilis Tsiadis,https://lh3.googleusercontent.com/-9d9WkzzSdRI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPN1J-E0ixM0WiHjxSdysVsyv5sgQ/photo.jpg,"The app is helpful and has nice features. I would give 5 stars but you apparently you are not able to transfer your lists to another device, unless you have exactly the same version. I had to create all my lists from scratch.",3,1,1.33.3,2019-09-15 13:47:55,"Hi Vasilis, there is a backup and restore feature in settings for transferring between devices. If you had an issue, you could have simply asked for help instead of complaining on the PlayStore. Steve",2019-09-15 15:21:21,newest,com.tasks.android +Kimberley Kute,https://lh3.googleusercontent.com/a-/AOh14GhAGiCvYdD1oefQnDKmg9uPjBGZ0euVX-Ssf3x6,Easy to use and keep my tasks in check. Love that I can have different sub tasks for different projects though i wish they could vbe color coded so as to differentiate them,3,0,1.33.3,2019-09-14 10:19:41,"Hi Kimberley, this is possible. When you create each new parent list (project) you can choose the color. This color is then used to color coordinate all tasks etc. associated with that list. Is this what you meant? Thanks, Steve",2019-09-14 10:42:18,newest,com.tasks.android +John Salerno,https://lh3.googleusercontent.com/a-/AOh14GgR3xR_5VEzff3_h-5pmQUBRaWRMvpE62pMXfGD,"Seems laggy moving between lists and tabs after the latest update. No way to delete a parent list without manually deleting all sublists first? Edit: I see the delete option for subtasks, but how do you delete sublists and parent lists? (I understand it's a hobby project, and I appreciate that. Just making sure I'm not missing something.)",3,0,1.33.3,2019-09-12 20:12:51,"Hi John, you are not looking for a menu, just click on the sub task. It will display the sub task dialog which has a delete option. To delete a task simply long press and click delete. Please note: this is a hobby project and all support if offered for free in my spare time. I hope this helps, Steve",2019-09-12 18:39:20,newest,com.tasks.android +Kiril Lukiyan,https://lh3.googleusercontent.com/a-/AOh14GjVxLR0NAmwlMEP9Lv8BuDmIT2L43uKNVG__Va_Ha0,Looks good. But doesn't have web version. Would be 5 stars if I was rating author's dedication. Functionality wise can't give more than 3. The app is inferior to Any.do or microsofts todo,3,0,1.33.3,2019-09-12 09:51:51,"Hi Kiril, I do not claim this in the PlayStore. However, Tasks is a community driven hobby project of mine with all features offered for free without advertising. It simply relies on donations and my spare time. This has been popular and so I am currently working on server code to enable device to device sync, cloud backup and a web app. Steve",2019-09-11 17:42:19,newest,com.tasks.android +Mr. G,https://lh3.googleusercontent.com/-R8Wh9oNiqy8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN4wrB4cJyHjDxfv3ygoXT2qmOPCA/photo.jpg,Lower rating until I use it more -just started,3,0,1.33.3,2019-09-11 13:15:04,"Mr G, that's a very pesimistic view. Tasks is a community driven hobby project of mine. All features and support are offered for free without advertising. It simply relies on donations and my spare time. Maybe you could be more supportive of independently developed apps. For help checkout the Help button in the main menu. I hope this helps, Steve",2019-09-11 13:47:27,newest,com.tasks.android +Priscilla Connell,https://lh3.googleusercontent.com/a-/AOh14Ggx0eqm4viQ1PDAuEwoTbmtuogd2PV0RNXscqZvfA,I have not been using app for very long. Therefore the 3 star rating. After some use I will return to rate again.,3,0,1.33,2019-09-10 10:54:09,"Hi Priscilla, For help getting started checkout the main menu ""Help"" button. Tasks is a community driven hobby project fo mine. All features are offered for free without advertising. It simply relies on donations and my spare time to move forward. Maybe you would consider being a little more supportive instead of pessimistic. Thanks, Steve",2019-09-10 11:21:36,newest,com.tasks.android +Catherine Smith,https://lh3.googleusercontent.com/-hNnoaDC9DhA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPhoGIftOPxzBDmtR4oM_tGNSdfNQ/photo.jpg,Enjoying the app.,3,0,1.33,2019-09-04 20:20:34,"Hi Catherine, glad you like my app :) Tasks is a community driven hobby project of mine with the most popular suggestions added over time. All features are offered for free without advertising. It simply relies on donations and my spare time. Maybe you could show a little more support! What would help make my app a 5 star app for you? Thanks, Steve",2019-09-04 20:35:42,newest,com.tasks.android +abividal,https://lh3.googleusercontent.com/-MbBQSQnFv7c/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPbHA5SqDvO6RIjLpxANzW3WECwIA/photo.jpg,It was good now alatm sound of tasks is full but sound is low only this app i have seperate alarm volume and its full,3,0,1.33,2019-09-04 05:09:05,"Hi, unfortunately Samsung devices don't have a separate alarm volume (they have removed it from vanilla Android) on newer device. Unfortunately Tasks is a hobby project of mine and I cannot afford to buy every device to test with. Therefore I had to use Media volume, simply turn this up. I hope this helps, Steve",2019-09-04 08:05:48,newest,com.tasks.android +Persistent Tek,https://lh3.googleusercontent.com/-2kegfErrsy0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPsgR_6U4lEf7rnbVbT01r7oI33_w/photo.jpg,I just downloaded& installed this app. I was in search of an app that allows me to insert date and time stamp. Preferably using a button on the screen. This way I can time stamp different sections in my notes and activities. however I didn't find that feature. would love to see that in this app as it needs quite a few of my requirements.,3,0,1.33,2019-09-03 23:49:48,"Hi, Tasks is a community driven hobby project of mine with the most popular suggestions added over time. All features are offered for free without advertising. It simply relies on donations and my spare time to move forward. I will add your suggestion to my list for future improvements. I hope this helps, Steve",2019-09-04 07:59:55,newest,com.tasks.android +Christian Israel,https://lh3.googleusercontent.com/a-/AOh14Gj7ZKlY4Bj5rpAMfIAYUDanwHNpJnZpv7QSSfsdtg,"This app doesnt require your firstborn in order to function as similar apps do. The Quick post function is great. However, unlike other similar apps, this doesnt have a widget feature to show what the upcoming daily task is on the screen. So for me, that is really unfortunate. If this changes, I will gladly give this a perfect rating.",3,7,1.32,2019-09-01 08:15:04,"Hi Christian, Tasks does include a widget for free. On most devices to add it simply long press on your home screen. Select widgets. Drag and drop the Tasks widget onto your home screen. For more help checkout the FAQs: https://mytasksapp.com/help/faqs. I hope this helps, Steve",2019-09-01 08:19:04,newest,com.tasks.android +Jim M,https://lh3.googleusercontent.com/-hUSCu6qhxH8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOi-MxFgQs9bIJrdfTQzK2MscHihw/photo.jpg,Nice but am looking for something that can synchronize with Google Tasks,3,0,1.31,2019-08-25 05:17:07,"Hi Jim, I do not claim this as a feature on the PlayStore! However, Tasks is a community driven hobby project of mine with the most popular suggestions added over time. All features are offered for free without advertising. It simply relies on donations and my spare time. I will add your suggestion to my list. I hope this helps, Steve",2019-08-25 09:15:23,newest,com.tasks.android +G. H. Nairn,https://lh3.googleusercontent.com/a-/AOh14GjliHSHNYgO6uNEKTDfP4HD3v9VXVzMt9Af-pX8Yg,"Sound now works but when I have the phone's Do Not Disturb feature on my wake up alarm task notifies but no sound. I have it set to ignore Do Not Disturb and have it set to alarm. My other alarm app does sound off during this time but not as reliable as Task, so it's not my phone causing no sound issue, what else could it be Stephen? You get it working and you get 4 stars, restore still does not work, gave up on that.",3,143,1.31,2019-08-24 08:50:08,"Hi, both backup and sound are verified as working on test devices. Please check the docs and your local settings. I hope this helps, Steve",2019-08-23 08:32:43,newest,com.tasks.android +Francyne Tardif,https://lh3.googleusercontent.com/-iWYt1HolBD8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMMGNWXMGIEm8X8k2ZBxVdnNo9PDQ/photo.jpg,Good app for task but should be linked with reminders.,3,0,1.31,2019-08-23 03:08:17,"Hi Francyne, this is possible. To create a reminder simply add a date and time to a task. For more complex repeating reminders simply add a repeat e.g. daily. And for more help checkout the ""Help"" button in the main menu. I hope this helps, Steve",2019-08-23 07:16:19,newest,com.tasks.android +Rob Saville,https://lh3.googleusercontent.com/a-/AOh14GhRuHaQ2fZ88Z_PdMvjWSKrQWrBJfoYy1KvoPm1,I found this app difficult to use. That's just my personal opinion. I uninstalled it and got a different one that is easier to use.,3,0,,2019-08-21 08:40:53,"Hi Rob, apologies my app was too complicated for you. Tasks is a community driven hobby project of.mine with the most popular suggestions added over time. All features are offered for free without ads. Maybe you could be more specific, what would you change? Thanks, Steve",2019-08-20 18:43:04,newest,com.tasks.android +Harold Herbin,https://lh3.googleusercontent.com/-AI3iUPlHaE4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNJpJ0dg7zpHlqjjb5AmTRGdY5pIA/photo.jpg,Helps me stay organized..,3,0,1.31,2019-08-16 21:22:25,"Hi Harold, thanks for your positive feedback :) Tasks is a community driven hobby project of mine with the most popular suggestions added over time. All features are offered for free without advertising and it simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2019-08-17 08:53:53,newest,com.tasks.android +Akunna Igwe,https://lh3.googleusercontent.com/-GzGwHLRy904/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM0_AShGLjCWgT-Y-z8BGAIVU_R1A/photo.jpg,"I personally would like to add to this app, if I had a chance is change how the entires were set up. You had to make up the name. But it would make it better if it had a date and name. To me it feels like something you can do on a piece of paper. Add more cool features that you can't find anywhere else.",3,0,,2019-08-16 12:40:03,"Hi Akunna, I'm a little confused by your feedback. Why did you bother trying my app? Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It is offered for free without advertising. Maybe you could help improve my app for ALL users? What would you like to see? Thanks, Steve",2019-07-30 07:23:54,newest,com.tasks.android +task Time,https://lh3.googleusercontent.com/-5vpsdfRRsEM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPDANq6oXRPef0TJyg0g3jTCyTXEA/photo.jpg,How to view the App on laptop? just like Wunderlist,3,0,,2019-08-16 07:15:48,"Hi, this is not currently possible. However, Tasks is a community driven hobby project of mine. All features are offered for free without advertising. This has been very popular and so I am currently working on server code to enable device to device sync, cloud backup and list sharing. Once complete I will add a browser based web app. Steve",2019-08-16 07:57:08,newest,com.tasks.android +R1t4 D,https://lh3.googleusercontent.com/-mp37OzmnrUs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN92RSc3FXHPP_xRYpKEeNqUV_DRg/photo.jpg,"I have to uninstalled this app on my phone soon i open the apps and trying to make things to do list.. it worked fine just i have trypophobia and those small circles/dot just freaking me out... edit, the small circles/dots that i mean here is when i click new list next we fill the LIST NAME and it appears with small circles/dots in color for me who's having this kind of phobia that kind of design is just scary.. aside of that your apps seems to be simple and easy to use.",3,0,1.30,2019-08-15 16:46:22,"Hi, thanks for the feedback and sorry about that. Steve",2019-08-15 17:22:46,newest,com.tasks.android +Anatolii Lebedev,https://lh3.googleusercontent.com/a-/AOh14GglDiiWweVaXwwvt7ZNuwH1gB2Y7jRJl0WOdry6Og,"Сильно не хватает возможности поделиться списком, например покупок, с семей",3,0,1.30,2019-08-11 11:23:27,"Hi Anatolii, I do not claim this as a feature in the PlayStore! However, Tasks is a community driven hobby project of mine with the most popular suggestions added over time. this has been very popular and so i am currently working on server code to enable device to device sync, cloud backup and list sharing. I hope this helps, Steve",2019-08-11 13:18:03,newest,com.tasks.android +Stan Rohrer,https://lh3.googleusercontent.com/-qvcbAvNES10/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJONgS-M4hI1AEcnFf_FXZAtNyA2yw/photo.jpg,I couldn't find a way to link to Google Tasks. That is my first priority so I have data backup and desktop list edits.,3,1,1.30,2019-08-08 00:39:03,"Hi Stan, I do not claim this feature on the PlayStore. Why do you think it is supported? Tasks is a community driven hobby project of mine with the most popular suggestions added over time. All features are offered for free without advertising. I could add it in a future update if that helps? Thanks, Steve",2019-08-08 07:43:26,newest,com.tasks.android +Anna Barry,https://lh3.googleusercontent.com/a-/AOh14GjNoGh-DBarRiIr67VNA59MYArwXBjWv1QadntUrQ,No white space between tasks. No line between tasks. Checkboxes are in the middle of an item. One big block of text instead of neat list of tasks. Just impossible to see where each task starts.,3,0,,2019-08-07 11:26:53,"Hi Anna, I'm not 100% sure I understand your issue. There is a divider line between tasks. Tasks is a community driven hobby project of mine with the most popular suggestions added over time.All features are offered for free without advertising. Maybe you could send me a screenshot so i can see your issue? Thanks, Steve",2019-08-07 13:11:04,newest,com.tasks.android +Santosh S,https://lh3.googleusercontent.com/-zZWpOxqgfv4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOOFWFITzrPbg4zIRaQ_9JObzvoBQ/photo.jpg,"it's listing the same tasks after some time even after its checked and completed, in short it's listing the status of tasks",3,0,1.30,2019-08-01 16:54:51,"Hi Santosh, is it a recurring task? If so they are ready at midnight ready to be completed again. Is this what you meant? I hope this helps, Steve",2019-08-01 17:40:59,newest,com.tasks.android +Chris Devl,https://lh3.googleusercontent.com/-WtmAP57slhs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMlvk5Q1zzjjGjatGvvLDfZa-KtAQ/photo.jpg,Great app but tried backing up and restoring for a new phone and got a version mismatch error with no option to convert it. No mention of this beforr backing up. Disappointing.,3,5,1.29,2019-07-29 19:32:19,"Hi Chris, apologies you're having an issue. Tasks is a community driven hobby project of mine. It is offered for free without advertising and simply relies upon donations and my spare time to move forward. If you have a backup you have never lost your data, simply contact me directly and I will help you restore it. I hope this helps, Steve",2019-07-29 19:57:53,newest,com.tasks.android +"Michael Flint, SR",https://lh3.googleusercontent.com/a-/AOh14GhV0TncXrB6ge-vVrX_FFZQZBwjM31Zs4roMnL24hM,Nice app but doesn't really have what I'm looking for.,3,0,1.30,2019-07-27 07:36:07,"Hi Michael, apologies you didn't like my app. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It is offered for free without adverts and simply relies on donations and my spare time. Could you be more specific? What didn't you like? Thanks, Steve",2019-07-24 08:08:49,newest,com.tasks.android +N T,https://lh3.googleusercontent.com/-TjFumMAd_CM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPUSRoO3eltdTctjWDTDHPAV7Bv7Q/photo.jpg,"sub tasks should be possible to leave unticked - for instance I might have put the bins out, but not replaced bin bags. on your apo, if I tick the main task, it assumes I have done the sub task.",3,0,1.30,2019-07-26 06:23:09,"Hi, apologies my app was not designed specifically for you. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. Knowing how my app works, you could simply make them all tasks in a sub list instead? How you organise yourself inside my app is up to you. I hope this helps, Steve",2019-07-26 07:14:49,newest,com.tasks.android +Christine White Lightning,https://lh3.googleusercontent.com/-eseiKC6osjA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNWMC6aL-d7LGxnE2A5RIQ2fC0zhg/photo.jpg,awesome,3,0,1.30,2019-07-26 00:08:27,"Hi Christine, your review is a little confusing? Really glad you're finding my app useful. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. All features are offered for free without advertising. What would help make my app a 5 star app for you? Thanks, Steve",2019-07-26 07:06:11,newest,com.tasks.android +Balogun Olanrewaju,https://lh3.googleusercontent.com/-JW3Egx2lHFA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOTfOTeJE-lYQceHdHGYeQZTDCTDw/photo.jpg,"Its not easily understood and it does not notify if you are setting a task that the due date or due time is past. I might want to set 16:00hrm task tomorrow at 18:00hrm today, it will still set the task and will think I have set a task. Meanwhile the date is today",3,0,1.26,2019-07-21 09:04:49,"Hi Balogun, apologies my app was too complicated for you. Have you looked at the help (left side menu)? I'm not 100% sure I understand, if you set a date and time in the past, when would you expect to see a notification? I don't understand your logic? Maybe contact me directly so I can help? I hope this helps, Steve",2019-07-21 09:21:18,newest,com.tasks.android +Elina Heininen,https://lh3.googleusercontent.com/-nP-Ti8rq-BU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPxU1Ni9Ch9Ia67sTl9q6ih93NWYA/photo.jpg,Not for me.,3,0,,2019-07-19 20:09:59,"Elina, my app is called Tasks, it is a task list app, things in it are called tasks. To create a grocery list simply add your items, what my app calls them (tasks) has no bearing on what they actually are (groceries). Tasks includes context based help at first, there is a help button (main menu) and I answer all emails. Did you look at these?",2019-07-19 14:31:17,newest,com.tasks.android +Chepkoech Kiptoo,https://lh3.googleusercontent.com/a-/AOh14Gi_MKGcC96stfzP6lKjWpXW9vQjDXXI_p-zKtKGjg,still testing,3,0,1.29,2019-07-15 19:19:11,"Hi Chepkoech, really glad you're finding my app useful. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It is offered for free without advertising. What would help make my app a 5 star app for you? Thanks, Steve",2019-07-15 19:29:44,newest,com.tasks.android +Jacqui Plays,https://lh3.googleusercontent.com/-6DBBhic1ek4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMvAaVUx6ctoTTP6YtS81WoyXUjOQ/photo.jpg,Still exploring the app but so far so good,3,0,1.29,2019-07-13 06:59:45,"Hi Jacqui, really glad you're finding my app useful. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It is offered for free without advertising. What would help make my app a 5 star app for you? Thanks, Steve",2019-07-13 09:02:04,newest,com.tasks.android +Yana Valasatava,https://lh3.googleusercontent.com/-rEcZoZfyPgw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOY9gFDEEUTaN-bPUp0l_zedayDmg/photo.jpg,Nice app but UX can be improved.,3,0,1.28,2019-07-12 15:24:35,"Hi Yana, Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It is offered for free and simply relies upon its wonderful users, donations and my spare time to move forward. Maybe you could be more specific? Thanks, Steve",2019-07-12 17:18:53,newest,com.tasks.android +Divine Gonsalves,https://lh3.googleusercontent.com/a-/AOh14GgmMhaPIuTUjphqt9xHXHa3WLoB5UHZD6hRPS3r,"It's a good app. However I'm disappointed that thr alarm doesnt ring and bevause i missed the remainder I had to pay overdue library fees! Edit: the app's creator is responsive and lovely 😊 thanks for the advise, Steve.",3,0,1.28,2019-07-10 22:41:22,"Hi Davine, apologies you had an issue with my app. Unfortunately Xiaomi add very aggressive power saving to their devices. This interferes with the standard Android alarm manager functions. Please checkout the FAQs for help: https://mytasksapp.com/help/faqs I hope this helps, Steve",2019-07-10 07:11:46,newest,com.tasks.android +sarah aamarouss,https://lh3.googleusercontent.com/a-/AOh14GigaiYRda-s-0NCcEO-fVNlEz0X-zcDdBjEeSMe,i am still testing it out but so far do good... i like that there is a possibility to organize tasks according to thier importance and nature !,3,0,1.28,2019-07-08 02:02:56,"Hi Sarah, really glad you're finding my app useful. For help please checkout the help button in the main menu. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It is offered for free without advertising. What would help make my app a 5 star app for you? Thanks, Steve",2019-07-08 07:11:22,newest,com.tasks.android +Neda Omrani,https://lh3.googleusercontent.com/-V4JRFZKJuyQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPPahu_TfcmpHrj8CXe76bN3OK30Q/photo.jpg,"works great! easy to use, but I wish I had a daily organizer",3,0,1.28,2019-07-07 17:23:14,"Hi Neda, you have a couple of options. Either enable the calendar view in settings or create filtered lists (main menu) and tailor them to show the specific tasks you want. I hope this helps, Steve",2019-07-07 17:27:14,newest,com.tasks.android +Nacimzarem Halawi,https://lh3.googleusercontent.com/a-/AOh14GgMaXP-swL5KozyYzcQI7Ng-r6T-hAG9NJHqn3Y,"this app is really very good and have a simple interface and easy to create tasks unlike other apps which are really cluttered. This is what i exactly needed. However, the problem is, if the phone is locked, it doesnt ring at all. Also, the alarm doesnt go off at the right time. if i have set an alarm at 10am for a task, it some times goes at 10:10. if it is locked, it doesnt go at all. please please fix this.",3,0,1.28,2019-07-07 05:28:23,"Hi Nacimzarem, apologies you're having n issue. Unfortunately some manufacturers add very aggressive power saving to their devices. This interferes with the standard Android alarm manager functions. Please check all power optimisation settings related to Tasks app and enable where appropriate. I hope this help, Steve",2019-07-07 17:03:59,newest,com.tasks.android +AK Gmeygrlye,https://lh3.googleusercontent.com/a-/AOh14Ghdb555XfZDQTE0dncg5iztyN6z8Fn0dJu0gbo0,"Worked great in beginning. Enjoy multiple lists & sublists. But now I have a task ""haunting"" me, it won't let me delete it. Wrote developers, we'll see. Using SG8+.",3,0,1.28,2019-07-02 08:02:34,"Hi, apologies you're having an issue with my app. Please check your email :) Steve UPDATE, according to your auto reply, you may need to check your spam folder. Steve",2019-07-02 08:15:21,newest,com.tasks.android +Ron Riesenbeck,https://lh3.googleusercontent.com/-3ZKaIR82TRQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNnJyLuYBh95IKY5urxAFOC8My5sw/photo.jpg,"This app has great potential but is not there yet. Example, if a task repeats but without notification, then you manually mark it completed. The task is shown as completed & should advance to the next scheduled date. Instead it is showing up the next day as past due. But, if the task repeats with notification, then on the due date/time the system instantly advances the due date but does not show the task as completed so you have no record of the task due today & I have overlooked many. Not good!",3,2,1.28,2019-07-01 16:16:42,"Hi Ron, apologies you didn't like my app. Tasks will honour the schedule you have set, when you receive a notification Tasks will automatically update the date and time to the next occurrence. Tasks is a community driven hobby project of mine. Recurring tasks have been tricky as many users want different things. I'll add your feedback to my list.",2019-07-01 16:41:30,newest,com.tasks.android +Veronika Vixon,https://lh3.googleusercontent.com/a-/AOh14Ggox2WVqucHb2-LMtT79h27hS4ZJMThnkJzMm9O,has good features although takes a very long time to figure out how the lists work.,3,0,1.28,2019-07-01 08:40:07,"Hi Veronika, what did you find too complicated? There is help in the main menu and context based help when you first install Tasks app. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It is offered for free without advertising. What would you change to help future new users? Thanks, Steve",2019-07-01 09:03:26,newest,com.tasks.android +dublinx,https://lh3.googleusercontent.com/a-/AOh14GgRl4D5ZqBMkyg6yTkfbhrwo1NnNSHu-IF2K2TY,"like to check off sub-task via widget without opening app. (checking off task without subtasks works fine). Wish widget showed calendar. Wish app had daily, weekly, monthly, yearly trends, wish app to sync to google calendar. Would be nice if you could rearrange the components of a list (ex:move Note below subtasks ) Btw, 3 of 5 is to me a STRONG like. You guys are doing a great job.",3,0,1.26,2019-06-25 04:17:11,"Hi, apologies you didn't like my app. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It is offered for free without adverts. I will add your suggestions to my list for future improvements. I hope this helps, Steve",2019-06-11 07:24:45,newest,com.tasks.android +Christian Macalalad,https://lh3.googleusercontent.com/a-/AOh14Gjp4EzWdip6uvhGFhzk2isdb1zzrBvv3s_lBJZRdQ,"its a nice app, but I always accidentally deleting a task when scrolling side to side. please remove the delete feature when scrolling between tasks. thanks",3,0,,2019-06-23 21:04:03,"Hi Christian, simply disable the setting ""Swipe to delete"". This is also mentioned in the FAQs: https://mytasksapp.com/help/faqs. I hope this helps, Steve",2019-06-23 21:27:12,newest,com.tasks.android +Josena George,https://lh3.googleusercontent.com/a-/AOh14GjNy8WX22Mly-YS2eoxd-x8VVM-lcb8GUmyBxxEDA,Notification is not of up to my expectation. Need to keep on reminding us until we check or tick it... Besides that.. The way of organizing the tasks and prioritizing them are perfect. I do love to continue using it if they update the notification part.,3,0,1.28,2019-06-23 10:20:16,"Hi Josena, You should have received a notification which can be made persistent by enabling the corresponding setting. Tasks is a community driven hobby project of mine. it is offered for free without advertising. Please contact me directly and let mw know how you think it should work so I can improve it for future users. Thanks, Steve",2019-06-23 10:18:36,newest,com.tasks.android +Andrew Miller,https://lh3.googleusercontent.com/a-/AOh14GgQjFE1HHtJGS4adqJbf0tnsjZvQS9L-ngin-Ps8Gc,"Great job on the app, for improvements sake - I would make the lists have a font size option, or something where if the 'items' in the to do list are more than a few words, they can look more organized, given that the square resides in the middle of the 'to do item', to me they seem a bit crammed together",3,2,1.27,2019-06-19 10:22:24,"Hi Andrew, thanks for your feedback. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. I will add your suggestion to my list for future improvements. I hope this helps, Steve",2019-06-19 11:09:29,newest,com.tasks.android +Fuzzy D Pozzy,https://lh3.googleusercontent.com/a-/AOh14GhwujTqgXe837eaoWO6NBgXZaCQhKnMoy9cJoTK,"its awesome but needs an improvement,it would be nice if i could visit my notes and edit my notes online in my pc not just through the phone",3,0,1.27,2019-06-16 08:33:14,"Hi, this is not mentioned in the PlayStore description. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. This has been a very popular suggestion and so I am currently working on server code to enable list sharing, cloud backup and a web app. I hope this helps, Steve",2019-06-16 08:38:17,newest,com.tasks.android +Mel Bal,https://lh3.googleusercontent.com/-ANMmNZP1xfk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNDL226civ46kUXjDob0VughOyuyQ/photo.jpg,"So disappointed to lose everything. I didn't realize the app didn't save your lists. Got a new phone and everything transferred but because this app doesn't have you log in, everything is gone. I had several important lists saved to prepare for my upcoming baby and it's all gone. I'll never remember it all. Time to look for something else to use. Response: From the main screen I didn't see any prompting so did not know I was supposed to or how to.",3,3,1.26,2019-05-26 17:51:30,"Hi Mel, I'm not sure I understand? There is a backup/restore feature which was specifically designed to move between devices? Is this what you did? Thanks, Steve edit: there is a help menu option in main menu, did you find this?",2019-05-26 18:03:49,newest,com.tasks.android +Barrie Stricker,https://lh3.googleusercontent.com/-Iwg97p5XTWE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMjPdZf0VP4ODLbUmEWE9yVhV2zXA/photo.jpg,Quick but need moree practice to add sub lines to proper List,3,0,1.26,2019-05-21 12:57:06,"Hi Barrie, I'm not 100% sure I understand your issue? For help getting started checkout the help button in the main menu. For more detailed help with a specific issue please contact me directly. If you're not having an issue, Tasks is a community driven hobby project of mine. What would help make my app a 5 star app for you? Thanks, Steve",2019-05-21 13:01:43,newest,com.tasks.android +Eman Al Alili,https://lh3.googleusercontent.com/a-/AOh14GgCRbvPbQOvNS7XtMXqZiN9Ow0oV-0dMdb63o83th4,some time it's not working not reminding me,3,2,1.26,2019-05-21 06:50:11,"HI Eman, unfortunately some device manufacturers add very aggressive power saving to their devices which interferes with the standard Android alarm manager functions. Please check all power optimisation settings and enable Tasks app where appropriate. I hope this helps, Steve",2019-05-21 07:16:11,newest,com.tasks.android +Grace Heng,https://lh3.googleusercontent.com/-poRcYvI74eg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMC-isz72d1azd47TZ3qQwx4ZecKg/photo.jpg,"Love the interface and how easy and helpful it would be, but the alarms I set do not not ring. I gave permissions to this app already, yet it doesn't. Edit: Thank you for letting me know it's a Huawei power saving issue! Are there any work-arounds the power saving mode on Huawei to still allow this app to run? The alarms are very important, without them the app is critically impaired on my device. Haha. Thanks!",3,0,,2019-05-21 03:49:59,"Hi Grace, yes, there is help available on my website: https://mytasksapp.com/help/faqs. I hope this helps, Steve",2019-05-21 07:12:56,newest,com.tasks.android +samm sssja,https://lh3.googleusercontent.com/-KBjNIqzC5so/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNlmik7-iIpY_fmAhjAA-LYC0h9iw/photo.jpg,"wish the reminder have had a repeat function(e.g. every week), so I don't have to recheck the tasks",3,0,1.26,2019-05-13 00:25:45,"Hi Samm, this is possible, simply add a date and time, (next occurrence) and add a repeat e.g. weekly. For more help checkout my website: https://mytasksapp.com/help/faqs. I hope this helps, Steve",2019-05-13 07:13:38,newest,com.tasks.android +Rachel Kackstaetter,https://lh3.googleusercontent.com/a-/AOh14GhUe1oXhiyVAY-ED-uhKV4VsD1GZ2CBNl48a2k63A,very useful and simple. nothing too fancy but still fun no complicated features. i love the multiple lists options and sub category lists. only glitch i find is returning to previous pages after typing...often i have to just hit my home button and navigate all the way back to where i was...but nothing too bad.,3,1,1.26,2019-05-10 17:46:35,"Hi Rachel, thanks for your positive feedback. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. I'm not 100% sure I understand your suggestion. Maybe you could contact me directly with more details and a screenshot to help my understanding? Thanks, Steve",2019-05-11 08:49:22,newest,com.tasks.android +Kai Xuan,https://lh3.googleusercontent.com/a-/AOh14GiBhfnu4I_5lCfZ5ZoMlE0kLyXf0x0ddZEdkc4cY8g,it has reminders but would be great to show the due date as my reminders are often days before instead of on the due date itself and what heading it was put under so know which project's task it is.,3,1,1.26,2019-05-09 00:52:44,"Hi Kai, I'm not 100% sure I understand. Maybe you could contact me directly with more details? Maybe a screenshot would help? Thanks, Steve",2019-05-09 07:33:28,newest,com.tasks.android +Imana Jyoti,https://lh3.googleusercontent.com/-WRak3UXQYBE/AAAAAAAAAAI/AAAAAAAAEpo/AAKWJJNqq6gNLFzJItLDZ-3izXT_uXpnpg/photo.jpg,its good nd loved it but need to more developed,3,0,1.26,2019-05-08 22:35:17,"Hi Imana, really glad you're finding my app useful. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. What would help make my app a 5 star app for you? Thanks, Steve",2019-05-09 07:28:03,newest,com.tasks.android +Don Kristt,https://lh3.googleusercontent.com/a-/AOh14Gh93z0MFrYrwRWtURu0MjCfoaUgGT9Jo3twgi3e,Stephen...can 2 people share a task list on their respective phones?,3,0,,2019-05-01 09:11:43,"Hi Don, unfortunately this is not currently possible. However, Tasks is a community driven hobby project of mine with the most popular suggestions added over time. This has been very popular and so I am currently working on server code to enable list sharing, cloud backup and device to device sync. I hope this helps, Steve",2019-05-01 10:02:54,newest,com.tasks.android +Jane Smith,https://lh3.googleusercontent.com/a-/AOh14GiH4xOIxrB02OqA3ONMA_RI6rgYRUb-iIt6PV-A,"I like the app but I'm not getting notifications of reminders. Have checked all the settings, might be that my phone's too old to be fully compatible",3,1,1.26,2019-04-29 19:33:45,"Hi Jane, apologies you're having an issue with my app. Unfortunately some manufacturers add very aggressive power saving to their devices. This can interfere with the standard Android alarm manager functions. Please check all power optimisation settings related to Tasks app. I hope this helps, Steve",2019-04-29 19:40:54,newest,com.tasks.android +Marc,https://lh3.googleusercontent.com/-2zVaB5VjffM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNvKLbrNl536w9GKPgbC2Exbon0wg/photo.jpg,fun and easy,3,0,1.25.1,2019-04-28 03:51:27,"Hi Marc, really glad you're finding my app useful. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. What would help make my app a 5 star app for you? Thanks, Steve",2019-04-28 09:23:17,newest,com.tasks.android +Helen Bufton,https://lh3.googleusercontent.com/-E-FbMKufng4/AAAAAAAAAAI/AAAAAAAAyOg/AAKWJJMqsESU6kEKukV4vXYXbisyRI-dIQ/photo.jpg,"just downloaded. seems to be a simple task / to do list that I was looking for. QUESTION. how do I get the app to be an onscreen Widget, which is shown on the screen shots above?? Thank you",3,1,1.26,2019-04-25 11:34:04,"Hi Helen, to add it on most devices: long press on your home screen -> select widgets -> drag and drop the Tasks widget on to your home screen. Use the list button to select a list. Note the widget is dynamic and can be resized to meet your needs. You may also have multiple widgets displaying different lists. I hope this helps, Steve",2019-04-26 07:24:08,newest,com.tasks.android +Nadjib Benkhellat,https://lh3.googleusercontent.com/-zNO5jZqZPRE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMOV8-pYzADUi5-imxXGYk9YE15kg/photo.jpg,practical and easy to use,3,0,1.25.1,2019-04-23 14:58:49,"Hi Nadjib, really glad you're finding my app useful. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. What would help make my app a 5 star app for you? Thanks, Steve",2019-04-23 15:23:28,newest,com.tasks.android +Kim Hansen,https://lh3.googleusercontent.com/a-/AOh14Ghsm7PEljEfDshj2S3QpQkoNAnRmLFm0YUNf1zH8A,Implement collaborative lists please! so crucial.,3,0,1.25.1,2019-04-19 19:52:56,"HI Kim, Tasks is a community driven hobby project of mine with the most popular suggestions added over time. This has been a very popular suggestion and so i am currently working on server code to enable list sharing, device to device sync and cloud backup. Tasks relies on its kind users, donations and my spare time to move forward. Thanks, Steve",2019-04-20 08:29:57,newest,com.tasks.android +Rama Prasad,https://lh3.googleusercontent.com/-ioRNM4sMUgs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNYcluX5Q9DtW8mNo5nUfmXIu2iyA/photo.jpg,better to improve the app features,3,0,1.25.1,2019-04-19 18:40:43,"Hi Rama, really glad you're finding my app useful. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. What would help make my app a 5 star app for you? Thanks, Steve",2019-04-20 08:28:29,newest,com.tasks.android +Perry Cyr,https://lh3.googleusercontent.com/a-/AOh14GhVAyTwnvX0uvPvlm0tbkr2I1IKPAiStyPq0nbexA,"Hi Stephen, I was getting used to using this instead of the late Inbox Reminders but some repeat reminders just aren't coming up anymore. high reviews and great until it wasn't great. There should be an option to make recurring task reminders to not have ""due dates"". It should come up and I can clear it without removing the reminder from showing up due to needing to move out the due date. Can there be just an option to make a task not have a due date and make it recurring every so often? Thanks!",3,1,1.25.1,2019-04-19 11:06:36,"Hi Perry, I'm not 100% sure I understand. If you remove the date and time how would Tasks know when to display a reminder? Thanks, Steve",2019-04-19 12:02:37,newest,com.tasks.android +Mama Rice,https://lh3.googleusercontent.com/-JYznClbM_jU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM5H_YPxlzof5VC_0iTtHvvZ7mmlw/photo.jpg,"If all you want is to make lists or be reminded of something once, then this is a great app. BUT if you want a reoccurring reminder....forget it. It won't recreate the reminder for the next occurrence once you complete the first occurrence.",3,1,1.25.1,2019-04-17 13:59:32,"Hi Mama Rice, apologies you're having an issue with my app. You are the first to report this issue on a Samsung device. In most cases this is due to very aggressive power saving which interferes with the standard Android alarm manager functions. Do you have power optimisations enabled for Tasks? Thanks, Steve",2019-04-17 14:30:53,newest,com.tasks.android +Vladimir Rubinets,https://lh3.googleusercontent.com/a-/AOh14GjPrIsB9tzCH5XyHBiLk_Sl41qZV5z73B74JZP_sA,"One of the billions of to-do lists app. Nothing special. Unpredictable non-intuitive behavior, as usual. Useless hints for features, that are obvious. I've thrown this app away after the third time, when I accidentally removed my task while simply scrolling the list.",3,0,1.25.1,2019-04-17 06:52:16,"Hi, apologies you didn't like my app. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. What unpredictable behaviour did you experience? Tasks is designed to work for as many users as possible hence the simple hints. And finally swipe to delete can be disabled in settings. I hope this helps, Steve",2019-04-17 08:12:28,newest,com.tasks.android +Joby Mon,https://lh3.googleusercontent.com/a-/AOh14GjvE66iTxPATLeJMU8ESB252YDApzSISRyLLn1a,"I'm using this app for quite some time, it has big problems which forcing me look for another app, it doesn't remind me on time, all the reminders work when I open this app at that time it was too late.. What the use having this app.. Please correct this problem or else I am happy the all the options and features.. Thank you",3,1,1.25.1,2019-04-15 16:17:20,"Hi Joby. Unfortunately Oppo add very aggressive power saving to their device which interferes with the standard Android alarm manager functions. Please check all power optimisation settings related to Tasks app e.g. Settings > Battery > Energy Saver, select Tasks and turn off Background Freeze and Doze. I hope this helps, Steve",2019-04-15 17:00:07,newest,com.tasks.android +Rain Cramer,https://lh3.googleusercontent.com/a-/AOh14GhlVucEIgu7u-Vyvd-h8OjgrcSZBUzIz5oZ0S73Jc4,"Just Downloaded so far great, but I'm looking for an application I can use between two or more, i.e. minors etc. Where I can send a task via messenger for example. does this app upload if the other user also has Task?",3,0,1.25.1,2019-04-14 19:34:40,"Hi, this is not currently possible. Tasks is a community driven hobby project mine with the most popular suggestions added over time. It is offered for free without ads. This has been a very popular suggestion and so I am currently working on server code to enable list sharing, device to device sync and cloud backup. I hope this helps, Steve",2019-04-14 19:41:12,newest,com.tasks.android +Benjamin Carlson,https://lh3.googleusercontent.com/a-/AOh14Ghiehe108-mypJQpmFBkUSpyyOUtZLktKjXdO3akQ,it would be nice if they had the option to list tasks from top down instead of down up where your first task is at the top instead of at the bottom,3,0,1.25.1,2019-04-13 17:50:45,"Hi Benjamin, simply change the setting ""Where should new tasks be inserted"". I hope this helps, Steve",2019-04-13 18:00:45,newest,com.tasks.android +My Vivo,https://lh3.googleusercontent.com/-UlN_av61WKM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMuKNYGP8PAoCei9woH5MeGSHMNrA/photo.jpg,It was ok but only the first instance of the recurring events shows up on the list/calendar. It is important to see how recurring events impact the schedules in the future so users can avoid scheduling something on those dates/times.,3,1,1.25.1,2019-04-12 03:42:06,"Hi, each task is a single instance, Tasks does not create a new task for each occurrence as that would bloat the lists. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. I will add your suggestion to my list for future improvements. I hope this helps, Steve",2019-04-12 07:42:02,newest,com.tasks.android +Katelyn Boulton,https://lh3.googleusercontent.com/-t7wrSZQtod0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMjmt9OyOolhSIK60NdxnZc8QxW0Q/photo.jpg,"This is a great app, and would be 5 stars. The reason it isn't, the early reminder notifications stopped working for me, at all. They had been working fine, then for no reason that I can find, they stopped. I've tried reinstalling the app, but this didn't fix it. I am getting a reminder at the time my tasks are set for (or 3 - 4 minutes late) though. It's incredibly frustrating as this is the only app I've found that offers early reminders, and I'm trying to use that to complete tasks on time.",3,3,1.25.1,2019-04-10 00:25:26,"Hi Katelyn, apologies you're having an issue with my app. On some devices similar behaviour is due to aggressive power saving that interferes with the standard Android alarm manager functions. However, you are the first to report any issues on a Samsung device. Do you have any power optimisation settings enabled? I hope this helps, Steve",2019-04-10 07:24:08,newest,com.tasks.android +Sofia K,https://lh3.googleusercontent.com/a-/AOh14GgZw0x9G_-M4s5ZuXJJucndJgWjQ7DKdz7q1Lf-,useful app,3,0,1.25.1,2019-04-05 10:24:23,"Hi Sofia, really glad you're finding my app useful. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. What would help make my app a 5 star app for you? Thanks, Steve",2019-04-06 12:40:44,newest,com.tasks.android +Naqiyba Thomas,https://lh3.googleusercontent.com/a-/AOh14GhQJXlRfxUifJ-UO3PxySbw3s_4ExIDLwNtFkppqg,the app is ok . it could be simpler to work. i had to fiddle around a bit and some persons may not have the patience to do so.,3,0,1.25.1,2019-04-03 09:12:44,"Hi Naqiyba, could you give me more details so I may improve simplicity for all users? For more help checkout my website: https://mytasksapp.com/help. I hope this helps, Steve",2019-04-03 13:12:49,newest,com.tasks.android +Deborah Trusson,https://lh3.googleusercontent.com/a-/AOh14GgkfV9jd_W_yeX-GBVr7dHo6OjVknNS7Mp8fPza,Still trying to get used to the app.,3,0,1.25.1,2019-03-28 04:01:26,"Hi Deborah, for some extra help getting started checkout my website: https://mytasksapp.com/help/getting-started. If you have any questions, just ask. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. Let mw know if there is anything that would make my app a 5 star app for you? Thanks, Steve",2019-03-28 08:01:51,newest,com.tasks.android +Brian B,https://lh3.googleusercontent.com/-eKNjZjtsWxY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP6bfrcaAORSpjCHO3IgtwY_nw2cg/photo.jpg,works pretty good so far,3,0,1.25.1,2019-03-26 18:16:18,"Hi Brian, really glad you're finding my app useful. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. What would help make my app a 5 star app for you? Thanks, Steve",2019-03-26 19:54:56,newest,com.tasks.android +Rosanna Lopez,https://lh3.googleusercontent.com/a-/AOh14GgXeGkEQU9aTVZJUcf3YUlkZSUmJSZ1tLh6OTHfYQ,"love it , simple to use",3,0,1.25.1,2019-03-25 21:02:16,"Hi Rosanna, really glad you're finding my app useful. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. What would help make my app a 5 star app for you? Thanks, Steve",2019-03-25 21:44:50,newest,com.tasks.android +Kay Hong,https://lh3.googleusercontent.com/a-/AOh14Gi7nOTlrwb5ASDsSsBYCAkPlh24iZgq02iC-tD8zQ,"Great colors, list & notes with sub-lists, lots of options... but terrible to navigate. very confusing and all over the place. :/ if you want something very detailed, will spend the time to learn to use it, and want tons of colors to differiate your lists then this is for you.",3,8,1.25.1,2019-03-24 19:22:39,"Hi, apologies you didn't like my app. Tasks is a hobby project of mine. Could you contact me directly with more details so I may improve it for future users. For help getting started please checkout my website https://mytasksapp.com. I hope this helps, Steve",2019-03-24 20:13:45,newest,com.tasks.android +Michael Lucas,https://lh3.googleusercontent.com/a-/AOh14GjobmET2iYGd1vZPX-s9YREnKYONM_8k5tYSq994g,"wish It would link to my calendar so I can create, edit and complete in one location....that would make it 5 stars",3,0,1.25.1,2019-03-24 17:13:31,"Hi Michael, a great suggestion! Tasks is a community driven hobby project of mine with the most popular suggestions added over time. I will add this to my list for future improvements. I hope this helps, Steve",2019-03-24 18:11:05,newest,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,great for keeping track of things,3,0,1.25.1,2019-03-23 14:52:15,"Hi, really glad you're finding my app useful. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. What would help make my app a 5 star app for you? Thanks, Steve",2019-03-23 15:41:21,newest,com.tasks.android +charles adams,https://lh3.googleusercontent.com/-TAjUgZvjK5U/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO66aq2UUJDOBh1WZcQwMFF_QG_KQ/photo.jpg,still testing,3,0,1.25.1,2019-03-19 12:37:35,"Hi Charles, Tasks is a community riven hobby project of mine. For help getting started checkout my website: https://mytasksapp.com/help/getting-started. If you need more help, just ask :) Steve",2019-03-19 13:47:39,newest,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,nice app the only challenge have seen is that sometimes the notifcation alarm does not work,3,0,1.25,2019-03-02 20:11:14,"Hi, apologies you're having an issue with my app. Unfortunately some manufacturers add very aggressive power saving to their phones which can interfere with the standard android alarm manager. Please check all power optimisation settings related to Tasks app and enable where appropriate. I hope this helps, Steve",2019-03-02 21:35:37,newest,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,nice!,3,0,1.25,2019-03-02 13:12:04,"Hi, really glad you're finding my app useful. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. What would help make my app a 5 star app for you? Thanks, Steve",2019-03-02 18:01:08,newest,com.tasks.android +RAJESH KUMAR JENA,https://lh3.googleusercontent.com/a-/AOh14GgUhdM7G4fRqe_xcxEQV_vo7kyg_e2s9wLLCTjPAg,add option to upload to drive,3,0,1.25,2019-03-01 07:18:37,"Hi Rajesh, currently there is a backup/restore feature in settings. This creates a tasks_backup.json file in /Download. This can be uploaded/emailed etc. This is a temporary feature as I am currently working on server code to enable cloud backup. I hope this helps, Steve",2019-03-01 08:13:09,newest,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Easy to use, simple functionality but well done",3,0,1.25,2019-02-27 08:33:46,"Hi, really glad you're finding my app useful. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. What would help make my app a 5 star app for you? Thanks, Steve",2019-02-27 09:27:52,newest,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"it's a great way to make a to do list, but it never gives reminders when I want it to.",3,0,1.25,2019-02-20 14:57:41,"Hi, apologies you're having an issue with my app. Asus add very aggressive power saving to their devices. You need to change config - battery - boot manager - downloaded apps - activate the ""Tasks"" app. Help available on my website: https://mytasksapp.com/help/faqs. I hope this helps, Steve",2019-02-20 15:12:54,newest,com.tasks.android +Jewél Walvatne,https://lh3.googleusercontent.com/a-/AOh14GgNsBGZTTJbfAyaZmIzNA-CjpoSdX9Tx-UMQRJBt_8,I didn't like the way the lists would set up...,3,0,,2019-02-17 02:31:21,"Hi Jewél, could you be more specific? Tasks is a community driven hobby project of mine with the most popular suggestions added over time. How could I improve my app? Thanks, Steve",2019-02-17 09:25:41,newest,com.tasks.android +bhintuna vaidya,https://lh3.googleusercontent.com/a-/AOh14GimfQTLc9fQr1qOsHmOVMgbxfHT-i8a52XWQ-7L,This is really a great app. I'm just finding difficult to put tasks in home widgets. Could you tell me how to do this?,3,0,1.25,2019-02-13 16:49:13,"Hi Bhintuna, please check you email for help :) Steve",2019-02-13 18:00:18,newest,com.tasks.android +Jesse DeMarcus,https://lh3.googleusercontent.com/-PPj6mRG8pI4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOQfzqTVXAjBovVZzXEgTclTN77Ig/photo.jpg,its a great app but need to add a version were you can restore your notes if lost my app got erased by accident and i dont have any of my notes saved please consider adding to the app,3,0,1.25,2019-02-13 08:45:17,"Hi Jesse, there is a backup/restore feature in settings. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. Therefore, I am currently working on server code to enable cloud backup. I hope this helps, Steve",2019-02-13 09:20:50,newest,com.tasks.android +Vanya Graham,https://lh3.googleusercontent.com/a-/AOh14GguRexK1I1HWTqxNGXaCf5j4qh1DvK6-HGQ1WnAHw,just didnt use it..,3,0,,2019-02-10 12:16:24,"Hi Vanja, Tasks is a community driven hobby project of mine. What would help make my app a 5 star app for you? Thanks, Steve",2019-02-10 13:40:47,newest,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,ok. its useful,3,0,1.24.2,2019-02-08 13:30:11,"Hi, really glad you're finding my app useful. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. What would help make my app a 5 star app for you? Thanks, Steve",2019-02-08 14:01:59,newest,com.tasks.android +Allieloops,https://lh3.googleusercontent.com/a-/AOh14GjmUClLhJsfSs_8Me1EHq7-pKTOxi5lgKxn0pI9TQ,The creating of tasks is pretty straightforward and easy to use but I don't like the idea that tasks in filters are the same copy of tasks in lists. Sometimes I change my mind with which tasks and lists go to which filters and if I want to remove the filter then it deletes all the tasks within it as well. I want to be able to delete the filter without having to delete the tasks themselves entirely.,3,7,1.24.2,2019-02-02 02:11:37,"Hi, filtered lists are exactly that. A filter, this is a common software pattern to view.only the tasks you are interested in. I hope this helps, Steve",2019-02-02 08:33:39,newest,com.tasks.android +Claudia Olenici,https://lh3.googleusercontent.com/a-/AOh14Gjw01gg7h_pBc95z_3QGSHYgJi4KqFNSs-MpBWrnvw,I like it it's very reorganizing,3,1,1.24,2019-01-18 07:29:19,"Hi Alizebeth, really glad you're finding my app useful. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. What would help make my app a 5 star app for you? Thanks, Steve",2019-01-18 08:16:57,newest,com.tasks.android +Courtney Mccullough,https://lh3.googleusercontent.com/a-/AOh14Gh841BWqNqF8tXRrK3d99zG5ltwU47s8NRL02H_,"I love lists, and I really love this easy to use app, however I also love making notes to myself of a *lengthy* nature (usually when I'm trying to go to sleep), like my thoughts on a subject or what Id like to talk about to a friend, it would be amazing if there was a blank note page or lined page without all the Frills of *dates and times and priority and complete* to compete with my eyes. I dislike having to have multiple apps for same basic function. I'd chose this over all others. 👍",3,0,1.23,2019-01-15 13:28:17,"Hi Courtney, really glad you like my app. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It relies on donations and my spare time to move the project forward. Maybe you could contact me directly so I may understand your suggestion fully. Thanks, Steve",2019-01-15 14:28:53,newest,com.tasks.android +Doug Bromley,https://lh3.googleusercontent.com/a-/AOh14GjXb41-zlMDx9rUpJ38RDLY1rrr6dv1b-3gc7HpxQ,"Lacking in features compared to competition like TickTick, Todoist, etc",3,1,1.23,2019-01-13 06:42:56,"HI Doug, Tasks is a community driven hobby project of mine with the most popular suggestions added over time. Could you give a few more details of what you would like to see? Thanks, Steve",2019-01-13 09:50:06,newest,com.tasks.android +Emily Hubbard,https://lh3.googleusercontent.com/-f5moQRUwFy4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOSjoSxoxLhDcr8XSGT_aoChEF7uA/photo.jpg,"So far it's a nice, simple app that makes it easy to organise tasks. I am a fan if the widget to let me see different lists, BUT when I switch lists, it often unchecks what has already been done which kind of defeats the purpose. If this could be fixed I would increase the rating.",3,1,1.23,2019-01-12 01:15:37,"Hi Emily, apologies you're having an issue with my app. Could you contact me directly with the exact steps to reproduce as I have also have a Pixel device and have not seen any problems. Thanks, Steve",2019-01-12 07:57:56,newest,com.tasks.android +Ash C,https://lh3.googleusercontent.com/-vHI3YOL57uI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNEWkp-o8bf2fl1iCyXTETKGV4KoQ/photo.jpg,Seems nice. I wish there was a way to just do notes and not only tasks. Also...which there was a way to lock certain notes that may be private...in case your phone is lost.,3,0,1.23,2019-01-10 04:08:31,"Hi Ash, you could simply put the notes in the title field? Tasks is a community driven hobby project of mine with the most popular suggestions added over time. I will add your suggestion to my list for future improvements. I hope this helps, Steve",2019-01-10 08:06:50,newest,com.tasks.android +Alexander Kerner,https://lh3.googleusercontent.com/a-/AOh14GjyMbZGD6zsIG09MzAi8dE9YkG3hAl4FeFkHXGdEcw,"looks very good, But i would love to see cloud sync, for example with google tasks.",3,0,1.23,2019-01-09 08:51:19,"Hi Alexander. Unfortunately Google Tasks sync is not possible as their data model is far too simplistic and would limit functionality and future development. However, Tasks is community driven hobby project of mine. And so I am currently working on server code to enable cloud backup, device to device sync and list sharing. I hope this helps, Steve",2019-01-09 09:20:05,newest,com.tasks.android +桜の花弁,https://lh3.googleusercontent.com/a-/AOh14Gi6gmTn-LxwtI0PufTfBgMt-pG_2mIVOKT-2V46yg,"Nie ma możliwości ustawienia wyprzedzenia przypomnienia ani zwiększenia liczby przypomnień - dla mnie to wada. Poza tym OK. The application is basically OK, but it is not possible to edit reminders. I would like to be able to set several reminders for one event at different times in advance. It would be good to have this option in the settings to set the default reminder advance.",3,1,1.23,2019-01-05 16:59:15,"Thanks for your extra info. Tasks is a community driven hobby project fo mine with the most popular suggestions added over time. I will add your suggestions to my list for future improvements. In the meantime, you could duplicate a task to have multiple reminders. I hope this helps, Steve",2019-01-06 09:11:53,newest,com.tasks.android +April Chen,https://lh3.googleusercontent.com/a-/AOh14Ggkp2l6F_P_2bA7MzDg8GPWzHnBpd5MnzEqoLFI8A,How do I set a daily / weekly repeating task?,3,0,1.23,2019-01-03 02:09:11,"Hi April, simply add a date and time, enable the reminder, set the repeat to daily/weekly and save. For more support checkout my website: https://mytasksapp.com/help/faqs. I hope this helps, Steve",2019-01-03 08:16:00,newest,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"want to put a line through items but leave them visible. don't know how to manipulate to keep certain items from week to week, but cancel others. no instructions. but better than other apps that I've seen.",3,1,1.23,2019-01-01 01:38:50,"Hi, you should have had some context based help when first using the app. There is also my new website: https://mytasksapp.com/help/getting-started. I hope this helps, Steve",2019-01-01 02:11:50,newest,com.tasks.android +Paul Iwanaga,https://lh3.googleusercontent.com/a-/AOh14Gjl07X1i2cvs7DAmr3HnzudJjViJIpXJ3YuFB8oqA,"The MOST IMPORTANT features needed: 1) a MULTIPLE sort features like alphabetical, then by priority, date, etc (we are talking about very organized people using these lists) 2) a data import and export feature to backup & import lists (csv files so the 500k+ people who used ListMaster can transition to your app) while keeping our info safe (if our phone dies or is lost or stolen) 3) a feature to attach files or pictures Make ALL of these additional features for $1 month to get monthly income",3,1,1.23,2018-12-18 23:03:12,"Hi Paul, Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It relies on donations and my spare time to move forward. It is offered for free without advertising (as I hate ads). I will add your suggestions to my list for future improvements. I hope this helps, Steve",2018-12-18 16:16:52,newest,com.tasks.android +Rob,https://lh3.googleusercontent.com/-hmlW9AuQseQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOy63-n1C7oFusbQM76FQ4fHCYudw/photo.jpg,Should not need to tap a notification alert each time i add a new item. Should be by default like almost every other app. in testing it has only not worked once. could be great,3,2,1.23,2018-12-18 18:30:59,"Hi Rob, Tasks is a community driven hobby project of mine with the most popular suggestions added over time. I will add your suggestion to my list for future improvements. I hope this helps, Steve",2018-12-18 22:19:01,newest,com.tasks.android +Maaya Ash,https://lh3.googleusercontent.com/-Us8ojEqIDcI/AAAAAAAAAAI/AAAAAAAAAMg/AAKWJJOpPrJmL_dBJ7z00iuCFguGeQFAXQ/photo.jpg,"I would have loved it if not for the fact that there is a problem with the widget on my Huawei p20, unfortunately it gets stuck often and cannot click anything, I tried removing the widget and re-doing it, now it doesn't even show my lists, and I have to go into the app to check or add things, which of course means once I'm done with the current ones I'll delete it. A task app with no immediate access on main screen is not too helpful...",3,9,1.23,2018-12-15 11:34:14,"Hi Maaya, apologies you're having an issue with my app. Could you contact me directly with a screenshot of the issue as I've not seen this on any of my test devices. Thanks, Steve",2018-12-15 13:51:54,newest,com.tasks.android +JERRY HOLM,https://lh3.googleusercontent.com/a-/AOh14GgVWE64jr7oCw1Vx2_m-JlkwHAzFvWuaFR0__mdWg,Good,3,0,1.21,2018-11-30 05:20:42,"Hi Jerry, thanks for your positive feedback. What would help make it a 5 star app for you? Thanks, Steve",2018-11-30 09:07:47,newest,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,I am managing need a reminder,3,0,1.21,2018-11-30 04:41:57,"Hi, please see the new online help to add recurring reminders: https://mytasksapp.com/help/faqs. I hope this helps, Steve",2018-11-30 09:07:00,newest,com.tasks.android +Kds52x,https://lh3.googleusercontent.com/-QxoZjQ9Z2-s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP2chDadpcRNTEUNHvezLio71jCwQ/photo.jpg,I liked it but the due date you can't change only the due time. Also getting the feature up for the due time is hard enough so going to try a different app.,3,0,1.21,2018-11-29 17:05:02,"Hi, to change the data and time simply tap them. I have made this a little easier in the next update. I hope this helps, Steve",2018-11-29 21:13:49,newest,com.tasks.android +Alton Moore,https://lh3.googleusercontent.com/-gwJUROSd2xQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMQlEYndH1XTBk7B8wIobaXDENFZQ/photo.jpg,"Good for notes, needs export, email options",3,0,1.21,2018-11-29 04:19:38,"Hi Alton, you can export using the build in backup feature (app settings). You can share lists (share icon at the top) with gmail and email them. I hope this helps, Steve",2018-11-29 09:21:04,newest,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Nice app.,3,0,1.21,2018-11-22 13:02:38,"Hi, thanks for your positive feedback. Really glad you're finding my app useful. What would help make it a 5 star app for you? Thanks, Steve",2018-11-22 13:26:37,newest,com.tasks.android +harry sheng,https://lh3.googleusercontent.com/a-/AOh14GhQKKqvfytCi8oCleFEGiWbyn6FTwltmgAHAkJo,"It consumes too much (1/3 of the) battery, otherwise it is great.",3,0,1.21,2018-11-15 03:04:43,"Hi Harry, apologies you're having an issue. Can you contact me directly with more details of how you are using my app? II've not seen this on any of my test devices and you are the first user to report this. Thanks, Steve",2018-11-15 08:51:43,newest,com.tasks.android +Tilak Bisht,https://lh3.googleusercontent.com/a-/AOh14GiBPkeL1BoYCGeqACKf471sUe2WGkIWpGPlnQBWiAc,This application is very good. Feature rich and most powerful. Even though you should add few features in the app. 1- Repeat frequency should have hourly and 30 minutes 2- Add bullet points format in the notes section. Like Google keep have. 3- Provide database backup option with Google Drive and Dropbox.,3,0,1.21,2018-11-02 11:09:22,"There is a backup feature in the app settings. Many users sync this file to Dropbox, Google drive etc. This feature will be deprecated soon in favour of cloud backup (which I am currently working on). Tasks is a community driven hobby project of mine with the most popular suggestions added over time. I will add yours to my list. Steve",2018-11-02 11:32:18,newest,com.tasks.android +Nickolas Usher,https://lh3.googleusercontent.com/-5hRfhFUWkNg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNyLddyJOHoGH3t4d6vs4EY19OZCA/photo.jpg,"It's actually sleek, beautiful, well-designed and exactly what I would want, but without syncing it becomes much less helpful. As soon as that feature is added I will reinstall this as my primary note app.",3,0,,2018-10-20 18:12:12,"Hi Nickolas, thanks for your great feedback. Sorry Tasks is not currently for you. I am currently working on server code to enable device to device sync, cloud backup and list sharing. Maybe in the future :) Steve",2018-10-20 18:30:39,newest,com.tasks.android +Alex Pride,https://lh3.googleusercontent.com/-w8D1WGQ8gJk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJME2Y72eK--QeTIHeeol3x--ZREXw/photo.jpg,"Good start, would love to see clean material design implemented. Personally, I need the option of a full task list view in my task widget. Again, good start.",3,0,1.21,2018-10-18 03:53:48,"Hi Alex, you could enable the all task list in settings and then choose that in your widget. What other material design aspects do you think are missing? Thanks, Steve",2018-10-18 09:36:45,newest,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Could be easier to set up and save notes. Was confusing at first but a good app,3,0,1.21,2018-10-12 23:48:11,"Hi, apologies you found my app confusing. Could you contact me with any suggestion to help future users. Thanks, Steve",2018-10-13 11:12:22,newest,com.tasks.android +Rémi C.,https://lh3.googleusercontent.com/-BLn1b4jp1BA/AAAAAAAAAAI/AAAAAAAAE74/AAKWJJM2iBt13BUqckurK5zh-3xpRmpvHw/photo.jpg,"It seems like a good app but I haven't found a way to enable a permanent notification for quick task adding. Is it only possible? EDIT: No, I mean a permanent notification that works like your widget, allowing to quickly add new tasks without opening the app. SplenDO and Any. Do have this feature for instance.",3,9,1.21,2018-10-07 08:25:30,"Hi Rémi, you can add a notification for any task by adding a date and time, enable the reminder and save. Is this what you meant? EDIT: I will add it to my list for future improvements. Thanks, Steve",2018-10-07 08:44:30,newest,com.tasks.android +Emmanuel Alen,https://lh3.googleusercontent.com/a-/AOh14GjH2eYQlL5rUcrLnAWUumbqkONxNtiqJNJXJ0c2,"The app is great! Thank you for providing us this gem! However we work in several devices, we are missing out the multidevice option... and for that reason we may migrante elsewhere. Hope it comes available, thx.",3,0,1.20.3,2018-10-04 10:01:43,"Hi, this has been a very popular suggestion. I am currently working on server code to enable device to device sync, list sharing and cloud backup. I hope this helps. Steve",2018-10-04 10:12:06,newest,com.tasks.android +Mac Schaff,https://lh3.googleusercontent.com/a-/AOh14GivixhVEZwi1TW4uuQ_oDgZMSjI3G9sTZvBEjBnGA,I miss an option for recurring tasks like do something every 3 days where if I check it a day later that automatically shifts all following tasks by one day.,3,0,,2018-10-02 10:10:59,"Hi Mac, to create a recurring task simply add a date and time (next occurrence), enable the reminder, give it a repeat e.g. every 3 days and save. I hope this helps make Tasks a 5 star app for you. Thanks, Steve",2018-10-02 10:28:08,newest,com.tasks.android +Anon Emus,https://lh3.googleusercontent.com/a-/AOh14Gjzmj58zA3obfSfSm7RakFq2jZI3kM25D7j2y6QEQ,"Good app for setting daily tasks, if it had hourly reminders/alarms it would be great for me, being notified by alarm makes up for it though as most just have short notification sounds that i never hear.",3,0,1.20.3,2018-09-27 10:31:27,"Hi, thanks for your suggestion. I will add it to my list for future updates. Steve",2018-09-27 10:45:59,newest,com.tasks.android +Allian Abogado,https://lh3.googleusercontent.com/-Tm5agEok2fs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPKm2LUaKrE9TQLB2KI7F0zW3LRXQ/photo.jpg,"No need for floating button on widget i think, add button on widget needs to be smaller. Also, possible to make the widget until 2x2?",3,0,1.20.3,2018-09-26 13:34:09,"HI Allian, tasks is a community driven project of mine with the most popular suggestions added over time. I will add yours to my list. Steve",2018-09-26 15:54:56,newest,com.tasks.android +Lpedraja2002,https://lh3.googleusercontent.com/a-/AOh14GhQDGDyFbYFi1m010Sw9M3Ra7LvcauFTOsaes_u,"I like how minimalistic the app is. It's very easy to use and has just the necessary features. My biggest complaint is that I can't set a custom due date. Whenever I tap the due date, I get predefined reminder and I can't seem to change it no matter what. I'm using an LG Q7 Plus, don't know if it's a bug with the device or what. Will update the score if this issue ever gets fixed.",3,2,1.20.3,2018-09-24 06:11:33,"Hi, to change the date and time simply tap the corresponding text. Please contact me directly if you\re still having an issue. Thanks, Steve",2018-09-24 10:36:44,newest,com.tasks.android +Joanne Placido,https://lh3.googleusercontent.com/a-/AOh14GgjywzN480f_dvBjVS0xtPzPCPyvjxBzL9fYQofOg,"From the reviews, this app sounds awesome. Unfortunately, I can't use it because I need an app that syncs with Google Tasks.",3,0,1.20.3,2018-09-17 03:02:31,Hi Joanna. Apologies Tasks was not for you. Steve,2018-09-17 13:50:25,newest,com.tasks.android +C Yumol,https://lh3.googleusercontent.com/a-/AOh14GgX9EmElLR_JertOlE5XCLi94C15Aw_fk2mqVpU,Simple and easy to use.,3,0,1.20.3,2018-09-15 03:23:46,"Hi, thanks for your positive feedback. What would help make it a 5 star app for you? Thanks, Steve",2018-09-15 19:26:23,newest,com.tasks.android +Wasi imam,https://lh3.googleusercontent.com/-Z1-XcLVrc7Q/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMg6XxoQTmiLMB2ChEbrP6ul7-TQQ/photo.jpg,If more than one task is enabled for same time then it hangs. I have to keep 1 min difference in both task. Pls fix it.,3,1,1.20.1,2018-09-03 03:52:29,"Hi, I'm sorry you're having an issue with my app. Could you please email me with more details? Thanks, Steve",2018-09-03 09:06:28,newest,com.tasks.android +Anna Yaroslavtseva,https://lh3.googleusercontent.com/a-/AOh14Gj3Om9LKNTkhBo0lTYLJgg0egAIszeg1h9FAcm-1Q,Why notifications do not work e I y day? I put daily,3,0,1.19.2,2018-08-29 04:44:54,"Hi Anet, I'm sorry you're having issues with my app. After searching I believe there is a security app on Meizu devices. You may need to enable something. Power ->; Standby management ->; enable Tasks reminder. If you're still having problems, please get in contact. Thanks, Steve",2018-08-29 09:12:19,newest,com.tasks.android +Kevin Ecker,https://lh3.googleusercontent.com/a-/AOh14GgMbVZQzmOy5KzfqSKBv3nkyfbl-vuRRIfjng1H3A,"A decent to do list app EXCEPT for the ads. I understand ads are necessary and accept that. But forced full screen ads with sound that even when they are done don't let you close them and force you to the play store. If you back up out of the play store, the ad starts all over again.",3,0,1.19.2,2018-08-26 01:51:46,"Hi Kevin. Tasks is free without ads. It always has been and always will be. Is your review for another app? Thanks, Steve",2018-08-26 07:55:40,newest,com.tasks.android +Elissa D,https://lh3.googleusercontent.com/a-/AOh14GgBwh2AjwoOj-PBLWWbGuz-8nZCrzJVYFslhF3rJVY,"Reminders set to repeat daily don't repeat. The only reason I wanted this app was to have ongoing daily reminder notifications, so I will be uninstalling. Really liked the other features though!",3,0,1.19.2,2018-08-24 01:44:25,"Hi Elissa, Currently once a task is set as complete it will not repeat. This has been popular feedback from users. I have working on improvements to reminders which will be pushed as an app update in the coming days. My app is a constant work in progress based on user feedback. I'm sorry it didn't meet your needs. Steve",2018-08-24 08:19:40,newest,com.tasks.android +Brad Mihai,https://lh3.googleusercontent.com/a-/AOh14GikM2-V9Uz3M9GmLxE_Vr3HVgbRWROG5WqtZDkQZA,I thought i finally found my reminder :) But this app lacks 2 important aspects: 1. No possibility to sort tasks in chronological order (why ? :) ) 2. No persistent sound. Like any other rekinder app i ve met (why ? :))) ) Plus no subtasks,3,1,1.19.2,2018-08-23 20:35:00,"Hi Brad, there are many sort options for lists. Please use the menu (top right) and tap sort. I have been working on improvements to reminders which include an alarm instead of a notification (persistent sound). This will be available in the coming days as an app update. I will add sub tasks to my list for future improvements. Cheers, Steve",2018-08-24 08:16:28,newest,com.tasks.android +Sage,https://lh3.googleusercontent.com/a-/AOh14GiMXG2dXEzhS1Lq67Osi7BO2mI251I7Sap4fNO0ew,Nice looking app though no Google sync,3,0,1.19.2,2018-08-12 22:43:30,,,newest,com.tasks.android +Gracie,https://lh3.googleusercontent.com/a-/AOh14Gisi256aP80_1uBlyQjo0F3L6FA-_fWyj6gV2x5v5A,"Nice app. I wrote the developer and was able to get a prompt response. +Unfortunately for me, the backup and restore process did not work at all +and I will be unable to actually use it. I may look for another update and +try at a later time, but for now this just is not smooth enough between +different devices for me.",3,4,1.19.2,2018-08-09 12:18:12,"Hi, this has been a very popular suggestion and so will be added in future updates. Thanks, Steve",2018-08-09 09:53:12,newest,com.tasks.android +Jeff Davies,https://lh3.googleusercontent.com/a-/AOh14GgdFe8SOL3yr2hLoWmi-hozTlXjMEqi8-Em-SC-aw,"As a taxi driver I do runs for two friends at all times of the day and +night. I've downloaded loads of these things trying to find one that I can +simply put in a job with a simple title like 'Bristol Airport Pickup', with +the time I want to be reminded (not the time I make the first pickup) and +one that I can add notes to for phone numbers, first pickup address and +fare. Most importantly it must sound the notification even if mute is on at +night and early mornings when ai am asleep. Every one I tried did the first +two, none did the latter two. This one. It does let me add notes but sadly +does not make the notification sound when the phone is on silent which is a +big oversight - so it is of no use to me apart from runs when I am awake. +Please fix tbis and I will hapily buy it. Please also add a feature so I +can choose what reminder sound I want instead of it using the default +notification sound.",3,0,1.19.2,2018-07-25 01:29:18,"Hi Jeff, thanks for trying my app. I am currently making improvements to reminders. Changing the notification sound has been a popular suggestion and so will be added. Regarding overriding silent mode, I will investigate what can be done. Cheers, Steve",2018-07-25 07:18:46,newest,com.tasks.android +Leif H.,https://lh3.googleusercontent.com/a-/AOh14GgmYSgJ7SIJoFWPW5yElUY0hwbR26N4sJj6ghKY4Q,"I'm looking for a suitable alternative to Any.do, but this isn't it. I'd +like to be able to add tasks for ""tomorrow,"" ""upcoming,"" and so on, +otherwise I will have to either add each task daily, or have 1 large +overwhelming list. Having the option to see my tasks day by day is a huge +stress-reliever for me, so unfortunately I can't choose Tasks over Any.do +at this time. The rest of the app is great, with color coding and so on. I +just really need a daily option.",3,7,1.19.2,2018-07-19 14:19:34,"Hi, thanks for trying Tasks. Due dates and filtered lists have been very popular suggestions by other users and so will be added in future updates. Cheers, Steve",2018-07-23 10:28:23,newest,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Has good potential. You guys should allow the app to display the date when +a task is due. For example if I have to remember what day something is due +(i.e. haircut appt Wed, 7/25/18)",3,0,1.19.2,2018-07-17 14:11:11,"Hi Nikolas, currently if task has a reminder set it will be displayed. Is this not the case for you? I've had lots of feedback around reminders and so am currently making enhancements. I hope this helps. Steve",2018-07-17 14:52:43,newest,com.tasks.android +Dennis Bauer,https://lh3.googleusercontent.com/a-/AOh14GgE6U8zxrb6Uvb0Y-shF7hsar7JOejRJnkhgXU2jA,"Nearly perfect in terms of design, usability. The overall concept and user +experience matches what I need. I would rate it four stars, if sync to +cloud/other devices was added and five stars if sharing/collaboration was +possible.",3,0,1.19.2,2018-07-14 05:44:34,"Hi Dennis, thanks for your positive feedback. I am currently working on enhancements to reminders. Once complete I will begin work on server code to enable cloud backup, device to device sync and list sharing. I hope this helps. Steve",2018-07-15 11:33:25,newest,com.tasks.android +Kristin Holmes,https://lh3.googleusercontent.com/a-/AOh14GiZPoEhIWw34mHGb1DWe3ReCusSznBUJRWDy64,"Would love to have collaborative editing and sharing of list so that I can +create list and share it to my sons phone so it will be in his task list.. +otherwise great app!",3,3,1.19.2,2018-07-07 07:54:21,"Hi Kristin. A great suggestion and one that has been very popular with other users. I will add it in future updates. Thanks, Steve",2018-07-07 10:57:53,newest,com.tasks.android +Dacia V,https://lh3.googleusercontent.com/a-/AOh14GgSrbfw-6iQyX4POkBWw1XfD-NTPqLUnLAcQf4cmYM,"It's ok. There's no actual options to make a list. I have to number each +item (task, action, etc) myself & in paragraph form. There's no proper list +formatting in there. Besides that, it's alright. Not what I had hoped :(",3,0,1.19.1,2018-06-26 08:06:01,Hi Dacia. I'm sorry my app is not quite what you are looking for. Could you email me with more details of what exactly you are looking for? Hopefully I can help make it a 5 star app for you. Steve,2018-06-26 14:25:48,newest,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Beautiful 😆,3,0,1.18.1,2018-06-04 08:45:29,"Hi, I'm glad you like my app. May I ask, what would make it a 5 star app for you? Please email me any suggestions. Thanks, Steve",2018-06-05 20:27:28,newest,com.tasks.android +Ikan Eze,https://lh3.googleusercontent.com/-u6zjnXdZQJ8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM4Ty2xFpXAPjFs0XhPoBlB4gkQtw/photo.jpg,"Kindly add selection ringtones for alarm. There should be an option to +select alarm and the ringtone you want",3,0,1.18.1,2018-05-31 19:24:25,"Hi, this has been a really popular suggestion and so will be added in a future update. Thanks, Steve",2018-06-01 08:02:10,newest,com.tasks.android +radja bondoc,https://lh3.googleusercontent.com/-mKVfv9tADUM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOAG89-x5UjwYXyC7-U668rYzrWbw/photo.jpg,"i accidently swipe going to the right it erase task i have to write it +again but everything else is ok",3,0,1.18.1,2018-05-28 07:23:13,"Hi, you can disable this by disabling ""swipe to delete"" in settings. Hopefully this helps make Tasks a 5 star app for you. Thanks, Steve",2018-05-28 08:51:03,newest,com.tasks.android +C PHILLIPS,https://lh3.googleusercontent.com/-YsCH17LvEwc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOQ_c0IOcY5NhCza26Qwqz1e5M7MA/photo.jpg,"I just downloaded to try and noticed that thr color selection do no good +since you are not able to change the font color to be able to read clearly +over the chosen color. Only option is white. No good.",3,0,,2018-05-13 09:58:00,"Hi, I'm sorry you're having issues with my app. I will add your suggestion to my todo list. Thanks, Steve",2018-05-14 09:37:46,newest,com.tasks.android +Tim van Laun,https://lh3.googleusercontent.com/a-/AOh14Gj8a1T1qPKiEoWN7yZhzI_kaQ9iaBDEW2TrqJIr1Q,"2 things would persuade me to make this my task list: automatic synching +via Google drive, and an Ike-like view (a 2 by 2 table showing urgent vs +important tasks). It's good to be able to categorise tasks into lists but +equally necessary to know where you need to spend your time. Google +""Eisenhower matrix"" for ideas. Would also love to see a Chrome app for +desktop use.",3,0,,2018-04-24 21:36:23,"Hi Tim, all great suggestions. Cloud sync has been a very popular suggestion and so will be added in a future release. However this will take a little time as I am currently working on a widget and enhancements to reminders. I have also been thinking about a ""smart list"" idea that may give you want you want. Cheers, Steve",2018-04-25 08:08:19,newest,com.tasks.android +Bree Jones,https://lh3.googleusercontent.com/a-/AOh14GjO14hDIYj5KcovWV5RJIUunfKKkB82VuP2q6yTiA8,"Generally I liked this app but I found it very frustrating that I couldn't view all my tasks in one area, ie. Inbox. Or by by date. I had to go through each list individually.",3,0,1.16.2,2018-04-11 04:02:39,"Hi Bree, I'm sorry you're having difficulty. There is an all tasks list available in settings. Once enabled, this can then be sorted date. Hopefully this helps make it a 5 star app for you. Thanks, Steve",2018-04-11 07:45:22,newest,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Can you please enable different ringtone modes and if the app, could notify us if we have missed a reminder it'll be great",3,0,1.17,2018-04-09 09:40:47,"Hi, thank you for your suggestion. I will be adding enhancements for reminder in a future update as I've received a lot of feedback. Cheers, Steve",2018-04-09 12:59:51,newest,com.tasks.android +Makand Dugh,https://lh3.googleusercontent.com/a-/AOh14GhOtPH3xaWRIuLAyQ6VPkr1fGtU4d-Hu2wgxYZvZSk,"Haven't come across a better app if it's type. It's not a project management tool but you can have a list in your reminder! It's probably a big leap but if i could share the task list with somebody without exporting that would be cool. The notification, repeat, export control, is brilliant. Really helps me organise my home tasks without being frustratingly intrusive and distracting. I've tried a lot of applications, this is second to none!",4,15,2.3.2,2020-04-02 09:15:02,"Makand, Tasks is a community driven hobby project of mine with all non cloud features offered for free without advertising. It simply relies on donations, premium subscriptions and my spare time. This has been very popular and so i am currently working on a browser based web app. Once complete I will add list sharing. I hope this helps, Steve",2020-04-02 10:07:55,most_relevant,com.tasks.android +Jennifer Brisbin,https://lh3.googleusercontent.com/a-/AOh14Ghx0XHZtHU2-pMf0QUEx1qRXDcwuCdQAYF7VE2JdQ,Works great at keeping me organized. I have not had it long so I will have to explore the features. Update-New phone. I can now use the microphone to add tasks. This app is just smart enough. I use it as my own personal to do list separate from Google Tasks which I use for work. It's simple with just enough features and not all the predictive noise threaded through all Google apps.,4,0,2.3.2,2020-04-03 02:39:22,"Hi Jennifer, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-02-17 13:59:39,most_relevant,com.tasks.android +Dominik,https://lh3.googleusercontent.com/a-/AOh14GiFLXPaWFwTvgQyos1hrtfgxhSOBLo5Hb7qLVld,"This app looks great and most of the functions seem to be very practical. There isn't any Windows or browser-based version for usage on a computer, is it? If not, is something in planning? As Wunderlist will be shut down, I'm in search for a good alternative, and this app WITH a sync function would be amazing! Edit: Showing the calendar view in a widget would be fantastic as well.",4,34,2.3.1,2020-03-19 20:48:18,"Dominik, Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It simply relies on donations, premium subscriptions and my spare time to move forward. I am currently working on a browser based web app which should be available in the coming weeks. I hope this helps, Steve",2020-03-20 10:31:54,most_relevant,com.tasks.android +Jamie Barrow,https://lh3.googleusercontent.com/-II1EUayfmoU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOA0sX0ba0psNBFKuJ0MbaNvABlxQ/photo.jpg,Great task and project management app. User friendly and versatile. Lists and sub lists work well for most to do list requirements. Would just recommend to developers to introduce a couple of improvements... 1) there should be a difference between the date you plan to do a task and its deadline/due date. 2) would be great to be able to add a description and deadline to a sub list thereby creating little projects.,4,0,2.3.2,2020-04-03 08:48:29,"HI Jamie, nice suggestions! Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It simply relies on donations, premium subscriptions and my spare time to move forward. I will add your suggestions to my list for future improvements. I hope this helps, Steve",2020-04-03 10:23:09,most_relevant,com.tasks.android +Ryota Kise,https://lh3.googleusercontent.com/a-/AOh14GgRI5oC2wtjfUDfIIi981oMbOXo_YbUa8BL5rdN,"I really liked this app, however I have downloaded it yesterday and created tasks which repeats daily but it always shows tasks date 30 March. It was just the date I created it, it repeats daily so the dates should change too. It feels as if I am checking undone tasks from the past. Even in the calander view these tasks are not added to 31 March. It's annoying me. Please do something about it.",4,0,2.3.2,2020-03-31 00:45:09,"Hi Ryota, I'm not 100% sure I understand. Maybe you could simply email me (tasks.list.app@gmail.com) with more details and so I may help you. Thanks, Steve",2020-03-31 07:47:34,most_relevant,com.tasks.android +Rahul Nihalani,https://lh3.googleusercontent.com/a-/AOh14Ggz_zbce3Rxq5oy3yB4U2jZngRgc710s4kg5I3q,"I wish I could give it 5 stars. Only thing missing is a Windows/Linux app for syncing, which I can't do without, and that's the only thing keeping me away. I would happily pay for that feature. If you just need an Android app, no need to look elsewhere. It has everything you can ask for. The UI is great, and very intuitive.",4,0,2.3.2,2020-04-01 16:34:56,"Hi Rahul, Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It simply relies on donations, premium subscriptions and my spare time to move forward. I am currently working on a browser based web app which I am hoping to release in the coming weeks. I hope this helps, Steve",2020-04-01 17:27:48,most_relevant,com.tasks.android +Lisa,https://lh3.googleusercontent.com/-pNhRTnDevNE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNJ7t2WWXPq6ESZtnOI77gnfrIl4Q/photo.jpg,"I like: * the way it separates lists (""sub lists"") horizontally, and I can switch between them conveniently with swipes, though I tend to accidentally delete tasks when trying to switch lists * I value the convenience of swipe to delete the most * being able to quick add tasks from the main screen, removes one extra tap step * being able to highlight important tasks, but wish it would automatically pin them to the top. Feature I wish most for: Image attachments. Idea: Location-based reminders?",4,13,2.3.0,2020-03-18 16:17:43,"Hi Lisa, thank you for your great feedback and suggestions! Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It simply relies on donations and my spare time to move forward. I will add your suggestions to my list for future improvements. I hope this helps, Steve",2020-03-18 16:30:09,most_relevant,com.tasks.android +Monica Gott,https://lh3.googleusercontent.com/a-/AOh14GgCdZ3wLE0e0Od806Z_5IkESnHJpQPBCuySpBc7,"Tasks:ToDo is a work in progress. Nevertheless, it is very handy, and I am happy to have it. (I'm a former Wunderlist user.) I believe the app developer will continue to tweak Tasks: ToDo. Not that it's not helpful now. I do miss the deleted items not being ""hidden"" under the category of tasks they came from. This was very handy for shopping (especially groceries & other places I shop for), I could peruse my completed list for things I may have forgotten. Thanks so much! Continue the good work",4,11,2.3.2,2020-03-26 20:36:45,"Hi Monica, instead of deleting tasks whilst shopping simply click the complete checkbox. Then in settings enable the ""Move completed"", this will move completed Tasks to the bottom. I hope this helps, Steve",2020-03-27 08:55:39,most_relevant,com.tasks.android +Rachel Tzuberi,https://lh3.googleusercontent.com/-6qK9E7twmu8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNxYwBfYTl2Vh3dzdQHES0_NDDRBg/photo.jpg,"Great app so far, very user friendly. Would love an option to duplicate a hole list (found an option to duplicate sub-list only). Thanks!",4,0,2.3.2,2020-04-03 19:22:21,"Hi Rachel, thanks for your suggestion. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It simply relies on donations, premium subscriptions and my spare time to move forward. I will add your suggestion to my list for future improvements. I hope this helps, Steve",2020-04-03 19:55:27,most_relevant,com.tasks.android +Cam Crea,https://lh3.googleusercontent.com/-lzcixxOVVD8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNmGoj-v5sL0vTCQ-mw5OcwLAg0fg/photo.jpg,"Thanks for the response. The fact that an event repeats should have nothing to do with the type of notification and I think there should still be a repeating icon if no notification is set. It is possible to want an event to repeat without getting an alert. Also, why is the default ""notification"" when there is a date? All tasks with dates do not require a notification.",4,9,2.2.0,2020-03-09 14:08:09,"Hi Cam, you will see the repeat icon if you set the reminder type to to notification or.alarm. I hope this helps, Steve",2020-03-09 13:40:11,most_relevant,com.tasks.android +simple beautiful,https://lh3.googleusercontent.com/a-/AOh14GiAqrRqxZWdKlxNREsp9FnyWDe7QeTkznkSln4maw,To do list works good but it is no idiot proof. Developer needs to add more walk through instructions at start when the app is downloaded. When people commit on issues- the developer replies offended- but the developer did not make a idiot proof way of solving these problems that a newbie with little patience would have- instead they lash out - its not the user's fault- its the developer fault for not understanding the concept of idiot proofing a sound product- face it-people don't read!,4,2,2.2.0,2020-03-15 19:01:17,"Maybe you could help? When you first open Tasks there is context based help. There is a ""Help"" button in the main menu with a getting started guide and lots of tips and tricks to get the most out of Tasks. What more would you like from an ""idiots guide""? Please email me (tasks.list.app@gmail.com) with your suggestions. Thanks, Steve",2020-03-15 18:27:31,most_relevant,com.tasks.android +SCB Watson,https://lh3.googleusercontent.com/a-/AOh14GhcAiZ_YiS_aWjd9X9yAyydNXKh7DJvYhSdQz6l7T8,Good app. Effective at reminders. Easy to use and read. Looked at quite a few task apps. Happy i picked this.,4,0,2.3.2,2020-04-01 04:44:27,"Hi, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. It simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-04-01 07:25:25,most_relevant,com.tasks.android +Heather Speck,https://lh3.googleusercontent.com/a-/AOh14GjrtZE5_uTjLp_EfyOmHP4J1WVpIvGB6e9_HUwB,Definitely helps me to stay organized a little easier. I personally use it in conjunction with an old fashioned pen and paper when I have a lot to get done in a day. The only complaint I have with it is that I wish I could add additional reminders for the tasks instead of having to choose a reminder time based off of a due date I set. Other than that it's great and easy to use.,4,13,2.2.0,2020-03-12 23:03:14,"Hi Heather, really glad you're finding my app useful. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It simply relies on donations and my spare time to move forward. I will add your suggestion to my list for future improvements. I hope this helps, Steve",2020-03-13 07:54:15,most_relevant,com.tasks.android +david scanlan,https://lh3.googleusercontent.com/a-/AOh14GiLkoD3odVv0LVrXr5e2KgzcZjJ9-DwN7hG5-xM4Q,I have reminder set for every weekday morning at a certain time. Hasn't reminded me at the right time yet. Always hours after I get it.,4,0,2.3.2,2020-04-01 04:20:04,"Hi David, apologies you're having an issue. However, this is an issue with your device not Tasks. Unfortunately Samsung add very aggressive power saving to their devices which breaks the standard Android alarm manager functions. Checkout the help (also available via the ""help"" button in the main menu): https://mytasksapp.com/help/faqs, Steve",2020-04-01 07:27:29,most_relevant,com.tasks.android +Mudassar J,https://lh3.googleusercontent.com/a-/AOh14GiSuwBQS-bY-5nOFAeP2ETKdobZoDJoD8hHfdKaSw,"It's a good app for task reminder but it still needs some thing more. One needs to go into the menu to switch to the lists no matter which list has an upcoming task. It should have option to show the mix of tasks from all lists in tiles/widgets on app home interface. I really like the snooze option, quite straight away.",4,1,2.2.0,2020-03-12 04:32:36,"Mudassar, this is possible. Simply create a filtered list (main menu) with the default options. This will create an all tasks list that can be displayed in the app or widget. For more help with Tasks features checkout the ""Help"" button in the main menu. I hope this helps, Steve",2020-03-12 09:16:27,most_relevant,com.tasks.android +The Ragnorok,https://lh3.googleusercontent.com/-3cwjvctush0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJONPRL5CSoSnZh9jXUhDwmboUNqXA/photo.jpg,"For some reason I can't edit my other review on the phone, or if I can it's not clear how. Lists are not in an intuitive place imo, so I missed them entirely, resulting in that erroneous post. If this supported arbitrarily nested task levels I'd give it five stars, but I'm definitely going to use this. R.I.P. Wunderlist",4,4,2.2.0,2020-03-14 13:51:04,"Hi, Tasks is.a community driven hobby project of mine with the most popular suggestions added over time. All non cloud features are offered for free without advertising and it simply relies on donations/subscriptions and my spare time to move forward. I will add your suggestion to my list for future improvements. I hope this helps, Steve",2020-03-15 10:50:09,most_relevant,com.tasks.android +Thom Gallagher,https://lh3.googleusercontent.com/a-/AOh14GgqkbS1Dbg1ZeysFtISZ2DCFvk4N3P_iSp1iyjNoYo,Best task app I've found with reminders and a variety of tasks types. Keep up the good work.,4,0,2.3.0,2020-03-19 23:44:59,"Hi Tham, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-20 10:07:49,most_relevant,com.tasks.android +Mary Rose Albo,https://lh3.googleusercontent.com/a-/AOh14GgscVrwsg3GgTVIS1z7GVQFl_DLUd3HkFKDtm46,"It would be better if we can insert pictures in the tasks. But all in all, it was cute and helpful!",4,0,2.3.0,2020-03-29 11:52:58,"Hi Mary, thanks for your suggestion. Tasks is a community driven hobby project of mine with the most popular suggestions added over. It simply relies on donations and my spare time to move forward. I will add your suggestion to my list for future improvements. I hope this helps, Steve",2020-03-29 12:53:38,most_relevant,com.tasks.android +Jenő Daczó,https://lh3.googleusercontent.com/-bmh6Jdy4Ulc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPC4bW7cHISI92bCLBUeonkmJW4Vw/photo.jpg,"The app looks and feels good, but it just doesn't work for me. I wanted this app mainly for the widget but it is almost useless. When you cross of an item it doesn't show up in the widget and when you edit the list in app, it doesn't update on the widget. According to the dev it's Xiaomi's fault, which I think is a possibility so be aware of this when you download it.",4,2,2.1.0,2020-02-06 13:52:44,"Jenő, apologies you're having an issue with my app. This is an issue with your device not Tasks. Xiaomi add very aggressive power saving and make other changes to the Android OS which break things. Have you considered Googling for the problem with your device? Please check all power optimisation settings and enable where appropriate.",2020-02-06 13:50:59,most_relevant,com.tasks.android +Rick R,https://lh3.googleusercontent.com/-DvW4F-rGyCs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN98Tkf8hpArZIhuHsjNDJStQFs_g/photo.jpg,"I like the app but there is one thing that annoys the hell out of me. I use a number of sublists for shopping. Whenever the screen changes orientation or Auto rotates the app defaults back to the first sub list and I have to reopen the one I was working with. Very annoying. Update; My opinion of the app is unchanged, but snarky respones from the developer are uncalled for. I get it, it's free, and I'm not using a lower end device. Maybe find a new hobby if you don't like comments.",4,15,2.2.0,2020-02-22 19:17:22,"Rick, unfortunately this is a little bit of optimisation/limitation feature for lower end devices. You could simply reorder your lists so the one you care about is first. I wasn't trying to be snarky or say you have a low end device. Merely, that the reason it is the way it is because of an Android limitation.",2020-02-22 20:00:26,most_relevant,com.tasks.android +Benoît Wuatelet,https://lh3.googleusercontent.com/a-/AOh14GhXq_WdytNM4M0v507iIcz9BMvi1eSmYrOAFGkLGA8,"Super great app. Just installed and l feel already familiar with. Two comments: It would be great to have the possibility to change time setting with digital clock and not only timepiece visual. Second, having the possibility to set a reminder based on the location, not only time, as proposed by other ""To Do"" applications. Otherwise, the App is looks really great. Congrats to the developers.",4,12,2.1.0,2020-02-07 15:37:52,"Hi Benoît, thanks for your positive feedback and support for my app. I'm not 100% sure I understand your first suggestion? Maybe you could email me with a few more details? Thanks, Steve",2020-02-07 15:58:20,most_relevant,com.tasks.android +Rachel Wagner,https://lh3.googleusercontent.com/-hPWblndEw60/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMbXqo3fAUVRBUkyNskEKuzPtqEDA/photo.jpg,Just what i needed. I especially love the subtasks function. The only suggestion is to make the layout more compact. I set up tasks on a calender using another app and they use similar fields but have a smaller popup window for setup. I love your color design much better and it makes me want to open the app and update regularly,4,1,2.1.0,2020-02-11 19:24:52,"Hi Rachel, there is an option in setting for compact mode. You can also change the font size setting which will make everything more compact. I hope this helps, Steve",2020-02-11 19:28:40,most_relevant,com.tasks.android +Saloni Tayal,https://lh3.googleusercontent.com/a-/AOh14Gi2U01w7bFoWGpv0anMd25g1XHdM0y3nyvXMunxFA,"I really loved this app. It has everything I wanted. But I feel like there is still room for improvement in this app, it's my personal opinion though, It will be better if you could add a screen for the heat map and that heat map would be colored on the days when user did at least one task, another one could be letting user add notes for subtasks also. 🙏",4,12,2.2.0,2020-03-06 09:15:56,"Hi Saloni, a great suggestion! Tasks is a community driven hobby project of mine with the most popular suggestions added over. It simply relies on donations and my spare time to move forward. I will add your suggestion to my list for future improvements. I hope this helps, Steve",2020-03-06 09:44:54,most_relevant,com.tasks.android +Rennie Smarty,https://lh3.googleusercontent.com/a-/AOh14Gi4Yl9HHuw0mZQi3NUmk7PW-YMuTMs2HtszLohx,"I'm loving it so far. It is clean, user-friendly and v simple to use. Not too much drama that I have to sort out - I don't need background landscape pictures for example and I don't need graphs and charts to rate my productivity. I just need to get stuff done. Thanks Guys!",4,1,2.1.0,2020-02-20 19:34:11,"Hi Rennie, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-02-20 19:48:36,most_relevant,com.tasks.android +Stephanie Kelly,https://lh3.googleusercontent.com/-4hYaSgC7HRE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNK1_LAKo_QY966QRuiboHxl9aODQ/photo.jpg,This sponsors exactly what you want it to do. Also love the colours and reminder options.,4,0,2.3.1,2020-03-21 21:30:55,"Hi Stephanie, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. It simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-21 22:06:49,most_relevant,com.tasks.android +Jesus Murillo,https://lh3.googleusercontent.com/-KP1cUuaaZoo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNA_gN1NGZiKPm-orhZFytmr4_5Xw/photo.jpg,"So far I am enjoying this task app. I am still learning new things, but is definitely helping me stay organized.",4,0,2.3.2,2020-03-29 14:57:21,"Hi Jesus, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. It simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-29 15:05:48,most_relevant,com.tasks.android +Jim Baker,https://lh3.googleusercontent.com/-F9etFs9ilzo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN_EwCD6MtG50aW9hWMGzOd6TStew/photo.jpg,This is a really useful app for managing multiple to do lists.,4,0,2.3.2,2020-04-01 11:31:53,"Hi Jim, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. It simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-04-01 12:00:33,most_relevant,com.tasks.android +sleepy avery,https://lh3.googleusercontent.com/a-/AOh14GjIeaHJeI1SzmwEe2gOAVRl49juirLgWJ_pPaPbEQ,"My go to tasks app. Happy to finally see a premium payment because you deserve money for this thing, but immediately saddened that it's subscription only! I get why, but please add a one time payment option too for those of us who don't want to deal with such things.",4,1,2.2.0,2020-02-29 22:02:55,"Thank you for your great feedback. Unfortunately servers and storage around the world cost me money every month that you use them. A one off payment would be for a.lifetime? You could simply sign up for a year and then cancel the subscription to stop the auto renew. Tasks will notify you when your year has run out. I hope this helps, Steve",2020-03-01 07:36:45,most_relevant,com.tasks.android +Sandra Marchino,https://lh3.googleusercontent.com/a-/AOh14GiSqOtk1uL3BVXSBkyvY_ppaSkjce5KQlS34_a4Ow,"It's not as straight forward as others. But I like the many color options I have a task that is a grocery list, so it is lengthy. In moving from list to list I have accidentally removed items. I don't see an undo.",4,0,2.2.0,2020-03-04 02:42:52,"Checkout the online help: https://mytasksapp.com/help/faqs#undo I hope this helps, Steve",2020-03-04 07:06:58,most_relevant,com.tasks.android +Lu Kogane,https://lh3.googleusercontent.com/a-/AOh14GhguTm1dHxyIuGKasgWjQaA2AgMpvURMoW3lZOxbA,This app is great to organize your day or make shopping lists etc. But sadly I don't get notifications even if I turned them on. I hope this will be fixed soon!,4,0,2.2.0,2020-03-16 08:42:33,"Lu, apologies you're having an issue. However, this is an issue with your device not Tasks. OnePlus add very aggressive power saving to their devices which breaks the standard Android alarm manager functions. Please checkout the online help: https://mytasksapp.com/help/faqs#notifications I hope this helps, Steve",2020-03-16 08:58:34,most_relevant,com.tasks.android +Cindy Rose,https://lh3.googleusercontent.com/a-/AOh14GjoKG2pxbJx7zicF7EBA_ULIjmVGLbM_5qX3I3f9A,"Love it!! Only wish there was more instruction on how it all works! It does alot, will be perfect, once I learn how it's all done 😄!!",4,0,2.2.0,2020-03-13 03:59:03,"Hi Cody, checkout the online help via the ""Help"" button in the main menu. I hope this helps, Steve",2020-03-13 07:51:59,most_relevant,com.tasks.android +Ryan Vickers,https://lh3.googleusercontent.com/-zHImuvSc1WQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPKGiBaD_5WhgbP0S8DGdn3Y869nQ/photo.jpg,Fantastic except I cant attach photos to a task. A picture is worth a thousand words. Otherwise it's the best app for lists. Keeping work and home seperate ect.,4,0,2.2.0,2020-03-16 19:01:08,"Hi Ryan, a great suggestion! Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It simply relies on donations/subscriptions and my spare time to move forward. This has been very popular and so I will add this in a future update. I hope this helps, Steve",2020-03-16 19:41:30,most_relevant,com.tasks.android +Kathleen Donodeo,https://lh3.googleusercontent.com/a-/AOh14GjzbSHHEwGuEjRmKCQUPJG3rHEeuEZcr_Qkydgilw,"Very easy to use and intuitive. Wish there were a way to roll incomplete tasks forward to a new list or a different list (I tend to make a list for each day). Otherwise, love it.",4,1,2.2.0,2020-03-01 04:42:54,"Hi Kathleen, thank you for your great feedback. You could create a filtered list (main menu) to create a today list automatically based on reminder date and show over due. I hope this helps, Steve",2020-03-01 08:01:16,most_relevant,com.tasks.android +Acey Day,https://lh3.googleusercontent.com/a-/AOh14GhSoecM1JSeLiBsA0bg_VPR9AR3MlcuQhU-qwWx,"The app is a bit confusing, nevertheless the support is great! The more I ask questions, the more options I realize I have available to me. Thank you for the great support! I think I'll try the app out for a while and update this review accordingly.",4,0,2.2.0,2020-02-25 19:32:09,Could you be a little more specific? Tasks is a hobby project of mine with the most popular suggestions added over time. It simply relies on donations and my spare time to move forward. Most users say how simple and easy my app is to use. Could you email me: tasks.list.app@gmail.com with more details so I can improve my app for future users. Thanks,2020-02-25 19:35:18,most_relevant,com.tasks.android +kye alexander,https://lh3.googleusercontent.com/a-/AOh14Gjq0-KQpdSg-_X_EB1VQq93wQsIMRYRHxtnwvzOXXY,A little confusing to navigate at first but otherwise useful,4,0,2.3.1,2020-03-25 05:57:38,"Hi Kye, apologies if my app was too complicated for you. Most users say how easy and intuitive my app is. Maybe you could email me (tasks.list.app@gmail.com) with suggestions to make it easier for all users? Thanks, Steve",2020-03-25 08:18:20,most_relevant,com.tasks.android +Jodi Adlesperger,https://lh3.googleusercontent.com/-rsHkDCqIgNs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMnOxku_iG2PGRR7tSsU5k0clPaXg/photo.jpg,"I have looked and looked for an app that would let me make lists and check them off like pen and paper, and this does that. Simple and great to use.",4,0,2.2.0,2020-03-17 19:05:49,"Hi Jodi, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-17 19:11:55,most_relevant,com.tasks.android +Niamh N,https://lh3.googleusercontent.com/a-/AOh14Gh-dtUOwmZTffSmJup2-e8VhQ1DV7DAhZzJxruo,Only been using couple days. So far so good. Easy to get the hang of. Some functionality aspects could be enhanced but overall v glad to be with this app.,4,0,2.2.0,2020-03-09 13:46:39,"Hi Niamh, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-06 07:18:07,most_relevant,com.tasks.android +Angus Richardson,https://lh3.googleusercontent.com/-r31RjKugXAw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP2LNmyvTj6OsMC44DVpyAwugEG9Q/photo.jpg,"Really, just started using this app. Seems pretty good but way early days to rate beyond 4* even if it does deserve it.",4,0,2.3.1,2020-03-24 18:15:48,"Hi Angus, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. It simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-24 18:47:07,most_relevant,com.tasks.android +split to win,https://lh3.googleusercontent.com/a-/AOh14GiJ9WwlPAjBGKLANDul1FkK_ik9wfvAyn2cJTRT,Useful app In my opinion what can make your app a 5 star is add parsonalized image to tasks and possebility to make predefined tasks that you can add them to any list and global research you can find any task in all lists. Thank you for replying to my comment,4,0,2.2.0,2020-02-23 09:00:45,"Hi, thanks for replying with some great suggestions. Tasks is a hobby project of mine with the most popular suggestions added over time. It simply relies on donations and my spare time to move forward. I will add your suggestions to my list for future improvements. I hope this helps, Steve",2020-02-23 09:08:55,most_relevant,com.tasks.android +Sebastian A,https://lh3.googleusercontent.com/a-/AOh14GhHJn22xtVKqz4c6DNrMvzjut_Y_YeMoyJ72gFcVQ,"Great app, would love customizable notifications and icons. That being said, of course this is a hobby project, just being wishful. Meant no offense. I'd love to reach out, it's always nice to get in touch with a fellow developer",4,0,2.2.0,2020-02-27 18:11:22,"Sebastian, Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It simply relies on donations and my spare time to move forward. You can customise the notification sound in settings. I hope this helps, Steve Edit: to get in contact please email me at tasks.list.app@gmail.com :)",2020-02-27 19:20:57,most_relevant,com.tasks.android +Marcella DeCausey,https://lh3.googleusercontent.com/-EkEhZhClKeo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOtTK9olh1P33Habb4nJB7sP8edgw/photo.jpg,I have only been using the app for a short period of time. So far it has been a great tool. The Bility to addnsubtask to a task is very helpful. Great job.,4,0,2.2.0,2020-02-28 14:52:27,"Marcella, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-02-28 17:08:11,most_relevant,com.tasks.android +Benarji Anand,https://lh3.googleusercontent.com/a-/AOh14Gic2ewi_cba6knJMxR9ia_6_FLCwzaoDdLWL7_H,I'd give this a five star if not for the backing up which prevents importing mismatched versions. Kinda redundant if we can't use the backup that we took two weeks prior.,4,0,2.2.0,2020-03-01 11:51:45,"Hi Benarji, you could simply email me and I can upgrade your backup file for you? Note, there is also automatic cloud backup as part of Tasks Premium (main menu)which works between all versions. I hope this helps, Steve",2020-03-01 12:16:25,most_relevant,com.tasks.android +Julianne Duffy,https://lh3.googleusercontent.com/-VA05KU3jjIE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNitPnr19kCBdn6xw_KTCB5mKlnOA/photo.jpg,"I really like it, easy to use. Just wish it would remind me again after the time has elapsed without having to reset the time for the task. Other than that, it's great.",4,1,2.1.0,2020-02-06 11:44:36,"Hi Julianne, I'm not 100% sure I understand. You could simply make your reminders repeat automatically? (https://mytasksapp.com/help/faqs#recurring-task) If you need some help just email me (tasks.list.app@gmail.com). I hope this helps, Steve",2020-02-06 12:01:56,most_relevant,com.tasks.android +Michael Bosch,https://lh3.googleusercontent.com/-w38ve4jy1MI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOgGQ2GWy9OmH6bUx7nn-XkaeJnIA/photo.jpg,"This is the best task keeping app out on the market. It has a very easy interface, and many useful features that are blended together well into a useful product.",4,1,2.2.0,2020-03-03 03:44:58,"Hi Michael, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-03 08:11:22,most_relevant,com.tasks.android +Gordon Glen,https://lh3.googleusercontent.com/-8MDD1iZ9j5o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNZYVchsn2nlXTl_CAfxth734lMYQ/photo.jpg,Does the basics clearly and easily. I particularly like that it allows you to sort completed tasks in alphabetical order (some other apps don't),4,0,2.1.0,2020-02-28 15:58:42,"Gordon, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-02-28 17:09:21,most_relevant,com.tasks.android +SerNinoNe BeaChildNOW - IamaCHILDIamBIG,https://lh3.googleusercontent.com/a-/AOh14GivX0OmoB9yv0qKJ6VDEfJAomL1Y6AGt75a2_7Wqw,Absolutely a great App. It helps my family to keep track on our activities and also for my work. Nice design and very practical,4,0,2.1.0,2020-02-08 11:20:54,"Hi, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. It simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-02-08 11:36:54,most_relevant,com.tasks.android +Kerri S,https://lh3.googleusercontent.com/a-/AOh14Gg98V5yYhRhDgOAZ3uXTkuQd7z289hNRHzfgTtAdg,So far it's been very helpful & useful for simple lists like groceries & things I need to remember to pick up for my daughter.,4,0,2.1.0,2020-02-16 17:37:15,"Hi Kerri, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-02-16 19:58:52,most_relevant,com.tasks.android +true soul,https://lh3.googleusercontent.com/-EpzaoO1hACk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNXyueCt0rE2WwDWyz-OVZrICgKoA/photo.jpg,Although it's very helpful but make a navbar of all the lists or try to show all the lists in list format when we open the app so that we can see which lists are there,4,0,2.2.0,2020-03-02 12:09:16,"Hi, you could simply enable the ""Show main menu when opening Tasks"" setting. By default Tasks will open the last list you had open i.e. pick up where you left off. I hope this helps, Steve",2020-03-02 12:24:21,most_relevant,com.tasks.android +Antoine Chamberland,https://lh3.googleusercontent.com/-ldMYb4dmjnc/AAAAAAAAAAI/AAAAAAAAAIg/AAKWJJMCDzObKfGCRXlydv7AAdclObTnXw/photo.jpg,"Working great for me. Simple to use, relatively detailled, free... !",4,0,2.2.0,2020-03-14 18:27:57,"Hi Antoine, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-15 10:48:24,most_relevant,com.tasks.android +Kristófer Jökull,https://lh3.googleusercontent.com/a-/AOh14GgJJ0lWMl-aG06_wUNm7g4DoTKRfFlOlad3tQIIAw,"Will there ever be an update with an easier way to sync with other devices? I have spent so much time trying out todo apps with reminders and this is probably the best one ever, but I would really want to be able to manage it all across more than one device, such as with an autimatic periodic upload or one-touch sync button like in colornote. Thanks",4,0,2.1.0,2020-02-11 14:44:47,"Hi Kristófer, this is possible. I recently added device to device sync as part of Tasks Premium: https://mytasksapp.com/help/premium. I hope this helps, Steve",2020-02-11 15:09:20,most_relevant,com.tasks.android +Pranu L,https://lh3.googleusercontent.com/-0Q5mwVn_WV8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNO0JHptkioM_VWH4UcxWtkeXDeqA/photo.jpg,I love this app. What I liked is the alarm feature for individual list items.,4,0,2.2.0,2020-03-05 07:50:55,"Hi Pranu, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-05 08:17:20,most_relevant,com.tasks.android +Muhammad Rashid,https://lh3.googleusercontent.com/a-/AOh14GjpMB9W_2i2taZjNc_ulY4e6WkJ8mnJJe_Kymw0rQ,Its a very good app however I guess its desktop version is not available. If they have it will be a great organizing app. Great app 😘,4,0,2.2.0,2020-03-12 10:04:14,"Hi Muhammad, Tasks is a community driven hobby project of mine. I am currently working on a browser based web app which will be available in the coming weeks. I hope this helps, Steve",2020-03-12 10:29:36,most_relevant,com.tasks.android +Ahmadreza Sh,https://lh3.googleusercontent.com/a-/AOh14GjAB4PoN-I9Vcaa5KFUZqRi0aeNjGXZE4Kt7hV_,It's useful simple to use Have lot of features but not complicated and disturbing Maybe it's not number #1 but I'm sure it's one the best apps,4,0,2.1.0,2020-02-09 20:00:20,"Hi Ahmadreza, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. It simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-02-09 20:01:29,most_relevant,com.tasks.android +Carl David,https://lh3.googleusercontent.com/-UkCrmYyxgPo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOp8-O5gEN_GZusngOzwxbeqDjsdA/photo.jpg,"Great distillation point for my mind maps, app is very simple interface to a reasonable amount of credible task tracking functionality",4,0,2.2.0,2020-02-28 12:47:00,"Carl, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-02-28 12:50:07,most_relevant,com.tasks.android +Angela Baranowski,https://lh3.googleusercontent.com/a-/AOh14Ghfq0sQspBoGf6Pzu_S6K4ar2xQm06v31qsq5qNOA,Like it. Colors. Change order. Multiple list. Completing date.,4,0,2.2.0,2020-03-03 04:32:48,"Hi Angela, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-03 08:11:55,most_relevant,com.tasks.android +Esther Williams,https://lh3.googleusercontent.com/-kVvfkxeiSf8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMnz5GbYlhHDf17XjJd5nwAR2k72A/photo.jpg,I love the basic version. It really helps me stay organized!,4,0,2.2.0,2020-03-06 08:00:33,"Hi Esther, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-06 09:43:04,most_relevant,com.tasks.android +Christopher Heldt,https://lh3.googleusercontent.com/-TIjh6LuDYBg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOXGlrWbDlnOKifWFOpCapJrAC3jQ/photo.jpg,Helpful to keep track of to do's and can set reminders at various times.,4,0,2.2.0,2020-02-29 01:46:06,"Hi Christopher, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-02-29 08:21:25,most_relevant,com.tasks.android +Deepak Negi,https://lh3.googleusercontent.com/a-/AOh14GhmVve4V-jj5oZcYWfaxNkrcXU32wpkeO1MIqL_Dg,Perhaps add option to set task list as homepage. Rest is good so far.,4,0,2.1.0,2020-02-19 06:12:25,"Hi Deepak, there is an option in settings to set a ""Default"" list. You can choose any list including filtered lists or the calendar. I hope this helps, Steve",2020-02-19 08:01:40,most_relevant,com.tasks.android +Luise redmond,https://lh3.googleusercontent.com/a-/AOh14Gg1wcQ4p9MdYCLuqwRc55JIEY16U1bDA_4cWFx9,So quick and handy. A proper list app with no annoying features,4,0,2.1.0,2020-02-18 23:18:27,"Hi Luise, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-02-19 08:00:49,most_relevant,com.tasks.android +Bob Crowder,https://lh3.googleusercontent.com/a-/AOh14GgewczILvikdi_TPYyeMcH8RcphiKoLvidXZYS9,"Good, could be better I can not find where you can have a task repeat every week, month, year",4,0,2.3.1,2020-03-21 14:00:02,"Hi Bob, simply checkout the online help (available though the ""Help"" button in the main menu): https://mytasksapp.com/help/faqs#recurring-task. I hope this helps, Steve",2020-03-21 14:53:48,most_relevant,com.tasks.android +Mary McDonnell,https://lh3.googleusercontent.com/a-/AOh14GgZnU16zfMIgDuWT13crtg2An57V39Zl_9j6MOD,Really like this app especially when I can categorise the different reminders.,4,0,2.1.0,2020-02-12 15:03:46,"Hi Mary, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. It simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-02-12 15:07:43,most_relevant,com.tasks.android +David,https://lh3.googleusercontent.com/-BmwT9oRQ9tQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMonvXKc6U0zHRzMamyv7JA4DOQ-Q/photo.jpg,Easy to use. Really helps keeping me on top of things.,4,0,2.2.0,2020-03-15 03:19:29,"Hi David, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-15 10:48:29,most_relevant,com.tasks.android +Michèle Singer,https://lh3.googleusercontent.com/-fxKgetYXfcU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPu8DAXfPjGMRBuKVEUmvdc8IDTVQ/photo.jpg,Great app. Only one disadvantage : no backup possible.,4,0,2.2.0,2020-02-29 10:36:59,"Hi Michèle, this is not true. You have automatic cloud backup as part of Task Premium (main menu). Alternatively, there is a manual option in settings. I look forward to getting my 5th star 😀 Steve",2020-02-29 12:55:04,most_relevant,com.tasks.android +Chris Warren,https://lh3.googleusercontent.com/a-/AOh14Gjhy26sdujFE4XemYMPhCaLuGBKSLIVm2zUd6yl,A great way to get organized and remember your to-do list!,4,0,2.2.0,2020-03-07 03:01:11,"Hi Chris, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-07 07:44:20,most_relevant,com.tasks.android +Raylene Jeffers,https://lh3.googleusercontent.com/a-/AOh14GilhQ7XuttrNbnF2S_2ZwPVcR_3jdzf6rGCWC_7QA,Love it makes sures I do my task one thing to fix can you make a section where we can save our list in case we get new phones,4,0,2.1.0,2020-02-15 21:56:43,"Hi Raylene, this is possible. Simply upgrade to Tasks Premium (main menu for automatic cloud backup. Help available online: https://mytasksapp.com/help/premium I hope this helps, Steve",2020-02-15 22:02:33,most_relevant,com.tasks.android +Srdjan Novakovic,https://lh3.googleusercontent.com/-ljYznho_WtI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOEjxSMTTmkqA0j_r15oUJSu5JErg/photo.jpg,"The app is real comfortable for use, the only thing I can't understand is how to view the events you create from the calendar icon top left?",4,0,2.2.0,2020-03-02 08:06:40,"Hi Srdjan, to view your tasks on a calendar simply enable the calendar view in settings. The calendar icon is for adding the task to your devices default calendar. I hope this helps, Steve",2020-03-02 08:30:08,most_relevant,com.tasks.android +Jon Ivey,https://lh3.googleusercontent.com/a-/AOh14GhL1_kf7HeKvSXgZ3linPPS4dEECyWSOcvcz2hbDw,Could you write an option so we can backup lists to cloud? Otherwise this app is really handy.,4,0,2.1.0,2020-02-22 01:51:37,"Hi Jon, this is already possible. Simply upgrade to Tasks Premium using the button in the main menu. https://mytasksapp.com/help/premium. I hope this helps, Steve",2020-02-22 09:03:15,most_relevant,com.tasks.android +Rachel Timms,https://lh3.googleusercontent.com/-yVCSVkY-Few/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPeZIRgOqU_8kpzdg_I1Xn3Fx2CZQ/photo.jpg,"Keeps me on top of work jobs, home jobs and family. Would be 5 if I could pin the list to my home screen, which I have tried to find a way of doing but cant seem to",4,0,2.2.0,2020-02-26 07:39:16,"Hi Rachel, this is possible. Simply use the free Tasks widget. Add it in the same way you would any other Android widget. On most devices: long press on your home screen, drag and drop the Tasks widget on to your home screen. Resize the widget and select you list. I look forward to my 5th ⭐️ :) Steve",2020-02-26 08:08:05,most_relevant,com.tasks.android +keeth Hutchings,https://lh3.googleusercontent.com/--PKwmaRG6Bw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPcVtCRlqUrIF-mq39wVJSXTU1YSg/photo.jpg,Very useful very easy to use.,4,0,2.3.2,2020-04-02 07:36:25,"Hi Keeth, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. It simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-04-02 08:18:31,most_relevant,com.tasks.android +Derek Maas,https://lh3.googleusercontent.com/-B9L5M_uu8qE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN7Hzltmdp2ytdrKCH2ku-v492rfw/photo.jpg,"Extremely helpful app!! Helps me be very organized. I used to make paper lists, but I would lose them. This allows me to keep my to do lists in one place and is very easy to add tasks. I would like to see a feature where you can populate it daily/weekly/monthly . (ex. Morning routine daily, Vacuum weekly, mail out the electric bill monthly)",4,1,2.0.0,2020-01-28 13:29:48,"Hi Derek, thank you for your great feedback. This is possible. You can create a daily/weekly/monthly list using the filtered list (main menu). Alternatively, you could simply enable the calendar view in settings. I hope this helps, Steve",2020-01-28 19:25:05,most_relevant,com.tasks.android +Rania Elrifai,https://lh3.googleusercontent.com/-830aDwCw9l4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMSIlaRkcVa6egg6dPzKvWT00IH8A/photo.jpg,"This app is so good, it organized my life, but the reminder does not work",4,0,2.2.0,2020-03-04 19:06:29,"Rania, this is an issue with your device not Tasks. When creating a task with a reminder you will have seen a dialog with help for your device. Huawei add very aggressive power saving to their devices which breaks the standard android alarm manager functions https://mytasksapp.com/help/faqs#notifications I hope this helps, Steve",2020-03-04 19:32:48,most_relevant,com.tasks.android +Enzo-Alain Chellan,https://lh3.googleusercontent.com/a-/AOh14Gipf3H4g8vpPJHlh0TAN7bTEhNNp7I07mUORN0,Can construct reminders well with an in depth layout,4,0,2.2.0,2020-03-14 11:06:16,"Hi Enzo-Alain, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-15 10:47:03,most_relevant,com.tasks.android +Heather Pesto,https://lh3.googleusercontent.com/a-/AOh14GiNaoEe8c_V6_Wbq0MdjaE6iAAwv4CnZEs6ff_7NQ,"I LOVE this app. It's perfect for making a variety of different lists and tasks and ""to dos"". I like how simple and straight forward it is and how you can easily colour coordinate or specify each task with labels and reminders. The only reason why its not a 5 star is because it would be very great to have a grocery shopping specific list you could create that had the option to order foods in different food groups or store categories ie dairy, veggies, meats etc. Thank you!",4,0,2.0.0,2020-01-29 16:17:08,"Hi Heather, thank you for your great feedback. Tasks is a community driven hobby project of mine with the most popular suggestion added over time. Tags have been a very popular suggestions from other users which I think will help you in your situation too. This will be added in a future update. I hope this helps, Steve",2020-01-29 19:06:13,most_relevant,com.tasks.android +Tommy Au,https://lh3.googleusercontent.com/a-/AOh14Gg1bcqSbt67mwI7gGuBvlZuySY07gtwioVxuhgz,"The only bad point is I can't tick the sub task box on the widget, and this is quite disappointing.",4,0,2.2.0,2020-02-24 04:52:16,"Hi Tommy, unfortunately there are limitations in life. Android widgets are very limited and so it is not possible to have nested lists (list inside a list), therefore it is simply not possible. Apologies, Steve",2020-02-24 11:24:30,most_relevant,com.tasks.android +Philip Choi,https://lh3.googleusercontent.com/a-/AOh14GjUcdRalqLYrpV5GG0b_U_7CK25pcA-mfCGgM6lzlQ,"App is great, it's simple enough to use. What would be great is the ability to add in a password protect function for any notes you enter in. Also 1 thing that annoys me (hence the 3stars) is that I find more often than not that when I type words, the preview screen truncates the first 2-3 letters and replaces them with dots. ** Developer very quick responding to feedback =)",4,0,2.0.0,2020-01-21 10:44:35,"Hi Philip, Tasks is a community driven hobby project of mine with the most popular suggestions adde dover time. It simply relies on donations and my spare time to move forward. A password has been popular and so will be added in a future update. Regrading your issue, could you do me the courtesy of emailing with a screenshot? Thanks, Steve",2020-01-21 09:17:55,most_relevant,com.tasks.android +Gabriel Yohendran,https://lh3.googleusercontent.com/a-/AOh14GgzVPC2auXvDUbXETzbBirfrEO2S4mLZ1aZPoNIlw,"You have to pay to pay monthly sync across devices, it should be a one time cost. Edit - You know what streve, I was greedy, everthing else is free. but interdevice sync is a standard in most apps, so the lack of the option is a real down side and now I have to switch app, and it's not that I'm not willing to pay. I just want it to be a one time cost and I still won't pay the price for your years subscription even if it was for a lifetime of use. So I'll give you 4 stars but leave the app.",4,8,2.0.0,2020-01-11 20:39:02,"Gabriel, servers and storage around the world cost money each and every month.why do you think you should be able to pay a one time fee? Tasks is a community driven hobby project of mine. I cannot afford to pay for your usage! Finally the premium service is optional, everything else is free without adverts. I hope you understand, Steve",2020-01-11 20:27:58,most_relevant,com.tasks.android +Lavinia O'Mahony,https://lh3.googleusercontent.com/a-/AOh14Gg-BHh8exVuKHrs8PDcX2gKRF7ns4u99qmyoaPZ,"Very good tool to use. One suggested feature for future development: it would be helpful if an already set task could be dragged as a sub task for another already set task. When reordering tasks by dragging them, if the task is dragged over an existing task, it should automatically become a sub task there. The reverse should also be available, to drag out a sub task by taking it in between two tasks.",4,0,2.0.0,2020-01-22 09:56:47,"Hi Lavinia, thank you for your suggestion. An issue however, tasks and sub tasks have different data points. When going from a task to sub task you I will have to create default values for some fields. Not too bad, however when going from a sub task to a task you will loose data. I hope this helps, Steve",2020-01-22 10:12:15,most_relevant,com.tasks.android +Que Carswell,https://lh3.googleusercontent.com/a-/AOh14GhmEqaEYtSTorcUBcR8SXQf_FRCg5C2vrH-DOeW,"So far so good, app is great. Helps me mostly keep track of what I need to do, not make sure I do it. make it more aggressive. Wish it had a daily reminder that would just pop up to remind me of all my most recent tasks at the start of the day that i could dismiss, just to remind me. So I dont have to wait for each task to remind me on or before the due date. Also when a task is completed it seems to keep reminding me in pop up until I go to the task and scroll to the completed button.",4,2,2.0.0,2020-01-17 13:58:17,"Hi Que, this is possible. Simply create a filtered list (main menu) and set a daily summary notification. I hope this helps, Steve",2020-01-17 14:43:20,most_relevant,com.tasks.android +Paola Gonzalez,https://lh3.googleusercontent.com/a-/AOh14GjTf0UY1qx4UmS_bXvJtsFENCVTcurBjURe2gORQg,Great but confusing when starting ro to use it,4,0,2.2.0,2020-04-04 15:30:50,"Hi Paola, apologies my app was too complicated for you. Could you be more specific? When you first open Tasks there is context based help to get you up and running quickly. There are guides available via the Help button. Most users say how simply & intuitive my app is. What was too confusing for you? Please email me your suggestions. Thanks, Steve",2020-04-04 15:48:19,most_relevant,com.tasks.android +Glenn Watson,https://lh3.googleusercontent.com/a-/AOh14Ggpkg7SzjH-eM33SE5Mui5s9EAP3v1pa_rDEEG_LA,"I have been looking for a well done app that has checklists that allow sublists... This app is well organized and easy to understand how to use. I do have a couple future feature additions I would like to see, that I will send to the developer. But I am quite happy with this app!",4,0,2.0.0,2020-01-20 01:40:14,"Hi Glenn, thank you for your great feedback, support and help in improving Tasks for everyone. I really appreciate it 👍 Steve",2020-01-20 08:51:20,most_relevant,com.tasks.android +morag seventeen undulating roses,https://lh3.googleusercontent.com/-qZZkscykfjI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO5VsmVDffmWG3Na8Bgus3tGxjnFw/photo.jpg,"it is good I like being able to add sub task lists for each task and categorise each. I would really like if there was a pre-made to do today/ tasks I want to focus on category that one comes up as soon as you open the app like a front page + visible calendar 30 day layout one can schedule tasks to, making it easier to plan out tasks systemically",4,0,2.0.0,2020-02-03 00:22:15,"Hi, Tasks is designed to be as simple or complex as as you require. You can enable the calendar view in settings. You can add a filtered list (main menu) to create a ""Today"" list. There is also a setting to set a default list when opening Tasks. I hope this helps, Steve",2020-02-03 08:11:31,most_relevant,com.tasks.android +RS Anderson,https://lh3.googleusercontent.com/-MNycfSMnWyg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOykhdI0faOlCLmTFp8-Yc-u8UkSg/photo.jpg,"It's sadly evident that most to-do list apps are created by people with remarkably little to do. This is a delightful rare exception. Logical, simple but powerful, with all the basic necessities covered and good customization options, this is the closest mobile equivalent to AbstractSpoon's ToDoList available. Edit: Removing one star for the total removal of local backup. Monetization is understandable and deserved, but removal of a simple local failsafe to push (Premium) cloud backup reeks.",4,1,2.0.0,2020-01-15 21:17:28,"Hi Robert, thank you for your fantastic feedback. I'm really glad you're finding my little app useful. Happy organising :) Steve Edit: this is not the reason, in Android 10 there are underlying changes to the OS that have broken local backup. Tasks simply relies on donations and my spare time. I cannot keep maintaining features forever for free.",2020-01-15 21:37:48,most_relevant,com.tasks.android +Lisa Marie McEachran,https://lh3.googleusercontent.com/a-/AOh14GhxuJa-D29GfabW7b20roH6sz4h4coa773elFEx_Q,I love that I can check things off as I do them throughout the day and not the next day they reset so I can go to the list again without repeatingly putting them in the only thing I wish is either I could send the results daily to my calendar preferably automatically but at least manually or the app kept a history so I could tell how often I completed my goals. Love snooze option too,4,1,2.0.0,2020-01-09 05:00:20,"Hi Lisa, a great suggestion! Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It simply relies.on donations and my spare time. I will add your suggestion to my list for future improvements. I hope this helps, Steve",2020-01-09 08:52:20,most_relevant,com.tasks.android +David Geffert,https://lh3.googleusercontent.com/a-/AOh14GgcuOxV4g4nIWfZhposQvukEjet4wQc1t2lX-uh,"It's a great app. You can search for words in tasks. The reminders show up on my new Samsung S10, which is why I had to ditch Keep. To get five stars, I would like to see an easy way to access the app on my desktop. It would be great if it would work with Google calendar.",4,0,2.0.0,2020-01-09 11:11:54,"Hi David, thanks for your great feedback. To add a task to your calendar checkout the help: https://mytasksapp.com/help/tips-tricks#context-menu I am currently working on a browser based web app. This will be available soon 😀 I hope this helps, Steve",2020-01-09 12:08:52,most_relevant,com.tasks.android +Lauren,https://lh3.googleusercontent.com/-RjnB5_Se4_8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNKHmJFWj0LoTrxq2fa5SqPsnpgtg/photo.jpg,Very Helpful! I can see what I have accomplished and organize my week with what I want to do.,4,0,2.2.0,2020-03-05 01:59:24,"Hi Lauren, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-05 07:07:25,most_relevant,com.tasks.android +Tagiilima Pa'aga,https://lh3.googleusercontent.com/a-/AOh14Ghmj3Ap7J6l9AsEc7m4fqx6_sD0eUmCV68fFISMhw,Good experience it's very easy And helpful!,4,0,2.1.0,2020-02-20 21:13:02,"Hi Tagiilima, really glad you're finding my app helpful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-02-20 21:27:31,most_relevant,com.tasks.android +Kay Vee,https://lh3.googleusercontent.com/-sFVIHFjL0ak/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNjVOUfyPElWLXw5-17A97TBLejmw/photo.jpg,Very good app. Simple to use.,4,0,2.3.2,2020-03-31 21:16:04,"Hi Kay, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. It simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-31 21:22:59,most_relevant,com.tasks.android +khumbo chibambo,https://lh3.googleusercontent.com/a-/AOh14GhIOTGsy-gJ52Zq_BeoIqwcEiamE8FVfb_R57uTEQ,This app helps me keep track of my daily tasks at work,4,0,2.1.0,2020-02-19 08:37:37,"Hi khumbo, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-02-19 08:54:12,most_relevant,com.tasks.android +Diana Roberts,https://lh3.googleusercontent.com/a-/AOh14GhDX2HiVGK-tFy1S1XW27GY5PkdQaBE2Yic0DCq,"Very helpful to keep me on task with work, home, life.",4,0,2.1.0,2020-02-06 13:06:50,"Hi Diana, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. It simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-02-06 13:29:04,most_relevant,com.tasks.android +shiben dutta,https://lh3.googleusercontent.com/a-/AOh14Ghh_rdd8rSs8e-6eXkx7U1IG9haMJp3QuINtUtkfw,For a hobby project as described by the author it is a job very well done. I don't have any complaints. May be upgrading the UX (not the UI) a little bit would make it an excellent experience for the end user.,4,0,2.0.0,2020-01-20 04:48:35,"Hi Shiben, thank you for your fantastic feedback and support for my little app. If you have suggestions to improve the UX please email me (tasks.list.app@gmail.com). Thanks, Steve",2020-01-20 08:50:29,most_relevant,com.tasks.android +W. Charles B. Mitchell,https://lh3.googleusercontent.com/a-/AOh14Gike0Nz_hfM_mesQIOQ5meQPWrnmTAdhJd61-37,Stuck in lists screen but none of my lists are showing and the only option is to add a new list. What am I doing wrong? (BTW- I love what I've seen so far. Being able to add sub tasks under sub tasks? Awesome! 5th star awaits...,4,0,2.0.0,2020-01-18 16:54:44,"Hi, apologies you're having an issue with my app. Please email me at tasks.list.app@gmail.com with more details and a screenshot so I can help. Thanks, Steve",2020-01-18 17:31:42,most_relevant,com.tasks.android +Damien & Jonnie White,https://lh3.googleusercontent.com/a-/AOh14GgBbYXcGrhUelCZRbSWGRKWvdrjEbArdsv4B54b,"So far so good, simple and functional. Would like an easy way to quickly move items from one list to another as I shift things from a general todo list to a today list each morning. Clear clean and ad free. Love it.",4,0,2.0.0,2020-01-15 02:33:03,"Hi Damien & Jonnie, to move a task simply long press it in the main list view and click move. Alternatively open the tasks detail screen, change the list and save. I hope this helps, Steve",2020-01-15 08:21:16,most_relevant,com.tasks.android +Regime studios,https://lh3.googleusercontent.com/a-/AOh14GiH8Phz5-iRh3OF8eAVOP_EWX1AoPvT0l4E7SEJtw,Works very well and is easy to Use.,4,0,2.2.0,2020-03-03 14:00:52,"Hi, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-03 14:48:22,most_relevant,com.tasks.android +Sara Glaubitz,https://lh3.googleusercontent.com/a-/AOh14GjHikItG8-lX8kRhciz4BGXYNItYrPOb3uVcaqN,Highly recommended. My only complaint is that the interface could use a little improvement as far as navigation and calendar access. Otherwise I LOVE that lists are completely customizable.,4,0,2.0.0,2020-01-24 15:52:02,"Hi Sara, maybe you could be more specific and a little more constructive. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. It simply relies on donations and my spare time to move forward. Simple email me your suggestion. Thanks, Steve",2020-01-24 16:00:38,most_relevant,com.tasks.android +ken kaufmann,https://lh3.googleusercontent.com/-ccjyei2bCJo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMn_6eI5E7NvwwJQSYYF0zmXdah8g/photo.jpg,"Easy to use. Flexible. I use the sub list feature to describe steps needed to accomplish a task. I have lists for every day of the week. Some tasks need to be done each day, e.g. wash dishes, etc. Some tasks are unique and I create them as needed. For each day I have 'to do' and 'done' sections. Once a task is completed it goes to the done section. This app helps me focus on getting things done and has become an essential part of my daily routine.",4,23,2.0.0,2019-12-21 06:34:01,"Hi Ken, really glad my app has become essential for you. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. It simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2019-12-21 09:03:57,most_relevant,com.tasks.android +Jennifer Irons,https://lh3.googleusercontent.com/a-/AOh14GgdE5MtepAeoDzRpbs5prlYonZhpkoOsuvT3O3UI0Q,"I've been using the app for a few weeks and I love it. I didn't give it 5 stars because sometimes I get a notification that a task is due, before the notification day/time I set. Other than that, no complaints.",4,0,2.0.0,2020-01-11 19:26:54,"Hi Jennifer, apologies you're having an issue. However, I'm not 100% sure I understand your issue. Maybe you could do my the courtesy of emailing me with most details and the steps to reproduce. Thanks, Steve",2020-01-11 20:46:12,most_relevant,com.tasks.android +Maggie McKinney,https://lh3.googleusercontent.com/-mNfLc9Bx0JI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNkCv4gUcbCi68xSZK_krMK7tGnWw/photo.jpg,"I'm using this app for all my recurring reminders that I need to remember that I don't actually want on my To Do list (like fill up water bottle, remind kids to pack their lunches, etc). I've tried several apps; the reason I've settled on this one for those reminders is b/c it will give me a reminder notification EVERY time whether or not I completed it last time. I LOVE that you can select specific days of the week (not just weekly or daily). My biggest concern is it not having cloud backup.",4,4,1.34.1,2019-10-24 11:47:39,"Hi Maggie, thanks for your great feedback. There is a backup/restore feature in settings. Tasks is a community driven hobby project of mine with all features offered for free without advertising. It simply relies on donations and my spare time. I am currently working on server code to automatic cloud backup. I hope this helps, Steve",2019-10-24 13:42:00,most_relevant,com.tasks.android +Datuk Abdul,https://lh3.googleusercontent.com/a-/AOh14Gj3PO-WbMpHJjBvfi4esvaWuBotiTNHo5nBcG_3xQ,Hi! So I was supposed to be rating this perfect but I want this app to be improved because I love it so much! It's so small yet compact. I love it. My problem is it doesn't have a backup option. Like a sync thing that I can do it on my Google account. I hope you guys have that option the same with other note apps. Thanks a lot!,4,3,1.34.4,2019-11-17 01:48:29,"Hi Seregandung, there is a backup/restore feature in settings. Tasks is a hobby project of mine with all features and support offered for free without advertising. It simply relies on donations and my spare time. This has been a very popular suggestion and so I am currently working on automatic cloud backup. I hope this helps, Steve",2019-11-17 09:07:16,most_relevant,com.tasks.android +chinedu gilliam,https://lh3.googleusercontent.com/-kSkxXtUJ-ds/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN0yKjXKssFCaUiDDjiiHVt91A3-Q/photo.jpg,"I've been using rhis app for a few weeks. I have a Pixel 2 XL. Pros: Great app. User friendly. Easy to use & group tasks. I love that you can rearrange tasks bases on your preference. Im an entrepreneur with many projecrs and it def keeps me on track. Cons: I wish it could track the amount of time I spend on each major task & sub task, like a time clock. Is this a possibility in Q1 or Q2 of 2020?",4,0,1.34.4,2019-12-09 01:17:09,"Hi Chinedu, thank you for your positive feedback. Tasks is a hobby project of mine with the most popular suggestions added over time. All features and support are offered for free without advertising. It simply relies on donations and my spare time to move forward. I will add your suggestion to my list for future improvements. Steve",2019-12-09 09:20:11,most_relevant,com.tasks.android +Sheena,https://lh3.googleusercontent.com/a-/AOh14GhCzjnMZ1Gq7Y6z8Ff_4RGqGXQcx_E4gQkL-Av8NA,"Almost perfect, the only thing I wish was different is I wish all my lists were available on a main screen & that they were clickable from there. I don't like that it stays on one list instead of a homescreen instead where all lists available at a quick glance instead of having to go & open the tab to see the lists. I'd use it a lot more that way.",4,1,2.0.0,2020-01-03 23:35:24,"Hi Sheena, a great suggestion! Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It simply relies on donations and my spare time to move forward. I will add your suggestion to my list for future improvements. I hope this helps, Steve",2020-01-04 10:59:19,most_relevant,com.tasks.android +David Adam,https://lh3.googleusercontent.com/a-/AOh14GgS1oqVoWOsl5NWwCwCgsReAot4Su-GXryQREBP,i would add notes to subtasks,4,0,2.3.2,2020-04-06 16:36:25,"Hi David, thanks for your suggestion. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It simply relies on donations, premium subscriptions and my spare time to move forward. I will add your suggestion to my list for future improvements. I hope this helps, Steve",2020-04-06 16:56:45,newest,com.tasks.android +Essam Atia,https://lh3.googleusercontent.com/a-/AOh14Gjs9sEaWII5FQhA8CNFyw6gYAASJbdhtw7rJgiKmJ8,Easy and usefully and helpfully,4,0,2.3.2,2020-04-06 04:56:12,"Hi Essam, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. It simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-04-06 07:19:23,newest,com.tasks.android +Jeff Kramer,https://lh3.googleusercontent.com/a-/AOh14GhAOQhfQIWijVtdv40Af7mhXBXuOv3pdgNQDOnbIA,Easy and simple to use.,4,0,2.3.2,2020-04-05 18:20:58,"Hi Jeff, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. It simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-04-05 18:46:46,newest,com.tasks.android +Gapps MVP,https://lh3.googleusercontent.com/-ZZvS62VOZuE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNyxZLVgvvKIA2EP4dQ7G5iC7xA_A/photo.jpg,"First of all very nice app! I do however have one problem and a suggestion: the filtered list. Can you add conditions based on how frequently the tasks are repeated? I really want to see my tasks filtered to today, tomorrow, and weekly task lists. Hoping for your feedback, Z",4,0,,2020-04-05 08:23:51,"Gapps, this is not currently possible. However, Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It simply relies on donations, premium subscriptions and my spare time to move forward. I will add your suggestion to my list for future improvements. I hope this helps, Steve",2020-04-05 08:16:14,newest,com.tasks.android +Paola Gonzalez,https://lh3.googleusercontent.com/a-/AOh14GjTf0UY1qx4UmS_bXvJtsFENCVTcurBjURe2gORQg,Great but confusing when starting ro to use it,4,0,2.2.0,2020-04-04 15:30:50,"Hi Paola, apologies my app was too complicated for you. Could you be more specific? When you first open Tasks there is context based help to get you up and running quickly. There are guides available via the Help button. Most users say how simply & intuitive my app is. What was too confusing for you? Please email me your suggestions. Thanks, Steve",2020-04-04 15:48:19,newest,com.tasks.android +Rachel Tzuberi,https://lh3.googleusercontent.com/-6qK9E7twmu8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNxYwBfYTl2Vh3dzdQHES0_NDDRBg/photo.jpg,"Great app so far, very user friendly. Would love an option to duplicate a hole list (found an option to duplicate sub-list only). Thanks!",4,0,2.3.2,2020-04-03 19:22:21,"Hi Rachel, thanks for your suggestion. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It simply relies on donations, premium subscriptions and my spare time to move forward. I will add your suggestion to my list for future improvements. I hope this helps, Steve",2020-04-03 19:55:27,newest,com.tasks.android +Jamie Barrow,https://lh3.googleusercontent.com/-II1EUayfmoU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOA0sX0ba0psNBFKuJ0MbaNvABlxQ/photo.jpg,Great task and project management app. User friendly and versatile. Lists and sub lists work well for most to do list requirements. Would just recommend to developers to introduce a couple of improvements... 1) there should be a difference between the date you plan to do a task and its deadline/due date. 2) would be great to be able to add a description and deadline to a sub list thereby creating little projects.,4,0,2.3.2,2020-04-03 08:48:29,"HI Jamie, nice suggestions! Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It simply relies on donations, premium subscriptions and my spare time to move forward. I will add your suggestions to my list for future improvements. I hope this helps, Steve",2020-04-03 10:23:09,newest,com.tasks.android +Jennifer Brisbin,https://lh3.googleusercontent.com/a-/AOh14Ghx0XHZtHU2-pMf0QUEx1qRXDcwuCdQAYF7VE2JdQ,Works great at keeping me organized. I have not had it long so I will have to explore the features. Update-New phone. I can now use the microphone to add tasks. This app is just smart enough. I use it as my own personal to do list separate from Google Tasks which I use for work. It's simple with just enough features and not all the predictive noise threaded through all Google apps.,4,0,2.3.2,2020-04-03 02:39:22,"Hi Jennifer, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-02-17 13:59:39,newest,com.tasks.android +Makand Dugh,https://lh3.googleusercontent.com/a-/AOh14GhOtPH3xaWRIuLAyQ6VPkr1fGtU4d-Hu2wgxYZvZSk,"Haven't come across a better app if it's type. It's not a project management tool but you can have a list in your reminder! It's probably a big leap but if i could share the task list with somebody without exporting that would be cool. The notification, repeat, export control, is brilliant. Really helps me organise my home tasks without being frustratingly intrusive and distracting. I've tried a lot of applications, this is second to none!",4,15,2.3.2,2020-04-02 09:15:02,"Makand, Tasks is a community driven hobby project of mine with all non cloud features offered for free without advertising. It simply relies on donations, premium subscriptions and my spare time. This has been very popular and so i am currently working on a browser based web app. Once complete I will add list sharing. I hope this helps, Steve",2020-04-02 10:07:55,newest,com.tasks.android +keeth Hutchings,https://lh3.googleusercontent.com/--PKwmaRG6Bw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPcVtCRlqUrIF-mq39wVJSXTU1YSg/photo.jpg,Very useful very easy to use.,4,0,2.3.2,2020-04-02 07:36:25,"Hi Keeth, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. It simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-04-02 08:18:31,newest,com.tasks.android +Noelani Andrade,https://lh3.googleusercontent.com/a-/AOh14GiQX_LWUvGn7J2HCQLEmZZQxMv9poCPnNEzeO6-,It helps me organize my life.,4,0,2.3.2,2020-04-02 06:09:26,"Hi Noelani, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. It simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-04-02 07:18:59,newest,com.tasks.android +I am the Gamoork,https://lh3.googleusercontent.com/a-/AOh14Giipb90b3c8mfmoHSUrVXlivF5K8TmYMk803Cp-,Very useful and easy to use.,4,0,2.2.0,2020-04-01 22:17:30,"Hi, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. It simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-04-02 07:18:43,newest,com.tasks.android +Rahul Nihalani,https://lh3.googleusercontent.com/a-/AOh14Ggz_zbce3Rxq5oy3yB4U2jZngRgc710s4kg5I3q,"I wish I could give it 5 stars. Only thing missing is a Windows/Linux app for syncing, which I can't do without, and that's the only thing keeping me away. I would happily pay for that feature. If you just need an Android app, no need to look elsewhere. It has everything you can ask for. The UI is great, and very intuitive.",4,0,2.3.2,2020-04-01 16:34:56,"Hi Rahul, Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It simply relies on donations, premium subscriptions and my spare time to move forward. I am currently working on a browser based web app which I am hoping to release in the coming weeks. I hope this helps, Steve",2020-04-01 17:27:48,newest,com.tasks.android +Jim Baker,https://lh3.googleusercontent.com/-F9etFs9ilzo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN_EwCD6MtG50aW9hWMGzOd6TStew/photo.jpg,This is a really useful app for managing multiple to do lists.,4,0,2.3.2,2020-04-01 11:31:53,"Hi Jim, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. It simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-04-01 12:00:33,newest,com.tasks.android +SCB Watson,https://lh3.googleusercontent.com/a-/AOh14GhcAiZ_YiS_aWjd9X9yAyydNXKh7DJvYhSdQz6l7T8,Good app. Effective at reminders. Easy to use and read. Looked at quite a few task apps. Happy i picked this.,4,0,2.3.2,2020-04-01 04:44:27,"Hi, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. It simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-04-01 07:25:25,newest,com.tasks.android +david scanlan,https://lh3.googleusercontent.com/a-/AOh14GiLkoD3odVv0LVrXr5e2KgzcZjJ9-DwN7hG5-xM4Q,I have reminder set for every weekday morning at a certain time. Hasn't reminded me at the right time yet. Always hours after I get it.,4,0,2.3.2,2020-04-01 04:20:04,"Hi David, apologies you're having an issue. However, this is an issue with your device not Tasks. Unfortunately Samsung add very aggressive power saving to their devices which breaks the standard Android alarm manager functions. Checkout the help (also available via the ""help"" button in the main menu): https://mytasksapp.com/help/faqs, Steve",2020-04-01 07:27:29,newest,com.tasks.android +Kay Vee,https://lh3.googleusercontent.com/-sFVIHFjL0ak/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNjVOUfyPElWLXw5-17A97TBLejmw/photo.jpg,Very good app. Simple to use.,4,0,2.3.2,2020-03-31 21:16:04,"Hi Kay, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. It simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-31 21:22:59,newest,com.tasks.android +James Thomas,https://lh3.googleusercontent.com/-uHUASOT6rFQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPHi82sOHFO-SSQ-1EkhmwGvFj73g/photo.jpg,Like it!,4,0,2.3.2,2020-03-31 11:18:25,"Hi James , really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. It simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-31 13:04:13,newest,com.tasks.android +Ryota Kise,https://lh3.googleusercontent.com/a-/AOh14GgRI5oC2wtjfUDfIIi981oMbOXo_YbUa8BL5rdN,"I really liked this app, however I have downloaded it yesterday and created tasks which repeats daily but it always shows tasks date 30 March. It was just the date I created it, it repeats daily so the dates should change too. It feels as if I am checking undone tasks from the past. Even in the calander view these tasks are not added to 31 March. It's annoying me. Please do something about it.",4,0,2.3.2,2020-03-31 00:45:09,"Hi Ryota, I'm not 100% sure I understand. Maybe you could simply email me (tasks.list.app@gmail.com) with more details and so I may help you. Thanks, Steve",2020-03-31 07:47:34,newest,com.tasks.android +Iman Abasnezhad,https://lh3.googleusercontent.com/a-/AOh14GiOTzkbSzpk7MYMgz1rOf9ANEcFQqlm8xwQb7DnOg,Not a very userfriendly app. But you'll figure it out,4,0,2.3.2,2020-03-30 16:38:31,"Hi Iman, maybe you could be more specific? Most users mention how easy and intuitive my app is. Tasks is a community driven hobby project fo mine with the most popular suggestions added over time. It simply relies on donations and my spare time to move forward. Please email me your suggestions (tasks.list.app@gmail.com). Thanks, Steve",2020-03-30 17:52:40,newest,com.tasks.android +Jesus Murillo,https://lh3.googleusercontent.com/-KP1cUuaaZoo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNA_gN1NGZiKPm-orhZFytmr4_5Xw/photo.jpg,"So far I am enjoying this task app. I am still learning new things, but is definitely helping me stay organized.",4,0,2.3.2,2020-03-29 14:57:21,"Hi Jesus, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. It simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-29 15:05:48,newest,com.tasks.android +Mary Rose Albo,https://lh3.googleusercontent.com/a-/AOh14GgscVrwsg3GgTVIS1z7GVQFl_DLUd3HkFKDtm46,"It would be better if we can insert pictures in the tasks. But all in all, it was cute and helpful!",4,0,2.3.0,2020-03-29 11:52:58,"Hi Mary, thanks for your suggestion. Tasks is a community driven hobby project of mine with the most popular suggestions added over. It simply relies on donations and my spare time to move forward. I will add your suggestion to my list for future improvements. I hope this helps, Steve",2020-03-29 12:53:38,newest,com.tasks.android +Rodney Mills,https://lh3.googleusercontent.com/-nCzY_625Sb4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO3HW-tHzO6WkSf7nIszJ_X9PIY2Q/photo.jpg,Easy interface 😁,4,0,2.3.2,2020-03-28 01:23:44,"Hi Rodney, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. It simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-28 10:21:31,newest,com.tasks.android +Sonya Rae,https://lh3.googleusercontent.com/a-/AOh14GjEAQqzErYmFSEoOFRDv_3Fk20mDRd8YQCdhqhmHw,So far so good. I just need to remember to look at it.,4,0,2.3.2,2020-03-27 20:26:59,"Hi Sonya, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. It simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-28 10:17:27,newest,com.tasks.android +Haze Gabs,https://lh3.googleusercontent.com/-7A1tkrDaPBg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMXd5xqhcEhHJ6A0x9c7zxU6GEIWQ/photo.jpg,Good,4,0,2.2.0,2020-03-27 14:37:45,"Hi Haze, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. It simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-27 14:51:54,newest,com.tasks.android +Monica Gott,https://lh3.googleusercontent.com/a-/AOh14GgCdZ3wLE0e0Od806Z_5IkESnHJpQPBCuySpBc7,"Tasks:ToDo is a work in progress. Nevertheless, it is very handy, and I am happy to have it. (I'm a former Wunderlist user.) I believe the app developer will continue to tweak Tasks: ToDo. Not that it's not helpful now. I do miss the deleted items not being ""hidden"" under the category of tasks they came from. This was very handy for shopping (especially groceries & other places I shop for), I could peruse my completed list for things I may have forgotten. Thanks so much! Continue the good work",4,11,2.3.2,2020-03-26 20:36:45,"Hi Monica, instead of deleting tasks whilst shopping simply click the complete checkbox. Then in settings enable the ""Move completed"", this will move completed Tasks to the bottom. I hope this helps, Steve",2020-03-27 08:55:39,newest,com.tasks.android +Ernest Mugadza,https://lh3.googleusercontent.com/a-/AOh14GgMnLupDeZYkCYE73qt9kjTCYA6fszLaHuODlVp,"Love it, best i could find so far",4,0,2.2.0,2020-03-26 10:22:45,"Hi Ernest, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. It simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-26 11:37:50,newest,com.tasks.android +Angela Cline,https://lh3.googleusercontent.com/a-/AOh14Gg-FiaIZkPa84zLetxEpMs5SuG53WsmYzSoKohc,Lets me make nice lists for everything!,4,0,2.2.0,2020-03-25 13:22:00,"Hi Angela, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. It simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-25 14:25:22,newest,com.tasks.android +kye alexander,https://lh3.googleusercontent.com/a-/AOh14Gjq0-KQpdSg-_X_EB1VQq93wQsIMRYRHxtnwvzOXXY,A little confusing to navigate at first but otherwise useful,4,0,2.3.1,2020-03-25 05:57:38,"Hi Kye, apologies if my app was too complicated for you. Most users say how easy and intuitive my app is. Maybe you could email me (tasks.list.app@gmail.com) with suggestions to make it easier for all users? Thanks, Steve",2020-03-25 08:18:20,newest,com.tasks.android +Angus Richardson,https://lh3.googleusercontent.com/-r31RjKugXAw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP2LNmyvTj6OsMC44DVpyAwugEG9Q/photo.jpg,"Really, just started using this app. Seems pretty good but way early days to rate beyond 4* even if it does deserve it.",4,0,2.3.1,2020-03-24 18:15:48,"Hi Angus, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. It simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-24 18:47:07,newest,com.tasks.android +Stephanie Kelly,https://lh3.googleusercontent.com/-4hYaSgC7HRE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNK1_LAKo_QY966QRuiboHxl9aODQ/photo.jpg,This sponsors exactly what you want it to do. Also love the colours and reminder options.,4,0,2.3.1,2020-03-21 21:30:55,"Hi Stephanie, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. It simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-21 22:06:49,newest,com.tasks.android +Bob Crowder,https://lh3.googleusercontent.com/a-/AOh14GgewczILvikdi_TPYyeMcH8RcphiKoLvidXZYS9,"Good, could be better I can not find where you can have a task repeat every week, month, year",4,0,2.3.1,2020-03-21 14:00:02,"Hi Bob, simply checkout the online help (available though the ""Help"" button in the main menu): https://mytasksapp.com/help/faqs#recurring-task. I hope this helps, Steve",2020-03-21 14:53:48,newest,com.tasks.android +aswin mg,https://lh3.googleusercontent.com/a-/AOh14GixOF5Swu3uc8JnI36S5An6ohqOC1oNMAMAQeOCBg,Such an easy to use task manager,4,0,2.2.0,2020-03-20 06:44:53,"Hi Aswin, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support. It simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-20 10:05:58,newest,com.tasks.android +Thom Gallagher,https://lh3.googleusercontent.com/a-/AOh14GgqkbS1Dbg1ZeysFtISZ2DCFvk4N3P_iSp1iyjNoYo,Best task app I've found with reminders and a variety of tasks types. Keep up the good work.,4,0,2.3.0,2020-03-19 23:44:59,"Hi Tham, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-20 10:07:49,newest,com.tasks.android +Dominik,https://lh3.googleusercontent.com/a-/AOh14GiFLXPaWFwTvgQyos1hrtfgxhSOBLo5Hb7qLVld,"This app looks great and most of the functions seem to be very practical. There isn't any Windows or browser-based version for usage on a computer, is it? If not, is something in planning? As Wunderlist will be shut down, I'm in search for a good alternative, and this app WITH a sync function would be amazing! Edit: Showing the calendar view in a widget would be fantastic as well.",4,34,2.3.1,2020-03-19 20:48:18,"Dominik, Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It simply relies on donations, premium subscriptions and my spare time to move forward. I am currently working on a browser based web app which should be available in the coming weeks. I hope this helps, Steve",2020-03-20 10:31:54,newest,com.tasks.android +Vinnyrem Fitch,https://lh3.googleusercontent.com/a-/AOh14Ghu64amyflvp_Vgy8V4rieBB-TYjYhxc7Y2tt8Q,Just what I need,4,0,2.2.0,2020-03-18 22:15:53,"Hi Vinnyrem, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-19 08:32:09,newest,com.tasks.android +Lisa,https://lh3.googleusercontent.com/-pNhRTnDevNE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNJ7t2WWXPq6ESZtnOI77gnfrIl4Q/photo.jpg,"I like: * the way it separates lists (""sub lists"") horizontally, and I can switch between them conveniently with swipes, though I tend to accidentally delete tasks when trying to switch lists * I value the convenience of swipe to delete the most * being able to quick add tasks from the main screen, removes one extra tap step * being able to highlight important tasks, but wish it would automatically pin them to the top. Feature I wish most for: Image attachments. Idea: Location-based reminders?",4,13,2.3.0,2020-03-18 16:17:43,"Hi Lisa, thank you for your great feedback and suggestions! Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It simply relies on donations and my spare time to move forward. I will add your suggestions to my list for future improvements. I hope this helps, Steve",2020-03-18 16:30:09,newest,com.tasks.android +Jodi Adlesperger,https://lh3.googleusercontent.com/-rsHkDCqIgNs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMnOxku_iG2PGRR7tSsU5k0clPaXg/photo.jpg,"I have looked and looked for an app that would let me make lists and check them off like pen and paper, and this does that. Simple and great to use.",4,0,2.2.0,2020-03-17 19:05:49,"Hi Jodi, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-17 19:11:55,newest,com.tasks.android +Mattie Jones,https://lh3.googleusercontent.com/a-/AOh14Gi_HW4_E_y6PGt58OjUTznnOdADbfL2-DUIR6sS,"I am just beginning to use this app, but it appears to have everything I need",4,0,2.2.0,2020-03-17 14:57:37,"Hi Mattie, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-17 15:45:14,newest,com.tasks.android +Anne L Jean Baptiste,https://lh3.googleusercontent.com/-DTvU1flnflI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNpK5ryxbCPgjtyzQfkETK2BkQX0w/photo.jpg,Good app,4,0,2.2.0,2020-03-17 13:09:54,"Hi Anne, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-17 13:52:53,newest,com.tasks.android +Ryan Vickers,https://lh3.googleusercontent.com/-zHImuvSc1WQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPKGiBaD_5WhgbP0S8DGdn3Y869nQ/photo.jpg,Fantastic except I cant attach photos to a task. A picture is worth a thousand words. Otherwise it's the best app for lists. Keeping work and home seperate ect.,4,0,2.2.0,2020-03-16 19:01:08,"Hi Ryan, a great suggestion! Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It simply relies on donations/subscriptions and my spare time to move forward. This has been very popular and so I will add this in a future update. I hope this helps, Steve",2020-03-16 19:41:30,newest,com.tasks.android +Three Princesses,https://lh3.googleusercontent.com/-0V7uNYhqlw0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPFIiFebjyqD4L-b4ITsANaOhBC8g/photo.jpg,Easy to use,4,0,2.2.0,2020-03-16 17:24:09,"Hi, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-16 17:31:28,newest,com.tasks.android +Lu Kogane,https://lh3.googleusercontent.com/a-/AOh14GhguTm1dHxyIuGKasgWjQaA2AgMpvURMoW3lZOxbA,This app is great to organize your day or make shopping lists etc. But sadly I don't get notifications even if I turned them on. I hope this will be fixed soon!,4,0,2.2.0,2020-03-16 08:42:33,"Lu, apologies you're having an issue. However, this is an issue with your device not Tasks. OnePlus add very aggressive power saving to their devices which breaks the standard Android alarm manager functions. Please checkout the online help: https://mytasksapp.com/help/faqs#notifications I hope this helps, Steve",2020-03-16 08:58:34,newest,com.tasks.android +simple beautiful,https://lh3.googleusercontent.com/a-/AOh14GiAqrRqxZWdKlxNREsp9FnyWDe7QeTkznkSln4maw,To do list works good but it is no idiot proof. Developer needs to add more walk through instructions at start when the app is downloaded. When people commit on issues- the developer replies offended- but the developer did not make a idiot proof way of solving these problems that a newbie with little patience would have- instead they lash out - its not the user's fault- its the developer fault for not understanding the concept of idiot proofing a sound product- face it-people don't read!,4,2,2.2.0,2020-03-15 19:01:17,"Maybe you could help? When you first open Tasks there is context based help. There is a ""Help"" button in the main menu with a getting started guide and lots of tips and tricks to get the most out of Tasks. What more would you like from an ""idiots guide""? Please email me (tasks.list.app@gmail.com) with your suggestions. Thanks, Steve",2020-03-15 18:27:31,newest,com.tasks.android +David,https://lh3.googleusercontent.com/-BmwT9oRQ9tQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMonvXKc6U0zHRzMamyv7JA4DOQ-Q/photo.jpg,Easy to use. Really helps keeping me on top of things.,4,0,2.2.0,2020-03-15 03:19:29,"Hi David, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-15 10:48:29,newest,com.tasks.android +Antoine Chamberland,https://lh3.googleusercontent.com/-ldMYb4dmjnc/AAAAAAAAAAI/AAAAAAAAAIg/AAKWJJMCDzObKfGCRXlydv7AAdclObTnXw/photo.jpg,"Working great for me. Simple to use, relatively detailled, free... !",4,0,2.2.0,2020-03-14 18:27:57,"Hi Antoine, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-15 10:48:24,newest,com.tasks.android +C L,https://lh3.googleusercontent.com/-M7nx9jVzP0w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMB596CnBH28B_IkGh5I3lUm4PnJw/photo.jpg,Pretty useful,4,0,2.2.0,2020-03-14 16:50:08,"Hi, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-15 10:48:11,newest,com.tasks.android +The Ragnorok,https://lh3.googleusercontent.com/-3cwjvctush0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJONPRL5CSoSnZh9jXUhDwmboUNqXA/photo.jpg,"For some reason I can't edit my other review on the phone, or if I can it's not clear how. Lists are not in an intuitive place imo, so I missed them entirely, resulting in that erroneous post. If this supported arbitrarily nested task levels I'd give it five stars, but I'm definitely going to use this. R.I.P. Wunderlist",4,4,2.2.0,2020-03-14 13:51:04,"Hi, Tasks is.a community driven hobby project of mine with the most popular suggestions added over time. All non cloud features are offered for free without advertising and it simply relies on donations/subscriptions and my spare time to move forward. I will add your suggestion to my list for future improvements. I hope this helps, Steve",2020-03-15 10:50:09,newest,com.tasks.android +Enzo-Alain Chellan,https://lh3.googleusercontent.com/a-/AOh14Gipf3H4g8vpPJHlh0TAN7bTEhNNp7I07mUORN0,Can construct reminders well with an in depth layout,4,0,2.2.0,2020-03-14 11:06:16,"Hi Enzo-Alain, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-15 10:47:03,newest,com.tasks.android +kavel anthony,https://lh3.googleusercontent.com/a-/AOh14GgwnzEm55_FG1DUqmmoV29GihIhNM8gUYHrnnpc,Great app,4,0,2.2.0,2020-03-13 13:01:31,"Hi Kaval, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-13 13:23:08,newest,com.tasks.android +Cindy Rose,https://lh3.googleusercontent.com/a-/AOh14GjoKG2pxbJx7zicF7EBA_ULIjmVGLbM_5qX3I3f9A,"Love it!! Only wish there was more instruction on how it all works! It does alot, will be perfect, once I learn how it's all done 😄!!",4,0,2.2.0,2020-03-13 03:59:03,"Hi Cody, checkout the online help via the ""Help"" button in the main menu. I hope this helps, Steve",2020-03-13 07:51:59,newest,com.tasks.android +Betty Ann Baich,https://lh3.googleusercontent.com/-5cNvzjq7XhM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMxT4H0zAikG1Km_4AymBfTuhu3hg/photo.jpg,Just started using and so far it's good,4,0,2.2.0,2020-03-13 02:45:48,"Hi Betty, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-13 07:51:08,newest,com.tasks.android +Heather Speck,https://lh3.googleusercontent.com/a-/AOh14GjrtZE5_uTjLp_EfyOmHP4J1WVpIvGB6e9_HUwB,Definitely helps me to stay organized a little easier. I personally use it in conjunction with an old fashioned pen and paper when I have a lot to get done in a day. The only complaint I have with it is that I wish I could add additional reminders for the tasks instead of having to choose a reminder time based off of a due date I set. Other than that it's great and easy to use.,4,13,2.2.0,2020-03-12 23:03:14,"Hi Heather, really glad you're finding my app useful. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It simply relies on donations and my spare time to move forward. I will add your suggestion to my list for future improvements. I hope this helps, Steve",2020-03-13 07:54:15,newest,com.tasks.android +Stephane Neveu,https://lh3.googleusercontent.com/-ymX-mTPrxLg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNPCOtMx3XTNfh_W5n3vA86ty34iA/photo.jpg,Need compatible with apple for 5 star,4,0,2.2.0,2020-03-12 16:22:05,"Stephane, Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It simply relies on donations and my spare time to move forward. I am currently working on a browser based web app (any browser, any device). Once complete I will add list sharing and the begin writing an iOS version. I hope this helps",2020-03-12 17:16:46,newest,com.tasks.android +Bisni Group,https://lh3.googleusercontent.com/a-/AOh14GjxomX5d5ZQ9ewUcPsiXE2zRfkVXW2aS-UcAo7mOg,Good,4,0,2.2.0,2020-03-12 13:21:56,"Hi, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-12 13:25:35,newest,com.tasks.android +Muhammad Rashid,https://lh3.googleusercontent.com/a-/AOh14GjpMB9W_2i2taZjNc_ulY4e6WkJ8mnJJe_Kymw0rQ,Its a very good app however I guess its desktop version is not available. If they have it will be a great organizing app. Great app 😘,4,0,2.2.0,2020-03-12 10:04:14,"Hi Muhammad, Tasks is a community driven hobby project of mine. I am currently working on a browser based web app which will be available in the coming weeks. I hope this helps, Steve",2020-03-12 10:29:36,newest,com.tasks.android +rosidi hashim,https://lh3.googleusercontent.com/-d-KlvVUCd4w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO_KbfTvgMLjVLqCjncJR2IXBkbLQ/photo.jpg,Good,4,0,2.2.0,2020-03-12 07:42:05,"Hi Rosidi, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-12 09:15:07,newest,com.tasks.android +Claire Brandon,https://lh3.googleusercontent.com/-sii4M1O9q5A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPF0Af1WfFN5MLTwYwfG5gsuE8POQ/photo.jpg,I love the different colour options 👏😍,4,0,2.2.0,2020-03-12 06:50:08,"Hi Claire, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-12 09:14:59,newest,com.tasks.android +Mudassar J,https://lh3.googleusercontent.com/a-/AOh14GiSuwBQS-bY-5nOFAeP2ETKdobZoDJoD8hHfdKaSw,"It's a good app for task reminder but it still needs some thing more. One needs to go into the menu to switch to the lists no matter which list has an upcoming task. It should have option to show the mix of tasks from all lists in tiles/widgets on app home interface. I really like the snooze option, quite straight away.",4,1,2.2.0,2020-03-12 04:32:36,"Mudassar, this is possible. Simply create a filtered list (main menu) with the default options. This will create an all tasks list that can be displayed in the app or widget. For more help with Tasks features checkout the ""Help"" button in the main menu. I hope this helps, Steve",2020-03-12 09:16:27,newest,com.tasks.android +Mike Strode,https://lh3.googleusercontent.com/-ohRYf8gbhEY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNofBn8ryty69x21ImnmKoovzb1yQ/photo.jpg,Helps me keep on track of what needs done.,4,0,2.2.0,2020-03-11 12:57:32,"Hi Mike, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-11 13:11:38,newest,com.tasks.android +Derek Evans,https://lh3.googleusercontent.com/a-/AOh14GjbXjdTBv1lRfYfSAPg6a_LiO3SV89WFljn40JM,Does what I need it to do,4,0,2.2.0,2020-03-11 11:05:41,"Hi Derek, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-11 11:25:32,newest,com.tasks.android +Cam Crea,https://lh3.googleusercontent.com/-lzcixxOVVD8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNmGoj-v5sL0vTCQ-mw5OcwLAg0fg/photo.jpg,"Thanks for the response. The fact that an event repeats should have nothing to do with the type of notification and I think there should still be a repeating icon if no notification is set. It is possible to want an event to repeat without getting an alert. Also, why is the default ""notification"" when there is a date? All tasks with dates do not require a notification.",4,9,2.2.0,2020-03-09 14:08:09,"Hi Cam, you will see the repeat icon if you set the reminder type to to notification or.alarm. I hope this helps, Steve",2020-03-09 13:40:11,newest,com.tasks.android +Niamh N,https://lh3.googleusercontent.com/a-/AOh14Gh-dtUOwmZTffSmJup2-e8VhQ1DV7DAhZzJxruo,Only been using couple days. So far so good. Easy to get the hang of. Some functionality aspects could be enhanced but overall v glad to be with this app.,4,0,2.2.0,2020-03-09 13:46:39,"Hi Niamh, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-06 07:18:07,newest,com.tasks.android +Gary Madison,https://lh3.googleusercontent.com/-pzfkVjd_D2E/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM4vAcWrG5DJC8q9cfmGAKzCzyXKg/photo.jpg,Simple to use and track tasks,4,0,2.2.0,2020-03-09 10:26:08,"Hi Gary, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-09 10:32:54,newest,com.tasks.android +akanksha thakur,https://lh3.googleusercontent.com/a-/AOh14GjkU-WVRlOatSnXnGFi79l94RehNiPv7rvedLZ4Wg,Helpful in making list of work,4,0,2.2.0,2020-03-09 07:54:04,"Hi Akanksha, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-09 08:17:32,newest,com.tasks.android +Dharmesh Kapoor,https://lh3.googleusercontent.com/a-/AOh14GjMkrA9FF2xj_E3Tvr4M132USa_Qet5r-082nUkqpU,"It's easy, smooth and fast.",4,0,2.2.0,2020-03-07 12:26:15,"Hi Dharmesh, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-07 14:56:51,newest,com.tasks.android +Chris Warren,https://lh3.googleusercontent.com/a-/AOh14Gjhy26sdujFE4XemYMPhCaLuGBKSLIVm2zUd6yl,A great way to get organized and remember your to-do list!,4,0,2.2.0,2020-03-07 03:01:11,"Hi Chris, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-07 07:44:20,newest,com.tasks.android +vrajesh shah,https://lh3.googleusercontent.com/-MwFHZHsAA08/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPxQXpu3M98_uMERmOVPM0ESyjgvg/photo.jpg,"Bullet should be in front of the first line of the paragraph, not in front of the middle of the paragraph",4,0,2.2.0,2020-03-07 02:33:56,"Vrajesh, I'm not 100% sure I understand. Maybe you could email me? Note: Tasks is a community driven hobby project of mine with the most popular suggestions added over time with all non cloud features offered for free without advertising. It simply relies on donations and my spare time to move forward. Steve",2020-03-07 07:45:49,newest,com.tasks.android +Saloni Tayal,https://lh3.googleusercontent.com/a-/AOh14Gi2U01w7bFoWGpv0anMd25g1XHdM0y3nyvXMunxFA,"I really loved this app. It has everything I wanted. But I feel like there is still room for improvement in this app, it's my personal opinion though, It will be better if you could add a screen for the heat map and that heat map would be colored on the days when user did at least one task, another one could be letting user add notes for subtasks also. 🙏",4,12,2.2.0,2020-03-06 09:15:56,"Hi Saloni, a great suggestion! Tasks is a community driven hobby project of mine with the most popular suggestions added over. It simply relies on donations and my spare time to move forward. I will add your suggestion to my list for future improvements. I hope this helps, Steve",2020-03-06 09:44:54,newest,com.tasks.android +Esther Williams,https://lh3.googleusercontent.com/-kVvfkxeiSf8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMnz5GbYlhHDf17XjJd5nwAR2k72A/photo.jpg,I love the basic version. It really helps me stay organized!,4,0,2.2.0,2020-03-06 08:00:33,"Hi Esther, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-06 09:43:04,newest,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Works as advertised, now it's up to you to finish it.",4,0,,2020-03-06 07:08:25,"Hi, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-06 07:20:56,newest,com.tasks.android +Pranu L,https://lh3.googleusercontent.com/-0Q5mwVn_WV8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNO0JHptkioM_VWH4UcxWtkeXDeqA/photo.jpg,I love this app. What I liked is the alarm feature for individual list items.,4,0,2.2.0,2020-03-05 07:50:55,"Hi Pranu, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-05 08:17:20,newest,com.tasks.android +Lauren,https://lh3.googleusercontent.com/-RjnB5_Se4_8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNKHmJFWj0LoTrxq2fa5SqPsnpgtg/photo.jpg,Very Helpful! I can see what I have accomplished and organize my week with what I want to do.,4,0,2.2.0,2020-03-05 01:59:24,"Hi Lauren, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-05 07:07:25,newest,com.tasks.android +Rania Elrifai,https://lh3.googleusercontent.com/-830aDwCw9l4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMSIlaRkcVa6egg6dPzKvWT00IH8A/photo.jpg,"This app is so good, it organized my life, but the reminder does not work",4,0,2.2.0,2020-03-04 19:06:29,"Rania, this is an issue with your device not Tasks. When creating a task with a reminder you will have seen a dialog with help for your device. Huawei add very aggressive power saving to their devices which breaks the standard android alarm manager functions https://mytasksapp.com/help/faqs#notifications I hope this helps, Steve",2020-03-04 19:32:48,newest,com.tasks.android +Chris Bryson,https://lh3.googleusercontent.com/-Nsp3oWsVcYE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP35S09LzYSUF0MA1Gz0obdXor05Q/photo.jpg,Great,4,0,2.2.0,2020-03-04 14:26:09,"Hi Chris, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-04 14:45:30,newest,com.tasks.android +Sandra Marchino,https://lh3.googleusercontent.com/a-/AOh14GiSqOtk1uL3BVXSBkyvY_ppaSkjce5KQlS34_a4Ow,"It's not as straight forward as others. But I like the many color options I have a task that is a grocery list, so it is lengthy. In moving from list to list I have accidentally removed items. I don't see an undo.",4,0,2.2.0,2020-03-04 02:42:52,"Checkout the online help: https://mytasksapp.com/help/faqs#undo I hope this helps, Steve",2020-03-04 07:06:58,newest,com.tasks.android +Kristina Sundberg,https://lh3.googleusercontent.com/-GY0Z0JDm9Yw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMPyUDLZkPT61o0cTgbkXDKcxEsJQ/photo.jpg,Clear and easy to use,4,0,2.2.0,2020-03-03 22:38:28,"Hi Kristina, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-04 07:05:44,newest,com.tasks.android +Regime studios,https://lh3.googleusercontent.com/a-/AOh14GiH8Phz5-iRh3OF8eAVOP_EWX1AoPvT0l4E7SEJtw,Works very well and is easy to Use.,4,0,2.2.0,2020-03-03 14:00:52,"Hi, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-03 14:48:22,newest,com.tasks.android +Angela Baranowski,https://lh3.googleusercontent.com/a-/AOh14Ghfq0sQspBoGf6Pzu_S6K4ar2xQm06v31qsq5qNOA,Like it. Colors. Change order. Multiple list. Completing date.,4,0,2.2.0,2020-03-03 04:32:48,"Hi Angela, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-03 08:11:55,newest,com.tasks.android +Darla Garcia,https://lh3.googleusercontent.com/-V_Prm4QK_8k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNa80UtW4_m5zNc8WG6-R6xeKgOmQ/photo.jpg,So far so good. I will rate better once I start realy utilizing the app. Thanks!,4,0,2.2.0,2020-03-03 04:15:20,,,newest,com.tasks.android +Michael Bosch,https://lh3.googleusercontent.com/-w38ve4jy1MI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOgGQ2GWy9OmH6bUx7nn-XkaeJnIA/photo.jpg,"This is the best task keeping app out on the market. It has a very easy interface, and many useful features that are blended together well into a useful product.",4,1,2.2.0,2020-03-03 03:44:58,"Hi Michael, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-03 08:11:22,newest,com.tasks.android +utkarsh singhal,https://lh3.googleusercontent.com/a-/AOh14Gg_x95I88ITbkiuytTJ9bOiCNtgqoFoOhFaMfYz58Q,The Widget shows only 1 List Item. Is there any way to enable multiple lists viewing in Widget Mode.,4,0,2.2.0,2020-03-02 12:22:45,"Yes, of course. Simply tap the list icon (top left) and choose a different list. Note, you can also have multiple widgets displaying different lists. Finally for help with basic features checkout the ""Help"" button in the main menu of Tasks. I hope this helps, Steve",2020-03-02 12:51:52,newest,com.tasks.android +true soul,https://lh3.googleusercontent.com/-EpzaoO1hACk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNXyueCt0rE2WwDWyz-OVZrICgKoA/photo.jpg,Although it's very helpful but make a navbar of all the lists or try to show all the lists in list format when we open the app so that we can see which lists are there,4,0,2.2.0,2020-03-02 12:09:16,"Hi, you could simply enable the ""Show main menu when opening Tasks"" setting. By default Tasks will open the last list you had open i.e. pick up where you left off. I hope this helps, Steve",2020-03-02 12:24:21,newest,com.tasks.android +Srdjan Novakovic,https://lh3.googleusercontent.com/-ljYznho_WtI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOEjxSMTTmkqA0j_r15oUJSu5JErg/photo.jpg,"The app is real comfortable for use, the only thing I can't understand is how to view the events you create from the calendar icon top left?",4,0,2.2.0,2020-03-02 08:06:40,"Hi Srdjan, to view your tasks on a calendar simply enable the calendar view in settings. The calendar icon is for adding the task to your devices default calendar. I hope this helps, Steve",2020-03-02 08:30:08,newest,com.tasks.android +Jose Muttathu,https://lh3.googleusercontent.com/a-/AOh14GirHShXauZu9xLVYxKIhY6DUVMoSyZCMMUXMnbg2Q,It ia wonderful app,4,0,2.2.0,2020-03-01 20:57:17,"Hi Jose, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-02 07:18:42,newest,com.tasks.android +Scott Woods,https://lh3.googleusercontent.com/-JgUfjkFD7yM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNC-03TA3P7TfakHaVgpR5vHAK8tQ/photo.jpg,"Great, handy way to stay organized",4,0,2.2.0,2020-03-01 14:52:44,"Hi Scott, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-01 15:51:26,newest,com.tasks.android +Benarji Anand,https://lh3.googleusercontent.com/a-/AOh14Gic2ewi_cba6knJMxR9ia_6_FLCwzaoDdLWL7_H,I'd give this a five star if not for the backing up which prevents importing mismatched versions. Kinda redundant if we can't use the backup that we took two weeks prior.,4,0,2.2.0,2020-03-01 11:51:45,"Hi Benarji, you could simply email me and I can upgrade your backup file for you? Note, there is also automatic cloud backup as part of Tasks Premium (main menu)which works between all versions. I hope this helps, Steve",2020-03-01 12:16:25,newest,com.tasks.android +Kathleen Donodeo,https://lh3.googleusercontent.com/a-/AOh14GjzbSHHEwGuEjRmKCQUPJG3rHEeuEZcr_Qkydgilw,"Very easy to use and intuitive. Wish there were a way to roll incomplete tasks forward to a new list or a different list (I tend to make a list for each day). Otherwise, love it.",4,1,2.2.0,2020-03-01 04:42:54,"Hi Kathleen, thank you for your great feedback. You could create a filtered list (main menu) to create a today list automatically based on reminder date and show over due. I hope this helps, Steve",2020-03-01 08:01:16,newest,com.tasks.android +Gamini Warnasuriya,https://lh3.googleusercontent.com/-IiTRNPvJdIg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMaRIU10HGiCzYDKSBPVpC27oxHDw/photo.jpg,Good easy to use,4,0,2.2.0,2020-03-01 02:59:49,"Hi Gamini, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-03-01 08:01:40,newest,com.tasks.android +sleepy avery,https://lh3.googleusercontent.com/a-/AOh14GjIeaHJeI1SzmwEe2gOAVRl49juirLgWJ_pPaPbEQ,"My go to tasks app. Happy to finally see a premium payment because you deserve money for this thing, but immediately saddened that it's subscription only! I get why, but please add a one time payment option too for those of us who don't want to deal with such things.",4,1,2.2.0,2020-02-29 22:02:55,"Thank you for your great feedback. Unfortunately servers and storage around the world cost me money every month that you use them. A one off payment would be for a.lifetime? You could simply sign up for a year and then cancel the subscription to stop the auto renew. Tasks will notify you when your year has run out. I hope this helps, Steve",2020-03-01 07:36:45,newest,com.tasks.android +Michèle Singer,https://lh3.googleusercontent.com/-fxKgetYXfcU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPu8DAXfPjGMRBuKVEUmvdc8IDTVQ/photo.jpg,Great app. Only one disadvantage : no backup possible.,4,0,2.2.0,2020-02-29 10:36:59,"Hi Michèle, this is not true. You have automatic cloud backup as part of Task Premium (main menu). Alternatively, there is a manual option in settings. I look forward to getting my 5th star 😀 Steve",2020-02-29 12:55:04,newest,com.tasks.android +Christopher Heldt,https://lh3.googleusercontent.com/-TIjh6LuDYBg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOXGlrWbDlnOKifWFOpCapJrAC3jQ/photo.jpg,Helpful to keep track of to do's and can set reminders at various times.,4,0,2.2.0,2020-02-29 01:46:06,"Hi Christopher, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-02-29 08:21:25,newest,com.tasks.android +Flow Bdos,https://lh3.googleusercontent.com/-GIggMECQ214/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO8eS-i60siDwpyAJYJcWL1bfDwpw/photo.jpg,Very easy to use,4,0,2.2.0,2020-02-28 20:02:26,"Flow, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-02-28 20:12:12,newest,com.tasks.android +Gordon Glen,https://lh3.googleusercontent.com/-8MDD1iZ9j5o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNZYVchsn2nlXTl_CAfxth734lMYQ/photo.jpg,Does the basics clearly and easily. I particularly like that it allows you to sort completed tasks in alphabetical order (some other apps don't),4,0,2.1.0,2020-02-28 15:58:42,"Gordon, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-02-28 17:09:21,newest,com.tasks.android +Marcella DeCausey,https://lh3.googleusercontent.com/-EkEhZhClKeo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOtTK9olh1P33Habb4nJB7sP8edgw/photo.jpg,I have only been using the app for a short period of time. So far it has been a great tool. The Bility to addnsubtask to a task is very helpful. Great job.,4,0,2.2.0,2020-02-28 14:52:27,"Marcella, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-02-28 17:08:11,newest,com.tasks.android +Carl David,https://lh3.googleusercontent.com/-UkCrmYyxgPo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOp8-O5gEN_GZusngOzwxbeqDjsdA/photo.jpg,"Great distillation point for my mind maps, app is very simple interface to a reasonable amount of credible task tracking functionality",4,0,2.2.0,2020-02-28 12:47:00,"Carl, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-02-28 12:50:07,newest,com.tasks.android +Paul Haynes,https://lh3.googleusercontent.com/-onaD2fYz740/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNz5ph3GNymvzld_pHcaU-diz5MHA/photo.jpg,Easy to organize,4,0,2.1.0,2020-02-28 00:20:34,"Paul, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-02-28 06:58:55,newest,com.tasks.android +Ewan Jack,https://lh3.googleusercontent.com/-t_DAmvPQVYs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO1aIUpwUkDgbvtuCib2D4jTsrDbA/photo.jpg,easy to use.,4,0,2.2.0,2020-02-27 21:36:46,"Evan, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-02-28 06:58:41,newest,com.tasks.android +Breanna Lozada,https://lh3.googleusercontent.com/a-/AOh14GhToA6Shjq7s6ERXZF34Ss9w6NSaXt9xAZz4q_Fldc,Amazing for organizing my life,4,0,2.2.0,2020-02-27 18:55:36,"Breanna, really glad you're finding my app useful. Tasks is a hobby project of mine with all features and support offered for free without advertising. It has taken hundred of hours to write, improve and support and simply relies on donations and my spare time to move forward. What would help make my app a 5 star app for you? Thanks, Steve",2020-02-27 19:19:25,newest,com.tasks.android +Sebastian A,https://lh3.googleusercontent.com/a-/AOh14GhHJn22xtVKqz4c6DNrMvzjut_Y_YeMoyJ72gFcVQ,"Great app, would love customizable notifications and icons. That being said, of course this is a hobby project, just being wishful. Meant no offense. I'd love to reach out, it's always nice to get in touch with a fellow developer",4,0,2.2.0,2020-02-27 18:11:22,"Sebastian, Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It simply relies on donations and my spare time to move forward. You can customise the notification sound in settings. I hope this helps, Steve Edit: to get in contact please email me at tasks.list.app@gmail.com :)",2020-02-27 19:20:57,newest,com.tasks.android +Gayle Morales,https://lh3.googleusercontent.com/-VERq5J3tKj8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPejKGfc9VLfkUWa0TjyiaFIIkKIQ/photo.jpg,"This is the closest app I've found since my last upgrade & lost a similar app. Best thing about it, it's VERY user friendly & everythings right at my fingertips. I'm still getting used to it, but loving it so far! I have only one change I'd like to see. I love how I can change the arrangement in my lists, could you make it so I can change the arrangement of my catagories as well. Thank you & I hope I don't loose this one when it comes time to upgrade!",5,5,2.3.2,2020-04-02 17:59:49,"HI Gayle, thank you for your amazing feedback & support for my little app. You can reorder everything in Tasks. To reorder parent tasks open the main menu and click reorder. To rearrange sub lists open the sub list menu (3 dots top right). For tasks and sub tasks use drag and drop using the drag handles (dots on the right). I hope this helps, Steve",2020-04-02 18:38:27,most_relevant,com.tasks.android +Linda Moore,https://lh3.googleusercontent.com/a-/AOh14GgZgseDBkW3B5SJ7WE6RU0J7_S-eOPtOtdVLakh,"I wondered about arranging the main tasks and just found the solution! Just needed to scroll to the bottom while in tasks. I cannot say enough.about how very helpful this app is! I have found so many different uses for this app! I am wondering about the amount of information that can be stored, etc. What would an upgrade include and how much would it cost?",5,7,2.3.2,2020-03-26 10:16:56,"Hi Linda, thank you for your great feedback and support for my little app. There are no restrictions on number of tasks/lists etc. For help with Tasks Premium checkout the online docs: https://mytasksapp.com/help/premium. The cost will vary depending upon your local currency so please checkout eh ""Upgrade to Premium"" item in the main menu. Steve",2020-03-26 14:38:36,most_relevant,com.tasks.android +Sean Hendrickson,https://lh3.googleusercontent.com/-zzDTSegMftg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMtvwneFgW-r2EgMd5DBi8JbW9rqQ/photo.jpg,"This app is great! BUT I am having one issue that is dragging me away to other apps I like less overall. My work lunch hour switches every week between 11:00am and 12:00pm. I wish there was a way I could have a task repeat ""every two weeks on weekdays"" so that I could have these 2 tasks auto rotate weeks. Is this possible in this app?",5,0,2.3.2,2020-04-01 18:35:48,,,most_relevant,com.tasks.android +Peter Cholerton,https://lh3.googleusercontent.com/-BZuH4Mfx6YY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPYWbKvy5LX3D34Fa2xuDIjnV-zvw/photo.jpg,"I got Taks to replace Todoist. Later, I deleted Tasks and went back to Todoist. Still not happy, I brought back Tasks and now run both apps side by side on my phone. Perfect solution. Todoist carries the heavyweight must-do daily work load. I refer to it two, maybe three times a day. But Tasks is there to be fleet of foot and versatile - a quick list here, a few to dos there. Adding to and ticking off right throughout the day. That is my way. But Tasks would be a great stand-alone app too!",5,1,2.3.2,2020-03-29 09:28:36,,,most_relevant,com.tasks.android +Katie Russell,https://lh3.googleusercontent.com/-ajL2wjF6sfQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMdkZvjQHRTiJuKEj4E7QMOn83DVg/photo.jpg,"The most user friendly to do list I've ever had, and I've tried a few! I love the colour coding of each list, the push notifications which you can snooze for various amounts of time are spot on. It's definitely worth trying this if you want to get organised with ease. Now I've been using it for a couple of weeks, I have one thing that would be useful, it would be even more awesome if the snooze options included something specific such as 'tomorrow 8am', 'tomorrow 6pm'. Still an amazing app!",5,41,2.3.0,2020-03-19 22:05:21,"Hi Katie, thank you for your fantastic feedback. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It simply relies on donations and my spare time to move forward. I will add your suggestion to my list for future improvements. I hope this helps, Steve",2020-03-20 10:33:23,most_relevant,com.tasks.android +Dawn Williams,https://lh3.googleusercontent.com/-7JEk5a4sAh8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM_1S2xy62XNVHk4kUQraqxY4f08w/photo.jpg,"Easy to install very similar to wunderlist but much easier. Was a wunderlist user for over 5 years loved the app kept my finances on straight and narrow thank you for do this amazing list. Did not like the new microsoft office task list far to difficult to get let alone use. I don't have time to fiddle around on phone and this takes me straight to my lists. I also used wunderlist for shopping, planning events loads I am looking forward to using this app.",5,0,2.3.2,2020-04-02 17:02:43,"Hi Dawn, thank you for your amazing feedback. Really glad you're finding my little app useful. Happy organising 😄 Steve",2020-04-02 17:24:04,most_relevant,com.tasks.android +Nezumi Tyler,https://lh3.googleusercontent.com/a-/AOh14GhRdiAKjtS7Aanl7r5QzFjELdWaimS47VsAA_VX594,"This is, quite literally, an app that has helped me organize not only my personal but professional life. From planning out my work week and important projects, to listing out groceries, Tasks never disappoints. I've tried tons of different apps, but I always seem to come back to Tasks because it's so user friendly and has so much to offer. On top of that, customer support is AMAZING. If I could give more than 5 stars, I would.",5,22,2.3.2,2020-03-28 11:06:12,"Hi Nezumi, thank you so much for your amazing feedback and support for my little app. I really appreciate it 😁Steve",2020-03-28 13:14:29,most_relevant,com.tasks.android +Camille L,https://lh3.googleusercontent.com/a-/AOh14GgpPxGGUK5AlJGuOD85HqMdIBwPUq1HjLAR4szm5Q,"Love LOVE LOVE the app I love the colors. I love that I can change or edit my list. (I just found out ) I love that I can copy my list and make him into a sub list. I love that it has easy swipe to delete them. I love that I can have several lists under one sub list. I have several different notes, list apps and this one is by far number one! the best!",5,1,2.3.2,2020-03-29 16:27:17,"Hi Camille, thank you so much for your amazing feedback and support for my little app. I really appreciate it. Happy organising 😀 Steve",2020-03-29 16:41:19,most_relevant,com.tasks.android +Wadobato,https://lh3.googleusercontent.com/-XDTWtHXIFiw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNSFfX34KizF293DUZClY_60__xjw/photo.jpg,"I have been a Wunderlist user for years. When Wunderlist announced they were transferribg to a new platform, I started looking for options. I chose Tasks because of its high rating and it has lived up to its rating. It is very easy to use. Unfortunately, I could never get the Wunderlist download to save on my phone so I have had to reenter everything by hand. But it is doable.",5,22,2.3.2,2020-03-28 00:17:20,"Hi Wadobato, thanks for your fantastic feedback and support for my little app. If you would still like to import your Wunderlist data simply email me and I can help. Steve",2020-03-28 10:21:13,most_relevant,com.tasks.android +amsimkiss,https://lh3.googleusercontent.com/a-/AOh14GgWYoQ24Nons8xGH93LIdTqqeysidKqiV8Q-ao_ea8,"I use this for organizing my homework and it's very helpful!! 10/10 recommend. It's simple to use, it's pretty, and it has tons of features. My favorite is the sub tasks as it allows my to have a each subject as a task, and all the assignment in that subject as sub tasks. Thx for making this wonderful app! 👌🏼🔥",5,3,2.3.2,2020-03-24 16:46:39,Thank you for your amazing feedback and support for my little app. Really glad you're finding it useful 😁 Steve,2020-03-24 17:20:03,most_relevant,com.tasks.android +Michael Conrad,https://lh3.googleusercontent.com/-6POMPC6dAjk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNKrg19AaGD8CREJMjKQseHyx1Oug/photo.jpg,I like it because I can keep track of things I need to do. I like the highlighted color it's a good sky blue and it's easy to make lists. It feels good to complete a list that takes a long time to complete. It's good for making for later and good for getting things done I give it 5 stars,5,0,2.3.2,2020-04-03 20:42:43,"Hi Michael, thank you for your fantastic feedback and support. Really glad you're finding my little app useful 😄 Steve",2020-04-04 09:45:43,most_relevant,com.tasks.android +megan heaver,https://lh3.googleusercontent.com/a-/AOh14GhC0MGegF1Ys-NK6LlP6wy2UjJolzNY4u9o_YPK,I never leave reviews but this app truly deserves it! Somewhat basic in design (which is very nice to use) and extremely helpful! Love the traffic light feature (most important come first) and the sub-tasks! If you're forgetful or have a lot of little to-dos this app would be so beneficial!,5,2,2.3.0,2020-03-19 11:08:49,"Hi Megan, thank you for taking the time to send me your amazing feedback and support! I really appreciate it. Happy organising 😁 Steve",2020-03-19 11:21:13,most_relevant,com.tasks.android +Ismael Rodriguez,https://lh3.googleusercontent.com/a-/AOh14Gi6koQYHzHVGUVHoAde3VHEkXPClFpySbjiNFxF3A,"Have had this app for about 2 weeks and I love it. My last app crashed terribly and did not recover, lost everything. This app is super-simple to use with the right mix and selection of tools. Will update my rating in time.",5,0,2.3.1,2020-03-23 03:37:34,"Hi Ismael, thank you for your fantastic feedback and support for my little app. I really appreciate it 😁Steve",2020-03-23 07:56:48,most_relevant,com.tasks.android +Chuck Wortman,https://lh3.googleusercontent.com/a-/AOh14GjHH-eXWCsgyqSL7RW0qzb1kKRryifaV-lHWgz66w,"This is exactly what I was looking for! Tried different Task apps but il Ike the layout and functionality and ease of use. I can create multiple tasks with multiple subtask so I can separate home, work, and play. Kudos on a well designed app!",5,0,2.3.2,2020-03-28 04:55:58,"Hi Chuck, thank you for your awesome feedback and support for my little app. I really appreciate it 👍Steve",2020-03-28 10:24:01,most_relevant,com.tasks.android +Marelis Salazar,https://lh3.googleusercontent.com/a-/AOh14Gj26hYIb_hF6FHyo9VYD281c_w1ueuSjLpA3I69,Would be perfect if there was a calendar view. Update: it is the perfect app to manage my To-do lists for every aspect of my life. The ability to have sub-lists based on priorities and the calendar view make this app the best!,5,0,2.3.1,2020-03-22 10:09:29,"Hi Marelis, as I f by magic, there is :) simply enable the calendar view in settings. For more help with basic Tasks features checkout the ""Help"" button in the main menu. I hope this helps, Steve",2020-03-22 09:40:20,most_relevant,com.tasks.android +Shara Blair,https://lh3.googleusercontent.com/-QQ9SW6rZTj8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPnvVgu6CesIdHRniiHq8IE27QOeA/photo.jpg,I love this app somedays i just want to be lazy and do nothing but this app helps me stay on top of my game. I use it dor monthly goals and everyday todo lists another good thing about this app is that you can set tiners for each thing to be completed definitly a 10 out of 10 app,5,0,2.3.2,2020-03-29 03:42:45,,,most_relevant,com.tasks.android +Jana Gaspard,https://lh3.googleusercontent.com/a-/AOh14GjXE_rO01j_xYCXfq5t6Bu0JCf-G0VZYKW_J5HATw,"Love it! Lets you make multiple lists and lets you move items up and down to prioritize. Most useful out of several ""to-do list"" apps I've tried.",5,0,2.3.2,2020-04-02 22:59:23,,,most_relevant,com.tasks.android +Thuy Nguyen,https://lh3.googleusercontent.com/a-/AOh14GhNXTMgqU2ON5LC4hNH59wVcln30LbYBXe1Dd_wag,This is the best app I've ever used to boost my productivity and keep a good record of my completed and incomplete tasks. I'm just a little sad that it's only compatible with Android at the moment. Could you please make it compatible with IOS too? It'd be super helpful if you could!!,5,0,2.3.1,2020-03-20 12:14:33,,,most_relevant,com.tasks.android +Ramez Qamar,https://lh3.googleusercontent.com/-Ymg5xPVsvPQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPOFlPMiCQQ0KiagOWE96-3gb4t1g/photo.jpg,"Indeed this is probably to be the best tasks app on Google Play. Super flexible and user friendly and yet somehow simple at the same time. I love how the developer thought of, well, everything, you could need really. There is no desktop version yet to sync between computer and phone. I would love to be the first to know when it's ready, because when I am home (well all of us really thanks to the coronavirus at the moment) I prefer to open up my laptop to add tasks because it would be done faster that way. Thank you Stephen Nottage!",5,0,2.1.0,2020-03-25 15:49:12,"Hi Remez, thank you for your amazing feedback and support! I am currently working on the browser based web app and I am hoping to have something available in the coming weeks. Tasks is a hobby project of mine and the web app is a completely different skill set so lot to learn :) Happy organising, Steve",2020-03-25 16:43:50,most_relevant,com.tasks.android +Carrie Osterberg,https://lh3.googleusercontent.com/-3p7QPJYjCgs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPcdaT6yHe-FZBXS57hw38W_ikZ7g/photo.jpg,"It wasn't as intuitive as other organizational apps I've used but once I got the hang of it, wow. So many options to really get organized in a detailed way. I love it",5,0,2.3.2,2020-03-30 19:25:08,"Hi Carrie, thank you for your positive feedback. If you have ideas to make my little app more intuitive please email me at tasks.list.app@gmail.com. Thanks, Steve",2020-03-31 07:41:32,most_relevant,com.tasks.android +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Good app to help keep track of multiple jobs. Can also create different to-do lists, e.g., one for home and one for work. Love it!",5,0,2.3.1,2020-03-23 04:29:10,,,most_relevant,com.tasks.android +Yvonne Knutzen,https://lh3.googleusercontent.com/-g9gPLTEvFAM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPwIsKZlI0dK-8V11fuiEtpo1g14A/photo.jpg,"Wonderful app and great customer service. This app has replaced 2 or 3 of my old apps. This is the most customizable list app I have found. Colors can change, tasks can be rearranged within a list, lists can be rearranged. Tasks don't need a due date or time, but can be assigned either, along with notifications or alarms if desired. I had a small issue with sound, emailed support, problem solved in just a few days. Excellent!",5,38,2.2.0,2020-03-12 23:52:12,,,most_relevant,com.tasks.android +Tony Dianora,https://lh3.googleusercontent.com/a-/AOh14GiLVvhutu8-oIrGMaD28Wu-08ZJqr7QbwUBomUHMg,"Thanks Stephen!! Great app. I'm naturally scattered and fast paced, and this app helps ensure nothing falls through the cracks.",5,0,2.3.2,2020-03-28 18:52:59,,,most_relevant,com.tasks.android +Julia Fox,https://lh3.googleusercontent.com/a-/AOh14GjsP4izSK7X1y0YDiwLv5cf8cYR11MV8qMe-Vqabjg,This is everything I ever wanted out of a app without all the headaches and frustration and learning curve. If could have built an app for this project for work you would have been this exact same app. I always of some grand idea of what I want and can never find something quite right and end up very disappointed. It becomes too difficult to figure out how to use the program or its just too simple and not professional enough. You nailed it with this app and made Excel look just silly!!,5,10,2.2.0,2020-03-16 20:26:34,"Hi Julia, thank you for your amazing feedback and support for my little app. Really glad you're finding it useful. Happy organising 😄 Steve",2020-03-16 20:38:10,most_relevant,com.tasks.android +Tim's Interest,https://lh3.googleusercontent.com/-Coe4PuVt9-c/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPTlhTBp-_oEvjRcBMo-PafQ7vTlA/photo.jpg,I have never seen any other Tasks or To-Do List that has so many options/functions available. I am really impressed and appreciate this app.,5,0,2.3.2,2020-03-29 20:36:44,"Hi Tim, thank you for your fantastic feedback and support for my little app. I really appreciate ti 👍Steve",2020-03-30 07:54:30,most_relevant,com.tasks.android +Patrickson Rupert Mendoza,https://lh3.googleusercontent.com/-fT3RVZss9Gs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOLdDzlSV6_sYwvHavMlQfrv8O4gw/photo.jpg,This app really helps. It makes me organized in what i need to do especially when I am going out to go to the supermarket and buy stuffs.,5,0,2.3.2,2020-04-01 02:49:57,Really glad you're finding my little app useful. Happy organising 😁Steve,2020-04-01 07:30:22,most_relevant,com.tasks.android +jodie thomas,https://lh3.googleusercontent.com/a-/AOh14GgKgYkfUTUesDvJ1bdd1ETp3U4XnxE9B6Z_-KGUuw,"Seriously impressed with such a simple app. It's helped me go from writing list after lists in notebooks and losing them, to having it all on my phone whilst I'm out and about. Very convenient! I've already recommended to everyone I know who is like me with staying organized. Also being pregnant and having baby brain I find it hard to remember to take medication, so having a little reminder instead of an alarm is really handy. The snooze options are a wicked bonus. Thank you 🤩",5,0,2.2.0,2020-03-21 18:37:17,"Hi Jodia, thank you for your incredible feedback and support for my little app. Really glad you're finding it useful. Congratulations and all the best with your little one 😄Steve",2020-03-21 20:44:44,most_relevant,com.tasks.android +lolo ke,https://lh3.googleusercontent.com/-fx53q5k5x3Q/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM6ymnIMu7telLIYXPKfmSissDBsw/photo.jpg,"I don't usually rate apps , but I thought I must do for this one . I really like its simplicity and practicality , It has all the features that I needed , it's easy to use , ad free and all that is free of charge (I mean , it's so perfect 😀) . I really appreciate the hard work behind it . Thank you for this amazing app !",5,4,2.2.0,2020-03-15 00:09:10,,,most_relevant,com.tasks.android +Kate Nicholson,https://lh3.googleusercontent.com/-tCzgmoveWcQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNgZK64OKQ8CqXRlJ79fFNUU5klDg/photo.jpg,"Great app. I love this for my daily lists, shopping lists etc. I love it also has the sub lists with tasks. Would definately reccomend this app!",5,0,2.3.2,2020-03-29 00:09:42,,,most_relevant,com.tasks.android +Jerry Mc,https://lh3.googleusercontent.com/a-/AOh14GjXWdqRmEZpczNnhq1--Pt3zgswSjr6hEw1TP9WGQ,"Great Tasks and Reminder app. The dev has been responsive and implementa suggestions. Looking forward to further updates. Waiting for the web app and list sharing..EDIT: I believe this to be a 5star app, and will be once completed with the web app and list sharing. If it is 5 stars now, then there is no room for improvement. In Jan you stated in coming weeks, so it should be soon, we hope. Thank you for a great app. Looking forward to completion. I am a paid subscriber and always will be.",5,5,2.2.0,2020-03-17 14:59:35,"Hi Jerry, thanks for your great feedback, support and being a paid user. Yes, the web app is coming along nicely although the schedule has been set back a little as I got caught up in the coronavirus outbreak whilst on vacation. I want the web app as much as everyone else so am trying as quickly as possible :) Happy organising, Steve",2020-03-17 15:48:40,most_relevant,com.tasks.android +Callan Reynolds,https://lh3.googleusercontent.com/-daTBnpD1rqI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMGceRAwGudng69e88vf1mV-H-Cng/photo.jpg,Works exactly as intended. Being able to separate tasks into categories and subtasks is especially useful.,5,0,2.3.2,2020-03-27 22:23:53,,,most_relevant,com.tasks.android +Thomas Jacob,https://lh3.googleusercontent.com/a-/AOh14Gjd63vThmGlU8CeU_bBaEAAtXEwwnNwnFX7Vzjs,So far this app has been terrific. With all its catagories that you can organize your tasks into it keeps it from getting cluttered and confusing. So far all the alarms have been working and functioning as they are supposed to and it has been easy to use with a quick tutorial when you first open it up.,5,1,2.2.0,2020-03-09 16:53:54,,,most_relevant,com.tasks.android +Hannah C,https://lh3.googleusercontent.com/-zvLTp6gqpgk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPk5Vx931iy_ySX3YyATy8jy7gqcg/photo.jpg,"Love it. Exactly what I was looking for. Nice looking, very functional, and it can go on my homescreen with check boxes. 10/10",5,0,2.3.2,2020-03-31 11:31:03,"Hi Hannah , thank you for your awesome feedback and support. Happy organising :) Steve",2020-03-31 13:06:14,most_relevant,com.tasks.android +Rosetta Tupa Tuwilika Hamunyela,https://lh3.googleusercontent.com/-tEHb4ItyF-c/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOKPbHL2Y0fibgqTi7qKNB2LFbYyA/photo.jpg,I love how I can write done everything and it helps me stay organized. It feels great to tick off completed tasks.,5,0,2.3.1,2020-03-22 07:46:54,,,most_relevant,com.tasks.android +Lea Slaski,https://lh3.googleusercontent.com/a-/AOh14Ggqxk5uwFPbh1WlyWlzSjZzYKeP65GDRN1mKHfk9Q,Great for organization. I love the color scheme and wide access. Works great with reminders and has a good set up👍🏻,5,0,2.3.1,2020-03-21 15:16:36,"Hi Lea, awesome feedback! Thank you and happy organising 😄Steve",2020-03-21 17:01:40,most_relevant,com.tasks.android +L Theriot,https://lh3.googleusercontent.com/a-/AOh14Ggcy4YUDOh_GbSEyAaISuOY0jCZFB6uLW6u7qTyfg,"Amazing app. I use it to track everything from art projects, bills, grocery lists, even my food counter!",5,0,2.3.1,2020-03-20 12:15:34,,,most_relevant,com.tasks.android +Graham McKean,https://lh3.googleusercontent.com/-VyY4L7tO2Qw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNoXPSyVvMtX90Db4facji0o-qO5A/photo.jpg,"Perfect, it is brilliant for everything I need. I have even thrown away my old to do list notepad!!!!!!",5,0,2.3.2,2020-04-02 10:30:43,,,most_relevant,com.tasks.android +Jason Kerr,https://lh3.googleusercontent.com/a-/AOh14GilGqwtw_beqIIf60NT2FhS7Z-w7g9FUPBhpIS-QQ,"Great, simple, and useful. I wanted a checklist that would function directly from the desktop background of my phone, and this works perfectly for that. Intuitive, easy, and reliable, and nothing more than what I want. Update:A year later & still no better task app for a Samsung. Updates only made this app better. Sublists are easy to organize. Setting controls very useful. I don't use it for reminders b/c it doesn't get my attention as well as my phone's alarm.",5,13,2.1.0,2020-02-20 19:30:48,"Hi Jason, thanks for your amazing feedback and support for my little app. I really appreciate it. 👍 Steve Note: when setting a reminder in Tasks it is possible to change the reminder type to alarm :)",2020-02-21 08:43:55,most_relevant,com.tasks.android +Nate Neal,https://lh3.googleusercontent.com/a-/AOh14GiuK_x41CS16GSjE7_u3l5ot2D4RfXVhw6lqrNqCtw,"Been using this app for a year now, and have created something like 20 lists that contain sublists, reminders, to-do's, groceries, pretty much anything and everything, and I've been so pleased with the whole experience. In my opinion, this is the best task app for Android, and the developer tries to sort out issues and responds quickly to feedback. I Highly recommend this app.",5,55,2.1.0,2020-02-13 21:23:41,"Hi Nate, thanks for your awesome feedback and kind generosity. Really appreciate it. For some extra tips and tricks checkout my website: https://mytasksapp.com/help/tips-tricks. Cheers, Steve",2019-02-22 14:05:36,most_relevant,com.tasks.android +stephanie fehler,https://lh3.googleusercontent.com/a-/AOh14Gjg4QUSRTTQ1IskYajoydqgLIdei9jbT4LSlzadfw,"This is a great app. It's peaceful to look at, easy to use. I really wanted a flylady app (housecleaning reminders), and was able to add those routines tonight. I will uncheck the daily chores every night, work away at the weekly zones, and get my house back in shape! Meanwhile, I keep track of grocery lists, who needs new shoes, big city reminders for our next trip. Thanks for making such a simple, versatile, customizable tool!",5,24,2.2.0,2020-03-10 05:21:22,,,most_relevant,com.tasks.android +Emilian Barbu,https://lh3.googleusercontent.com/-UbUp2nqXZ3g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPcG9Ubi9JOHuONvI-f3zgDxrxBGQ/photo.jpg,"Great app! Like that you can get a reminder for your task, either as a notification or alarm. One can also choose to write a task that doesn't have a reminder. Therefore you can also easily create lists, like a shopping list. It has the feature for quick add for that purpose.",5,2,2.2.0,2020-03-09 21:03:42,,,most_relevant,com.tasks.android +Ollie Marchewski,https://lh3.googleusercontent.com/-WwsKA1fuyOw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNkR5zDHHL0GxB2ySXxeLJ_6scvuw/photo.jpg,"This app is AMAZING! I've tried so many to-do list apps, but this is by far the best! It allows you to do so many things! I would definitely recommend this to anyone!",5,1,2.3.2,2020-03-23 12:28:04,"Hi Ollie, thank you for your fantastic feedback and support for my little app. I really appreciate it 😁Steve",2020-03-23 16:41:59,most_relevant,com.tasks.android +Chris Reynolds,https://lh3.googleusercontent.com/-cldg3FbBaAk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPaxA2xJoigfDXM7D0rez9LEbJjQA/photo.jpg,Best app I have downloaded thus far. Keeps all my task organized with a easy to use app and no annoying ads. Highly recommend!,5,0,2.3.2,2020-04-03 12:17:47,"Hi Chris, thank you for your fantastic feedback and support for my little app. I really appreciate it 😄 Steve",2020-04-03 13:14:39,most_relevant,com.tasks.android +Snoop Dawg,https://lh3.googleusercontent.com/-3LbLwCccn7A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNiUDCANL8gRubO34GnbTCsaeQSKA/photo.jpg,"I was looking for an app that let me make todo lists (for my lazy self) that met the following criteria: 1) Something that looked decent. 2) Something that let me set reminders in case I needed it. 3) Something that's quick, easy, and intuitive to use. This app is all of the above and more. I'm speechless from how amazingly simple and nice-looking the app is. I love being able to set custom colors. If only I could have it on my computer too! (Maybe widgets in the future?) Well done, Steve :)",5,74,2.1.0,2020-02-09 00:01:01,"Thank you for your awesome feedback! A browser based web app is planned for the future. I hope this helps, Steve",2019-02-10 10:14:26,most_relevant,com.tasks.android +Gin Kilgore,https://lh3.googleusercontent.com/a-/AOh14Gg06LUuMH-xF23H-E5qYhX84equI9LarB39CPueiOY,I have never rated an app before. I rave about it to others. It's the perfect blend of simplicity and options to customize. I love having the widget on my phone. I expanded it so I can see many items on my list. I love the different options for reminders and snoozing. I have a hard time transitioning from task to task. Only thing I struggle with is the manual reorder of tasks (hold and drag). Works better for moving tasks down than up. Maybe my screen is not responsive enough or I'm clumsy.,5,30,2.1.0,2020-02-19 13:39:07,"Hi Gin, thank you for taking the time to send me your fantastic feedback and support for my little app. I really appreciate it. I'll take a look at the task reordering, however you are the first to mention any issue. Thanks, Steve",2020-02-19 18:13:21,most_relevant,com.tasks.android +Nikita Lebedev,https://lh3.googleusercontent.com/a-/AOh14Gh5R0QpskUQU2_dBt04hGyy1W3N6RbDaAySVleXWA,"Okay decided to write the review because this app is just amazing. It's simple and functional. I love the fact how easily you can create tasks, set time etc. The only thing I'd like an option to set up default settings, like always have an alarm automatically on for the tasks I create. I can finally delete all other task/ reminded apps. Found my perfect solution. Love it",5,5,2.1.0,2020-02-19 19:07:21,"Hi Nikita, thank you for your awesome feedback and support for my little app. There are some options in settings to set a default reminder type and always enable reminders for new tasks. I hope this helps, Steve",2020-02-19 20:08:07,most_relevant,com.tasks.android +Debra Schilz,https://lh3.googleusercontent.com/-01cbBhR7Ua4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN-OwAUF10j4ZKSr40873-ph3QicQ/photo.jpg,"Love that you can have multiple lists and also that you can reorganize the items on your list. When you complete an item, you can either check it off with an automatic date stamp or swipe it off completely 👍. This app has a very easy learning curve and I'm sure it probably has even more cool things that I have not discovered yet!",5,5,2.1.0,2020-02-21 01:32:05,"Hi Debra, thank you for your fantastic feedback and support for my little app. To learn about more advanced features checkout the ""Help"" button in the main menu 😄 Happy organising, Steve",2020-02-21 08:47:46,most_relevant,com.tasks.android +Sandeep Golechha,https://lh3.googleusercontent.com/a-/AOh14GiB3kuxTRGuL_x2Qf9JB3aw-ggII7qTVO3G0i3L,This is an excellent product allowing you make to make main lists with sub-lists where needed. I have hectic days and it helps me to remember what I have to do and keep a track of all the small things. Would love if lists could be shared with a someone and also an export to a chat (whatsapp) would make this a 5 star product. Thanks for the info Steve. Just rated you as 5 star. That does help me a lot and I'm sure many others as well who use WhatsApp.,5,10,2.1.0,2020-02-06 16:31:59,"Hi Sandeep, to share a task/list as plain text via WhatsApp simply click the share icon (top). I recently added device to device sync and automatic cloud backup. I am now working on a browser based web app and list sharing. I hope this helps, Steve",2020-02-03 09:17:04,most_relevant,com.tasks.android +Lauree Whittaker Sundahl,https://lh3.googleusercontent.com/a-/AOh14GigdmX7vuoCSGn3ZjaWT1osQwdGlzCoqleRbw-IwQ,Best one so fall... love it more than Keep Notes... I don't accidentaly loose menus etc and keeping track of sub-lists is easier.,5,0,2.3.1,2020-03-23 13:28:21,"Hi Lauree, thank you for your fantastic feedback and support for my little app. I really appreciate it 😁Steve",2020-03-23 16:42:40,most_relevant,com.tasks.android +Sadhanandavel Ramdoss,https://lh3.googleusercontent.com/a-/AOh14GjavLKsvtfdd1BM2z1sjTjgDW09HllVT4SDP1Adjw,"Excellent app. Well thought features. So far in my experience with a few task apps earlier, I can say this is ""The best"". Thanks and all the best to the team. Editing the review to add this:. I have upgraded to premium version. In the last few days of my trial, this app has substantially increased my productivity. Considering the benefits & satisfaction of completing tasks without missing them, the paid subscription is more than justified. Thank you!",5,31,2.1.0,2020-02-20 13:23:33,"Hi Sadhanandavel, thank you for your fantastic feedback and support for my little app. Really glad you're finding all the features helpful 👍 Steve",2020-02-20 13:49:32,most_relevant,com.tasks.android +Geoff Kendall,https://lh3.googleusercontent.com/a-/AOh14GhAfpq97MceYYQmZIMQEY6WpImtP_wNnoQQ9fUh,"Really intuitive but also has loads of functionality. Looks great, very responsive (even on my low-spec phone), does much more than Google equivalent, worth moving to if you want your calendar to be separate from your to-do lists (I do). That said, I'm confident there would be some fairly easy way to do almost anything with this app. Never felt better about giving five stars to an app!",5,30,2.1.0,2020-02-06 11:42:02,"Hi Geoff, thank you for your amazing feedback and support for my little app. I really appreciate it 👍Steve",2020-02-06 12:04:58,most_relevant,com.tasks.android +Lynn Gibson,https://lh3.googleusercontent.com/a-/AOh14GhMXb3zGwt_rZyO3mEyGKSy2DyhPIiYkfMcNW3q3A,"A super-quick response from the dev sorted out my issue with the alarm sound, so now this little app is perfect for me. You can sort your tasks into lists; you can be reminded, by notification or alarm, any amount of time beforehand; you can set a priority for tasks... and probably more that I haven't discovered yet. Now I just need a busier life.",5,40,2.1.0,2020-02-11 15:04:49,"Lynn, you're welcome. Really glad you're finding my little app useful 😁Steve",2020-02-11 15:08:04,most_relevant,com.tasks.android +Taran Tucker,https://lh3.googleusercontent.com/a-/AOh14Gjy2zzUjyCO9nPWHRTZfUl1UDqcuFayHEm6C69PsA,I love this app. It is an easy to use and appealing format. I like being able to move items around on my list of taks without having to re-type or cut and paste. I like the option to leave completed items on the list or have them automatically deleted. I would recommend this app to my friends looking for a good app to help with to-do lists.,5,6,2.1.0,2020-02-19 11:20:26,"Hi Taran, thank you for your fantastic feedback and support for my little app. I really appreciate it. Happy organising 😄 Steve",2020-02-19 18:12:04,most_relevant,com.tasks.android +Anton Solovev,https://lh3.googleusercontent.com/-CIvCQD-VBEo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP3Ji6E8UIM_cHtQFDfzTFlee3lAg/photo.jpg,Great app. Unfortunately the price for the cloud sync (the only premium feature I need) is rather high,5,0,2.3.1,2020-03-21 22:58:40,"Hi Anton, apologies it's too expensive for you. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It simply relies on donations, premium subscriptions and my spare time to move forward. For every £1 I have to pay Google tax 30%, VAT 20%, corporation tax 19% and income tax 40%. Steve",2020-03-22 09:43:55,most_relevant,com.tasks.android +Hiking With the Dog,https://lh3.googleusercontent.com/a-/AOh14GgRmIDDuo7Q-jyzkz9iuAhQeI_gqaRFsZkqVqE5,"Love this app, I've been more productive since using it. Well designed, easy and convenient to use.",5,0,2.3.1,2020-03-19 17:17:01,,,most_relevant,com.tasks.android +Venny Susanty,https://lh3.googleusercontent.com/a-/AOh14GicgZeRXyPvSUvqqN_oXwlKJ6paoBBKdgEaknqKLA,Love It eventhough we need to learn a little how to use this app. But when you get used to it you'll find it very easy,5,0,2.3.0,2020-03-19 23:25:02,"Hi Venny, really glad you're finding my little app useful. For help with Tasks features checkout the ""Help"" button in the main menu. Happy organising, Steve",2020-03-20 10:34:20,most_relevant,com.tasks.android +Coffey,https://lh3.googleusercontent.com/a-/AOh14GjwLoUVvkuHoxNr3eJ_982_vakaVkGxT-pokd0DUQ,Just started using it.. I'm very organized & working from home during this pandemic is easier with the task to do list app :-),5,0,2.3.2,2020-03-31 17:01:05,,,most_relevant,com.tasks.android +Dhananjay Chaudhari,https://lh3.googleusercontent.com/-IE18TG8s-5w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMyj8_ToAH2TiaKjo3biVjlFH2s-A/photo.jpg,I have searched lots of app for goal planning. This one is best of them. Easy to use.,5,0,2.3.2,2020-04-04 06:10:34,,,most_relevant,com.tasks.android +Brian Nolan,https://lh3.googleusercontent.com/-sIRJS9Npbjw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP_ZKewyRSR0yXNLezmJId9Fyl0Mg/photo.jpg,"I used to keep my to-do list in a simple text file with a bullet point denoting each task to be done. I decided that I needed a better way to organise my ‘to-dos’ and this app met my requirements perfectly. With this app you can arrange your to-dos in order of priority, set reminders, and so forth. The interface is well-designed and can be quickly mastered. The developer has written a very useful web-based help page that will enable you to get the most out of the app.",5,0,2.1.0,2020-02-17 15:29:56,"Hi Brian, thank you for your fantastic feedback and support for my little project. You are the first to mention how useful the website is. I really appreciate it. Steve",2020-02-17 16:02:28,most_relevant,com.tasks.android +Mary Pershall,https://lh3.googleusercontent.com/-sZytylDTitI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPm6tqeTDiujs5KLR-z-KvkN5N85A/photo.jpg,"Helps me be organised! It's great that it has no ads. Thanks, Stephen. I really like the icon on my home screen as well. A little thing, but it cheers me up to look at it. I originally gave the app 4 stars only because I don't like committing myself to 5. But on reflection I think you deserve full points. I haven't explored all the features yet so will get back to you when I do.",5,15,2.1.0,2020-03-04 07:20:29,"Hi Mary, thank you for your fantastic feedback and support for.my little app. I really appreciate it 😀 Steve",2020-03-04 07:54:12,most_relevant,com.tasks.android +lee Detwiler,https://lh3.googleusercontent.com/a-/AOh14GheebPyt9h9q0USU9hpkkAwzg4oDobp4sSBqW7eJQ,Just retired and struggled with getting a routine. I like to keep the same tasks on my morning routine and my evening routine. Check them off...then uncheck later for the next day. I made a to do task for things that are not the norm. I really like this...its a help and keeps me from chasing squirrels,5,2,2.2.0,2020-03-16 02:52:06,"Hi Lee, thank you for your amazing feedback and support for my little app. Really glad you're finding it useful. Happy organising 😄 Steve",2020-03-16 20:39:02,most_relevant,com.tasks.android +Tim Hoskins,https://lh3.googleusercontent.com/-M-URCaWSChQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOa-ApgPAHFRCLexLLuGH9kYlfF3w/photo.jpg,"Very easy to use, helps me to not miss things that aging was making me forget!",5,0,2.3.2,2020-04-01 02:37:11,,,most_relevant,com.tasks.android +Alisa Tam,https://lh3.googleusercontent.com/a-/AOh14Ggn8VJDgQzr4wFOWOYN_83hY0naxS4TXzdUhu3jizc,Very versatile app. I used this primarily as a to-do list and grocery list.,5,0,2.3.2,2020-04-01 14:47:14,,,most_relevant,com.tasks.android +Kimberley D,https://lh3.googleusercontent.com/a-/AOh14Gh7ksJT-ESE8hoKSCmX0NS4PXA8GD8rx2ujQFNFOA,"EDIT: Nope, changing it to 5 stars anyway, it's great right now and will be brilliant when the web integration is implemented. Thank you Stephen, incredible work! Absolutely love this app and found it far more suited to my needs than any of the bigger To Do apps. Looking forward to signing up for the paid version and giving 5 stars when the web integration is rolled out, then it will be absolutely perfect.",5,3,2.1.0,2020-02-12 02:23:48,"Hi Kimberley, thanks for your great feedback and support for my little app. I am currently working on the web app and it should be available in the coming weeks. I hope this helps get that 5 star 😀 Steve",2020-02-10 20:04:12,most_relevant,com.tasks.android +Stephanie Wen,https://lh3.googleusercontent.com/-nhBw-g8Ygyk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN9B8SPn5aeUcKTg7EuQ_ZXkRT7PQ/photo.jpg,Works great! User friendly and comes with a variety of colors to choose from. The colors are nice and they are adjustable to your liking. Easy to organize and to navigate. It's simple and functional. I like how you can set the notification to make it stay on there forever until you swipe it to the side. That way I am still informed about something important while it's still visible on my screen in case I miss the reminder.,5,3,2.1.0,2020-02-11 08:00:11,"Hi Stephanie, thank you for your amazing feedback! Really glad you're finding my little app useful. Happy organising 😁Steve",2020-02-11 09:38:12,most_relevant,com.tasks.android +Messages Téléphoniques,https://lh3.googleusercontent.com/a-/AOh14GiPPcSV7mQr9GXCpgRohg3kJ7pfJ3T12m-211vT,"I use this app every day for work mostly but also for personnal tasks or ideas. Easy to use, intuitive and convenient. I love the home screen widget where I can stick a list there for frequent view and quick access. Keep up the good work Dev(s). Great app! Very practical! Haven't seen any bugs yet after over a year of usage",5,0,2.1.0,2020-02-17 14:22:12,Thank you for your amazing feedback and support for my little project. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It simply relies on donations and my spare time to move forward. I always aim for bug free 👍Steve,2020-02-17 14:42:54,most_relevant,com.tasks.android +James Howerton,https://lh3.googleusercontent.com/a-/AOh14GjWjpnrZ7uJzJah3_9221-TwSpQnLxfy5sw_8gMRQ,"This app works really well. It let's me organize my tasks & reminds me when they're due, with the ability to give me the option of reminding me early, much like the calendar on my phone. I just like having this app as a backup reminder so I don't screw up & forget them (which I seem to be able to do occasionally anyway). Since I've yet to find any bugs, I highly recommend this app.",5,32,2.2.0,2020-02-26 04:14:15,"Hi James, thank you for your awesome feedback and support for my little app. Really glad you're finding it useful! I try to cover all functionality with automated tests so fingers crossed you shouldn't find any bugs 😁 Steve",2020-02-26 08:05:56,most_relevant,com.tasks.android +Kyler Smith,https://lh3.googleusercontent.com/a-/AOh14GhCTFXhICJdD1YxmjDui6LDlMp8WCHY1FElTtnyrQ,"The UI is incredibly intuitive, and there are so many ways to organize your tasks.",5,0,2.3.0,2020-03-21 05:31:01,,,most_relevant,com.tasks.android +Mark Holtom,https://lh3.googleusercontent.com/a-/AOh14GhgkwuagJIi1HSY_pLqZ0tqE7SVSLF1tjTAQIz-9A,Its a great Tasks app. For me i really appreciate the ability to send a task to my calendar. Thank you,5,0,2.3.2,2020-03-27 10:15:56,,,most_relevant,com.tasks.android +Angi Shoop,https://lh3.googleusercontent.com/a-/AOh14GjgnDS9ZHko9yhxfIvhCGv_Exuz3Td_NvLhpwTiTA,So convenient & easy to use!! A REAL game changer for me in managing my home business & home life simultaneously!!,5,0,2.3.2,2020-04-03 11:44:35,"Hi Angi, thank you for your fantastic feedback. Really glad you're finding my little app useful 😄 Steve",2020-04-03 13:13:50,most_relevant,com.tasks.android +Edison Santos,https://lh3.googleusercontent.com/a-/AOh14GjOA_1X88rzvQhmw-zhomj2ySNfkn-5guR19O-POg,This task app has been very helpful at organizing things that I do on a daily basis especially making list for shopping or getting gifts for friends. I've never personally used location tracking so that I can list out a specific location but I'm sure that it works perfectly fine as long as your GPS works as well. I would definitely recommend this to those that are looking for more organization to their day! 5/5 stars.,5,6,2.1.0,2020-02-12 04:03:09,"Hi Edison, thank you for your amazing feedback and support for my little app.Happy organising 😁Steve",2020-02-12 08:26:28,most_relevant,com.tasks.android +Shehenaz Shaik,https://lh3.googleusercontent.com/-WCdYt3RNNpU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM8EV9pKQdgaQMejrK9ShgY8Fr8jg/photo.jpg,"Excellent tool to organize tasks in multiple lists. Thank you for developing it. A few more features would be helpful such as synching the scheduled tasks with Google or outlook calendar, moving set of tasks from one list to another, saving and restoring to an online account or preferably to an Excel sheet or a CSV, etc. It is working wonders for me in the current form, however would love to have these on the top. Good luck, and thanks again.",5,21,2.2.0,2020-03-03 13:43:37,"Hi Shehenaz, thank you for your great feedback. Long press a task in the main menu and click ""Add to calendar"". Sign up for Tasks Premium for automatic cloud backup and sync. I am currently working on a web app. There is a button in settings to export to CSV. I hope this helps, Steve",2020-03-03 14:47:29,most_relevant,com.tasks.android +Sergio Macario Santos,https://lh3.googleusercontent.com/-gQOV-grAdUo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM4Fiy_HHXIiSNaoJ0AAsRZF45BdA/photo.jpg,Outstanding app!! I really tried some and this is the only one that helps me. Thanks!!,5,0,2.3.2,2020-03-27 06:25:31,,,most_relevant,com.tasks.android +andrea filary,https://lh3.googleusercontent.com/a-/AOh14GinihKWN3hI278YppCUsk6tvXTd_tOQFKPhWCgm9w,Good for making yourself checklists. You can organize activity checklists. Like you can have a bigger checklists with sublists,5,0,2.3.2,2020-04-03 01:03:21,,,most_relevant,com.tasks.android +Leo Alexander Scott,https://lh3.googleusercontent.com/a-/AOh14Gh0c8e4hyVhNy0cmp5UA1Q47xPqhIR7uLoRDz87xw,A great recommended app. Finding it useful so far. Be great if available on computer too to sync. I had been using another good app for years but recently gotten taken over by big company and absorb resulting in event forced to use their alternative. Searched for replacement and discovered this app by accident and it is FANTASTIC! Easy to use and great features makes organising life a breeze. Very happy so far.,5,3,2.1.0,2020-02-07 13:12:04,"Hi Leo, thank you for your amazing feedback and support for my little app. I recently added device to device sync and automatic cloud backup. I am now working on a browser based web app (any browser, any device) which should be available in the coming weeks. I hope this helps, Steve",2020-02-07 13:40:20,most_relevant,com.tasks.android +JEMET CONST,https://lh3.googleusercontent.com/a-/AOh14GhQz-vSCEst-VlV0tSNsWBb5Jfug8I3EHcKfc0ZQQ,"Wunderlist app is now going away. So when I received their email notification, I started to look for an app that is equal or better with what I currently use. Fortunately, there is this Tasks that is a great app. Easy to use, so helpful with the Sublist, has different colors for management, and the Reminder List can be set to your own time preference. Thank you Mr. Stephen Nottage!",5,5,2.1.0,2020-02-12 00:05:30,Thank you for your amazing feedback and support for my little app. Really glad you;'re finding it useful. Happy organising 😁Steve,2020-02-12 08:24:28,most_relevant,com.tasks.android +Ellie Lindridge,https://lh3.googleusercontent.com/a-/AOh14GiEsXxc7HR-TVOxVMQ9tqmwpvGn7rVwqkYwLqZC,"Love that you can have several lists, and sub lists, and set reminders/deadlines.",5,0,2.3.0,2020-03-18 21:55:40,,,most_relevant,com.tasks.android +Blake Wilson,https://lh3.googleusercontent.com/-_Bzkv_4pm4U/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNHoUf5Kk7RUChR5eL41RqUFxYSiA/photo.jpg,"I hardly ever leave reviews but had to make an exception here... App is colourful, looks great and easy to use! Love the ability to add sub-tasks and set reminders. Nearly all features are free to use with no ads. Massive props goes out to the dev! Also never seem a dev so active in the reviews section helping users and taking suggestions on board. Very well done!",5,2,2.1.0,2020-02-12 16:21:04,"Hi Blake, thank you for taking the time to send your amazing feedback and support for my little app. I really appreciate it 👍 Steve",2020-02-12 18:42:25,most_relevant,com.tasks.android +Kester Limner,https://lh3.googleusercontent.com/a-/AOh14GjGUhZ6yvggzalY92Jm7OP4n2WLiYbpyk9d-8lSrdY,"The best widget! You can swap lists without ever leaving your home screen. And they're all color coded, yay! I like that you can use it simple way or a complicated way, depending on what you need, but the complexity never gets in the way of the simple use. Thank you for this app.",5,1,2.1.0,2020-02-29 01:00:57,,,most_relevant,com.tasks.android +silfrvarg,https://lh3.googleusercontent.com/-xKUDPQiOQAU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPmSh1Qj9ggcPqKhRGMwvS-pakJGQ/photo.jpg,"Brilliant app, simple to use and does everything I need from a to do list",5,0,2.3.1,2020-03-21 15:11:55,,,most_relevant,com.tasks.android +Gacha crepes,https://lh3.googleusercontent.com/a-/AOh14GgGev2ftYS5BEQ5uMucLVPBtg-K9rSvmomRyNuF2Q,"Its perfect,I really recommend downloading it,it has the priority of your works,calendar,etc...thank you so much!it is so useful",5,0,2.3.2,2020-04-02 20:52:55,Awesome feedback and support! Thank you 😀 Steve,2020-04-02 21:21:15,most_relevant,com.tasks.android +Ramesh K,https://lh3.googleusercontent.com/-aMqgtX93puc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPoJG7oD4wRpp1toGXGtYK1vy1Q5Q/photo.jpg,It's one of the well thought App which has been developed. I think it has user friendly and very nice features to manage our work. I would definitely recommend this to anyone who what's to manage their work! Best thing is no advertisement or any other annoying thing to distract.,5,0,2.2.0,2020-02-28 18:14:12,"Hi Ramesh, thank you for your amazing feedback and support from r my little app. I really appreciate it 😀 Steve",2020-02-28 18:17:49,most_relevant,com.tasks.android +flwrgrl flwrgrl,https://lh3.googleusercontent.com/a-/AOh14Gh7BgWNo7bxFhpZx7PYEm1D1DiLZpGIuiuhy0MX9u8,"I love this app! Simple, easy to use. Easy to organize or reorginaze and shuffle my tasks around as needed. This is the best task app that I've ever tried and I've tried quite a few. High five to the developer. Now I want it for desktop and across all of my devices. I hope that option is coming soon!",5,22,2.2.0,2020-03-03 20:43:58,,,most_relevant,com.tasks.android +Baldi's Basics,https://lh3.googleusercontent.com/a-/AOh14GixPtITPtipN7ZroImSrtpoNJDnF5hIW96bA0q8rA,"Yeah, it is really good. Also i don't know how to make a daily reminder. Plus, the tasks in my widget disappears and i don't know how to put it back.",5,0,2.3.2,2020-04-02 05:01:36,"Hi, thank you for your great feedback. For help creating a repeating tasks checkout the online help (available via the Help button in the main menu): https://mytasksapp.com/help/faqs#recurring-task. For other issues simply send me an email. I hope this helps, Steve",2020-04-02 07:21:25,most_relevant,com.tasks.android +Rob Lindop,https://lh3.googleusercontent.com/a-/AOh14Gh8WrriWNxMFlTyROCoMClteVJOrxOl5vQXJZ9PVBw,Still the best by far and even better with online sync & backup. This is the first todo list I've ever paid for and been happy to do it. I love the granular approach to organisation so you can get as complex as you like. I use it every day for just about everything.,5,0,2.1.0,2020-02-18 20:06:03,"Hi Rob, thanks for your amazing feedback and support for my project. I really appreciate it. I am currently working on a browser based web app which should be available to Tasks Premium users in the coming weeks. Happy organising 👍 Steve",2020-02-18 19:52:47,most_relevant,com.tasks.android +Mikayla Neff,https://lh3.googleusercontent.com/a-/AOh14GhT2ABDjsVN6DLBZiYY8Ifvr0mT2Jv2t6WUmuDbkw,"This app has changed my life, I'd give it 10 stars if I could. It helps me manage my day to day tasks by making a list for every day of the week and switching between lists. I like that there is a widget available on my pixel phone so that I can see my checklists on my home screen.",5,0,2.1.0,2020-02-23 03:41:42,"Hi Mikayla, thank you for your fantastic feedback and support for my little app. Really glad you're finding it useful. Happy organising 😁Steve",2020-02-23 08:46:20,most_relevant,com.tasks.android +Patti Keno,https://lh3.googleusercontent.com/-iF9VIGbQTI4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNQ-p7Pm6eysfxv4btjIkezKfCQCw/photo.jpg,"What a great app! I love that I can create sub tasks. I also love that I can move the finished tasks to specific tabs. It makes it easy for me to tell which of my orders have been paid, which have been completed and which have been sent.",5,0,2.2.0,2020-03-10 02:57:24,,,most_relevant,com.tasks.android +Kayleen Gonzalez,https://lh3.googleusercontent.com/-fmSi11uxRMQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNeYiytuHxwvkhyiMRgrlxmzSYmpg/photo.jpg,I love this app!!! FYI although it is a free to use app I dont remember seeing a single ad!!!! Definietely reccomend,5,0,2.3.2,2020-03-31 01:25:14,"Hi Kayleen, thank you for your fantastic feedback. You are correct, Tasks is a hobby project of mine and relies on daontiosn and my spare time instead of ads to move forward :) Happy organising 😁Steve",2020-03-31 07:48:47,most_relevant,com.tasks.android +Carol J. Dickens,https://lh3.googleusercontent.com/a-/AOh14Gh1O0Nofid2OYAm3zP2Ul4UdST1mp2Xd3RqxUIfYw,"I love this app! It helps me to stay organized. It's very convenient. I used to write my to do list on paper, but it's so much easy to have this app right at my finger tips. Its allows me to break my list down into categories, and use different colors to differentiate each category.",5,0,2.1.0,2020-02-17 20:12:05,"Hi Carol, really glad you're finding my little app useful. Happy organising 😁Steve",2020-02-18 08:58:46,most_relevant,com.tasks.android +Lyric Tanksley Itinerant,https://lh3.googleusercontent.com/a-/AOh14GgR5Uugle9CC-1wp4uz4NZR9FZwTwSJtFUSamgrg6M,I love the interface and the colors. It's very smooth and fun to look at,5,0,2.3.2,2020-04-01 23:58:20,,,most_relevant,com.tasks.android +Tammy Maginnis,https://lh3.googleusercontent.com/-rS_H7N0dSgY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM0ntAF8MfJ3zxyqnktGisORnS_Cg/photo.jpg,Great features! Easy to use and modify list details.,5,0,2.3.1,2020-03-21 14:51:03,,,most_relevant,com.tasks.android +Glynnis Owens-Major,https://lh3.googleusercontent.com/-zwYGqq7t2eg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOnc6Tm1gb0x_U2eGxLp3eohkQK5A/photo.jpg,"CONVENIENT! COLORFUL! FEATURES AND SETTINGS CATER TO LIST-LOVERS! I've always enjoyed hand writing lists for everything & had zero interest in switching or including tech for list making. I HAD to install 'Tasks' to make a list during an apartment move-in evaluation. To my PAPERLESS surprise, there were more issues than I thought I could recall from memory. Ended up making FOUR lists w/ this app on the 1st day. Now I'm listbidextrous! Got twice as many w/ both written & app made lists!",5,6,2.2.0,2020-03-01 01:27:36,,,most_relevant,com.tasks.android +Jenna Herron,https://lh3.googleusercontent.com/a-/AOh14Gi0PuWd2LOgbWU-m7fl8VHoXuwTbN40lCInoz3y1w,Especially like that there is a widget option where you can put your tasks on your home screen and be reminded of the tasks you set. Very dynamic app yet simple is appearance and interface. Helpful and not over the top!,5,0,2.1.0,2020-03-31 04:49:24,"Hi Jenna, thank you for your fantastic feedback and support for my little app. I really appreciate it 😁Steve",2020-03-31 08:00:22,most_relevant,com.tasks.android +Elliot 73,https://lh3.googleusercontent.com/-n9boqyuKZbs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNdw5AT8-vJd43d2N3V4RiLf6hNtw/photo.jpg,"Really impressed with the functionality, by far the best to do app out there. Functionality is great and the UI is even better - clean, intuitive and perfect to utilize. 10/10 for the lists, sublists and subtasks, even the editable homescreen widget is quality. Looking forward to the paired web app.",5,0,2.1.0,2020-02-12 21:23:59,"Hi Elliot, thank you for your amazing feedback and support for my little app. I really appreciate it 😁Steve",2020-02-13 08:04:50,most_relevant,com.tasks.android +atique khan,https://lh3.googleusercontent.com/-dcHNLwAiSoY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOH6jXYpowLB88H9954bwsag3nBhA/photo.jpg,It is really good and dies not have any ads also is really good for when tidying up,5,0,2.3.1,2020-03-21 12:13:48,,,most_relevant,com.tasks.android +Gary Swan,https://lh3.googleusercontent.com/-8FQwidr7oEU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOKj2ZsEZkm1uqkpdwUl7C1pBhQ7w/photo.jpg,"Works great! No ads, no unnecessary complexity",5,0,2.3.2,2020-03-29 22:50:55,,,most_relevant,com.tasks.android +Kobukan Karate Federation,https://lh3.googleusercontent.com/a-/AOh14Gg2uIBzl3qDxqDP4Rlw1IeWUmqoIPkwXZS2hIDEUXM,Sweet App! Super clean interface. Simple and straightforward. Me likey,5,0,2.3.2,2020-04-03 00:41:25,,,most_relevant,com.tasks.android +Jake Maundrell,https://lh3.googleusercontent.com/-aiMAJzKPjFU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOrW_P7FvL2_q-wBchLZS7pbgktJQ/photo.jpg,Great app! Love how you can easily attach it to your homescreen and interact with everything though the widget. Its completely changed how I've kept myself organized. Definitely the best one out there!,5,0,2.2.0,2020-03-11 12:42:10,,,most_relevant,com.tasks.android +toni aritonov,https://lh3.googleusercontent.com/a-/AOh14GjTczA6TVemMV-fdV1ps4A6bKTIxlVbdKqB4MWPxg,"This app is the best thing ever First i had the task list from 2010 and i was organising my life and my work,and i thought it was the best,until the new updates and i could not use it anymore and i was so sad But now i found Tasks, which is 10 time better,and i am only 4 hous on it. Thanks again for the creator and the team Great work",5,0,2.2.0,2020-02-28 23:34:51,,,most_relevant,com.tasks.android +Raymond Sbrega,https://lh3.googleusercontent.com/a-/AOh14GhZ0hzkrzRkEq5t7WhkpgIDGXkqb2m11faw4cVVslU,"For someone who does this on the side, the developer is the most responsive I've ever seen! I've tried at least 6 other popular list apps, and this one is my favorite. It does the best job of laying out lists and sublists that I could find.",5,0,2.2.0,2020-03-04 13:50:04,"Hi Reymond, thank you for your amazing feedback and support my little app. I really appreciate it 👍 Steve",2020-03-04 13:55:23,most_relevant,com.tasks.android +braindead 79,https://lh3.googleusercontent.com/-w8OuBAHdM-Q/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN6Pj365O98l2l0F66d15o4AgNH8w/photo.jpg,Helps me a lot! Thank you!,5,0,2.3.2,2020-04-06 17:47:16,,,newest,com.tasks.android +Brian Grischow,https://lh3.googleusercontent.com/-vkLVBZJY4oc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPWr9QZdWcc6n7F8VvtNMwtY5B9Cg/photo.jpg,"A great, no charge organizer.",5,0,2.3.2,2020-04-06 15:34:37,,,newest,com.tasks.android +Martin Glaese,https://lh3.googleusercontent.com/a-/AOh14GhdUR_cJ9nsAREHwFq8mcGjDzRb2-arpnzp8MTmtQ,I got it for the widget. Man it keeps me on task!,5,0,2.3.2,2020-04-06 14:04:42,,,newest,com.tasks.android +Sameil Badafrah,https://lh3.googleusercontent.com/a-/AOh14GgS-_WvG8LwU85w8wrl0Ub9lx39_2_wfcVgx97WWQ,Very good app,5,0,2.3.2,2020-04-06 12:57:51,,,newest,com.tasks.android +Robert Tufeanu,https://lh3.googleusercontent.com/a-/AOh14Gh7T1WmdnFayJh99FBvDDwW25H_ivytdcDBGM-OSmw,"Superb. Păcat ca varianta Premium e prea scumpa, cu plata lunara sau anuala. Dacă avea un preț final și definitiv as fi cumpărat-o.",5,0,2.3.2,2020-04-06 12:55:51,"Hi Robert, thanks for your feedback. Unfortunately servers, storage around the world costs me money each month. I have to pay lots os taxes on any $. Therefore a subscription was the only option. Note also premium subscribers will be getting more exclusive features over time e.g. browser based web app and list sharing. I hope this helps, Steve",2020-04-06 13:09:42,newest,com.tasks.android +pragati gupta,https://lh3.googleusercontent.com/a-/AOh14GhxmWb-0uAsxDsjP9UJhcE0-kmxl9n5SIN1gWPF,Good app user friendly,5,0,2.3.1,2020-04-06 11:37:08,,,newest,com.tasks.android +Trick create,https://lh3.googleusercontent.com/a-/AOh14Gjd9zrZ6xiqSF7VMuXOZqNiN8vYRvAwEia6ikxOjg,This App have good design and good Features. I am using this app for 2 weeks and I comfortable with this app.,5,0,2.3.2,2020-04-06 11:20:19,"Hi, thank you for your great feedback and support. I really appreciate it 😁Steve",2020-04-06 13:07:38,newest,com.tasks.android +Amru Sabiq,https://lh3.googleusercontent.com/a-/AOh14GhYWJzFf0BqwiDyb5Q4MkNVu1v_JNuvdobLx8LB,"Colourful, friendly and let me manage my homework",5,0,2.3.2,2020-04-06 10:00:02,,,newest,com.tasks.android +Marie W,https://lh3.googleusercontent.com/-GivDeqaFphE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPHFlS8k-NFaUdCSAKrrCeM359DBQ/photo.jpg,"Advanced yet simple. Love it, has all the little features you need without the unnecessary complication. Alarms, sidenotes, ability to highlight some tasks, organize tasks in order u want",5,0,2.3.2,2020-04-06 09:40:08,"Hi Marie, thank you for your fantastic feedback. Really glad you're finding my little app useful 😁Steve",2020-04-06 10:45:42,newest,com.tasks.android +Savannah Lee,https://lh3.googleusercontent.com/a-/AOh14GhFcLS6IQ6fExql1LYvM9r6cTl8sgzPPJPOi7CeE6s,Keeps me on task and is helping me reach my goals one list at a time,5,0,2.3.2,2020-04-06 05:39:20,,,newest,com.tasks.android +Junior Jusup Islam,https://lh3.googleusercontent.com/a-/AOh14GiHB8kb5NUBbFMgNzeFydu9_Hx9h9ehUTDGACmLJA,Oke,5,0,2.3.2,2020-04-06 05:05:52,,,newest,com.tasks.android +Julie,https://lh3.googleusercontent.com/-UljXMcQI1jU/AAAAAAAAAAI/AAAAAAAADaQ/AAKWJJPGgSZ4oZBUSCtc4KSehh1S3nsBBg/photo.jpg,Helps you stay organized. Love it! Very Easy to use 🤓,5,0,2.3.2,2020-04-06 02:57:29,,,newest,com.tasks.android +D&D cleaning service microbio de limpio Delroy Dyah,https://lh3.googleusercontent.com/a-/AOh14GhPYR9Mb-V6X2igLudoSBYbI36F6oJ4L99fNoIFkw,Great,5,0,2.3.2,2020-04-05 23:24:47,,,newest,com.tasks.android +monfared sahar,https://lh3.googleusercontent.com/-Rnbx2t1XRHE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMFeB5CWXhPDh9kjZ3n0UnP9ED1Bg/photo.jpg,Its so good that you could write down your to do list in check boxes then cross it out,5,0,2.3.2,2020-04-05 23:21:37,,,newest,com.tasks.android +Lowell Hansen,https://lh3.googleusercontent.com/-21sX-DOOxe0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMBi-jGLHKw08bLCHZ7-RrS9Z28Wg/photo.jpg,"I LOVE this app! It is flexible, intuitive, attractive, and has features I have been looking for and have been unable to find in the other task list apps i have tried.",5,0,2.3.2,2020-04-05 21:58:33,"Hi Lowell, thank you for your fantastic feedback and support for my little app. I really appreciate it 😁Steve",2020-04-06 07:20:44,newest,com.tasks.android +Lisa Gardner,https://lh3.googleusercontent.com/a-/AOh14GjTx8MTIIkJQL0XcA_emxHKjpCjQ7RRWwFJziPv,So far I have used this app to check off things I hope to get done each day. Now I am making a list of short term goals to check off. This will help me get them done soon and feel like I have accomplished something. It will keep reminding me to get them done.,5,0,2.3.2,2020-04-05 21:52:54,"Hi Lisa, thank you for your fantastic feedback! Really glad you're finding my little app useful. Happy organising 😁Steve",2020-04-06 07:20:19,newest,com.tasks.android +Joyce Goins,https://lh3.googleusercontent.com/-1RUcFpIj3Hk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMsqjKHYuJkvQeFnAXssDkJYu8-xA/photo.jpg,Love it,5,0,2.3.2,2020-04-05 19:20:59,,,newest,com.tasks.android +Lois Alme,https://lh3.googleusercontent.com/-BsjqZbQqUOQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNkjuAwK3f0KeayA1a9xSQda4sx5g/photo.jpg,"This app is very easy to use. It's simple but effective. I have a to do list function on my phone won't say what kind of phone, but it's very hard to understand, so I write everything down on paper, and then lose it.",5,0,2.3.2,2020-04-05 17:38:55,"Hi Lois, really glad you're finding my little app useful. Happy organising 😄 Steve",2020-04-05 18:11:18,newest,com.tasks.android +Pam Davies,https://lh3.googleusercontent.com/-dTxeLe02iTk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPeL_sVDDvI22Gx-PKs3nm2irMl2A/photo.jpg,Once worked out how to use have found it very useful for listing daily items to do.,5,0,,2020-04-05 14:02:06,"Hi pam, thank you for your fantastic feedback. For help with Tasks features checkout the Help button in the main menu. Happy organising 😄 Steve",2020-04-05 14:07:23,newest,com.tasks.android +ben ben,https://lh3.googleusercontent.com/-7iUpDEVVksI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMjWISMwcv6w2abXnVpFlX7TdIyyg/photo.jpg,Pretty useful and organized so far,5,0,2.3.2,2020-04-05 13:17:56,,,newest,com.tasks.android +Pegs Hampton,https://lh3.googleusercontent.com/a-/AOh14GivduOB8MM2hS6ANGT81oP_3haKWwp4NNnzIa2t,The widget is really handy. Seems to work fine thus far.,5,0,2.3.2,2020-04-05 07:01:52,,,newest,com.tasks.android +Paul Clifton-O'Donnell,https://lh3.googleusercontent.com/-Z75k5F0tw8c/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPCZ0aXGsgyqYVIU23BBdif8Ecw-g/photo.jpg,"An app that is simple to use, and well-built, speaking from everything I've asked of it so far.",5,0,2.3.2,2020-04-05 06:16:23,,,newest,com.tasks.android +Paul Rose,https://lh3.googleusercontent.com/a-/AOh14Ghwel_XluVieCDjqUplkI7fJbxWRL9YGLlJRPtung,So far it's everything I need & was looking for.,5,0,2.3.2,2020-04-04 23:58:47,,,newest,com.tasks.android +Stacey W,https://lh3.googleusercontent.com/-ZefUX3SK5QA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMf2TPChmcFc7wLz_xaSfioZr5QAA/photo.jpg,"I've been using it for a week now. I like how I can break down a task into sub-tasks, very helpful.",5,0,2.3.2,2020-04-04 21:48:58,"Hi Stacey, really glad you're finding my little app useful. Happy organising 😄 Steve",2020-04-05 08:16:58,newest,com.tasks.android +Karl Dettmann,https://lh3.googleusercontent.com/a-/AOh14GizM5tS_Baf_fGkIwwytLR_n8vF2SNJ54KJfalcXQ,Helpful. Keeps everything easily accessible via the widget,5,0,2.3.2,2020-04-04 17:15:42,,,newest,com.tasks.android +David Hartmeier,https://lh3.googleusercontent.com/-gruJJKfbIVA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNTtVqUkYhdC71nylD4kHygMMZEmg/photo.jpg,Great app. Would love a desktop version that syncs.,5,0,2.3.2,2020-04-04 15:08:48,,,newest,com.tasks.android +Kim Kaspersen,https://lh3.googleusercontent.com/a-/AOh14GgUREtHcGl_fJ9_zC0RnfaD8y9NFQYdLbLL7YdAZg,"Need to organise my tasks. So far, so good.",5,0,2.3.2,2020-04-04 11:52:43,,,newest,com.tasks.android +Dhananjay Chaudhari,https://lh3.googleusercontent.com/-IE18TG8s-5w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMyj8_ToAH2TiaKjo3biVjlFH2s-A/photo.jpg,I have searched lots of app for goal planning. This one is best of them. Easy to use.,5,0,2.3.2,2020-04-04 06:10:34,,,newest,com.tasks.android +DIPAK GALA,https://lh3.googleusercontent.com/-Pcldo5cLupM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOvbcXJ-WaVya_aTK7QLy82sH4oSQ/photo.jpg,We are enjoying this app very much. THANKS.,5,0,2.2.0,2020-04-04 04:40:17,,,newest,com.tasks.android +Make a Living Acting Anywhere,https://lh3.googleusercontent.com/a-/AOh14Gin6NSWPXdLZdpNJKFRyN3_WKu7I4QVspjRjb1UAw,Easy to use and functional with features i 💘,5,0,2.3.2,2020-04-04 04:26:02,,,newest,com.tasks.android +Pat Maguire,https://lh3.googleusercontent.com/a-/AOh14GjM_tM4MzPTS7jrklngrJ7XFl7Ebg2jxNcr6z3Y_A,"Great app to organise all your to do tasks, love it",5,0,2.3.2,2020-04-03 22:16:50,,,newest,com.tasks.android +Atomic Magician,https://lh3.googleusercontent.com/-CMVLyTLt_iY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMhUC5mgDQGUWVraUUZP08hc_-hFw/photo.jpg,Nice,5,0,2.3.2,2020-04-03 20:54:56,,,newest,com.tasks.android +Michael Conrad,https://lh3.googleusercontent.com/-6POMPC6dAjk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNKrg19AaGD8CREJMjKQseHyx1Oug/photo.jpg,I like it because I can keep track of things I need to do. I like the highlighted color it's a good sky blue and it's easy to make lists. It feels good to complete a list that takes a long time to complete. It's good for making for later and good for getting things done I give it 5 stars,5,0,2.3.2,2020-04-03 20:42:43,"Hi Michael, thank you for your fantastic feedback and support. Really glad you're finding my little app useful 😄 Steve",2020-04-04 09:45:43,newest,com.tasks.android +Jeff Co. Is Cool,https://lh3.googleusercontent.com/a-/AOh14GjgVe8J9atfxPQzgCE1m96azQ0OTWivHy5yj57DGQ,Great app it's very quick to make notes,5,0,2.3.2,2020-04-03 20:34:00,,,newest,com.tasks.android +Ava Richardson,https://lh3.googleusercontent.com/-JtpJndcs_TU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPh_qZ4of0s-EEmjaYo5UnGpijfVA/photo.jpg,Very easy to use I love it.,5,0,2.3.2,2020-04-03 20:00:44,,,newest,com.tasks.android +Chris Reynolds,https://lh3.googleusercontent.com/-cldg3FbBaAk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPaxA2xJoigfDXM7D0rez9LEbJjQA/photo.jpg,Best app I have downloaded thus far. Keeps all my task organized with a easy to use app and no annoying ads. Highly recommend!,5,0,2.3.2,2020-04-03 12:17:47,"Hi Chris, thank you for your fantastic feedback and support for my little app. I really appreciate it 😄 Steve",2020-04-03 13:14:39,newest,com.tasks.android +Md Abdul Momin,https://lh3.googleusercontent.com/a-/AOh14Gj6DkBibsq-7JjTrvYfQaJ43EMj2nCQKxkcXJpf,It is a nice app. Thanks authorities for creating this app,5,0,1.33.3,2020-04-03 11:56:23,,,newest,com.tasks.android +Angi Shoop,https://lh3.googleusercontent.com/a-/AOh14GjgnDS9ZHko9yhxfIvhCGv_Exuz3Td_NvLhpwTiTA,So convenient & easy to use!! A REAL game changer for me in managing my home business & home life simultaneously!!,5,0,2.3.2,2020-04-03 11:44:35,"Hi Angi, thank you for your fantastic feedback. Really glad you're finding my little app useful 😄 Steve",2020-04-03 13:13:50,newest,com.tasks.android +evil zebra,https://lh3.googleusercontent.com/a-/AOh14GhgoQypYTajGViBckjFjPZOLd7gymxfDTumT5iw,This app helps me a lot,5,0,2.3.2,2020-04-03 09:13:13,,,newest,com.tasks.android +Yasmeen Islam,https://lh3.googleusercontent.com/-CZjafgde9RA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOzxnUTcPWouj-D5aUB_wREzKQfbg/photo.jpg,I love this app! It's so colourful and easy to use,5,0,2.3.2,2020-04-03 08:49:54,,,newest,com.tasks.android +Mariel Gonzales,https://lh3.googleusercontent.com/-9eTOw2Kyl44/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNT8DPIS-p_o5F9TNnCnPlR7qL2UQ/photo.jpg,Very easy to use and extremely helpful for me to get organised for the day,5,0,,2020-04-03 07:53:51,,,newest,com.tasks.android +Rimjhim Sinha,https://lh3.googleusercontent.com/a-/AOh14GhrJs5C6BfiPHegq99eLilmp_-86VSLSkp2xcvwqA,Helps you organise in a jiffy!,5,0,2.3.2,2020-04-03 04:19:12,,,newest,com.tasks.android +Samin Safaei,https://lh3.googleusercontent.com/-W4LuMvigp8k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOl4dx7tXTRIc689zV-BFxniXNfDA/photo.jpg,- Very flexible task list. - Best widget. - Easily share your tasks. This app encoraged me to organize my tasks and share details with my friends and colleagues,5,0,2.2.0,2020-04-03 04:02:30,"Hi Samin, thank you for your fantastic feedback. Really glad you're finding my little app useful 😄 Steve",2020-04-03 08:14:30,newest,com.tasks.android +Nr. Miraaa,https://lh3.googleusercontent.com/-jhqze83wYp0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP3N9XuJeL_uP12QpeW8qpzMA6Epw/photo.jpg,Very useful! I love it,5,0,,2020-04-03 03:20:21,,,newest,com.tasks.android +andrea filary,https://lh3.googleusercontent.com/a-/AOh14GinihKWN3hI278YppCUsk6tvXTd_tOQFKPhWCgm9w,Good for making yourself checklists. You can organize activity checklists. Like you can have a bigger checklists with sublists,5,0,2.3.2,2020-04-03 01:03:21,,,newest,com.tasks.android +Kobukan Karate Federation,https://lh3.googleusercontent.com/a-/AOh14Gg2uIBzl3qDxqDP4Rlw1IeWUmqoIPkwXZS2hIDEUXM,Sweet App! Super clean interface. Simple and straightforward. Me likey,5,0,2.3.2,2020-04-03 00:41:25,,,newest,com.tasks.android +Jana Gaspard,https://lh3.googleusercontent.com/a-/AOh14GjXE_rO01j_xYCXfq5t6Bu0JCf-G0VZYKW_J5HATw,"Love it! Lets you make multiple lists and lets you move items up and down to prioritize. Most useful out of several ""to-do list"" apps I've tried.",5,0,2.3.2,2020-04-02 22:59:23,,,newest,com.tasks.android +Gacha crepes,https://lh3.googleusercontent.com/a-/AOh14GgGev2ftYS5BEQ5uMucLVPBtg-K9rSvmomRyNuF2Q,"Its perfect,I really recommend downloading it,it has the priority of your works,calendar,etc...thank you so much!it is so useful",5,0,2.3.2,2020-04-02 20:52:55,Awesome feedback and support! Thank you 😀 Steve,2020-04-02 21:21:15,newest,com.tasks.android +SirStep1,https://lh3.googleusercontent.com/a-/AOh14GhUKl_Sb5bwcmmCHbG6CSclrzcfiDZE75CV_teu,By far the best task management app!,5,0,2.3.2,2020-04-02 18:24:23,,,newest,com.tasks.android +Gayle Morales,https://lh3.googleusercontent.com/-VERq5J3tKj8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPejKGfc9VLfkUWa0TjyiaFIIkKIQ/photo.jpg,"This is the closest app I've found since my last upgrade & lost a similar app. Best thing about it, it's VERY user friendly & everythings right at my fingertips. I'm still getting used to it, but loving it so far! I have only one change I'd like to see. I love how I can change the arrangement in my lists, could you make it so I can change the arrangement of my catagories as well. Thank you & I hope I don't loose this one when it comes time to upgrade!",5,5,2.3.2,2020-04-02 17:59:49,"HI Gayle, thank you for your amazing feedback & support for my little app. You can reorder everything in Tasks. To reorder parent tasks open the main menu and click reorder. To rearrange sub lists open the sub list menu (3 dots top right). For tasks and sub tasks use drag and drop using the drag handles (dots on the right). I hope this helps, Steve",2020-04-02 18:38:27,newest,com.tasks.android +Dawn Williams,https://lh3.googleusercontent.com/-7JEk5a4sAh8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM_1S2xy62XNVHk4kUQraqxY4f08w/photo.jpg,"Easy to install very similar to wunderlist but much easier. Was a wunderlist user for over 5 years loved the app kept my finances on straight and narrow thank you for do this amazing list. Did not like the new microsoft office task list far to difficult to get let alone use. I don't have time to fiddle around on phone and this takes me straight to my lists. I also used wunderlist for shopping, planning events loads I am looking forward to using this app.",5,0,2.3.2,2020-04-02 17:02:43,"Hi Dawn, thank you for your amazing feedback. Really glad you're finding my little app useful. Happy organising 😄 Steve",2020-04-02 17:24:04,newest,com.tasks.android +Ace Porter,https://lh3.googleusercontent.com/-4LddkgxNKFE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOPE2c2KoI_cg1HLOCq3sMr3bYMpg/photo.jpg,Excellent. The best to do app out there.,5,0,2.3.2,2020-04-02 16:39:34,,,newest,com.tasks.android +Geraint Morgan,https://lh3.googleusercontent.com/a-/AOh14GglBrO7nDRmgNQQfPjtLEN42pBhgEBuhXdC_zuNCg,Does what it says on the label,5,0,,2020-04-02 11:03:29,,,newest,com.tasks.android +Graham McKean,https://lh3.googleusercontent.com/-VyY4L7tO2Qw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNoXPSyVvMtX90Db4facji0o-qO5A/photo.jpg,"Perfect, it is brilliant for everything I need. I have even thrown away my old to do list notepad!!!!!!",5,0,2.3.2,2020-04-02 10:30:43,,,newest,com.tasks.android +Soniyaa Singh,https://lh3.googleusercontent.com/a-/AOh14GiIUQqDxnmh2n0tfUdXzlPX26tVC03hMZthFSCA-w,Its a fabulous app. really easy to use. Fun as it offers colourful background,5,0,2.3.2,2020-04-02 07:04:06,,,newest,com.tasks.android +Baldi's Basics,https://lh3.googleusercontent.com/a-/AOh14GixPtITPtipN7ZroImSrtpoNJDnF5hIW96bA0q8rA,"Yeah, it is really good. Also i don't know how to make a daily reminder. Plus, the tasks in my widget disappears and i don't know how to put it back.",5,0,2.3.2,2020-04-02 05:01:36,"Hi, thank you for your great feedback. For help creating a repeating tasks checkout the online help (available via the Help button in the main menu): https://mytasksapp.com/help/faqs#recurring-task. For other issues simply send me an email. I hope this helps, Steve",2020-04-02 07:21:25,newest,com.tasks.android +david antol,https://lh3.googleusercontent.com/-CSHbjQc03eA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPIrmH7qjB4yfkkUkibqbe7POIizA/photo.jpg,"It is easy, quick, and intuitive.",5,0,2.3.2,2020-04-02 02:04:34,,,newest,com.tasks.android +Lyric Tanksley Itinerant,https://lh3.googleusercontent.com/a-/AOh14GgR5Uugle9CC-1wp4uz4NZR9FZwTwSJtFUSamgrg6M,I love the interface and the colors. It's very smooth and fun to look at,5,0,2.3.2,2020-04-01 23:58:20,,,newest,com.tasks.android +Lollice Reese,https://lh3.googleusercontent.com/-9qspcsIyerc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNO0C_dk3mU-OD8dTJu5Vrv9LgPFw/photo.jpg,"Simple, allows you to manipulte lists, sub catagories. First one ive found that really works for me.",5,0,,2020-04-01 22:58:41,"Hi Lollice, thank you for your fantastic feedback. Really glad you're finding my little app useful. Happy organising 😁Steve",2020-04-02 07:22:09,newest,com.tasks.android +Lisa Young,https://lh3.googleusercontent.com/-r3-IyqaefuI/AAAAAAAAAAI/AAAAAAAAFKo/AAKWJJMuxLiAL51r5oNOaPEuDv8INnbYHw/photo.jpg,Love this app!!!,5,0,2.3.2,2020-04-01 21:37:26,,,newest,com.tasks.android +Sean Hendrickson,https://lh3.googleusercontent.com/-zzDTSegMftg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMtvwneFgW-r2EgMd5DBi8JbW9rqQ/photo.jpg,"This app is great! BUT I am having one issue that is dragging me away to other apps I like less overall. My work lunch hour switches every week between 11:00am and 12:00pm. I wish there was a way I could have a task repeat ""every two weeks on weekdays"" so that I could have these 2 tasks auto rotate weeks. Is this possible in this app?",5,0,2.3.2,2020-04-01 18:35:48,,,newest,com.tasks.android +Sabrina De los Reyes,https://lh3.googleusercontent.com/a-/AOh14GiVqWGEa0ZUQf39ENyjwapcX0JhQTW1-riggXpc,"I just love how convenient all the settings are, as someone who loves lists",5,0,2.3.2,2020-04-01 15:59:00,,,newest,com.tasks.android +Alisa Tam,https://lh3.googleusercontent.com/a-/AOh14Ggn8VJDgQzr4wFOWOYN_83hY0naxS4TXzdUhu3jizc,Very versatile app. I used this primarily as a to-do list and grocery list.,5,0,2.3.2,2020-04-01 14:47:14,,,newest,com.tasks.android +Bethany Sewald,https://lh3.googleusercontent.com/a-/AOh14GgqDW5-aeqJq8a0B9SMQ6UInRQjeRXHLLcQMrYdFQ,Great help,5,0,,2020-04-01 14:41:25,,,newest,com.tasks.android +chrissie campbell,https://lh3.googleusercontent.com/a-/AOh14Ggtbcy2khNLohujvs_Uy6dw9XgOF4qX0S5wlGyrDQ,So far this app works perfectly for what I need.,5,0,2.3.2,2020-04-01 13:32:38,,,newest,com.tasks.android +Yo Rika,https://lh3.googleusercontent.com/a-/AOh14Gg_RHt_D6rSaryoH5ppp712Xv38BbnamcduuvzU,"Очень удобно Идеальное приложение. Можно сортировать и организовывать записи + выбирать цвета для задач, темы",5,0,2.3.2,2020-04-01 09:06:09,Awesome feedback and support! Thank you 😁Steve,2020-04-01 09:53:07,newest,com.tasks.android +Patrickson Rupert Mendoza,https://lh3.googleusercontent.com/-fT3RVZss9Gs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOLdDzlSV6_sYwvHavMlQfrv8O4gw/photo.jpg,This app really helps. It makes me organized in what i need to do especially when I am going out to go to the supermarket and buy stuffs.,5,0,2.3.2,2020-04-01 02:49:57,Really glad you're finding my little app useful. Happy organising 😁Steve,2020-04-01 07:30:22,newest,com.tasks.android +Tim Hoskins,https://lh3.googleusercontent.com/-M-URCaWSChQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOa-ApgPAHFRCLexLLuGH9kYlfF3w/photo.jpg,"Very easy to use, helps me to not miss things that aging was making me forget!",5,0,2.3.2,2020-04-01 02:37:11,,,newest,com.tasks.android +early yuski,https://lh3.googleusercontent.com/a-/AOh14Giwh-ywZy_eQ4WxYYsMKYaHXf_ZmSqdV-Fv5eoIQw,Aplikasi ini sangat membantu,5,0,2.3.2,2020-04-01 00:48:42,,,newest,com.tasks.android +Hajar Ouadrhiri,https://lh3.googleusercontent.com/a-/AOh14Ghrc_6fGTjbU-rxth0VRcz0zKzcr2aiE4BMtVmZSVg,Easy to use and the colors help organize my tasks,5,0,2.3.2,2020-03-31 19:40:03,,,newest,com.tasks.android +Laland La,https://lh3.googleusercontent.com/-gXsHIKki0BY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMAIKT1r4XnMln16I_PZtysB1DdKA/photo.jpg,提醒方式可設定成全螢幕鬧鐘模式,不會錯過,5,0,2.3.2,2020-03-31 17:38:33,,,newest,com.tasks.android +Livy Morris,https://lh3.googleusercontent.com/a-/AOh14GhMWWOiybJIfk_Q7vDLz2IQg6F9vptfQr6e2XTarQ,I love this for lists. Currently I am using it to keep track if my school work while over this school break!,5,0,2.3.2,2020-03-31 17:29:23,"Hi Livy, thank you for your fantastic feedback. Really glad you're finding my little app useful. Happy organising 😁Steve",2020-03-31 17:35:19,newest,com.tasks.android +Coffey,https://lh3.googleusercontent.com/a-/AOh14GjwLoUVvkuHoxNr3eJ_982_vakaVkGxT-pokd0DUQ,Just started using it.. I'm very organized & working from home during this pandemic is easier with the task to do list app :-),5,0,2.3.2,2020-03-31 17:01:05,,,newest,com.tasks.android +Sensaya Nolan,https://lh3.googleusercontent.com/-shvYIpzrwZA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOd0oluN27G32LtWYAn8AdTKqzYkg/photo.jpg,Good for food shopping,5,0,2.0.0,2020-03-31 16:21:57,,,newest,com.tasks.android +yenna tiew,https://lh3.googleusercontent.com/-mh4oJRY4TR4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMe8Sv5cD4ZsfwMY7PSk0HlfOZyNw/photo.jpg,Vy useful to hv,5,0,2.3.2,2020-03-31 16:01:15,,,newest,com.tasks.android +Tuba Farah,https://lh3.googleusercontent.com/-gBgbY8Zj3Ao/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNd_kXOikItEalxzlN75NMlsUJ3hQ/photo.jpg,Make it possible to attach images and links,5,0,2.3.2,2020-03-31 14:07:53,"Hi Tuba, links are possible. Simply paste a link into the title/notes data fields. You can also share from any other app. Tasks is a community driven hobby project of mine with the most popular suggestions added over time. It simply relies on donations and my spare time to move. I will add your suggestion to my list for future improvements. Steve",2020-03-31 14:35:19,newest,com.tasks.android +Journey 2Virtue,https://lh3.googleusercontent.com/a-/AOh14Gi4RU0J96-Ra9grPoGLOpIT7VkaR7h_fK4t_lCtKg,Helped me out alot.,5,0,2.3.2,2020-03-31 13:14:58,,,newest,com.tasks.android +Hannah C,https://lh3.googleusercontent.com/-zvLTp6gqpgk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPk5Vx931iy_ySX3YyATy8jy7gqcg/photo.jpg,"Love it. Exactly what I was looking for. Nice looking, very functional, and it can go on my homescreen with check boxes. 10/10",5,0,2.3.2,2020-03-31 11:31:03,"Hi Hannah , thank you for your awesome feedback and support. Happy organising :) Steve",2020-03-31 13:06:14,newest,com.tasks.android +Alena McMahan,https://lh3.googleusercontent.com/a-/AOh14Gjtkt9v7KmlNJKrDA2UcdWqVMgd9bRq_CtX-LGY-JI,"I absolutely adore this app. It keeps me from getting overwhelmed, but also keeps my house clean because I only take care of what's on my Tasks that day.",5,0,,2020-03-31 11:13:28,"Hi Alena, thank you for your amazing feedback! Happy organising 😁Steve",2020-03-31 07:53:43,newest,com.tasks.android +Nicholas Michael,https://lh3.googleusercontent.com/-hvCorXGXVqQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMUbixdBHf4sJ4o7JnbyNODslEMOQ/photo.jpg,Just started but easy to use. Not accustom to all features but this app makes sense,5,0,2.3.2,2020-03-31 10:31:51,,,newest,com.tasks.android +Pf193a Work,https://lh3.googleusercontent.com/---Cbr1VZH48/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPn13n076I1E50dr0K7yd4uzc1TUQ/photo.jpg,Very easy to use and very useful - thanks.,5,0,2.3.2,2020-03-31 09:12:50,,,newest,com.tasks.android +Matthew Neave,https://lh3.googleusercontent.com/-4z1SQxkG48g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOQqgoayucu-ybVBpmtrWKlN59ckw/photo.jpg,Handy app for reminding me what to get at the shop's and recording my hours as I'm a temporary placement employee,5,0,2.3.2,2020-03-31 05:21:53,,,newest,com.tasks.android +Jenna Herron,https://lh3.googleusercontent.com/a-/AOh14Gi0PuWd2LOgbWU-m7fl8VHoXuwTbN40lCInoz3y1w,Especially like that there is a widget option where you can put your tasks on your home screen and be reminded of the tasks you set. Very dynamic app yet simple is appearance and interface. Helpful and not over the top!,5,0,2.1.0,2020-03-31 04:49:24,"Hi Jenna, thank you for your fantastic feedback and support for my little app. I really appreciate it 😁Steve",2020-03-31 08:00:22,newest,com.tasks.android +Tim,https://lh3.googleusercontent.com/-FSaJ0hV_f1w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPruSHcYSTLa3_VYmyXAOiAOcPyhA/photo.jpg,"Easy to use, great colors, love it.",5,0,2.3.2,2020-03-31 02:21:48,,,newest,com.tasks.android +Kayleen Gonzalez,https://lh3.googleusercontent.com/-fmSi11uxRMQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNeYiytuHxwvkhyiMRgrlxmzSYmpg/photo.jpg,I love this app!!! FYI although it is a free to use app I dont remember seeing a single ad!!!! Definietely reccomend,5,0,2.3.2,2020-03-31 01:25:14,"Hi Kayleen, thank you for your fantastic feedback. You are correct, Tasks is a hobby project of mine and relies on daontiosn and my spare time instead of ads to move forward :) Happy organising 😁Steve",2020-03-31 07:48:47,newest,com.tasks.android +Carrie Osterberg,https://lh3.googleusercontent.com/-3p7QPJYjCgs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPcdaT6yHe-FZBXS57hw38W_ikZ7g/photo.jpg,"It wasn't as intuitive as other organizational apps I've used but once I got the hang of it, wow. So many options to really get organized in a detailed way. I love it",5,0,2.3.2,2020-03-30 19:25:08,"Hi Carrie, thank you for your positive feedback. If you have ideas to make my little app more intuitive please email me at tasks.list.app@gmail.com. Thanks, Steve",2020-03-31 07:41:32,newest,com.tasks.android +Jackie Jones,https://lh3.googleusercontent.com/-VJ4RKijKx_s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMKj865zW42RhKBsasUtBcOtzqffQ/photo.jpg,Great app,5,0,2.3.2,2020-03-30 16:32:52,,,newest,com.tasks.android +Casey Reeves,https://lh3.googleusercontent.com/-okYDjk3CDMg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMvufX4r-Wqq3Mb7RbaqtOqGoS6FA/photo.jpg,Simple and efficient app.,5,0,2.3.2,2020-03-30 14:26:51,,,newest,com.tasks.android +John Blumfelder,https://lh3.googleusercontent.com/-QYCBUmkufLA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOVxo9_j6GHDS7DbOh6xFFT8xdmrQ/photo.jpg,Extremely helpful for me. Great app,5,0,2.3.2,2020-03-30 13:45:26,,,newest,com.tasks.android +Sian,https://lh3.googleusercontent.com/a-/AOh14GjwlREldjqqxsmSFtFB-LPoFeqs91zltC8y0JDlWg,Best to do list app I have used,5,0,2.3.2,2020-03-30 01:32:23,,,newest,com.tasks.android +Smeet Butala,https://lh3.googleusercontent.com/-Y9SVxf18FcI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOtc771PzZhqNor4DcEx9dRZrntlw/photo.jpg,"Fantastic app, does exactly what I want it to do. Thank you so much!",5,0,2.3.2,2020-03-30 01:12:11,,,newest,com.tasks.android +Gary Swan,https://lh3.googleusercontent.com/-8FQwidr7oEU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOKj2ZsEZkm1uqkpdwUl7C1pBhQ7w/photo.jpg,"Works great! No ads, no unnecessary complexity",5,0,2.3.2,2020-03-29 22:50:55,,,newest,com.tasks.android +Tim's Interest,https://lh3.googleusercontent.com/-Coe4PuVt9-c/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPTlhTBp-_oEvjRcBMo-PafQ7vTlA/photo.jpg,I have never seen any other Tasks or To-Do List that has so many options/functions available. I am really impressed and appreciate this app.,5,0,2.3.2,2020-03-29 20:36:44,"Hi Tim, thank you for your fantastic feedback and support for my little app. I really appreciate ti 👍Steve",2020-03-30 07:54:30,newest,com.tasks.android +Ashley Hayles,https://lh3.googleusercontent.com/-V7fGE5ntRjw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOrwdnlbArCJN3MNvtedWmuHmQheg/photo.jpg,Love it,5,0,2.3.2,2020-03-29 20:13:48,,,newest,com.tasks.android +Mary Dean,https://lh3.googleusercontent.com/-m78L81hLtfE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOcoNX5p5nvRKBrsAF0BcVqdBODqA/photo.jpg,Keeps me on task,5,0,2.2.0,2020-03-29 19:52:13,,,newest,com.tasks.android +Nate Myren,https://lh3.googleusercontent.com/-W18AIl8BYXM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM2vaEstbXU3C5xR-Bwj7UW7kdn7g/photo.jpg,"Does what I need it to, no account required",5,0,2.3.2,2020-03-29 16:47:33,,,newest,com.tasks.android +Camille L,https://lh3.googleusercontent.com/a-/AOh14GgpPxGGUK5AlJGuOD85HqMdIBwPUq1HjLAR4szm5Q,"Love LOVE LOVE the app I love the colors. I love that I can change or edit my list. (I just found out ) I love that I can copy my list and make him into a sub list. I love that it has easy swipe to delete them. I love that I can have several lists under one sub list. I have several different notes, list apps and this one is by far number one! the best!",5,1,2.3.2,2020-03-29 16:27:17,"Hi Camille, thank you so much for your amazing feedback and support for my little app. I really appreciate it. Happy organising 😀 Steve",2020-03-29 16:41:19,newest,com.tasks.android +Cheryl F,https://lh3.googleusercontent.com/a-/AOh14GgHmxn7kCcPshj_2xIr6UigTwytVUjeoatcGx_40w,Great.,5,0,2.2.0,2020-03-29 15:36:51,,,newest,com.tasks.android +STEVE HAYNES,https://lh3.googleusercontent.com/a-/AOh14Gj5ITizANATIaoqzESoC73Kovv9HJheioYGExd_tw,I've used several task and todo apps. This is the best by far!,5,0,2.3.2,2020-03-29 14:52:39,,,newest,com.tasks.android +Ewa Marciniak,https://lh3.googleusercontent.com/a-/AOh14Gh-9Nwcnxf4VPFfISGF5GhX7r2Oxqs3iV9KmyyDvw,I love it! Helps me stay organised.,5,0,2.3.2,2020-03-29 14:10:45,,,newest,com.tasks.android +Tim Spencer,https://lh3.googleusercontent.com/-rlRsUId6AVk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOiK5xICg4qqTW0mBjAZYSWauYmtg/photo.jpg,"I recently switched over from the original business calendar app which I have been using for many years. This version has a fancier UI but functionally seems much the same as far as the calendar goes which is fine, if it ain't broke don't fix it! I think other features have been added but I don't really use them. Update: full screen ads suck. They appear and cannot be closed for a long time. Show me an ad if you must but let me close it, the free version is unusable this.",1,5,2.37.9,2020-02-13 12:47:36,"Hi, please note, that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:32:40,most_relevant,com.appgenix.bizcal +Susan Marken,https://lh3.googleusercontent.com/a-/AOh14GiBuBqUZVlbMWwBVNFPDzdd7JxKYSJciOjT5mht,"I am going to drop this app after years of use because of recent full page video ads which are out of control. Edited to add: of course the free version has ads. Always has, and I don't mind, because *something* has to pay for app development. But these new full page, video that can't be shut down, in your face for many seconds ads are new and intolerable. That was a bad business mistake you can correct. I hope you correct it soon. I'll be checking back to see.",1,57,2.37.9,2020-02-18 14:09:31,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-19 11:09:28,most_relevant,com.appgenix.bizcal +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Resonse (2/13/20): I know that the free version is not ad-free. The issue that what you have done recently is to force people to watch ads instead of just clicking them away. And this happens while I'm trying to add or edit something on the calendar. Had to change from 5 to 1 star because of these pop up ads. Will be looking for a new app soon.,1,43,2.37.9,2020-02-13 12:16:19,"Hi, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:33:01,most_relevant,com.appgenix.bizcal +Marvin Wei-Chao Kao,https://lh3.googleusercontent.com/-h1aOMqQMo94/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNHWISKOmCk316PScDQ81RwbzD6Kw/photo.jpg,"Ads with free apps are acceptable, but fullscreen & non-skippable ads blocking the entire screen for 20 seconds are NOT. Awful user experience. Google has recently removed 600 Android apps from Play Store because of disruptive fullscreen ads, this app may be the next one to be removed. Not recommended.",1,1,2.37.9,2020-03-11 12:11:20,"The free version is still functional as the skippable ads appear only every 18 hours! It means it is 2/day, if you're unlucky. Otherwise you can use the app without any further disturbance. Please note, that this free version needs to be developed and maintained on the daily basis. This requires a lot of time and work.",2020-03-11 14:31:23,most_relevant,com.appgenix.bizcal +Charles Roberts,https://lh3.googleusercontent.com/-B9dbRFKM2h4/AAAAAAAAAAI/AAAAAAAAAUI/AAKWJJPQxG12lTURZKZxXzkiH0t0vU6f8A/photo.jpg,"Its a great app I used for years. I was ok with ads, but the full screen can't be immediately banished ads make it unusable. When I need Calendar info, I need it RIGHT NOW. I'll give it a couple of weeks but if it doesn't go back to discrete corner ads I'm out. Edit post response: I'd have paid a couple of bucks for ad free version, because it is better than stock Calendar. But its not 7 bucks better. So if you're not going to remove full screen ads, after years of using, gotta say buh bye...",1,17,2.37.9,2020-02-20 02:29:49,"Hi, please note that the free version is not ad-free. We avoided this solution for as long as it was possible. It is not the case anymore and we need to think about further development and maintenance of this version. Please also note, that the pro upgrade is a one-time fee, which you can use without any time and download limit.",2020-02-20 09:15:43,most_relevant,com.appgenix.bizcal +Pat Gray,https://lh3.googleusercontent.com/-R97e-SoID24/AAAAAAAAAAI/AAAAAAAACCA/AAKWJJP3WCgXM4rKXZ5DGws6KZ0MGSSxGw/photo.jpg,"I've used this app for years and have loved it up until now. Now I get full page ads that sit there for 5 seconds and disrupt what I'm doing. I don't mind a full page ad that I can back out of or scrolling ads at the bottom, but to force me to watch a 5 second ad is not reasonable. Seems like they're forcing you to pay up or move on to another app. If this continues I'll find another app.",1,10,2.37.9,2020-02-12 13:41:52,"Hi, please note, that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:34:27,most_relevant,com.appgenix.bizcal +Bodega Coast Lock & Key,https://lh3.googleusercontent.com/-x_l853maxAw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPSnMveeeyunhThn_dFFs3_xvQOXg/photo.jpg,"Love this calendar up until a few days ago. The ads used to be fairly non-intrusive, which I get and could totally live with. Now they have a full screen animation that you have to wait on to use the calendar. Totally unacceptable when I'm with a customer. Absolutely do NOT recommended this calendar as currently configured.",1,6,2.37.9,2020-02-13 18:18:53,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-14 11:07:27,most_relevant,com.appgenix.bizcal +MzSpl Brat,https://lh3.googleusercontent.com/-TgRuRPuMrfU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJODv61v2kWBiR76H0IbJ8fkfupeAw/photo.jpg,"I've had this app for years, even upgraded it to the premium version. Loved it.. then as the developers started updating, I started having many issues. Each time i used the app it would show in the premium or free version; it was inconsistent. I wrote the customer service for assistance and I didn't get any help. So i lived with it. Most recently, I started receiving ads after every entry; Not okay!! I sent another email 2 wks ago which they have not responded to; which is why I'm here. Help!",1,24,2.37.9,2020-02-21 20:46:13,"Hi, you don't need to play twice. The license is valid without any limit as long as you use the same account and app store. Take a look here: https://appgenix.uservoice.com/knowledgebase/articles/908211-i-paid-for-the-app-but-i-lost-the-pro-features",2020-02-24 09:59:23,most_relevant,com.appgenix.bizcal +Chi Mak,https://lh3.googleusercontent.com/-y6xvPQrooEw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJObrjvATEzeARIbxpkkUKOIxJncAA/photo.jpg,"Used this app for years, but I can not tolerate the recent full page video ads that pop up after every calendar entry. I use the free version which I know is sponsored by Ad, the recent updates allow intrusive , excess ads that you can even skip and I can't renter the app to verify my calendar entry was added/modified corrected. The developer or owner has really overstepped with the recent updates and ads. I'm going back to the free Google app instead. I hope you push out a new update before y",1,5,2.37.9,2020-02-26 13:56:49,"The ads appear only every 18 hours! It means it is 2/day, if you're unlucky. Otherwise you can use the app without any further disturbance. Please note, that this free version needs to be developed and maintained on the daily basis. This requires a lot of time and work. The ads help us maintain the software. The PRO version is completely ad-free",2020-02-27 09:58:09,most_relevant,com.appgenix.bizcal +Daniel Wagner,https://lh3.googleusercontent.com/-JFtH7M8xW7E/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO1BveaUMC3It3n0x923eXQc2VF4A/photo.jpg,This used to be a very good calendar app with plenty of good features in the free version already. Unfortunately they introduced intrusive full-screen ads recently to force you into buying the premium version. I'll rather switch to another calendar app than be blackmailed like that.,1,0,2.37.9,2020-03-24 13:33:08,"The free version is still functional as the ads appear only every 18 hours! It means it is 2/day, if you're unlucky. Otherwise you can use the app without any further disturbance. Please note, that this free version needs to be developed and maintained on the daily basis. This requires a lot of time and work. The ads help us maintain the software.",2020-03-24 15:49:37,most_relevant,com.appgenix.bizcal +Matthew Scott,https://lh3.googleusercontent.com/-Rn8-Hg-E47o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNzP6kV7IQVEBxJIJVRLvW48sHe4g/photo.jpg,Used this calendar for years without any issue. Now ads will take over the entire screen after entering an appointment in the calendar and there is a delay before you can cancel them out. Terrible and disappointing choice on the part of the developers. They've lost me as a user as I refuse to pay for a pro version for a simple calendar app. Do yourself a favor and stay away. The ads suck and are annoying.,1,49,2.37.9,2020-02-08 03:28:42,"Hi, please note, that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:37:32,most_relevant,com.appgenix.bizcal +J Nung,https://lh3.googleusercontent.com/-yl5iSvZghqA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPREMLaIhfp57B-QRAEbuCi9ZPDFw/photo.jpg,"Excellent UI. Easy to use and sync to gmail. Events and tasks all at once. Since the last update on Feb 13, 2020, this app shows video ad. after modify calendar which you cannot close until the ad is finished. You have to be careful if you are in quiet environment ie meetings.",1,7,2.37.9,2020-02-14 23:44:49,,,most_relevant,com.appgenix.bizcal +Cole Bradbury,https://lh3.googleusercontent.com/a-/AOh14GiSDMjZn9vvqgrYMQ2Mu8IyEcdpp-dJ1gjBMaiwow,"Used the free version for years, no issues, didn't need the pro features. Then they started putting in ads - not the kind that pop up along the bottom but ones that completely hijack the screen while you're trying to work. Worst bait-and-switch I've ever seen.",1,4,2.37.9,2020-02-11 15:46:04,"Hi, please note, that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:35:28,most_relevant,com.appgenix.bizcal +Hugo Harrabin,https://lh3.googleusercontent.com/a-/AOh14GioAQ8KsV6G-e_j_UgeJhxfpENRGmG_FXxW_WZr,"I have used this app for a couple of years now and it was great. It had small banner ads before, however recently they have incorporated video ads which play every time you input a new plan. This is incredibly tedious and a massive waste of time. DO NOT DOWNLOAD.",1,2,2.37.9,2020-02-21 09:46:11,"Note that the free version is not ad-free (only the pro version is completely ad-free). What do you mean by ""every time""? The ads are set to appear every 18h, so it makes it max. 2 a day. We are also currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-21 10:03:45,most_relevant,com.appgenix.bizcal +Local Bin,https://lh3.googleusercontent.com/a-/AOh14GiaOGbk79D3oSG6rScoaSEAS7oHPv_brtS9LAgnfQ,"Great app but why do you need 13 Ad trackers in this paid for pro app? Exodus privacy list 13 trackers against your app which is rediculous. Using this every day, but now concerned my every move is being tracked 13 times. Edit: You inform, so that makes it okay then, for you. Perhaps other more privacy focussed users should look elsewhere. How do I confirm the trackers are not used? Trust you, I bet.... 13 are for revenue, 1 will suffice for personalising.",1,2,2.37.7,2020-01-30 11:25:38,"Hi, if you have the pro version, the trackers are not used. They are only used in the free version to provide personalized data for the ads. We inform about it as well.",2020-01-31 09:18:11,most_relevant,com.appgenix.bizcal +M B,https://lh3.googleusercontent.com/-Jn6cp2Mathk/AAAAAAAAAAI/AAAAAAAAPJk/AAKWJJMFc8jOZSnPY4UBGq7UA86VJI-LxA/photo.jpg,"Recent addition of VERY intrusive full-screen video ads has crossed a line. At first I thought my phone had been hacked! I totally understand need for revenue for a great free app, but this is too much. I'm going elsewhere very soon without a change!",1,2,2.37.9,2020-02-17 03:56:06,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-17 08:19:04,most_relevant,com.appgenix.bizcal +Robert MacGregor,https://lh3.googleusercontent.com/-j4gMNA9sbpg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMo3m_cOg-bUynYU0pTt9H-VWFEbg/photo.jpg,"UNSKIPPABLE video ads pop up when you are adding or editing an event. I mean video ads popping up in a *calendar* app is bush league already, but unskippable? May as well have a boxing glove on a spring pop out of my phone and smash my groin - that's probably preferable.",1,0,2.37.9,2020-02-18 22:43:36,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-19 11:08:10,most_relevant,com.appgenix.bizcal +Peregrine Falcon,https://lh3.googleusercontent.com/a-/AOh14Gih5_LF-XmXDdJ1Ew-3lUzcL3rbPHIat-4FMNCgk54,"Ads started appearing whenever I'd modify something. Not cool. Edit: I have no problems with banner ads, but ads that completely disable functionality for a period of time completely defeats the purpose of using this app for better functionality.",1,1,2.37.9,2020-02-17 23:06:48,"Hi, we avoided this solution for as long as it was possible. It is not the case anymore and we need to think about further development and maintenance of this version. However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-18 08:48:18,most_relevant,com.appgenix.bizcal +Samar Inam Khan,https://lh3.googleusercontent.com/a-/AOh14Gj_SgXYgeqmIpAgbGttarKSimGh3e5ZvGlvqLU_,"Using the app since years, now whenever open the app, trying to save an entry, full page advertisement opens for atleast 30 seconds causes missing what more to enter on different dates, this app is at its worst",1,1,2.37.9,2020-03-28 19:45:44,"The free version is still functional as the skippable ads appear only ONCE every 18 hours! Otherwise you can use the app without any further disturbance. Please note, that this free version needs to be developed and maintained on the daily basis. This requires a lot of time and work. The ads help us maintain the software.",2020-03-30 08:46:24,most_relevant,com.appgenix.bizcal +Florin Spătar,https://lh3.googleusercontent.com/a-/AOh14GgT-DqKZmQu3sAUtt7xutBSiteB1R3clvgOZjCdKDI,"Developer started to add invasive ads, and worst of all, the functionality that was working before, is not working anymore. Probably the app is busy with the invasive ad and forgot about the job at hand :) And yes, I know about the payed version",1,1,2.37.9,2020-02-28 13:59:49,"The free version is still functional as the ads appear only every 18 hours! It means it is 2/day, if you're unlucky. Otherwise you can use the app without any further disturbance. Please note, that this free version needs to be developed and maintained on the daily basis. This requires a lot of time and work. The ads help us maintain the software.",2020-03-03 10:52:00,most_relevant,com.appgenix.bizcal +Paul H,https://lh3.googleusercontent.com/-En1RANuq4VY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMDWKJeLFhL7ZExxM1b9R-Y3GCHOg/photo.jpg,"Used to be good. Now massive full screen adds with sound. First time they ran without warning, very embarrassing. Will give it a week to revise, then will uninstall. Adds are ok, but the full screen nature with sound isn't.",1,1,2.37.9,2020-02-11 00:00:32,"Hi, please note, that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:36:00,most_relevant,com.appgenix.bizcal +MICHAEL FōKKEN,https://lh3.googleusercontent.com/a-/AOh14Ghh-X1ucv3wnXdoIzW60ljsN_UBySisk86jdE0a,"The Ads now pop-up full screen. That is very, very, very, very annoying. What if I'm on an important call making an appointment and then you pop-up this irrelevant ad right in my face. Unprofessional.",1,4,2.37.9,2020-02-10 04:25:20,"Hi, please note, that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:36:44,most_relevant,com.appgenix.bizcal +Mike Frishman,https://lh3.googleusercontent.com/-EntUtKVWQdg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOOQtfPXBuFTiIG03WYoHhhWCIT9A/photo.jpg,My go to for years. Until the last update. Ads used to be unintrusive. Now you have to wait 10 seconds after every calendar update for the ad to run. Uninstalling now.,1,1,2.37.9,2020-02-13 00:53:57,"Hi, please note, that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:33:39,most_relevant,com.appgenix.bizcal +john fronk,https://lh3.googleusercontent.com/-d3lm1hjVgG8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN2ehzVzOlRJEX2KI73vsRQydaweg/photo.jpg,I am also looking to change after years of usage. The app stooping to advertising unless a NEW upgrade is paid is dishonest. I paid for my old version and was satisfied with its functionality. Not interested in your new version,1,0,2.37.9,2020-02-26 03:45:22,"Hi, if you have the PRO version of BC 1, you can use all PRO functions in BC 2 completely for free. You don't need to pay for anything. All you need to do is to keep BC 1 Pro installed, so that the pro functions can be unlocked without any additional charge. We do not think it is a dishonest deal.",2020-02-26 10:13:08,most_relevant,com.appgenix.bizcal +Eric Wilson,https://lh3.googleusercontent.com/a-/AOh14GiMoDnmGouPrCXyLxfkrzsEts5rnZAlHhaaIFMs8A,The ads are a joke. Completely destroyed the experience. Maybe they haven't tried searching for calendar on the play store and noticed the hundred other options? Look elsewhere for calendar needs!,1,1,2.37.9,2020-02-27 13:05:49,"The free version is still functional as the ads appear only every 18 hours! It means it is 2/day, if you're unlucky. Otherwise you can use the app without any further disturbance. Please note, that this free version needs to be developed and maintained on the daily basis. This requires a lot of time and work. The ads help us maintain the software.",2020-02-28 09:27:31,most_relevant,com.appgenix.bizcal +Yan G.,https://lh3.googleusercontent.com/a-/AOh14Gix_ju2DpUQtFFcrQYzgKjH23y7wRE2764clNGG,The link provided is the same robot answer I received by email. I still cannot download the the pro version I bought as it was removed from the market. If you remove it from the market then obvisouly no one can download it. And if it is not removed. Provide the download link. Else do not tell your customers that it is a perpetual license. Did you ever hear about short links??,1,6,2.37.5,2020-01-23 05:18:32,"You received a similar message, because this is how you solve the problem. If none of the suggestions worked for you, contact Play Store Support and they should solve the issue. We -as developers- can't provide any sort of links. You download the app from a store where you bought with the same account. Only then THE STORE unlocks your license.",2020-01-23 09:30:52,most_relevant,com.appgenix.bizcal +Andy Davis,https://lh3.googleusercontent.com/-qcjV8Fi6aUk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNa3KZOKFCU0vnGn8bcC19gw0PIHA/photo.jpg,"I've used this calendar for years. It has always been the best. But now they've added ads. Unless those go away, I'll be finding a new calendar.",1,0,2.37.9,2020-03-07 02:28:46,"The free version is still functional as the ads appear only every 18 hours! It means it is 2/day, if you're unlucky. Otherwise you can use the app without any further disturbance. Please note, that this free version needs to be developed and maintained on the daily basis. This requires a lot of time and work. The ads help us maintain the software.",2020-03-09 12:20:24,most_relevant,com.appgenix.bizcal +Eat-it Dog,https://lh3.googleusercontent.com/-svTkoK_XiA8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNH7f0i5yHGnrgld_bCuBXrtm4-MQ/photo.jpg,Used to be 5 stars. I've used this app for years.... The sudden addition of full page unskipable adds ruined it. It looks like I'm not alone in my disappointment.,1,1,2.37.9,2020-02-28 11:22:08,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-28 13:36:25,most_relevant,com.appgenix.bizcal +Tracy Biel,https://lh3.googleusercontent.com/-tVeXSrtyzdc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNyQlQfhsYO6o5pPOiLKTA2TUA8yg/photo.jpg,"Awful! At one point, I bought the Business Calendar 2 app, and I the update has ads. I'm supposed to purchase the newest version? Yeah, no thanks.",1,0,2.37.9,2020-03-09 02:34:27,"Hi, we avoided this solution for as long as it was possible. It is not the case anymore and we need to think about further development and maintenance of this version. This kind of advertisement is a standard right now in the free apps. If you don't want to receive any ads, you can consider the pro version, which is completely ad-free.",2020-03-09 11:59:09,most_relevant,com.appgenix.bizcal +Dace Briede,https://lh3.googleusercontent.com/a-/AOh14GgEs8VzmjHvcTV0xj1YmF8zRkQAIgkTVco7RZJg_X4,"It used to be the BEST calendar for many years, TILL NOW, when annoying advertisements are popping up all the time. So sad, but it's totally intolerable, need to Uninstall and find another app",1,3,2.37.9,2020-02-09 12:56:02,"Hi, please note, that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:37:02,most_relevant,com.appgenix.bizcal +Weh Yeoh,https://lh3.googleusercontent.com/a-/AOh14GieqQPPuG1vSCBrinU42dsEa2OWQDgpFBz6_uxvE_M,I understand the need to play ads in a free version. But your ads are going for 30 seconds before you can get rid of them which makes this app unusable.,1,1,2.37.9,2020-02-20 20:08:47,"We avoided this solution for as long as it was possible. It is not the case anymore and we need to think about further development and maintenance of this version. However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-21 10:05:23,most_relevant,com.appgenix.bizcal +Chris Greenway,https://lh3.googleusercontent.com/-TxKVDhg4C2w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNfG2wa4BxNKxO30a7uWRu_3VgSVg/photo.jpg,Terrible when you get a new phone! Only about half my data transferred when I updated my phone!! Months of scheduled events don't show up now!! Not happy at all with this app!!!,1,18,2.37.4,2020-01-20 18:04:21,"Hi, how did you perform the backup of your data? As follows? +https://appgenix.uservoice.com/knowledgebase/articles/904029-what-steps-should-i-take-when-switching-resetting",2020-01-21 08:18:35,most_relevant,com.appgenix.bizcal +Family Matters,https://lh3.googleusercontent.com/a-/AOh14Gh71VMUgbRAVqPo3B4f8UzG5oKxPo5-0_KALnhn1C4,Loved it until they added cartoon ads. You'll be with a client and a video game comes up as you're scheduling their appointment. Makes us look very unprofessional.,1,0,2.37.9,2020-02-22 18:07:26,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-24 09:58:08,most_relevant,com.appgenix.bizcal +Dominik,https://lh3.googleusercontent.com/a-/AOh14GiFLXPaWFwTvgQyos1hrtfgxhSOBLo5Hb7qLVld,"5 up to 15 seconds are too much for staring at an add in an app that is listed under ""productivity"". Already expecting the lame excuse given to all the comments. Please rethink if you want to go the ""standard"" way you mention, or if a developer should try to give its best and attract users. I'm in favour of ads in free app versions, but this is too much!",1,0,2.37.9,2020-02-13 12:05:35,"Hi, please note, that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:33:24,most_relevant,com.appgenix.bizcal +Jeremy Miller,https://lh3.googleusercontent.com/a-/AOh14Ghdh3HGvdw24ySN7LgMOQg4eeNPCmc5u8XoeJXuLg,"Does not sync automatically. Very frustrating. Have to go in and ""Sync Now"" even though setting is set to sync every hour. Done with this app",1,0,2.37.9,2020-02-18 14:54:48,Please remember that BC doesn't have its own sync abilities and uses only those provided by Android. Therefore it cannot be responsible for the sync issues on your device. It might be a general sync problem and it could help to remove and re-add the account for sync in your Android OS Settings - Accounts & Sync.,2020-02-19 11:09:17,most_relevant,com.appgenix.bizcal +Chris Valleau,https://lh3.googleusercontent.com/a-/AOh14GiliKVv2o8v2SceL5Y9KlZF9grBC0tDO84AW8OnSq8,"DO NOT INSTALL THIS APP. I used to love it, but in the most recent update the advertisements have made it absolutely unusable. I am switching to google calendar and never looking back",1,1,2.37.9,2020-02-20 15:27:23,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-21 10:05:46,most_relevant,com.appgenix.bizcal +Tom Szczepanski,https://lh3.googleusercontent.com/a-/AOh14Gin0V4zCYQ2aQsOJJPcs9_aFOOnDWAlGMYW3MRMGg,Unskippable pop up video adds with sounds. Awful and completely inappropriate for 'business' as the name suggests. I shall look forward to deleting this app and avoiding this developer from now on.,1,0,2.37.9,2020-02-12 21:39:16,"Hi, please note, that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:33:58,most_relevant,com.appgenix.bizcal +Ian Smith,https://lh3.googleusercontent.com/-HQvp_46L__w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOrpx5j5jt25GTSmX4IYk1-bOqZZA/photo.jpg,The new full-screen video advertisements make the basic version of this app unusable. I'm looking looking for a replacement.,1,4,2.37.9,2020-02-15 00:11:59,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-17 08:37:00,most_relevant,com.appgenix.bizcal +Mike Morley,https://lh3.googleusercontent.com/a-/AOh14GgfwPKlHPmB41esJ9Q1qxI3V0HuFrr8A1OuoSRqKeY,Never responded to my original review in 2019 and the response to my latest review still doesn't answer the fact that any tasks that are recurring DO NOT show in calendar even though you sync this information.,1,1,2.37.9,2020-04-03 17:57:14,"Hi, where do you set up series? In Google Web Calendar? If so, this information cannot be synced right now, because Google didn't open the api for the function. No other app (bur Google) can adjust this parameter right now.",2020-04-06 13:32:32,most_relevant,com.appgenix.bizcal +Mika Ahosilta,https://lh3.googleusercontent.com/-239lO802TK0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN3C9PcdKu4cljdbMDvceCgFoVMAw/photo.jpg,Used to be good but started showing full screen ads even when the app is not open. Currently unusable.,1,0,2.37.9,2020-02-12 12:54:24,"Hi, please note, that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:34:35,most_relevant,com.appgenix.bizcal +Max Biegler,https://lh3.googleusercontent.com/-bHabrIQNTL8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP-GsunDdYbR-ZuLKg2u6Y4juxInw/photo.jpg,The pop-up advertisements make the free version impossible to use. I will be forced to change to a different app after years of use,1,2,2.37.9,2020-02-19 20:58:18,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-20 09:16:06,most_relevant,com.appgenix.bizcal +Mayank Jha,https://lh3.googleusercontent.com/-c0yPxhH4MCE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN_ixgIfDVNOTM9xWspCR3gVJhUZQ/photo.jpg,"I don't mind ads, but not those which run in full screen mode and cannot be closed by me.",1,0,2.37.9,2020-02-08 10:09:10,"Hi, please note, that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:37:20,most_relevant,com.appgenix.bizcal +Pil Own Electrik,https://lh3.googleusercontent.com/a-/AOh14GhWAo7MUsEMFzp2zmcd20f6q2gKdNiF46f7aiG9qg,Full screen ads you can't skip every time you add or edit an event !!!,1,1,2.37.9,2020-02-15 13:12:29,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-17 08:33:25,most_relevant,com.appgenix.bizcal +Lisa Cirell,https://lh3.googleusercontent.com/-DHhB-0MftAY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOMEUMVu7vQ84aIksH7wWN10s5N6Q/photo.jpg,NOT into your ads. I've had your app on my phone for YEARS. Uoure about to be deleted for a Google calendar. Sorry.,1,1,2.37.9,2020-02-28 06:15:41,"The free version is still functional as the ads appear only every 18 hours! It means it is 2/day, if you're unlucky. Otherwise you can use the app without any further disturbance. Please note, that this free version needs to be developed and maintained on the daily basis. This requires a lot of time and work. The ads help us maintain the software.",2020-02-28 09:26:51,most_relevant,com.appgenix.bizcal +Mark F,https://lh3.googleusercontent.com/a-/AOh14GgiOm1Dy-fRgXNuM-8Icm0l8x9ecjepqkt9hcEH6w,Full screen video ads! I can live with banner ads but not this.,1,1,2.37.9,2020-02-24 08:46:48,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-24 09:46:34,most_relevant,com.appgenix.bizcal +Luke Allport,https://lh3.googleusercontent.com/-_Ywm0GZWMRE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPOY5rl_NjgVvipwcQbmI30wfn9MA/photo.jpg,"Used this app for months with no issues but after most recent update it plays an ad every time I add a new event to my calender, awful",1,1,2.37.9,2020-02-07 19:32:14,"Hi, please note that the free version is not ad-free. The ads contribute to further development and maintenance of this version. If you don't want to receive any ads, you can consider the pro version, which is completely ad-free.",2020-02-10 09:04:42,most_relevant,com.appgenix.bizcal +Phantom Dragon Ranch LLC,https://lh3.googleusercontent.com/a-/AOh14GjfjOPPjS0MSxZN8-idbfetjpei3M4o6_uVyQ5_,App starts ads after 1 month and opens wanting paid every time after the first month.,1,0,2.37.9,2020-03-18 13:32:03,"The free version is still functional as the ads appear only every 18 hours! It means it is 2/day, if you're unlucky. Otherwise you can use the app without any further disturbance. Please note, that this free version needs to be developed and maintained on the daily basis. This requires a lot of time and work. The ads help us maintain the software.",2020-03-19 10:43:46,most_relevant,com.appgenix.bizcal +team little.,https://lh3.googleusercontent.com/-hYr9DQ60z9c/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPaOVH5ZF6W5F85-DZ2rOYq5Q3omg/photo.jpg,updated and the only thing new is ADS. deleting after years of use over multiple phones.,1,0,2.37.9,2020-02-19 20:57:16,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-20 09:16:11,most_relevant,com.appgenix.bizcal +Eric Bastian,https://lh3.googleusercontent.com/-V-PBkgEp88Y/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPcWFSSLtSz7B42Y-4CArWJbA_XKg/photo.jpg,Deleting. Was great. Now horrible. Bad move with the ads guys.,1,2,2.37.9,2020-02-17 16:55:19,"Hi, we avoided this solution for as long as it was possible. It is not the case anymore and we need to think about further development and maintenance of this version. However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-18 08:48:51,most_relevant,com.appgenix.bizcal +suresh kumar,https://lh3.googleusercontent.com/a-/AOh14GixHO4cxOJTp7etnlSwE9IZJN8DK3LCSyxQgj9m,I used past 5 years...Nice app .. But now More Advertisement ...so I uninstall the app..,1,0,2.37.9,2020-02-14 14:26:21,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-17 08:38:03,most_relevant,com.appgenix.bizcal +prime optimus,https://lh3.googleusercontent.com/-JdLTo0TY5UQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJORmSZJGVBhTR2j7wGaZUK5pkNguA/photo.jpg,"Waste of time, unusable cannot delete events",1,0,2.37.9,2020-03-06 18:19:48,"Hi, this is not true. You can naturally delete events (provided you are not attempting to delete read-only events).Just click on the event to open its details. There you will find the ""bin"" icon to delete the event.",2020-03-09 12:23:49,most_relevant,com.appgenix.bizcal +Tabu Zalez,https://lh3.googleusercontent.com/-aUOJXbtt7Ic/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNQ6RSalA4BGYNm_e9zmyOFdsCBwQ/photo.jpg,"Frustrating I brought the upgrade and none of the features show up NONE! No ""To Do"" tab, no widgets nothing. So someone get back to me and explain why the app isn't showing any of the features in your description.",1,18,2.37.2,2020-01-02 00:13:08,"Hi, did you app store unlock the pro license already? Please compare here: https://appgenix.uservoice.com/knowledgebase/topics/64105-pro-features +With any further setup problems please contact our support directly.",2020-01-02 13:47:54,most_relevant,com.appgenix.bizcal +Matthew Geiser,https://lh3.googleusercontent.com/a-/AOh14Gjpvpro3-q6-Ib8GnCrDEzomTM2DJcmgF_wEHprPg,Clicking the top bar on the day widget to open the standard view does not work anymore. I have mine set to month and it just keeps bringing up the day everytime. Please fix or I will use another app!,1,32,2.37.0,2019-12-17 11:09:10,"Hi, which day widget do you use? Day Pro Widget? Did you check the widget settings - general - tap on date in header starts - if month view is selected? Maybe your setting got changed? Do you have the stock launcher installed?",2019-12-18 09:14:14,most_relevant,com.appgenix.bizcal +Eric Hunt,https://lh3.googleusercontent.com/a-/AOh14GjQFQki8OKUkUuGBYPCiBOHmFX25eTabR39QJev,Ad heavy plus unable to use widget and stock calander app,1,0,2.37.9,2020-02-26 17:17:07,"Note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon. +The widgets are the special function of BC 2 and you can use them in relation the app they belong to.",2020-02-27 09:57:40,most_relevant,com.appgenix.bizcal +Rayee Roded,https://lh3.googleusercontent.com/a-/AOh14GjqKcUqxJM3G4_Sae64M9guzipFWzvrwhpjYYUqTZc,Too many long ads,1,0,2.37.9,2020-02-13 13:22:44,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:32:06,most_relevant,com.appgenix.bizcal +Current Events,https://lh3.googleusercontent.com/a-/AOh14Gjb-VCosnsvcAgACnIo0Ct2L8JvOnLIbK9l-P37FQ,Paid for the upgrade but the weather functionality doesn't work and moving between months inside the calendar is not intuitive. I'd like a refund please.,1,2,2.37.2,2019-12-29 02:35:03,"Hi, it looks like you didn't set the weather function correctly up. Please contact our support and they will help you with the setup. In the month view you scroll vertically to go to previous/next months: + +https://appgenix.uservoice.com/knowledgebase/articles/428537-using-the-month-view",2020-01-02 14:04:26,most_relevant,com.appgenix.bizcal +mindtricky,https://lh3.googleusercontent.com/-q2CILCwXUJE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNflmv1ZtKbzYU-AmW3-8gxOfXz-A/photo.jpg,Predatory ads killing it...,1,1,2.37.9,2020-02-24 11:49:51,"The ad appears only every 18 hours! It means it is 2/day, if you're unlucky. Otherwise you can use the app without any further disturbance. Please note, that this free version needs to be developed and maintained on the daily basis. This requires a lot of time and work. The ads help us maintain the software.",2020-02-25 12:26:37,most_relevant,com.appgenix.bizcal +Brian Pettit,https://lh3.googleusercontent.com/a-/AOh14GhQcToJKXb7oZ6EQ25wbxKLigQwC6D3_OjrsR8RKw,Ads ads ads.,1,0,2.37.9,2020-02-22 21:22:09,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-24 09:53:39,most_relevant,com.appgenix.bizcal +Francis C,https://lh3.googleusercontent.com/-c2GCOfaSfTw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM09HJ-_Kpur_tVIyIgH7nCXWWyJw/photo.jpg,Force feeds users with video ads after each entry.,1,1,2.37.9,2020-03-03 02:10:01,"The free version is still fully functional. The ads they appear only every 18 hours. It means it is 2 a day, if you're unlucky. Otherwise you can use the app without any further disturbance. Please note, that this free version needs to be developed and maintained same as the pro version. This requires a lot of time and work.",2020-03-03 10:31:31,most_relevant,com.appgenix.bizcal +R M Sharif,https://lh3.googleusercontent.com/a-/AOh14GgJ42xEp1mKZ91gFrAfdzt2enxFC9cbCAlQPmhtpA,It sync the Google Task once. Thereafter no more sync. Dissappointed.,1,0,2.37.2,2019-12-31 06:37:40,"Hi, did you set the account correctly up? https://appgenix.uservoice.com/knowledgebase/articles/901875-how-can-i-sync-my-google-tasks-with-bc-2",2020-01-02 13:50:34,most_relevant,com.appgenix.bizcal +Ondrej Uhričík,https://lh3.googleusercontent.com/a-/AOh14GhdDrK7u4PoMYdtO1-SqEUtsO4yOgdYNuvqphF_Ndk,Would you please add day and night mode for widgets that would sync with system's day and night status? Thank you,1,0,2.37.9,2020-02-05 07:16:51,"Feel free to post any of your suggestions in our user forum +https://appgenix.uservoice.com/forums/280499-business-calendar-2 + +where other users can vote and comment on it as well and we will take it into consideration for the future.",2020-02-05 10:01:16,most_relevant,com.appgenix.bizcal +Vikki Richardson,https://lh3.googleusercontent.com/-yYifdNBN-P8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNBxetOHxTChahfz_PKwQYBB78n_Q/photo.jpg,Paid for Pro version. Money taken. App is EXACTLY THE SAME as before payment. Scammed.,1,0,2.37.0,2019-12-27 11:09:25,"Hi, this is absolutely not true. Please note, that the pro functions are unlocked in the free app and you don't get to download any other extra software: https://appgenix.uservoice.com/knowledgebase/articles/1097137-i-paid-for-pro-but-i-didn-t-receive-it +Please also remember that the Play Store unlocks your license.",2020-01-02 14:19:03,most_relevant,com.appgenix.bizcal +Ryan Coley,https://lh3.googleusercontent.com/a-/AOh14GiXaEtpIujrVaULgZ9LFnFRcnT0Ddg69rDWzuMU2A,"Full screen ads ruin it all I've been using this since it was just ""business calendar"". It was still $7 back then so I wouldn't buy it but would click the ads every now and then. Now with the full screen ads it's practically unusable. Also, before the dev comes in with the stock ""the free version has ads"" response: no duh it has ads. We didn't pay for the app because its upfront cost is too high so we liked the corner ads. Now you force them to take over our screens. Uninstalled and 1-Star.",1,0,2.28.0,2020-03-08 17:54:23,"The free version is still functional as the skippable ads appear only every 18 hours! It means it is 2/day, if you're unlucky. Otherwise you can use the app without any further disturbance. Please note, that this free version needs to be developed and maintained on the daily basis. This requires a lot of time and work investment",2020-03-09 12:00:32,most_relevant,com.appgenix.bizcal +Daniele Orlandi,https://lh3.googleusercontent.com/a-/AOh14GiO-Vl5BHhs8eSn4hO_RnFS7laTlKk734Etd9sykg,Functionality for which I paid has been removed in Android 10. I AM SICK TIRED OF THIS STUFF GOING ON.,1,1,2.37.0,2019-12-25 22:17:49,"Hi, what do you refer to exactly?",2020-01-02 14:28:04,most_relevant,com.appgenix.bizcal +Dimitri Ajazi,https://lh3.googleusercontent.com/-jD-iTsDrw1M/AAAAAAAAAAI/AAAAAAAAPsM/AAKWJJNPNI9rZP64_nezQ23IOwu4HouI8Q/photo.jpg,"I uninstalled it within 20 minutes of paying for it. Its features don't work as hoped, especially font and color customization: the unpaid version advertised *presets*, aka themes. But they didn't exist in the Pro. This is on an Android 10, Oxygen 10.3.1 TMUS 1+6T. Developer, your 2020.3.3 reply makes no sense: it still doesn't take into account this *particular* phone or my specific terms. Here's to those themes in future releases, along with a dynamic icon, and the developer's professionalism.",1,0,,2020-04-03 16:54:28,"Hi, the themes are available in the PRO version no matter the device. Furthermore they can be adjusted by user as well. +We do not plan to integrated the dynamic icon. Take a look here: https://appgenix.uservoice.com/knowledgebase/articles/895509-how-can-i-make-the-app-icon-show-the-current-date",2020-04-06 13:36:00,most_relevant,com.appgenix.bizcal +Robert Pope,https://lh3.googleusercontent.com/-xoQrDIec3rI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPFpQBX-7aIFGsF4n9HoLIageLgfA/photo.jpg,I have been a subscriber of the pro version for years when this new version came out I tried it and there were problems. I tried it again and it seems to work well. I tried running with one alarm and now it dosen't stop when I acknowledge it I'm going back to the old version. I have removed pro 2 if the problem pesiststs I will have to find a new calendar. Very frustrated.,1,1,2.36.2,2020-03-21 15:14:24,"Hi, which app do you actually use? Can you contact our support for better communication?",2020-03-23 09:25:28,most_relevant,com.appgenix.bizcal +Zhi Min Lau,https://lh3.googleusercontent.com/a-/AOh14GhsEUrvObPiKTR0JBb0m96yDQ6MxQnFuKeG1F_Mfw,Don't bother installing this app. The free version is garbage. Recently the developer made the decision for inclusion of ads. The ads pop up every time you add an event to the Calendar. The developer has chosen to sacrifice usability of the app and consumer comfort in the rush to monetise the app. I have uninstalled it and will not be returning to the app again.,1,1,2.33.2,2020-02-26 05:16:14,"The ads appear only every 18 hours! It means it is 2/day, if you're unlucky. Otherwise you can use the app without any further disturbance. Please note, that this free version needs to be developed and maintained on the daily basis. This requires a lot of time and work. The ads help us maintain the software.",2020-02-26 10:08:34,most_relevant,com.appgenix.bizcal +Jeremy,https://lh3.googleusercontent.com/-McDyTIRxwJs/AAAAAAAAAAI/AAAAAAAAAII/AAKWJJPXQMHlSRV5nJpjGvhB5wcYk-Mfbg/photo.jpg,"I used to love this calendar, but now it has full screen ads/videos that take over your phone. Can't do anything else while the pop-up ad is running. First one of these I saw - UNINSTALLED!! ... Response: The ads definitely come up more than twice per day and the calendar is definitely NOT functional while the ads are running - you must wait for the commercial to end before you can open the calendar again. I can understand bar ads at the top or bottom of a free app, but full length commercials?!",1,1,,2020-03-03 14:45:54,"If you saw the ads more often, they clearly didn't come form our app. What is more you can skip our ads and they are set on silent per default. Please note, that this free version needs to be developed and maintained on the daily basis. This requires a lot of time and work. The ads help us maintain the software.",2020-03-04 08:56:32,most_relevant,com.appgenix.bizcal +K B,https://lh3.googleusercontent.com/a-/AOh14Gh1pPy8qX7cDMxqUx0nuWgRCmTKzVtgsA3bVjux,"I used to like, even love this app. It was great. Now though, every time I add an event on my calendar an ad comes up and stays there until it is finished. It's awful! So far the ads have not been inappropriate, just annoying. I don't think that going to the pro version would fix this. I don't even know how to find the pro version to purchase as it doesn't show up in the play store. Super frustrating. I don't want to find another app. I just want this one to work without the silly ads.",1,0,,2020-02-12 00:11:56,"Hi, please note, that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:35:07,most_relevant,com.appgenix.bizcal +Tegan Martin,https://lh3.googleusercontent.com/a-/AOh14GjFV-V6KJUWQo5gH39jfi623zTok2cCoxVcBatF,"I paid for this app, and it was a wonderful app, easy platform, customisable. BUT, there has been a recent addition of ads. All the time! For an app I have paid for I think this is disgusting. I response to you, no these aren't spam events linked to my phone. I uninstalled this app and used my original paid version of the called app and there are no ads. I was prompted to update to this version a while ago. I thought it was just an ad on from the paid version of business calendar I had.",1,0,2.15.1,2020-02-21 10:44:25,"So you unlocked the pro functions in BC 2 by keeping old BC 1 installed. Was the old app installed at all times? Only then the pro functions will be continuously unlocked in BC 2 without any charge. If you uninstall BC 1(which you have the pro license for), the pro in BC 2 can't be unlocked and you practically use the free app, which is not ad-free",2020-02-24 10:23:05,most_relevant,com.appgenix.bizcal +Kymmi C.,https://lh3.googleusercontent.com/a-/AOh14GhgmvehTEvdLIlqnH_IydYiHehuhrIIuPWwoaZq,I use the Pro version. But What happened to the option to purchase holidays? My Christian and Jewish holidays don't show up anymore.,1,0,2.37.2,2020-02-29 13:07:39,"Hi, there is no option to purchase these holidays in BC 2 calendar app. You must refer to another (content?) app. If it is the case, please make sure your device syncs correctly, so that you can view those calendars in BC 2.",2020-03-03 10:44:48,most_relevant,com.appgenix.bizcal +Pavel Szkandera,https://lh3.googleusercontent.com/a-/AOh14GgZD6bCLeqTAScV8pJk-R4cZbxW4ZlT1vVnZj9Q9w,"Advertising.. Everywhere now, so bye bye",1,0,2.37.9,2020-02-14 12:29:18,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-14 13:44:31,most_relevant,com.appgenix.bizcal +chi mak,https://lh3.googleusercontent.com/a-/AOh14GgHtebWQCE31ngz4Y_RAaq1vqcQuha7O2wt4EC8,"Do not download this app. There are Ads everything you use i (as of Feb 26, 2020), despite what the developer says about the ""18 hour"". Just read other reviews and you'll see that the intrusive Ads have killed this free app. Look for another similar app",1,0,,2020-02-27 14:25:28,"Hi, we avoided this solution for as long as it was possible. It is not the case anymore and we need to think about further development and maintenance of this version. This kind of advertisement is a standard right now in the free apps. If you don't want to receive any ads, you can consider the pro version, which is completely ad-free.",2020-02-28 09:27:12,most_relevant,com.appgenix.bizcal +Lance Hoag,https://lh3.googleusercontent.com/a-/AOh14GjRmyZW0g2tvV9_b3aUuqn6aol7RU3lZsN_hSnC,"Best free calendar is now unacceptable with full audio, full screen video ads. The price to avoid the ad mugging is ridiculously too much. Uninstalled and looking for another.",1,0,2.35.1,2020-03-11 22:19:46,"Hi, the ads are set on silent per default and are also skippable. Please update your app to the latest version.",2020-03-12 08:47:34,most_relevant,com.appgenix.bizcal +Gallopiton,https://lh3.googleusercontent.com/-W28ulpY1LMA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNo5wnR9ewQKg_EX-FqWgoE8PMWFA/photo.jpg,"The app per se is good. Sadly the customer service when you have an issue is no where to be found. For about a month i have sent emails since the app after an update went back to basic, even after paying the pro version about 3 years ago. No help has been provided after all this time. In my view, you can make it or break it when you take care of your paying customer or ignore him. It seems like they dont see it that way. Perhaps now they will pay attention.",1,10,2.36.2,2019-10-11 15:05:23,"Hi, the problem is not caused by the app. It is Play Store which unlocks your licenses. For solution please take a look here: https://appgenix.uservoice.com/knowledgebase/articles/908211-i-paid-for-the-app-but-i-lost-the-pro-features",2019-10-14 11:03:50,most_relevant,com.appgenix.bizcal +Rafael Magana,https://lh3.googleusercontent.com/a-/AOh14GhVh680TPCaQG8EdlbMS2bo0rv40iILnaEDyDxu,"Wow. Had a 30 second ad that gave me the uninstall this app command. I used to like the 1st but eventually moved to the 2nd but after that atrocious ad, I uninstalled and used google calendar which the widget is not as nice but works great.",1,0,2.21.0,2020-02-12 22:25:19,"Hi, please note, that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:33:53,most_relevant,com.appgenix.bizcal +Lior Shoval,https://lh3.googleusercontent.com/a-/AOh14GiADunh84QWAVKCnqUc-gEjg0EpaKo-5YdodbUH,"Those fullscreen ads made me uninstall it after years of using it happily. Bye. Won't come back. My response: Or, you know, I can simply use another calendar app that's free and has no ads.",1,0,2.26.2,2020-03-03 10:51:12,"The free version is still functional as the ads appear only every 18 hours! It means it is 2/day, if you're unlucky. Otherwise you can use the app without any further disturbance. Please note, that this free version needs to be developed and maintained on the daily basis. This requires a lot of time and work. The ads help us maintain the software.",2020-03-04 08:57:05,most_relevant,com.appgenix.bizcal +Alvin,https://lh3.googleusercontent.com/-JR1lFVlQBOI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPDLP0p5COOg4EnKVSzkF1t2VHwtg/photo.jpg,"Been using this app for years, This app called itself business calendar but now includes popups which blasts the speaker at full volume. How am I supposed to use this app during BUSINESS MEETINGS?? Like the others who gave their feedbacks, guess it's time we move on to another calendar app like OneCalendar which dosent have ads",1,0,2.35.1,2020-03-02 03:47:34,"The free version is still fully functional. The ads they appear only every 18 hours, which is 2/day, if you're unlucky. Otherwise you can use it without any further disturbance. Note, that this free version needs to be developed and maintained same as the pro. This requires a lot of time and work. The ads help us contiune supporting the version.",2020-03-03 10:37:03,most_relevant,com.appgenix.bizcal +Janice White,https://lh3.googleusercontent.com/a-/AOh14Gj8r99KdLvtjjmcGB5JYT_3b1GfFYc3Z22Pv9T1fw,Ads interrupt you while adding items to your calendar. This app used to have a banner for ads at the bottom which was fine. Now the ads are annoying and timed. Reply to developer: No thanks. I rather uninstall your app completely. 👌,1,0,,2020-02-24 15:26:21,"The ads appear only every 18 hours! It means it is 2/day, if you're unlucky. Otherwise you can use the app without any further disturbance. Please note, that this free version needs to be developed and maintained on the daily basis. This requires a lot of time and work. The ads help us maintain the software.",2020-02-25 12:24:49,most_relevant,com.appgenix.bizcal +Jarone Gittens,https://lh3.googleusercontent.com/-DpbQWMMOV0g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNZG9MgW9QM9_Agd5BBALzjiaVKUg/photo.jpg,"The free version has HORRIBLE ADS. Other than that, the app is marginally better than Google's free calendar app that had no ads... It was an easy decision to uninstall and go back to Google calendar.",1,0,2.35.1,2020-02-16 13:34:28,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-17 08:25:08,most_relevant,com.appgenix.bizcal +Rahul Pathare,https://lh3.googleusercontent.com/a-/AOh14GjpgIPuLD4NLXkr0oMDt0KqhDSWj_P9M5ncjey4Pw,"Doesn't popup reminder anymore with Android 10 update. & Revert by support claiming its purely Android 10 issue isn't true... There are apps which continue to have pop-ups (shared with developer, who refuses to acknowledge this & only give defense of Android issue)",1,0,,2020-02-03 13:21:43,"Hi, the apps, that can ask the phone call permission, can show popups. Those are the only exception to the general Android 10 rule. BC cannot ask this permission and complying with Android 10 cannot shop popups automatically as most of the Android apps. You can still open it manually. The support provided you with the correct and true information.",2020-02-04 11:46:26,most_relevant,com.appgenix.bizcal +Ramona Willig,https://lh3.googleusercontent.com/-V0oV3Afmzuc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMRyNiNhwStLiGrn_hGrO-Kw9MjhQ/photo.jpg,"My Google Account didn't sync, so I had to delete it and add it anew. Now everything's gone. No backup possible, no export. I loved the app and would love to have it for iphone as well. But not being able to back up any data is pretty annoying. I'm super disappointed, all my appointments are gone!",1,0,2.36.2,2019-12-28 00:02:11,"Hi, you can both sync or export your calendars to back your data up. Please note, that i is necessary to perform manual backup before any action. If you data is not synced properly for example, you may not be able to recover it without a local copy nor will it be possible to make such after the sync. + +IOS: For the moment BC is an Android app only",2020-01-02 14:11:30,most_relevant,com.appgenix.bizcal +R Stokhof,https://lh3.googleusercontent.com/a-/AOh14Gi_HfwlYAofMVfZZ2eRzI5q-nYfjRiArXYJy4ZUHw,Reminder works but I scroll down from top I see the correct items !bc not Google! . If I open I see some old reminders... Sometimes they update. Mostly NOT.... Pls solve the problem once and for all. It must have something to do with cache in the app itself... Not a Google calendar issue... Btw; bad support on mail.. No or useless response!!,1,1,2.36.2,2019-10-30 22:44:13,"Hi, the order of the reminders depends on the time of the event. This is correct and intended behavior. If you don't dismiss your reminders, you will always see old and new reminders.",2019-10-31 11:06:12,most_relevant,com.appgenix.bizcal +D M,https://lh3.googleusercontent.com/-kkjS9CbyiwQ/AAAAAAAAAAI/AAAAAAAA300/AAKWJJNZMPPEJtnes4F5UhcPrGhMO_obZQ/photo.jpg,"Whenever creating a new event, it doesn't use the calendar's default reminders, which Google Calendar does, so I have to use Google Calendar to add new events. This kind of defeats the purpose of having this app installed. Also, constant popups nagging to buy premium. I'd buy premium to improve my experience, not to make it more bearable.",1,28,2.36.2,2019-11-02 19:33:29,"Note, that those reminders need to be synced. They'll be added once you save the event and let your device sync. You can also set a standard reminder in settings - standards.. - events - reminder. + +There is ONE upon installation and is purely informative. You're not forced to buy. The free version is perfectly functional as well.",2019-11-04 10:15:35,most_relevant,com.appgenix.bizcal +Jennifer Giacometto,https://lh3.googleusercontent.com/-ss323hGX1lE/AAAAAAAAAAI/AAAAAAAACXY/AAKWJJNgkH-XrS5cL_pHIySOUAiiRw7ueg/photo.jpg,"I used to love this... now on my phone it's oddly presenting and tasks are worthless, no syncing, and just too much work. Seems to have been since last update. Support I was given was also unhelpful. Went into actual google calendar and realized it hadn't been syncing for 3 plus weeks Uninstalled. Reinstalled. Half way working but now its showing I dont have premium (wrong) and wont let me access. 6 hours now... big ""pro' stamped across app. We shall see how long until my next contact.",1,0,,2019-12-28 08:30:37,"Hi, please note, that the app is not responsible for the sync issues on your device. The sync is done by Android and not BC. Therefore the reinstallation could not have helped. In such cases you need to re-add the affected account to trigger the sync. As for the pro, see here: https://bit.ly/2FeD3UN",2020-01-02 14:08:25,most_relevant,com.appgenix.bizcal +Shafraz Thawfeek,https://lh3.googleusercontent.com/a-/AOh14GiEMWsmnDMrJFlA8nLqpOBsNeCaanHXxxlXOC2yxQ,"If leaving a negative review is the only way to grab the attention of their non-responsive support team, then so be it. I purchased business calendar because of its outlook calendar sync feature, however the calendar requires an existing outlook account on the phone. I wanted a standalone outlook connector - One calendar app does a fine job there, this one fails. I asked for a refund the same day, and sent follow up emails too, but thus far no response. Useless support, don't deserve stars.",1,6,2.36.2,2019-11-05 02:51:42,"Hi, please note, that the app does not have its own sync functions and uses only those provided by your device. It is therefore not responsible for the sync process on your device. Here's how you sync with Outlook: +https://appgenix.uservoice.com/knowledgebase/articles/955654-i-see-my-outlook-events-in-the-outlook-app-but-no",2019-11-05 12:31:00,most_relevant,com.appgenix.bizcal +Nicoleta Phaff,https://lh3.googleusercontent.com/a-/AOh14GjstMdMYmbQUGTD7bd9d7pXeAjGkWSTtUmMHofEdA,"I've been using this app for a month now, everything was fine until today when I opened it to change something, and it deleted all my data, from the app and from the phone calendar too. I'm highly disappointed and really upset since I lost all my data.",1,3,2.36.2,2019-11-16 15:44:04,"Hi, the app cannot delete any data on its own. Please take a look here: https://appgenix.uservoice.com/knowledgebase/articles/1912096-my-calendar-data-is-suddenly-gone-how-can-i-recov",2019-11-18 10:07:55,most_relevant,com.appgenix.bizcal +Star Stars,https://lh3.googleusercontent.com/-JyhlHbauKTA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMobtN-nhsEvssPOgXQi1Esd-mTAg/photo.jpg,Why do you say that you can disable permissions at any time but then the app DOESN'T WORK AT ALL if you do? Why have an app on your phone that you will never use? I have disabled the Google app on my phone for a reason. It's gone completely psycho generating up to three completely nonsensical events and associated 6 reminders every week. The only way to stop it was to completely disable it. Why do you think I was looking for a calendar app to begin with? Why do you need another calendar app in,1,12,2.36.2,2019-10-10 18:10:04,"Hi, do you refer to the ""calendar storage"" permission? This permission is obligatory for a calendar app to work properly. This applies not only to BC. Please note, that your events are stored in the calendar storage. Without the access to it your app can'r display or save data.",2019-10-14 11:06:05,most_relevant,com.appgenix.bizcal +florin ciovica,https://lh3.googleusercontent.com/-jckleYf3-M8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNHMeXLHtYLngi5_2cUth01_1owGg/photo.jpg,Since you have put advertisements in app i say goodbye.. On top of that an update came up and isn't possible to view description of booked day unless you click on it. Disappointed.,1,0,,2020-02-18 09:25:01,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-18 13:22:27,most_relevant,com.appgenix.bizcal +MV C,https://lh3.googleusercontent.com/a-/AOh14GjZsL8K_b3tFr_TLYLFetGxYZTCVaul9_OSfL_c,NOTE TO SELF::: I did find an app that does not need my personal details in order to function. EDIT::: It is clear that the developers of this app have absolutely no idea what they're doing because their app DID request a password from me; a password I was not willing to give. I don't care that they are calling me a liar. I am not asking anybody anything - I am merely telling prospective clients what I experienced with this app and to be careful. There are more secure apps available out there.,1,0,2.36.2,2019-11-16 08:33:12,"BC does not require any passwords. All that is necessary is the calendar storage permission which is common for all calendar apps. If you could mind your language, it would be greatly appreciated.",2019-11-15 11:05:33,most_relevant,com.appgenix.bizcal +Delano Sherley,https://lh3.googleusercontent.com/-TVWSmV4v6MU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPzhFT1sJ0Azf-23U8lhdkcxHRM9A/photo.jpg,"I loved this app for years, but for the last 3 months (ever since I got a Samsung Note 10 plus) it duplicates every entry, puts some events on the day before or after, and shows every event as a birthday.",1,0,2.36.2,2019-12-14 22:23:39,"Hi, we've been already investigating the behavior and it is caused by Samsung. It will help to remove and re-add the affected account for sync in your Android system settings - accounts.",2019-12-16 08:38:49,most_relevant,com.appgenix.bizcal +Cain Cross,https://lh3.googleusercontent.com/a-/AOh14GimU0vNJZxyRybqPbM308a29rsUp6EzafFdIzhdOQ,"So, 2 (almost 3) years ago I purchased the pro version of this app. At the time, that unlocked access to all present and future ""pro"" aspects. Now, however, after a long list of changes, the fact that I have already paid for this app and been using it for years doesn't seem to matter. I'm now constantly being asked to repurchase a product I already own. To add insult to injury, features that used to be standard (drag & drop) are now a pro feature, that I should already own, cost $6.99 and up.",1,4,2.34.2,2019-07-09 23:24:08,"Hi, please consider that it is the Play Store that unlocks your license. There is probably a temporary error. Please see here how to resolve: https://appgenix.uservoice.com/knowledgebase/articles/908211-i-paid-for-the-app-but-i-lost-the-pro-features",2019-07-10 11:34:48,most_relevant,com.appgenix.bizcal +Ooma Chasooma,https://lh3.googleusercontent.com/a-/AOh14GidAt3V2r7cIV7W42RmjGjVEiCBNhaNSqaD5h7FnA,"Compared to version 1 - poor. Allows for editing one entry of (for example) a weekly appointment, but rather than edit the one instance (as you think you are doing) it creates a new one, so you have a double entry, the original which you can't delete, even after synching. If you've set weekly appointments and one is cancelled, you should be able to edit that one instance without creating a duplicate. I've had this installed for some time now, thinking that the developers would resolve these problems, but although the app has regular 'updates', nothing has changed. Drag and drop defaults to copy, imo should be 'move' by default. If you change an appointment it changes, not duplicates. Also the interface and look (big text and colours) looks like a children's calender, while the original version actually looked quite professional.",1,0,2.31.2,2018-10-25 19:51:22,"Please note that BC 1 and BC 2 are two separate apps and should be treated so (also in rating). As for the series please refer here: https://appgenix.uservoice.com/knowledgebase/articles/359224-i-would-like-to-edit-or-delete-a-single-event-of-a +You can change the behavior of the drag& drop functions as well as set up personalized colors and more.",2018-10-26 08:50:26,most_relevant,com.appgenix.bizcal +Godwin Kanongovere,https://lh3.googleusercontent.com/a-/AOh14GjkJ9q_dIguBHRalesFYfGVaAojYPKs25LCMyuJHQ,"The features and functionality are pretty good, with support for Google Tasks. BUT the homescreen widget doesn't load at all on Android 9 after restarting the device. One has to remove it and reinstall it, which is a pain. AND the support team was not helpful at all. They went from suggesting a solution which suggested they didn't understand their own app to being completely unresponsive.",1,0,2.32.2,2019-01-31 08:24:37,"Hi, sorry to hear you feel this way. We checked the conversation history and the support correctly forwarded the information to the developers. Please consider, that the matter needs to be investigated and reproduced before we are able to provide solution. The developers are working on it.",2019-01-31 11:26:26,most_relevant,com.appgenix.bizcal +Айрат Сабитов,https://lh3.googleusercontent.com/a-/AOh14GjZDsdwj9NoKMFnJdJyueWCYBLygjFgexjzb-lPPw,"Spam, malware. Adds scamming events to your calendar. UPD: No, it came from your app. I never had this problem, for 5+ years, but after installing THIS application I do.",1,2,2.36.2,2019-12-02 12:37:52,"This is a coincidence. Please note that it is your Android device which sync calendar data and not BC. + +This kind of information absolutely DOES NOT come from BC. It must have been synced to your calendar. Take a look here: https://lifehacker.com/how-to-keep-spam-out-of-your-google-calendar-1835810050",2019-12-02 13:19:07,most_relevant,com.appgenix.bizcal +Tammy Ng,https://lh3.googleusercontent.com/a-/AOh14Gi1EOUpNujx48sxidhN53i_KruS9cEPZFjsBavc0A,"I regret using it. Well, the apps itself is fine, I have used it for over 6 months. It's easy to navigate. It's not ideal but understandable to have the export calendar function as a pro feature. But then, my phone malfunctioned and I was unable to access this apps. There is no online syncing or a web version so that I can refer back to. edit: I have try the syncing method in FAQ. Most of my calendars are local calendars which I fail to sync or switch them to Google calendar.",1,0,2.33.2,2019-05-20 11:53:37,"Hi, please contact our support and they will tell you how to set up. +Of course you can sync your data using the built in Android sync functions. All you need to do is to set your device correctly up. If you are using the calendar locally, you can back it up manually with the functions provided. The app itself doesn't store any private user data.",2019-05-21 09:26:55,most_relevant,com.appgenix.bizcal +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"ive been using the pro version of this app for over two years and its been great. But, now it doesn't alert me to events. I have changed all the settings in the app and Android to allow alerts and I have adjusted the battery settings to allow background activity by the app, but still no alerts. The alerts only work when I open the app. pointless!",1,2,2.33.0,2019-02-27 08:51:46,"Hi, there are numerous settings which can influence the reminders. Please take a look here: https://appgenix.uservoice.com/knowledgebase/articles/1827433-why-are-my-reminders-not-working",2019-02-27 12:00:26,most_relevant,com.appgenix.bizcal +A H,https://lh3.googleusercontent.com/-DjimlFW-e9k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPYn0JrmhPfy0H71_jYujhoK7AQTw/photo.jpg,"Suddenly not free. Been using for years. Now I just had to pay to stay ad-free. I did not want the extras of ""pro"" I just wanted the app I was using to continue to do what it was doing and not show ads. Should have found a way to disable ads for grandfathered users without access to other features. Wish I hadn't paid it half asleep. I'd find a new app instead.",1,0,,2019-10-07 19:53:28,"Hi, the problem is not caused by the app. It is Play Store which unlocks your licenses. For solution please take a look here: https://appgenix.uservoice.com/knowledgebase/articles/908211-i-paid-for-the-app-but-i-lost-the-pro-features",2019-10-14 11:21:04,most_relevant,com.appgenix.bizcal +Jayendran Ramani,https://lh3.googleusercontent.com/a-/AOh14Gg7XwhzvYmfglJbwEmgNQvC7U52vENKyrs4y2qY3lk,"Purchased, but a disappointment. After phone boot, the widget is all black until it completely loads; and is annoying! Ideally, the developer should cache calendar entires to prevent such issues, and refresh once the app is fully up and functional. The issue is prominent with Nova Launcher on Oreo 8.1 on TugaPower ROM for the OnePlus One.",1,1,2.31.1,2018-09-26 11:42:55,"Hi, if you have a custom rom, there isn't much we can do about it. Please note, that the app is tested on official Android releases.",2018-09-27 08:43:26,most_relevant,com.appgenix.bizcal +TLWW,https://lh3.googleusercontent.com/a-/AOh14Gi8y6NIMM8MwVz6OD6ZKUcMOup0EkdMPRAktrfwWaA,"For what I needed, it wasn't good enough. I was going to have to buy the pro version to truly enjoy it. Too bad, had a lot of potential.",1,0,,2020-01-08 04:42:30,"Hi, what are the problems that you experience with the app? Do you look for any particular functions?",2020-01-09 10:07:27,most_relevant,com.appgenix.bizcal +Mike Morley,https://lh3.googleusercontent.com/a-/AOh14GgfwPKlHPmB41esJ9Q1qxI3V0HuFrr8A1OuoSRqKeY,Never responded to my original review in 2019 and the response to my latest review still doesn't answer the fact that any tasks that are recurring DO NOT show in calendar even though you sync this information.,1,1,2.37.9,2020-04-03 17:57:14,"Hi, where do you set up series? In Google Web Calendar? If so, this information cannot be synced right now, because Google didn't open the api for the function. No other app (bur Google) can adjust this parameter right now.",2020-04-06 13:32:32,newest,com.appgenix.bizcal +Dimitri Ajazi,https://lh3.googleusercontent.com/-jD-iTsDrw1M/AAAAAAAAAAI/AAAAAAAAPsM/AAKWJJNPNI9rZP64_nezQ23IOwu4HouI8Q/photo.jpg,"I uninstalled it within 20 minutes of paying for it. Its features don't work as hoped, especially font and color customization: the unpaid version advertised *presets*, aka themes. But they didn't exist in the Pro. This is on an Android 10, Oxygen 10.3.1 TMUS 1+6T. Developer, your 2020.3.3 reply makes no sense: it still doesn't take into account this *particular* phone or my specific terms. Here's to those themes in future releases, along with a dynamic icon, and the developer's professionalism.",1,0,,2020-04-03 16:54:28,"Hi, the themes are available in the PRO version no matter the device. Furthermore they can be adjusted by user as well. +We do not plan to integrated the dynamic icon. Take a look here: https://appgenix.uservoice.com/knowledgebase/articles/895509-how-can-i-make-the-app-icon-show-the-current-date",2020-04-06 13:36:00,newest,com.appgenix.bizcal +Johnny Carriere,https://lh3.googleusercontent.com/a-/AOh14GjEitACY11pt7voAgkeiIzG1_E5tMUR26Sjftfor2U,Nope. Nope. Nope.,1,0,2.37.9,2020-04-02 03:06:39,What are the problems that you experience? Do you have any technical issues with the app or do you maybe look for a particular function?,2020-04-02 11:11:07,newest,com.appgenix.bizcal +damir jovetic,https://lh3.googleusercontent.com/-j2pO1d0sPKM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOA5qM1tPA-PoNljHoJW-9S4WWdGA/photo.jpg,bad. avoid,1,0,,2020-04-01 13:22:00,What are the problems that you experience? Do you have any technical issues with the app or do you maybe look for a particular function?,2020-04-02 11:15:38,newest,com.appgenix.bizcal +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"🔥 UPDATE: Only manual sync works. Down to 1 🌟 until you fix this. Best calendar out there! Love it! It looks great, works flawlesly, erganomics & ease of use is absolutely outstanding and I'm sure it tastes good as well if you could eat it!",1,0,2.37.9,2020-03-30 08:28:14,"Hi, remember that BC doesn't have its own sync abilities and uses only those provided by Android. Therefore it cannot be responsible for any sync issues you may have on the device. It is most probably a general sync problem and it could help to remove and re-add the account for sync in your Android OS Settings - Accounts & Sync.",2020-03-30 08:42:59,newest,com.appgenix.bizcal +Samar Inam Khan,https://lh3.googleusercontent.com/a-/AOh14Gj_SgXYgeqmIpAgbGttarKSimGh3e5ZvGlvqLU_,"Using the app since years, now whenever open the app, trying to save an entry, full page advertisement opens for atleast 30 seconds causes missing what more to enter on different dates, this app is at its worst",1,1,2.37.9,2020-03-28 19:45:44,"The free version is still functional as the skippable ads appear only ONCE every 18 hours! Otherwise you can use the app without any further disturbance. Please note, that this free version needs to be developed and maintained on the daily basis. This requires a lot of time and work. The ads help us maintain the software.",2020-03-30 08:46:24,newest,com.appgenix.bizcal +Daniel Wagner,https://lh3.googleusercontent.com/-JFtH7M8xW7E/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO1BveaUMC3It3n0x923eXQc2VF4A/photo.jpg,This used to be a very good calendar app with plenty of good features in the free version already. Unfortunately they introduced intrusive full-screen ads recently to force you into buying the premium version. I'll rather switch to another calendar app than be blackmailed like that.,1,0,2.37.9,2020-03-24 13:33:08,"The free version is still functional as the ads appear only every 18 hours! It means it is 2/day, if you're unlucky. Otherwise you can use the app without any further disturbance. Please note, that this free version needs to be developed and maintained on the daily basis. This requires a lot of time and work. The ads help us maintain the software.",2020-03-24 15:49:37,newest,com.appgenix.bizcal +Thepparit B,https://lh3.googleusercontent.com/-7Z_fcaOaRrQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMh_S4p1SkNJh-XfFddZdufSD1p-Q/photo.jpg,"if you don't stop to force ads clip watching, bye bye.",1,0,2.37.9,2020-03-23 00:07:27,"The free version is still functional as the skippable ads appear only every 18 hours! It means it is 2/day, if you're unlucky. Otherwise you can use the app without any further disturbance. Please note, that this free version needs to be developed and maintained on the daily basis. This requires time and work. The ads help us maintain the software",2020-03-23 09:21:43,newest,com.appgenix.bizcal +Robert Pope,https://lh3.googleusercontent.com/-xoQrDIec3rI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPFpQBX-7aIFGsF4n9HoLIageLgfA/photo.jpg,I have been a subscriber of the pro version for years when this new version came out I tried it and there were problems. I tried it again and it seems to work well. I tried running with one alarm and now it dosen't stop when I acknowledge it I'm going back to the old version. I have removed pro 2 if the problem pesiststs I will have to find a new calendar. Very frustrated.,1,1,2.36.2,2020-03-21 15:14:24,"Hi, which app do you actually use? Can you contact our support for better communication?",2020-03-23 09:25:28,newest,com.appgenix.bizcal +Ana Delevska,https://lh3.googleusercontent.com/a-/AOh14GiuDwDGSkB5vBEcigdfI9FH0Ekv_ueEZiGQekyP8w,"Used to love it, now it's been an issue after issue with this app. You'd expect that it would perform at least the basic task of reading my calendars. Doesn't even do that anymore, no matter how many times I try to sync it. So much for getting the ""premium"" version. Disappointing.",1,0,2.37.9,2020-03-19 20:38:20,"Hi, are the calendars activated in calendars & task lists - color box icon? Did you set the sync on your device correctly up?",2020-03-20 09:02:44,newest,com.appgenix.bizcal +Phantom Dragon Ranch LLC,https://lh3.googleusercontent.com/a-/AOh14GjfjOPPjS0MSxZN8-idbfetjpei3M4o6_uVyQ5_,App starts ads after 1 month and opens wanting paid every time after the first month.,1,0,2.37.9,2020-03-18 13:32:03,"The free version is still functional as the ads appear only every 18 hours! It means it is 2/day, if you're unlucky. Otherwise you can use the app without any further disturbance. Please note, that this free version needs to be developed and maintained on the daily basis. This requires a lot of time and work. The ads help us maintain the software.",2020-03-19 10:43:46,newest,com.appgenix.bizcal +Zulkifli Zakaria,https://lh3.googleusercontent.com/a-/AOh14GgJ9EMp59kF_nEB_IHQ9x-UeuKR8Pv9aIaQevwWQg,It always reactivate calendar from all google account on the device and show it eventhough I have untick it in the calendar & task list. Calendar is full with unneeded event and the essentials wont show.,1,0,2.37.9,2020-03-17 22:09:11,"Hi, are they activated in other calendar apps you may have installed on your device? Please note, that all of them use the same calendar storage (where the information about active calendars is stored) and that is why your calendars may get activated.",2020-03-18 08:33:30,newest,com.appgenix.bizcal +Lance Hoag,https://lh3.googleusercontent.com/a-/AOh14GjRmyZW0g2tvV9_b3aUuqn6aol7RU3lZsN_hSnC,"Best free calendar is now unacceptable with full audio, full screen video ads. The price to avoid the ad mugging is ridiculously too much. Uninstalled and looking for another.",1,0,2.35.1,2020-03-11 22:19:46,"Hi, the ads are set on silent per default and are also skippable. Please update your app to the latest version.",2020-03-12 08:47:34,newest,com.appgenix.bizcal +Marvin Wei-Chao Kao,https://lh3.googleusercontent.com/-h1aOMqQMo94/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNHWISKOmCk316PScDQ81RwbzD6Kw/photo.jpg,"Ads with free apps are acceptable, but fullscreen & non-skippable ads blocking the entire screen for 20 seconds are NOT. Awful user experience. Google has recently removed 600 Android apps from Play Store because of disruptive fullscreen ads, this app may be the next one to be removed. Not recommended.",1,1,2.37.9,2020-03-11 12:11:20,"The free version is still functional as the skippable ads appear only every 18 hours! It means it is 2/day, if you're unlucky. Otherwise you can use the app without any further disturbance. Please note, that this free version needs to be developed and maintained on the daily basis. This requires a lot of time and work.",2020-03-11 14:31:23,newest,com.appgenix.bizcal +Tracy Biel,https://lh3.googleusercontent.com/-tVeXSrtyzdc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNyQlQfhsYO6o5pPOiLKTA2TUA8yg/photo.jpg,"Awful! At one point, I bought the Business Calendar 2 app, and I the update has ads. I'm supposed to purchase the newest version? Yeah, no thanks.",1,0,2.37.9,2020-03-09 02:34:27,"Hi, we avoided this solution for as long as it was possible. It is not the case anymore and we need to think about further development and maintenance of this version. This kind of advertisement is a standard right now in the free apps. If you don't want to receive any ads, you can consider the pro version, which is completely ad-free.",2020-03-09 11:59:09,newest,com.appgenix.bizcal +Ryan Coley,https://lh3.googleusercontent.com/a-/AOh14GiXaEtpIujrVaULgZ9LFnFRcnT0Ddg69rDWzuMU2A,"Full screen ads ruin it all I've been using this since it was just ""business calendar"". It was still $7 back then so I wouldn't buy it but would click the ads every now and then. Now with the full screen ads it's practically unusable. Also, before the dev comes in with the stock ""the free version has ads"" response: no duh it has ads. We didn't pay for the app because its upfront cost is too high so we liked the corner ads. Now you force them to take over our screens. Uninstalled and 1-Star.",1,0,2.28.0,2020-03-08 17:54:23,"The free version is still functional as the skippable ads appear only every 18 hours! It means it is 2/day, if you're unlucky. Otherwise you can use the app without any further disturbance. Please note, that this free version needs to be developed and maintained on the daily basis. This requires a lot of time and work investment",2020-03-09 12:00:32,newest,com.appgenix.bizcal +John Whiteman Jr,https://lh3.googleusercontent.com/a-/AOh14GiSRzNVzw54yzvpRbMHEPK34TifSk2byeXqMBH0pA,"Use this app every day and used to totally love it. But in the last month or so they have allowed full-page video ads to take over the screen. The only way to get rid of them is to force close the app, which I now do repeatedly. Can't continue like this! Totally unacceptable. What the heck could they possibly have been thinking. Downright stupid business decision. Looking hard for another app to replace this one as soon as I can. It was nice while it lasted.",1,1,2.37.9,2020-03-07 16:38:39,"Hi, we avoided this solution for as long as it was possible. It is not the case anymore and we need to think about further development and maintenance of this version. The ads are skippable and they appear only ONCE every 18 hours. Otherwise you use your app without further disturbance.",2020-03-09 12:06:36,newest,com.appgenix.bizcal +Andy Davis,https://lh3.googleusercontent.com/-qcjV8Fi6aUk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNa3KZOKFCU0vnGn8bcC19gw0PIHA/photo.jpg,"I've used this calendar for years. It has always been the best. But now they've added ads. Unless those go away, I'll be finding a new calendar.",1,0,2.37.9,2020-03-07 02:28:46,"The free version is still functional as the ads appear only every 18 hours! It means it is 2/day, if you're unlucky. Otherwise you can use the app without any further disturbance. Please note, that this free version needs to be developed and maintained on the daily basis. This requires a lot of time and work. The ads help us maintain the software.",2020-03-09 12:20:24,newest,com.appgenix.bizcal +prime optimus,https://lh3.googleusercontent.com/-JdLTo0TY5UQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJORmSZJGVBhTR2j7wGaZUK5pkNguA/photo.jpg,"Waste of time, unusable cannot delete events",1,0,2.37.9,2020-03-06 18:19:48,"Hi, this is not true. You can naturally delete events (provided you are not attempting to delete read-only events).Just click on the event to open its details. There you will find the ""bin"" icon to delete the event.",2020-03-09 12:23:49,newest,com.appgenix.bizcal +Jeremy,https://lh3.googleusercontent.com/-McDyTIRxwJs/AAAAAAAAAAI/AAAAAAAAAII/AAKWJJPXQMHlSRV5nJpjGvhB5wcYk-Mfbg/photo.jpg,"I used to love this calendar, but now it has full screen ads/videos that take over your phone. Can't do anything else while the pop-up ad is running. First one of these I saw - UNINSTALLED!! ... Response: The ads definitely come up more than twice per day and the calendar is definitely NOT functional while the ads are running - you must wait for the commercial to end before you can open the calendar again. I can understand bar ads at the top or bottom of a free app, but full length commercials?!",1,1,,2020-03-03 14:45:54,"If you saw the ads more often, they clearly didn't come form our app. What is more you can skip our ads and they are set on silent per default. Please note, that this free version needs to be developed and maintained on the daily basis. This requires a lot of time and work. The ads help us maintain the software.",2020-03-04 08:56:32,newest,com.appgenix.bizcal +A. Lewis,https://lh3.googleusercontent.com/-ZbnbxSQUGyM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOrf0VUqt7S-ymLI2fHdY_WefPdUg/photo.jpg,Been using this app for many years. The recent update has brought ads. Uninstalling.,1,0,2.33.2,2020-03-03 12:36:13,"The free version is still functional as the ads appear only every 18 hours! It means it is 2/day, if you're unlucky. Otherwise you can use the app without any further disturbance. Please note, that this free version needs to be developed and maintained on the daily basis. This requires a lot of time and work. The ads help us maintain the software.",2020-03-04 08:56:49,newest,com.appgenix.bizcal +Lior Shoval,https://lh3.googleusercontent.com/a-/AOh14GiADunh84QWAVKCnqUc-gEjg0EpaKo-5YdodbUH,"Those fullscreen ads made me uninstall it after years of using it happily. Bye. Won't come back. My response: Or, you know, I can simply use another calendar app that's free and has no ads.",1,0,2.26.2,2020-03-03 10:51:12,"The free version is still functional as the ads appear only every 18 hours! It means it is 2/day, if you're unlucky. Otherwise you can use the app without any further disturbance. Please note, that this free version needs to be developed and maintained on the daily basis. This requires a lot of time and work. The ads help us maintain the software.",2020-03-04 08:57:05,newest,com.appgenix.bizcal +Francis C,https://lh3.googleusercontent.com/-c2GCOfaSfTw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM09HJ-_Kpur_tVIyIgH7nCXWWyJw/photo.jpg,Force feeds users with video ads after each entry.,1,1,2.37.9,2020-03-03 02:10:01,"The free version is still fully functional. The ads they appear only every 18 hours. It means it is 2 a day, if you're unlucky. Otherwise you can use the app without any further disturbance. Please note, that this free version needs to be developed and maintained same as the pro version. This requires a lot of time and work.",2020-03-03 10:31:31,newest,com.appgenix.bizcal +Alvin,https://lh3.googleusercontent.com/-JR1lFVlQBOI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPDLP0p5COOg4EnKVSzkF1t2VHwtg/photo.jpg,"Been using this app for years, This app called itself business calendar but now includes popups which blasts the speaker at full volume. How am I supposed to use this app during BUSINESS MEETINGS?? Like the others who gave their feedbacks, guess it's time we move on to another calendar app like OneCalendar which dosent have ads",1,0,2.35.1,2020-03-02 03:47:34,"The free version is still fully functional. The ads they appear only every 18 hours, which is 2/day, if you're unlucky. Otherwise you can use it without any further disturbance. Note, that this free version needs to be developed and maintained same as the pro. This requires a lot of time and work. The ads help us contiune supporting the version.",2020-03-03 10:37:03,newest,com.appgenix.bizcal +M. M TBD,https://lh3.googleusercontent.com/-oTC60k_5a4A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMgTMGLW9QJN6_o62HR9pTvcRyEsw/photo.jpg,"Looks polished app but time after time new issues come up. Raising these issues with the developer rarely gets timely response or interest in fixing it (I'm a paid user). Today, tasks lost their subtasks on one device, while the 2nd device is OK (for now) || to devs: Task (and their subs) used to sync across devices via Google Drive.. Seems like you eliminated this feature by switching to Google Tasks in your recent update. Totally useless app now for me (at least)",1,1,2.37.9,2020-03-01 07:43:34,"Hi, the tasks have always been synced to GT. We haven't change anything in this regard + +please note that your subtasks cannot be synced to another device since Google Tasks is not supporting it. This is not an issue of BC, but a limitation of Google sync",2020-03-03 10:43:25,newest,com.appgenix.bizcal +Kymmi C.,https://lh3.googleusercontent.com/a-/AOh14GhgmvehTEvdLIlqnH_IydYiHehuhrIIuPWwoaZq,I use the Pro version. But What happened to the option to purchase holidays? My Christian and Jewish holidays don't show up anymore.,1,0,2.37.2,2020-02-29 13:07:39,"Hi, there is no option to purchase these holidays in BC 2 calendar app. You must refer to another (content?) app. If it is the case, please make sure your device syncs correctly, so that you can view those calendars in BC 2.",2020-03-03 10:44:48,newest,com.appgenix.bizcal +Florin Spătar,https://lh3.googleusercontent.com/a-/AOh14GgT-DqKZmQu3sAUtt7xutBSiteB1R3clvgOZjCdKDI,"Developer started to add invasive ads, and worst of all, the functionality that was working before, is not working anymore. Probably the app is busy with the invasive ad and forgot about the job at hand :) And yes, I know about the payed version",1,1,2.37.9,2020-02-28 13:59:49,"The free version is still functional as the ads appear only every 18 hours! It means it is 2/day, if you're unlucky. Otherwise you can use the app without any further disturbance. Please note, that this free version needs to be developed and maintained on the daily basis. This requires a lot of time and work. The ads help us maintain the software.",2020-03-03 10:52:00,newest,com.appgenix.bizcal +Eat-it Dog,https://lh3.googleusercontent.com/-svTkoK_XiA8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNH7f0i5yHGnrgld_bCuBXrtm4-MQ/photo.jpg,Used to be 5 stars. I've used this app for years.... The sudden addition of full page unskipable adds ruined it. It looks like I'm not alone in my disappointment.,1,1,2.37.9,2020-02-28 11:22:08,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-28 13:36:25,newest,com.appgenix.bizcal +Lisa Cirell,https://lh3.googleusercontent.com/-DHhB-0MftAY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOMEUMVu7vQ84aIksH7wWN10s5N6Q/photo.jpg,NOT into your ads. I've had your app on my phone for YEARS. Uoure about to be deleted for a Google calendar. Sorry.,1,1,2.37.9,2020-02-28 06:15:41,"The free version is still functional as the ads appear only every 18 hours! It means it is 2/day, if you're unlucky. Otherwise you can use the app without any further disturbance. Please note, that this free version needs to be developed and maintained on the daily basis. This requires a lot of time and work. The ads help us maintain the software.",2020-02-28 09:26:51,newest,com.appgenix.bizcal +chi mak,https://lh3.googleusercontent.com/a-/AOh14GgHtebWQCE31ngz4Y_RAaq1vqcQuha7O2wt4EC8,"Do not download this app. There are Ads everything you use i (as of Feb 26, 2020), despite what the developer says about the ""18 hour"". Just read other reviews and you'll see that the intrusive Ads have killed this free app. Look for another similar app",1,0,,2020-02-27 14:25:28,"Hi, we avoided this solution for as long as it was possible. It is not the case anymore and we need to think about further development and maintenance of this version. This kind of advertisement is a standard right now in the free apps. If you don't want to receive any ads, you can consider the pro version, which is completely ad-free.",2020-02-28 09:27:12,newest,com.appgenix.bizcal +Eric Wilson,https://lh3.googleusercontent.com/a-/AOh14GiMoDnmGouPrCXyLxfkrzsEts5rnZAlHhaaIFMs8A,The ads are a joke. Completely destroyed the experience. Maybe they haven't tried searching for calendar on the play store and noticed the hundred other options? Look elsewhere for calendar needs!,1,1,2.37.9,2020-02-27 13:05:49,"The free version is still functional as the ads appear only every 18 hours! It means it is 2/day, if you're unlucky. Otherwise you can use the app without any further disturbance. Please note, that this free version needs to be developed and maintained on the daily basis. This requires a lot of time and work. The ads help us maintain the software.",2020-02-28 09:27:31,newest,com.appgenix.bizcal +Eric Hunt,https://lh3.googleusercontent.com/a-/AOh14GjQFQki8OKUkUuGBYPCiBOHmFX25eTabR39QJev,Ad heavy plus unable to use widget and stock calander app,1,0,2.37.9,2020-02-26 17:17:07,"Note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon. +The widgets are the special function of BC 2 and you can use them in relation the app they belong to.",2020-02-27 09:57:40,newest,com.appgenix.bizcal +Chi Mak,https://lh3.googleusercontent.com/-y6xvPQrooEw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJObrjvATEzeARIbxpkkUKOIxJncAA/photo.jpg,"Used this app for years, but I can not tolerate the recent full page video ads that pop up after every calendar entry. I use the free version which I know is sponsored by Ad, the recent updates allow intrusive , excess ads that you can even skip and I can't renter the app to verify my calendar entry was added/modified corrected. The developer or owner has really overstepped with the recent updates and ads. I'm going back to the free Google app instead. I hope you push out a new update before y",1,5,2.37.9,2020-02-26 13:56:49,"The ads appear only every 18 hours! It means it is 2/day, if you're unlucky. Otherwise you can use the app without any further disturbance. Please note, that this free version needs to be developed and maintained on the daily basis. This requires a lot of time and work. The ads help us maintain the software. The PRO version is completely ad-free",2020-02-27 09:58:09,newest,com.appgenix.bizcal +Zhi Min Lau,https://lh3.googleusercontent.com/a-/AOh14GhsEUrvObPiKTR0JBb0m96yDQ6MxQnFuKeG1F_Mfw,Don't bother installing this app. The free version is garbage. Recently the developer made the decision for inclusion of ads. The ads pop up every time you add an event to the Calendar. The developer has chosen to sacrifice usability of the app and consumer comfort in the rush to monetise the app. I have uninstalled it and will not be returning to the app again.,1,1,2.33.2,2020-02-26 05:16:14,"The ads appear only every 18 hours! It means it is 2/day, if you're unlucky. Otherwise you can use the app without any further disturbance. Please note, that this free version needs to be developed and maintained on the daily basis. This requires a lot of time and work. The ads help us maintain the software.",2020-02-26 10:08:34,newest,com.appgenix.bizcal +john fronk,https://lh3.googleusercontent.com/-d3lm1hjVgG8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN2ehzVzOlRJEX2KI73vsRQydaweg/photo.jpg,I am also looking to change after years of usage. The app stooping to advertising unless a NEW upgrade is paid is dishonest. I paid for my old version and was satisfied with its functionality. Not interested in your new version,1,0,2.37.9,2020-02-26 03:45:22,"Hi, if you have the PRO version of BC 1, you can use all PRO functions in BC 2 completely for free. You don't need to pay for anything. All you need to do is to keep BC 1 Pro installed, so that the pro functions can be unlocked without any additional charge. We do not think it is a dishonest deal.",2020-02-26 10:13:08,newest,com.appgenix.bizcal +Lexie Zhao,https://lh3.googleusercontent.com/a-/AOh14GgYMoi0Tuj7zWflz1s_6F6rFi23dJnbZIxDCNw2,ads!!!!,1,0,,2020-02-25 17:04:22,"Hi, please note that the free version is not ad-free. The ads contribute to further development and maintenance of this version. If you don't want to receive any ads, you can consider the pro version, which is completely ad-free.",2020-02-26 10:14:18,newest,com.appgenix.bizcal +Janice White,https://lh3.googleusercontent.com/a-/AOh14Gj8r99KdLvtjjmcGB5JYT_3b1GfFYc3Z22Pv9T1fw,Ads interrupt you while adding items to your calendar. This app used to have a banner for ads at the bottom which was fine. Now the ads are annoying and timed. Reply to developer: No thanks. I rather uninstall your app completely. 👌,1,0,,2020-02-24 15:26:21,"The ads appear only every 18 hours! It means it is 2/day, if you're unlucky. Otherwise you can use the app without any further disturbance. Please note, that this free version needs to be developed and maintained on the daily basis. This requires a lot of time and work. The ads help us maintain the software.",2020-02-25 12:24:49,newest,com.appgenix.bizcal +mindtricky,https://lh3.googleusercontent.com/-q2CILCwXUJE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNflmv1ZtKbzYU-AmW3-8gxOfXz-A/photo.jpg,Predatory ads killing it...,1,1,2.37.9,2020-02-24 11:49:51,"The ad appears only every 18 hours! It means it is 2/day, if you're unlucky. Otherwise you can use the app without any further disturbance. Please note, that this free version needs to be developed and maintained on the daily basis. This requires a lot of time and work. The ads help us maintain the software.",2020-02-25 12:26:37,newest,com.appgenix.bizcal +Mark F,https://lh3.googleusercontent.com/a-/AOh14GgiOm1Dy-fRgXNuM-8Icm0l8x9ecjepqkt9hcEH6w,Full screen video ads! I can live with banner ads but not this.,1,1,2.37.9,2020-02-24 08:46:48,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-24 09:46:34,newest,com.appgenix.bizcal +Aleks P,https://lh3.googleusercontent.com/--dGJ1qb79GQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPBv847KwLW1z4UWFFVsgpx3Qjg7g/photo.jpg,"This is update on 22 Feb 2020 I don't know what happened to the app, but it now annoys me every second time i open it, with some ridiculous animated games, which hijack the whole phone for about 30 seconds, and then goes to Google Play, asking to download the idiotic game. Not sure if it's the app itself, or if it's been hacked. In either case I AM UNINSTALLING THIS! ========= Excellent app, I've been using it for many years now, since its predecessor..... all good with app :-)",1,1,2.37.9,2020-02-23 01:32:19,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-24 09:53:33,newest,com.appgenix.bizcal +Kevin Jocksch,https://lh3.googleusercontent.com/-sCkEwmFzq3U/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM6dZPylJNlnqIPq1RJ7SIftNVMOw/photo.jpg,I used this calander app for years and found it to be excellent. But recently it started playing full page video ads making accessing information on the fly unreliable. I'm sure the paid version is still great but I cant recommend using this as a free calander app anymore.,1,0,2.35.1,2020-02-22 22:54:11,,,newest,com.appgenix.bizcal +Brian Pettit,https://lh3.googleusercontent.com/a-/AOh14GhQcToJKXb7oZ6EQ25wbxKLigQwC6D3_OjrsR8RKw,Ads ads ads.,1,0,2.37.9,2020-02-22 21:22:09,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-24 09:53:39,newest,com.appgenix.bizcal +Family Matters,https://lh3.googleusercontent.com/a-/AOh14Gh71VMUgbRAVqPo3B4f8UzG5oKxPo5-0_KALnhn1C4,Loved it until they added cartoon ads. You'll be with a client and a video game comes up as you're scheduling their appointment. Makes us look very unprofessional.,1,0,2.37.9,2020-02-22 18:07:26,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-24 09:58:08,newest,com.appgenix.bizcal +MzSpl Brat,https://lh3.googleusercontent.com/-TgRuRPuMrfU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJODv61v2kWBiR76H0IbJ8fkfupeAw/photo.jpg,"I've had this app for years, even upgraded it to the premium version. Loved it.. then as the developers started updating, I started having many issues. Each time i used the app it would show in the premium or free version; it was inconsistent. I wrote the customer service for assistance and I didn't get any help. So i lived with it. Most recently, I started receiving ads after every entry; Not okay!! I sent another email 2 wks ago which they have not responded to; which is why I'm here. Help!",1,24,2.37.9,2020-02-21 20:46:13,"Hi, you don't need to play twice. The license is valid without any limit as long as you use the same account and app store. Take a look here: https://appgenix.uservoice.com/knowledgebase/articles/908211-i-paid-for-the-app-but-i-lost-the-pro-features",2020-02-24 09:59:23,newest,com.appgenix.bizcal +Tegan Martin,https://lh3.googleusercontent.com/a-/AOh14GjFV-V6KJUWQo5gH39jfi623zTok2cCoxVcBatF,"I paid for this app, and it was a wonderful app, easy platform, customisable. BUT, there has been a recent addition of ads. All the time! For an app I have paid for I think this is disgusting. I response to you, no these aren't spam events linked to my phone. I uninstalled this app and used my original paid version of the called app and there are no ads. I was prompted to update to this version a while ago. I thought it was just an ad on from the paid version of business calendar I had.",1,0,2.15.1,2020-02-21 10:44:25,"So you unlocked the pro functions in BC 2 by keeping old BC 1 installed. Was the old app installed at all times? Only then the pro functions will be continuously unlocked in BC 2 without any charge. If you uninstall BC 1(which you have the pro license for), the pro in BC 2 can't be unlocked and you practically use the free app, which is not ad-free",2020-02-24 10:23:05,newest,com.appgenix.bizcal +Hugo Harrabin,https://lh3.googleusercontent.com/a-/AOh14GioAQ8KsV6G-e_j_UgeJhxfpENRGmG_FXxW_WZr,"I have used this app for a couple of years now and it was great. It had small banner ads before, however recently they have incorporated video ads which play every time you input a new plan. This is incredibly tedious and a massive waste of time. DO NOT DOWNLOAD.",1,2,2.37.9,2020-02-21 09:46:11,"Note that the free version is not ad-free (only the pro version is completely ad-free). What do you mean by ""every time""? The ads are set to appear every 18h, so it makes it max. 2 a day. We are also currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-21 10:03:45,newest,com.appgenix.bizcal +Weh Yeoh,https://lh3.googleusercontent.com/a-/AOh14GieqQPPuG1vSCBrinU42dsEa2OWQDgpFBz6_uxvE_M,I understand the need to play ads in a free version. But your ads are going for 30 seconds before you can get rid of them which makes this app unusable.,1,1,2.37.9,2020-02-20 20:08:47,"We avoided this solution for as long as it was possible. It is not the case anymore and we need to think about further development and maintenance of this version. However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-21 10:05:23,newest,com.appgenix.bizcal +Chris Valleau,https://lh3.googleusercontent.com/a-/AOh14GiliKVv2o8v2SceL5Y9KlZF9grBC0tDO84AW8OnSq8,"DO NOT INSTALL THIS APP. I used to love it, but in the most recent update the advertisements have made it absolutely unusable. I am switching to google calendar and never looking back",1,1,2.37.9,2020-02-20 15:27:23,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-21 10:05:46,newest,com.appgenix.bizcal +Charles Roberts,https://lh3.googleusercontent.com/-B9dbRFKM2h4/AAAAAAAAAAI/AAAAAAAAAUI/AAKWJJPQxG12lTURZKZxXzkiH0t0vU6f8A/photo.jpg,"Its a great app I used for years. I was ok with ads, but the full screen can't be immediately banished ads make it unusable. When I need Calendar info, I need it RIGHT NOW. I'll give it a couple of weeks but if it doesn't go back to discrete corner ads I'm out. Edit post response: I'd have paid a couple of bucks for ad free version, because it is better than stock Calendar. But its not 7 bucks better. So if you're not going to remove full screen ads, after years of using, gotta say buh bye...",1,17,2.37.9,2020-02-20 02:29:49,"Hi, please note that the free version is not ad-free. We avoided this solution for as long as it was possible. It is not the case anymore and we need to think about further development and maintenance of this version. Please also note, that the pro upgrade is a one-time fee, which you can use without any time and download limit.",2020-02-20 09:15:43,newest,com.appgenix.bizcal +Max Biegler,https://lh3.googleusercontent.com/-bHabrIQNTL8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP-GsunDdYbR-ZuLKg2u6Y4juxInw/photo.jpg,The pop-up advertisements make the free version impossible to use. I will be forced to change to a different app after years of use,1,2,2.37.9,2020-02-19 20:58:18,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-20 09:16:06,newest,com.appgenix.bizcal +team little.,https://lh3.googleusercontent.com/-hYr9DQ60z9c/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPaOVH5ZF6W5F85-DZ2rOYq5Q3omg/photo.jpg,updated and the only thing new is ADS. deleting after years of use over multiple phones.,1,0,2.37.9,2020-02-19 20:57:16,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-20 09:16:11,newest,com.appgenix.bizcal +Mscd Msscd,https://lh3.googleusercontent.com/-GpOczmG3V5w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM5ppff_aY4exm4iX-2Cp_awe-06g/photo.jpg,Paid for premium and now I keep getting ads after the update.,1,0,,2020-02-19 19:54:43,,,newest,com.appgenix.bizcal +Sean Piercy,https://lh3.googleusercontent.com/a-/AOh14GjuQ-DF68pOKtUQns_fbL2rmJwNwB8EwOZ3Mi-QBg,"Misleading, all themes require pro.",1,0,2.37.9,2020-02-19 02:17:21,"Hi, the themes are part of the pro pack. This information is also provided in the Play Store description. +Here you will find the overview of the pro functions: https://appgenix.uservoice.com/knowledgebase/topics/64105-pro-features",2020-02-19 11:07:34,newest,com.appgenix.bizcal +Robert MacGregor,https://lh3.googleusercontent.com/-j4gMNA9sbpg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMo3m_cOg-bUynYU0pTt9H-VWFEbg/photo.jpg,"UNSKIPPABLE video ads pop up when you are adding or editing an event. I mean video ads popping up in a *calendar* app is bush league already, but unskippable? May as well have a boxing glove on a spring pop out of my phone and smash my groin - that's probably preferable.",1,0,2.37.9,2020-02-18 22:43:36,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-19 11:08:10,newest,com.appgenix.bizcal +Jeremy Miller,https://lh3.googleusercontent.com/a-/AOh14Ghdh3HGvdw24ySN7LgMOQg4eeNPCmc5u8XoeJXuLg,"Does not sync automatically. Very frustrating. Have to go in and ""Sync Now"" even though setting is set to sync every hour. Done with this app",1,0,2.37.9,2020-02-18 14:54:48,Please remember that BC doesn't have its own sync abilities and uses only those provided by Android. Therefore it cannot be responsible for the sync issues on your device. It might be a general sync problem and it could help to remove and re-add the account for sync in your Android OS Settings - Accounts & Sync.,2020-02-19 11:09:17,newest,com.appgenix.bizcal +Susan Marken,https://lh3.googleusercontent.com/a-/AOh14GiBuBqUZVlbMWwBVNFPDzdd7JxKYSJciOjT5mht,"I am going to drop this app after years of use because of recent full page video ads which are out of control. Edited to add: of course the free version has ads. Always has, and I don't mind, because *something* has to pay for app development. But these new full page, video that can't be shut down, in your face for many seconds ads are new and intolerable. That was a bad business mistake you can correct. I hope you correct it soon. I'll be checking back to see.",1,57,2.37.9,2020-02-18 14:09:31,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-19 11:09:28,newest,com.appgenix.bizcal +florin ciovica,https://lh3.googleusercontent.com/-jckleYf3-M8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNHMeXLHtYLngi5_2cUth01_1owGg/photo.jpg,Since you have put advertisements in app i say goodbye.. On top of that an update came up and isn't possible to view description of booked day unless you click on it. Disappointed.,1,0,,2020-02-18 09:25:01,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-18 13:22:27,newest,com.appgenix.bizcal +Peregrine Falcon,https://lh3.googleusercontent.com/a-/AOh14Gih5_LF-XmXDdJ1Ew-3lUzcL3rbPHIat-4FMNCgk54,"Ads started appearing whenever I'd modify something. Not cool. Edit: I have no problems with banner ads, but ads that completely disable functionality for a period of time completely defeats the purpose of using this app for better functionality.",1,1,2.37.9,2020-02-17 23:06:48,"Hi, we avoided this solution for as long as it was possible. It is not the case anymore and we need to think about further development and maintenance of this version. However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-18 08:48:18,newest,com.appgenix.bizcal +Eric Bastian,https://lh3.googleusercontent.com/-V-PBkgEp88Y/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPcWFSSLtSz7B42Y-4CArWJbA_XKg/photo.jpg,Deleting. Was great. Now horrible. Bad move with the ads guys.,1,2,2.37.9,2020-02-17 16:55:19,"Hi, we avoided this solution for as long as it was possible. It is not the case anymore and we need to think about further development and maintenance of this version. However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-18 08:48:51,newest,com.appgenix.bizcal +M B,https://lh3.googleusercontent.com/-Jn6cp2Mathk/AAAAAAAAAAI/AAAAAAAAPJk/AAKWJJMFc8jOZSnPY4UBGq7UA86VJI-LxA/photo.jpg,"Recent addition of VERY intrusive full-screen video ads has crossed a line. At first I thought my phone had been hacked! I totally understand need for revenue for a great free app, but this is too much. I'm going elsewhere very soon without a change!",1,2,2.37.9,2020-02-17 03:56:06,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-17 08:19:04,newest,com.appgenix.bizcal +Jarone Gittens,https://lh3.googleusercontent.com/-DpbQWMMOV0g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNZG9MgW9QM9_Agd5BBALzjiaVKUg/photo.jpg,"The free version has HORRIBLE ADS. Other than that, the app is marginally better than Google's free calendar app that had no ads... It was an easy decision to uninstall and go back to Google calendar.",1,0,2.35.1,2020-02-16 13:34:28,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-17 08:25:08,newest,com.appgenix.bizcal +SB Lim,https://lh3.googleusercontent.com/a-/AOh14GhubEgpZwkX_8-ysbAIyY-w1TmaB2Dppv_ZsTyaVQ,I had given 5 stars in Jun 2017. I'm changing it to 1 star because of the full screen ads which cannot be dismissed. I'm grateful to the developer for creating this nice looking calendar app and was happy to tolerate the ads in the free version but the full screen ads really disrupt the process of adding an event to the point where it becomes intolerable. I'll just switch to Google calendar which syncs better anyway. Thanks for the few years of a great app.,1,1,2.37.9,2020-02-16 09:48:27,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-17 08:26:15,newest,com.appgenix.bizcal +Pil Own Electrik,https://lh3.googleusercontent.com/a-/AOh14GhWAo7MUsEMFzp2zmcd20f6q2gKdNiF46f7aiG9qg,Full screen ads you can't skip every time you add or edit an event !!!,1,1,2.37.9,2020-02-15 13:12:29,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-17 08:33:25,newest,com.appgenix.bizcal +Ian Smith,https://lh3.googleusercontent.com/-HQvp_46L__w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOrpx5j5jt25GTSmX4IYk1-bOqZZA/photo.jpg,The new full-screen video advertisements make the basic version of this app unusable. I'm looking looking for a replacement.,1,4,2.37.9,2020-02-15 00:11:59,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-17 08:37:00,newest,com.appgenix.bizcal +J Nung,https://lh3.googleusercontent.com/-yl5iSvZghqA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPREMLaIhfp57B-QRAEbuCi9ZPDFw/photo.jpg,"Excellent UI. Easy to use and sync to gmail. Events and tasks all at once. Since the last update on Feb 13, 2020, this app shows video ad. after modify calendar which you cannot close until the ad is finished. You have to be careful if you are in quiet environment ie meetings.",1,7,2.37.9,2020-02-14 23:44:49,,,newest,com.appgenix.bizcal +suresh kumar,https://lh3.googleusercontent.com/a-/AOh14GixHO4cxOJTp7etnlSwE9IZJN8DK3LCSyxQgj9m,I used past 5 years...Nice app .. But now More Advertisement ...so I uninstall the app..,1,0,2.37.9,2020-02-14 14:26:21,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-17 08:38:03,newest,com.appgenix.bizcal +Pavel Szkandera,https://lh3.googleusercontent.com/a-/AOh14GgZD6bCLeqTAScV8pJk-R4cZbxW4ZlT1vVnZj9Q9w,"Advertising.. Everywhere now, so bye bye",1,0,2.37.9,2020-02-14 12:29:18,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-14 13:44:31,newest,com.appgenix.bizcal +Jaša Furlan,https://lh3.googleusercontent.com/a-/AOh14Gi-In6D5Hsb6Lh7qL0t-Nyr-hJGUYc-S9gg6rV2mag,"I have been using this app for many years. Definitely one of the best calendar apps for Android. Unfortunately, too big desire for monetization of the app won. Full screen ads which you cannot close are now popping up after adding events and more. Such a big disappointment! You can of course purchase the app but for me it doesn't add any more value as I don't use pro functions. I guess it's time to switch to Google's native app.",1,1,2.37.9,2020-02-14 07:47:20,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-14 11:04:44,newest,com.appgenix.bizcal +Bodega Coast Lock & Key,https://lh3.googleusercontent.com/-x_l853maxAw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPSnMveeeyunhThn_dFFs3_xvQOXg/photo.jpg,"Love this calendar up until a few days ago. The ads used to be fairly non-intrusive, which I get and could totally live with. Now they have a full screen animation that you have to wait on to use the calendar. Totally unacceptable when I'm with a customer. Absolutely do NOT recommended this calendar as currently configured.",1,6,2.37.9,2020-02-13 18:18:53,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-14 11:07:27,newest,com.appgenix.bizcal +Rayee Roded,https://lh3.googleusercontent.com/a-/AOh14GjqKcUqxJM3G4_Sae64M9guzipFWzvrwhpjYYUqTZc,Too many long ads,1,0,2.37.9,2020-02-13 13:22:44,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:32:06,newest,com.appgenix.bizcal +Tim Spencer,https://lh3.googleusercontent.com/-rlRsUId6AVk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOiK5xICg4qqTW0mBjAZYSWauYmtg/photo.jpg,"I recently switched over from the original business calendar app which I have been using for many years. This version has a fancier UI but functionally seems much the same as far as the calendar goes which is fine, if it ain't broke don't fix it! I think other features have been added but I don't really use them. Update: full screen ads suck. They appear and cannot be closed for a long time. Show me an ad if you must but let me close it, the free version is unusable this.",1,5,2.37.9,2020-02-13 12:47:36,"Hi, please note, that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:32:40,newest,com.appgenix.bizcal +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Resonse (2/13/20): I know that the free version is not ad-free. The issue that what you have done recently is to force people to watch ads instead of just clicking them away. And this happens while I'm trying to add or edit something on the calendar. Had to change from 5 to 1 star because of these pop up ads. Will be looking for a new app soon.,1,43,2.37.9,2020-02-13 12:16:19,"Hi, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:33:01,newest,com.appgenix.bizcal +Dominik,https://lh3.googleusercontent.com/a-/AOh14GiFLXPaWFwTvgQyos1hrtfgxhSOBLo5Hb7qLVld,"5 up to 15 seconds are too much for staring at an add in an app that is listed under ""productivity"". Already expecting the lame excuse given to all the comments. Please rethink if you want to go the ""standard"" way you mention, or if a developer should try to give its best and attract users. I'm in favour of ads in free app versions, but this is too much!",1,0,2.37.9,2020-02-13 12:05:35,"Hi, please note, that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:33:24,newest,com.appgenix.bizcal +Mike Frishman,https://lh3.googleusercontent.com/-EntUtKVWQdg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOOQtfPXBuFTiIG03WYoHhhWCIT9A/photo.jpg,My go to for years. Until the last update. Ads used to be unintrusive. Now you have to wait 10 seconds after every calendar update for the ad to run. Uninstalling now.,1,1,2.37.9,2020-02-13 00:53:57,"Hi, please note, that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:33:39,newest,com.appgenix.bizcal +Rafael Magana,https://lh3.googleusercontent.com/a-/AOh14GhVh680TPCaQG8EdlbMS2bo0rv40iILnaEDyDxu,"Wow. Had a 30 second ad that gave me the uninstall this app command. I used to like the 1st but eventually moved to the 2nd but after that atrocious ad, I uninstalled and used google calendar which the widget is not as nice but works great.",1,0,2.21.0,2020-02-12 22:25:19,"Hi, please note, that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:33:53,newest,com.appgenix.bizcal +Tom Szczepanski,https://lh3.googleusercontent.com/a-/AOh14Gin0V4zCYQ2aQsOJJPcs9_aFOOnDWAlGMYW3MRMGg,Unskippable pop up video adds with sounds. Awful and completely inappropriate for 'business' as the name suggests. I shall look forward to deleting this app and avoiding this developer from now on.,1,0,2.37.9,2020-02-12 21:39:16,"Hi, please note, that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:33:58,newest,com.appgenix.bizcal +Ellen C.,https://lh3.googleusercontent.com/a-/AOh14GgbTXPeB0QGEklGyn7Z0zH5OEPMM15NFGLRbhAhSw,Loved this app until ads started covering the entire screen. Uninstalled immediately.,1,0,2.24.0,2020-02-12 16:31:02,"Hi, please note, that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:34:12,newest,com.appgenix.bizcal +Pat Gray,https://lh3.googleusercontent.com/-R97e-SoID24/AAAAAAAAAAI/AAAAAAAACCA/AAKWJJP3WCgXM4rKXZ5DGws6KZ0MGSSxGw/photo.jpg,"I've used this app for years and have loved it up until now. Now I get full page ads that sit there for 5 seconds and disrupt what I'm doing. I don't mind a full page ad that I can back out of or scrolling ads at the bottom, but to force me to watch a 5 second ad is not reasonable. Seems like they're forcing you to pay up or move on to another app. If this continues I'll find another app.",1,10,2.37.9,2020-02-12 13:41:52,"Hi, please note, that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:34:27,newest,com.appgenix.bizcal +Mika Ahosilta,https://lh3.googleusercontent.com/-239lO802TK0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN3C9PcdKu4cljdbMDvceCgFoVMAw/photo.jpg,Used to be good but started showing full screen ads even when the app is not open. Currently unusable.,1,0,2.37.9,2020-02-12 12:54:24,"Hi, please note, that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:34:35,newest,com.appgenix.bizcal +K B,https://lh3.googleusercontent.com/a-/AOh14Gh1pPy8qX7cDMxqUx0nuWgRCmTKzVtgsA3bVjux,"I used to like, even love this app. It was great. Now though, every time I add an event on my calendar an ad comes up and stays there until it is finished. It's awful! So far the ads have not been inappropriate, just annoying. I don't think that going to the pro version would fix this. I don't even know how to find the pro version to purchase as it doesn't show up in the play store. Super frustrating. I don't want to find another app. I just want this one to work without the silly ads.",1,0,,2020-02-12 00:11:56,"Hi, please note, that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:35:07,newest,com.appgenix.bizcal +Cole Bradbury,https://lh3.googleusercontent.com/a-/AOh14GiSDMjZn9vvqgrYMQ2Mu8IyEcdpp-dJ1gjBMaiwow,"Used the free version for years, no issues, didn't need the pro features. Then they started putting in ads - not the kind that pop up along the bottom but ones that completely hijack the screen while you're trying to work. Worst bait-and-switch I've ever seen.",1,4,2.37.9,2020-02-11 15:46:04,"Hi, please note, that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:35:28,newest,com.appgenix.bizcal +Peter Jansen,https://lh3.googleusercontent.com/-lM1MQEpIvXM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP7cEeDD_QpS515f9KwEPKuTIRhsA/photo.jpg,"Simpel in het gebruik. Mooie lay-out. Snel. Handige opties voor het opnieuw gebruiken van ingevoerde gegevens. Werkt perfect samen met Google calender, contacts en taken.",1,2,2.37.9,2020-02-11 06:11:49,"Hi, thanks for the positive feedback. We really appreciate it. Nonetheless you rated the app with 1 star. Is there any issue we could maybe help you with?",2020-02-13 15:35:55,newest,com.appgenix.bizcal +Paul H,https://lh3.googleusercontent.com/-En1RANuq4VY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMDWKJeLFhL7ZExxM1b9R-Y3GCHOg/photo.jpg,"Used to be good. Now massive full screen adds with sound. First time they ran without warning, very embarrassing. Will give it a week to revise, then will uninstall. Adds are ok, but the full screen nature with sound isn't.",1,1,2.37.9,2020-02-11 00:00:32,"Hi, please note, that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:36:00,newest,com.appgenix.bizcal +James Alexander Lee,https://lh3.googleusercontent.com/a-/AOh14Ghlt4jqu5-DhPt-n9dMd8VhDoXyiVa9j-7PxZopMg,Full screen ads? In a calendar app? Are you serious?,1,3,2.37.9,2020-02-10 08:19:30,"Hi, please note, that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:36:24,newest,com.appgenix.bizcal +MICHAEL FōKKEN,https://lh3.googleusercontent.com/a-/AOh14Ghh-X1ucv3wnXdoIzW60ljsN_UBySisk86jdE0a,"The Ads now pop-up full screen. That is very, very, very, very annoying. What if I'm on an important call making an appointment and then you pop-up this irrelevant ad right in my face. Unprofessional.",1,4,2.37.9,2020-02-10 04:25:20,"Hi, please note, that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:36:44,newest,com.appgenix.bizcal +Solehan Imran,https://lh3.googleusercontent.com/a-/AOh14GhG5B2rWvn5KqDh4aE-GS62PVllr1zy1VtkNN4Cdg,After updating.. Ads took over the screen.. Disappointed.. I'll look into other calendar apps as alternative.,1,3,2.37.9,2020-02-09 22:37:44,"Hi, please note, that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:36:49,newest,com.appgenix.bizcal +Dace Briede,https://lh3.googleusercontent.com/a-/AOh14GgEs8VzmjHvcTV0xj1YmF8zRkQAIgkTVco7RZJg_X4,"It used to be the BEST calendar for many years, TILL NOW, when annoying advertisements are popping up all the time. So sad, but it's totally intolerable, need to Uninstall and find another app",1,3,2.37.9,2020-02-09 12:56:02,"Hi, please note, that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:37:02,newest,com.appgenix.bizcal +Kevin Yee,https://lh3.googleusercontent.com/-77kyy2wRMYo/AAAAAAAAAAI/AAAAAAAAAos/AAKWJJMxNwk1yyxPfmgONPSoFfYfG4R6dA/photo.jpg,Video ads,1,1,2.37.9,2020-02-08 23:18:34,"Hi, please note, that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:37:07,newest,com.appgenix.bizcal +Mayank Jha,https://lh3.googleusercontent.com/-c0yPxhH4MCE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN_ixgIfDVNOTM9xWspCR3gVJhUZQ/photo.jpg,"I don't mind ads, but not those which run in full screen mode and cannot be closed by me.",1,0,2.37.9,2020-02-08 10:09:10,"Hi, please note, that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:37:20,newest,com.appgenix.bizcal +Matthew Scott,https://lh3.googleusercontent.com/-Rn8-Hg-E47o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNzP6kV7IQVEBxJIJVRLvW48sHe4g/photo.jpg,Used this calendar for years without any issue. Now ads will take over the entire screen after entering an appointment in the calendar and there is a delay before you can cancel them out. Terrible and disappointing choice on the part of the developers. They've lost me as a user as I refuse to pay for a pro version for a simple calendar app. Do yourself a favor and stay away. The ads suck and are annoying.,1,49,2.37.9,2020-02-08 03:28:42,"Hi, please note, that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:37:32,newest,com.appgenix.bizcal +Bien Agiter,https://lh3.googleusercontent.com/a-/AOh14GhDVC1-DZam2dOe0FbaFbcQSZcBJtUfZRbxa6o5,"Now down to 1 star for the unappreciated bilingual holiday settings for BC Canada. Absolutely no need for this. The phone and app setting where the language is set to ""English"" should override any other situation. I didn't get a satisfactory answer from the dev. I'll keep deducting stars as long as the app doesn't improve. Update Feb 2018: 1 star for the completely uncaring attitude re: ""French"" in the holidays that I have no way to get rid of! My 1 star won't change until you do. No change.",1,1,2.37.9,2020-02-07 21:52:14,"Hi, the holiday calendar has nothing to do with your OS language settings. Please note that we manually add the data to the holiday calendar and if you live in a bilingual region/country you will see both official languages. This will not change in the near future.",2020-02-07 10:41:56,newest,com.appgenix.bizcal +Luke Allport,https://lh3.googleusercontent.com/-_Ywm0GZWMRE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPOY5rl_NjgVvipwcQbmI30wfn9MA/photo.jpg,"Used this app for months with no issues but after most recent update it plays an ad every time I add a new event to my calender, awful",1,1,2.37.9,2020-02-07 19:32:14,"Hi, please note that the free version is not ad-free. The ads contribute to further development and maintenance of this version. If you don't want to receive any ads, you can consider the pro version, which is completely ad-free.",2020-02-10 09:04:42,newest,com.appgenix.bizcal +Ondrej Uhričík,https://lh3.googleusercontent.com/a-/AOh14GhdDrK7u4PoMYdtO1-SqEUtsO4yOgdYNuvqphF_Ndk,Would you please add day and night mode for widgets that would sync with system's day and night status? Thank you,1,0,2.37.9,2020-02-05 07:16:51,"Feel free to post any of your suggestions in our user forum +https://appgenix.uservoice.com/forums/280499-business-calendar-2 + +where other users can vote and comment on it as well and we will take it into consideration for the future.",2020-02-05 10:01:16,newest,com.appgenix.bizcal +Rahul Pathare,https://lh3.googleusercontent.com/a-/AOh14GjpgIPuLD4NLXkr0oMDt0KqhDSWj_P9M5ncjey4Pw,"Doesn't popup reminder anymore with Android 10 update. & Revert by support claiming its purely Android 10 issue isn't true... There are apps which continue to have pop-ups (shared with developer, who refuses to acknowledge this & only give defense of Android issue)",1,0,,2020-02-03 13:21:43,"Hi, the apps, that can ask the phone call permission, can show popups. Those are the only exception to the general Android 10 rule. BC cannot ask this permission and complying with Android 10 cannot shop popups automatically as most of the Android apps. You can still open it manually. The support provided you with the correct and true information.",2020-02-04 11:46:26,newest,com.appgenix.bizcal +Local Bin,https://lh3.googleusercontent.com/a-/AOh14GiaOGbk79D3oSG6rScoaSEAS7oHPv_brtS9LAgnfQ,"Great app but why do you need 13 Ad trackers in this paid for pro app? Exodus privacy list 13 trackers against your app which is rediculous. Using this every day, but now concerned my every move is being tracked 13 times. Edit: You inform, so that makes it okay then, for you. Perhaps other more privacy focussed users should look elsewhere. How do I confirm the trackers are not used? Trust you, I bet.... 13 are for revenue, 1 will suffice for personalising.",1,2,2.37.7,2020-01-30 11:25:38,"Hi, if you have the pro version, the trackers are not used. They are only used in the free version to provide personalized data for the ads. We inform about it as well.",2020-01-31 09:18:11,newest,com.appgenix.bizcal +Prasad Munj,https://lh3.googleusercontent.com/a-/AOh14GiNRNuooV6AvWZP7pMhRDH3tWPaQLeqqMNRqpk,Can't set up reminder,1,0,,2020-01-25 20:30:36,"Hi, please take a look here: https://appgenix.uservoice.com/knowledgebase/articles/429996-using-the-create-edit-view",2020-01-27 10:56:19,newest,com.appgenix.bizcal +Raymond C.,https://lh3.googleusercontent.com/a-/AOh14GhVA2dRyiMkKb5Bb1NFt9W1jU_W3mlgCko8e0cb1g,Doesn't even have a basic dark mode without Pro,1,0,2.37.6,2020-01-25 14:02:05,"Hi, please consider, that the free version is fully functional. If you, however, need some additional functions (such as themes for example), you may consider going pro.",2020-01-27 10:57:39,newest,com.appgenix.bizcal +5280 Colorado,https://lh3.googleusercontent.com/a-/AOh14GiDU0PSkPpxif68rBSVyIUbNUDuEWmIua-GTZrHoA,Cant put in anything in app,1,0,,2020-01-25 05:44:06,"Hi, does the app have the calendar storage permission granted? Without this permission no calendar app can access the storage on your device this is where the events are actually saved) and display events and save the new ones. Please make also sure, the calendar you add events to is activated in calendars & task lists - color box icon",2020-01-27 11:08:14,newest,com.appgenix.bizcal +Yan G.,https://lh3.googleusercontent.com/a-/AOh14Gix_ju2DpUQtFFcrQYzgKjH23y7wRE2764clNGG,The link provided is the same robot answer I received by email. I still cannot download the the pro version I bought as it was removed from the market. If you remove it from the market then obvisouly no one can download it. And if it is not removed. Provide the download link. Else do not tell your customers that it is a perpetual license. Did you ever hear about short links??,1,6,2.37.5,2020-01-23 05:18:32,"You received a similar message, because this is how you solve the problem. If none of the suggestions worked for you, contact Play Store Support and they should solve the issue. We -as developers- can't provide any sort of links. You download the app from a store where you bought with the same account. Only then THE STORE unlocks your license.",2020-01-23 09:30:52,newest,com.appgenix.bizcal +Jonas Roth,https://lh3.googleusercontent.com/a-/AOh14Gjg9_ND0VglfhS7KlHMRaxN1cfPuTHv-MjPfLSsdUw,"I wish clicking the widget (week view) just simply opened the app itself, instead of the day view/agenda. And it keeps lagging and freezing intermittently, almost can't use the app anymore due to this. (Huawei P30 pro) I have disabled battery management but app still freezes for 5+ seconds every time I delete an event (and for many other actions as well)",1,1,2.37.5,2020-01-22 11:27:34,"Hi, did you also check all the following settings? https://dontkillmyapp.com/huawei +Do you use the stock launcher?",2020-01-23 09:32:23,newest,com.appgenix.bizcal +Sylvain Riondet,https://lh3.googleusercontent.com/a-/AOh14Gj2w76MtTV4TFJ95j-yrJdd0J46org2ZtaxjQup1Q,"I have used this awesome app for 3 years at least. Sleek, convenient, powerful. But the recent updates just bring more and very intrusive ads. If that is not reverted soon, I will have to change app. Pissed by how awesome app become awful because someone wants to make money out of other's great job. And thanks for your copy pasted answer 🙏",2,2,2.37.3,2020-03-08 08:38:27,"Hi, we avoided this solution for as long as it was possible. It is not the case anymore and we need to think about further development and maintenance of this version. This kind of advertisement is a standard right now in the free apps. If you don't want to receive any ads, you can consider the pro version, which is completely ad-free.",2020-03-09 12:37:46,most_relevant,com.appgenix.bizcal +Andrea Hodgkinson,https://lh3.googleusercontent.com/-bJttO8yvc-0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJObuTvYcL9T26luqiCAe7swfT1Gvg/photo.jpg,"UPDATE: I know it's a one time fee as stated, that I had already paid. Same acct now I don't have pro. I've had it for a while now and had purchased the pro version right away. My reason for giving 2 star now is all of a sudden it tells me I do t have the pro feature anymore that is supposed to be a 1 time payment. 😠 Also, if there was a desktop version that would be majorly useful! Disappointed that I would have to pay for pro again if I wanted to continue those features.",2,4,2.37.9,2020-03-09 12:59:50,"Please note that it is not the app, but your app store, which is responsible for the unlocking of the license. Have you already cleared the data of the Play Store app as the article below suggests?https://appgenix.uservoice.com/knowledgebase/articles/908211-i-paid-for-the-app-but-i-lost-the-pro-features",2020-03-10 09:59:58,most_relevant,com.appgenix.bizcal +Jay Porter,https://lh3.googleusercontent.com/-KxaG61tshPo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM4CB9z4_xnQBC2CYUOO6wR4bpOVg/photo.jpg,It was good until they introduced long adverts every time you add an entry.... How to annoy your users ! I won't be forced to pay... I have given good feedback in the past and good feedback encourages others to pay now you have decided to make the free version really annoying to use you are creating bad feedback! Good luck,2,1,2.37.9,2020-03-24 14:39:35,"The free version is still functional as the ads appear only every 18 hours! It means it is 2/day, if you're unlucky. Otherwise you can use the app without any further disturbance. Please note, that this free version needs to be developed and maintained on the daily basis. This requires a lot of time and work. The ads help us maintain the software.",2020-03-24 15:49:22,most_relevant,com.appgenix.bizcal +D 21,https://lh3.googleusercontent.com/a-/AOh14GgPix_fd5QhFZuzOdooonw2ZNS7DB3y_07ChQQ,It doesn't allow the ability to automatically set reminders when creating a new event. I use both the Google Calendar app and Business Cal Pro and they both allow the ability to automatically set reminders. And yes I have this setting enabled in my Google Calendar web Settings. This is an important feature that's missing!,2,0,2.37.9,2020-04-04 14:29:00,"Hi, it is possible. You can set the standard reminder for new events/tasks /birthdays in BC. What is more, the reminder set in your web calendar can be also synced by your Android device and are therefore accessible in BC.",2020-04-06 13:43:25,most_relevant,com.appgenix.bizcal +Ellie Cosgrove,https://lh3.googleusercontent.com/a-/AOh14GhxDvJC4ayy18yvd4cc0VctUf7ZNnMh6ONbBo8w9qw,Loved this app for years. The new full screen ads with no skip option is ridiculous and will likely drive me away. I understand the need for ads but this is too far and I have no need for any of the pro features so I will not pay for it when I can use a different app for free that doesn't block my productivity. I used to recommend this app to anyone who asked but now I won't.,2,26,2.37.9,2020-02-11 05:56:29,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:45:12,most_relevant,com.appgenix.bizcal +Mario de Sa,https://lh3.googleusercontent.com/a-/AOh14GhHS-k7SfWIUvmQdIig_V4IEy9X7bVs2AmW4cKlR60,"I have to agree that the full-screen time-draining ads are not viable for a Business Calendar, regardless of the reasoning behind it. By all means, keep the small rolling ads along the bottom of the screen or alternatively charge a more reasonable fee to go pro. £6 is not an option when there are so many other options out there, such as aCal (which I used to use before BC and am now reverting to)... I'll keep an eye on Business Calendar though because, if you change the ad situation or make the pro price more reasonable, I'll certainly be back!",2,8,2.37.9,2020-02-13 09:12:12,"Note that the free version is not ad-free. The ads contribute to further development and maintenance of this version. If you don't want to receive ads, you can consider the pro version, which is ad-free. The price is a one-time fee and you can use it without any limits. We do not consider it unreasonable considering the work invested in it.",2020-02-13 11:22:21,most_relevant,com.appgenix.bizcal +Theta Sigma,https://lh3.googleusercontent.com/a-/AOh14GhSiSz85kdxze8xzVSzdUVDtnMoF6lzZnl3zR_BTw,"This app worked well for a year. Had ads, but I was fine with that. The latest update made the ads much bigger, appearing in the task sidebar instead of banners at the top and bottom. I was annoyed but tolerated it. Then today I got a full screen video add that I couldn't close until it was through. That's too much. Deleted. Reply to reply: I know I can pay to get them removed but I don't want to support a company that pushes an update with full screen video ads you can't close.",2,19,2.37.9,2020-02-05 22:57:34,"Hi, we avoided this solution for as long as it was possible. It is not the case anymore and we need to think about further development and maintenance of this version. This kind of advertisement is a standard right now in the free apps. If you don't want to receive any ads, you can consider the pro version, which is completely ad-free.",2020-02-06 08:45:39,most_relevant,com.appgenix.bizcal +T. Zieba,https://lh3.googleusercontent.com/a-/AOh14GgO-HCBFN4mXU1ca3euKYPK1A7D24KQsc0MAjjt7A,"meh I left the ""meh"" on 2/2019. Today is 3/2020. While the calendar is ok, the ""themes"" never change and, really, are not anything of interest. They really need to be completely changed. Also, color coding helps me keep track of a lot of things I have going on...the measley 7 or 8 colors they have are TOO FEW & what?! No pink?? (A nice hot pink so it will stand out). I mean, idk, I'm still just meh... 😕",2,4,2.37.9,2020-03-15 22:35:55,"Hi, you can adjust the colors of your app and calendars to any color imaginable. As for the event color selection it is limited due to the sync and it cannot be changed.",2020-03-16 08:52:25,most_relevant,com.appgenix.bizcal +Nick Edwards,https://lh3.googleusercontent.com/a-/AOh14GiHFWBYIHSAC_0NeOqtzQeIpwUWBv7e8_EzeqeW,"I've loved using this calendar for years. My favorite feature is the bar view in the month calendar. I haven't found any other calendar app that does it this well. But recently they ruined the free version by showing full-screen pop-up ads that play for up to 15 seconds before you can get back to your work. I may have paid for the full version before they did this, but not now. If they're going to force uses to pay up $7 to remove such intrusive ads, I'll just move on to another app.",2,19,2.37.9,2020-02-11 15:55:53,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:44:51,most_relevant,com.appgenix.bizcal +Emil Partington,https://lh3.googleusercontent.com/a-/AOh14GhwLI-lhppuV94wp-wcdOSbce0dMza4Wmrskbr_Hw,"The interface is incredible! It's the perfect organizational app I've always been looking for. This is all overshadowed for me however by the fact that it is automatically attached to your email with no way to remove it. I would use this app daily if it would just exist in it's own bubble without needing to grab onto 3+ emails. Minor complaint but it really turned me off from the app, and if I had known this I would not have used it in the first place.",2,6,2.37.6,2020-01-25 09:58:34,"Hi, this issue is NOT caused by the app, but it is due to your settings of the online calendar. See here: https://appgenix.uservoice.com/knowledgebase/articles/430001-reminders-are-automatically-added-to-every-newly-c",2020-01-27 11:17:16,most_relevant,com.appgenix.bizcal +Merlin Crenshaw,https://lh3.googleusercontent.com/-KTdzD-PX4dM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNePvVNXcDFu06L8ZF0OxnMrZOZAg/photo.jpg,"If.the change log doesn't change, why would there be another pushed update which causes the date of latest update available to change . I don't understand why you.wouldnt want to distinguish that part of the update is new and part is older as you.say. For instance 'UI improvements' and 'add another widget option'.. instead of having description basically unchanged.",2,0,2.37.4,2020-02-14 16:27:09,"Hi, everything is correct here. As previously explained the update does not introduce any new functions and that is why the change log don't change. The additional update was published correctly, with some necessary background adjustments, which do not add to the functionality, but were necessary for the proper functioning.",2020-02-13 11:29:34,most_relevant,com.appgenix.bizcal +Chad Rogge,https://lh3.googleusercontent.com/a-/AOh14GjqzOTz9ikavvqXRjJNBkv6Dq90CZMnZCAhRfMxog,"Was and is a great app. Used it for years, But now the fullscreen ads are an immediate turnoff. Small ads down the bottom were fine, but forcing me to sit through a full screen ad till the timer runs out is a HUGE NO for me. Uninstalling cos there are plenty of other free calendar apps around that don't force you to wait through adverts.",2,5,2.37.9,2020-03-04 22:24:02,"Hi, we avoided this solution for as long as it was possible. It is not the case anymore and we need to think about further development and maintenance of this version. This kind of advertisement is a standard right now in the free apps. If you don't want to receive any ads, you can consider the pro version, which is completely ad-free.",2020-03-09 12:52:23,most_relevant,com.appgenix.bizcal +Nicole Lacasse,https://lh3.googleusercontent.com/a-/AOh14GhzqF4oGpuZZjcPL2wrZdTIUiCpFVJKz7G9qoabiQ,"Would've been 5 stars but the new full size ads make efficiency impossible. Those kind of ads are fine when you're playing other games, but stopping what I'm doing in a completely un related app is unacceptable. I understand the banner ads to keep it running, but the full page delayed ads pushed it too far.",2,2,2.37.9,2020-02-12 12:51:17,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:43:48,most_relevant,com.appgenix.bizcal +Mary Claire,https://lh3.googleusercontent.com/a-/AOh14GgktfMqDezVIg4Ru5YnBNjL0wVYOzwjuLAPt_Z9Zg,What I love is that I can make multiple calendars with the same account. What are some Major problems? 1. My events are not inviting or showing up on the calendars of the people who I include in the event. Sending a text message link doesn't work either. 2. I have had events disappear from my calendar without explanation. Never had this issue with any other calendar and being a person with a Very busy schedule and multiple schedules to adhere to... This is detrimental. P.S. I paid for premium,2,1,2.37.9,2020-02-22 20:22:28,"Hi, given the lack of space for answer here, could you contact our support, so that we could address your issues?",2020-02-24 10:37:17,most_relevant,com.appgenix.bizcal +Helen L,https://lh3.googleusercontent.com/-ad0sbUZWp60/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMQr2ZbeYmt4khZUyXt_n5MIljoQQ/photo.jpg,Used this app for years but the recent addition of full screen ads is too annoying. Small banner ads or something similar would be much more appropriate for a calendar app. Why would I want to look at an ad for half a minute when it should only take 5 seconds to add an appointment?,2,1,2.37.9,2020-02-27 16:24:46,"The free version is still functional as the ads appear only every 18 hours! It means it is 2/day, if you're unlucky. Otherwise you can use the app without any further disturbance. Please note, that this free version needs to be developed and maintained on the daily basis. This requires a lot of time and work. The ads help us maintain the software.",2020-02-28 09:30:52,most_relevant,com.appgenix.bizcal +Benjamin Xu,https://lh3.googleusercontent.com/a-/AOh14Gh_h_IHXoenXTj7ZIXU7g1IdozWQP9fxolM261WYg,"Have been using this app for years and have loved it. However, a recent update that includes full screen ads alsolutely kills it. I do appreciate that the developer has kept the app clean and free for the last few years. But with full screen ads, NO, sorry.",2,2,2.37.9,2020-03-05 10:24:27,"Hi, we avoided this solution for as long as it was possible. It is not the case anymore and we need to think about further development and maintenance of this version. The ads are skippable and appear only ONCE every 18 hours. If you don't want to receive any ads, you can consider the pro version, which is completely ad-free.",2020-03-09 12:45:10,most_relevant,com.appgenix.bizcal +G F,https://lh3.googleusercontent.com/a-/AOh14Gg7psqC2MpQF29VLoLLZAV_9jUc4SNBDQb2yVuYWA,"Been using for years. Just about to delete due to the full screen lengthy ads that not only appear when I add an event, they pop up when I'm using other apps. Did a scan using an ad detector app and Business Calender is the culprit. Shame as pervious ad style was OK, this is ridiculous though.",2,1,2.37.9,2020-03-05 11:00:05,,,most_relevant,com.appgenix.bizcal +Csabi Tel,https://lh3.googleusercontent.com/-GThAeDjTwIs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNWxVKT3bEDouH-WpwasBFOtiirtA/photo.jpg,"Lately the ads have doubled in frequency, have become full screen, noisy and more difficult to close, while the overall usability have decreased. Quite shame. And before telling the ""it's free"" slogan, think that annoyed people will delete, not buy.",2,0,2.37.9,2020-02-12 06:39:27,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:44:16,most_relevant,com.appgenix.bizcal +Pete H,https://lh3.googleusercontent.com/a-/AOh14GjowRHVJ-xblS1DhnXTSsxxMcMxm2XhBV7Fh3bPgA,I used to really love this app as it provides a Todo list widget that can show a lot of Todo list items compacted into a very small space. However it has started showing full screen ads when adding new items so I'm going to be looking for a replacement.,2,2,2.37.9,2020-02-09 20:07:13,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:46:19,most_relevant,com.appgenix.bizcal +William Wallace,https://lh3.googleusercontent.com/a-/AOh14GgLMEoYn37pTB0RG5hRzwAsUm4GoaF5OMUh0OKZgw,"I have had this for years and even have the pro version. Today the application is staying I do not have pro, when I go to on app purchase it even detects purchased but will not give access to pro features.",2,0,2.37.9,2020-03-23 12:39:21,"Hi, please take a look here: https://appgenix.uservoice.com/knowledgebase/articles/908211-i-paid-for-the-app-but-i-lost-the-pro-features",2020-03-24 11:01:31,most_relevant,com.appgenix.bizcal +Mark B,https://lh3.googleusercontent.com/-2JIO3Kcvi5A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMAVEIGv-e9TdzxVMqGFKRVGzGigA/photo.jpg,"A few months ago it started to fail to sync with my employer Exchange server. I used to make it work manually, but now it doesn't work even if I ""sync now"".",2,0,2.37.9,2020-03-19 19:40:37,"Hi, it might be a general sync problem and it could help to remove and re-add the account for sync in your Android OS Settings - Accounts & Sync. + +Please remember that BC doesn't have its own sync abilities and uses only those provided by Android. Therefore it cannot be responsible for any sync issues you may have on the device.",2020-03-20 09:04:33,most_relevant,com.appgenix.bizcal +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"The free version was great until now, but since they added advertisements to it (e. g. forced to watch an ad after creating an appointment) I cannot recommend it anymore, it is absolutely annoying, the Google calendar is the better alternative now.",2,1,2.37.9,2020-02-23 10:24:35,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-24 10:33:15,most_relevant,com.appgenix.bizcal +Lorelei Pang,https://lh3.googleusercontent.com/a-/AOh14GigeHUIgOST4UVD0VE9w46pyXI4UDUjgN5tCzny,There are full-size ads that block your entire screen. Incredibly disruptive and I don't want to reward that by buying pro. There are other calendar apps out there that don't deliberately disrupt your productivity.,2,2,2.37.9,2020-02-09 14:20:52,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:46:25,most_relevant,com.appgenix.bizcal +Martin Holeysovsky,https://lh3.googleusercontent.com/a-/AOh14GgAAjQGVKw19waBWTfCBfpdYQ83bf0Mq7GzpFGktDk,"Since recent update adverts make the free version absolutely unusable! I understand some adds have to be in the free version, but full screen adds are very disruptive in a calendar app when one needs to work quick :/ ..otherwise the functionality it great",2,2,2.37.9,2020-02-17 08:55:51,"Hi, please note that the free version is not ad-free. We avoided this solution for as long as it was possible. It is not the case anymore and we need to think about further development and maintenance of this version. However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard.",2020-02-18 09:07:09,most_relevant,com.appgenix.bizcal +Brianne M,https://lh3.googleusercontent.com/a-/AOh14GgEdM2BC3T976eNmimLK3jzbqTm0tFX9wkGhXwcMQ,"The font size is realy small and you can't change it without paying for the full version. Large font is a basic accessibility feature, it shouldn't cost extra.",2,0,2.37.9,2020-02-08 05:55:19,"Hi, please consider that the free version is fully functional. If you, however, require some additional functions such as fontsizes, you may consider going pro.",2020-02-10 09:39:41,most_relevant,com.appgenix.bizcal +Simon Davies,https://lh3.googleusercontent.com/a-/AOh14Gjss-n0GTxbyKPE-yJqTI0xcy-bp7FS7nAvgnoi6z0,Really disappointed with the full screen adverts now taking over this otherwise great app. Will be uninstalling and choosing another alternative app (there are plenty) big mistake by the developer!,2,2,2.37.9,2020-02-22 18:02:50,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-24 10:37:32,most_relevant,com.appgenix.bizcal +Barrie Stevenson,https://lh3.googleusercontent.com/a-/AOh14Gh-qdEXZd28bfB78MniK62fLcMlTqjTCBManbN0fg,I loved this app until the latest update. Full screen ads that you can't cancel are just too annoying. I'm outa here..,2,0,2.37.9,2020-02-09 12:18:11,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:46:30,most_relevant,com.appgenix.bizcal +Christopher Webb,https://lh3.googleusercontent.com/-hX_RpqiWQzo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN5YVmrSs9QUMylRgVPNnB_4k0xcw/photo.jpg,"App works good. But with the latest update, 25 seconds of ad.. for adding an appointment. Not recommended after the update.",2,0,2.37.9,2020-02-10 10:17:25,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:46:11,most_relevant,com.appgenix.bizcal +Jaxxon Hollis,https://lh3.googleusercontent.com/a-/AOh14GjoCRNjNKiG8n5cKEQ2r3Jat6gwlc1XjMsINDIxaw,"1) create 80 000 events to several exchange calendars 2) sync it with BC 2 mobile app 3) and you will see how ""perfect"" BC2 works All the time - ANR!! Thank you.",2,1,2.37.9,2020-02-16 21:44:21,"Hi, how do you sync Exchange? Can you provide your device information form BC - help & feedback - send feedback, so that we could test it?",2020-02-17 08:42:59,most_relevant,com.appgenix.bizcal +Shanna Yasmin,https://lh3.googleusercontent.com/-Q1fQ-vKd5B8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOdsTdb8EuFGEBPexVRGhfL3QsQNQ/photo.jpg,Loved it untill recently when it started playing adds eveytime i put in an appointment. Now ill have to get a new calender app after years of using it and loving it. Too bad.,2,0,2.37.9,2020-02-11 09:21:38,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:45:06,most_relevant,com.appgenix.bizcal +Kees H,https://lh3.googleusercontent.com/a-/AOh14GgVseiDqvYMbpEUimhkdFpGbN7Gw6UzxjXXqNe8QQ,"Used to be good, but recently it shows full screen ads which cannot be turned off",2,0,2.37.9,2020-02-21 11:10:07,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-24 10:37:50,most_relevant,com.appgenix.bizcal +Elena Artemeva,https://lh3.googleusercontent.com/-HLv90BzzHZg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOAtqE1TMsLy_R-Mp8pwPy7aJYiyQ/photo.jpg,After an update started showing really annoying full-screen ads. Been using it for quite some time. Will uninstall,2,0,2.37.9,2020-02-22 16:58:07,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-24 10:37:38,most_relevant,com.appgenix.bizcal +Patrick Vallely,https://lh3.googleusercontent.com/-NO4wYaYEKCU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPAt1eKSqY003VYCYb3refVyFu3Eg/photo.jpg,Recent update causes the widget to crash every time I go to my homescreen (on a pretty common Samsung tablet).,2,0,2.37.9,2020-02-16 02:28:35,"Hi, which widget dio you use? What happens precisely with the widget? Do you have the stock launcher installed?",2020-02-17 08:52:15,most_relevant,com.appgenix.bizcal +Tony Crimando,https://lh3.googleusercontent.com/a-/AOh14Ggim7u63VeEDOPUZgUUb84zfW2-9SPp563hsxP1QsU,"You can't set a location by name, only address. Yes I tried setting my location manually, like that would be at all useful. Do you even understand what I'm saying? I CANT TYPE IN LA FITNESS AND GET AN ADDRESS. It will just send me to whichever is closest. Setting my location wouldn't help, it would just send me to the closest one to my manual instead of one that may be further... Worthless.",2,1,2.37.9,2020-02-13 12:53:54,"Hi, did you also set the location manually in the settings -> views - day - location?",2020-02-13 12:15:51,most_relevant,com.appgenix.bizcal +Toby Lin,https://lh3.googleusercontent.com/-W7YbLUewkmA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNaMj0ERYgVJq9mq82WYqSf7bbMvg/photo.jpg,No longer the calendar i use since the intro of annoying ads and video ads... Uninstalled,2,2,2.37.9,2020-02-16 05:27:28,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-17 08:51:19,most_relevant,com.appgenix.bizcal +Andrew York,https://lh3.googleusercontent.com/-c5EVTVt5MyM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM9TQvF5Iq_gCeOLCrfPUzEHAVK1g/photo.jpg,"Multiclick spam to ""encourage"" upgrading to pro version.",2,0,2.37.9,2020-02-27 15:24:44,"Hi, please note, that the pro functions are locked within the free app. If you click on a pro function the app thinks you need it and want to buy it. This is neither spam nor encouragement to buy. You are actually actively opening the app store and beginning the purchase process.",2020-02-28 09:33:00,most_relevant,com.appgenix.bizcal +Elizabeth Cheong,https://lh3.googleusercontent.com/-dsK3OWijPBE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOZ37pQSDQR4JgzFYoo0uRGUAEorg/photo.jpg,Please remove the annoying and intrusive ads!!,2,1,2.37.9,2020-02-24 21:27:58,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-25 12:31:53,most_relevant,com.appgenix.bizcal +RJ Phillips,https://lh3.googleusercontent.com/a-/AOh14GikWGIYBhi053Yo511W2BXIuIrF_lD2G2GYBgigTWg,Overall it's a great app that I use every day but what I truly hate is I paid for the full version and since I have 3 Google accounts in my phone no matter what instructions I'm given by the developer it doesn't recognize I bought it because it defaults to the wrong account. If they fix and let me select correct amount I'll bump my rating back up. Should have an option. Sad,2,3,2.37.1,2019-12-24 19:44:53,"Did you set the correct account in your Play Store app? Did you download the free app with the account you bought the license with? Please note, that the developer is not responsible for the license activation (nor can we influence it). The license is verifies and unlocked by the app store.",2020-01-02 15:04:58,most_relevant,com.appgenix.bizcal +Daniel Frolov,https://lh3.googleusercontent.com/-uRF6rSlV5DA/AAAAAAAAAAI/AAAAAAAAFs8/AAKWJJPer6-Ujm-OkY11eEPEhSG3HBfloA/photo.jpg,"Doesn't show a content of reminder on Locked screen even if its correctly set in the Settings. Fix it and I'll change my rate. BTW, Google Calendar knows how to wake up a locked screen and show notifications",2,2,2.37.0,2019-12-19 11:58:23,"Hi, do you mean no notification is fired? If so, compare here: +https://appgenix.uservoice.com/knowledgebase/articles/1827433-why-are-my-reminders-not-working +https://dontkillmyapp.com/ + +Please note, that the app cannot wake the screen up. When you turn it on (with the device still locked) you should, however, see the notification in the bar.",2019-12-20 10:16:50,most_relevant,com.appgenix.bizcal +H Rose,https://lh3.googleusercontent.com/-v48lflCjDxk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM5-xeI9RqYpAM35GVRWhsQPA9-HQ/photo.jpg,I hated the pop up ads.,2,0,2.37.9,2020-02-10 23:59:47,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:45:19,most_relevant,com.appgenix.bizcal +Howard Lowery,https://lh3.googleusercontent.com/-UBCTIai107E/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOgaix-YYtpnlftySq1kgY-d4ERSQ/photo.jpg,It started strong then the ads were a bit much but it's free and I was thinking about buying it. Then… Events that are clearly on my Google calendar stopped showing. Suddenly. Yes they’re still on Google and show on that app. I don't like that app but I might be stuck with it. I'm sorry this didn't last but I am glad the problem developed before I bought it.,2,0,,2020-03-13 04:43:04,"Hi, do you mean past/future events? If so, this problem ISN'T caused by BC, but it's due to the sync limitation of the partner. See here: https://appgenix.uservoice.com/knowledgebase/articles/903366-i-am-not-able-to-see-past-and-future-events-in-bc +Please note, that BC doesn't have its own sync functions and it's not responsible for the sync issues",2020-03-13 11:47:55,most_relevant,com.appgenix.bizcal +Walle Wahlgren,https://lh3.googleusercontent.com/a-/AOh14GiZnB93TK3rEl2eTrxarSAZWMktT3FJbZY5CWqJ,I'm changing my rating from 5 to 2. I've used this app for many years and I love it. It's a great app! But they have recently added add on videos (skippable but still 5 seconds long.. ) after you've created or closed an event in your calendar app. It's really annoying and disgusting because you don't have time watching adds when you want to add a couple of events everyday in you schedule... You've went to far Business Calendar 2...,2,0,,2020-04-01 08:17:45,"We avoided this solution for as long as it was possible. It's not the case anymore and we need to think about its further development and maintenance. It costs time and work. The free version is still functional and ads appear only ONCE every 18 hours!If you don't want to receive ads, you can consider the pro version, which is completely ad-free.",2020-04-01 08:59:19,most_relevant,com.appgenix.bizcal +Rory DeYoung,https://lh3.googleusercontent.com/a-/AOh14GgUkAMRKYU4fOBVJR86apRs3bADIoQt1Gk8Y0EnFBc,"I used to love this app but they made the ads much more intrusive, taking over the full screen with countdown timers any time you do anything. I guess I'll go back the regular Google calendar app. Reply to developer: that'd be great if you remove the terrible ads. For now I'm uninstalling and checking out other calendar apps.",2,1,2.30.1,2020-02-14 17:38:17,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-17 08:54:56,most_relevant,com.appgenix.bizcal +Kris Xxl,https://lh3.googleusercontent.com/a-/AOh14GiczojSR-MckBk_3re5MfHzvxd1HMsW6hW8elRX,"Its the best callendar ive used. But letely its been freezing a lot, and its annoying because i use it a lot. Pls fix the freezing. Edit. 6months have passed and this is still freezing. Why? I use my calendar a lot, so i cant keep using this.",2,0,2.35.1,2020-02-28 15:17:40,"Hi, when does the app freeze precisely? Is it reproducible?",2020-03-03 11:00:49,most_relevant,com.appgenix.bizcal +Gert Steyn,https://lh3.googleusercontent.com/a-/AOh14GicDJi-3geBETxpQOCP9qExdo45Bq4mo3R8-vwxqg,"Since 2018 the app does not register some of the calander input. Apparrently due to poor internet connection. Now sitting next to the wifi router and entering all my appointments for January, needless to say none were regesterred!!!",2,0,,2020-01-14 01:05:08,"Is the calendar, you add your events to, visible in the app?",2020-01-14 09:41:37,most_relevant,com.appgenix.bizcal +Fernando Sanchez,https://lh3.googleusercontent.com/-BWuzmmD0GyM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNYUb3G84QruRCojCKmugoQIc-2OQ/photo.jpg,"This is by far the best out there but it is not reliable because if i get a new phone for whatever reason the data will not transfer to new phone (data will be lost or i will not have time to set the settings and input previous data in new phone )and that is only reason i cant trust this app. I am very upset that one flaw kills a very good app. Anyone that uses a calender heavily knows the trouble of my example. Again, by far it is a very very good calendar app.",2,0,,2019-12-12 13:08:04,"Hi, did you perform the backup of your data correctly? Please take a look here: + +https://appgenix.uservoice.com/knowledgebase/articles/904029-what-steps-should-i-take-when-switching-resetting",2019-12-13 09:20:03,most_relevant,com.appgenix.bizcal +E,https://lh3.googleusercontent.com/-rrcBjcnqCs8/AAAAAAAAAAI/AAAAAAAAF68/AAKWJJOFomwZpmNvpzS9NAc59visyxOrcQ/photo.jpg,"Actually it is a good calendar app, but on Android 10 Google calendars cannot be synched without the Google Calendar app installed on your device. You have to sync your calendar by another calendar app, or all your BC2 events will stay on your local device only. So this means, that another calendar app is required to use this calendar app, which makes this app useless at the moment. I am waiting for a fix.",2,1,2.36.2,2019-12-01 13:08:36,,,most_relevant,com.appgenix.bizcal +Sanne,https://lh3.googleusercontent.com/a-/AOh14Ggg35A85R57XgVC2vRpBV9M2Low79YB0ymk7Wh02g,"Doesn't sync properly anymore. Have been using the free version of this calendar app with my Google calendar for years without problems. But for the last half year or so, the appointments don't sync, the invites don't get sent. It has become unusable and unreliable. I have had to switch to the Google calendar app now.",2,2,2.36.2,2019-10-21 08:14:16,"Hi, please remember, that BC is not responsible for the sync of calendar data on your device. This is done by you Android. Given the problems you describe there must be a sync problem on your device. Try removing and re-adding the affected account in your Android settings.",2019-10-21 10:29:39,most_relevant,com.appgenix.bizcal +Conscious River,https://lh3.googleusercontent.com/a-/AOh14GhKZTzSc3DTHr7wgyxMTGAHvzIAoAeYeucElr33,"Loved this app, but recently noticed I really was't hearing the audio from notifications and for some unknown reason, although the notification volume for the pro version sounds loud at 100% system volume for notifications, this version (BC2) sounds half as loud, if that, to the point it's unusable because I rarely hear them. UPDATE: Just realized that for some odd reason BC2 calendar notification volume is mapped/linked to Ringtone volume and I had that lower than half volume. Please fix this.",2,2,2.36.2,2019-10-17 06:33:03,,,most_relevant,com.appgenix.bizcal +Ash Green,https://lh3.googleusercontent.com/a-/AOh14GhlnmK4SX08RHgulQ2V_jfgJ5cntQW98gF7PIryPw,Buggy as hell. Keeps duplicating events when I edit them leaving me with the old version and the new side by side. I keep deleting the old one and it keeps coming back. I'm irritated and I'm going to look elsewhere now. I loved the original business calendar but after giving it more then a fair chance this version is a no go.,2,11,2.36.2,2019-12-01 14:39:48,"Have you already tried to remove and re-add the account for sync in your Android OS Settings -> Accounts & Sync. Please note, that EMUI installed on Huawei devices cannot handle series properly. We built in a workaround, but it works only for series created in BC.",2019-12-02 09:37:24,most_relevant,com.appgenix.bizcal +Myles McSorley,https://lh3.googleusercontent.com/-rTad_M1ETcY/AAAAAAAAAAI/AAAAAAAAAIY/AAKWJJNZHwbgrBIsHDI6BqwEh3YSkurKng/photo.jpg,"Great app, but it just syncs to my google calendar making it redundant. I wanted to use this for nonpersonal task and keep it separated. While using the App I get 40 notifications because it updates my personal calendar as well. I gave 2 stars because otherwise the functionality and UI is really nice.",2,1,2.36.2,2019-11-06 17:39:37,"Hi, please note, that it is generally not possible on Android to use two calendar apps separately. They all use the same calendar storage on your device and therefore show exactly the same data. This is how Android works. for that reason we introduced the favorite bar and calendar groups to allow a quick toggle of calendars.",2019-11-07 08:48:06,most_relevant,com.appgenix.bizcal +Glenn Ouwens,https://lh3.googleusercontent.com/-3xiGGspq_BI/AAAAAAAAAAI/AAAAAAAAAD4/AAKWJJMeG4JTdejYmLU6Z6uO0WifNu801g/photo.jpg,"Does not sync. If i enter an item in the agenda. It does not sync with the widget. Sometimes it takes a whole day before it is visable in the widget. In the widget only 2 items are visable. The rest keep saying ""loading"" for days now. Even if i manually sync.",2,0,2.36.2,2019-11-25 23:30:52,"Hi, please note that the widget does not sync any data. The data must be correctly synced on your device ( and therefore shown in the main app) for the widget to actualize. Please make also sure that the system is not blocking the background processes for the app due to its settings,",2019-11-26 10:52:53,most_relevant,com.appgenix.bizcal +Maurits Lourens,https://lh3.googleusercontent.com/a-/AOh14GjPIxjQGvZdlCAa4luRVLd_OZJyqVRY2K7ZT7C9ly0,"The app is not working well since the latest update (2.37.0): the app crashes a lot when creating or editing tasks, the reminder for tasks and meeting are not working (notifications are enabled), so that makes the app useless. Reinstalling the app doesn't solve anything.",2,0,2.26.2,2019-12-23 19:36:40,"Hi, did you test the 2.37.2 update as well?",2020-01-02 15:06:00,most_relevant,com.appgenix.bizcal +Enascut Claudiu,https://lh3.googleusercontent.com/a-/AOh14GhH-sugGElHBdLhFfg5wvTyVfhGHaL3GkQteYfHlA,WHY DO notes dissapear? I pun something today and tomorrow it doesn't show up at all!!!!!!!!!!!!!!! To Answer:1)Yes 2)local 3) i go in the App-Month View-click on day box-write details+hour/all day.save.Then it shows up in the app and widget for a few hours and then it's gone .4) i have a stable internet connection . What should i do?,2,1,2.36.2,2019-11-29 11:05:07,"Hi, are the calendars activated in calendars & task lists - color box icon? Do you sync or keep your data only locally? How do you add events? Do you always have a stable internet connection?",2019-11-29 10:59:27,most_relevant,com.appgenix.bizcal +Anani Song,https://lh3.googleusercontent.com/a-/AOh14GhWB6eny2DBhH-e6J564LP52_KMEzii8FQ5Is8xAg,"There's no option to remove time rows in the widget, only an option to remove the time bar which is kinda pointless. Was hoping for a simple layout for the widget to display only days (7 days) without all those crowded rows of time displayed. Would otherwise give it a 5 star.",2,0,2.36.2,2019-10-16 03:02:03,"Hi, which widget do you use? Have you tried using the same color for both widget background and the separating lines?",2019-10-16 08:51:01,most_relevant,com.appgenix.bizcal +Tina Rodell,https://lh3.googleusercontent.com/-4Zx71sbPxbU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMuWfyTTwcugHGs9RnVuZRvkzVaEw/photo.jpg,"This an amazing calender, my only problem was I was looking for a calendar for solely for my business , because this app you must sync your calendar it becomes useless because now you have your personal calendar mix with business. Useless for that purpose I can just use my Google calendar.",2,0,,2019-12-02 04:29:30,"Hi, please note that all your calendar apps use the same storage on your device, therefore they will always show the same data. This is how Android works. For that reason we integrated the Favorite Bar function which allows you to quickly toggel the calendars.",2019-12-02 09:34:59,most_relevant,com.appgenix.bizcal +Zachary Mattson,https://lh3.googleusercontent.com/-HCr_xif45qQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM5t6czx5JUSOIbdXKWteWRTpylJA/photo.jpg,"I used to love this app. It worked flawlessly for me and it was my go-to calendar app. However, recently I am having trouble where it does not sync anything other than my single Outlook calendar, with my other calendars being visible from my phone, but not having the events also populate on my laptop. This is a huge problem for me and definitely a deal breaker. If this can't be resolved I'll have to start looking elsewhere for a calendar. It still is a nice calendar app, but if you want seemless integration between your phone and your laptop, look elsewhere.",2,11,2.32.2,2019-01-14 23:18:50,"Please remember that BC doesn't have its own sync abilities and uses only those provided by Android and cannot be therefore responsible for the sync issues on your device. It might be a general sync problem and it could help to remove and re-add the account for sync in your Android OS Settings - Accounts & Sync. +.",2019-01-15 11:48:18,most_relevant,com.appgenix.bizcal +Mark Rollins III,https://lh3.googleusercontent.com/a-/AOh14Gi6AEHS25KPBX31dIrwAmcziUKvgoaLRe__jSM4rlA,"Checked out this app in my quest to find a good solution for combining calendar events and tasks into a single, scrollable homescreen widget. --- Unfortunately, although the app has the option to repeat a task ""from the completion date,"" the functionality is broken. For example, I scheduled my test task on a Tuesday and set it to repeat every week from the completion date. The app forced there to be a day of the week listed in the repeat schedule, so that it would say something like ""repeat weekly on Thursday on completion date."" --- Now, having a day of the week and also ""from completion date"" makes no sense, so I was curious what the app would do. I set my Tuesday task to repeat every Thursday from completion date and checked it off on a Sunday. The app should have rescheduled the task for the following Sunday, but it didn't. It scheduled it for the following Tuesday and completely ignored the ""Thursday"" and the ""from completion date."" --- Sorry, Business Calendar 2, but that's just not going to work.",2,1,2.31.3,2018-10-28 12:15:55,"Hi, was the task overdue already or did you check it before the due date?",2018-10-29 16:18:39,most_relevant,com.appgenix.bizcal +Adam Eisner,https://lh3.googleusercontent.com/-z41eYUOMmQo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNwDdqsg68gyaADYNr2aWaVFsUQCg/photo.jpg,"I used to love this but now I need to pay an insane amount or have both the Pro and free versions both on my phone. ""If you already have purchased the old Business Calendar Pro, you just have to keep it installed on your device to activate all the pro features of Business Calendar 2. Unfortunately we have no possibility to automatically check, if you are a pro user of BC 1. We can only check, if the old BC Pro app currently is installed on your device. """,2,0,2.31.3,2018-12-07 16:20:17,"This is not true. As long as you keep only the Pro version of BC 1 installed, you can use the pro functions in BC 2 completely free of charge.",2018-12-07 16:13:51,most_relevant,com.appgenix.bizcal +Inssaf Sliti,https://lh3.googleusercontent.com/-cAKvnIaDoCY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOMwLVyJcP7f63K-NSof1IGOQAOzw/photo.jpg,First I liked the free version but after a while it got annoying with all the advertisements,2,0,2.35.0,2020-03-02 04:02:13,"The free version is still functional as the ads appear only every 18 hours! It means it is 2/day, if you're unlucky. Otherwise you can use the app without any further disturbance. Please note, that this free version needs to be developed and maintained on the daily basis. This requires a lot of time and work. The ads help us maintain the software.",2020-03-03 10:57:12,most_relevant,com.appgenix.bizcal +Markos Fragoulopoulos,https://lh3.googleusercontent.com/a-/AOh14GheBVrFqN1zQcLETWHIFkSJmC2dVrqJKF4wHVQYqQ,"It was good but I guess Google is sabotaging it, so I lost a couple of notifications. Removed it and started using Google calendar and notifications are now ok. Sorry. I have uninstalled the program since I missed an important appointment I can no longer trust it. Probably the solution you provide works, but I think it you should force the user to check those settings on start so one doesn't miss appointments.",2,2,2.25.1,2018-11-14 15:47:40,"Most of the settings are Android settings and they will apply to any other calendar app on your device. We cannot force our users to change the settings which are not app settings. The user can freely decide on the Android device setup. +https://appgenix.uservoice.com/knowledgebase/articles/1827433-why-are-my-reminders-not-working",2018-11-14 18:39:55,most_relevant,com.appgenix.bizcal +Sharon J,https://lh3.googleusercontent.com/-5iXbTuy3eT4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM57m_bv2NLf4sX4JXWW6w84zeN0Q/photo.jpg,"After the last update I had to clear the cache & data, clear the cache partition, then lose all my events to stop the double notifications/reminders. This has been a great app for many years and this is the first time I've had trouble with it. It was a pain to go through all that to fix it but that's how much I like this app. I have a Galaxy S9+ with latest IO update. UPDATE: No matter how I set my reminders, the maximum # I could get it to alert was two. I gave up & went back to BC Pro. Ugh!",2,8,2.33.1,2019-03-22 21:08:55,"Hi, please contact our support directly so that we could better communicate. + +You need to set the reminder sound in the settings - reminders - general - reminder sound. + +As for the double reminders, you simply need to deactivate the reminder function in the settings of one of those apps.",2019-03-25 11:44:44,most_relevant,com.appgenix.bizcal +Jonathan Heck,https://lh3.googleusercontent.com/-_0DW5sa0QH0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN4F6cy1CRBbS3ck0efFCGEqRiTwg/photo.jpg,"Having problems. The app is not syncing anymore with my Google calendar. I double-checked the settings gs and permissions and tried to force a sync, still no good. It is set to auto sync every 3 hours.",2,0,,2019-11-06 23:52:39,Please remember that BC doesn't sync on its own. It uses Android function to sync data. Android requires the presence of a sync partner. The sync partner is responsible for the sync intervals. There might be a general sync problem and it could help to remove and re-add the account for sync in your Android OS Settings - Accounts & Sync.,2019-11-07 08:46:14,most_relevant,com.appgenix.bizcal +ted clark,https://lh3.googleusercontent.com/-enMLlt2-xIM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJME6OmTYuBBs6Fj0MQquWgsVEIDHA/photo.jpg,"I thought BC2 was going to be very good for my multiple personal projects. It looked well developed, and at first its help looked good. But I had to abandon it because its help turned out to be useless -- it never mentioned any issue I needed answered as a learner of the program. Thus I just could not learn the program. The help may be better for other people.",2,1,2.32.2,2019-01-09 03:07:59,What are the problems that you experience? Can we help you somehow?,2019-01-09 10:35:12,most_relevant,com.appgenix.bizcal +Haani Ja'waan,https://lh3.googleusercontent.com/a-/AOh14GinsDtDLfcIf1KbMYbrGGHvHK36JR2qeZTKJej3gw,"Very nice app with a bad drawback: today's repetition for a recurring task will not appear unless I mark yesterday's task as done! Here's how this is very bad for me: - I have many recurring daily tasks, and it's a very tedious job to mark all my recurring tasks as done, even those that were NOT done! It gets much worse if I don't use the app for a few days! Then I have to mark all recurring tasks as done for every and each previous day!!!! - The app forces me to record false information! A task that was not done on a specific day, should stay there as NOT done, and the recurring task should be generated for the following day. - You have only 3 options for a recurring task: 1) to mark it as done in order for it to appear on the following day. 2) not to mark it as done, and it will never ""recur""! 3) to delete, and it disappears, and naturally, it will never ""recur""! A recurring task should recur, regardless of marking or not marking the previous repetition as done!",2,1,,2018-12-01 02:40:34,"Hi, feel free to post your suggestions in our user forum + +https://appgenix.uservoice.com/forums/280499-business-calendar-2 + +where other users can vote and comment on them as well and we might consider it for the future.",2018-12-06 11:15:29,most_relevant,com.appgenix.bizcal +Giulio reina,https://lh3.googleusercontent.com/-rK8Vq1uAI44/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMGHXBXbCU-YaxN2BuM3eY320yuGw/photo.jpg,"Main issues to solve: 1) in the icon app there isn't the indication of current day. Would be very useful to have it instead of the standard BC violet icon 2) there isn't the possibility to set two different time zone in the fields ""from"" and ""to"" in the same event. It would be very useful to set fights event with different time zone. 3)the location link should be synchronised with Google maps results, not with the contacts, in order to have the right response for the addresses. Please update",2,4,2.33.1,2019-03-19 09:16:01,"Hi, 1. see here: https://appgenix.uservoice.com/knowledgebase/articles/895509-how-can-i-make-the-app-icon-show-the-current-date +2. you can vote for the idea in our use forum and we might consider the integration for the future. Refer: https://bit.ly/2JTj0eu +3.it is possible. Did you set your app correctly? See: https://bit.ly/2VIkM8J",2019-03-19 12:49:33,most_relevant,com.appgenix.bizcal +Rikk Clark,https://lh3.googleusercontent.com/a-/AOh14GgmVKyrCy34r1icLBbY7NDLK8CXAWj0rBkto6nqpw,Would have been nice to explore more features without having to go pro right out of the gate. I'm not down to pay for something that supposedly works without trying it for myself. Could have easily enabled more options that entices the user other than the bare bones vs. I'll stick with Google for the time being,2,0,2.31.3,2018-11-16 03:29:31,"Hi, please remember that Google Play Store doesn't allow a trial period for the app with in-app purchases. This is the policy of the store which we can't influence. please, however, contact our support and we will find a solution for you.",2018-11-16 12:24:55,most_relevant,com.appgenix.bizcal +C Clare,https://lh3.googleusercontent.com/-9BBgXU7FOY0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPNF3dLE_EaNpOiLiY_QxI6FrNMdg/photo.jpg,"The app doesn't sync after making changes on my Google calendar, even after hitting the sync now on the app",2,0,,2020-03-10 05:57:11,"Hi, it might be a general sync problem and it could help to remove and re-add the account for sync in your Android OS Settings - Accounts & Sync. + +Please remember that BC doesn't have its own sync abilities and uses only those provided by Android. Therefore it cannot be responsible for any sync issues you may have on the device.",2020-03-10 09:57:20,most_relevant,com.appgenix.bizcal +Nurul Ainina Mustafa Kamal,https://lh3.googleusercontent.com/a-/AOh14GjlDnvj6xyAe3PJPflKWKxoJ_RN8PToAhFAH-4qwnE,"it was good until the recent updates. i installed this app because of its widget. however, the recent update destroyed everything that i have customised. there are a lot of setting to make the widget looks good but the update limited the setttings. i event went all out in purchasing the app thinking it could be like it used to be, maybe i can change it back with unlimited setting, but it's not as good as before. im disappointed",2,1,2.33.2,2019-04-28 22:20:48,"Hi, please take a look here: https://appgenix.uservoice.com/knowledgebase/articles/908211-i-paid-for-the-app-but-i-lost-the-pro-features",2019-05-02 11:19:47,most_relevant,com.appgenix.bizcal +Stephan Lehmann,https://lh3.googleusercontent.com/-xYGMQwJuyj0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPjTAshBomDQEOD4UINNdPsebkwrA/photo.jpg,Gtasks Sync doens´t work. Calendar Sync is ok,2,0,2.37.0,2019-12-18 23:46:36,"Hi, we have already identified the problem and the solution will published in next update. In the meantime we made some adjustments on the server side, which minimize the problem even without an update",2019-12-19 11:41:39,most_relevant,com.appgenix.bizcal +Reynard,https://lh3.googleusercontent.com/a-/AOh14Gj8X4URO1GQwfv2xC-abqWYpuqa9OR_yfurz8bjTQ,"This app just ""disappeared"" two of the recent events I listed in, both weddings. Luckily I thought of rechecking a day after inputting them. This has happened a couple of times already. Too unreliable for work appointments, I might get fired when I rely on this app's widget for work appointments. Close to uninstalling, after I check out a good replacement",2,8,2.31.1,2018-09-29 02:20:00,"It is a problem of Google. We've contacted other calendar app developers and they are experiencing the same problems. It especially happens right after the sync of events created with no or low internet connection. That is why, we all suspect that there must be something wrong with the Google sync, which we unfortunately can't influence.",2018-10-01 13:05:38,most_relevant,com.appgenix.bizcal +Chun Hou Wong,https://lh3.googleusercontent.com/-tSwPvcK7pr4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPBzoMDWoL_dqIW_Kb19vk_HCj56w/photo.jpg,"Wonderful app with nice visual hierarchy, but now ads take over the entire screen",2,0,2.35.1,2020-02-13 11:38:17,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:43:09,most_relevant,com.appgenix.bizcal +Bryson Overstreet,https://lh3.googleusercontent.com/-q4hZgAt6l2U/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNMdEgFcqus0q7YG3vQPjOl_EOJoA/photo.jpg,Use to love this app as I've had it for well over a year. Just recently it magically deleted all my appointments with no way of getting them back. Tried everything from resetting to reinstalling no resolution. I paid for the app so was a little disappointed that I have to look for another app and reenter all my appointments (20+ a day),2,12,2.34.2,2019-07-03 11:29:28,"Hi, did you sync your calendar or kept them only locally? In the latter case have you ever backed your data up? + +Please refer here: https://appgenix.uservoice.com/knowledgebase/articles/1912096-my-calendar-data-is-suddenly-gone-how-can-i-recov",2019-07-03 12:49:44,most_relevant,com.appgenix.bizcal +Blightlotus,https://lh3.googleusercontent.com/-qI0Sd0t9Y3o/AAAAAAAAAAI/AAAAAAAABdg/AAKWJJPZKw2LKnrFzC6blADuYLjNxm_6Qg/photo.jpg,"Using Google Pixel 2 and paid for full version...sometimes the day on the calendar doesn't update. I dont want to have to restart my phone everday. A workaround would be to press the refresh button on the calendar, but i dont like having to do that every day.",2,2,2.35.0,2019-07-25 17:25:20,"Hi, do you close the app properly over night? Just make sure the app is closer properly and it will correctly update the date.",2019-07-26 11:11:06,most_relevant,com.appgenix.bizcal +Johnny Smith,https://lh3.googleusercontent.com/-bDwO39Ah9N8/AAAAAAAAAAI/AAAAAAAAAaI/AAKWJJPUnaF-7YUXNDdB6s4u1JWfDqAUKA/photo.jpg,Original Review: Frequent INTRUSIVE POP-UNDER links open a web browser where they subject customers to crazy ads 12-12-18 Response to DEV's: The POP-UNDER ADS happen as a result of selecting a response to an APP message related to the action taken within the APP. I am NOT ACTIVELY SELECTING an AD. I am NOT PASSIVELY SELECTING an AD. I am NOT ACCIDENTALLY SELECTING an AD. This is either a BUG or an INTENTIONALLY DEVELOPED annoyance.,2,0,2.31.3,2018-12-12 09:37:36,"There are absolutely NO POPUP ADS coming from our app. This notification is therefore not activated by our app and it cannot be a bug on our end, nor it is an intentionally developed item. +I suspect the information is synced form other source or is triggered by another app. Send us a screenshot of the popup an maybe we will be able to help you out",2018-12-12 12:37:50,most_relevant,com.appgenix.bizcal +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"A glorified ""stock calendar"", as Tech Support calls it (the native Calendar app). Forget it if you have an Outlook calendar; notwithstanding what appears on the app, only Exchange is supported. Seems they spent more time on bells and whistles than the underlying architecture of the app",2,0,,2019-02-22 15:19:03,"Hi, please consider that the app is not syncing absolutely any calendar data. If you sync with Outlook app, not other calendar app using Android sync, will be able to see this data. The Outlook calendar doesn't rely on Android Sync anymore and is therefore blocking the access to the data.",2019-02-25 14:19:07,most_relevant,com.appgenix.bizcal +marylee foreman,https://lh3.googleusercontent.com/-JYapac8jMrw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMWu7_aKL3Nwdz0GyeCCyLDsnPdUA/photo.jpg,"Don't like it much Event, Task, Favorites at the bottom confusion. Entering data is tedious too selected hide for completed task it may have deleted them. Need simple customization features and I HATE the computer time task settings which it uses. pros easy to read overview. Thx. mbf",2,1,2.33.2,2019-04-21 11:16:50,"Hi, you can disable favorite bar (uncheck all the star icon in calendars and task lists). you also do not need to set the times for you tasks.",2019-04-23 14:56:45,most_relevant,com.appgenix.bizcal +Nick Ray,https://lh3.googleusercontent.com/a-/AOh14Gg1k2KjOlX3n9_JIxj0cbPeq_npmO7bsfpez7zP,Great for neat month view. Unfortunately it has started notifying event reminders AFTER the event? Not good.,2,0,2.36.2,2019-11-19 21:49:46,"Hi, have you already checked all the settings mentioned in the article below? + +https://appgenix.uservoice.com/knowledgebase/articles/1827433-why-are-my-reminders-not-working",2019-11-20 11:48:00,most_relevant,com.appgenix.bizcal +Thomas of the Cosmos,https://lh3.googleusercontent.com/a-/AOh14GiszvuxQR82iR3qRP2SIR5qPXLNK1Jy-udHb19r3g,Would be great but almost everything you need to customize it when you first install it is pro only. You can't customize font settings - it's pro. You can't import old calendars - it's pro. How am I supposed to start using your app then?,2,1,2.35.0,2019-07-28 09:35:01,"Hi, the free version is fully functional and can be used without any charge. If you, however, require some additional feature, you may consider going pro.",2019-07-29 07:48:40,most_relevant,com.appgenix.bizcal +Leo Martinez,https://lh3.googleusercontent.com/-IEki3U_bzi0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP5pE0wQhnHI8qREVTahwBPf9zXDg/photo.jpg,"aCalendar > Business Calendar > Tiny Calendar > Tick Tick Pro aCalendar's design, featurr and logic is from 2004 Business Calendar is better but still stupid and feels like from 2010 Tiny Calendar really improves from the 2 above. Nice modern design and good drag/drop feature but still suffers the same wrong logic and bad design as Business Calendar. Tick Tick is the modern calendar that wins because its designed with modern logic designed with proper modern features. Less touchpoints and jus",2,0,,2019-08-11 05:26:59,What are the issues that you experience with BC 2? Do you look for any particular functions?,2019-08-12 11:59:16,most_relevant,com.appgenix.bizcal +Ezeldin Fayed,https://lh3.googleusercontent.com/-wTHpzwKcK-4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN0FSy2kbffVm38LtT_uiE18-3pRA/photo.jpg,better than Google calendar but has bugs/for example it keeps restoring deleted events after i delete them/i cleared cache memo and restarted phone/useless/still the same banana. update/yes i did remove Gmail account but no use/it seems a bug between localhost and oppo accounts as it shows both colors for the same birthday/btw i tested removing oppo account or localhost then i get a bug free part of the calendar but it bugs again after that part. update/yes 2 entries but for a certain period.,2,0,2.33.2,2019-05-03 09:44:57,Please remember that BC doesn't have its own sync abilities and uses only those provided by Android. Therefore it cannot be responsible for any sync issues you may have on the device.,2019-05-06 08:19:32,most_relevant,com.appgenix.bizcal +Connor Mangus,https://lh3.googleusercontent.com/a-/AOh14GgPaFJJ54xOKFRHOHYikDm7mryiq9tC6lsgqUxc,"first time opening good experience. Everything from google calendar was synced, then stacked up my events for the day. Opened the app a few hours later and absolutely everything was blank. And you have to pay $7 to be able to drag and drop your events.",2,0,,2019-07-10 14:29:25,"Hi, are the calendars activated in calendars & task lists - color box icon? The drag & drop is one of the pro functions which will be unlocked when you buy the license. Please note, that it is a one-time fee and it is valid without any limits as long as you use the same account and app store.",2019-07-11 10:00:20,most_relevant,com.appgenix.bizcal +Alisa Edmonds,https://lh3.googleusercontent.com/a-/AOh14GiO7GT5pQ9NlrBx3IDwnI8V81Eitf35yuopLZACpA,"Every entry gets copied so I end up with 2 of everything, one in the color I designate and the other in the standard color. If I delete 1 I loose both. I used this calendar for years for my business and loved it but the latest update killed it.",2,0,2.30.1,2018-09-19 12:52:56,"Hi, does your stock calendar have the same issue? What do you sync with? Have you maybe tried removing and re-adding the affected account in the Android OS settings - accounts & sync?",2018-09-19 16:44:48,most_relevant,com.appgenix.bizcal +Rebecca Rapira-Davies,https://lh3.googleusercontent.com/-rgK0YiRiwP8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPPjsMjJgqSJ1XaoRinKJS-W6ahJw/photo.jpg,Great features and easy to use but have uninstalled it as I get constant messages that it is using intensive amount of battery in the background.... Which it is was. Battery life much improved with it gone. Such a shame.,2,0,,2019-03-21 17:33:18,"Hi, did you allow the app to run in background? This could have been a reason of the messages.",2019-03-22 09:00:14,most_relevant,com.appgenix.bizcal +Bart Polot,https://lh3.googleusercontent.com/a-/AOh14GjoQDDWyKkYLcm3ehpr23DvzCbojyOnvXdJRNDiBg,"Office 365 integration doesn't work, so it's basically useless as a business calendar. As a private calendar I don't see any big improvement over Google calendar,but it's not worse either.",2,0,2.31.1,2018-10-12 19:40:33,"Hi, please remember that BC doesn't have its own sync abilities and uses only those provided by Android. Android DOES sync with Outlook. Please make sure, that you set up the account correctly.",2018-10-15 15:22:42,most_relevant,com.appgenix.bizcal +Ron Jarrah,https://lh3.googleusercontent.com/a-/AOh14Gi0r_pWdWqsjlfQ6A058HWhN8p4p7Oy064rFC3z7g,"Great App with one major flaw. When entering addresses and selecting from the drop down options, the house # disappears and leaves only the street, city, and state without the actual house or business number. This is a huge problem for me.",2,6,2.35.1,2019-10-01 14:37:50,,,most_relevant,com.appgenix.bizcal +bella cosper,https://lh3.googleusercontent.com/a-/AOh14GibaO7jVqSQ31pYUY60kGEHDA29WD9jTDRB-BXnVQ,Good - the only thing it has that isn't on my Samsung cal is Agenda view. Crappy- My SCal has dark mode. BusCal - you can basically F off if you're vision impaired. Font size & dark mode are paid only. Not fun to test drive in the bright white light. UNINSTALL...,2,0,2.35.1,2019-09-12 17:43:43,,,most_relevant,com.appgenix.bizcal +Chad Baker,https://lh3.googleusercontent.com/a-/AOh14Ggqo5F-jiwHGOa8MR6OxjLQcua-xVAdM_XehbHeoQ,All the professional options i need. alerts as alarms is REALLY helpful for people who get desensitized from too many notifications. UPDATE alerts as alarms suddenly stopped working! i am missing appointments!,2,0,2.26.2,2019-03-02 17:10:49,"Hi, there are various settings, which influence the reminders: + +https://appgenix.uservoice.com/knowledgebase/articles/1827433-why-are-my-reminders-not-working",2019-03-04 12:38:56,most_relevant,com.appgenix.bizcal +Linda Mikacic,https://lh3.googleusercontent.com/a-/AOh14Ghg91FvYxHoKV7pL5H5EEWUWdn4uyk2e_M7Nmo8,"It used to be a great app, but since you took away ability to change/delete a single event in a series of the recurring events - it's not good for me any more 😞",2,1,2.31.3,2018-11-07 17:05:09,"Hi, it is possible: https://appgenix.uservoice.com/knowledgebase/articles/359224-i-would-like-to-edit-or-delete-a-single-event-of-a",2018-11-08 17:19:23,most_relevant,com.appgenix.bizcal +Jasvir Kaur,https://lh3.googleusercontent.com/a-/AOh14Gjxp-TBH1o1nr18lasqnQH-5OIWPiIh61bEFJIhXA,I liked this app BUT stop deleting events I add on. I can't keep re-adding events every hour. I'm getting frustrated and will have to uninstall unless it's corrected.,2,1,2.31.1,2018-10-14 10:13:21,Please remember that BC doesn't have its own sync abilities and uses only those provided by Android. Therefore it cannot be responsible for any sync issues you may have on the device. Your problem is caused by Google. Make sure you add your events when on wifi.,2018-10-15 15:19:16,most_relevant,com.appgenix.bizcal +Quang Dang,https://lh3.googleusercontent.com/-uDwF-ZEzKuQ/AAAAAAAAAAI/AAAAAAAAAK0/AAKWJJMa-q7WxA4-1XO8yNi1arYy-S4S8A/photo.jpg,"Calendar setting are changing from one day to another, has to reset them everyday. Plus widget settings is separated from the app setting which is somehow cumbersome.",2,1,2.33.0,2019-02-14 10:31:27,"Hi, unfortunately we don't have enough space to give you the detailed instructions. Could you contact our support directly ( BC 2 - help & feedback - send feedback) and we will tell you what to do?",2019-02-14 12:06:34,most_relevant,com.appgenix.bizcal +Nick Moutzouris,https://lh3.googleusercontent.com/-cDZIwUx_APM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM8ZKHuiuK5DEmGU5DSCXeqzow_Bw/photo.jpg,"everytime I snooze an event it disappears.....this calendar is useless. Maybe I did not explain properly....it does not dissapear as in not in my calendar as an event....when I have set a ""Reminder"" alarm at I get a notification pop up, I snooze it for 30min I do not get another reminder in 30 min.",2,2,2.35.1,2019-08-03 13:16:21,"Hi, have you already checked all the following? +https://appgenix.uservoice.com/knowledgebase/articles/1827433-why-are-my-reminders-not-working +Can you also send us your device information from BC - help & feedback - send feedback, so that we could test it on our end?",2019-08-05 15:17:59,most_relevant,com.appgenix.bizcal +Michael Schille,https://lh3.googleusercontent.com/-FKiwBIH35Qc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNhQWhgO6a51R-tat0jp0OGf_5kDQ/photo.jpg,"The only thing I can't stand is every time I get a notification, I get two notifications for the same event. I sure it's a setting but I can't find it.",2,1,2.34.2,2019-06-02 04:15:45,"Hi, is it possible that you get the notifications from 2 calendar apps? If this case you need to disable the function in one of them.",2019-06-03 10:27:38,most_relevant,com.appgenix.bizcal +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Permissions; it's all or it's none (won't operate). Attachments; can't do it unless you go into a desktop PC browser on Google Calendar,2,0,2.31.3,2018-11-19 06:07:42,"Hi, only the calendar storage permission is necessary. Without this permission any calendar app cannot work properly as it can't read and save events. Other permissions are not mandatory. +We are also currently working on the attachment function.",2018-11-19 10:57:38,most_relevant,com.appgenix.bizcal +Tomasz Wawrzczak,https://lh3.googleusercontent.com/a-/AOh14GjAWe9rd5FOnjFNwBG-_xeq0rl3CvyYP9TolHgjurU,Doesn't show a files attached to the event using Google Calendar.,2,0,2.36.2,2019-11-27 13:51:54,"Hi, it is possible. Did you set your device correctly up? Take a look here: https://appgenix.uservoice.com/knowledgebase/articles/1923775-attachments",2019-11-28 10:54:48,most_relevant,com.appgenix.bizcal +Nancy Skydancer,https://lh3.googleusercontent.com/-gEzRjUJ6Rok/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPf3aF0WXiMbgJJQ-sEzwNsfvNzvw/photo.jpg,I loved this until recently. Many entries disappear! Panic attack! I can't count on it anymore. What gives?,2,0,,2019-08-25 10:58:24,"Hi, do you sync? How do you add events? Do you always have a stable internet connection? Is the calendar you add events to activated for the preview? + +https://appgenix.uservoice.com/knowledgebase/articles/1912096-my-calendar-data-is-suddenly-gone-how-can-i-recov",2019-08-26 08:29:16,most_relevant,com.appgenix.bizcal +Sandra,https://lh3.googleusercontent.com/a-/AOh14GihbWA32NF8G1Kc8OH-Xss-qXqktrvXFGH08oIiCg,"Not a power user with a massive calender of events, so I don't need the full blown pro version, but there are a lot of basic features under pro only. No Thanks",2,1,2.33.2,2019-05-24 02:06:52,"Hi, please consider that the free version is fully functional and can be used without any charge. If you, however, require some additional functions, you may consider going pro.",2019-05-24 08:17:37,most_relevant,com.appgenix.bizcal +bliss eaton,https://lh3.googleusercontent.com/a-/AOh14Gi7wI_IG8xJKFUtnawNu8UpYXWTkK6puiut3LtXlw,Like the look but it messes up straight away. Instead of saving an entry the app cashed and deleted it instead. Don't get!!,2,1,,2019-09-25 15:08:08,"Hi, this sounds unusual. Did you grant the calendar storage permission? Without this permission the app cannot access the storage and therefore your events cannot be saved.",2019-09-26 09:05:20,most_relevant,com.appgenix.bizcal +Andreas Orfanos,https://lh3.googleusercontent.com/-S4BluStaT5o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPdMc49-tMDdta6QrVSfJTGoKjoHQ/photo.jpg,Get multiple entries of same appointment! Problem is with Outlook and Exchange 360 occurs with other calendars too.,2,0,2.35.0,2019-07-26 10:54:10,"If you have the problem in other apps, it is clearly not a problem of BC. Do you have any technical issues with the app which would explain your review?",2019-07-26 11:09:02,most_relevant,com.appgenix.bizcal +Moltak111,https://lh3.googleusercontent.com/a-/AOh14Gj6fzb0WR2QZC2AUxKbvVwQVmENBL3KgAjMgAd7xg,Such a cool app with deal breaking bug. This calendar app could be perfect for me but notifications simply refuse to work.,2,0,2.35.1,2019-08-08 05:34:57,"Hi, there are various settings which influence the reminders. See here: https://appgenix.uservoice.com/knowledgebase/articles/1827433-why-are-my-reminders-not-working",2019-08-08 11:02:32,most_relevant,com.appgenix.bizcal +D 21,https://lh3.googleusercontent.com/a-/AOh14GgPix_fd5QhFZuzOdooonw2ZNS7DB3y_07ChQQ,It doesn't allow the ability to automatically set reminders when creating a new event. I use both the Google Calendar app and Business Cal Pro and they both allow the ability to automatically set reminders. And yes I have this setting enabled in my Google Calendar web Settings. This is an important feature that's missing!,2,0,2.37.9,2020-04-04 14:29:00,"Hi, it is possible. You can set the standard reminder for new events/tasks /birthdays in BC. What is more, the reminder set in your web calendar can be also synced by your Android device and are therefore accessible in BC.",2020-04-06 13:43:25,newest,com.appgenix.bizcal +Walle Wahlgren,https://lh3.googleusercontent.com/a-/AOh14GiZnB93TK3rEl2eTrxarSAZWMktT3FJbZY5CWqJ,I'm changing my rating from 5 to 2. I've used this app for many years and I love it. It's a great app! But they have recently added add on videos (skippable but still 5 seconds long.. ) after you've created or closed an event in your calendar app. It's really annoying and disgusting because you don't have time watching adds when you want to add a couple of events everyday in you schedule... You've went to far Business Calendar 2...,2,0,,2020-04-01 08:17:45,"We avoided this solution for as long as it was possible. It's not the case anymore and we need to think about its further development and maintenance. It costs time and work. The free version is still functional and ads appear only ONCE every 18 hours!If you don't want to receive ads, you can consider the pro version, which is completely ad-free.",2020-04-01 08:59:19,newest,com.appgenix.bizcal +Jay Porter,https://lh3.googleusercontent.com/-KxaG61tshPo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM4CB9z4_xnQBC2CYUOO6wR4bpOVg/photo.jpg,It was good until they introduced long adverts every time you add an entry.... How to annoy your users ! I won't be forced to pay... I have given good feedback in the past and good feedback encourages others to pay now you have decided to make the free version really annoying to use you are creating bad feedback! Good luck,2,1,2.37.9,2020-03-24 14:39:35,"The free version is still functional as the ads appear only every 18 hours! It means it is 2/day, if you're unlucky. Otherwise you can use the app without any further disturbance. Please note, that this free version needs to be developed and maintained on the daily basis. This requires a lot of time and work. The ads help us maintain the software.",2020-03-24 15:49:22,newest,com.appgenix.bizcal +RitzierMist2795,https://lh3.googleusercontent.com/a-/AOh14GiNMzllnL6zeNjCP1sH52RZV4UDvgh5-SmIFElg,Pls give us dark theme cost-free so my eyes won't die using this app,2,0,2.37.9,2020-03-23 18:55:27,"Hi, the 22 personalized themes are the part of the pro pack. Not only can you choose a theme, you can also adjust it to your needs: https://appgenix.uservoice.com/knowledgebase/articles/881544-themes-and-background-colors",2020-03-24 11:00:36,newest,com.appgenix.bizcal +William Wallace,https://lh3.googleusercontent.com/a-/AOh14GgLMEoYn37pTB0RG5hRzwAsUm4GoaF5OMUh0OKZgw,"I have had this for years and even have the pro version. Today the application is staying I do not have pro, when I go to on app purchase it even detects purchased but will not give access to pro features.",2,0,2.37.9,2020-03-23 12:39:21,"Hi, please take a look here: https://appgenix.uservoice.com/knowledgebase/articles/908211-i-paid-for-the-app-but-i-lost-the-pro-features",2020-03-24 11:01:31,newest,com.appgenix.bizcal +Mark B,https://lh3.googleusercontent.com/-2JIO3Kcvi5A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMAVEIGv-e9TdzxVMqGFKRVGzGigA/photo.jpg,"A few months ago it started to fail to sync with my employer Exchange server. I used to make it work manually, but now it doesn't work even if I ""sync now"".",2,0,2.37.9,2020-03-19 19:40:37,"Hi, it might be a general sync problem and it could help to remove and re-add the account for sync in your Android OS Settings - Accounts & Sync. + +Please remember that BC doesn't have its own sync abilities and uses only those provided by Android. Therefore it cannot be responsible for any sync issues you may have on the device.",2020-03-20 09:04:33,newest,com.appgenix.bizcal +T. Zieba,https://lh3.googleusercontent.com/a-/AOh14GgO-HCBFN4mXU1ca3euKYPK1A7D24KQsc0MAjjt7A,"meh I left the ""meh"" on 2/2019. Today is 3/2020. While the calendar is ok, the ""themes"" never change and, really, are not anything of interest. They really need to be completely changed. Also, color coding helps me keep track of a lot of things I have going on...the measley 7 or 8 colors they have are TOO FEW & what?! No pink?? (A nice hot pink so it will stand out). I mean, idk, I'm still just meh... 😕",2,4,2.37.9,2020-03-15 22:35:55,"Hi, you can adjust the colors of your app and calendars to any color imaginable. As for the event color selection it is limited due to the sync and it cannot be changed.",2020-03-16 08:52:25,newest,com.appgenix.bizcal +Howard Lowery,https://lh3.googleusercontent.com/-UBCTIai107E/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOgaix-YYtpnlftySq1kgY-d4ERSQ/photo.jpg,It started strong then the ads were a bit much but it's free and I was thinking about buying it. Then… Events that are clearly on my Google calendar stopped showing. Suddenly. Yes they’re still on Google and show on that app. I don't like that app but I might be stuck with it. I'm sorry this didn't last but I am glad the problem developed before I bought it.,2,0,,2020-03-13 04:43:04,"Hi, do you mean past/future events? If so, this problem ISN'T caused by BC, but it's due to the sync limitation of the partner. See here: https://appgenix.uservoice.com/knowledgebase/articles/903366-i-am-not-able-to-see-past-and-future-events-in-bc +Please note, that BC doesn't have its own sync functions and it's not responsible for the sync issues",2020-03-13 11:47:55,newest,com.appgenix.bizcal +C Clare,https://lh3.googleusercontent.com/-9BBgXU7FOY0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPNF3dLE_EaNpOiLiY_QxI6FrNMdg/photo.jpg,"The app doesn't sync after making changes on my Google calendar, even after hitting the sync now on the app",2,0,,2020-03-10 05:57:11,"Hi, it might be a general sync problem and it could help to remove and re-add the account for sync in your Android OS Settings - Accounts & Sync. + +Please remember that BC doesn't have its own sync abilities and uses only those provided by Android. Therefore it cannot be responsible for any sync issues you may have on the device.",2020-03-10 09:57:20,newest,com.appgenix.bizcal +Andrea Hodgkinson,https://lh3.googleusercontent.com/-bJttO8yvc-0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJObuTvYcL9T26luqiCAe7swfT1Gvg/photo.jpg,"UPDATE: I know it's a one time fee as stated, that I had already paid. Same acct now I don't have pro. I've had it for a while now and had purchased the pro version right away. My reason for giving 2 star now is all of a sudden it tells me I do t have the pro feature anymore that is supposed to be a 1 time payment. 😠 Also, if there was a desktop version that would be majorly useful! Disappointed that I would have to pay for pro again if I wanted to continue those features.",2,4,2.37.9,2020-03-09 12:59:50,"Please note that it is not the app, but your app store, which is responsible for the unlocking of the license. Have you already cleared the data of the Play Store app as the article below suggests?https://appgenix.uservoice.com/knowledgebase/articles/908211-i-paid-for-the-app-but-i-lost-the-pro-features",2020-03-10 09:59:58,newest,com.appgenix.bizcal +Sylvain Riondet,https://lh3.googleusercontent.com/a-/AOh14Gj2w76MtTV4TFJ95j-yrJdd0J46org2ZtaxjQup1Q,"I have used this awesome app for 3 years at least. Sleek, convenient, powerful. But the recent updates just bring more and very intrusive ads. If that is not reverted soon, I will have to change app. Pissed by how awesome app become awful because someone wants to make money out of other's great job. And thanks for your copy pasted answer 🙏",2,2,2.37.3,2020-03-08 08:38:27,"Hi, we avoided this solution for as long as it was possible. It is not the case anymore and we need to think about further development and maintenance of this version. This kind of advertisement is a standard right now in the free apps. If you don't want to receive any ads, you can consider the pro version, which is completely ad-free.",2020-03-09 12:37:46,newest,com.appgenix.bizcal +G F,https://lh3.googleusercontent.com/a-/AOh14Gg7psqC2MpQF29VLoLLZAV_9jUc4SNBDQb2yVuYWA,"Been using for years. Just about to delete due to the full screen lengthy ads that not only appear when I add an event, they pop up when I'm using other apps. Did a scan using an ad detector app and Business Calender is the culprit. Shame as pervious ad style was OK, this is ridiculous though.",2,1,2.37.9,2020-03-05 11:00:05,,,newest,com.appgenix.bizcal +Benjamin Xu,https://lh3.googleusercontent.com/a-/AOh14Gh_h_IHXoenXTj7ZIXU7g1IdozWQP9fxolM261WYg,"Have been using this app for years and have loved it. However, a recent update that includes full screen ads alsolutely kills it. I do appreciate that the developer has kept the app clean and free for the last few years. But with full screen ads, NO, sorry.",2,2,2.37.9,2020-03-05 10:24:27,"Hi, we avoided this solution for as long as it was possible. It is not the case anymore and we need to think about further development and maintenance of this version. The ads are skippable and appear only ONCE every 18 hours. If you don't want to receive any ads, you can consider the pro version, which is completely ad-free.",2020-03-09 12:45:10,newest,com.appgenix.bizcal +Chad Rogge,https://lh3.googleusercontent.com/a-/AOh14GjqzOTz9ikavvqXRjJNBkv6Dq90CZMnZCAhRfMxog,"Was and is a great app. Used it for years, But now the fullscreen ads are an immediate turnoff. Small ads down the bottom were fine, but forcing me to sit through a full screen ad till the timer runs out is a HUGE NO for me. Uninstalling cos there are plenty of other free calendar apps around that don't force you to wait through adverts.",2,5,2.37.9,2020-03-04 22:24:02,"Hi, we avoided this solution for as long as it was possible. It is not the case anymore and we need to think about further development and maintenance of this version. This kind of advertisement is a standard right now in the free apps. If you don't want to receive any ads, you can consider the pro version, which is completely ad-free.",2020-03-09 12:52:23,newest,com.appgenix.bizcal +Erika Gann,https://lh3.googleusercontent.com/-5kvvMemTocs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM6fE-CpcXogNDkJUZMZW1UrWR7dQ/photo.jpg,55 o,2,0,2.37.9,2020-03-03 20:18:42,"Hi, do you have any technical problems with the app or do you maybe look for a particular function? Can we help you somehow?",2020-03-04 09:03:27,newest,com.appgenix.bizcal +Inssaf Sliti,https://lh3.googleusercontent.com/-cAKvnIaDoCY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOMwLVyJcP7f63K-NSof1IGOQAOzw/photo.jpg,First I liked the free version but after a while it got annoying with all the advertisements,2,0,2.35.0,2020-03-02 04:02:13,"The free version is still functional as the ads appear only every 18 hours! It means it is 2/day, if you're unlucky. Otherwise you can use the app without any further disturbance. Please note, that this free version needs to be developed and maintained on the daily basis. This requires a lot of time and work. The ads help us maintain the software.",2020-03-03 10:57:12,newest,com.appgenix.bizcal +Kris Xxl,https://lh3.googleusercontent.com/a-/AOh14GiczojSR-MckBk_3re5MfHzvxd1HMsW6hW8elRX,"Its the best callendar ive used. But letely its been freezing a lot, and its annoying because i use it a lot. Pls fix the freezing. Edit. 6months have passed and this is still freezing. Why? I use my calendar a lot, so i cant keep using this.",2,0,2.35.1,2020-02-28 15:17:40,"Hi, when does the app freeze precisely? Is it reproducible?",2020-03-03 11:00:49,newest,com.appgenix.bizcal +Kim Kaspersen,https://lh3.googleusercontent.com/a-/AOh14GgUREtHcGl_fJ9_zC0RnfaD8y9NFQYdLbLL7YdAZg,"Nice widget, and I don't mind a few ads, but persistent ads are annoying. When I get annoyed, I tend to rather go somewhere else, than becoming a paying customer.",2,1,2.37.9,2020-02-28 09:47:54,"The free version is still functional as the ads appear only every 18 hours! It means it is 2/day, if you're unlucky. Otherwise you can use the app without any further disturbance. Please note, that this free version needs to be developed and maintained on the daily basis. This requires a lot of time and work. The ads help us maintain the software.",2020-02-28 13:37:14,newest,com.appgenix.bizcal +Helen L,https://lh3.googleusercontent.com/-ad0sbUZWp60/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMQr2ZbeYmt4khZUyXt_n5MIljoQQ/photo.jpg,Used this app for years but the recent addition of full screen ads is too annoying. Small banner ads or something similar would be much more appropriate for a calendar app. Why would I want to look at an ad for half a minute when it should only take 5 seconds to add an appointment?,2,1,2.37.9,2020-02-27 16:24:46,"The free version is still functional as the ads appear only every 18 hours! It means it is 2/day, if you're unlucky. Otherwise you can use the app without any further disturbance. Please note, that this free version needs to be developed and maintained on the daily basis. This requires a lot of time and work. The ads help us maintain the software.",2020-02-28 09:30:52,newest,com.appgenix.bizcal +Andrew York,https://lh3.googleusercontent.com/-c5EVTVt5MyM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM9TQvF5Iq_gCeOLCrfPUzEHAVK1g/photo.jpg,"Multiclick spam to ""encourage"" upgrading to pro version.",2,0,2.37.9,2020-02-27 15:24:44,"Hi, please note, that the pro functions are locked within the free app. If you click on a pro function the app thinks you need it and want to buy it. This is neither spam nor encouragement to buy. You are actually actively opening the app store and beginning the purchase process.",2020-02-28 09:33:00,newest,com.appgenix.bizcal +Archie Smith,https://lh3.googleusercontent.com/a-/AOh14Gic95CQdamAoqivloN9NvyKqzNoxc4U1Rlciama8Q,How do i go pro does this app only work with facebook I dont have face book.,2,0,2.37.9,2020-02-26 20:11:49,"Hi, the app is completely unrelated to Facebook. Those are two separate products. +If you want to sync your calendar data, you can do it with any partner supported by Android. Take a look here: https://appgenix.uservoice.com/knowledgebase/articles/471990-how-can-i-synchronize-my-calendar-with-google-out",2020-02-27 10:06:57,newest,com.appgenix.bizcal +Elizabeth Cheong,https://lh3.googleusercontent.com/-dsK3OWijPBE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOZ37pQSDQR4JgzFYoo0uRGUAEorg/photo.jpg,Please remove the annoying and intrusive ads!!,2,1,2.37.9,2020-02-24 21:27:58,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-25 12:31:53,newest,com.appgenix.bizcal +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"The free version was great until now, but since they added advertisements to it (e. g. forced to watch an ad after creating an appointment) I cannot recommend it anymore, it is absolutely annoying, the Google calendar is the better alternative now.",2,1,2.37.9,2020-02-23 10:24:35,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-24 10:33:15,newest,com.appgenix.bizcal +Mary Claire,https://lh3.googleusercontent.com/a-/AOh14GgktfMqDezVIg4Ru5YnBNjL0wVYOzwjuLAPt_Z9Zg,What I love is that I can make multiple calendars with the same account. What are some Major problems? 1. My events are not inviting or showing up on the calendars of the people who I include in the event. Sending a text message link doesn't work either. 2. I have had events disappear from my calendar without explanation. Never had this issue with any other calendar and being a person with a Very busy schedule and multiple schedules to adhere to... This is detrimental. P.S. I paid for premium,2,1,2.37.9,2020-02-22 20:22:28,"Hi, given the lack of space for answer here, could you contact our support, so that we could address your issues?",2020-02-24 10:37:17,newest,com.appgenix.bizcal +Simon Davies,https://lh3.googleusercontent.com/a-/AOh14Gjss-n0GTxbyKPE-yJqTI0xcy-bp7FS7nAvgnoi6z0,Really disappointed with the full screen adverts now taking over this otherwise great app. Will be uninstalling and choosing another alternative app (there are plenty) big mistake by the developer!,2,2,2.37.9,2020-02-22 18:02:50,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-24 10:37:32,newest,com.appgenix.bizcal +Elena Artemeva,https://lh3.googleusercontent.com/-HLv90BzzHZg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOAtqE1TMsLy_R-Mp8pwPy7aJYiyQ/photo.jpg,After an update started showing really annoying full-screen ads. Been using it for quite some time. Will uninstall,2,0,2.37.9,2020-02-22 16:58:07,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-24 10:37:38,newest,com.appgenix.bizcal +Kees H,https://lh3.googleusercontent.com/a-/AOh14GgVseiDqvYMbpEUimhkdFpGbN7Gw6UzxjXXqNe8QQ,"Used to be good, but recently it shows full screen ads which cannot be turned off",2,0,2.37.9,2020-02-21 11:10:07,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-24 10:37:50,newest,com.appgenix.bizcal +Andre Cook,https://lh3.googleusercontent.com/a-/AOh14GisuwOAYwyvz_lmDRWm_Xj67fNgZTZb4LjUc2kEHw,"Best free calendar app I've used, syncs with Google and outlook calendars...... ....Edited from 5 to 2 stars...the video ads are too painful. I've already read the default reply to the other reviews complaining about this. I know the fee is low and one time...I promised myself I'd get the paid versions of all the free software I use once I'm not on student income. But I'm not rewarding this painful ad practice by going paid. I will pay for a different calendar.",2,1,2.37.9,2020-02-20 00:32:50,"Hi, we avoided this solution for as long as it was possible. It is not the case anymore and we need to think about further development and maintenance of this version. This kind of advertisement is a standard right now in the free apps. If you don't want to receive any ads, you can consider the pro version, which is completely ad-free.",2020-02-20 09:32:15,newest,com.appgenix.bizcal +Martin Holeysovsky,https://lh3.googleusercontent.com/a-/AOh14GgAAjQGVKw19waBWTfCBfpdYQ83bf0Mq7GzpFGktDk,"Since recent update adverts make the free version absolutely unusable! I understand some adds have to be in the free version, but full screen adds are very disruptive in a calendar app when one needs to work quick :/ ..otherwise the functionality it great",2,2,2.37.9,2020-02-17 08:55:51,"Hi, please note that the free version is not ad-free. We avoided this solution for as long as it was possible. It is not the case anymore and we need to think about further development and maintenance of this version. However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard.",2020-02-18 09:07:09,newest,com.appgenix.bizcal +Jaxxon Hollis,https://lh3.googleusercontent.com/a-/AOh14GjoCRNjNKiG8n5cKEQ2r3Jat6gwlc1XjMsINDIxaw,"1) create 80 000 events to several exchange calendars 2) sync it with BC 2 mobile app 3) and you will see how ""perfect"" BC2 works All the time - ANR!! Thank you.",2,1,2.37.9,2020-02-16 21:44:21,"Hi, how do you sync Exchange? Can you provide your device information form BC - help & feedback - send feedback, so that we could test it?",2020-02-17 08:42:59,newest,com.appgenix.bizcal +Toby Lin,https://lh3.googleusercontent.com/-W7YbLUewkmA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNaMj0ERYgVJq9mq82WYqSf7bbMvg/photo.jpg,No longer the calendar i use since the intro of annoying ads and video ads... Uninstalled,2,2,2.37.9,2020-02-16 05:27:28,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-17 08:51:19,newest,com.appgenix.bizcal +Patrick Vallely,https://lh3.googleusercontent.com/-NO4wYaYEKCU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPAt1eKSqY003VYCYb3refVyFu3Eg/photo.jpg,Recent update causes the widget to crash every time I go to my homescreen (on a pretty common Samsung tablet).,2,0,2.37.9,2020-02-16 02:28:35,"Hi, which widget dio you use? What happens precisely with the widget? Do you have the stock launcher installed?",2020-02-17 08:52:15,newest,com.appgenix.bizcal +Rory DeYoung,https://lh3.googleusercontent.com/a-/AOh14GgUkAMRKYU4fOBVJR86apRs3bADIoQt1Gk8Y0EnFBc,"I used to love this app but they made the ads much more intrusive, taking over the full screen with countdown timers any time you do anything. I guess I'll go back the regular Google calendar app. Reply to developer: that'd be great if you remove the terrible ads. For now I'm uninstalling and checking out other calendar apps.",2,1,2.30.1,2020-02-14 17:38:17,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-17 08:54:56,newest,com.appgenix.bizcal +Merlin Crenshaw,https://lh3.googleusercontent.com/-KTdzD-PX4dM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNePvVNXcDFu06L8ZF0OxnMrZOZAg/photo.jpg,"If.the change log doesn't change, why would there be another pushed update which causes the date of latest update available to change . I don't understand why you.wouldnt want to distinguish that part of the update is new and part is older as you.say. For instance 'UI improvements' and 'add another widget option'.. instead of having description basically unchanged.",2,0,2.37.4,2020-02-14 16:27:09,"Hi, everything is correct here. As previously explained the update does not introduce any new functions and that is why the change log don't change. The additional update was published correctly, with some necessary background adjustments, which do not add to the functionality, but were necessary for the proper functioning.",2020-02-13 11:29:34,newest,com.appgenix.bizcal +Tony Crimando,https://lh3.googleusercontent.com/a-/AOh14Ggim7u63VeEDOPUZgUUb84zfW2-9SPp563hsxP1QsU,"You can't set a location by name, only address. Yes I tried setting my location manually, like that would be at all useful. Do you even understand what I'm saying? I CANT TYPE IN LA FITNESS AND GET AN ADDRESS. It will just send me to whichever is closest. Setting my location wouldn't help, it would just send me to the closest one to my manual instead of one that may be further... Worthless.",2,1,2.37.9,2020-02-13 12:53:54,"Hi, did you also set the location manually in the settings -> views - day - location?",2020-02-13 12:15:51,newest,com.appgenix.bizcal +Chun Hou Wong,https://lh3.googleusercontent.com/-tSwPvcK7pr4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPBzoMDWoL_dqIW_Kb19vk_HCj56w/photo.jpg,"Wonderful app with nice visual hierarchy, but now ads take over the entire screen",2,0,2.35.1,2020-02-13 11:38:17,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:43:09,newest,com.appgenix.bizcal +Mario de Sa,https://lh3.googleusercontent.com/a-/AOh14GhHS-k7SfWIUvmQdIig_V4IEy9X7bVs2AmW4cKlR60,"I have to agree that the full-screen time-draining ads are not viable for a Business Calendar, regardless of the reasoning behind it. By all means, keep the small rolling ads along the bottom of the screen or alternatively charge a more reasonable fee to go pro. £6 is not an option when there are so many other options out there, such as aCal (which I used to use before BC and am now reverting to)... I'll keep an eye on Business Calendar though because, if you change the ad situation or make the pro price more reasonable, I'll certainly be back!",2,8,2.37.9,2020-02-13 09:12:12,"Note that the free version is not ad-free. The ads contribute to further development and maintenance of this version. If you don't want to receive ads, you can consider the pro version, which is ad-free. The price is a one-time fee and you can use it without any limits. We do not consider it unreasonable considering the work invested in it.",2020-02-13 11:22:21,newest,com.appgenix.bizcal +Nicole Lacasse,https://lh3.googleusercontent.com/a-/AOh14GhzqF4oGpuZZjcPL2wrZdTIUiCpFVJKz7G9qoabiQ,"Would've been 5 stars but the new full size ads make efficiency impossible. Those kind of ads are fine when you're playing other games, but stopping what I'm doing in a completely un related app is unacceptable. I understand the banner ads to keep it running, but the full page delayed ads pushed it too far.",2,2,2.37.9,2020-02-12 12:51:17,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:43:48,newest,com.appgenix.bizcal +Csabi Tel,https://lh3.googleusercontent.com/-GThAeDjTwIs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNWxVKT3bEDouH-WpwasBFOtiirtA/photo.jpg,"Lately the ads have doubled in frequency, have become full screen, noisy and more difficult to close, while the overall usability have decreased. Quite shame. And before telling the ""it's free"" slogan, think that annoyed people will delete, not buy.",2,0,2.37.9,2020-02-12 06:39:27,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:44:16,newest,com.appgenix.bizcal +Troy McGuire,https://lh3.googleusercontent.com/a-/AOh14Ghqems9uN3xY4wRl56yc333IBnHxfmbL-wGh-Gegw,"It works! Does what it's supposed to do, although I don't require any features other than setting an appointment/event, and being reminded of it. Unobtrusive, even when using it as a free version only. I'll probably upgrade to PRO just to reward the developer. Edit: The new 30 second ads really screw this up.",2,1,2.37.9,2020-02-11 21:21:43,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:44:46,newest,com.appgenix.bizcal +Nick Edwards,https://lh3.googleusercontent.com/a-/AOh14GiHFWBYIHSAC_0NeOqtzQeIpwUWBv7e8_EzeqeW,"I've loved using this calendar for years. My favorite feature is the bar view in the month calendar. I haven't found any other calendar app that does it this well. But recently they ruined the free version by showing full-screen pop-up ads that play for up to 15 seconds before you can get back to your work. I may have paid for the full version before they did this, but not now. If they're going to force uses to pay up $7 to remove such intrusive ads, I'll just move on to another app.",2,19,2.37.9,2020-02-11 15:55:53,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:44:51,newest,com.appgenix.bizcal +Shanna Yasmin,https://lh3.googleusercontent.com/-Q1fQ-vKd5B8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOdsTdb8EuFGEBPexVRGhfL3QsQNQ/photo.jpg,Loved it untill recently when it started playing adds eveytime i put in an appointment. Now ill have to get a new calender app after years of using it and loving it. Too bad.,2,0,2.37.9,2020-02-11 09:21:38,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:45:06,newest,com.appgenix.bizcal +Ellie Cosgrove,https://lh3.googleusercontent.com/a-/AOh14GhxDvJC4ayy18yvd4cc0VctUf7ZNnMh6ONbBo8w9qw,Loved this app for years. The new full screen ads with no skip option is ridiculous and will likely drive me away. I understand the need for ads but this is too far and I have no need for any of the pro features so I will not pay for it when I can use a different app for free that doesn't block my productivity. I used to recommend this app to anyone who asked but now I won't.,2,26,2.37.9,2020-02-11 05:56:29,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:45:12,newest,com.appgenix.bizcal +H Rose,https://lh3.googleusercontent.com/-v48lflCjDxk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM5-xeI9RqYpAM35GVRWhsQPA9-HQ/photo.jpg,I hated the pop up ads.,2,0,2.37.9,2020-02-10 23:59:47,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:45:19,newest,com.appgenix.bizcal +Christopher Webb,https://lh3.googleusercontent.com/-hX_RpqiWQzo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN5YVmrSs9QUMylRgVPNnB_4k0xcw/photo.jpg,"App works good. But with the latest update, 25 seconds of ad.. for adding an appointment. Not recommended after the update.",2,0,2.37.9,2020-02-10 10:17:25,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:46:11,newest,com.appgenix.bizcal +Pete H,https://lh3.googleusercontent.com/a-/AOh14GjowRHVJ-xblS1DhnXTSsxxMcMxm2XhBV7Fh3bPgA,I used to really love this app as it provides a Todo list widget that can show a lot of Todo list items compacted into a very small space. However it has started showing full screen ads when adding new items so I'm going to be looking for a replacement.,2,2,2.37.9,2020-02-09 20:07:13,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:46:19,newest,com.appgenix.bizcal +Lorelei Pang,https://lh3.googleusercontent.com/a-/AOh14GigeHUIgOST4UVD0VE9w46pyXI4UDUjgN5tCzny,There are full-size ads that block your entire screen. Incredibly disruptive and I don't want to reward that by buying pro. There are other calendar apps out there that don't deliberately disrupt your productivity.,2,2,2.37.9,2020-02-09 14:20:52,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:46:25,newest,com.appgenix.bizcal +Barrie Stevenson,https://lh3.googleusercontent.com/a-/AOh14Gh-qdEXZd28bfB78MniK62fLcMlTqjTCBManbN0fg,I loved this app until the latest update. Full screen ads that you can't cancel are just too annoying. I'm outa here..,2,0,2.37.9,2020-02-09 12:18:11,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-13 15:46:30,newest,com.appgenix.bizcal +Brianne M,https://lh3.googleusercontent.com/a-/AOh14GgEdM2BC3T976eNmimLK3jzbqTm0tFX9wkGhXwcMQ,"The font size is realy small and you can't change it without paying for the full version. Large font is a basic accessibility feature, it shouldn't cost extra.",2,0,2.37.9,2020-02-08 05:55:19,"Hi, please consider that the free version is fully functional. If you, however, require some additional functions such as fontsizes, you may consider going pro.",2020-02-10 09:39:41,newest,com.appgenix.bizcal +Theta Sigma,https://lh3.googleusercontent.com/a-/AOh14GhSiSz85kdxze8xzVSzdUVDtnMoF6lzZnl3zR_BTw,"This app worked well for a year. Had ads, but I was fine with that. The latest update made the ads much bigger, appearing in the task sidebar instead of banners at the top and bottom. I was annoyed but tolerated it. Then today I got a full screen video add that I couldn't close until it was through. That's too much. Deleted. Reply to reply: I know I can pay to get them removed but I don't want to support a company that pushes an update with full screen video ads you can't close.",2,19,2.37.9,2020-02-05 22:57:34,"Hi, we avoided this solution for as long as it was possible. It is not the case anymore and we need to think about further development and maintenance of this version. This kind of advertisement is a standard right now in the free apps. If you don't want to receive any ads, you can consider the pro version, which is completely ad-free.",2020-02-06 08:45:39,newest,com.appgenix.bizcal +Emil Partington,https://lh3.googleusercontent.com/a-/AOh14GhwLI-lhppuV94wp-wcdOSbce0dMza4Wmrskbr_Hw,"The interface is incredible! It's the perfect organizational app I've always been looking for. This is all overshadowed for me however by the fact that it is automatically attached to your email with no way to remove it. I would use this app daily if it would just exist in it's own bubble without needing to grab onto 3+ emails. Minor complaint but it really turned me off from the app, and if I had known this I would not have used it in the first place.",2,6,2.37.6,2020-01-25 09:58:34,"Hi, this issue is NOT caused by the app, but it is due to your settings of the online calendar. See here: https://appgenix.uservoice.com/knowledgebase/articles/430001-reminders-are-automatically-added-to-every-newly-c",2020-01-27 11:17:16,newest,com.appgenix.bizcal +Gert Steyn,https://lh3.googleusercontent.com/a-/AOh14GicDJi-3geBETxpQOCP9qExdo45Bq4mo3R8-vwxqg,"Since 2018 the app does not register some of the calander input. Apparrently due to poor internet connection. Now sitting next to the wifi router and entering all my appointments for January, needless to say none were regesterred!!!",2,0,,2020-01-14 01:05:08,"Is the calendar, you add your events to, visible in the app?",2020-01-14 09:41:37,newest,com.appgenix.bizcal +Mirko Zuna,https://lh3.googleusercontent.com/a-/AOh14Gh_V4OdoCU_QzNj5oWKLzkm07NmzI6PgngNzRGEPrI,"I bought the previous version and can't use this one full version if not bought too which I think is not ok Well, why would I have to kip old application? I understand but I don't like the idea to have duplicated apps. But I raised the reading to 2 starts cause of that!",2,0,2.37.3,2020-01-11 22:10:26,"Hi, you bought the license for BC 1. Please note, that BC 2 is not an update of BC 1. It is a separate app with different code. Only when you keep the old app installed, we can verify this installation and unlock pro functions in BC complately free of charge.",2020-01-13 08:37:59,newest,com.appgenix.bizcal +Enowva,https://lh3.googleusercontent.com/a-/AOh14Ghjg18cUkthSeJ5Y79j8JJqCmVR4ptwR9nXmGTF8MQ,I love how personalisable this app is and the widget is fantastic. The weather app doesn't always work and my tablet and phone won't sync tasks even when I ask it to manually. 👎,2,0,2.37.0,2019-12-28 11:06:52,"Hi, have you maybe tried setting the location for weather manually up? This in the settings - views - day - location for weather. + +There seems to be temporary sync issue with tasks from Google. We are in contact with them and they assured us they will fix the issue as soon as possible.",2020-01-02 15:02:44,newest,com.appgenix.bizcal +RJ Phillips,https://lh3.googleusercontent.com/a-/AOh14GikWGIYBhi053Yo511W2BXIuIrF_lD2G2GYBgigTWg,Overall it's a great app that I use every day but what I truly hate is I paid for the full version and since I have 3 Google accounts in my phone no matter what instructions I'm given by the developer it doesn't recognize I bought it because it defaults to the wrong account. If they fix and let me select correct amount I'll bump my rating back up. Should have an option. Sad,2,3,2.37.1,2019-12-24 19:44:53,"Did you set the correct account in your Play Store app? Did you download the free app with the account you bought the license with? Please note, that the developer is not responsible for the license activation (nor can we influence it). The license is verifies and unlocked by the app store.",2020-01-02 15:04:58,newest,com.appgenix.bizcal +Maurits Lourens,https://lh3.googleusercontent.com/a-/AOh14GjPIxjQGvZdlCAa4luRVLd_OZJyqVRY2K7ZT7C9ly0,"The app is not working well since the latest update (2.37.0): the app crashes a lot when creating or editing tasks, the reminder for tasks and meeting are not working (notifications are enabled), so that makes the app useless. Reinstalling the app doesn't solve anything.",2,0,2.26.2,2019-12-23 19:36:40,"Hi, did you test the 2.37.2 update as well?",2020-01-02 15:06:00,newest,com.appgenix.bizcal +Daniel Frolov,https://lh3.googleusercontent.com/-uRF6rSlV5DA/AAAAAAAAAAI/AAAAAAAAFs8/AAKWJJPer6-Ujm-OkY11eEPEhSG3HBfloA/photo.jpg,"Doesn't show a content of reminder on Locked screen even if its correctly set in the Settings. Fix it and I'll change my rate. BTW, Google Calendar knows how to wake up a locked screen and show notifications",2,2,2.37.0,2019-12-19 11:58:23,"Hi, do you mean no notification is fired? If so, compare here: +https://appgenix.uservoice.com/knowledgebase/articles/1827433-why-are-my-reminders-not-working +https://dontkillmyapp.com/ + +Please note, that the app cannot wake the screen up. When you turn it on (with the device still locked) you should, however, see the notification in the bar.",2019-12-20 10:16:50,newest,com.appgenix.bizcal +Stephan Lehmann,https://lh3.googleusercontent.com/-xYGMQwJuyj0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPjTAshBomDQEOD4UINNdPsebkwrA/photo.jpg,Gtasks Sync doens´t work. Calendar Sync is ok,2,0,2.37.0,2019-12-18 23:46:36,"Hi, we have already identified the problem and the solution will published in next update. In the meantime we made some adjustments on the server side, which minimize the problem even without an update",2019-12-19 11:41:39,newest,com.appgenix.bizcal +Fernando Sanchez,https://lh3.googleusercontent.com/-BWuzmmD0GyM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNYUb3G84QruRCojCKmugoQIc-2OQ/photo.jpg,"This is by far the best out there but it is not reliable because if i get a new phone for whatever reason the data will not transfer to new phone (data will be lost or i will not have time to set the settings and input previous data in new phone )and that is only reason i cant trust this app. I am very upset that one flaw kills a very good app. Anyone that uses a calender heavily knows the trouble of my example. Again, by far it is a very very good calendar app.",2,0,,2019-12-12 13:08:04,"Hi, did you perform the backup of your data correctly? Please take a look here: + +https://appgenix.uservoice.com/knowledgebase/articles/904029-what-steps-should-i-take-when-switching-resetting",2019-12-13 09:20:03,newest,com.appgenix.bizcal +Tina Rodell,https://lh3.googleusercontent.com/-4Zx71sbPxbU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMuWfyTTwcugHGs9RnVuZRvkzVaEw/photo.jpg,"This an amazing calender, my only problem was I was looking for a calendar for solely for my business , because this app you must sync your calendar it becomes useless because now you have your personal calendar mix with business. Useless for that purpose I can just use my Google calendar.",2,0,,2019-12-02 04:29:30,"Hi, please note that all your calendar apps use the same storage on your device, therefore they will always show the same data. This is how Android works. For that reason we integrated the Favorite Bar function which allows you to quickly toggel the calendars.",2019-12-02 09:34:59,newest,com.appgenix.bizcal +Keith Nagler,https://lh3.googleusercontent.com/a-/AOh14GhXZLOKzBuSYbbIouVFZwXuI5xgo-0nUADhS6uU,Doubles and triples all my appointments in my calendar making it hard to manage.,2,0,,2019-12-01 17:22:51,,,newest,com.appgenix.bizcal +Ash Green,https://lh3.googleusercontent.com/a-/AOh14GhlnmK4SX08RHgulQ2V_jfgJ5cntQW98gF7PIryPw,Buggy as hell. Keeps duplicating events when I edit them leaving me with the old version and the new side by side. I keep deleting the old one and it keeps coming back. I'm irritated and I'm going to look elsewhere now. I loved the original business calendar but after giving it more then a fair chance this version is a no go.,2,11,2.36.2,2019-12-01 14:39:48,"Have you already tried to remove and re-add the account for sync in your Android OS Settings -> Accounts & Sync. Please note, that EMUI installed on Huawei devices cannot handle series properly. We built in a workaround, but it works only for series created in BC.",2019-12-02 09:37:24,newest,com.appgenix.bizcal +E,https://lh3.googleusercontent.com/-rrcBjcnqCs8/AAAAAAAAAAI/AAAAAAAAF68/AAKWJJOFomwZpmNvpzS9NAc59visyxOrcQ/photo.jpg,"Actually it is a good calendar app, but on Android 10 Google calendars cannot be synched without the Google Calendar app installed on your device. You have to sync your calendar by another calendar app, or all your BC2 events will stay on your local device only. So this means, that another calendar app is required to use this calendar app, which makes this app useless at the moment. I am waiting for a fix.",2,1,2.36.2,2019-12-01 13:08:36,,,newest,com.appgenix.bizcal +Enascut Claudiu,https://lh3.googleusercontent.com/a-/AOh14GhH-sugGElHBdLhFfg5wvTyVfhGHaL3GkQteYfHlA,WHY DO notes dissapear? I pun something today and tomorrow it doesn't show up at all!!!!!!!!!!!!!!! To Answer:1)Yes 2)local 3) i go in the App-Month View-click on day box-write details+hour/all day.save.Then it shows up in the app and widget for a few hours and then it's gone .4) i have a stable internet connection . What should i do?,2,1,2.36.2,2019-11-29 11:05:07,"Hi, are the calendars activated in calendars & task lists - color box icon? Do you sync or keep your data only locally? How do you add events? Do you always have a stable internet connection?",2019-11-29 10:59:27,newest,com.appgenix.bizcal +Tomasz Wawrzczak,https://lh3.googleusercontent.com/a-/AOh14GjAWe9rd5FOnjFNwBG-_xeq0rl3CvyYP9TolHgjurU,Doesn't show a files attached to the event using Google Calendar.,2,0,2.36.2,2019-11-27 13:51:54,"Hi, it is possible. Did you set your device correctly up? Take a look here: https://appgenix.uservoice.com/knowledgebase/articles/1923775-attachments",2019-11-28 10:54:48,newest,com.appgenix.bizcal +Aphrodite Daughter,https://lh3.googleusercontent.com/-JbHzya6Dpc4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOvxZwbQxyDJHxStVPDM4KaMygacA/photo.jpg,"For the Samsung Note 9 newest OS update. Customer service FINALLY figured out the problem. And it worked for about a month. Then Samsung sent out a new OS & the reminders are firing even more randomly than before. Just emailed tech support AGAIN. I have to say, I do love the app & tech support is good, but response time is slow. But unless developers can find away to keep it working no matter what update the phone developers come up with, I may have to find a more Google friendly app.",2,4,2.36.2,2019-11-26 23:15:15,"If you take a look into the link, you will see that there are no solutions for the developers to implement right now. This applies not only to BC, but to all your apps installed on Samsung. We all are not responsible for the way Android system operates. OS may reset your settings, so make sure to verify them: +https://dontkillmyapp.com/samsung",2019-11-27 09:24:59,newest,com.appgenix.bizcal +Glenn Ouwens,https://lh3.googleusercontent.com/-3xiGGspq_BI/AAAAAAAAAAI/AAAAAAAAAD4/AAKWJJMeG4JTdejYmLU6Z6uO0WifNu801g/photo.jpg,"Does not sync. If i enter an item in the agenda. It does not sync with the widget. Sometimes it takes a whole day before it is visable in the widget. In the widget only 2 items are visable. The rest keep saying ""loading"" for days now. Even if i manually sync.",2,0,2.36.2,2019-11-25 23:30:52,"Hi, please note that the widget does not sync any data. The data must be correctly synced on your device ( and therefore shown in the main app) for the widget to actualize. Please make also sure that the system is not blocking the background processes for the app due to its settings,",2019-11-26 10:52:53,newest,com.appgenix.bizcal +Nick Ray,https://lh3.googleusercontent.com/a-/AOh14Gg1k2KjOlX3n9_JIxj0cbPeq_npmO7bsfpez7zP,Great for neat month view. Unfortunately it has started notifying event reminders AFTER the event? Not good.,2,0,2.36.2,2019-11-19 21:49:46,"Hi, have you already checked all the settings mentioned in the article below? + +https://appgenix.uservoice.com/knowledgebase/articles/1827433-why-are-my-reminders-not-working",2019-11-20 11:48:00,newest,com.appgenix.bizcal +Jonathan Heck,https://lh3.googleusercontent.com/-_0DW5sa0QH0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN4F6cy1CRBbS3ck0efFCGEqRiTwg/photo.jpg,"Having problems. The app is not syncing anymore with my Google calendar. I double-checked the settings gs and permissions and tried to force a sync, still no good. It is set to auto sync every 3 hours.",2,0,,2019-11-06 23:52:39,Please remember that BC doesn't sync on its own. It uses Android function to sync data. Android requires the presence of a sync partner. The sync partner is responsible for the sync intervals. There might be a general sync problem and it could help to remove and re-add the account for sync in your Android OS Settings - Accounts & Sync.,2019-11-07 08:46:14,newest,com.appgenix.bizcal +Myles McSorley,https://lh3.googleusercontent.com/-rTad_M1ETcY/AAAAAAAAAAI/AAAAAAAAAIY/AAKWJJNZHwbgrBIsHDI6BqwEh3YSkurKng/photo.jpg,"Great app, but it just syncs to my google calendar making it redundant. I wanted to use this for nonpersonal task and keep it separated. While using the App I get 40 notifications because it updates my personal calendar as well. I gave 2 stars because otherwise the functionality and UI is really nice.",2,1,2.36.2,2019-11-06 17:39:37,"Hi, please note, that it is generally not possible on Android to use two calendar apps separately. They all use the same calendar storage on your device and therefore show exactly the same data. This is how Android works. for that reason we introduced the favorite bar and calendar groups to allow a quick toggle of calendars.",2019-11-07 08:48:06,newest,com.appgenix.bizcal +Terry Harris,https://lh3.googleusercontent.com/-VCeKiApEEhU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP6AOrov8Fo37SZs_6TvXPQs5zTcg/photo.jpg,"Probably none better, can do a thousand things, but Developer forces you to always think BIRTHDAYS. And, you can't disable TASKS either. If I don't want those functions then don't force it!",2,0,2.36.2,2019-11-02 17:22:59,,,newest,com.appgenix.bizcal +Sanne,https://lh3.googleusercontent.com/a-/AOh14Ggg35A85R57XgVC2vRpBV9M2Low79YB0ymk7Wh02g,"Doesn't sync properly anymore. Have been using the free version of this calendar app with my Google calendar for years without problems. But for the last half year or so, the appointments don't sync, the invites don't get sent. It has become unusable and unreliable. I have had to switch to the Google calendar app now.",2,2,2.36.2,2019-10-21 08:14:16,"Hi, please remember, that BC is not responsible for the sync of calendar data on your device. This is done by you Android. Given the problems you describe there must be a sync problem on your device. Try removing and re-adding the affected account in your Android settings.",2019-10-21 10:29:39,newest,com.appgenix.bizcal +Conscious River,https://lh3.googleusercontent.com/a-/AOh14GhKZTzSc3DTHr7wgyxMTGAHvzIAoAeYeucElr33,"Loved this app, but recently noticed I really was't hearing the audio from notifications and for some unknown reason, although the notification volume for the pro version sounds loud at 100% system volume for notifications, this version (BC2) sounds half as loud, if that, to the point it's unusable because I rarely hear them. UPDATE: Just realized that for some odd reason BC2 calendar notification volume is mapped/linked to Ringtone volume and I had that lower than half volume. Please fix this.",2,2,2.36.2,2019-10-17 06:33:03,,,newest,com.appgenix.bizcal +Anani Song,https://lh3.googleusercontent.com/a-/AOh14GhWB6eny2DBhH-e6J564LP52_KMEzii8FQ5Is8xAg,"There's no option to remove time rows in the widget, only an option to remove the time bar which is kinda pointless. Was hoping for a simple layout for the widget to display only days (7 days) without all those crowded rows of time displayed. Would otherwise give it a 5 star.",2,0,2.36.2,2019-10-16 03:02:03,"Hi, which widget do you use? Have you tried using the same color for both widget background and the separating lines?",2019-10-16 08:51:01,newest,com.appgenix.bizcal +Rio Wong,https://lh3.googleusercontent.com/a-/AOh14Gimu7xtD_DRL0ndwVKOZ2-GdCAMaziSUC2zHutCq5M,It needs me to pay again for the app once I've updated this app. The drag and drop feature had just gone suddenly silently.,2,0,,2019-10-03 17:56:31,"Hi, you don't need to pay twice. Your license is valid without any limits as long as you use the same store and account. Please find the solution here: +https://appgenix.uservoice.com/knowledgebase/articles/908211-i-paid-for-the-app-but-i-lost-the-pro-features",2019-10-14 12:16:11,newest,com.appgenix.bizcal +Ron Jarrah,https://lh3.googleusercontent.com/a-/AOh14Gi0r_pWdWqsjlfQ6A058HWhN8p4p7Oy064rFC3z7g,"Great App with one major flaw. When entering addresses and selecting from the drop down options, the house # disappears and leaves only the street, city, and state without the actual house or business number. This is a huge problem for me.",2,6,2.35.1,2019-10-01 14:37:50,,,newest,com.appgenix.bizcal +Ranting Antisocialite,https://lh3.googleusercontent.com/a-/AOh14Gg1SJhk6a8y_uQYH0YoaJ183UyUYg6j3h5FQywAljc,"I have used this app for my business for a looong time and love it. However can someone explain to me why I'm getting spam notifications from BC2 announcing my winning stuff like shoes and iPhones? At least once a week this happens and as I said I use it for my business and don't really have time to forward these things to 10 of my friends via Whatsap, which I do not use. If it's you guys, stop it. If it's some other hijinks then let me know how to fix it, please.",2,1,2.35.1,2019-09-27 17:35:12,This kind of information absolutely DOES NOT come from BC. It must have been synced to your calendar. Take a look here: https://lifehacker.com/how-to-keep-spam-out-of-your-google-calendar-1835810050,2019-10-14 12:20:01,newest,com.appgenix.bizcal +bliss eaton,https://lh3.googleusercontent.com/a-/AOh14Gi7wI_IG8xJKFUtnawNu8UpYXWTkK6puiut3LtXlw,Like the look but it messes up straight away. Instead of saving an entry the app cashed and deleted it instead. Don't get!!,2,1,,2019-09-25 15:08:08,"Hi, this sounds unusual. Did you grant the calendar storage permission? Without this permission the app cannot access the storage and therefore your events cannot be saved.",2019-09-26 09:05:20,newest,com.appgenix.bizcal +bella cosper,https://lh3.googleusercontent.com/a-/AOh14GibaO7jVqSQ31pYUY60kGEHDA29WD9jTDRB-BXnVQ,Good - the only thing it has that isn't on my Samsung cal is Agenda view. Crappy- My SCal has dark mode. BusCal - you can basically F off if you're vision impaired. Font size & dark mode are paid only. Not fun to test drive in the bright white light. UNINSTALL...,2,0,2.35.1,2019-09-12 17:43:43,,,newest,com.appgenix.bizcal +Nancy Skydancer,https://lh3.googleusercontent.com/-gEzRjUJ6Rok/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPf3aF0WXiMbgJJQ-sEzwNsfvNzvw/photo.jpg,I loved this until recently. Many entries disappear! Panic attack! I can't count on it anymore. What gives?,2,0,,2019-08-25 10:58:24,"Hi, do you sync? How do you add events? Do you always have a stable internet connection? Is the calendar you add events to activated for the preview? + +https://appgenix.uservoice.com/knowledgebase/articles/1912096-my-calendar-data-is-suddenly-gone-how-can-i-recov",2019-08-26 08:29:16,newest,com.appgenix.bizcal +Sam Peyton,https://lh3.googleusercontent.com/-RTJXNBTxT4w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMaXuI7rmnNVacdqbLafcXHrAw9KQ/photo.jpg,Downloaded for the widgets. You gotta pay for the widgets before even seeing if they work.,2,0,2.35.1,2019-08-14 19:30:01,"Hi, this is not true. You can use widgets also in free version. What you cannot use are the widgets pro functions.",2019-08-15 08:17:48,newest,com.appgenix.bizcal +Leo Martinez,https://lh3.googleusercontent.com/-IEki3U_bzi0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP5pE0wQhnHI8qREVTahwBPf9zXDg/photo.jpg,"aCalendar > Business Calendar > Tiny Calendar > Tick Tick Pro aCalendar's design, featurr and logic is from 2004 Business Calendar is better but still stupid and feels like from 2010 Tiny Calendar really improves from the 2 above. Nice modern design and good drag/drop feature but still suffers the same wrong logic and bad design as Business Calendar. Tick Tick is the modern calendar that wins because its designed with modern logic designed with proper modern features. Less touchpoints and jus",2,0,,2019-08-11 05:26:59,What are the issues that you experience with BC 2? Do you look for any particular functions?,2019-08-12 11:59:16,newest,com.appgenix.bizcal +Moltak111,https://lh3.googleusercontent.com/a-/AOh14Gj6fzb0WR2QZC2AUxKbvVwQVmENBL3KgAjMgAd7xg,Such a cool app with deal breaking bug. This calendar app could be perfect for me but notifications simply refuse to work.,2,0,2.35.1,2019-08-08 05:34:57,"Hi, there are various settings which influence the reminders. See here: https://appgenix.uservoice.com/knowledgebase/articles/1827433-why-are-my-reminders-not-working",2019-08-08 11:02:32,newest,com.appgenix.bizcal +Nick Moutzouris,https://lh3.googleusercontent.com/-cDZIwUx_APM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM8ZKHuiuK5DEmGU5DSCXeqzow_Bw/photo.jpg,"everytime I snooze an event it disappears.....this calendar is useless. Maybe I did not explain properly....it does not dissapear as in not in my calendar as an event....when I have set a ""Reminder"" alarm at I get a notification pop up, I snooze it for 30min I do not get another reminder in 30 min.",2,2,2.35.1,2019-08-03 13:16:21,"Hi, have you already checked all the following? +https://appgenix.uservoice.com/knowledgebase/articles/1827433-why-are-my-reminders-not-working +Can you also send us your device information from BC - help & feedback - send feedback, so that we could test it on our end?",2019-08-05 15:17:59,newest,com.appgenix.bizcal +Vivien T.,https://lh3.googleusercontent.com/-QzleNYWE7gA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNs7NS6GkTZdp1ZEn81giCUa9DZHg/photo.jpg,my data is now disappearing frequently or often is suddenly double or triple in my calendar,2,0,2.35.0,2019-07-30 17:44:53,"Hi, do you sync your calendar? This may be the reason for the problems you experience. Please contact our support and they will tell you how to resolve the devices sync issues.",2019-07-31 08:49:11,newest,com.appgenix.bizcal +Thomas of the Cosmos,https://lh3.googleusercontent.com/a-/AOh14GiszvuxQR82iR3qRP2SIR5qPXLNK1Jy-udHb19r3g,Would be great but almost everything you need to customize it when you first install it is pro only. You can't customize font settings - it's pro. You can't import old calendars - it's pro. How am I supposed to start using your app then?,2,1,2.35.0,2019-07-28 09:35:01,"Hi, the free version is fully functional and can be used without any charge. If you, however, require some additional feature, you may consider going pro.",2019-07-29 07:48:40,newest,com.appgenix.bizcal +Andreas Orfanos,https://lh3.googleusercontent.com/-S4BluStaT5o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPdMc49-tMDdta6QrVSfJTGoKjoHQ/photo.jpg,Get multiple entries of same appointment! Problem is with Outlook and Exchange 360 occurs with other calendars too.,2,0,2.35.0,2019-07-26 10:54:10,"If you have the problem in other apps, it is clearly not a problem of BC. Do you have any technical issues with the app which would explain your review?",2019-07-26 11:09:02,newest,com.appgenix.bizcal +Blightlotus,https://lh3.googleusercontent.com/-qI0Sd0t9Y3o/AAAAAAAAAAI/AAAAAAAABdg/AAKWJJPZKw2LKnrFzC6blADuYLjNxm_6Qg/photo.jpg,"Using Google Pixel 2 and paid for full version...sometimes the day on the calendar doesn't update. I dont want to have to restart my phone everday. A workaround would be to press the refresh button on the calendar, but i dont like having to do that every day.",2,2,2.35.0,2019-07-25 17:25:20,"Hi, do you close the app properly over night? Just make sure the app is closer properly and it will correctly update the date.",2019-07-26 11:11:06,newest,com.appgenix.bizcal +alorr4uz,https://lh3.googleusercontent.com/a-/AOh14GhoH07IFqYOElo2ANqHLrtp2gQmX6Dmfu980fiDPQ,2 stars right now because all my appointments are gone before 2018!,2,0,2.34.2,2019-07-15 18:13:02,"Hi, your problem is not caused by the app, but by the limitation of the sync partner. Please refer to our help article: +https://appgenix.uservoice.com/knowledgebase/articles/903366-i-am-not-able-to-see-past-and-future-events-in-bc2",2019-07-16 11:19:49,newest,com.appgenix.bizcal +Connor Mangus,https://lh3.googleusercontent.com/a-/AOh14GgPaFJJ54xOKFRHOHYikDm7mryiq9tC6lsgqUxc,"first time opening good experience. Everything from google calendar was synced, then stacked up my events for the day. Opened the app a few hours later and absolutely everything was blank. And you have to pay $7 to be able to drag and drop your events.",2,0,,2019-07-10 14:29:25,"Hi, are the calendars activated in calendars & task lists - color box icon? The drag & drop is one of the pro functions which will be unlocked when you buy the license. Please note, that it is a one-time fee and it is valid without any limits as long as you use the same account and app store.",2019-07-11 10:00:20,newest,com.appgenix.bizcal +Elemino Musgrove,https://lh3.googleusercontent.com/a-/AOh14GjcX0MpFZRg__NmDS_aRnAeynG5jxHIGiyPzWAP9MM,"Here's a tip. If i disabled a calendar, i shouldn't see it's tab at the bottom of my screen at all times. Why do I need to see ""Holidays"" for each account on my phone across the bottom. I'll be uninstalling this.",2,2,2.34.2,2019-07-04 18:03:38,"Hi, did you use the color box (preview) or star (favorite bar) icon? I suspect you just disabled the preview without removing the calendar from the favorite bar. + +See here:https://appgenix.uservoice.com/knowledgebase/articles/428382-favorite-bar",2019-07-05 08:40:36,newest,com.appgenix.bizcal +Bryson Overstreet,https://lh3.googleusercontent.com/-q4hZgAt6l2U/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNMdEgFcqus0q7YG3vQPjOl_EOJoA/photo.jpg,Use to love this app as I've had it for well over a year. Just recently it magically deleted all my appointments with no way of getting them back. Tried everything from resetting to reinstalling no resolution. I paid for the app so was a little disappointed that I have to look for another app and reenter all my appointments (20+ a day),2,12,2.34.2,2019-07-03 11:29:28,"Hi, did you sync your calendar or kept them only locally? In the latter case have you ever backed your data up? + +Please refer here: https://appgenix.uservoice.com/knowledgebase/articles/1912096-my-calendar-data-is-suddenly-gone-how-can-i-recov",2019-07-03 12:49:44,newest,com.appgenix.bizcal +Villa Green beach,https://lh3.googleusercontent.com/-O4i09XRNc_Y/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJODoTHp6qpkAhaCGMKvtoocBZnyVg/photo.jpg,فقط احتاج ان اضغط عليه لاري باقي النتيجة ثم يعود لما كان عليه مرة اخري,2,0,2.34.2,2019-06-28 10:33:49,"Hi, what precisely do you mean by that? Could you maybe elaborate?",2019-06-28 12:03:08,newest,com.appgenix.bizcal +Zen ji,https://lh3.googleusercontent.com/-jlcSjp020Po/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPFP0cGlXM4X0wUbldNYceaWY6lvA/photo.jpg,Why is it so fiddly to get items to abutt next to each other? i end up entering the time manually!,2,3,2.34.2,2019-06-21 12:33:57,"Hi, what do your mean precisely by that? which view do you use? Can you maybe elaborate?",2019-06-24 12:52:26,newest,com.appgenix.bizcal +Artem Marchuk,https://lh3.googleusercontent.com/a-/AOh14GihHnWBPuG09jr4ZWOkeijTaw21YuvR39N_2Ztp,"приложение выглядит нормально, но с эргономикой в настройках уведомлений проблема, ux дизайнер не работал. Несколько раз пытался включить звук в уведомлении, т.к. напоминание срабатывало без звука, только с вибро. В итоге ничего не вышло. Зачем-то три вкладки в General > Notification Sound, невнятный перечеркнутый динамик, позже стало понятно что это не статус звука, а сброс мелодии (почему кстати не к default рингтону?) - не вышло.Повтор напоминалки(если пропустил напоминание)не работает.Удалил",2,0,2.34.2,2019-06-20 09:03:58,"Hi, it looks like your reminders were silenced and that is why you didn't hear nay sound. Did you set the reminder repetition correctly? Please note, that this function refers to sound as well, so if your calendars was silenced you couldn't profit from the feature.",2019-06-20 15:01:03,newest,com.appgenix.bizcal +Anthony R,https://lh3.googleusercontent.com/a-/AOh14GjRuHPPSITYwm9EvR-QigN5dEuo6JKcvCdMdi8SnoA,"This calendar would be a 5 star except for 1 MAJOR issue. The sync is unreliable. For example, items placed on my calendar via Google or Gmail within the previous 24-48 hours usually do not appear no matter what sync settings I have or how many times I manually initiate a manual sync. All other calendar apps I have tried do not have these sync issues.",2,0,2.34.2,2019-06-18 12:33:40,"Did you check your Android settings, if BC is not blocked from sync?On Samsung there is a setting to hibernate the apps. In the Settings-Device Maintenance-Battery-Unmonitored Apps, add BC to the list of unmonitored apps. Remember, that BC doesn't have own sync abilities and it cannot be responsible for any sync issues you may have on the device",2019-06-19 08:34:36,newest,com.appgenix.bizcal +Gordon Davis,https://lh3.googleusercontent.com/-_gJbdn7Gjos/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPU4cq4ze6lyhJVuJtKPJgOiXJYSA/photo.jpg,Not much use,2,0,2.34.2,2019-06-07 20:07:06,"Hi, what are the problems that you experience? Can you elaborate on your issues? Maybe we will be able to help you somehow?",2019-06-11 09:03:07,newest,com.appgenix.bizcal +Michael Schille,https://lh3.googleusercontent.com/-FKiwBIH35Qc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNhQWhgO6a51R-tat0jp0OGf_5kDQ/photo.jpg,"The only thing I can't stand is every time I get a notification, I get two notifications for the same event. I sure it's a setting but I can't find it.",2,1,2.34.2,2019-06-02 04:15:45,"Hi, is it possible that you get the notifications from 2 calendar apps? If this case you need to disable the function in one of them.",2019-06-03 10:27:38,newest,com.appgenix.bizcal +Sandra,https://lh3.googleusercontent.com/a-/AOh14GihbWA32NF8G1Kc8OH-Xss-qXqktrvXFGH08oIiCg,"Not a power user with a massive calender of events, so I don't need the full blown pro version, but there are a lot of basic features under pro only. No Thanks",2,1,2.33.2,2019-05-24 02:06:52,"Hi, please consider that the free version is fully functional and can be used without any charge. If you, however, require some additional functions, you may consider going pro.",2019-05-24 08:17:37,newest,com.appgenix.bizcal +David Tan,https://lh3.googleusercontent.com/a-/AOh14GhUmMEffftk7LVouyzCPYo2FmBGWLExrF-YaO3L,"Is a good calender, but a few Singapore holiday was on the wrong date.ie Hari Raya Puasa was on 5/6 but calendar show 4/6. Deepavali 27/10 was show wrongly on 26/10...",2,0,2.33.2,2019-05-22 13:18:41,We will correct the dates on our end. Do you have any technical issues with the app? Can we help you somehow?,2019-05-23 10:06:04,newest,com.appgenix.bizcal +Vesna S,https://lh3.googleusercontent.com/-W-gyNT68pDQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMOuFGD-mzeG9IKTG31jo_smABh_w/photo.jpg,"It would be higher rating but I can't delite some events I don't need anymore.... For example: I still have reminder to pay a credit card which I don't have anymore for 2 years!!!!! If there is a way of deleting the same, please tell me, I'll give it 4 stars. Also too complicated (time consuming) setting exact time you want a reminder for an event....",3,4,2.37.9,2020-03-21 00:20:12,"Hi, is it a read only event? In that case, you need to delete it, where it was created. +You can select reminder time for all-day events already provided you device supports the function :)",2020-03-23 09:55:35,most_relevant,com.appgenix.bizcal +S L-R,https://lh3.googleusercontent.com/-u2rqyrF2buY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNb58K_xoCY7hn0kgb6fuC4ROzrgA/photo.jpg,"Awesome until.... I was trying this app out to see if it was possible to finally break ties with my paper calendar. This app had some features that made it better than Google calendars. That is, until you had to watch an ad to schedule an appointment. Now when I save an appointment have to sit through a full page ad. I didn't get enough time in the app to figure out if it was worth it to pay for the full version but now the mandatory ads are a deal breaker.",3,22,2.37.9,2020-03-09 15:04:12,"Hi, there are absolutely no ads in the PRO version. Are you sure your license is correctly unlocked by your app store? Take a look here: https://appgenix.uservoice.com/knowledgebase/articles/908211-i-paid-for-the-app-but-i-lost-the-pro-features",2020-03-10 10:08:59,most_relevant,com.appgenix.bizcal +Misty Yates,https://lh3.googleusercontent.com/-RDtE8TVIJvQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMqk8HxGWzsKdtnOvux3GuCxeceLQ/photo.jpg,"App is easy to use, but there are 2 features I find annoying. When I add calendar items that I have entered multiple times before, I would like the event data to default to the same data usually used for this event - even when I'm adding an event for the 50th time, I have to overlay the time, duration & reminder. The other is that my reminders don't always remind me (take today for example) & I would like them to keep reminding me until I clear them, even if that takes all day.",3,1,2.37.4,2020-01-18 23:52:44,"How do you usually add events? Do you use templates? https://appgenix.uservoice.com/knowledgebase/articles/870639-templates +As for reminders, take a look here: https://appgenix.uservoice.com/knowledgebase/articles/1827433-why-are-my-reminders-not-working",2020-01-20 09:49:25,most_relevant,com.appgenix.bizcal +Gal Grünfeld,https://lh3.googleusercontent.com/a-/AOh14Gh3iIfsUYs_v1VvBnv1YYLu3Siv7BqxVHP13Nvx-A,"Works great, but when I start creating events and switch to a different app and go back to Business Calendar, they disappear. Also, very limited, unsearchable collection of emojis. No statistics on events, too. Would also love to see goal tracking. Needs prioritizements of tasks. Also, no option to find a time for an event.",3,1,2.37.9,2020-02-08 23:28:51,"How do you open the new event (app or widget)? + +Emojis: feel free to vote for the idea on our forum: https://appgenix.uservoice.com/forums/280499-business-calendar-2/suggestions/35245417-add-custom-icons-emoticons-to-the-set-of-possibl +and post your other enhancement suggestions there as well.",2020-02-12 14:04:33,most_relevant,com.appgenix.bizcal +Tam Chu,https://lh3.googleusercontent.com/a-/AOh14GhftNXVaTsUsE-tQeEFl5rcAphEnrznAmPJ51WXAg,"Recently the app has shown a bug in repeat appointments. I always have repeated 3-day-appointment for Friday, Saturday, and Sunday. It starts in the evening of Friday and ends next Sat morning, Saturday evening to next Sunday morning, and Sunday evening to next Monday morning. After Monday, the appointment repeats every 5 weeks. It used to work correctly until mid 2018. Now, the Sunday-evening-to-next-Monday-morning appointment appears in the week before the correct week. Please fix it. Thanks",3,0,2.37.9,2020-02-18 00:54:51,"Hi, have you maybe checked the stock calendar app? Does it have the same issue? It sounds like a sync problem, which we unfortunately cannot influence.",2020-02-18 09:12:01,most_relevant,com.appgenix.bizcal +Mariella Franker,https://lh3.googleusercontent.com/-0WPzoozUe90/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOhiJXo--3DXUTXVP7-8aFAe5QfBA/photo.jpg,"I used to really love this app and I still do for its flexibility and functionality. I was considering getting the pro version but because I am a small business owner, it was not yet necessary. Since the recent change to the new add format, I am watching full screen adds and waiting for them to finish (oftentimes no skip option). The adds are so obnoxious that the first time it appeared I tought I was hacked. It's hampering my productivity and now it has also put me off getting the pro version..",3,15,2.37.9,2020-02-08 09:01:53,"Hi, we avoided this solution for as long as it was possible. It is not the case anymore and we need to think about further development and maintenance of this version. This kind of advertisement is a standard right now in the free apps. If you don't want to receive any ads, you can consider the pro version, which is completely ad-free.",2020-02-12 14:06:00,most_relevant,com.appgenix.bizcal +Jon Nigrine,https://lh3.googleusercontent.com/a-/AOh14GhAdCG91X5VBARNNz0hR_3Ex0LhcTIHiO2TXqMhGe4,"Every now and then appears to disconnect from certain calendars. Support didn't have an answer. Otherwise, I love it.",3,0,2.37.9,2020-03-17 21:30:28,"Hi, the last email we received from you was in November 2019 and it was timely answered. How did you contact us this time? Could you write once more?",2020-03-18 08:43:01,most_relevant,com.appgenix.bizcal +Laura Ferrari,https://lh3.googleusercontent.com/-dX9839xUDa4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN7A-jk_GNnKBqwmTtQG8lNIrAIkA/photo.jpg,"The app crashes quite often recently but when it works it's really useful to manage events and meetings, easy to use",3,0,2.37.5,2020-01-23 07:49:23,"Hi, when does the app crash? Is it reproducible? Does the app have all necessary permissions granted?",2020-01-23 09:45:26,most_relevant,com.appgenix.bizcal +Ck Prince,https://lh3.googleusercontent.com/-O_ku9jlemxQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOdf9c7-MIi0ltYEhKDr8KY608ozw/photo.jpg,"Def prefer this to Google calendar, wish it was easier to see and switch to month view.",3,0,2.37.9,2020-03-18 23:31:26,"Hi, what do you mean exactly by that? Which view do you usually use? You can set month view to be your standard view, you can use gestures or 3 finger tap to open it. Please contact our support and they will tell you how to use the app more efficiently.",2020-03-19 11:03:58,most_relevant,com.appgenix.bizcal +My Le,https://lh3.googleusercontent.com/a-/AOh14GgaB-pHmwNkA30WQJ4Q9SfagMrQ0EBXIm1nd_vcHmw,Weather not accurate. It would be nice task have options on bottom of calendar too.,3,0,2.37.4,2020-01-20 15:28:59,"Hi, what is not accurate according to you? +You can add your task lists to the Favorite Bar the same way you add calendars :)",2020-01-21 08:48:47,most_relevant,com.appgenix.bizcal +Linda Kettle,https://lh3.googleusercontent.com/a-/AOh14Gj9sW6U6yHt6QHomHYuZUECEyf62_QlMVTjVnhz,Easy to use but needs better or customizable colors,3,0,2.37.3,2020-01-13 13:03:34,"Do you mean event or calendar colors? The event color selection is always the same due to the sync reasons. We cannot change it or add additional colors. However, you can set any color imaginable for the calendars (calendars & task lists - pencil icon - color palette icon).",2020-01-14 10:20:20,most_relevant,com.appgenix.bizcal +Joe Bayer,https://lh3.googleusercontent.com/-UQCNWDE6VPo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNVBQRgdGEoDCvY8InNQ01FNuKsiA/photo.jpg,It's good... marginally better than the one that is standard with the phone.,3,0,2.37.4,2020-01-18 20:05:10,"Hi, thanks for the positive review. Nonetheless you rated the app with 3 stars. Is there any problem we could maybe help you with?",2020-01-20 09:49:53,most_relevant,com.appgenix.bizcal +Altaric n a,https://lh3.googleusercontent.com/a-/AOh14Gg1WaoiNv27BQcUBgCYcUql124UvtYro-nxxblP,Now you get a 30sec ad whenever you create a new calendar entry. Still an excellent calendar,3,1,2.37.9,2020-02-16 08:54:28,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-17 08:59:12,most_relevant,com.appgenix.bizcal +Bill Dibb,https://lh3.googleusercontent.com/a-/AOh14GgDRQFUoulzC5X0l2UCHfgh0CxHUkvlPNsC7KVy,Too many long advertisements when I need my calendar.,3,0,2.37.9,2020-04-03 02:33:22,"Hi, please note that the free version is not ad-free. The skippable ads appear only ONCE every 18 hours. Otherwise you use the app without any further disturbance. The ads. contribute to further development and maintenance of this version. If you don't want to receive any ads, you can consider the pro version, which is completely ad-free.",2020-04-03 11:29:19,most_relevant,com.appgenix.bizcal +Krystian,https://lh3.googleusercontent.com/a-/AOh14Ghp-yirVsJBj52aPrEchVR3iroEyLpu-cPC3awE,Full screen ads...,3,0,2.37.9,2020-03-12 13:48:39,"Hi, please note that the free version is not ad-free. The ads contribute to further development and maintenance of this version. If you don't want to receive any ads, you can consider the pro version, which is completely ad-free.",2020-03-12 13:49:34,most_relevant,com.appgenix.bizcal +T J,https://lh3.googleusercontent.com/a-/AOh14GgvjRskKbFVcKujpPmoLeVC5F9Au3X_yR5geLyV,Great app when it works but don't assume you will get any support when it doesn't. Always read our help files and that is it.,3,0,2.37.2,2020-01-08 23:06:10,,,most_relevant,com.appgenix.bizcal +Mary R,https://lh3.googleusercontent.com/-8j-DNEV8AgU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNrZegSLsCl1hMdDpA5YgpZKiJO-Q/photo.jpg,"Overall decent functionality but clunky execution. The premium version has good calendar functions but the notifications are spotty and don't work well with my phone, which defeats the purpose for me. The sub task feature is nice but organizing them is difficult.",3,0,2.37.0,2019-12-22 00:29:31,"Hi, have you already checked all the following settings? https://appgenix.uservoice.com/knowledgebase/articles/1827433-why-are-my-reminders-not-working",2020-01-02 16:01:10,most_relevant,com.appgenix.bizcal +Peter Harvey,https://lh3.googleusercontent.com/-C5_YL5PKyrI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN2AvekXlWTdZi4vOv8HVN_F7mVCA/photo.jpg,Very pleased. Practical and clear. Upset that 1. I paid for and installed an upgrade on my phone but this did not happen on my tablet; all I get is advert for upgrade but at extra cost. 2. Tasks is accessed in 3 steps. Why not 1?,3,0,2.37.2,2019-12-30 06:21:30,"Hi, 1. take a look here: https://appgenix.uservoice.com/knowledgebase/articles/908211-i-paid-for-the-app-but-i-lost-the-pro-features + +2. what do you mean by that?",2020-01-02 15:42:40,most_relevant,com.appgenix.bizcal +Bart Simpson,https://lh3.googleusercontent.com/-IeviLc_JNNg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNfw7urqliMXfvzvrZw2F28ZodY9A/photo.jpg,Ok but i hate big full screen ads with long videos,3,1,2.37.9,2020-02-20 14:41:46,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-21 10:17:21,most_relevant,com.appgenix.bizcal +smarlisg,https://lh3.googleusercontent.com/-n0I3hrMkR3s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMv9VVTEUhE0pbbvDlVTmhmOt_WZQ/photo.jpg,Sometimes gets dates wrong e.g religious holidays. Not as intuitive as others. Ok for basic use.,3,0,2.37.9,2020-03-26 11:53:51,"Hi, does your stock calendar display the synced holidays correctly? Most probably this is a sync/time zone issue, which BC is not responsible for. + +As for the handling what are the problems that you experience?",2020-03-27 09:23:51,most_relevant,com.appgenix.bizcal +Anastasia Kukanova,https://lh3.googleusercontent.com/a-/AOh14GgkzJ1Bn-I9HdGqIRqMfUA-s6t7fpVG2QaAsxuX1w,"Stopped syncing properly at some point, which drives me nuts because having an updated schedule on every device is very important for my job. A",3,0,2.37.0,2019-12-19 22:39:08,,,most_relevant,com.appgenix.bizcal +Judith Yang,https://lh3.googleusercontent.com/-eqEXAxBiz94/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOpxOM994QEHcwYZGTB_ORP0XVLIQ/photo.jpg,Functional but not very stable.,3,0,2.37.4,2020-01-19 19:22:08,"Hi, what do you mean by that? Can you elaborate?",2020-01-20 09:45:54,most_relevant,com.appgenix.bizcal +Thanabhat Koomsubha,https://lh3.googleusercontent.com/a-/AOh14Gi0FhFI_ivOuuOH3GgLRx_1Lxg6qnvrvDrgG_L9Iw,Latest update broke google task. Can not synchronize. Try to log out and can not add google task again.,3,3,2.37.0,2019-12-20 00:56:43,,,most_relevant,com.appgenix.bizcal +Kristi Schnipke,https://lh3.googleusercontent.com/a-/AOh14GiWhdzLMPiT3qc3huFDQ013f5pwvwDWoTNAq_MFIw,"I have been using this app for years, and have loved it, but the latest version is sucking my battery. It's very frustrating.",3,0,2.37.2,2020-01-06 12:19:03,"Hi, do you see BC listed in the battery usage list of your Android device? Could you maybe send some screenshots from the list? Please also add your device information from BC 2 - Help & Feedback - send feedback.",2020-01-07 10:41:24,most_relevant,com.appgenix.bizcal +Eduard Schmidt,https://lh3.googleusercontent.com/a-/AOh14GiT4u2ATDYHdwmDD8MyH1xi0_Dvjuw7DajOHREJQg,"I'm considering uninstalling this previously wonderful app: since the last update, the widget has gone completely unresponsive...",3,1,2.37.2,2020-01-02 22:54:24,"We've been already testing the behavior on our end, but could not reproduce it. This leads us to believe it is the system blocking the background processes for the app, which is the also reflected on the widget. Please take a look here: https://dontkillmyapp.com/xiaomi",2020-01-03 10:35:39,most_relevant,com.appgenix.bizcal +Christine Rechner 70,https://lh3.googleusercontent.com/a-/AOh14GgUeibZeYDkMaGiC3iLpX1toPae1K7m0q2054CBKw,"It serves its purpose. I have not used too many others to compare. I wish I could set different reminder sounds. I HATE the ads after adding an appointment. Sometimes I have 2 things to add and have to wait, which is not ok when coordinating with a doctor's office.",3,0,,2020-03-18 07:27:41,"Hi, please note that the free version is not ad-free. The ads are, however, skippable and appear only ONCE every 18 hours. Otherwise you use the app without any further disturbance. + +The function to set an individual calendar reminder sound is a part of PRO pack.",2020-03-18 08:49:33,most_relevant,com.appgenix.bizcal +J C,https://lh3.googleusercontent.com/-ePoT957ewJk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPM2BTK20-E27o54EAtubyk9gCPqw/photo.jpg,Hate the ads.,3,0,2.37.9,2020-03-14 03:44:41,"Hi, please note that the free version is not ad-free. The ads contribute to further development and maintenance of this version. If you don't want to receive any ads, you can consider the pro version, which is completely ad-free.",2020-03-16 09:02:43,most_relevant,com.appgenix.bizcal +Daniel Ahmed,https://lh3.googleusercontent.com/-tP_QdXhFDfE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPF2OhyxfhTPetO8J94w5KqpAcQ8Q/photo.jpg,I really like the sophisticated display and the level of personalisation you can make. It would get 5 stars...but....the default text colour for the month display widget is a dark grey that is too dark to read when using the dark theme. I have to go through every entry to change them individually to a light grey so I can actually read it in the widget. Any help?,3,1,2.36.2,2019-11-27 19:56:48,"Hi, do you mean your calendar color? You can change it in the app - calendars & task lists - pencil icon - color palette icon. + +Apart from that you can change your widget colors in the widget settings - colors.",2019-11-28 11:12:56,most_relevant,com.appgenix.bizcal +Ian H,https://lh3.googleusercontent.com/a-/AOh14GgkwIs6uqe_yKN4D8O6F8BmWYYGSaxU8icvdIoV9jI,"Was very happy with the widget, but the refresh button stopped working (outlook 365). Edit: Events from Google Calendar are synced fine. Events from Outlook 365 to mobile device sync fine, but edit them do not sync them back. Manually refreshing from the widget does noting for outlook 365. Manually refreshing in the app works without problems. These are all actions when using the device (Nokia 6.1), and not in battery saving mode.",3,3,2.36.2,2019-11-14 21:17:34,"Hi, it sounds like a sync issue. It could help to remove and re-add the account for sync in your Android OS Settings - Accounts & Sync. + +Please remember that BC doesn't have its own sync abilities and uses only those provided by Android. Therefore it cannot be responsible for any sync issues you may have on the device.",2019-11-15 11:11:01,most_relevant,com.appgenix.bizcal +Joe Sutton,https://lh3.googleusercontent.com/a-/AOh14Gi183xe_U5zfaZpERZXDblIa_LwB_xoBlM3apOxwMk,"It's decent but the Google tasks integration is bad. It's set to hourly sync but doesn't actually update tasks unless I manually trigger it. The repeating tasks data is not synced with Google: if it's due to repeat in BC but I tick it off on a Google webpage then it's gone, no repeat. I'm also having a problem with notifications appearing later than they should. All in all, I'm going back to Google calendar.",3,1,2.36.2,2019-11-12 08:08:13,"Hi, given the constraints of space for answer here could you please contact our support and they will address your issues. You can do it directly form the app in the ""help & feedback"" section.",2019-11-12 10:34:16,most_relevant,com.appgenix.bizcal +Michelle Legoza,https://lh3.googleusercontent.com/a-/AOh14GhksO5dxyFoj6Sl_XW-cUJkFiaoJOPkKIZuwdEleYM,I like this app and have been using it for a while but have started noticing appointments I put in the calendar don't sync to Google and some how disappear out of my calendar so I have no idea when they are. Extremely frustrating since i don't always notice the appointment has disappeared.,3,2,2.36.2,2019-10-14 00:30:21,"It might be due to a problem of Google. We've contacted other calendar developers and they are experiencing the same problems. It especially happens right after the sync of events created with no or low internet connection. That is why, we all suspect that there must be something wrong with the Google sync, which we unfortunately can't influence.",2019-10-14 12:31:40,most_relevant,com.appgenix.bizcal +Gavin Maclure,https://lh3.googleusercontent.com/a-/AOh14GhOGhdtB5A4AELwZQZwB454hbIMOBLEWJ4WD0f6XcI,"I used to love this app but since installing the latest version on my new Samsung 10 the Google Tasks sync has stopped working. It synchronises from Google to Business Calendar but will not synchronise from Business Calendar to Google. ] I have tried disconnecting my Google account and reconnecting, I've made sure BC2 Tasks is associated with my Google account and all Sync settings are turned on. Is this is a known issue and if so will a fix be developed please? Thanks.",3,9,2.36.2,2019-10-13 19:36:33,"Hi, have you also checked Android OS Settings - accounts - BC 2 - account sync - tasks?",2019-10-14 12:44:13,most_relevant,com.appgenix.bizcal +monsmom1,https://lh3.googleusercontent.com/-j7sbZMXLBMg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOSaHdaRgLWTmp__nJV9L6difrJ9w/photo.jpg,"Overall it works, but not so easy to use. When you block out time the first and last day of the time block do not turn the same color as the rest so it can throw you off. Sometimes it's hard to set specific dates and the icons are limited.",3,2,2.36.2,2019-10-10 03:23:02,"Hi, do you mean multiple-day events? Do you set start and end time for those? If so, the display is correct. The first and last day of such event are not all-day (don't last 24 hours) and are therefore not displayed in the all-day area. Tho change it, mark your event as all-day",2019-10-14 12:54:10,most_relevant,com.appgenix.bizcal +Wolfe Grossman Sr,https://lh3.googleusercontent.com/a-/AOh14GivCsGMdYPH19KbTCn5nc4XOrezh-s41cpU_cwTuQ,"Great overall, somewhat limited.",3,0,2.37.0,2019-12-24 15:03:54,"Hi, what are the problems that you experience? Do you look for any particular feature?",2020-01-02 15:57:57,most_relevant,com.appgenix.bizcal +BWonderful Rios,https://lh3.googleusercontent.com/a-/AOh14GhPMDhSjtL-CBQ6GWz1DSOEFynMxwsB8DkHQbmU_g,"The app was working great, up until recently! Now i cant click on the date, and update it directly through the widget. I have to open the app and make changes through there. What happened! :(",3,0,2.36.2,2019-11-21 22:57:49,"Hi, please make sure your Android system is not blocking the background processes for the app, which may also affect the widget: https://dontkillmyapp.com/",2019-11-22 09:32:31,most_relevant,com.appgenix.bizcal +Vojtech Jakl,https://lh3.googleusercontent.com/a-/AOh14GgwnpyMKzip5KUmfE5u22lRmj6IHEveDp62ZUDf,"beautiful widgets - in Month view, I would prefer colored bars with text inside, the same as for full day events. Syncing with MS Exchange: PROS: Calendar - far better then Samsung Calendar; CONS: Tasks - completely missing (five stars down)",3,0,,2019-12-19 22:53:52,"Hi, the display of the events depends on they characteristics: all-day events = background in the calendar/event color, events with time = title font in the calendar/event color. This way you can distinguish your events right away.",2019-12-20 10:24:04,most_relevant,com.appgenix.bizcal +Aaron Misner,https://lh3.googleusercontent.com/-9RUAOa5OVWk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNZ-v59i2qEqoHrkxBFCT-lf9adew/photo.jpg,"I have been using this app for years, but I am thinking of trying a different app. The issue that I have, is that doing seemingly simple tasks is overly complicated. For example I just want to make a personal and a work task list that is local to my phone. Doing so has proven very complex and often I will create a task only to realize it has defaulted to my gmail account rather than the local list I intended. As a user it's frustrating, the reason I use this app is to streamline organization.",3,0,2.32.2,2019-01-19 17:38:44,"Hi, do you choose a correct list, to which a task should be saved? What is your standard list set in the settings - standards... - tasks - list?",2019-01-22 12:05:58,most_relevant,com.appgenix.bizcal +Amir Alayan,https://lh3.googleusercontent.com/-Q2AMIlODF_k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMYdj52Gq-l3d8OQsmZosLvcpbfcA/photo.jpg,"Love the program and it's definitely an improvement over Google Calendar. Just the easy moving back and forth between dates using the 'go to' feature is a huge plus in my book. It does have some short comings that are irritating to me at least. I use my calendar to keep track of my to do lists. I save them in the Description field. First off the editing features such as bolding, underlining, line numbering, etc don't appear anywhere unless like in my case you accidently discover them by doing a couple of steps of bizarre gymnastics. Once found I loved the features. However the first thing that is annoying is that if you have a long list of things that go past one screen you have to keep scrolling down to access those features. Would be nice if there was a button or tab that would open a stationary bar at the top or a floating window that moves with the screen. Second issue is definitely a software bug having to do with the line numbering. Once a line numbering list has been established and you want to go back to add a new line or change the priority by moving things up and down the system does odd things.",3,2,2.35.0,2019-07-23 17:43:15,"Hi, could you contact our support and send us some screenshots? + +We are always open for feature requests and improvement suggestions on our user forum +https://appgenix.uservoice.com/forums/280499-business-calendar-2 +Other users can vote and comment on the ideas there as well.",2019-07-24 09:10:16,most_relevant,com.appgenix.bizcal +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"pretty cool.. its features are much better than the previous version. However, the widget shows up too many Google Play apps pop-up advertisements, which is sometimes really irritating and takes my time for schedule planning.. (I saw a review from the app developer.. maybe, that problem could have been coming from other sources like my phone or google play app itselft, or the like.. Sorry for the comment that I have left even when I was not sure.. I thought that way because a lot of popups have ben shown when I was using this app.. Sometimes Gallery or Photo app on my phone (my phone is cheap but compact) even sometimes show up ad.. maybe that could be the real cause of the problem..)",3,1,2.31.3,2018-11-04 11:21:04,"Hi, the behavior is for sure not caused by BC. Even in the free version of the app there are no popup reminders not it is possible to open the photo apps.",2018-11-05 10:16:06,most_relevant,com.appgenix.bizcal +Martin S,https://lh3.googleusercontent.com/a-/AOh14GjxvccOxO18LnoAtm9dy9328u3-6bVAx2PvYFh9,"Since the last update, May 29, I have been losing random events. Tonight, I've added the same event four times over the last three hours. Just waiting to see if it disappears again. Several updates ago, the photos I attached to each profile stopped appearing. I think the OS was blamed. It's been a great app for several years but I'm afraid of what else I might lose in the near future.",3,0,,2019-06-05 04:41:50,"It might be due to a problem of Google. We've contacted other calendar developers and they are experiencing the same problems. It especially happens right after the sync of events created with no or low internet connection. That is why, we all suspect that there must be something wrong with the Google sync, which we unfortunately can't influence.",2019-06-05 09:16:29,most_relevant,com.appgenix.bizcal +Prem Patel,https://lh3.googleusercontent.com/a-/AOh14GjPMz3oBHSanCW5oTJXMe4qUy6BtlFdy-ZkqIzAuw,"I'm not able to sync events I add in this calendar with my Google calendar, even though I specifically pick the Google calendar every time I add a event. Also I'm not getting any notifications prior to events, you have to manually add reminders for each event, you just can't set a setting to be reminded X minutes before any event. Turns out you need to have your phone default calendar enabled to sync your events and to get notifications from this app.",3,0,2.31.0,2018-09-20 21:14:18,"Hi, about the sync: does your stock calendar app have the same issue? Please consider, that BC doesn't have its own sync functions and uses those provided by your device. +As for the reminders there are various settings which influence them: https://appgenix.uservoice.com/knowledgebase/articles/1827433-why-are-my-reminders-not-working",2018-09-24 11:47:00,most_relevant,com.appgenix.bizcal +Clifford B. Brown,https://lh3.googleusercontent.com/a-/AOh14GhOKR_TcRmBJSiRY6ILML_bLlBoQEDuKs_mqEl54Eo,"This app is great as far as the calendar and task functions. However, it is nearly unbearable to use since it doesn't respect the phone setting to not notify during a call. When it notifies during a phone call using the regular carrier app (not Skype, Hangouts or other app), it buzzes and sends a loud notification that is painful and very disruptive. I sent in a support request 3.5 years ago and they said it shouldn't do that and they were going to ""look into it."" But they haven't fixed it in any updates and it's been the same on all of the different phones I've had since then, not just an isolated issue on one phone.",3,4,2.34.0,2019-05-24 15:01:27,"Hi, the app does respect phone settings. Please note, that this applies only to actual phone calls. If you use other apps like Skype, Whatsapp etc. to call, the settings are not applied.",2019-05-24 08:23:05,most_relevant,com.appgenix.bizcal +B MW,https://lh3.googleusercontent.com/a-/AOh14GgTqZSmAP8A5wPEBadSCfXTaN22_jiTpQu7hDsc6Q,"Help! GPS coordinates show up as phone numbers and/instead of a location. I enter the GPS coords in location, but in widget it shows the ""phone"" and ""map"" icons. Then when you select the event, but before edit, it shows it to be a phone number. I've bein dealing with it, but it's getting frustrating bc we use it 3-4 times a day I love the app, but this is just getting too much.",3,0,2.19.0,2018-09-21 18:43:30,"Hi, where and how do you add the location? Could you send us some screenshots of the issue you're experience it?",2018-09-24 11:31:44,most_relevant,com.appgenix.bizcal +Honey French,https://lh3.googleusercontent.com/a-/AOh14GhmIRyf41gT-YQ9_Q4KoQeB-UA8Bx2K9wChToeB4w,"I gave it a lower rating because lately if I had any repeat scheduled appointments, I can't change one without changing them all. Very aggravating. Before, I was able to cancel one without affecting all the future repeat weekly or monthly entries. Before, I could use this calendar to keep track of my past activities. Now it looks like I attended a meeting when I didn't because I couldn't cancel it without affecting future meetings",3,3,2.35.1,2019-07-30 19:46:01,"Hi, you must have a sync issue on your device. Take a look here: https://appgenix.uservoice.com/knowledgebase/articles/359224-i-would-like-to-edit-or-delete-a-single-event-of-a",2019-07-31 09:05:08,most_relevant,com.appgenix.bizcal +Rose Zaeske,https://lh3.googleusercontent.com/a-/AOh14Ggaq4A8Y8PRkG6sRSi1Elx7XslQGxqs47MJzt0w5A,"Just lowered my rating. Used to work great but now does not properly sync everything in my task list with my Google Calendar on my computer. It will sync new events & new tasks. But if I edit a task (ex. change the date of the task), it does not sync properly w/ my Google Calendar. It used to be that all edits synced & appeared the same in both the app & my Google Calendar, but not now. I have been emailing with the support for this app, but have not yet found a solution.",3,2,2.33.2,2019-05-09 17:06:16,"Hi, we've been investigation the problem on our end and the data is correctly synced. Please make sure the account is correctly set up and the sync has time to kick in.",2019-05-10 10:53:51,most_relevant,com.appgenix.bizcal +Frederic Morel,https://lh3.googleusercontent.com/-qI2Zmwze3no/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMVrR5XZafJLL2DXMaVq2aY0Bu4pw/photo.jpg,"The best Android calendar app for power users. However, since a year or so, it freezes with almost every use, making it practically impossible to use. Not sure if this is a widespread problem or just me. Support has been responsive and has tried to reproduce the problem, but in vain. The option of sending a logfile for analysis is unfortunately not available. A pity, as it is a great app; I still haven't found any other remotely as good as this one.",3,0,,2019-06-25 12:20:04,"Hi, as far as we could verify, the issue was forwarded to the developers and they couldn't reproduce the problem. If it is not reproducible, it is not possible to know the reason for it to be happening and potentially to fix it.",2019-06-24 12:51:29,most_relevant,com.appgenix.bizcal +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I have enjoyed this calendar for 9mths so much so I paid to go Pro, now 3weeks on it no longer syncs events older than two weeks and I need to refer back further. The app blames google for the limitations but I now have another calendar that syncs back 3yrs so nothing to do with google. There used to be an option on BC to syncs all events past and future but this option is no longer available. Really disappointed as was a good app, see how you get on but don't waste your money upgrading like I did 🙁",3,1,2.31.0,2018-09-21 08:31:53,Please consider that BC does not have its own sync functions. It uses the functions provided by your device and can't therefore be responsible for any sync issue you experiments on your device. What is the other calendar app that you refer to? Is it possible that it does not use Android sync?,2018-09-24 11:39:13,most_relevant,com.appgenix.bizcal +edsdame,https://lh3.googleusercontent.com/a-/AOh14GhGg0avi-KZkHUGk-LtHhvme1pSAqHslNxcyt9cBQ,"Can't put a recurring ""every x weeks on a certain day"" not to Monday. No matter what I set and save, no matter if I try to modify one, it is always only Monday. If I choose two days, the second can be any other day. Please fix this. Also, I can't seem to be able to modify a recurring ""every 2nd day of month"" tipe of event chain.",3,3,2.31.3,2018-11-02 05:41:22,"Hi, which repetition rule do you use? Both options are available, you just need to set the repetition rule correctly. Please contact our support and we will tell you how to do it.",2018-11-02 13:23:10,most_relevant,com.appgenix.bizcal +Hardeep Singh,https://lh3.googleusercontent.com/a-/AOh14GjfE6RoOLzmRq05NyPCDRYVI_vZFLwVsTO4G7G6,"The widget in one line mode could shorten the time spans so they don't take as much space. Also it doesn't seem to sync well between multiple phones with tasks. *10/22/2018 edit* Not sure how else to respond to the dev but it's task syncing not calendar syncing that's the issue. *10/23/2018 edit* both devices have task syncs active, and are just the main google account",3,0,2.31.2,2018-10-24 06:18:48,"Hi, have you tried re-logging in with the account fro task sync? Please make sure to back the non-synced data up before you do it.",2018-10-23 10:21:39,most_relevant,com.appgenix.bizcal +Shawn Pringle,https://lh3.googleusercontent.com/a-/AOh14GjxQetAIRZAC03TuQdrI9mj69kmbah0IHaqcafk,"Authors: Please stop associating every extension with this app. It's annoying this pops up when I try to open a jar file. [Edit] This means that excluding certain very popular file extensions (svg, pdf, jpg) when a file is opened from the files app, business calendar opens. This means if I try to open a Bz2 file, a AndrOffice file (odt) or a Jar file (jar). It's strange for me that Open Office files wouldn't open in AndrOffice but instead Business calendar opens instead.",3,1,2.33.0,2019-02-20 13:21:06,Is it possible that you accidentally set BC as standard for the action? Try clearing the defaults fro actions in you Android OS settings and you will be able to choose the wanted app. We don't add the app as option. It is done by your Android device.,2019-02-21 09:45:57,most_relevant,com.appgenix.bizcal +Alex Sewell,https://lh3.googleusercontent.com/-koCBZBNGxA8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOhSSRMe_UpaRJ0XYQwca6NM3VXqA/photo.jpg,"The app is great for the use, however I am giving it 3 stars. If I make a new event and change the colors, or add more than one reminder, these changes erase after I create the event. This results in me having to make those changes twice for them to be saved. Very annoying and inconvenient. Edit: I add the events on my phone for a synced calendar. The wifi connection is always stable as well.",3,4,2.35.1,2019-09-16 14:04:14,"Hi, could you test the stock app? It sounds like a problem with the calendar storage on your device (where the events are stored) and it could help clearing it. + +https://appgenix.uservoice.com/knowledgebase/articles/486861-how-do-i-clear-the-calendar-storage",2019-09-17 10:43:46,most_relevant,com.appgenix.bizcal +Terry Hooper,https://lh3.googleusercontent.com/-HLP4f_LdnA4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN7SZjEdovjGn4-eCeRhhG1S39w7w/photo.jpg,I've been using BC1 for years and I've installed BC2 on at least 2 seperate occasions. BC2 is so not as good as BC1. The overall look makes it look like a cheap childs game. The functionality became nonsensical and it made going back to BC1 such a pleasure. I can't imagine what the developers were thinking when making such changes. After using BC1 for so long I had high hopes for its future development but alas it not to be. These days I'm looking elsewhere.,3,0,,2019-04-07 23:17:13,"Hi, please consider that BC 1 and BC 2 are two separate apps with different codes and should be treated so also in rating. Do you have any technical issues with this app?",2019-04-08 12:10:41,most_relevant,com.appgenix.bizcal +Louis Perez,https://lh3.googleusercontent.com/-8kQJ76LSYZ4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMqnoYTNUVM9km5tQ0hua3zZ2tzeQ/photo.jpg,"It's effective. Yes it's better than a lot of other options out there. It's just dated, the interface is weak and difficult to navigate. They could really make some strong improvements by streamlining it. I bet most users, pro or not, aren't aware of all the settings. Response 8/8/19: Thanks for the offer but I think you're missing point. If I had time to help I would have long ago though. Response: I wouldn't have paid for an app that required me that much submit feedback in a forum.",3,2,2.35.1,2019-08-31 14:23:35,"Hi, we are always open for feature requests on our user forum :) +https://appgenix.uservoice.com/forums/280499-business-calendar-2 + +Other users can vote and comment on the ideas there as well",2019-09-02 10:44:10,most_relevant,com.appgenix.bizcal +Roxey Deojay,https://lh3.googleusercontent.com/a-/AOh14GgghqaRoUe5h44loQ4iWS5hGckSibtPLTR06vgcNQ,wonderful when it works I have written them and never heard back. I bought the full version because I really like the calendar. I love that I can see many of my monthly entries on the full month widget view. I do not love that it crashes a couple times a day and I have to delete and add the widget again... especially since it seems to always happen when on in front of someone making an appointment! smh please fix update4dev: i did not receive email. I just resent email which contains info.,3,1,2.33.2,2019-04-17 17:29:58,Do you use the stock launcher? Please make also sure the app is allowed to run in background and auto-start.,2019-04-23 15:32:59,most_relevant,com.appgenix.bizcal +alias 0,https://lh3.googleusercontent.com/-bjukDRZW-eE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNijb7Dc_TeEL9YbiRHIUFtqR4-jQ/photo.jpg,"Bought the pro a few years ago. However, recently went to a new phone, and now I'm seeing ads, and it doesnt look like I have the pro version anymore. Not sure what happened but jacked up that I paid for the pro, and unable to get the functionality of the pro version without buying it again.",3,0,2.33.2,2019-04-15 05:17:26,"Hi, please see the help article from our knowledge base: https://appgenix.uservoice.com/knowledgebase/articles/908211-i-paid-for-the-app-but-i-lost-the-pro-features",2019-04-17 10:08:04,most_relevant,com.appgenix.bizcal +My android account,https://lh3.googleusercontent.com/-bxQ80MJV5xM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMphatElm3CNsfuvos_SZ_xa4T8kw/photo.jpg,"Great app, easy to use and convenient. I love the vertical scrolling in the month view. But it's a shame that it doesn't implement the functionality that allows to share my calendar events such that only a 'busy' status is shown and not the event details (I use a nextcloud agenda and sync with davx5)",3,0,2.32.2,2019-01-17 17:19:03,"Hi, it is not possible in BC as BC doesn't sync any data. It should, however, be able to share the calendar from within the Nextcloud online calendar and sync it to your Android devices.",2019-01-18 16:15:02,most_relevant,com.appgenix.bizcal +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"the widget keeps distorting itself. resize fixes it, but not for long. edit: monthly widget, nova launcher. Nova launcher has worled great for me trough several Android versions. I'm not going to the stock one. your widget was also not working in android 8+nova. I upgraded a few days ago.",3,0,2.32.2,2019-01-30 10:13:05,"We know for a fact, that Nova has various issues. Nonetheless we will test it once more to make 100% sure. Please send you device information ( help & feedback - send feedback).",2019-01-30 10:35:19,most_relevant,com.appgenix.bizcal +Miles Vancura,https://lh3.googleusercontent.com/a-/AOh14GhCFkqj-8-ZLHH1Anu8dShn0S8ZBrBMjcSn1-M5,"This app cannot be useful to me until it works with DAV synchronized task lists. For some reason it is able to load calendars from the DAVx app, but not Tasks.",3,0,2.36.2,2019-11-06 14:49:18,Currently it is only possible to sync tasks with Google. We hope to implement our own functionality which would help us to sync tasks with other providers in the future.,2019-11-07 09:05:49,most_relevant,com.appgenix.bizcal +Xubile Xubile,https://lh3.googleusercontent.com/a-/AOh14Ggr0utyZH0DAUM69-bukfiPwcOc6lU6PQLknVS8nQ,Random ad pop ups that distracts while pulling up a meeting in a hurry. Doesn't parse contacts from email meeting invites into names you can easily add and remove. Is pro worth $6? A little too high imo but developer is entitled to sell at whatever price. I find Google calendar works fine for my needs.,3,0,2.33.0,2019-03-05 18:06:08,"Hi, what popups do you refer to precisely? You can add attendees as well as link contacts locally:https://bit.ly/2Thq1PT +As well as use the auto-suggest function: https://bit.ly/2VIkM8J +Please note, that the free version is fully functional and you can use it completely free of charge",2019-03-06 08:46:53,most_relevant,com.appgenix.bizcal +Domn Dragos,https://lh3.googleusercontent.com/a-/AOh14GjLPnLSspE8jnp0xXsyHNCLEI9Kq1gfE_83mypo7Q,Hey i was very glad to use calendar 30 until now. I can not edit anything ... If i want to delete something is reappear every time. I can't move or delete. If is not working i want my money back. I will change the review if you solve this problem. Edit :I will edit the review after you ll solve this problem. I send it an email also.,3,6,2.34.2,2019-06-23 13:43:26,"Hi, do you refer to the series? Did you add the series directly in BC? Please note, that the system installed on your device is not able to handle the series well, but we built in a workaround for BC 2. Please take a look here: https://appgenix.uservoice.com/knowledgebase/articles/359224-i-would-like-to-edit-or-delete-a-single-event-of-a",2019-06-17 07:59:50,most_relevant,com.appgenix.bizcal +Aaron Thor,https://lh3.googleusercontent.com/a-/AOh14GicA0lOTsjfa8BjDwzT4W2jrcOE_zSzNOBcYl1ShQ,"been using for couple of years with no issues, till the recent update with ad pushing.. well, can't really complain coz we're using it for free.. but it's too distracting when you're checking your appt during crunchtime. unstalling as a result. reverting back to plain old no fuss google calendar. tks though",3,2,2.33.2,2019-04-27 09:17:19,,,most_relevant,com.appgenix.bizcal +Pierre Fortin,https://lh3.googleusercontent.com/-G3E6NFGNDIw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOryAP3walQq9RMbKLKLWoiRMttgA/photo.jpg,"was working fine for couple years. Now... 1. it creates duplicates of repeating events 2. while trying to change notification sounds, it switched to silent with no way to restore 3. FAQ to allow single repeated event deletion says to sync to get 'only this event'; but 'sync now' closes menu w/o synching",3,0,2.35.1,2019-08-12 13:55:11,Could you please contact our support directly and we will address your issues? We don't have enough space for answer here unfortunately.,2019-08-13 09:48:02,most_relevant,com.appgenix.bizcal +Keith Clark,https://lh3.googleusercontent.com/a-/AOh14GhnAegqi7hF0esjkKtdri-YTNCYIQ5lzu8OUofoNw,"Been a user of the app for 5+ years. Has been helpful in managing a busy life. Up until recently would have given 5 stars. Three stars because of poor app support. I think I have finally worked out my issue, but disappointed in level and responsiveness of support. Just hope you never need support.",3,0,2.33.2,2019-04-10 05:42:07,"Hi, sorry you feel this way. However, I verified your tickets and you've been receiving timely responses. What is more, our support is trying to help you solve the sync problems, which are not BC problems in first place. Please remember, that it is you Android device, which is responsible for the proper sync.",2019-04-10 10:48:58,most_relevant,com.appgenix.bizcal +Anjo Draaisma,https://lh3.googleusercontent.com/a-/AOh14Ggcc0PgNmVfCNPwuBS7YMLwUplo635T_1WKIbs3,"Nice calandar easy to use, there's one thing and that is the lack of a good notification on the screen. I mist a few appointments because of that so I deleted the calendar. I really liked it but I need a good warning system!",3,0,2.33.0,2019-04-10 16:47:58,"Hi, there are various settings which influence the reminders. Please take a look here: https://appgenix.uservoice.com/knowledgebase/articles/1827433-why-are-my-reminders-not-working",2019-04-11 08:35:09,most_relevant,com.appgenix.bizcal +Erik Badillo,https://lh3.googleusercontent.com/a-/AOh14GjBxlyDLM7n4YTFv33lQqfynRmWOWMZcNzmHtH5bg,"I purchased the pro version, there was an update and now the pro version is gone. I cannot seam to get it back and I have written thru the feedback link with no response. The pro version purchase shows in my play folder but I cannot get the pro version loaded. I uninstalled and reinstalled and still no help. Need to get the pro version loaded again, please help.",3,5,2.34.2,2019-06-06 20:02:02,"Hi, both of your emails have been answered. Please check your mailbox. Maybe the messages didn't land in the main inbox.",2019-06-07 12:14:33,most_relevant,com.appgenix.bizcal +J V,https://lh3.googleusercontent.com/a-/AOh14GjiMLYvuRCge_8mEpPOQ3h4-lGbq57oO49anpPMCqU,"This was the absolute best calendar app out there for anyone placing productivity at the top of the list. Downgrading because recently the location autofill function is not working very well. I've had to rely on other calendar apps to add appointment, meetings and events.",3,0,,2018-12-20 20:11:28,"Hi, please contact our support and we will tell you what to check/setup.",2018-12-21 11:21:51,most_relevant,com.appgenix.bizcal +Elusive Tachyon,https://lh3.googleusercontent.com/a-/AOh14GhvKe095eaEwTVzKFmWS65yYebVpzgc9NS8MXxh7A,I don't know if a Google update has rendered this app useless for reminders but I no longer get reminders for important events. I now have to go into the calendar app itself to view what is coming up. I'm sick of apologising to people for missed appointments. I use a Note 4.,3,0,2.31.1,2018-10-06 08:43:13,"Hi, have you already checked all the following settings? +https://appgenix.uservoice.com/knowledgebase/articles/1827433-why-are-my-reminders-not-working",2018-10-08 09:39:46,most_relevant,com.appgenix.bizcal +Vilma Liubeckienė,https://lh3.googleusercontent.com/a-/AOh14GjquyjwFqnHopj32jnD1JyjjY8z-iZrvTJ9q2DpwQ,"It has very nice, useful and comfortable look, I used it with a pleasure. Unfortunately synchronization with gmail calendar stopped working. Tried to reinstall this app - it helped for a week and stopped working again.",3,0,2.33.2,2019-04-29 05:47:31,,,most_relevant,com.appgenix.bizcal +W.D. Mulholland,https://lh3.googleusercontent.com/-Et0U16VXQms/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOYOZqLH11YaG4W-5J3NvGC7JfWuA/photo.jpg,"It WAS really great until I bought my Samsung S9 (was using an S6 prior), and when I transferred the Business Calendar program to the S9 the calendar's Search Function no longer worked. I ask you, how useful is a ""business cakendar"" without a ""Search Function?""",3,2,2.32.2,2019-01-19 05:49:19,"Hi, this sounds unusual. Do you use search in view or the one in menu (see link below)? What happens precisely? Are all necessary calendars activated for preview? + +https://appgenix.uservoice.com/knowledgebase/articles/884718-search",2019-01-19 10:38:03,most_relevant,com.appgenix.bizcal +Karl Thornton,https://lh3.googleusercontent.com/a-/AOh14GigTAHogrUVI_CqCUqlSOGJU5U3l5iiz3cnjcdPHA,"Seemed like a decent enough app, but I was looking for a calendar that worked with Google but that I could add local photos to events with, a feature currently lacking in Google calendar. Without that, didn't seem different enough to justify extra install.",3,0,,2019-09-21 22:52:38,"Hi, the attachment function will soon be added to the calendar :)",2019-09-23 10:11:35,most_relevant,com.appgenix.bizcal +Itay Zak,https://lh3.googleusercontent.com/-0rZDwNTEjJY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMV3B9C1YBKHY3dEMtf2BidR8FCNw/photo.jpg,Many critical bugs that don't get fixed within a long period of time. Also many times doesn't sync changes to specific calendar or changes on one event out of a series of events.,3,1,2.33.2,2019-05-03 07:04:12,"Hi, what are the ""critical bugs"", which you refer to? Could you elaborate? As for the sync issues, try removing and re-adding the affected account in your Android OS settings - accounts & sync. This usually solves the sync problems on the device.",2019-05-03 09:27:58,most_relevant,com.appgenix.bizcal +Patrick Becker,https://lh3.googleusercontent.com/a-/AOh14GhprD5bjk_8MlWfHThxQKixvaFtCexas73TuNffSQ,"Need the ability to create recurring tasks and then edit separate instances, NOT the whole series or event and future instances. I need to edit just a specific instance. I think it used to work and give me the option to just Edit This Event, but now that is gone.",3,0,2.34.2,2019-07-04 21:58:01,"Hi, the option is available: https://appgenix.uservoice.com/knowledgebase/articles/359224-i-would-like-to-edit-or-delete-a-single-event-of-a",2019-07-05 08:44:41,most_relevant,com.appgenix.bizcal +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,I really like the app but there is one feature that is to do but which syncs with Microsoft account use the Microsoft to do list because it sync very well with my laptop and also because it has the black theme. I would also prefer to have business calender on the web,3,0,,2018-11-10 06:07:05,"Currently Business Calendar is only available for Android devices. +We consider developing a desktop version, but at the moment we don't have solid plans. + +Right now the only possibility to view and edit your tasks/events online is to synchronize them with for example Google/Outlook and do it in th Google Web Calendar/Outlook online.",2018-11-12 10:50:08,most_relevant,com.appgenix.bizcal +Janine Hoffart,https://lh3.googleusercontent.com/a-/AOh14GiJCJS4fgMo1H0XvTFwHDJLYHU849ul6FRI8FAwnw,"I wish I could delete things that automatically show up in my calendar, things like holidays in other countries etc., I don't want ""everything"" showing up that really doesn't pertain to me. If there is a way, I haven't found it!",3,0,2.35.1,2019-09-11 16:57:41,"Hi, you can do it in calendars & task lists - pencil icon - bin icon.",2019-09-16 13:50:35,most_relevant,com.appgenix.bizcal +Kristof Petho,https://lh3.googleusercontent.com/a-/AOh14GgLNGSPzqBDwfyJr9s0slWTtBbDjCRgqjvV_oXRSw,"Great and powerful app, except for one thing: location doesn't work when entering addresses. Whenever I type an address with house numbers, the location recommendation list never contains the house number...",3,0,,2019-04-05 05:23:22,Can you send us some screenshots?,2019-04-05 11:00:03,most_relevant,com.appgenix.bizcal +R S,https://lh3.googleusercontent.com/-BULQXjMKWjM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMjQTqeyVYvJx0ajQYNI73J1aqggw/photo.jpg,Works fine for importing calendar. Can't say same for tasks. OS: Linux,3,0,2.36.2,2019-11-02 21:21:23,"Hi, please contact our support and they will try to provide you with a solution. You can do it directly from the app in the ""help and feedback"" section.",2019-10-14 11:24:17,most_relevant,com.appgenix.bizcal +Sylvan Agustin,https://lh3.googleusercontent.com/-Kb8k3Xng2l4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNRIEAEOwLjHVkuFspcxyW2i2qsBg/photo.jpg,"This app could have been the best, I uninstalled it due to the widget error, after restarting the phone it doesn't load. I liked it but if it doesn't perform well on my need ""widget month calendar"" it's a nah.",3,0,,2018-11-03 16:15:12,What is your launcher? Have you tested other launchers as well?,2018-11-05 10:27:27,most_relevant,com.appgenix.bizcal +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I love BC1 and BTasks, but am disappointed that BC2 will not bring my tasks from BT and the new integrated BT syncs only to Google tasks but no longer my Toodle-Do account. Deal breaker for me! Why would you break the functionality with your own BTasks app???",3,0,,2019-01-29 02:51:58,Currently it is only possible to sync tasks with Google. We hope to implement our own functionality which would help us to sync tasks with other providers in the future.,2019-01-15 12:00:42,most_relevant,com.appgenix.bizcal +Throw Away,https://lh3.googleusercontent.com/-KzI9BXeWnrc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM_yFa_lEScV1CrmFgceybplXFgcQ/photo.jpg,Why can't I change a single event in a reoccurring series? Am I missing something? It only has 'Change this and future events' or 'change all events in series',3,0,2.33.2,2019-05-14 21:14:33,"Hi, please take a look here: https://appgenix.uservoice.com/knowledgebase/articles/359224-i-would-like-to-edit-or-delete-a-single-event-of-a",2019-05-15 09:43:16,most_relevant,com.appgenix.bizcal +Daniel Schwerin,https://lh3.googleusercontent.com/a-/AOh14Gj70mqjklf3PUVEqGGcZX79kkJ5tSNU3b5RVkcMsNc,Not sure what happened but now I have to hit the sync button every time to get my calendar to sync. I've deleted the app and reinstalled and still having the same problem,3,5,2.33.2,2019-04-17 21:01:10,Please remember that BC doesn't sync on its own. It uses Android function to sync data and it not therefore not responsible for the sync issues on the device. There might be a general sync problem and it could help to remove and re-add the account for sync in your Android OS Settings - Accounts & Sync.,2019-04-23 15:25:21,most_relevant,com.appgenix.bizcal +Violet Lara,https://lh3.googleusercontent.com/a-/AOh14GhzOAkP8Nelzglj5FOnxIhEB0pJl-X3MdwwnFx21A,You should have the choice to swipe left and right for different months and just up and down Also change the word title event colors on a particular day to make it stand out.,3,1,2.31.3,2018-11-08 19:58:49,"Hi, the both swipes are available in the Month view. When you swipe vertically you go to previous next months. When you swipe horizontally over the day, you will open the multi-day view with the selected days. As for the title which view do you refer to? Can you send a screenshots?",2018-11-09 10:12:41,most_relevant,com.appgenix.bizcal +Daphne Straley,https://lh3.googleusercontent.com/a-/AOh14GhCyg8doLkb8ttueNwZpP8GL8YzsdBwfiNktOb_,"time zone doesn't work, i have my phone in a different time zone than i live in and have managed to change most things to my home time zone. this app allows me to change my time zone but it doesn't actually reflect the change anywhere. the date and time of the app and events stay incorrect. my phone is on Taiwan time for now and i have set the app, the preset for events and every individual event to mst, but when i open the app or use the widget, the dates show in Taiwan time still",3,2,2.34.2,2019-06-03 19:58:42,"Hi, this sounds unusual. Could you send us some screenshots so that we could take a look into it?",2019-06-04 09:34:40,most_relevant,com.appgenix.bizcal +Danni Black,https://lh3.googleusercontent.com/-QuesgCYxpHU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMEkLw-3F282_wjeKp39s8bsiyVkQ/photo.jpg,"Calendar has a lot of good features but half the time my reminders don't go off so I miss them. Paid for the full version but it still didn't help. All of my Friday reminders finally chimed on Sunday, kinda pointless!!",3,18,2.34.2,2019-07-07 03:45:15,"Hi, there are various settings, which influence the reminders. Please see the help article below: https://appgenix.uservoice.com/knowledgebase/articles/1827433-why-are-my-reminders-not-working",2019-07-08 10:17:35,most_relevant,com.appgenix.bizcal +Amanda Outman,https://lh3.googleusercontent.com/a-/AOh14GjZqIcPzAhuNCLn3hIVoVZ9CPbMcN39vYNSZdZgLW8,"I love the widgets for this app but there are some synching quirks that drive me nuts ?!!? Not sure if it's the app or the stock Google calendar but whichever it is, it's not a good combination !",3,0,2.31.3,2018-11-15 18:57:59,"Hi, what are the problems that you experience'? Can you contact our support and we will try to help you solve the issues?",2018-11-16 12:30:45,most_relevant,com.appgenix.bizcal +Allen Millington,https://lh3.googleusercontent.com/-eOCVYy2Am24/AAAAAAAAAAI/AAAAAAAATmA/AAKWJJNBs_KML49VW0MoabPs_3cZ_uxuvw/photo.jpg,"Task management is a bit dangerous (can forget to enable a list). Also, can't figure out a way to view a single list without disabling all other lists (which ties into first point).",3,0,,2019-09-24 07:02:27,"Hi, this is not possible. If you want to view one list, you need to disable the others. Otherwise it would not be quite logical.",2019-09-24 09:21:37,most_relevant,com.appgenix.bizcal +Kirstin Stoffel,https://lh3.googleusercontent.com/-HHuCsC_g-NE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNPRw5GH8CE46qUxyF2Q31o5QOPGw/photo.jpg,"I love this app and use it for everything, however, for some reason it is no longer showing any holidays when I clicked on that tab. Hopefully this will be fixed in the next update.",3,0,2.35.1,2019-08-24 19:23:53,"Hi, do you sync the calendar with holidays? Or do you use the BC 2 function? + +https://appgenix.uservoice.com/knowledgebase/articles/884997-how-can-i-add-public-holidays-to-my-calendar",2019-08-26 08:54:51,most_relevant,com.appgenix.bizcal +Ama Bat,https://lh3.googleusercontent.com/-ALCy8TYfIUE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNRqhtxR2Xa-sp62gIebLF36qEodg/photo.jpg,"Great app, but I have one issue. My tasks that I create on my phone doesn't sync with google tasks. How to fix it?",3,0,2.26.2,2018-10-21 02:54:33,"Hi, have you set the account for sync already? +https://appgenix.uservoice.com/knowledgebase/articles/901875-how-can-i-sync-my-google-tasks-with-bc-2",2018-10-22 16:15:48,most_relevant,com.appgenix.bizcal +Rebecca A.,https://lh3.googleusercontent.com/a-/AOh14GiNGBDd54gDo8I6UjAls_64c3Xpqpw-nq18qwtjmg,"I got a newer phone and I used the same email that I purchased the pro app on, but it won't let me install it again for free when I've already paid for it.",3,2,2.33.2,2019-05-12 11:27:10,"Hi, please find all necessary information in the link below: https://appgenix.uservoice.com/knowledgebase/articles/904029-what-steps-should-i-take-when-switching-resetting",2019-05-13 11:43:21,most_relevant,com.appgenix.bizcal +Nick Nack,https://lh3.googleusercontent.com/-TRdE5xmvcQ8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNQixG7hLv2nMbrBDJp5t4jeyUfIw/photo.jpg,"Displaying the ""Contacts"" calendar of every Google account cannot be deactivated in Calendar & Tasks list (it re-activates immediately).",3,3,2.32.2,2018-12-23 15:47:22,"H, is it possible that you have the calendars activated in the stock app?",2018-12-28 17:26:19,most_relevant,com.appgenix.bizcal +Jon Day,https://lh3.googleusercontent.com/-B6M0MONU96w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPh6_G_79KoiqqCWp9jp2ho5QBDsw/photo.jpg,"Like the app so far...but I went into the settings and changed the appearance of my ""Standard View"" to Month...yet everytime I open the app...the standard view shows Day instead of Month.",3,0,2.35.1,2019-10-06 10:37:22,"Hi, you can change it in the settings - appearance - standard view :)",2019-10-14 13:04:29,most_relevant,com.appgenix.bizcal +Gui Reis,https://lh3.googleusercontent.com/a-/AOh14Gh5xSUHVGg2PUaDp6Fm3Z18VJqd0XF-BzIrH1rKRA,"The new update remove the option to change only one event when it is on repeat, now i need to copy and select.. And could have more colors!! Paid version",3,0,2.35.1,2019-10-02 06:58:48,"Hi, please take a look here: https://appgenix.uservoice.com/knowledgebase/articles/359224-i-would-like-to-edit-or-delete-a-single-event-of-a",2019-10-14 13:13:16,most_relevant,com.appgenix.bizcal +Mars L.,https://lh3.googleusercontent.com/a-/AOh14Gg072uxOZOF1rfiCgnxT6kfwwSvpYWqYOW41Yycqw,"smooth interface, but i didnt see where i can set a specific notification per schedule on my calender. it has one sound for all notifications in the calender.",3,0,2.32.2,2019-01-04 16:34:49,"Hi, you can do it in the calendars & task lists - pencil icon :)",2019-01-07 11:24:01,most_relevant,com.appgenix.bizcal +JP timetotic,https://lh3.googleusercontent.com/a-/AOh14GhcdlBPSdPzXrmYf-l_0xxT9wxlDWDSt0BHl3VNxg,very useful. can't get the tasks to sync with outlook tasks though. I only see local tasks. would get 5 stars if this was working,3,2,2.33.2,2019-04-07 17:05:33,"Hi, currently it is only possible to sync tasks with Google. +We hope to implement our own functionality to sync tasks also with other provides. However, since this is a very complicated feature it may still take some time until we can implement it.",2019-04-08 12:12:16,most_relevant,com.appgenix.bizcal +Andy Sampson,https://lh3.googleusercontent.com/a-/AOh14GhpcTWcIJ3TvHJhZcfy000bnsWgsU7vviFtiUeOfw,I like the calendar but get really annoyed at having to constantly change the colours as they keep going back to default.,3,0,2.30.1,2018-09-16 22:29:30,"Hi, is it a synced calendar? Have you maybe the stock app? If it has the same issue, it means the colors are rest by the sync. In such case we are not able to influence the behavior.",2018-09-17 11:19:30,most_relevant,com.appgenix.bizcal +Sophie Beckett,https://lh3.googleusercontent.com/a-/AOh14GgzfeaCUGJ90eqf4SdvrR4BN00uDox8gwgejp7tPg,Keeps either not loading the widget/app and also occasionally deletes random dates! Impractical! Dunno why this is so highly rated to be honest,3,2,2.32.2,2018-12-26 16:53:08,Which widget do your use? How do you add events? Do you always have a stable internet connection?,2018-12-28 17:17:43,most_relevant,com.appgenix.bizcal +Mitchell D,https://lh3.googleusercontent.com/a-/AOh14GhxZvO0M2FHS3hSM3Kkb9bQ-2GQwxk8yk2d2Q4p,"Its nice enough app, but, synchronizing between the tablet and phone should be alot easier and more reliable than what it is?!!",3,0,,2019-02-04 13:54:01,"Hi, please consider, that BC doesn't sync any data on its own and cannot be therefore responsible for the sync issues you may experience on the device. Have you set the devices correctly up? + +https://appgenix.uservoice.com/knowledgebase/articles/891003-sync-across-devices",2019-02-05 10:49:11,most_relevant,com.appgenix.bizcal +Tia Price,https://lh3.googleusercontent.com/-qR82wCPVOqI/AAAAAAAAAAI/AAAAAAAABJE/AAKWJJOOXsBFUyDfw7_gu_WIHLaRJL1Cpg/photo.jpg,"Would have give this app 5stars...HOWEVER..everytime I restart my phone, the app won't load. I have to re-install it EVERYTIME. Its annoying! (The Widget)",3,0,2.33.2,2019-05-13 19:41:08,"Hi, this is a known Android 9 issue. We already found a solution and it will be published in the next update. + +Just FYI you can backup your settings: https://appgenix.uservoice.com/knowledgebase/articles/885132-import-export-of-widget-settings",2019-05-14 16:27:10,most_relevant,com.appgenix.bizcal +Ellen Smolko,https://lh3.googleusercontent.com/a-/AOh14GgrsAYZ-1u1eDf4crnWHrJ5ekKYn53lV17dnGDBCw,The current release doesn't sync appoinments i make in the app to my Google calendar. It only copies the online calendar events to the app.,3,0,2.31.3,2018-12-09 06:51:45,"Does the stock calendar app have the same problem? If so, it might be a general sync problem and it could help to remove and re-add the account for sync in your Android OS Settings - Accounts & Sync. + +Please remember that BC doesn't have its own sync abilities and uses only those provided by Android.",2018-12-10 12:50:14,most_relevant,com.appgenix.bizcal +Amber Eickholt,https://lh3.googleusercontent.com/a-/AOh14GhXf1nCD8oyX63_XeySqaYcltxWg_1-QbmjmTCT,Great but over half the time when I edit a task it changes the year to the 1960s even though it says 2019 when selected.,3,0,2.35.1,2019-09-23 08:27:25,"Hi, this is unusual. Can you send us some screenshots along with your device information from BC 2 - help & feedback - send feedback? We will take a look into it.",2019-09-23 09:59:11,most_relevant,com.appgenix.bizcal +Josh Hova,https://lh3.googleusercontent.com/-d-1C0r7RVQs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN4cic4Jt_gYI9X_v1peqUGy1MIfw/photo.jpg,the day pro widget view shows events overlapping despite them not scheduled at the same time. It's an annoyance but an overall decent app.,3,0,,2019-05-10 17:45:50,"Hi, have you tried changing the settings fro the overlapping events in the main app - views - week? +What are the grid settings on your display? Please note that it may also have influence on the way the algorithm is counting the event field in widget.",2019-05-13 11:49:31,most_relevant,com.appgenix.bizcal +Stephanie,https://lh3.googleusercontent.com/a-/AOh14Gg1_wjqrcv72eTlA2TEAewesCrQ2XlmmuLh_R4slg,"EDIT, Paid out GOOD money last year to buy Premium BUT you're STILL begging me to RATE YOU. Well my original 5 stars becomes today's 3 stars. Leave me alone, I rated 5 within minutes of buying !! ~ Old Review ~ I've purchased the PREMIUM version, thank you, the best in the play store. EDIT ~ I would appreciate it if next time you have a one day sale you make it abundantly clear in the actual app otherwise I'll never know. Thank you.",3,6,2.33.2,2019-04-28 20:13:18,"Hi, you refer to the Black Friday sale, which was only on Friday. Sorry to hear that you missed the chance to buy the app on sale, but I can assure you there will be other sales in the future. As for your support request, we couldn't find any ticket under your name.",2018-11-26 12:28:12,most_relevant,com.appgenix.bizcal +Josh Barling,https://lh3.googleusercontent.com/a-/AOh14GgxVz26k8_l-hN9XXOdqI0werZmx-posnsLEAWP,the app looks great. alot of function. it wouldn't show me any shared calenders. fix that and this is a top app,3,0,,2018-12-20 14:28:13,"Hi, can you see those calendars in the stock calendar app preinstalled on your device? Please remember that BC doesn't have its own sync abilities and uses only those provided by Android.",2018-12-21 11:34:59,most_relevant,com.appgenix.bizcal +Ian Hopkin,https://lh3.googleusercontent.com/-H8H6cA-bUGE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPV36vbrUx98ROiJDJ_FTVV2DLDVg/photo.jpg,Still a good program but have knocked a star off because making features free. Why have I paid for it as I'm getting nothing extra now.,3,0,2.30.1,2018-09-20 08:30:24,"Hi, the statement is not completely true. One function (autocomplete) has been opened to the free users and we had to make this decision based on the market and its needs. There are still plenty of pro functions and new features will be added, therefore having a pro license you still get pro function in return. See here: https://bit.ly/2IalG8p",2018-09-24 12:09:40,most_relevant,com.appgenix.bizcal +Attila Vaczi,https://lh3.googleusercontent.com/a-/AOh14Gj6MKVzYfJOG0pGScBq423SPLKolGbWzqyWWywK8Q,After the update widget stopped reacting but after deleting it and reinstalling it worked again and then came back to same problem.,3,0,2.34.2,2019-06-14 17:00:46,"Hi, which widget do you use? Have you tried rebooting or re-adding the widget? Do you have the stock launcher installed?",2019-06-17 08:00:58,most_relevant,com.appgenix.bizcal +Yohana A,https://lh3.googleusercontent.com/-Pov1J3-EbyU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMEBPgLxbXwMagZX-Tt3rwXIOF-Sw/photo.jpg,"UI too complicated, not very user friendly.",3,0,2.36.2,2019-10-22 15:42:45,"Hi, what are the problems that you experience? Can we maybe help you somehow?",2019-10-23 08:28:38,most_relevant,com.appgenix.bizcal +sasha bregman,https://lh3.googleusercontent.com/-torfd8HrfU4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPeG3mCekeAZkxT0Oo6B0rbk-uDKg/photo.jpg,was great but the last update stop synking the outlook account... try to re-connect it but no luck...,3,0,2.34.0,2019-05-28 17:04:14,Please remember that BC doesn't have its own sync abilities and uses only those provided by Android. Therefore it cannot be responsible for any sync issues you may have on the device. It might be a general sync problem and it could help to remove and re-add the account for sync in your Android OS Settings - Accounts & Sync.,2019-05-29 09:38:58,most_relevant,com.appgenix.bizcal +Scott Taylor,https://lh3.googleusercontent.com/-4DefxEtelFs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOrmMS2b_fFcN2EU2ETP1ijct2ZHg/photo.jpg,Very usable. Occasional technical freak outs. Some shortComings in navigability and manageability,3,0,2.32.1,2018-12-20 16:08:48,"Hi, what are the problems that you experience? Could you elaborate on that? Maybe we will be able to help?",2018-12-21 11:25:48,most_relevant,com.appgenix.bizcal +Pavel Šmak,https://lh3.googleusercontent.com/-f7jO4BgewRk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNdCTp_bWnBQ1_OGEAtWJxYDlWv_Q/photo.jpg,"Used to be very good, recently I'm experiencing disappearing of events and random switching of visible calendars.",3,4,2.33.2,2019-04-03 12:08:39,"It might be due to a problem of Google. We've contacted other calendar app developers and they are experiencing the same problems. It especially happens right after the sync of events created with no or low internet connection. That is why, we suspect that there must be something wrong with the Google sync, which we unfortunately can't influence.",2019-04-04 10:58:53,most_relevant,com.appgenix.bizcal +movie movie,https://lh3.googleusercontent.com/-OnU270Uau6U/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMcywxXx3vobtpVAiWU1k1VzYM54A/photo.jpg,Please allow line wrap for a event tile in the month widget and/or month-style display,3,0,2.36.2,2019-11-19 05:33:25,"Feel free to post the suggestion on our user forum :) +https://appgenix.uservoice.com/forums/280499-business-calendar-2 + +Other users can vote and comment on the ideas there as well.",2019-11-19 12:33:27,most_relevant,com.appgenix.bizcal +M L,https://lh3.googleusercontent.com/a-/AOh14Gi30LyLa3LzI8Fr05Ke_pTqcXBCEwSiAqOevpK3Bg,Has trouble syncing Google calendar. Not all events show up even after clicking sync now. Also tried hiding and un hiding calender but still doesn't sync.,3,1,2.35.1,2019-08-07 13:55:40,"Does the stock cal. have the same problem? If so, it might be a general sync problem and it helps to remove and re-add the account for sync in Android OS Settings - Accounts & Sync. + +Please remember that BC doesn't have its own sync abilities and uses only those provided by Android. Therefore it can't be responsible for sync issues on your device.",2019-08-08 11:21:14,most_relevant,com.appgenix.bizcal +Andy Tan,https://lh3.googleusercontent.com/a-/AOh14GjLrIWNGr4czyOR3pn_aMHHUjsfc4WMGdo8Yd5H,pls allow us the option to disable the text formatting in the event description. i mean disable the formatting toolbar from showing up at the bottom of the description box when creating/editing events. thanks,3,0,2.31.1,2018-10-11 16:24:53,"Hi, you don't need to use the formatting options and this way you will see plain text as usual. It is not possible to disable an element of the input mask.",2018-10-17 13:51:16,most_relevant,com.appgenix.bizcal +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Not happy having flashing ads at the bottom of the calendar, very distracting",3,0,2.31.2,2018-11-06 08:58:17,"Hi, please consider that the ads are necessary to be able to further maintain and develop the free version of the app. The pro version is completely ad free",2018-11-06 09:50:55,most_relevant,com.appgenix.bizcal +WILLIAM KENNET,https://lh3.googleusercontent.com/a-/AOh14GhUpVoUx5qu1D4ZOTHjy4ZcBTo5MyXD82vNhUawlw,"I like it. However, I can't seem to get the notification sounds to work. They used to.",3,0,2.34.2,2019-06-26 10:14:18,"Hi, have you checked if you calendar isn't set to silent? You can do it in the calendars & task lists - pencil icon + +Just FYI: https://appgenix.uservoice.com/knowledgebase/articles/1827433-why-are-my-reminders-not-working",2019-06-26 11:27:41,most_relevant,com.appgenix.bizcal +Kathryn Lane,https://lh3.googleusercontent.com/-6SsSEwT7v_4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMClTcg8RK15D3SWZhk45iFqB0pxQ/photo.jpg,the widget freezes a lot. the calendar is not intuitive to use.,3,0,2.34.2,2019-06-05 17:24:50,"Hi, which widget do you use? What are your problems with the calendar setup? Do you need help? Please contact our support and they will give you a hand.",2019-06-06 10:22:51,most_relevant,com.appgenix.bizcal +freakydeath33,https://lh3.googleusercontent.com/-euhdVmRyb9E/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOlD4CmzfdWN61UOgVlbZ95_IS8FQ/photo.jpg,"add an event to calendar but it gets saved on a random day, not current day, annoying.",3,0,2.33.2,2019-06-02 17:08:40,"Hi, how do you add events? Where do you click precisely? Which view do you use? Or do you maybe use widget to add data?",2019-06-03 10:32:42,most_relevant,com.appgenix.bizcal +Tour Guide,https://lh3.googleusercontent.com/-PThzMln_yos/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPcuSjhi8JVCaCevY-g_6VTWyLscA/photo.jpg,"It's okay, but the tasks are too simple. Not a good way to integrate and organize them.",3,0,,2019-05-11 07:11:06,"Hi, what are the problems that you experience? Can we help you somehow?",2019-05-13 11:44:01,most_relevant,com.appgenix.bizcal +Soundroom Studios,https://lh3.googleusercontent.com/a-/AOh14Gg160MYLMOctjAFhgDHu6NO241PSyNMi_6UP9amLg,Widget is not loading correctly when the phone is restarted all the time,3,0,2.31.2,2018-10-23 05:21:44,"Hi, which widget do you use? What is your launcher?",2018-10-23 10:17:51,most_relevant,com.appgenix.bizcal +Alan Baumgart,https://lh3.googleusercontent.com/-BuCsLQpSGzs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJND4mDzxIfMXt3WratDIZ1cClhPMQ/photo.jpg,"Functional, not beautiful. Nothing particularly advantageous compared to other calendar apps.",3,0,2.31.3,2018-11-24 17:23:56,"Hi, have you already tried changing the theme and background colors? This way you can adjust the app to your liking.",2018-11-26 12:50:25,most_relevant,com.appgenix.bizcal +Christian Macedo,https://lh3.googleusercontent.com/a-/AOh14GiSBJonUfe5aRy111IKVeUa_5-qYQm4DFV8EGuEew,"Does the month view as per the ""Professional design"" image exist? this seems ideal but i csnt find it.",3,0,2.33.2,2019-05-16 15:47:33,"Hi, what do you mean precisely by that? Could you elaborate or send us some screenshots? We will try to help you out.",2019-05-17 10:24:46,most_relevant,com.appgenix.bizcal +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Happily used for years, unfortunately my events have been disappearing lately for no reason, so I will be uninstalling.",3,0,2.32.2,2019-02-14 00:34:25,"Hi, how do you add events? Do you sync? Do you always have a stable internet connection when adding events?",2019-02-14 12:16:14,most_relevant,com.appgenix.bizcal +Austin Childress,https://lh3.googleusercontent.com/-8s2f_C7O36E/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOp0Qrvp-VgJIkUkbII0XNXAuC19w/photo.jpg,"I love this ap, but when the new update went through, I no longer have the pro version... please fix",3,1,2.34.0,2019-05-24 16:08:01,"Hi, you don't need to pay twice. Please take a look here: https://appgenix.uservoice.com/knowledgebase/articles/908211-i-paid-for-the-app-but-i-lost-the-pro-features",2019-05-27 14:26:25,most_relevant,com.appgenix.bizcal +David Kang,https://lh3.googleusercontent.com/a-/AOh14GhWeS3hBUJGXPZZPjgMWzHp5L7hL7aDwmrVyefiZw,"my wedget doesn't update weather, help",3,0,2.37.0,2019-12-20 16:44:16,"Hi, have you tried rebooting the device?",2020-01-02 16:04:04,most_relevant,com.appgenix.bizcal +Hany Tadross,https://lh3.googleusercontent.com/-XMGr5jXeObs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMypVhS5bjAI6_W25Qu0ga2OqITxA/photo.jpg,Does not show dates of bookings as it used to detect from emails,3,0,2.34.2,2019-07-18 13:50:08,"Hi, please note that this information is automatically added and synced with your account. BC does not add this information at all.",2019-07-18 15:02:02,most_relevant,com.appgenix.bizcal +Alexаnder,https://lh3.googleusercontent.com/-Ik-aAsEcMGI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMxGM966ERctDmahGGddWl3ah5u9g/photo.jpg,"Purchased thr app as a replacement of the Simple Calendar Widget, but it has no advantages over it",3,0,2.33.1,2019-03-14 09:52:39,Do you experience any technical fails of the app? What are the functions that you look for?,2019-03-14 10:20:48,most_relevant,com.appgenix.bizcal +Jo Zh,https://lh3.googleusercontent.com/a-/AOh14GiCuBngHaNcGA8ks_BmAxMWsE6McfOmss4OlP3-jGw,Add seamless integration for office 365 accounts..,3,0,2.32.2,2019-01-14 14:57:03,"Please remember that BC doesn't have its own sync abilities and uses only those provided by Android. Did you set your account correctly up? +https://appgenix.uservoice.com/knowledgebase/articles/955654-i-see-my-outlook-events-in-the-outlook-app-but-no",2019-01-15 11:55:21,most_relevant,com.appgenix.bizcal +Lance Cheng,https://lh3.googleusercontent.com/a-/AOh14GgBuzZ-7TFr44XQs7BEcPoPKMmlERBIQcQpyLIs_3U,Sometimes the app will just stop working or the widgets won't work,3,0,2.35.1,2019-10-01 11:03:52,"Hi, what do you mean precisely by that? Can you elaborate?",2019-10-14 13:13:59,most_relevant,com.appgenix.bizcal +Steve Bufty,https://lh3.googleusercontent.com/-q7P9ag1TcT8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMnrXj-yxYpq4-1-D8kRNB69iZQpA/photo.jpg,I schedule a 9 a.m. meeting in Pennsylvania while I'm in California. But when I get to Pennsylvania my 9am meeting is now off by 3 hours. I would like the times to be fixed no matter where I am.,3,0,2.37.7,2020-01-28 04:17:06,"Hi, you can set a time zone of the place when creating the event. This way it will be shown correctly when you change the TZ. Take a look also here: https://appgenix.uservoice.com/knowledgebase/articles/870480-home-time-zone",2020-01-28 12:01:47,most_relevant,com.appgenix.bizcal +dhareal famous,https://lh3.googleusercontent.com/-BkHkHnWs5_I/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMhh2Poad7uWqC1RTfQE1CUz9btkQ/photo.jpg,I would give it a 5 but I recently got a new phone and I cannot sync at all. I really needed it to sync. Very disappointed because I followed all the steps in my email. Please help,3,0,2.35.1,2019-08-27 01:56:50,"Note, that BC does not sync your data and is not responsible for the sync problems on the device. Did you set your device correctly up? Take a look here: +https://appgenix.uservoice.com/knowledgebase/articles/904029-what-steps-should-i-take-when-switching-resetting +https://appgenix.uservoice.com/knowledgebase/articles/891003-sync-across-devices",2019-08-27 08:19:03,most_relevant,com.appgenix.bizcal +Regina Allanby,https://lh3.googleusercontent.com/-Tq-l6D4n2hY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNrf_Bkq3F1Lco6upAJw3iwlzT2UA/photo.jpg,Would love the calender to automatically fill in details of invitations and interested or going to an event,3,0,2.31.3,2018-11-12 11:12:13,"Hi, what do you mean precisely by that? Facebook sync? Could you elaborate?",2018-11-12 17:42:53,most_relevant,com.appgenix.bizcal +Lars Walker,https://lh3.googleusercontent.com/-1Bmnnyuc5tk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPQtOHn6pzZRvlz-fH8lIHn3WOwGA/photo.jpg,Have to push too many buttons to approve my route. Not hands free friendly.,3,0,2.35.1,2019-09-17 14:50:07,"Hi, all you need to do is to click on the location/maps icon and the chosen app will open.",2019-09-18 09:33:46,most_relevant,com.appgenix.bizcal +Mohamed Mostafa,https://lh3.googleusercontent.com/a-/AOh14GjxlfGuSvX95Ma4nFsUAEC7HDhv0rSjz2I7XFp07w,I can't seem to create an anniversary or a birthday event like I used to. Please assist,3,0,2.33.2,2019-05-04 07:52:08,"Hi, please find all necessary information below: + https://appgenix.uservoice.com/knowledgebase/articles/883422-birthday-calendar",2019-05-06 08:28:26,most_relevant,com.appgenix.bizcal +Normie Stewart-Brown,https://lh3.googleusercontent.com/-29FdPFfadzc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMqetCSOUdMAvK6XvJpJ7AKTQ4KwQ/photo.jpg,nice but I wish it had more flexibility.,3,0,2.34.1,2019-05-29 02:21:56,"Hi, what are the settings that you look for? Can we help you somehow?",2019-05-29 09:37:45,most_relevant,com.appgenix.bizcal +Burt Madsen,https://lh3.googleusercontent.com/a-/AOh14Gisy8K1tipzszusgZWTp_wUkFhNuoOq8sp4tZF8,Looks nice... But no Cal DAV task sync...,3,0,2.31.2,2018-10-19 19:29:39,"Hi, currently it is only possible to sync tasks with Google. We hope to implement our own functionality which would help us to sync tasks with other providers in the future.",2018-10-22 16:20:10,most_relevant,com.appgenix.bizcal +Nguyen Quang Minh,https://lh3.googleusercontent.com/a-/AOh14GhYhzRtKqHIoTJ2zkRcHHkkl6QfY1CJtzVIaT0q2g,I purchased the Pro version inside this app. why can't I download the Pro app in google store?,3,0,2.33.2,2019-04-28 15:49:18,,,most_relevant,com.appgenix.bizcal +Clay,https://lh3.googleusercontent.com/-ZLjqrnMbERo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMvf183xZYLFaKc8Eqpg_bJVW6NMw/photo.jpg,"After 4 years, UI seems dated",3,0,2.32.2,2019-02-05 18:46:27,"Please feel free to post your suggestions in our user forum + +https://appgenix.uservoice.com/forums/280499-business-calendar-2 + +where other users can vote and comment on them as well and we might consider it for the future.",2019-02-06 13:58:31,most_relevant,com.appgenix.bizcal +Aswath,https://lh3.googleusercontent.com/-Lvg7dmJ-J4Q/AAAAAAAAAAI/AAAAAAAASrA/AAKWJJP2BRwlZ9uMYDpEV7KTfOJRogKBBQ/photo.jpg,I'm giving it only 3 stars because there's no support for CalDAV tasks sync,3,0,2.33.2,2019-04-09 19:48:55,Currently it is only possible to sync tasks with Google. We hope to implement our own functionality which would help us to sync tasks with other providers in the future,2019-04-10 10:55:26,most_relevant,com.appgenix.bizcal +Viencell Price,https://lh3.googleusercontent.com/-85MqaPzerAw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMd-N4fMwKm5St5FOKfJJrEOvL4Vw/photo.jpg,"I was like great wit it until it erased all my schedules, then like magic gave em back 4 that month",3,0,2.37.9,2020-03-18 21:18:37,"Hi, the app cannot delete any data on its own. It sounds like you either had a sync issue or you deactivated your calendars from the preview. Take a look here for the future reference: https://appgenix.uservoice.com/knowledgebase/articles/1912096-my-calendar-data-is-suddenly-gone-how-can-i-recov",2020-03-19 11:05:02,most_relevant,com.appgenix.bizcal +Hock Cheang Lim,https://lh3.googleusercontent.com/-NTfnLnyEDQg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNwrDUphoyRIMfDTTyvG9Nmd6o0-w/photo.jpg,"For basic mode, nothing much can set.",3,1,2.35.1,2019-09-03 00:10:37,"Hi, what are the functions that you look for? Maybe we could help you somehow?",2019-09-03 08:50:15,most_relevant,com.appgenix.bizcal +Eric Im,https://lh3.googleusercontent.com/-1ZJfYkw-Q9A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPASTBn05qXnHSxWLUf2QzlWrYtvQ/photo.jpg,Great app and so far no issues using it,3,0,2.33.1,2019-03-27 08:57:58,"Hi, if you have any problems please feel free to check our Knowledge Base: +https://appgenix.uservoice.com/knowledgebase",2019-03-27 10:27:17,most_relevant,com.appgenix.bizcal +Brian Vinson,https://lh3.googleusercontent.com/a-/AOh14GgpwTgLImRCGJQ1M38hJQLgAEYe7ix3UMKU1fZD7g,you have to select for a reminder! that should be standard!,3,0,2.32.1,2018-12-21 16:14:58,"It is, provided you set it up in the settings - standards for new events - events - reminder",2018-12-28 17:40:28,most_relevant,com.appgenix.bizcal +Charles Fournier,https://lh3.googleusercontent.com/-bbthcbjeFAs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPEOjf_Mj_RUPDT-8nsmfXOhiothA/photo.jpg,would be nice to once you delete one thing that it would not ask if it's the series.,3,0,2.32.2,2019-01-09 03:24:45,"Hi, it is possible. Please take a look below: +https://appgenix.uservoice.com/knowledgebase/articles/359224-i-would-like-to-edit-or-delete-a-single-event-of-a",2019-01-09 10:41:11,most_relevant,com.appgenix.bizcal +Tina Jenkins,https://lh3.googleusercontent.com/-E1eEHZJX_6I/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPyO6tNmfLJlq78JFMIqCVlglhw0g/photo.jpg,Why aren't holidays showing up on my calendar?,3,0,2.37.9,2020-03-06 13:09:34,"Hi, did you add them correctly to your BC? Take a look here: https://appgenix.uservoice.com/knowledgebase/articles/884997-how-can-i-add-public-holidays-to-my-calendar",2020-03-09 12:59:17,most_relevant,com.appgenix.bizcal +Wes Franssen,https://lh3.googleusercontent.com/-WdVqm5wkv24/AAAAAAAAAAI/AAAAAAAAAZ8/AAKWJJOH7957MVM0O_wzEpgjjsUQ9Z-Q3A/photo.jpg,Is there a way to see less weeks in month-widget? 6 weeks is too much for my taste. 4 would be more ideal,3,0,2.35.1,2019-08-07 19:26:05,"It is not possible, but we are always open for feature requests on our user forum :) +https://appgenix.uservoice.com/forums/280499-business-calendar-2 + +Other users can vote and comment on the ideas there as well",2019-08-08 11:05:38,most_relevant,com.appgenix.bizcal +Will W,https://lh3.googleusercontent.com/-unA_HWqt3R8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMgC2ngitT9cat8AtgjeKSbnRKJ2A/photo.jpg,"I paid for this app, now they have forced ads on me? I would like a refund",3,0,2.31.3,2018-11-20 17:23:17,"Hi, in the pro version there are absolutely no ads. Are you sure the pro was correctly unlocked? Have you received the confirmation from Play Store?",2018-11-21 08:42:40,most_relevant,com.appgenix.bizcal +Apiwat Puangtaisong,https://lh3.googleusercontent.com/a-/AOh14Gi00ei_hA0iZ_zm1agCYQ8WNYe-PdUkwekRFe3aHg,I have an issue of widget stretching. Are there any debugs?,3,0,2.36.2,2019-12-11 13:12:41,"Hi, which widget is affected? Have you tried rebooting the device? How about resizing/re-adding the widget? Do you use the stock launcher?",2019-12-12 10:01:04,most_relevant,com.appgenix.bizcal +Peter Bennett,https://lh3.googleusercontent.com/a-/AOh14GhAffvDQiBr8ep1mRSHCsvu-Gm0lQSD9t6iHQLH4A,"Showed promise, but let down by an incredibly stupid copy function.",3,0,2.33.2,2019-05-05 00:11:56,"Which copy function did you use in BC? The drag&drop, multiple copy, copy in detail view or the multi-selection to copy?",2019-05-06 08:26:37,most_relevant,com.appgenix.bizcal +Patrick Miranda,https://lh3.googleusercontent.com/-hWJ0nj7Akuo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNPvp1nqNB_prtjm9hnO2P6OB_9Jg/photo.jpg,Please make it possible to change the start day of the week. I want my calendar to start the week with Monday instead of Sunday. Thanks.,3,0,2.31.1,2018-10-03 14:20:18,"Hi, it is possible since the release :) You will find it in the settings under 'times'.",2018-10-04 16:32:58,most_relevant,com.appgenix.bizcal +Eddie McDaniel,https://lh3.googleusercontent.com/a-/AOh14GhBD9xXs3o2vaagPXzLm6KtHL3fmE7TY1Rvakqn3A,Paid for it 2 times keeps wanting me to pay for it again,3,0,2.35.1,2020-01-31 18:58:22,You don't need to pay twice as your license is normally valid forever without any time or download limit. Take a look here: https://appgenix.uservoice.com/knowledgebase/articles/908211-i-paid-for-the-app-but-i-lost-the-pro-features,2020-02-03 09:39:54,most_relevant,com.appgenix.bizcal +All Seasons Specialist Auto/Yard/Home,https://lh3.googleusercontent.com/a-/AOh14GiRRwr_fK-TpGzl1eBzdSbifgSLvMqwCn_jllEN,its alright does same as google maps,3,0,2.35.1,2019-09-13 23:01:57,"Hi, what are the functions that you look for? Can we maybe help you somehow?",2019-09-16 13:40:17,most_relevant,com.appgenix.bizcal +Michael Rice,https://lh3.googleusercontent.com/a-/AOh14GiC6abLn0CFaK0bpdq_BonNVcWK_QEC00oUl5KbaA,Nice calendar but where is the Jewish Calendar maybe you could offer more options,3,0,2.35.0,2019-07-28 18:34:21,"Hi, we are always open for feature requests on our user forum :) + +https://appgenix.uservoice.com/forums/280499-business-calendar-2 + +Other users can vote and comment on the ideas there as well.",2019-07-29 07:54:35,most_relevant,com.appgenix.bizcal +Sean L. Kraemer,https://lh3.googleusercontent.com/a-/AOh14GgovxZ59Qs5ZMbPWNsVCy9BCYEsbzhew8TQUIZKdg,"I have peoples birthdays showing up in my phone, who i don't and have never known, nor have in my contacts",3,0,2.31.1,2018-10-09 15:29:49,"Hi, do you use BC's own calendar with birthday (see link below) or do you maybe sync the birthdays from Google for example? +https://appgenix.uservoice.com/knowledgebase/articles/883422-birthday-calendar",2018-10-10 10:03:58,most_relevant,com.appgenix.bizcal +kapil deoke,https://lh3.googleusercontent.com/-5GnXBwSmF4o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPCvtCbHhHCNIrt4KSBO5CIC-SIHw/photo.jpg,Don't have any options to manage daily expenses,3,0,2.36.2,2019-12-02 03:10:06,"I#m not quite sure, why a calendar app should manage this data. Could you elaborate on that?",2019-12-02 13:24:19,most_relevant,com.appgenix.bizcal +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,How to integrate Toodledo tasks? Any help would be appreciated,3,0,2.32.2,2019-02-06 02:21:23,Currently it is only possible to sync tasks with Google. We hope to implement our own functionality which would help us to sync tasks with other providers in the future.,2019-02-06 13:58:01,most_relevant,com.appgenix.bizcal +Bogdan Chifor,https://lh3.googleusercontent.com/a-/AOh14Gguq8SetgSVYq5Wsu6BnceVCSd-fOABesJS63XiZQ,Average app. No worth,3,0,2.36.2,2019-10-22 05:50:28,"Hi, what are the problems that your experience? Is there any function that you particularly look for? Can we maybe help you somehow?",2019-10-22 09:02:13,most_relevant,com.appgenix.bizcal +",Jesus Carrasco",https://lh3.googleusercontent.com/a-/AOh14GhFZyjA-eQhSfDPEfTL-_Rt50FKUy34jhWI7QlH6w,Why can't you add an attachment?,3,0,,2018-12-23 14:29:30,"Hi, the function is not supported yet, but we are working on it.",2018-12-28 17:26:36,most_relevant,com.appgenix.bizcal +Christine Romano,https://lh3.googleusercontent.com/-EDkH3Zwn6I8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJONDx1cmbDuC-W-YvkeozZyRCRJ5A/photo.jpg,still working on use,3,0,2.33.2,2019-04-29 13:25:50,"Hi, feel free to use our Knowledge Base: +https://appgenix.uservoice.com/knowledgebase +or contact our support with any further problems.",2019-05-02 11:33:54,most_relevant,com.appgenix.bizcal +Scott Hansen,https://lh3.googleusercontent.com/a-/AOh14GiJFMf-s1T6rJTxcDPsm7sduC2oBAfVHFOSBdGC_Ac,its ok works for me,3,0,2.33.0,2019-02-17 19:35:16,"Hi, thansk for the positive feedback. Nonetheless you rated the app with 3 stars. Is there maybe any issue we could help you with?",2019-02-18 15:04:34,most_relevant,com.appgenix.bizcal +Dr Elliott,https://lh3.googleusercontent.com/a-/AOh14GjjfgyN3ZgRIbspfrNfkaawudC-jaOGFFSzq5KuiA,"Ok, I guess.",3,0,2.35.1,2019-09-22 03:19:45,"Hi, thanks fro the positive feedback. Nonetheless you rated the app with 3 stars. Is there maybe any issue we could help you with?",2019-09-23 10:00:45,most_relevant,com.appgenix.bizcal +"Thala, Cammel",https://lh3.googleusercontent.com/a-/AOh14GgzZ-Z3ZTa1a5G5VhhyU3WoFREzQUYYKZvnD55W7g,"I have been using the app for some time (I guess about 2 years). The functionality is very good. But here comes the tracker list: AdColony, AppLovin, ChartBoost, Facebook Ads, Flurry, Fyber, Google Analytics, Inmobi, ironSource, Mintegral, Moat, Tapjoy, Unity3s Ads. Appgenix says ""only for the free Version"". Check with Wireshark in progress.",3,2,2.37.9,2020-03-18 16:23:49,We use the tracker for the advertising only in the free version of the BC 2! We also inform about it. In the pro version they are deactivated and DO NOT pull any data. Firebase Crashlytics is used to track crashes to improve the app. Google Analytics is currently not in use in the BC.,2020-03-19 11:16:01,most_relevant,com.appgenix.bizcal +Daphne A. Yang,https://lh3.googleusercontent.com/a-/AOh14GiCs88IIjs4fudOj-HbC-RxM612vorMrKYHbom8GA,"The new video ad is really annoying, it pops out, and no way to close it unless you close the entire app. It really interrupt when you want to add a few appointments to the calendar.",3,1,2.37.9,2020-03-01 13:14:40,"The free version is still functional as the ads appear only every 18 hours! It means it is 2/day, if you're unlucky. Otherwise you can use the app without any further disturbance. Please note, that this free version needs to be developed and maintained on the daily basis. This requires a lot of time and work. The ads help us maintain the software.",2020-03-03 11:07:48,most_relevant,com.appgenix.bizcal +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Great app. But it's not syncing properly. Please fix.,3,3,2.37.9,2020-03-16 21:31:57,"Hi, it might be a general sync problem and it could help to remove and re-add the account for sync in your Android OS Settings - Accounts & Sync. + +Please remember that BC doesn't have its own sync abilities and uses only those provided by Android. Therefore it cannot be responsible for any sync issues you may have on the device.",2020-03-17 11:02:13,most_relevant,com.appgenix.bizcal +Cadnel BOSSAVI,https://lh3.googleusercontent.com/a-/AOh14GgHUNkKbxYIKNpXanvo1YgwKfI1_qrH1g4-aE7SvA,Est ce que vous avez une version de Business Calendar pour les laptop ?,3,0,2.37.9,2020-02-17 16:43:07,"Veuillez noter que BC est une application Android. Cependant, vous pouvez synchroniser votre calendrier et accéder aux données dans Google Web Calendar par exemple.",2020-02-18 09:14:27,most_relevant,com.appgenix.bizcal +Allen Benz,https://lh3.googleusercontent.com/a-/AOh14GjDTjbBrnHfIF41zvS4GIoPUpo6HGWDYSoOTYPIkQ,Very customizable and easy to use. Works great with Google calendar but I can't get it to sync with my office 365 outlook account. Bummer!!,3,0,2.37.9,2020-02-09 22:38:38,"Hi, take a look here: https://appgenix.uservoice.com/knowledgebase/articles/955654-i-see-my-outlook-events-in-the-outlook-app-but-no",2020-02-10 09:42:20,most_relevant,com.appgenix.bizcal +T K,https://lh3.googleusercontent.com/-sEtzfvLXDxo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMSvFigMyTjLZaGfhXuCyJxJsPLLA/photo.jpg,The full screen ads are intrusive and seriously hinder the free version's usability. Before the ads this was a very solid and handy calendar app.,3,1,2.37.9,2020-02-10 09:13:38,"Hi, please note that the free version is not ad-free. The ads contribute to further development and maintenance of this version. If you don't want to receive any ads, you can consider the pro version, which is completely ad-free.",2020-02-10 09:41:46,most_relevant,com.appgenix.bizcal +Cm Loh,https://lh3.googleusercontent.com/a-/AOh14Gg_4p_IKdqYqLYwvuuyUGtiENB7Na5LfNiGmfF5Mg,,一|f厂了|b可cncc。 rv,3,0,2.37.9,2020-02-14 13:18:31,"Hi, do you have any technical issues with the app? Can we help you somehow?",2020-02-14 14:16:45,most_relevant,com.appgenix.bizcal +Trey K.,https://lh3.googleusercontent.com/-ISpcyA8dOYg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNvW5PmGAvblkPsKvqQoD4jJi9p5A/photo.jpg,Great app...new adds not so much.,3,0,2.37.9,2020-02-09 17:03:56,"Hi, we avoided this solution for as long as it was possible. It is not the case anymore and we need to think about further development and maintenance of this version. This kind of advertisement is a standard right now in the free apps. If you don't want to receive any ads, you can consider the pro version, which is completely ad-free.",2020-02-10 09:42:37,most_relevant,com.appgenix.bizcal +Luciano R Ferreira,https://lh3.googleusercontent.com/a-/AOh14Ggb7NjHQkVj2o2cihUU47k5lQJrdyyGhfE0vtcVkw,After last update all info's gone. Shame on you. Android never more.,3,0,2.37.9,2020-02-02 23:45:47,"Hi, the app cannot delete any of your data on its own. Take a look here: https://appgenix.uservoice.com/knowledgebase/articles/1912096-my-calendar-data-is-suddenly-gone-how-can-i-recov",2020-02-03 09:26:34,most_relevant,com.appgenix.bizcal +Weekend Warrior,https://lh3.googleusercontent.com/a-/AOh14GiV8mJbjnQA8v6ec-pwPRQF6WIcZsB_d3oF55VNCQ,Needs to have matching theme with phone. i.e. dark mode with dark theme/light mode with light theme.,3,2,2.37.9,2020-02-01 01:01:10,Feel free to post your suggestion in our user forum: https://appgenix.uservoice.com/forums/280499-business-calendar-2,2020-02-03 09:38:25,most_relevant,com.appgenix.bizcal +Einar Boson,https://lh3.googleusercontent.com/a-/AOh14Gi5EMXp409WB45dlYCA0zeu-QHqZxIFKaWtJZWvWvo,"Would be 5 stars, because it's really great, the best calendar I've ever used, but it keeps losing things I enter where I have poor reception. It's like it thinks it has uploaded them and then forgets them somehow.",3,0,2.37.5,2020-01-25 14:28:12,"It is a problem of Google. We've contacted other calendar app developers and they are experiencing the same problems. It especially happens right after the sync of events created with no or low internet connection. That is why, we all suspect that there must be something wrong with the Google sync, which we unfortunately can't influence.",2020-01-27 11:41:46,most_relevant,com.appgenix.bizcal +helal al-ganem,https://lh3.googleusercontent.com/a-/AOh14Gjz5GjVQEMEc46LFqwCo6Mh6RblZ6UNjOK8K_2p6g,"8/4/18 ☆☆☆☆: I'd give five stars if the weather showes in Celsius. Other than that, the app is absolutely great! I ended up getting the paid version because I felt like the developers deserved it for making such a versatile scheduling tool!! 20/1/2020 ☆☆☆: The degree still does not change to C even if I change it on Darksky. Fixing this would be very helpful especially that this has been noted almost 2 years ago.",3,1,2.37.4,2020-01-20 15:49:51,The degree unit should automatically adjust accordingly to your location. It is not possible in the app. Have you maybe tried changing in on the Darksky page (click on the location in the app to open it)?,2018-08-06 10:18:55,most_relevant,com.appgenix.bizcal +Yethi Dequaix,https://lh3.googleusercontent.com/a-/AOh14GjlKTBpmW9EMqsdUCTbE1U-MrpGanCAIY9q1_0ZVA,"Ça fait le job, sans plus. L'ergonomie n'est pas des plus brillante.",3,0,2.37.4,2020-01-22 11:53:16,"Bonjour, quel est le problème que vous rencontrez? Recherchez-vous une fonction particulière?",2020-01-23 09:50:55,most_relevant,com.appgenix.bizcal +Michelle Alberigi McKenzie,https://lh3.googleusercontent.com/a-/AOh14GgG3Hbq5WLjanIrR_We_CvFMc_6b8EP_80sE0pxVg,"Widget isn't opening calendar. I've deleted and restarted and when I use the 3x1 (I think) it opens to the day only, and won't go back to the month view like it used to.",3,0,2.37.2,2020-01-04 15:30:38,"Hi, this is correct. If you open a day through the widget and then press the back button, you will come back to the screen with the widget. We've changed the behavior due to high amount of other users' requests and - we must agree - it is more logical like so.",2020-01-06 09:34:42,most_relevant,com.appgenix.bizcal +Richard Hovey,https://lh3.googleusercontent.com/-oNqppXydEsg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNb4m7LN9CWcf-yP4FBw2D65RxaJg/photo.jpg,"Thanks for your comments. Why does Google Calendar sync perfectly and BC not, when all on the same account, I think? Some while ago, possibly due to an update, this stopped syncing reliably either regularly or even when sync button pressed in Business Calendar menu. Deleting an event on this Samsung Galaxy phone sometimes forces a sync. Sync is important as I use this with Google Calendar on desktop. Previously wrote: Easy to use and great that I can copy appointments.",3,0,2.37.0,2019-12-18 09:47:34,"Hi, it might be a general sync problem and it could help to remove and re-add the account for sync in your Android OS Settings - Accounts & Sync. + +Please remember that BC doesn't have its own sync abilities and uses only those provided by Android. Therefore it cannot be responsible for any sync issues you may have on the device.",2019-12-18 09:43:12,most_relevant,com.appgenix.bizcal +Chinee Man,https://lh3.googleusercontent.com/--YlGgcBKKRE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN72s2cHy7Aah0-b7CGLjNgvdYL8Q/photo.jpg,"OK, it's sending hundreds of notifications with no end after an update yesterday!",3,0,2.36.2,2019-11-24 11:17:53,"Hi, this is unusual. Have you already tried reinstalling? + +https://appgenix.uservoice.com/knowledgebase/articles/904029-what-steps-should-i-take-when-switching-resetting",2019-11-25 09:44:55,most_relevant,com.appgenix.bizcal +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Took more than 3 years, but they've finally managed to get BC2 to a similar perhaps even better level than the original. 3/10/2019.. update. Unfortunately, usability is severely compromised. Busy calendars are almost unreadable unless in day view. Tap to create appointment can drop you in very strange time slots (10:05 or 14:40). Clock to set times is backward step from BC1 which is BY FAR the best way to set times on a calendar. I like the auto link to contacts in bc2. 2 line favorites bar pls.",3,11,2.35.1,2019-10-02 23:09:18,"Please consider that BC 1 and BC 2 are two separate apps with different codes and should be treated so (also in rating). + +What are your settings fro overlapping events? Have you tried changing them? +The time slot for drag & drop depend on the way your view is zoomed. +Have you tried using the number pad as the time input method?",2019-10-14 13:11:51,most_relevant,com.appgenix.bizcal +Tim Gilbert,https://lh3.googleusercontent.com/-w0i3PSGnOHY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOBQXt_zbg-oy7hx3CdVfqL2Qy5bw/photo.jpg,"I've been using this happily for years, but I have realised that it desperately needs iCal feeds functionality to make it perfect. I need to see personal and work calendars, and an university provided ical feed all in the same place.",3,0,2.35.1,2019-09-25 17:41:51,"Hi, what do you mean precisely by that? The import? Or the sync? Both are possible. Please contact our support and they will help you.",2019-09-26 09:08:27,most_relevant,com.appgenix.bizcal +Angela Meadows,https://lh3.googleusercontent.com/-jC8ceco55BM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPFkG9LYibGoHdezOUMGLu5tpVNkA/photo.jpg,"The feature of customization for repeating calendar/event function has disappeared. When attempting to modify, it used to asked, ""Do you want to delete all calendar/event in the series or delete this particular function?"" Except for grandfathered calendar functions, the feature of attempting to delete a particular calendar function/event no longer exists.",3,0,2.35.1,2019-09-28 18:48:28,"Hi, please take a look here: https://appgenix.uservoice.com/knowledgebase/articles/359224-i-would-like-to-edit-or-delete-a-single-event-of-a",2019-10-14 13:15:16,most_relevant,com.appgenix.bizcal +Tony C.,https://lh3.googleusercontent.com/a-/AOh14GgpniIUgQ18tM1lBCoafapN7XI4eP-SV7mYGkIm,Zokay,3,0,2.35.1,2019-08-17 19:57:12,"Hi, thanks for the positive review. Nonetheless you rated he app with 3 stars. Is the any function you maybe look for? Can we help you somehow?",2019-08-20 11:02:38,most_relevant,com.appgenix.bizcal +Bright Abraham,https://lh3.googleusercontent.com/-ikXpBwUCMus/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNmLUI3gsYjgCEAS_738hi5yYHtaw/photo.jpg,hi i have been using this app for a number of years right from the first business calendar app; the best feature i like is the management of reminders where the reminders stay on even after the event end time till is dismissed manually. however since i have upgraded to S10 the reminders are automatically removed after the end time. no change in settings has made any difference. unfortunately queries to the support team hasn't helped. such a shame update- switched to aCalendar app which works,3,0,2.34.2,2019-06-05 16:56:01,"The problem is not caused by BC or any of its updates, but by the new Android standards. We only know 2 workarounds: deactivate the stock calendar completely with all permissions, notifications etc. or set the event time to ""0 minutes"". The other app may work because they didn't adapt their code to the standards, which is actually a bug.",2019-06-06 10:25:21,most_relevant,com.appgenix.bizcal +Greg Gale,https://lh3.googleusercontent.com/a-/AOh14GjaBhvh0UYgz96F25Ki_Kc2JPwz4iympwxU9-oV,I have been using BC2 for a long time. I generally like it but the month view widget just stopped displaying my calendars unless I hit the refresh button. I use Nova launcher. Please help!,3,8,2.34.2,2019-07-01 20:22:51,"Hi, have you maybe also tested the stock launcher (to exclude the Nova problem)? Is BC added to unmonitored apps in your Android settings?",2019-07-02 09:08:26,most_relevant,com.appgenix.bizcal +Max Fixit,https://lh3.googleusercontent.com/-tl-n6_qkbT0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNxfkWnLOf7l_lpbHwGykSeyng7ZQ/photo.jpg,It's been more than a year since I've requested a simple feature of counting the number of hours for certain entries in a month but there's nothing yet.,3,0,2.34.2,2019-06-04 03:58:29,"Hi, the idea has only 3 votes in the forum. It doesn't strike us as the one with the highest priority for the community right now. Please consider, that we are not able to built in every single feature requested. We need to filter the usability for all users and the forum votes are such filter for us.",2019-06-04 09:41:38,most_relevant,com.appgenix.bizcal +Ray Crienen,https://lh3.googleusercontent.com/-Rn6RZGUmOHU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN6nMa0pEefpJB6Go8sz9CVdgiyBw/photo.jpg,ok,3,0,2.34.1,2019-05-28 18:49:40,Thanks fro the positive feedback. Nonetheless you rated the app with 3 stars. Is there any issue we could maybe help you with?,2019-05-29 09:38:15,most_relevant,com.appgenix.bizcal +Josh Taylor,https://lh3.googleusercontent.com/-D6SEgKQT5MM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMZMQvTkk5VihMOcDr9VCUYrkrjSQ/photo.jpg,The last update caused annoying hesitation/delays when working with tasks in task view.,3,4,2.33.2,2019-04-14 17:36:57,"Hi, what do you mean precisely by that? Could you maybe send a video?",2019-04-17 10:09:14,most_relevant,com.appgenix.bizcal +Jeffrey McAllister,https://lh3.googleusercontent.com/a-/AOh14Gh6khFL3jAm3p9bI-Jajlwt8HHZ-HC0otRB0VZjjA,"As far as calendars/task lists go, it's pretty much the same as every other one that's any decent. What sold me on purchasing this app was the crazy customizability of the desktop widgets. However, I'm still miffed about the crappy, out-of-date icons/emotes the devs are using, and that at least one of them all but refuses to get with the beautiful present with them (I use icons to quickly identify types of events on my desktop agenda widget - very useful).",3,0,2.33.2,2019-04-13 01:55:02,"Hi, I don't think anyone ever refused the development of the emoticons. Please feel free to vote for the idea in our forum: +https://appgenix.uservoice.com/forums/280499-business-calendar-2/suggestions/35245417-add-custom-icons-emoticons-to-the-set-of-possibl",2019-04-13 17:09:09,most_relevant,com.appgenix.bizcal +Jean Lim,https://lh3.googleusercontent.com/-sjucB6BuJF4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNHr36EnF8uAuWKXmpruq6mjPvuDQ/photo.jpg,"something is wrong with the syncing, I can enter events but they don't sync. The Google calendar will sync",3,0,2.33.2,2019-05-09 13:02:35,"Hi, please check the following device settings: → Advanced settings → Battery manager → Protected apps → please look for BC and add it to the list of protected apps, +→ Apps → Advanced → Battery optimizations, you should exclude BC from being optimized. +On Huawei Lite devices allow BC to auto-start: → Apps → BC → Battery → Autostart",2019-05-10 10:52:26,most_relevant,com.appgenix.bizcal +Ève Smith,https://lh3.googleusercontent.com/a-/AOh14GiJrCj9rvPpJmmCl4dj3U0sV6A8ndz-oF5kD3x7RYo,"Great app, but why can't I add an attachment? I need this functionality and although I have been using BC for years, I might have to go to Google calendar..",3,0,2.33.2,2019-04-27 05:10:57,,,most_relevant,com.appgenix.bizcal +Bernhard Haas,https://lh3.googleusercontent.com/a-/AOh14Gidp-obmJonVrBi1Qqqdj94ZznJMRLWVJXj0xi4lf0,"Please add Exchange Tasks! Google-like, automatic scheduling would be a great add on!",3,1,2.33.2,2019-04-26 11:57:31,"Hi, we are always open for feature requests on our user forum :) + +https://appgenix.uservoice.com/forums/280499-business-calendar-2 + +Other users can vote and comment on the ideas there as well.",2019-04-26 13:38:00,most_relevant,com.appgenix.bizcal +James Lasseter,https://lh3.googleusercontent.com/a-/AOh14Gjf5Fh8mEQdej5hwZQAaG718VXmhvpvlDXzgVY6ra4,"this took quite a bit of setting up. , but now it is working again I like this Calendar.",3,0,2.33.2,2019-04-23 06:49:14,"Hi, thanks for the positive feedback. Nonetheless you rated the app with 3 stars. Are there any other problems we could maybe help you with?",2019-04-23 15:06:10,most_relevant,com.appgenix.bizcal +Teohar Gjorgiev,https://lh3.googleusercontent.com/a-/AOh14GgDH7_zjHQmxy5Kb_59v-3gjtNdPba0iMgcFI4zsAc,Ok ilv,3,0,2.33.2,2019-06-08 14:27:37,"Hi, thanks fro the positive review. Nonetheless you rated the app with 3 stars. Is there any issue we could maybe help you with?",2019-06-11 09:37:55,most_relevant,com.appgenix.bizcal +Mohd Izat,https://lh3.googleusercontent.com/a-/AOh14GhQmodw-gdyiDrPmeMwq4SIK6TTp5Bpi4pSQuWLKQ,good,3,0,2.33.2,2019-04-30 16:29:04,"Hi, thanks for the positive feedback. Nonetheless you rated the app with 3 stars. Is there any issue we could maybe help you with?",2019-05-02 11:32:53,most_relevant,com.appgenix.bizcal +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,A new isdue has cropped up. When editing a multiday event that you want to extend 1 more day you must include two additional days in order gor the app to show the one additional day you wish added. Most strange issue,3,1,2.33.1,2019-03-17 05:16:49,"Hi, this sounds unusual. How do you edit events? Ca you send us some screenshots and your device information( so that we could test it accordingly)?",2019-03-20 11:50:02,most_relevant,com.appgenix.bizcal +Galia Karamycheva,https://lh3.googleusercontent.com/-N60kc0tZp2M/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOO6huiW7HEH_-f0o8JlZw5dB7XXQ/photo.jpg,"Starting maybe in September I've started having issues. I will add an event to the calendar (which is synced to google), but within a few days the event will get cancelled (w/out notice of course). I can appreciate that the problem stems from Google sync. Nonetheless the problem is serious as it has to do with the chore use of the application. Anyway, I personally still use the app as the visualisation is still way better than Google's. So for me that still beats the major con.",3,2,2.33.0,2019-02-18 19:57:42,"Please contact our support ans we will tell you the workaround. +We've contacted other calendar app developers with the same problems. It especially happens right after the sync of events created with no or low internet connection. That is why, we all suspect that there must be something wrong with the Google sync, which we can't influence.",2019-02-19 10:09:38,most_relevant,com.appgenix.bizcal +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Repetitive tasks, by completion date, buggy. Been reporting it since 2017Jan21, 0759 hrs (MT). One rely asking how I sent in the concern (which I tried to reply to and can't), since then nothing. Great app, terrible customer service...",3,4,2.33.0,2019-02-13 10:27:02,"Unfortunately I cannot verify the conversation history with you on the given date since we don't have your name or email to refer to. Could you please tell us the email you contacted us, so that we could verify it? Or try contacting the support (help & feedback- send feedback) again?",2019-02-13 14:12:31,most_relevant,com.appgenix.bizcal +Paradoxtal Pythons,https://lh3.googleusercontent.com/a-/AOh14Gg3gBJDebJD_lWWjdQCaYMj42EdClhs_GVDwNiAMA,Events Disappear,3,0,2.33.0,2019-03-04 21:26:54,How do you add events? Do you sync your calendar or use it only locally? Is the sync working correctly/ do you have stable internet connection? Is the calendar storage working correctly on your device?,2019-03-05 10:40:14,most_relevant,com.appgenix.bizcal +Art Leach,https://lh3.googleusercontent.com/a-/AOh14GgyGeRCJaKWUYMdlPLLTYqbl2n77Swwn5S8gw_Ieg,"Used it in the past and wasn't too happy with it. Tried it again, and now I have no idea why I didn't like it before. I especially love the integration of the to do /task list within the app. I use the Agenda view on the widget and couldn't be more pleased. As the title says, I love it! Several years later and still living it. Wouldn't think of changing it for anything. Rating dropped from 5 to 3 stars. Too many features removed with recent updates.",3,11,2.32.2,2019-01-31 22:37:06,"Hi, we certainly didn't remove any function. Is it maybe possible that the pro license got locked?",2019-02-01 10:34:30,most_relevant,com.appgenix.bizcal +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Not so great! Add birthdays and they disappear as soon as I save. Used to love it, now looking for another love.",3,0,2.32.2,2019-01-24 18:58:10,"Hi, are the accounts for birthdays activated in calendars & task lists -> birthdays? Does the app have the contacts permission granted?",2019-01-25 11:51:08,most_relevant,com.appgenix.bizcal +Ankit Chawla,https://lh3.googleusercontent.com/a-/AOh14GjTIcb4TH-A5YyySN7FcqjKmvBGZRWtIzNr2O6AxA,no comments,3,0,2.32.2,2019-08-10 05:00:45,"Hi, do you have any issues with the app? Do you look for any particular functions? Can we help you somehow?",2019-08-12 12:19:20,most_relevant,com.appgenix.bizcal +ROYALMSP BOYS& Settings food catering site vidoes,https://lh3.googleusercontent.com/-XpGmxEUO_lI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOWL8-1LouTKeS16mtWrsSxmk5zhA/photo.jpg,Very nice,3,0,2.32.2,2019-10-11 18:08:30,"Hi, thanks for the positive feedback. Nonetheless you rated the app with 3 stars. Is there any issue we could maybe help you with?",2019-10-14 12:50:23,most_relevant,com.appgenix.bizcal +Philemon Ngobeni,https://lh3.googleusercontent.com/a-/AOh14GjivmWGWy1-TVKpD0QymShWdRsQQPqZTjbPTLBx,good,3,0,2.32.2,2019-06-06 05:51:13,"Hi, thanks for the positive feedback. Nonetheless you rated the app with 3 stars. Is there any issue we could maybe help you with?",2019-06-06 10:13:33,most_relevant,com.appgenix.bizcal +Marin Muštra,https://lh3.googleusercontent.com/a-/AOh14GiytiaR3ezHRnpPmLRDRI6_WAhauVaYUKy2metKLg,"Would be nice if you could attach image (or some file) to task and event. Update: More than a year passed, still no progress on image/file attachment feature. Although app is getting certain amount of updates, feels like it's time to check out the competition.",3,0,2.32.1,2018-12-20 06:37:03,"Hi, we are still working one this feature. We know that the time has passed, but we had to make sure the feature works reliably and will not hurry to publish an unfinished functionality. I hope you can understand that.",2018-12-20 13:24:03,most_relevant,com.appgenix.bizcal +Bill Dibb,https://lh3.googleusercontent.com/a-/AOh14GgDRQFUoulzC5X0l2UCHfgh0CxHUkvlPNsC7KVy,Too many long advertisements when I need my calendar.,3,0,2.37.9,2020-04-03 02:33:22,"Hi, please note that the free version is not ad-free. The skippable ads appear only ONCE every 18 hours. Otherwise you use the app without any further disturbance. The ads. contribute to further development and maintenance of this version. If you don't want to receive any ads, you can consider the pro version, which is completely ad-free.",2020-04-03 11:29:19,newest,com.appgenix.bizcal +smarlisg,https://lh3.googleusercontent.com/-n0I3hrMkR3s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMv9VVTEUhE0pbbvDlVTmhmOt_WZQ/photo.jpg,Sometimes gets dates wrong e.g religious holidays. Not as intuitive as others. Ok for basic use.,3,0,2.37.9,2020-03-26 11:53:51,"Hi, does your stock calendar display the synced holidays correctly? Most probably this is a sync/time zone issue, which BC is not responsible for. + +As for the handling what are the problems that you experience?",2020-03-27 09:23:51,newest,com.appgenix.bizcal +Vesna S,https://lh3.googleusercontent.com/-W-gyNT68pDQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMOuFGD-mzeG9IKTG31jo_smABh_w/photo.jpg,"It would be higher rating but I can't delite some events I don't need anymore.... For example: I still have reminder to pay a credit card which I don't have anymore for 2 years!!!!! If there is a way of deleting the same, please tell me, I'll give it 4 stars. Also too complicated (time consuming) setting exact time you want a reminder for an event....",3,4,2.37.9,2020-03-21 00:20:12,"Hi, is it a read only event? In that case, you need to delete it, where it was created. +You can select reminder time for all-day events already provided you device supports the function :)",2020-03-23 09:55:35,newest,com.appgenix.bizcal +Ck Prince,https://lh3.googleusercontent.com/-O_ku9jlemxQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOdf9c7-MIi0ltYEhKDr8KY608ozw/photo.jpg,"Def prefer this to Google calendar, wish it was easier to see and switch to month view.",3,0,2.37.9,2020-03-18 23:31:26,"Hi, what do you mean exactly by that? Which view do you usually use? You can set month view to be your standard view, you can use gestures or 3 finger tap to open it. Please contact our support and they will tell you how to use the app more efficiently.",2020-03-19 11:03:58,newest,com.appgenix.bizcal +Viencell Price,https://lh3.googleusercontent.com/-85MqaPzerAw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMd-N4fMwKm5St5FOKfJJrEOvL4Vw/photo.jpg,"I was like great wit it until it erased all my schedules, then like magic gave em back 4 that month",3,0,2.37.9,2020-03-18 21:18:37,"Hi, the app cannot delete any data on its own. It sounds like you either had a sync issue or you deactivated your calendars from the preview. Take a look here for the future reference: https://appgenix.uservoice.com/knowledgebase/articles/1912096-my-calendar-data-is-suddenly-gone-how-can-i-recov",2020-03-19 11:05:02,newest,com.appgenix.bizcal +"Thala, Cammel",https://lh3.googleusercontent.com/a-/AOh14GgzZ-Z3ZTa1a5G5VhhyU3WoFREzQUYYKZvnD55W7g,"I have been using the app for some time (I guess about 2 years). The functionality is very good. But here comes the tracker list: AdColony, AppLovin, ChartBoost, Facebook Ads, Flurry, Fyber, Google Analytics, Inmobi, ironSource, Mintegral, Moat, Tapjoy, Unity3s Ads. Appgenix says ""only for the free Version"". Check with Wireshark in progress.",3,2,2.37.9,2020-03-18 16:23:49,We use the tracker for the advertising only in the free version of the BC 2! We also inform about it. In the pro version they are deactivated and DO NOT pull any data. Firebase Crashlytics is used to track crashes to improve the app. Google Analytics is currently not in use in the BC.,2020-03-19 11:16:01,newest,com.appgenix.bizcal +Christine Rechner 70,https://lh3.googleusercontent.com/a-/AOh14GgUeibZeYDkMaGiC3iLpX1toPae1K7m0q2054CBKw,"It serves its purpose. I have not used too many others to compare. I wish I could set different reminder sounds. I HATE the ads after adding an appointment. Sometimes I have 2 things to add and have to wait, which is not ok when coordinating with a doctor's office.",3,0,,2020-03-18 07:27:41,"Hi, please note that the free version is not ad-free. The ads are, however, skippable and appear only ONCE every 18 hours. Otherwise you use the app without any further disturbance. + +The function to set an individual calendar reminder sound is a part of PRO pack.",2020-03-18 08:49:33,newest,com.appgenix.bizcal +Jon Nigrine,https://lh3.googleusercontent.com/a-/AOh14GhAdCG91X5VBARNNz0hR_3Ex0LhcTIHiO2TXqMhGe4,"Every now and then appears to disconnect from certain calendars. Support didn't have an answer. Otherwise, I love it.",3,0,2.37.9,2020-03-17 21:30:28,"Hi, the last email we received from you was in November 2019 and it was timely answered. How did you contact us this time? Could you write once more?",2020-03-18 08:43:01,newest,com.appgenix.bizcal +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Great app. But it's not syncing properly. Please fix.,3,3,2.37.9,2020-03-16 21:31:57,"Hi, it might be a general sync problem and it could help to remove and re-add the account for sync in your Android OS Settings - Accounts & Sync. + +Please remember that BC doesn't have its own sync abilities and uses only those provided by Android. Therefore it cannot be responsible for any sync issues you may have on the device.",2020-03-17 11:02:13,newest,com.appgenix.bizcal +J C,https://lh3.googleusercontent.com/-ePoT957ewJk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPM2BTK20-E27o54EAtubyk9gCPqw/photo.jpg,Hate the ads.,3,0,2.37.9,2020-03-14 03:44:41,"Hi, please note that the free version is not ad-free. The ads contribute to further development and maintenance of this version. If you don't want to receive any ads, you can consider the pro version, which is completely ad-free.",2020-03-16 09:02:43,newest,com.appgenix.bizcal +Krystian,https://lh3.googleusercontent.com/a-/AOh14Ghp-yirVsJBj52aPrEchVR3iroEyLpu-cPC3awE,Full screen ads...,3,0,2.37.9,2020-03-12 13:48:39,"Hi, please note that the free version is not ad-free. The ads contribute to further development and maintenance of this version. If you don't want to receive any ads, you can consider the pro version, which is completely ad-free.",2020-03-12 13:49:34,newest,com.appgenix.bizcal +S L-R,https://lh3.googleusercontent.com/-u2rqyrF2buY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNb58K_xoCY7hn0kgb6fuC4ROzrgA/photo.jpg,"Awesome until.... I was trying this app out to see if it was possible to finally break ties with my paper calendar. This app had some features that made it better than Google calendars. That is, until you had to watch an ad to schedule an appointment. Now when I save an appointment have to sit through a full page ad. I didn't get enough time in the app to figure out if it was worth it to pay for the full version but now the mandatory ads are a deal breaker.",3,22,2.37.9,2020-03-09 15:04:12,"Hi, there are absolutely no ads in the PRO version. Are you sure your license is correctly unlocked by your app store? Take a look here: https://appgenix.uservoice.com/knowledgebase/articles/908211-i-paid-for-the-app-but-i-lost-the-pro-features",2020-03-10 10:08:59,newest,com.appgenix.bizcal +Tina Jenkins,https://lh3.googleusercontent.com/-E1eEHZJX_6I/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPyO6tNmfLJlq78JFMIqCVlglhw0g/photo.jpg,Why aren't holidays showing up on my calendar?,3,0,2.37.9,2020-03-06 13:09:34,"Hi, did you add them correctly to your BC? Take a look here: https://appgenix.uservoice.com/knowledgebase/articles/884997-how-can-i-add-public-holidays-to-my-calendar",2020-03-09 12:59:17,newest,com.appgenix.bizcal +Daphne A. Yang,https://lh3.googleusercontent.com/a-/AOh14GiCs88IIjs4fudOj-HbC-RxM612vorMrKYHbom8GA,"The new video ad is really annoying, it pops out, and no way to close it unless you close the entire app. It really interrupt when you want to add a few appointments to the calendar.",3,1,2.37.9,2020-03-01 13:14:40,"The free version is still functional as the ads appear only every 18 hours! It means it is 2/day, if you're unlucky. Otherwise you can use the app without any further disturbance. Please note, that this free version needs to be developed and maintained on the daily basis. This requires a lot of time and work. The ads help us maintain the software.",2020-03-03 11:07:48,newest,com.appgenix.bizcal +Bart Simpson,https://lh3.googleusercontent.com/-IeviLc_JNNg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNfw7urqliMXfvzvrZw2F28ZodY9A/photo.jpg,Ok but i hate big full screen ads with long videos,3,1,2.37.9,2020-02-20 14:41:46,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-21 10:17:21,newest,com.appgenix.bizcal +Tam Chu,https://lh3.googleusercontent.com/a-/AOh14GhftNXVaTsUsE-tQeEFl5rcAphEnrznAmPJ51WXAg,"Recently the app has shown a bug in repeat appointments. I always have repeated 3-day-appointment for Friday, Saturday, and Sunday. It starts in the evening of Friday and ends next Sat morning, Saturday evening to next Sunday morning, and Sunday evening to next Monday morning. After Monday, the appointment repeats every 5 weeks. It used to work correctly until mid 2018. Now, the Sunday-evening-to-next-Monday-morning appointment appears in the week before the correct week. Please fix it. Thanks",3,0,2.37.9,2020-02-18 00:54:51,"Hi, have you maybe checked the stock calendar app? Does it have the same issue? It sounds like a sync problem, which we unfortunately cannot influence.",2020-02-18 09:12:01,newest,com.appgenix.bizcal +Cadnel BOSSAVI,https://lh3.googleusercontent.com/a-/AOh14GgHUNkKbxYIKNpXanvo1YgwKfI1_qrH1g4-aE7SvA,Est ce que vous avez une version de Business Calendar pour les laptop ?,3,0,2.37.9,2020-02-17 16:43:07,"Veuillez noter que BC est une application Android. Cependant, vous pouvez synchroniser votre calendrier et accéder aux données dans Google Web Calendar par exemple.",2020-02-18 09:14:27,newest,com.appgenix.bizcal +Altaric n a,https://lh3.googleusercontent.com/a-/AOh14Gg1WaoiNv27BQcUBgCYcUql124UvtYro-nxxblP,Now you get a 30sec ad whenever you create a new calendar entry. Still an excellent calendar,3,1,2.37.9,2020-02-16 08:54:28,"Hi, please note that the free version is not ad-free (only the pro version is completely ad-free). However, we are currently working on the possibility to skip ads and try to set all ads from all providers on silent as standard. We hope to integrate it soon.",2020-02-17 08:59:12,newest,com.appgenix.bizcal +Cm Loh,https://lh3.googleusercontent.com/a-/AOh14Gg_4p_IKdqYqLYwvuuyUGtiENB7Na5LfNiGmfF5Mg,,一|f厂了|b可cncc。 rv,3,0,2.37.9,2020-02-14 13:18:31,"Hi, do you have any technical issues with the app? Can we help you somehow?",2020-02-14 14:16:45,newest,com.appgenix.bizcal +T K,https://lh3.googleusercontent.com/-sEtzfvLXDxo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMSvFigMyTjLZaGfhXuCyJxJsPLLA/photo.jpg,The full screen ads are intrusive and seriously hinder the free version's usability. Before the ads this was a very solid and handy calendar app.,3,1,2.37.9,2020-02-10 09:13:38,"Hi, please note that the free version is not ad-free. The ads contribute to further development and maintenance of this version. If you don't want to receive any ads, you can consider the pro version, which is completely ad-free.",2020-02-10 09:41:46,newest,com.appgenix.bizcal +Allen Benz,https://lh3.googleusercontent.com/a-/AOh14GjDTjbBrnHfIF41zvS4GIoPUpo6HGWDYSoOTYPIkQ,Very customizable and easy to use. Works great with Google calendar but I can't get it to sync with my office 365 outlook account. Bummer!!,3,0,2.37.9,2020-02-09 22:38:38,"Hi, take a look here: https://appgenix.uservoice.com/knowledgebase/articles/955654-i-see-my-outlook-events-in-the-outlook-app-but-no",2020-02-10 09:42:20,newest,com.appgenix.bizcal +Trey K.,https://lh3.googleusercontent.com/-ISpcyA8dOYg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNvW5PmGAvblkPsKvqQoD4jJi9p5A/photo.jpg,Great app...new adds not so much.,3,0,2.37.9,2020-02-09 17:03:56,"Hi, we avoided this solution for as long as it was possible. It is not the case anymore and we need to think about further development and maintenance of this version. This kind of advertisement is a standard right now in the free apps. If you don't want to receive any ads, you can consider the pro version, which is completely ad-free.",2020-02-10 09:42:37,newest,com.appgenix.bizcal +Gal Grünfeld,https://lh3.googleusercontent.com/a-/AOh14Gh3iIfsUYs_v1VvBnv1YYLu3Siv7BqxVHP13Nvx-A,"Works great, but when I start creating events and switch to a different app and go back to Business Calendar, they disappear. Also, very limited, unsearchable collection of emojis. No statistics on events, too. Would also love to see goal tracking. Needs prioritizements of tasks. Also, no option to find a time for an event.",3,1,2.37.9,2020-02-08 23:28:51,"How do you open the new event (app or widget)? + +Emojis: feel free to vote for the idea on our forum: https://appgenix.uservoice.com/forums/280499-business-calendar-2/suggestions/35245417-add-custom-icons-emoticons-to-the-set-of-possibl +and post your other enhancement suggestions there as well.",2020-02-12 14:04:33,newest,com.appgenix.bizcal +Mariella Franker,https://lh3.googleusercontent.com/-0WPzoozUe90/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOhiJXo--3DXUTXVP7-8aFAe5QfBA/photo.jpg,"I used to really love this app and I still do for its flexibility and functionality. I was considering getting the pro version but because I am a small business owner, it was not yet necessary. Since the recent change to the new add format, I am watching full screen adds and waiting for them to finish (oftentimes no skip option). The adds are so obnoxious that the first time it appeared I tought I was hacked. It's hampering my productivity and now it has also put me off getting the pro version..",3,15,2.37.9,2020-02-08 09:01:53,"Hi, we avoided this solution for as long as it was possible. It is not the case anymore and we need to think about further development and maintenance of this version. This kind of advertisement is a standard right now in the free apps. If you don't want to receive any ads, you can consider the pro version, which is completely ad-free.",2020-02-12 14:06:00,newest,com.appgenix.bizcal +Luciano R Ferreira,https://lh3.googleusercontent.com/a-/AOh14Ggb7NjHQkVj2o2cihUU47k5lQJrdyyGhfE0vtcVkw,After last update all info's gone. Shame on you. Android never more.,3,0,2.37.9,2020-02-02 23:45:47,"Hi, the app cannot delete any of your data on its own. Take a look here: https://appgenix.uservoice.com/knowledgebase/articles/1912096-my-calendar-data-is-suddenly-gone-how-can-i-recov",2020-02-03 09:26:34,newest,com.appgenix.bizcal +Weekend Warrior,https://lh3.googleusercontent.com/a-/AOh14GiV8mJbjnQA8v6ec-pwPRQF6WIcZsB_d3oF55VNCQ,Needs to have matching theme with phone. i.e. dark mode with dark theme/light mode with light theme.,3,2,2.37.9,2020-02-01 01:01:10,Feel free to post your suggestion in our user forum: https://appgenix.uservoice.com/forums/280499-business-calendar-2,2020-02-03 09:38:25,newest,com.appgenix.bizcal +Eddie McDaniel,https://lh3.googleusercontent.com/a-/AOh14GhBD9xXs3o2vaagPXzLm6KtHL3fmE7TY1Rvakqn3A,Paid for it 2 times keeps wanting me to pay for it again,3,0,2.35.1,2020-01-31 18:58:22,You don't need to pay twice as your license is normally valid forever without any time or download limit. Take a look here: https://appgenix.uservoice.com/knowledgebase/articles/908211-i-paid-for-the-app-but-i-lost-the-pro-features,2020-02-03 09:39:54,newest,com.appgenix.bizcal +Steve Bufty,https://lh3.googleusercontent.com/-q7P9ag1TcT8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMnrXj-yxYpq4-1-D8kRNB69iZQpA/photo.jpg,I schedule a 9 a.m. meeting in Pennsylvania while I'm in California. But when I get to Pennsylvania my 9am meeting is now off by 3 hours. I would like the times to be fixed no matter where I am.,3,0,2.37.7,2020-01-28 04:17:06,"Hi, you can set a time zone of the place when creating the event. This way it will be shown correctly when you change the TZ. Take a look also here: https://appgenix.uservoice.com/knowledgebase/articles/870480-home-time-zone",2020-01-28 12:01:47,newest,com.appgenix.bizcal +Einar Boson,https://lh3.googleusercontent.com/a-/AOh14Gi5EMXp409WB45dlYCA0zeu-QHqZxIFKaWtJZWvWvo,"Would be 5 stars, because it's really great, the best calendar I've ever used, but it keeps losing things I enter where I have poor reception. It's like it thinks it has uploaded them and then forgets them somehow.",3,0,2.37.5,2020-01-25 14:28:12,"It is a problem of Google. We've contacted other calendar app developers and they are experiencing the same problems. It especially happens right after the sync of events created with no or low internet connection. That is why, we all suspect that there must be something wrong with the Google sync, which we unfortunately can't influence.",2020-01-27 11:41:46,newest,com.appgenix.bizcal +Laura Ferrari,https://lh3.googleusercontent.com/-dX9839xUDa4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN7A-jk_GNnKBqwmTtQG8lNIrAIkA/photo.jpg,"The app crashes quite often recently but when it works it's really useful to manage events and meetings, easy to use",3,0,2.37.5,2020-01-23 07:49:23,"Hi, when does the app crash? Is it reproducible? Does the app have all necessary permissions granted?",2020-01-23 09:45:26,newest,com.appgenix.bizcal +Yethi Dequaix,https://lh3.googleusercontent.com/a-/AOh14GjlKTBpmW9EMqsdUCTbE1U-MrpGanCAIY9q1_0ZVA,"Ça fait le job, sans plus. L'ergonomie n'est pas des plus brillante.",3,0,2.37.4,2020-01-22 11:53:16,"Bonjour, quel est le problème que vous rencontrez? Recherchez-vous une fonction particulière?",2020-01-23 09:50:55,newest,com.appgenix.bizcal +helal al-ganem,https://lh3.googleusercontent.com/a-/AOh14Gjz5GjVQEMEc46LFqwCo6Mh6RblZ6UNjOK8K_2p6g,"8/4/18 ☆☆☆☆: I'd give five stars if the weather showes in Celsius. Other than that, the app is absolutely great! I ended up getting the paid version because I felt like the developers deserved it for making such a versatile scheduling tool!! 20/1/2020 ☆☆☆: The degree still does not change to C even if I change it on Darksky. Fixing this would be very helpful especially that this has been noted almost 2 years ago.",3,1,2.37.4,2020-01-20 15:49:51,The degree unit should automatically adjust accordingly to your location. It is not possible in the app. Have you maybe tried changing in on the Darksky page (click on the location in the app to open it)?,2018-08-06 10:18:55,newest,com.appgenix.bizcal +My Le,https://lh3.googleusercontent.com/a-/AOh14GgaB-pHmwNkA30WQJ4Q9SfagMrQ0EBXIm1nd_vcHmw,Weather not accurate. It would be nice task have options on bottom of calendar too.,3,0,2.37.4,2020-01-20 15:28:59,"Hi, what is not accurate according to you? +You can add your task lists to the Favorite Bar the same way you add calendars :)",2020-01-21 08:48:47,newest,com.appgenix.bizcal +Judith Yang,https://lh3.googleusercontent.com/-eqEXAxBiz94/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOpxOM994QEHcwYZGTB_ORP0XVLIQ/photo.jpg,Functional but not very stable.,3,0,2.37.4,2020-01-19 19:22:08,"Hi, what do you mean by that? Can you elaborate?",2020-01-20 09:45:54,newest,com.appgenix.bizcal +Misty Yates,https://lh3.googleusercontent.com/-RDtE8TVIJvQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMqk8HxGWzsKdtnOvux3GuCxeceLQ/photo.jpg,"App is easy to use, but there are 2 features I find annoying. When I add calendar items that I have entered multiple times before, I would like the event data to default to the same data usually used for this event - even when I'm adding an event for the 50th time, I have to overlay the time, duration & reminder. The other is that my reminders don't always remind me (take today for example) & I would like them to keep reminding me until I clear them, even if that takes all day.",3,1,2.37.4,2020-01-18 23:52:44,"How do you usually add events? Do you use templates? https://appgenix.uservoice.com/knowledgebase/articles/870639-templates +As for reminders, take a look here: https://appgenix.uservoice.com/knowledgebase/articles/1827433-why-are-my-reminders-not-working",2020-01-20 09:49:25,newest,com.appgenix.bizcal +Joe Bayer,https://lh3.googleusercontent.com/-UQCNWDE6VPo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNVBQRgdGEoDCvY8InNQ01FNuKsiA/photo.jpg,It's good... marginally better than the one that is standard with the phone.,3,0,2.37.4,2020-01-18 20:05:10,"Hi, thanks for the positive review. Nonetheless you rated the app with 3 stars. Is there any problem we could maybe help you with?",2020-01-20 09:49:53,newest,com.appgenix.bizcal +Linda Kettle,https://lh3.googleusercontent.com/a-/AOh14Gj9sW6U6yHt6QHomHYuZUECEyf62_QlMVTjVnhz,Easy to use but needs better or customizable colors,3,0,2.37.3,2020-01-13 13:03:34,"Do you mean event or calendar colors? The event color selection is always the same due to the sync reasons. We cannot change it or add additional colors. However, you can set any color imaginable for the calendars (calendars & task lists - pencil icon - color palette icon).",2020-01-14 10:20:20,newest,com.appgenix.bizcal +T J,https://lh3.googleusercontent.com/a-/AOh14GgvjRskKbFVcKujpPmoLeVC5F9Au3X_yR5geLyV,Great app when it works but don't assume you will get any support when it doesn't. Always read our help files and that is it.,3,0,2.37.2,2020-01-08 23:06:10,,,newest,com.appgenix.bizcal +Kristi Schnipke,https://lh3.googleusercontent.com/a-/AOh14GiWhdzLMPiT3qc3huFDQ013f5pwvwDWoTNAq_MFIw,"I have been using this app for years, and have loved it, but the latest version is sucking my battery. It's very frustrating.",3,0,2.37.2,2020-01-06 12:19:03,"Hi, do you see BC listed in the battery usage list of your Android device? Could you maybe send some screenshots from the list? Please also add your device information from BC 2 - Help & Feedback - send feedback.",2020-01-07 10:41:24,newest,com.appgenix.bizcal +Michelle Alberigi McKenzie,https://lh3.googleusercontent.com/a-/AOh14GgG3Hbq5WLjanIrR_We_CvFMc_6b8EP_80sE0pxVg,"Widget isn't opening calendar. I've deleted and restarted and when I use the 3x1 (I think) it opens to the day only, and won't go back to the month view like it used to.",3,0,2.37.2,2020-01-04 15:30:38,"Hi, this is correct. If you open a day through the widget and then press the back button, you will come back to the screen with the widget. We've changed the behavior due to high amount of other users' requests and - we must agree - it is more logical like so.",2020-01-06 09:34:42,newest,com.appgenix.bizcal +Eduard Schmidt,https://lh3.googleusercontent.com/a-/AOh14GiT4u2ATDYHdwmDD8MyH1xi0_Dvjuw7DajOHREJQg,"I'm considering uninstalling this previously wonderful app: since the last update, the widget has gone completely unresponsive...",3,1,2.37.2,2020-01-02 22:54:24,"We've been already testing the behavior on our end, but could not reproduce it. This leads us to believe it is the system blocking the background processes for the app, which is the also reflected on the widget. Please take a look here: https://dontkillmyapp.com/xiaomi",2020-01-03 10:35:39,newest,com.appgenix.bizcal +Peter Harvey,https://lh3.googleusercontent.com/-C5_YL5PKyrI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN2AvekXlWTdZi4vOv8HVN_F7mVCA/photo.jpg,Very pleased. Practical and clear. Upset that 1. I paid for and installed an upgrade on my phone but this did not happen on my tablet; all I get is advert for upgrade but at extra cost. 2. Tasks is accessed in 3 steps. Why not 1?,3,0,2.37.2,2019-12-30 06:21:30,"Hi, 1. take a look here: https://appgenix.uservoice.com/knowledgebase/articles/908211-i-paid-for-the-app-but-i-lost-the-pro-features + +2. what do you mean by that?",2020-01-02 15:42:40,newest,com.appgenix.bizcal +Wolfe Grossman Sr,https://lh3.googleusercontent.com/a-/AOh14GivCsGMdYPH19KbTCn5nc4XOrezh-s41cpU_cwTuQ,"Great overall, somewhat limited.",3,0,2.37.0,2019-12-24 15:03:54,"Hi, what are the problems that you experience? Do you look for any particular feature?",2020-01-02 15:57:57,newest,com.appgenix.bizcal +Mary R,https://lh3.googleusercontent.com/-8j-DNEV8AgU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNrZegSLsCl1hMdDpA5YgpZKiJO-Q/photo.jpg,"Overall decent functionality but clunky execution. The premium version has good calendar functions but the notifications are spotty and don't work well with my phone, which defeats the purpose for me. The sub task feature is nice but organizing them is difficult.",3,0,2.37.0,2019-12-22 00:29:31,"Hi, have you already checked all the following settings? https://appgenix.uservoice.com/knowledgebase/articles/1827433-why-are-my-reminders-not-working",2020-01-02 16:01:10,newest,com.appgenix.bizcal +David Kang,https://lh3.googleusercontent.com/a-/AOh14GhWeS3hBUJGXPZZPjgMWzHp5L7hL7aDwmrVyefiZw,"my wedget doesn't update weather, help",3,0,2.37.0,2019-12-20 16:44:16,"Hi, have you tried rebooting the device?",2020-01-02 16:04:04,newest,com.appgenix.bizcal +Thanabhat Koomsubha,https://lh3.googleusercontent.com/a-/AOh14Gi0FhFI_ivOuuOH3GgLRx_1Lxg6qnvrvDrgG_L9Iw,Latest update broke google task. Can not synchronize. Try to log out and can not add google task again.,3,3,2.37.0,2019-12-20 00:56:43,,,newest,com.appgenix.bizcal +Vojtech Jakl,https://lh3.googleusercontent.com/a-/AOh14GgwnpyMKzip5KUmfE5u22lRmj6IHEveDp62ZUDf,"beautiful widgets - in Month view, I would prefer colored bars with text inside, the same as for full day events. Syncing with MS Exchange: PROS: Calendar - far better then Samsung Calendar; CONS: Tasks - completely missing (five stars down)",3,0,,2019-12-19 22:53:52,"Hi, the display of the events depends on they characteristics: all-day events = background in the calendar/event color, events with time = title font in the calendar/event color. This way you can distinguish your events right away.",2019-12-20 10:24:04,newest,com.appgenix.bizcal +Anastasia Kukanova,https://lh3.googleusercontent.com/a-/AOh14GgkzJ1Bn-I9HdGqIRqMfUA-s6t7fpVG2QaAsxuX1w,"Stopped syncing properly at some point, which drives me nuts because having an updated schedule on every device is very important for my job. A",3,0,2.37.0,2019-12-19 22:39:08,,,newest,com.appgenix.bizcal +Richard Hovey,https://lh3.googleusercontent.com/-oNqppXydEsg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNb4m7LN9CWcf-yP4FBw2D65RxaJg/photo.jpg,"Thanks for your comments. Why does Google Calendar sync perfectly and BC not, when all on the same account, I think? Some while ago, possibly due to an update, this stopped syncing reliably either regularly or even when sync button pressed in Business Calendar menu. Deleting an event on this Samsung Galaxy phone sometimes forces a sync. Sync is important as I use this with Google Calendar on desktop. Previously wrote: Easy to use and great that I can copy appointments.",3,0,2.37.0,2019-12-18 09:47:34,"Hi, it might be a general sync problem and it could help to remove and re-add the account for sync in your Android OS Settings - Accounts & Sync. + +Please remember that BC doesn't have its own sync abilities and uses only those provided by Android. Therefore it cannot be responsible for any sync issues you may have on the device.",2019-12-18 09:43:12,newest,com.appgenix.bizcal +Apiwat Puangtaisong,https://lh3.googleusercontent.com/a-/AOh14Gi00ei_hA0iZ_zm1agCYQ8WNYe-PdUkwekRFe3aHg,I have an issue of widget stretching. Are there any debugs?,3,0,2.36.2,2019-12-11 13:12:41,"Hi, which widget is affected? Have you tried rebooting the device? How about resizing/re-adding the widget? Do you use the stock launcher?",2019-12-12 10:01:04,newest,com.appgenix.bizcal +kapil deoke,https://lh3.googleusercontent.com/-5GnXBwSmF4o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPCvtCbHhHCNIrt4KSBO5CIC-SIHw/photo.jpg,Don't have any options to manage daily expenses,3,0,2.36.2,2019-12-02 03:10:06,"I#m not quite sure, why a calendar app should manage this data. Could you elaborate on that?",2019-12-02 13:24:19,newest,com.appgenix.bizcal +Daniel Ahmed,https://lh3.googleusercontent.com/-tP_QdXhFDfE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPF2OhyxfhTPetO8J94w5KqpAcQ8Q/photo.jpg,I really like the sophisticated display and the level of personalisation you can make. It would get 5 stars...but....the default text colour for the month display widget is a dark grey that is too dark to read when using the dark theme. I have to go through every entry to change them individually to a light grey so I can actually read it in the widget. Any help?,3,1,2.36.2,2019-11-27 19:56:48,"Hi, do you mean your calendar color? You can change it in the app - calendars & task lists - pencil icon - color palette icon. + +Apart from that you can change your widget colors in the widget settings - colors.",2019-11-28 11:12:56,newest,com.appgenix.bizcal +Chinee Man,https://lh3.googleusercontent.com/--YlGgcBKKRE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN72s2cHy7Aah0-b7CGLjNgvdYL8Q/photo.jpg,"OK, it's sending hundreds of notifications with no end after an update yesterday!",3,0,2.36.2,2019-11-24 11:17:53,"Hi, this is unusual. Have you already tried reinstalling? + +https://appgenix.uservoice.com/knowledgebase/articles/904029-what-steps-should-i-take-when-switching-resetting",2019-11-25 09:44:55,newest,com.appgenix.bizcal +BWonderful Rios,https://lh3.googleusercontent.com/a-/AOh14GhPMDhSjtL-CBQ6GWz1DSOEFynMxwsB8DkHQbmU_g,"The app was working great, up until recently! Now i cant click on the date, and update it directly through the widget. I have to open the app and make changes through there. What happened! :(",3,0,2.36.2,2019-11-21 22:57:49,"Hi, please make sure your Android system is not blocking the background processes for the app, which may also affect the widget: https://dontkillmyapp.com/",2019-11-22 09:32:31,newest,com.appgenix.bizcal +movie movie,https://lh3.googleusercontent.com/-OnU270Uau6U/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMcywxXx3vobtpVAiWU1k1VzYM54A/photo.jpg,Please allow line wrap for a event tile in the month widget and/or month-style display,3,0,2.36.2,2019-11-19 05:33:25,"Feel free to post the suggestion on our user forum :) +https://appgenix.uservoice.com/forums/280499-business-calendar-2 + +Other users can vote and comment on the ideas there as well.",2019-11-19 12:33:27,newest,com.appgenix.bizcal +Ian H,https://lh3.googleusercontent.com/a-/AOh14GgkwIs6uqe_yKN4D8O6F8BmWYYGSaxU8icvdIoV9jI,"Was very happy with the widget, but the refresh button stopped working (outlook 365). Edit: Events from Google Calendar are synced fine. Events from Outlook 365 to mobile device sync fine, but edit them do not sync them back. Manually refreshing from the widget does noting for outlook 365. Manually refreshing in the app works without problems. These are all actions when using the device (Nokia 6.1), and not in battery saving mode.",3,3,2.36.2,2019-11-14 21:17:34,"Hi, it sounds like a sync issue. It could help to remove and re-add the account for sync in your Android OS Settings - Accounts & Sync. + +Please remember that BC doesn't have its own sync abilities and uses only those provided by Android. Therefore it cannot be responsible for any sync issues you may have on the device.",2019-11-15 11:11:01,newest,com.appgenix.bizcal +Joe Sutton,https://lh3.googleusercontent.com/a-/AOh14Gi183xe_U5zfaZpERZXDblIa_LwB_xoBlM3apOxwMk,"It's decent but the Google tasks integration is bad. It's set to hourly sync but doesn't actually update tasks unless I manually trigger it. The repeating tasks data is not synced with Google: if it's due to repeat in BC but I tick it off on a Google webpage then it's gone, no repeat. I'm also having a problem with notifications appearing later than they should. All in all, I'm going back to Google calendar.",3,1,2.36.2,2019-11-12 08:08:13,"Hi, given the constraints of space for answer here could you please contact our support and they will address your issues. You can do it directly form the app in the ""help & feedback"" section.",2019-11-12 10:34:16,newest,com.appgenix.bizcal +Miles Vancura,https://lh3.googleusercontent.com/a-/AOh14GhCFkqj-8-ZLHH1Anu8dShn0S8ZBrBMjcSn1-M5,"This app cannot be useful to me until it works with DAV synchronized task lists. For some reason it is able to load calendars from the DAVx app, but not Tasks.",3,0,2.36.2,2019-11-06 14:49:18,Currently it is only possible to sync tasks with Google. We hope to implement our own functionality which would help us to sync tasks with other providers in the future.,2019-11-07 09:05:49,newest,com.appgenix.bizcal +R S,https://lh3.googleusercontent.com/-BULQXjMKWjM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMjQTqeyVYvJx0ajQYNI73J1aqggw/photo.jpg,Works fine for importing calendar. Can't say same for tasks. OS: Linux,3,0,2.36.2,2019-11-02 21:21:23,"Hi, please contact our support and they will try to provide you with a solution. You can do it directly from the app in the ""help and feedback"" section.",2019-10-14 11:24:17,newest,com.appgenix.bizcal +Yohana A,https://lh3.googleusercontent.com/-Pov1J3-EbyU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMEBPgLxbXwMagZX-Tt3rwXIOF-Sw/photo.jpg,"UI too complicated, not very user friendly.",3,0,2.36.2,2019-10-22 15:42:45,"Hi, what are the problems that you experience? Can we maybe help you somehow?",2019-10-23 08:28:38,newest,com.appgenix.bizcal +Bogdan Chifor,https://lh3.googleusercontent.com/a-/AOh14Gguq8SetgSVYq5Wsu6BnceVCSd-fOABesJS63XiZQ,Average app. No worth,3,0,2.36.2,2019-10-22 05:50:28,"Hi, what are the problems that your experience? Is there any function that you particularly look for? Can we maybe help you somehow?",2019-10-22 09:02:13,newest,com.appgenix.bizcal +Michelle Legoza,https://lh3.googleusercontent.com/a-/AOh14GhksO5dxyFoj6Sl_XW-cUJkFiaoJOPkKIZuwdEleYM,I like this app and have been using it for a while but have started noticing appointments I put in the calendar don't sync to Google and some how disappear out of my calendar so I have no idea when they are. Extremely frustrating since i don't always notice the appointment has disappeared.,3,2,2.36.2,2019-10-14 00:30:21,"It might be due to a problem of Google. We've contacted other calendar developers and they are experiencing the same problems. It especially happens right after the sync of events created with no or low internet connection. That is why, we all suspect that there must be something wrong with the Google sync, which we unfortunately can't influence.",2019-10-14 12:31:40,newest,com.appgenix.bizcal +Gavin Maclure,https://lh3.googleusercontent.com/a-/AOh14GhOGhdtB5A4AELwZQZwB454hbIMOBLEWJ4WD0f6XcI,"I used to love this app but since installing the latest version on my new Samsung 10 the Google Tasks sync has stopped working. It synchronises from Google to Business Calendar but will not synchronise from Business Calendar to Google. ] I have tried disconnecting my Google account and reconnecting, I've made sure BC2 Tasks is associated with my Google account and all Sync settings are turned on. Is this is a known issue and if so will a fix be developed please? Thanks.",3,9,2.36.2,2019-10-13 19:36:33,"Hi, have you also checked Android OS Settings - accounts - BC 2 - account sync - tasks?",2019-10-14 12:44:13,newest,com.appgenix.bizcal +ROYALMSP BOYS& Settings food catering site vidoes,https://lh3.googleusercontent.com/-XpGmxEUO_lI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOWL8-1LouTKeS16mtWrsSxmk5zhA/photo.jpg,Very nice,3,0,2.32.2,2019-10-11 18:08:30,"Hi, thanks for the positive feedback. Nonetheless you rated the app with 3 stars. Is there any issue we could maybe help you with?",2019-10-14 12:50:23,newest,com.appgenix.bizcal +monsmom1,https://lh3.googleusercontent.com/-j7sbZMXLBMg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOSaHdaRgLWTmp__nJV9L6difrJ9w/photo.jpg,"Overall it works, but not so easy to use. When you block out time the first and last day of the time block do not turn the same color as the rest so it can throw you off. Sometimes it's hard to set specific dates and the icons are limited.",3,2,2.36.2,2019-10-10 03:23:02,"Hi, do you mean multiple-day events? Do you set start and end time for those? If so, the display is correct. The first and last day of such event are not all-day (don't last 24 hours) and are therefore not displayed in the all-day area. Tho change it, mark your event as all-day",2019-10-14 12:54:10,newest,com.appgenix.bizcal +Shem Pameron,https://lh3.googleusercontent.com/a-/AOh14Ghv-nSAgY4Pyjxxfst5lstAaAght5xrcH_vQOWxqtY,"I'm changing my review from 5 to 3. My husband uses the same app for his work and private events so I also bought this. However, for some reason, and we've already tried every troubleshooting we can think of, his calendar private calendar won't show up on mine. Although it does show up on Google calendar. I've tried reinstalling so many times but to no avail. Only very few events of his would show up on my calendar and not the whole thing. I'm not sure what's going on 😭",3,0,2.30.0,2019-10-09 15:27:10,"Hi, please update your app to the latest version. You seem to have the 2.30 version installed, while the current one is 2.36",2019-10-14 13:01:23,newest,com.appgenix.bizcal +Jon Day,https://lh3.googleusercontent.com/-B6M0MONU96w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPh6_G_79KoiqqCWp9jp2ho5QBDsw/photo.jpg,"Like the app so far...but I went into the settings and changed the appearance of my ""Standard View"" to Month...yet everytime I open the app...the standard view shows Day instead of Month.",3,0,2.35.1,2019-10-06 10:37:22,"Hi, you can change it in the settings - appearance - standard view :)",2019-10-14 13:04:29,newest,com.appgenix.bizcal +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Took more than 3 years, but they've finally managed to get BC2 to a similar perhaps even better level than the original. 3/10/2019.. update. Unfortunately, usability is severely compromised. Busy calendars are almost unreadable unless in day view. Tap to create appointment can drop you in very strange time slots (10:05 or 14:40). Clock to set times is backward step from BC1 which is BY FAR the best way to set times on a calendar. I like the auto link to contacts in bc2. 2 line favorites bar pls.",3,11,2.35.1,2019-10-02 23:09:18,"Please consider that BC 1 and BC 2 are two separate apps with different codes and should be treated so (also in rating). + +What are your settings fro overlapping events? Have you tried changing them? +The time slot for drag & drop depend on the way your view is zoomed. +Have you tried using the number pad as the time input method?",2019-10-14 13:11:51,newest,com.appgenix.bizcal +Gui Reis,https://lh3.googleusercontent.com/a-/AOh14Gh5xSUHVGg2PUaDp6Fm3Z18VJqd0XF-BzIrH1rKRA,"The new update remove the option to change only one event when it is on repeat, now i need to copy and select.. And could have more colors!! Paid version",3,0,2.35.1,2019-10-02 06:58:48,"Hi, please take a look here: https://appgenix.uservoice.com/knowledgebase/articles/359224-i-would-like-to-edit-or-delete-a-single-event-of-a",2019-10-14 13:13:16,newest,com.appgenix.bizcal +Lance Cheng,https://lh3.googleusercontent.com/a-/AOh14GgBuzZ-7TFr44XQs7BEcPoPKMmlERBIQcQpyLIs_3U,Sometimes the app will just stop working or the widgets won't work,3,0,2.35.1,2019-10-01 11:03:52,"Hi, what do you mean precisely by that? Can you elaborate?",2019-10-14 13:13:59,newest,com.appgenix.bizcal +Angela Meadows,https://lh3.googleusercontent.com/-jC8ceco55BM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPFkG9LYibGoHdezOUMGLu5tpVNkA/photo.jpg,"The feature of customization for repeating calendar/event function has disappeared. When attempting to modify, it used to asked, ""Do you want to delete all calendar/event in the series or delete this particular function?"" Except for grandfathered calendar functions, the feature of attempting to delete a particular calendar function/event no longer exists.",3,0,2.35.1,2019-09-28 18:48:28,"Hi, please take a look here: https://appgenix.uservoice.com/knowledgebase/articles/359224-i-would-like-to-edit-or-delete-a-single-event-of-a",2019-10-14 13:15:16,newest,com.appgenix.bizcal +Tim Gilbert,https://lh3.googleusercontent.com/-w0i3PSGnOHY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOBQXt_zbg-oy7hx3CdVfqL2Qy5bw/photo.jpg,"I've been using this happily for years, but I have realised that it desperately needs iCal feeds functionality to make it perfect. I need to see personal and work calendars, and an university provided ical feed all in the same place.",3,0,2.35.1,2019-09-25 17:41:51,"Hi, what do you mean precisely by that? The import? Or the sync? Both are possible. Please contact our support and they will help you.",2019-09-26 09:08:27,newest,com.appgenix.bizcal +Allen Millington,https://lh3.googleusercontent.com/-eOCVYy2Am24/AAAAAAAAAAI/AAAAAAAATmA/AAKWJJNBs_KML49VW0MoabPs_3cZ_uxuvw/photo.jpg,"Task management is a bit dangerous (can forget to enable a list). Also, can't figure out a way to view a single list without disabling all other lists (which ties into first point).",3,0,,2019-09-24 07:02:27,"Hi, this is not possible. If you want to view one list, you need to disable the others. Otherwise it would not be quite logical.",2019-09-24 09:21:37,newest,com.appgenix.bizcal +Amber Eickholt,https://lh3.googleusercontent.com/a-/AOh14GhXf1nCD8oyX63_XeySqaYcltxWg_1-QbmjmTCT,Great but over half the time when I edit a task it changes the year to the 1960s even though it says 2019 when selected.,3,0,2.35.1,2019-09-23 08:27:25,"Hi, this is unusual. Can you send us some screenshots along with your device information from BC 2 - help & feedback - send feedback? We will take a look into it.",2019-09-23 09:59:11,newest,com.appgenix.bizcal +Dr Elliott,https://lh3.googleusercontent.com/a-/AOh14GjjfgyN3ZgRIbspfrNfkaawudC-jaOGFFSzq5KuiA,"Ok, I guess.",3,0,2.35.1,2019-09-22 03:19:45,"Hi, thanks fro the positive feedback. Nonetheless you rated the app with 3 stars. Is there maybe any issue we could help you with?",2019-09-23 10:00:45,newest,com.appgenix.bizcal +Karl Thornton,https://lh3.googleusercontent.com/a-/AOh14GigTAHogrUVI_CqCUqlSOGJU5U3l5iiz3cnjcdPHA,"Seemed like a decent enough app, but I was looking for a calendar that worked with Google but that I could add local photos to events with, a feature currently lacking in Google calendar. Without that, didn't seem different enough to justify extra install.",3,0,,2019-09-21 22:52:38,"Hi, the attachment function will soon be added to the calendar :)",2019-09-23 10:11:35,newest,com.appgenix.bizcal +Sam Wilkinsn,https://lh3.googleusercontent.com/a-/AOh14Gj35eHxtxC-xHsUoa47cIYfBcuHcuKiLkrDqHfUww,Can't complete events. Must keep dismissing it or delete it.,3,0,2.26.2,2019-09-18 21:55:42,"If you want to mark your events as done, it is not possible. The function is available only for tasks. What you could do is to use icons as a workaround: https://appgenix.uservoice.com/knowledgebase/articles/1080985-can-i-add-emoticons-to-my-events-tasks",2019-09-19 09:09:13,newest,com.appgenix.bizcal +Lars Walker,https://lh3.googleusercontent.com/-1Bmnnyuc5tk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPQtOHn6pzZRvlz-fH8lIHn3WOwGA/photo.jpg,Have to push too many buttons to approve my route. Not hands free friendly.,3,0,2.35.1,2019-09-17 14:50:07,"Hi, all you need to do is to click on the location/maps icon and the chosen app will open.",2019-09-18 09:33:46,newest,com.appgenix.bizcal +Alex Sewell,https://lh3.googleusercontent.com/-koCBZBNGxA8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOhSSRMe_UpaRJ0XYQwca6NM3VXqA/photo.jpg,"The app is great for the use, however I am giving it 3 stars. If I make a new event and change the colors, or add more than one reminder, these changes erase after I create the event. This results in me having to make those changes twice for them to be saved. Very annoying and inconvenient. Edit: I add the events on my phone for a synced calendar. The wifi connection is always stable as well.",3,4,2.35.1,2019-09-16 14:04:14,"Hi, could you test the stock app? It sounds like a problem with the calendar storage on your device (where the events are stored) and it could help clearing it. + +https://appgenix.uservoice.com/knowledgebase/articles/486861-how-do-i-clear-the-calendar-storage",2019-09-17 10:43:46,newest,com.appgenix.bizcal +All Seasons Specialist Auto/Yard/Home,https://lh3.googleusercontent.com/a-/AOh14GiRRwr_fK-TpGzl1eBzdSbifgSLvMqwCn_jllEN,its alright does same as google maps,3,0,2.35.1,2019-09-13 23:01:57,"Hi, what are the functions that you look for? Can we maybe help you somehow?",2019-09-16 13:40:17,newest,com.appgenix.bizcal +Janine Hoffart,https://lh3.googleusercontent.com/a-/AOh14GiJCJS4fgMo1H0XvTFwHDJLYHU849ul6FRI8FAwnw,"I wish I could delete things that automatically show up in my calendar, things like holidays in other countries etc., I don't want ""everything"" showing up that really doesn't pertain to me. If there is a way, I haven't found it!",3,0,2.35.1,2019-09-11 16:57:41,"Hi, you can do it in calendars & task lists - pencil icon - bin icon.",2019-09-16 13:50:35,newest,com.appgenix.bizcal +Hock Cheang Lim,https://lh3.googleusercontent.com/-NTfnLnyEDQg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNwrDUphoyRIMfDTTyvG9Nmd6o0-w/photo.jpg,"For basic mode, nothing much can set.",3,1,2.35.1,2019-09-03 00:10:37,"Hi, what are the functions that you look for? Maybe we could help you somehow?",2019-09-03 08:50:15,newest,com.appgenix.bizcal +Louis Perez,https://lh3.googleusercontent.com/-8kQJ76LSYZ4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMqnoYTNUVM9km5tQ0hua3zZ2tzeQ/photo.jpg,"It's effective. Yes it's better than a lot of other options out there. It's just dated, the interface is weak and difficult to navigate. They could really make some strong improvements by streamlining it. I bet most users, pro or not, aren't aware of all the settings. Response 8/8/19: Thanks for the offer but I think you're missing point. If I had time to help I would have long ago though. Response: I wouldn't have paid for an app that required me that much submit feedback in a forum.",3,2,2.35.1,2019-08-31 14:23:35,"Hi, we are always open for feature requests on our user forum :) +https://appgenix.uservoice.com/forums/280499-business-calendar-2 + +Other users can vote and comment on the ideas there as well",2019-09-02 10:44:10,newest,com.appgenix.bizcal +dhareal famous,https://lh3.googleusercontent.com/-BkHkHnWs5_I/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMhh2Poad7uWqC1RTfQE1CUz9btkQ/photo.jpg,I would give it a 5 but I recently got a new phone and I cannot sync at all. I really needed it to sync. Very disappointed because I followed all the steps in my email. Please help,3,0,2.35.1,2019-08-27 01:56:50,"Note, that BC does not sync your data and is not responsible for the sync problems on the device. Did you set your device correctly up? Take a look here: +https://appgenix.uservoice.com/knowledgebase/articles/904029-what-steps-should-i-take-when-switching-resetting +https://appgenix.uservoice.com/knowledgebase/articles/891003-sync-across-devices",2019-08-27 08:19:03,newest,com.appgenix.bizcal +Kirstin Stoffel,https://lh3.googleusercontent.com/-HHuCsC_g-NE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNPRw5GH8CE46qUxyF2Q31o5QOPGw/photo.jpg,"I love this app and use it for everything, however, for some reason it is no longer showing any holidays when I clicked on that tab. Hopefully this will be fixed in the next update.",3,0,2.35.1,2019-08-24 19:23:53,"Hi, do you sync the calendar with holidays? Or do you use the BC 2 function? + +https://appgenix.uservoice.com/knowledgebase/articles/884997-how-can-i-add-public-holidays-to-my-calendar",2019-08-26 08:54:51,newest,com.appgenix.bizcal +Tony C.,https://lh3.googleusercontent.com/a-/AOh14GgpniIUgQ18tM1lBCoafapN7XI4eP-SV7mYGkIm,Zokay,3,0,2.35.1,2019-08-17 19:57:12,"Hi, thanks for the positive review. Nonetheless you rated he app with 3 stars. Is the any function you maybe look for? Can we help you somehow?",2019-08-20 11:02:38,newest,com.appgenix.bizcal +Pierre Fortin,https://lh3.googleusercontent.com/-G3E6NFGNDIw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOryAP3walQq9RMbKLKLWoiRMttgA/photo.jpg,"was working fine for couple years. Now... 1. it creates duplicates of repeating events 2. while trying to change notification sounds, it switched to silent with no way to restore 3. FAQ to allow single repeated event deletion says to sync to get 'only this event'; but 'sync now' closes menu w/o synching",3,0,2.35.1,2019-08-12 13:55:11,Could you please contact our support directly and we will address your issues? We don't have enough space for answer here unfortunately.,2019-08-13 09:48:02,newest,com.appgenix.bizcal +Ankit Chawla,https://lh3.googleusercontent.com/a-/AOh14GjTIcb4TH-A5YyySN7FcqjKmvBGZRWtIzNr2O6AxA,no comments,3,0,2.32.2,2019-08-10 05:00:45,"Hi, do you have any issues with the app? Do you look for any particular functions? Can we help you somehow?",2019-08-12 12:19:20,newest,com.appgenix.bizcal +Wes Franssen,https://lh3.googleusercontent.com/-WdVqm5wkv24/AAAAAAAAAAI/AAAAAAAAAZ8/AAKWJJOH7957MVM0O_wzEpgjjsUQ9Z-Q3A/photo.jpg,Is there a way to see less weeks in month-widget? 6 weeks is too much for my taste. 4 would be more ideal,3,0,2.35.1,2019-08-07 19:26:05,"It is not possible, but we are always open for feature requests on our user forum :) +https://appgenix.uservoice.com/forums/280499-business-calendar-2 + +Other users can vote and comment on the ideas there as well",2019-08-08 11:05:38,newest,com.appgenix.bizcal +M L,https://lh3.googleusercontent.com/a-/AOh14Gi30LyLa3LzI8Fr05Ke_pTqcXBCEwSiAqOevpK3Bg,Has trouble syncing Google calendar. Not all events show up even after clicking sync now. Also tried hiding and un hiding calender but still doesn't sync.,3,1,2.35.1,2019-08-07 13:55:40,"Does the stock cal. have the same problem? If so, it might be a general sync problem and it helps to remove and re-add the account for sync in Android OS Settings - Accounts & Sync. + +Please remember that BC doesn't have its own sync abilities and uses only those provided by Android. Therefore it can't be responsible for sync issues on your device.",2019-08-08 11:21:14,newest,com.appgenix.bizcal +Honey French,https://lh3.googleusercontent.com/a-/AOh14GhmIRyf41gT-YQ9_Q4KoQeB-UA8Bx2K9wChToeB4w,"I gave it a lower rating because lately if I had any repeat scheduled appointments, I can't change one without changing them all. Very aggravating. Before, I was able to cancel one without affecting all the future repeat weekly or monthly entries. Before, I could use this calendar to keep track of my past activities. Now it looks like I attended a meeting when I didn't because I couldn't cancel it without affecting future meetings",3,3,2.35.1,2019-07-30 19:46:01,"Hi, you must have a sync issue on your device. Take a look here: https://appgenix.uservoice.com/knowledgebase/articles/359224-i-would-like-to-edit-or-delete-a-single-event-of-a",2019-07-31 09:05:08,newest,com.appgenix.bizcal +Michael Rice,https://lh3.googleusercontent.com/a-/AOh14GiC6abLn0CFaK0bpdq_BonNVcWK_QEC00oUl5KbaA,Nice calendar but where is the Jewish Calendar maybe you could offer more options,3,0,2.35.0,2019-07-28 18:34:21,"Hi, we are always open for feature requests on our user forum :) + +https://appgenix.uservoice.com/forums/280499-business-calendar-2 + +Other users can vote and comment on the ideas there as well.",2019-07-29 07:54:35,newest,com.appgenix.bizcal +Amir Alayan,https://lh3.googleusercontent.com/-Q2AMIlODF_k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMYdj52Gq-l3d8OQsmZosLvcpbfcA/photo.jpg,"Love the program and it's definitely an improvement over Google Calendar. Just the easy moving back and forth between dates using the 'go to' feature is a huge plus in my book. It does have some short comings that are irritating to me at least. I use my calendar to keep track of my to do lists. I save them in the Description field. First off the editing features such as bolding, underlining, line numbering, etc don't appear anywhere unless like in my case you accidently discover them by doing a couple of steps of bizarre gymnastics. Once found I loved the features. However the first thing that is annoying is that if you have a long list of things that go past one screen you have to keep scrolling down to access those features. Would be nice if there was a button or tab that would open a stationary bar at the top or a floating window that moves with the screen. Second issue is definitely a software bug having to do with the line numbering. Once a line numbering list has been established and you want to go back to add a new line or change the priority by moving things up and down the system does odd things.",3,2,2.35.0,2019-07-23 17:43:15,"Hi, could you contact our support and send us some screenshots? + +We are always open for feature requests and improvement suggestions on our user forum +https://appgenix.uservoice.com/forums/280499-business-calendar-2 +Other users can vote and comment on the ideas there as well.",2019-07-24 09:10:16,newest,com.appgenix.bizcal +Hany Tadross,https://lh3.googleusercontent.com/-XMGr5jXeObs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMypVhS5bjAI6_W25Qu0ga2OqITxA/photo.jpg,Does not show dates of bookings as it used to detect from emails,3,0,2.34.2,2019-07-18 13:50:08,"Hi, please note that this information is automatically added and synced with your account. BC does not add this information at all.",2019-07-18 15:02:02,newest,com.appgenix.bizcal +Danni Black,https://lh3.googleusercontent.com/-QuesgCYxpHU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMEkLw-3F282_wjeKp39s8bsiyVkQ/photo.jpg,"Calendar has a lot of good features but half the time my reminders don't go off so I miss them. Paid for the full version but it still didn't help. All of my Friday reminders finally chimed on Sunday, kinda pointless!!",3,18,2.34.2,2019-07-07 03:45:15,"Hi, there are various settings, which influence the reminders. Please see the help article below: https://appgenix.uservoice.com/knowledgebase/articles/1827433-why-are-my-reminders-not-working",2019-07-08 10:17:35,newest,com.appgenix.bizcal +Patrick Becker,https://lh3.googleusercontent.com/a-/AOh14GhprD5bjk_8MlWfHThxQKixvaFtCexas73TuNffSQ,"Need the ability to create recurring tasks and then edit separate instances, NOT the whole series or event and future instances. I need to edit just a specific instance. I think it used to work and give me the option to just Edit This Event, but now that is gone.",3,0,2.34.2,2019-07-04 21:58:01,"Hi, the option is available: https://appgenix.uservoice.com/knowledgebase/articles/359224-i-would-like-to-edit-or-delete-a-single-event-of-a",2019-07-05 08:44:41,newest,com.appgenix.bizcal +Greg Gale,https://lh3.googleusercontent.com/a-/AOh14GjaBhvh0UYgz96F25Ki_Kc2JPwz4iympwxU9-oV,I have been using BC2 for a long time. I generally like it but the month view widget just stopped displaying my calendars unless I hit the refresh button. I use Nova launcher. Please help!,3,8,2.34.2,2019-07-01 20:22:51,"Hi, have you maybe also tested the stock launcher (to exclude the Nova problem)? Is BC added to unmonitored apps in your Android settings?",2019-07-02 09:08:26,newest,com.appgenix.bizcal +WILLIAM KENNET,https://lh3.googleusercontent.com/a-/AOh14GhUpVoUx5qu1D4ZOTHjy4ZcBTo5MyXD82vNhUawlw,"I like it. However, I can't seem to get the notification sounds to work. They used to.",3,0,2.34.2,2019-06-26 10:14:18,"Hi, have you checked if you calendar isn't set to silent? You can do it in the calendars & task lists - pencil icon + +Just FYI: https://appgenix.uservoice.com/knowledgebase/articles/1827433-why-are-my-reminders-not-working",2019-06-26 11:27:41,newest,com.appgenix.bizcal +Frederic Morel,https://lh3.googleusercontent.com/-qI2Zmwze3no/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMVrR5XZafJLL2DXMaVq2aY0Bu4pw/photo.jpg,"The best Android calendar app for power users. However, since a year or so, it freezes with almost every use, making it practically impossible to use. Not sure if this is a widespread problem or just me. Support has been responsive and has tried to reproduce the problem, but in vain. The option of sending a logfile for analysis is unfortunately not available. A pity, as it is a great app; I still haven't found any other remotely as good as this one.",3,0,,2019-06-25 12:20:04,"Hi, as far as we could verify, the issue was forwarded to the developers and they couldn't reproduce the problem. If it is not reproducible, it is not possible to know the reason for it to be happening and potentially to fix it.",2019-06-24 12:51:29,newest,com.appgenix.bizcal +Domn Dragos,https://lh3.googleusercontent.com/a-/AOh14GjLPnLSspE8jnp0xXsyHNCLEI9Kq1gfE_83mypo7Q,Hey i was very glad to use calendar 30 until now. I can not edit anything ... If i want to delete something is reappear every time. I can't move or delete. If is not working i want my money back. I will change the review if you solve this problem. Edit :I will edit the review after you ll solve this problem. I send it an email also.,3,6,2.34.2,2019-06-23 13:43:26,"Hi, do you refer to the series? Did you add the series directly in BC? Please note, that the system installed on your device is not able to handle the series well, but we built in a workaround for BC 2. Please take a look here: https://appgenix.uservoice.com/knowledgebase/articles/359224-i-would-like-to-edit-or-delete-a-single-event-of-a",2019-06-17 07:59:50,newest,com.appgenix.bizcal +Attila Vaczi,https://lh3.googleusercontent.com/a-/AOh14Gj6MKVzYfJOG0pGScBq423SPLKolGbWzqyWWywK8Q,After the update widget stopped reacting but after deleting it and reinstalling it worked again and then came back to same problem.,3,0,2.34.2,2019-06-14 17:00:46,"Hi, which widget do you use? Have you tried rebooting or re-adding the widget? Do you have the stock launcher installed?",2019-06-17 08:00:58,newest,com.appgenix.bizcal +Teohar Gjorgiev,https://lh3.googleusercontent.com/a-/AOh14GgDH7_zjHQmxy5Kb_59v-3gjtNdPba0iMgcFI4zsAc,Ok ilv,3,0,2.33.2,2019-06-08 14:27:37,"Hi, thanks fro the positive review. Nonetheless you rated the app with 3 stars. Is there any issue we could maybe help you with?",2019-06-11 09:37:55,newest,com.appgenix.bizcal +Erik Badillo,https://lh3.googleusercontent.com/a-/AOh14GjBxlyDLM7n4YTFv33lQqfynRmWOWMZcNzmHtH5bg,"I purchased the pro version, there was an update and now the pro version is gone. I cannot seam to get it back and I have written thru the feedback link with no response. The pro version purchase shows in my play folder but I cannot get the pro version loaded. I uninstalled and reinstalled and still no help. Need to get the pro version loaded again, please help.",3,5,2.34.2,2019-06-06 20:02:02,"Hi, both of your emails have been answered. Please check your mailbox. Maybe the messages didn't land in the main inbox.",2019-06-07 12:14:33,newest,com.appgenix.bizcal +Philemon Ngobeni,https://lh3.googleusercontent.com/a-/AOh14GjivmWGWy1-TVKpD0QymShWdRsQQPqZTjbPTLBx,good,3,0,2.32.2,2019-06-06 05:51:13,"Hi, thanks for the positive feedback. Nonetheless you rated the app with 3 stars. Is there any issue we could maybe help you with?",2019-06-06 10:13:33,newest,com.appgenix.bizcal +Kathryn Lane,https://lh3.googleusercontent.com/-6SsSEwT7v_4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMClTcg8RK15D3SWZhk45iFqB0pxQ/photo.jpg,the widget freezes a lot. the calendar is not intuitive to use.,3,0,2.34.2,2019-06-05 17:24:50,"Hi, which widget do you use? What are your problems with the calendar setup? Do you need help? Please contact our support and they will give you a hand.",2019-06-06 10:22:51,newest,com.appgenix.bizcal +Bright Abraham,https://lh3.googleusercontent.com/-ikXpBwUCMus/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNmLUI3gsYjgCEAS_738hi5yYHtaw/photo.jpg,hi i have been using this app for a number of years right from the first business calendar app; the best feature i like is the management of reminders where the reminders stay on even after the event end time till is dismissed manually. however since i have upgraded to S10 the reminders are automatically removed after the end time. no change in settings has made any difference. unfortunately queries to the support team hasn't helped. such a shame update- switched to aCalendar app which works,3,0,2.34.2,2019-06-05 16:56:01,"The problem is not caused by BC or any of its updates, but by the new Android standards. We only know 2 workarounds: deactivate the stock calendar completely with all permissions, notifications etc. or set the event time to ""0 minutes"". The other app may work because they didn't adapt their code to the standards, which is actually a bug.",2019-06-06 10:25:21,newest,com.appgenix.bizcal +Martin S,https://lh3.googleusercontent.com/a-/AOh14GjxvccOxO18LnoAtm9dy9328u3-6bVAx2PvYFh9,"Since the last update, May 29, I have been losing random events. Tonight, I've added the same event four times over the last three hours. Just waiting to see if it disappears again. Several updates ago, the photos I attached to each profile stopped appearing. I think the OS was blamed. It's been a great app for several years but I'm afraid of what else I might lose in the near future.",3,0,,2019-06-05 04:41:50,"It might be due to a problem of Google. We've contacted other calendar developers and they are experiencing the same problems. It especially happens right after the sync of events created with no or low internet connection. That is why, we all suspect that there must be something wrong with the Google sync, which we unfortunately can't influence.",2019-06-05 09:16:29,newest,com.appgenix.bizcal +Max Fixit,https://lh3.googleusercontent.com/-tl-n6_qkbT0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNxfkWnLOf7l_lpbHwGykSeyng7ZQ/photo.jpg,It's been more than a year since I've requested a simple feature of counting the number of hours for certain entries in a month but there's nothing yet.,3,0,2.34.2,2019-06-04 03:58:29,"Hi, the idea has only 3 votes in the forum. It doesn't strike us as the one with the highest priority for the community right now. Please consider, that we are not able to built in every single feature requested. We need to filter the usability for all users and the forum votes are such filter for us.",2019-06-04 09:41:38,newest,com.appgenix.bizcal +Daphne Straley,https://lh3.googleusercontent.com/a-/AOh14GhCyg8doLkb8ttueNwZpP8GL8YzsdBwfiNktOb_,"time zone doesn't work, i have my phone in a different time zone than i live in and have managed to change most things to my home time zone. this app allows me to change my time zone but it doesn't actually reflect the change anywhere. the date and time of the app and events stay incorrect. my phone is on Taiwan time for now and i have set the app, the preset for events and every individual event to mst, but when i open the app or use the widget, the dates show in Taiwan time still",3,2,2.34.2,2019-06-03 19:58:42,"Hi, this sounds unusual. Could you send us some screenshots so that we could take a look into it?",2019-06-04 09:34:40,newest,com.appgenix.bizcal +freakydeath33,https://lh3.googleusercontent.com/-euhdVmRyb9E/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOlD4CmzfdWN61UOgVlbZ95_IS8FQ/photo.jpg,"add an event to calendar but it gets saved on a random day, not current day, annoying.",3,0,2.33.2,2019-06-02 17:08:40,"Hi, how do you add events? Where do you click precisely? Which view do you use? Or do you maybe use widget to add data?",2019-06-03 10:32:42,newest,com.appgenix.bizcal +Joe Quadrini,https://lh3.googleusercontent.com/a-/AOh14Gi86Mp2MUJu5gcvTBE2iQXPl06YFvTLt6JmXmt9Ig,"I would continue using this app if only i was able to add attachment to the calendar from google drive ex: picture, or doc file",3,0,2.23.0,2019-06-01 14:39:21,,,newest,com.appgenix.bizcal +Normie Stewart-Brown,https://lh3.googleusercontent.com/-29FdPFfadzc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMqetCSOUdMAvK6XvJpJ7AKTQ4KwQ/photo.jpg,nice but I wish it had more flexibility.,3,0,2.34.1,2019-05-29 02:21:56,"Hi, what are the settings that you look for? Can we help you somehow?",2019-05-29 09:37:45,newest,com.appgenix.bizcal +Ray Crienen,https://lh3.googleusercontent.com/-Rn6RZGUmOHU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN6nMa0pEefpJB6Go8sz9CVdgiyBw/photo.jpg,ok,3,0,2.34.1,2019-05-28 18:49:40,Thanks fro the positive feedback. Nonetheless you rated the app with 3 stars. Is there any issue we could maybe help you with?,2019-05-29 09:38:15,newest,com.appgenix.bizcal +sasha bregman,https://lh3.googleusercontent.com/-torfd8HrfU4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPeG3mCekeAZkxT0Oo6B0rbk-uDKg/photo.jpg,was great but the last update stop synking the outlook account... try to re-connect it but no luck...,3,0,2.34.0,2019-05-28 17:04:14,Please remember that BC doesn't have its own sync abilities and uses only those provided by Android. Therefore it cannot be responsible for any sync issues you may have on the device. It might be a general sync problem and it could help to remove and re-add the account for sync in your Android OS Settings - Accounts & Sync.,2019-05-29 09:38:58,newest,com.appgenix.bizcal +Austin Childress,https://lh3.googleusercontent.com/-8s2f_C7O36E/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOp0Qrvp-VgJIkUkbII0XNXAuC19w/photo.jpg,"I love this ap, but when the new update went through, I no longer have the pro version... please fix",3,1,2.34.0,2019-05-24 16:08:01,"Hi, you don't need to pay twice. Please take a look here: https://appgenix.uservoice.com/knowledgebase/articles/908211-i-paid-for-the-app-but-i-lost-the-pro-features",2019-05-27 14:26:25,newest,com.appgenix.bizcal +Clifford B. Brown,https://lh3.googleusercontent.com/a-/AOh14GhOKR_TcRmBJSiRY6ILML_bLlBoQEDuKs_mqEl54Eo,"This app is great as far as the calendar and task functions. However, it is nearly unbearable to use since it doesn't respect the phone setting to not notify during a call. When it notifies during a phone call using the regular carrier app (not Skype, Hangouts or other app), it buzzes and sends a loud notification that is painful and very disruptive. I sent in a support request 3.5 years ago and they said it shouldn't do that and they were going to ""look into it."" But they haven't fixed it in any updates and it's been the same on all of the different phones I've had since then, not just an isolated issue on one phone.",3,4,2.34.0,2019-05-24 15:01:27,"Hi, the app does respect phone settings. Please note, that this applies only to actual phone calls. If you use other apps like Skype, Whatsapp etc. to call, the settings are not applied.",2019-05-24 08:23:05,newest,com.appgenix.bizcal +Christian Macedo,https://lh3.googleusercontent.com/a-/AOh14GiSBJonUfe5aRy111IKVeUa_5-qYQm4DFV8EGuEew,"Does the month view as per the ""Professional design"" image exist? this seems ideal but i csnt find it.",3,0,2.33.2,2019-05-16 15:47:33,"Hi, what do you mean precisely by that? Could you elaborate or send us some screenshots? We will try to help you out.",2019-05-17 10:24:46,newest,com.appgenix.bizcal +Throw Away,https://lh3.googleusercontent.com/-KzI9BXeWnrc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM_yFa_lEScV1CrmFgceybplXFgcQ/photo.jpg,Why can't I change a single event in a reoccurring series? Am I missing something? It only has 'Change this and future events' or 'change all events in series',3,0,2.33.2,2019-05-14 21:14:33,"Hi, please take a look here: https://appgenix.uservoice.com/knowledgebase/articles/359224-i-would-like-to-edit-or-delete-a-single-event-of-a",2019-05-15 09:43:16,newest,com.appgenix.bizcal +Tia Price,https://lh3.googleusercontent.com/-qR82wCPVOqI/AAAAAAAAAAI/AAAAAAAABJE/AAKWJJOOXsBFUyDfw7_gu_WIHLaRJL1Cpg/photo.jpg,"Would have give this app 5stars...HOWEVER..everytime I restart my phone, the app won't load. I have to re-install it EVERYTIME. Its annoying! (The Widget)",3,0,2.33.2,2019-05-13 19:41:08,"Hi, this is a known Android 9 issue. We already found a solution and it will be published in the next update. + +Just FYI you can backup your settings: https://appgenix.uservoice.com/knowledgebase/articles/885132-import-export-of-widget-settings",2019-05-14 16:27:10,newest,com.appgenix.bizcal +Rebecca A.,https://lh3.googleusercontent.com/a-/AOh14GiNGBDd54gDo8I6UjAls_64c3Xpqpw-nq18qwtjmg,"I got a newer phone and I used the same email that I purchased the pro app on, but it won't let me install it again for free when I've already paid for it.",3,2,2.33.2,2019-05-12 11:27:10,"Hi, please find all necessary information in the link below: https://appgenix.uservoice.com/knowledgebase/articles/904029-what-steps-should-i-take-when-switching-resetting",2019-05-13 11:43:21,newest,com.appgenix.bizcal +Tour Guide,https://lh3.googleusercontent.com/-PThzMln_yos/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPcuSjhi8JVCaCevY-g_6VTWyLscA/photo.jpg,"It's okay, but the tasks are too simple. Not a good way to integrate and organize them.",3,0,,2019-05-11 07:11:06,"Hi, what are the problems that you experience? Can we help you somehow?",2019-05-13 11:44:01,newest,com.appgenix.bizcal +Josh Hova,https://lh3.googleusercontent.com/-d-1C0r7RVQs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN4cic4Jt_gYI9X_v1peqUGy1MIfw/photo.jpg,the day pro widget view shows events overlapping despite them not scheduled at the same time. It's an annoyance but an overall decent app.,3,0,,2019-05-10 17:45:50,"Hi, have you tried changing the settings fro the overlapping events in the main app - views - week? +What are the grid settings on your display? Please note that it may also have influence on the way the algorithm is counting the event field in widget.",2019-05-13 11:49:31,newest,com.appgenix.bizcal +Rose Zaeske,https://lh3.googleusercontent.com/a-/AOh14Ggaq4A8Y8PRkG6sRSi1Elx7XslQGxqs47MJzt0w5A,"Just lowered my rating. Used to work great but now does not properly sync everything in my task list with my Google Calendar on my computer. It will sync new events & new tasks. But if I edit a task (ex. change the date of the task), it does not sync properly w/ my Google Calendar. It used to be that all edits synced & appeared the same in both the app & my Google Calendar, but not now. I have been emailing with the support for this app, but have not yet found a solution.",3,2,2.33.2,2019-05-09 17:06:16,"Hi, we've been investigation the problem on our end and the data is correctly synced. Please make sure the account is correctly set up and the sync has time to kick in.",2019-05-10 10:53:51,newest,com.appgenix.bizcal +Jean Lim,https://lh3.googleusercontent.com/-sjucB6BuJF4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNHr36EnF8uAuWKXmpruq6mjPvuDQ/photo.jpg,"something is wrong with the syncing, I can enter events but they don't sync. The Google calendar will sync",3,0,2.33.2,2019-05-09 13:02:35,"Hi, please check the following device settings: → Advanced settings → Battery manager → Protected apps → please look for BC and add it to the list of protected apps, +→ Apps → Advanced → Battery optimizations, you should exclude BC from being optimized. +On Huawei Lite devices allow BC to auto-start: → Apps → BC → Battery → Autostart",2019-05-10 10:52:26,newest,com.appgenix.bizcal +Billy West,https://lh3.googleusercontent.com/a-/AOh14Gjwaj_0eY2_zL8Fw6DedB4q1S8midAME74jCzVaCQ,"Smart looking Calendar but is unusable for business. My scheduled tasks are all forwarded to current day and wont show up in month view. Widgets don't agree or display the same info. After managing my calendar accounts to only two, app gives me five to choose from..Even deleted Google calendars. A Waste of time. I now use Samsung Calendar widget. One click on task lists... it brings up same beautiful translucent widget theme in month view that agrees in format and my appointments Thank you",3,0,2.31.3,2019-05-08 13:41:30,"Hi, have you tried using the popup in the month view? There you will find all entries of the day also overdue tasks. You can as well disable the 'show overdue tasks today' in the settings. As for the widget do you use text or bars display? Please make sure, it is set up to show the same calendars/lists/birthdays as the main app.",2019-05-07 09:06:37,newest,com.appgenix.bizcal +Peter Bennett,https://lh3.googleusercontent.com/a-/AOh14GhAffvDQiBr8ep1mRSHCsvu-Gm0lQSD9t6iHQLH4A,"Showed promise, but let down by an incredibly stupid copy function.",3,0,2.33.2,2019-05-05 00:11:56,"Which copy function did you use in BC? The drag&drop, multiple copy, copy in detail view or the multi-selection to copy?",2019-05-06 08:26:37,newest,com.appgenix.bizcal +Mohamed Mostafa,https://lh3.googleusercontent.com/a-/AOh14GjxlfGuSvX95Ma4nFsUAEC7HDhv0rSjz2I7XFp07w,I can't seem to create an anniversary or a birthday event like I used to. Please assist,3,0,2.33.2,2019-05-04 07:52:08,"Hi, please find all necessary information below: + https://appgenix.uservoice.com/knowledgebase/articles/883422-birthday-calendar",2019-05-06 08:28:26,newest,com.appgenix.bizcal +Itay Zak,https://lh3.googleusercontent.com/-0rZDwNTEjJY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMV3B9C1YBKHY3dEMtf2BidR8FCNw/photo.jpg,Many critical bugs that don't get fixed within a long period of time. Also many times doesn't sync changes to specific calendar or changes on one event out of a series of events.,3,1,2.33.2,2019-05-03 07:04:12,"Hi, what are the ""critical bugs"", which you refer to? Could you elaborate? As for the sync issues, try removing and re-adding the affected account in your Android OS settings - accounts & sync. This usually solves the sync problems on the device.",2019-05-03 09:27:58,newest,com.appgenix.bizcal +Mohd Izat,https://lh3.googleusercontent.com/a-/AOh14GhQmodw-gdyiDrPmeMwq4SIK6TTp5Bpi4pSQuWLKQ,good,3,0,2.33.2,2019-04-30 16:29:04,"Hi, thanks for the positive feedback. Nonetheless you rated the app with 3 stars. Is there any issue we could maybe help you with?",2019-05-02 11:32:53,newest,com.appgenix.bizcal +Christine Romano,https://lh3.googleusercontent.com/-EDkH3Zwn6I8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJONDx1cmbDuC-W-YvkeozZyRCRJ5A/photo.jpg,still working on use,3,0,2.33.2,2019-04-29 13:25:50,"Hi, feel free to use our Knowledge Base: +https://appgenix.uservoice.com/knowledgebase +or contact our support with any further problems.",2019-05-02 11:33:54,newest,com.appgenix.bizcal +Vilma Liubeckienė,https://lh3.googleusercontent.com/a-/AOh14GjquyjwFqnHopj32jnD1JyjjY8z-iZrvTJ9q2DpwQ,"It has very nice, useful and comfortable look, I used it with a pleasure. Unfortunately synchronization with gmail calendar stopped working. Tried to reinstall this app - it helped for a week and stopped working again.",3,0,2.33.2,2019-04-29 05:47:31,,,newest,com.appgenix.bizcal +Stephanie,https://lh3.googleusercontent.com/a-/AOh14Gg1_wjqrcv72eTlA2TEAewesCrQ2XlmmuLh_R4slg,"EDIT, Paid out GOOD money last year to buy Premium BUT you're STILL begging me to RATE YOU. Well my original 5 stars becomes today's 3 stars. Leave me alone, I rated 5 within minutes of buying !! ~ Old Review ~ I've purchased the PREMIUM version, thank you, the best in the play store. EDIT ~ I would appreciate it if next time you have a one day sale you make it abundantly clear in the actual app otherwise I'll never know. Thank you.",3,6,2.33.2,2019-04-28 20:13:18,"Hi, you refer to the Black Friday sale, which was only on Friday. Sorry to hear that you missed the chance to buy the app on sale, but I can assure you there will be other sales in the future. As for your support request, we couldn't find any ticket under your name.",2018-11-26 12:28:12,newest,com.appgenix.bizcal +Nguyen Quang Minh,https://lh3.googleusercontent.com/a-/AOh14GhYhzRtKqHIoTJ2zkRcHHkkl6QfY1CJtzVIaT0q2g,I purchased the Pro version inside this app. why can't I download the Pro app in google store?,3,0,2.33.2,2019-04-28 15:49:18,,,newest,com.appgenix.bizcal +Aaron Thor,https://lh3.googleusercontent.com/a-/AOh14GicA0lOTsjfa8BjDwzT4W2jrcOE_zSzNOBcYl1ShQ,"been using for couple of years with no issues, till the recent update with ad pushing.. well, can't really complain coz we're using it for free.. but it's too distracting when you're checking your appt during crunchtime. unstalling as a result. reverting back to plain old no fuss google calendar. tks though",3,2,2.33.2,2019-04-27 09:17:19,,,newest,com.appgenix.bizcal +Ève Smith,https://lh3.googleusercontent.com/a-/AOh14GiJrCj9rvPpJmmCl4dj3U0sV6A8ndz-oF5kD3x7RYo,"Great app, but why can't I add an attachment? I need this functionality and although I have been using BC for years, I might have to go to Google calendar..",3,0,2.33.2,2019-04-27 05:10:57,,,newest,com.appgenix.bizcal +Bernhard Haas,https://lh3.googleusercontent.com/a-/AOh14Gidp-obmJonVrBi1Qqqdj94ZznJMRLWVJXj0xi4lf0,"Please add Exchange Tasks! Google-like, automatic scheduling would be a great add on!",3,1,2.33.2,2019-04-26 11:57:31,"Hi, we are always open for feature requests on our user forum :) + +https://appgenix.uservoice.com/forums/280499-business-calendar-2 + +Other users can vote and comment on the ideas there as well.",2019-04-26 13:38:00,newest,com.appgenix.bizcal +James Lasseter,https://lh3.googleusercontent.com/a-/AOh14Gjf5Fh8mEQdej5hwZQAaG718VXmhvpvlDXzgVY6ra4,"this took quite a bit of setting up. , but now it is working again I like this Calendar.",3,0,2.33.2,2019-04-23 06:49:14,"Hi, thanks for the positive feedback. Nonetheless you rated the app with 3 stars. Are there any other problems we could maybe help you with?",2019-04-23 15:06:10,newest,com.appgenix.bizcal +Sidhiq Aziz,https://lh3.googleusercontent.com/a-/AOh14GgZzorg0JDQVmMbOy_YbSt_P2UCIjiqXKzMadbgFA,yy,3,0,,2019-04-18 17:26:06,Can you elaborate on your feedback? Can we help you somehow?,2019-04-23 15:16:08,newest,com.appgenix.bizcal +Daniel Schwerin,https://lh3.googleusercontent.com/a-/AOh14Gj70mqjklf3PUVEqGGcZX79kkJ5tSNU3b5RVkcMsNc,Not sure what happened but now I have to hit the sync button every time to get my calendar to sync. I've deleted the app and reinstalled and still having the same problem,3,5,2.33.2,2019-04-17 21:01:10,Please remember that BC doesn't sync on its own. It uses Android function to sync data and it not therefore not responsible for the sync issues on the device. There might be a general sync problem and it could help to remove and re-add the account for sync in your Android OS Settings - Accounts & Sync.,2019-04-23 15:25:21,newest,com.appgenix.bizcal +Roxey Deojay,https://lh3.googleusercontent.com/a-/AOh14GgghqaRoUe5h44loQ4iWS5hGckSibtPLTR06vgcNQ,wonderful when it works I have written them and never heard back. I bought the full version because I really like the calendar. I love that I can see many of my monthly entries on the full month widget view. I do not love that it crashes a couple times a day and I have to delete and add the widget again... especially since it seems to always happen when on in front of someone making an appointment! smh please fix update4dev: i did not receive email. I just resent email which contains info.,3,1,2.33.2,2019-04-17 17:29:58,Do you use the stock launcher? Please make also sure the app is allowed to run in background and auto-start.,2019-04-23 15:32:59,newest,com.appgenix.bizcal +alias 0,https://lh3.googleusercontent.com/-bjukDRZW-eE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNijb7Dc_TeEL9YbiRHIUFtqR4-jQ/photo.jpg,"Bought the pro a few years ago. However, recently went to a new phone, and now I'm seeing ads, and it doesnt look like I have the pro version anymore. Not sure what happened but jacked up that I paid for the pro, and unable to get the functionality of the pro version without buying it again.",3,0,2.33.2,2019-04-15 05:17:26,"Hi, please see the help article from our knowledge base: https://appgenix.uservoice.com/knowledgebase/articles/908211-i-paid-for-the-app-but-i-lost-the-pro-features",2019-04-17 10:08:04,newest,com.appgenix.bizcal +Josh Taylor,https://lh3.googleusercontent.com/-D6SEgKQT5MM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMZMQvTkk5VihMOcDr9VCUYrkrjSQ/photo.jpg,The last update caused annoying hesitation/delays when working with tasks in task view.,3,4,2.33.2,2019-04-14 17:36:57,"Hi, what do you mean precisely by that? Could you maybe send a video?",2019-04-17 10:09:14,newest,com.appgenix.bizcal +Jeffrey McAllister,https://lh3.googleusercontent.com/a-/AOh14Gh6khFL3jAm3p9bI-Jajlwt8HHZ-HC0otRB0VZjjA,"As far as calendars/task lists go, it's pretty much the same as every other one that's any decent. What sold me on purchasing this app was the crazy customizability of the desktop widgets. However, I'm still miffed about the crappy, out-of-date icons/emotes the devs are using, and that at least one of them all but refuses to get with the beautiful present with them (I use icons to quickly identify types of events on my desktop agenda widget - very useful).",3,0,2.33.2,2019-04-13 01:55:02,"Hi, I don't think anyone ever refused the development of the emoticons. Please feel free to vote for the idea in our forum: +https://appgenix.uservoice.com/forums/280499-business-calendar-2/suggestions/35245417-add-custom-icons-emoticons-to-the-set-of-possibl",2019-04-13 17:09:09,newest,com.appgenix.bizcal +Anjo Draaisma,https://lh3.googleusercontent.com/a-/AOh14Ggcc0PgNmVfCNPwuBS7YMLwUplo635T_1WKIbs3,"Nice calandar easy to use, there's one thing and that is the lack of a good notification on the screen. I mist a few appointments because of that so I deleted the calendar. I really liked it but I need a good warning system!",3,0,2.33.0,2019-04-10 16:47:58,"Hi, there are various settings which influence the reminders. Please take a look here: https://appgenix.uservoice.com/knowledgebase/articles/1827433-why-are-my-reminders-not-working",2019-04-11 08:35:09,newest,com.appgenix.bizcal +Keith Clark,https://lh3.googleusercontent.com/a-/AOh14GhnAegqi7hF0esjkKtdri-YTNCYIQ5lzu8OUofoNw,"Been a user of the app for 5+ years. Has been helpful in managing a busy life. Up until recently would have given 5 stars. Three stars because of poor app support. I think I have finally worked out my issue, but disappointed in level and responsiveness of support. Just hope you never need support.",3,0,2.33.2,2019-04-10 05:42:07,"Hi, sorry you feel this way. However, I verified your tickets and you've been receiving timely responses. What is more, our support is trying to help you solve the sync problems, which are not BC problems in first place. Please remember, that it is you Android device, which is responsible for the proper sync.",2019-04-10 10:48:58,newest,com.appgenix.bizcal +Aswath,https://lh3.googleusercontent.com/-Lvg7dmJ-J4Q/AAAAAAAAAAI/AAAAAAAASrA/AAKWJJP2BRwlZ9uMYDpEV7KTfOJRogKBBQ/photo.jpg,I'm giving it only 3 stars because there's no support for CalDAV tasks sync,3,0,2.33.2,2019-04-09 19:48:55,Currently it is only possible to sync tasks with Google. We hope to implement our own functionality which would help us to sync tasks with other providers in the future,2019-04-10 10:55:26,newest,com.appgenix.bizcal +Terry Hooper,https://lh3.googleusercontent.com/-HLP4f_LdnA4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN7SZjEdovjGn4-eCeRhhG1S39w7w/photo.jpg,I've been using BC1 for years and I've installed BC2 on at least 2 seperate occasions. BC2 is so not as good as BC1. The overall look makes it look like a cheap childs game. The functionality became nonsensical and it made going back to BC1 such a pleasure. I can't imagine what the developers were thinking when making such changes. After using BC1 for so long I had high hopes for its future development but alas it not to be. These days I'm looking elsewhere.,3,0,,2019-04-07 23:17:13,"Hi, please consider that BC 1 and BC 2 are two separate apps with different codes and should be treated so also in rating. Do you have any technical issues with this app?",2019-04-08 12:10:41,newest,com.appgenix.bizcal +JP timetotic,https://lh3.googleusercontent.com/a-/AOh14GhcdlBPSdPzXrmYf-l_0xxT9wxlDWDSt0BHl3VNxg,very useful. can't get the tasks to sync with outlook tasks though. I only see local tasks. would get 5 stars if this was working,3,2,2.33.2,2019-04-07 17:05:33,"Hi, currently it is only possible to sync tasks with Google. +We hope to implement our own functionality to sync tasks also with other provides. However, since this is a very complicated feature it may still take some time until we can implement it.",2019-04-08 12:12:16,newest,com.appgenix.bizcal +Kristof Petho,https://lh3.googleusercontent.com/a-/AOh14GgLNGSPzqBDwfyJr9s0slWTtBbDjCRgqjvV_oXRSw,"Great and powerful app, except for one thing: location doesn't work when entering addresses. Whenever I type an address with house numbers, the location recommendation list never contains the house number...",3,0,,2019-04-05 05:23:22,Can you send us some screenshots?,2019-04-05 11:00:03,newest,com.appgenix.bizcal +Pavel Šmak,https://lh3.googleusercontent.com/-f7jO4BgewRk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNdCTp_bWnBQ1_OGEAtWJxYDlWv_Q/photo.jpg,"Used to be very good, recently I'm experiencing disappearing of events and random switching of visible calendars.",3,4,2.33.2,2019-04-03 12:08:39,"It might be due to a problem of Google. We've contacted other calendar app developers and they are experiencing the same problems. It especially happens right after the sync of events created with no or low internet connection. That is why, we suspect that there must be something wrong with the Google sync, which we unfortunately can't influence.",2019-04-04 10:58:53,newest,com.appgenix.bizcal +Eric Im,https://lh3.googleusercontent.com/-1ZJfYkw-Q9A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPASTBn05qXnHSxWLUf2QzlWrYtvQ/photo.jpg,Great app and so far no issues using it,3,0,2.33.1,2019-03-27 08:57:58,"Hi, if you have any problems please feel free to check our Knowledge Base: +https://appgenix.uservoice.com/knowledgebase",2019-03-27 10:27:17,newest,com.appgenix.bizcal +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,A new isdue has cropped up. When editing a multiday event that you want to extend 1 more day you must include two additional days in order gor the app to show the one additional day you wish added. Most strange issue,3,1,2.33.1,2019-03-17 05:16:49,"Hi, this sounds unusual. How do you edit events? Ca you send us some screenshots and your device information( so that we could test it accordingly)?",2019-03-20 11:50:02,newest,com.appgenix.bizcal +Alexаnder,https://lh3.googleusercontent.com/-Ik-aAsEcMGI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMxGM966ERctDmahGGddWl3ah5u9g/photo.jpg,"Purchased thr app as a replacement of the Simple Calendar Widget, but it has no advantages over it",3,0,2.33.1,2019-03-14 09:52:39,Do you experience any technical fails of the app? What are the functions that you look for?,2019-03-14 10:20:48,newest,com.appgenix.bizcal +Airidas Petruitis,https://lh3.googleusercontent.com/-NX2Nn640INo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOQ_zi5Exet_aqXQnh2PjTE5yDELA/photo.jpg,"Kartais kalendorius pastringa,neparodomi suplanuoti darbai,užduotys",3,0,,2019-03-07 10:38:29,"Hi, do you refer to the app or the widget? What is your standard view? Is the app allowed to auto-start/ run in background?",2019-03-07 11:46:17,newest,com.appgenix.bizcal +Xubile Xubile,https://lh3.googleusercontent.com/a-/AOh14Ggr0utyZH0DAUM69-bukfiPwcOc6lU6PQLknVS8nQ,Random ad pop ups that distracts while pulling up a meeting in a hurry. Doesn't parse contacts from email meeting invites into names you can easily add and remove. Is pro worth $6? A little too high imo but developer is entitled to sell at whatever price. I find Google calendar works fine for my needs.,3,0,2.33.0,2019-03-05 18:06:08,"Hi, what popups do you refer to precisely? You can add attendees as well as link contacts locally:https://bit.ly/2Thq1PT +As well as use the auto-suggest function: https://bit.ly/2VIkM8J +Please note, that the free version is fully functional and you can use it completely free of charge",2019-03-06 08:46:53,newest,com.appgenix.bizcal +Paradoxtal Pythons,https://lh3.googleusercontent.com/a-/AOh14Gg3gBJDebJD_lWWjdQCaYMj42EdClhs_GVDwNiAMA,Events Disappear,3,0,2.33.0,2019-03-04 21:26:54,How do you add events? Do you sync your calendar or use it only locally? Is the sync working correctly/ do you have stable internet connection? Is the calendar storage working correctly on your device?,2019-03-05 10:40:14,newest,com.appgenix.bizcal +Shawn Pringle,https://lh3.googleusercontent.com/a-/AOh14GjxQetAIRZAC03TuQdrI9mj69kmbah0IHaqcafk,"Authors: Please stop associating every extension with this app. It's annoying this pops up when I try to open a jar file. [Edit] This means that excluding certain very popular file extensions (svg, pdf, jpg) when a file is opened from the files app, business calendar opens. This means if I try to open a Bz2 file, a AndrOffice file (odt) or a Jar file (jar). It's strange for me that Open Office files wouldn't open in AndrOffice but instead Business calendar opens instead.",3,1,2.33.0,2019-02-20 13:21:06,Is it possible that you accidentally set BC as standard for the action? Try clearing the defaults fro actions in you Android OS settings and you will be able to choose the wanted app. We don't add the app as option. It is done by your Android device.,2019-02-21 09:45:57,newest,com.appgenix.bizcal +Galia Karamycheva,https://lh3.googleusercontent.com/-N60kc0tZp2M/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOO6huiW7HEH_-f0o8JlZw5dB7XXQ/photo.jpg,"Starting maybe in September I've started having issues. I will add an event to the calendar (which is synced to google), but within a few days the event will get cancelled (w/out notice of course). I can appreciate that the problem stems from Google sync. Nonetheless the problem is serious as it has to do with the chore use of the application. Anyway, I personally still use the app as the visualisation is still way better than Google's. So for me that still beats the major con.",3,2,2.33.0,2019-02-18 19:57:42,"Please contact our support ans we will tell you the workaround. +We've contacted other calendar app developers with the same problems. It especially happens right after the sync of events created with no or low internet connection. That is why, we all suspect that there must be something wrong with the Google sync, which we can't influence.",2019-02-19 10:09:38,newest,com.appgenix.bizcal +Scott Hansen,https://lh3.googleusercontent.com/a-/AOh14GiJFMf-s1T6rJTxcDPsm7sduC2oBAfVHFOSBdGC_Ac,its ok works for me,3,0,2.33.0,2019-02-17 19:35:16,"Hi, thansk for the positive feedback. Nonetheless you rated the app with 3 stars. Is there maybe any issue we could help you with?",2019-02-18 15:04:34,newest,com.appgenix.bizcal +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Happily used for years, unfortunately my events have been disappearing lately for no reason, so I will be uninstalling.",3,0,2.32.2,2019-02-14 00:34:25,"Hi, how do you add events? Do you sync? Do you always have a stable internet connection when adding events?",2019-02-14 12:16:14,newest,com.appgenix.bizcal +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Repetitive tasks, by completion date, buggy. Been reporting it since 2017Jan21, 0759 hrs (MT). One rely asking how I sent in the concern (which I tried to reply to and can't), since then nothing. Great app, terrible customer service...",3,4,2.33.0,2019-02-13 10:27:02,"Unfortunately I cannot verify the conversation history with you on the given date since we don't have your name or email to refer to. Could you please tell us the email you contacted us, so that we could verify it? Or try contacting the support (help & feedback- send feedback) again?",2019-02-13 14:12:31,newest,com.appgenix.bizcal +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,How to integrate Toodledo tasks? Any help would be appreciated,3,0,2.32.2,2019-02-06 02:21:23,Currently it is only possible to sync tasks with Google. We hope to implement our own functionality which would help us to sync tasks with other providers in the future.,2019-02-06 13:58:01,newest,com.appgenix.bizcal +Clay,https://lh3.googleusercontent.com/-ZLjqrnMbERo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMvf183xZYLFaKc8Eqpg_bJVW6NMw/photo.jpg,"After 4 years, UI seems dated",3,0,2.32.2,2019-02-05 18:46:27,"Please feel free to post your suggestions in our user forum + +https://appgenix.uservoice.com/forums/280499-business-calendar-2 + +where other users can vote and comment on them as well and we might consider it for the future.",2019-02-06 13:58:31,newest,com.appgenix.bizcal +Mitchell D,https://lh3.googleusercontent.com/a-/AOh14GhxZvO0M2FHS3hSM3Kkb9bQ-2GQwxk8yk2d2Q4p,"Its nice enough app, but, synchronizing between the tablet and phone should be alot easier and more reliable than what it is?!!",3,0,,2019-02-04 13:54:01,"Hi, please consider, that BC doesn't sync any data on its own and cannot be therefore responsible for the sync issues you may experience on the device. Have you set the devices correctly up? + +https://appgenix.uservoice.com/knowledgebase/articles/891003-sync-across-devices",2019-02-05 10:49:11,newest,com.appgenix.bizcal +Art Leach,https://lh3.googleusercontent.com/a-/AOh14GgyGeRCJaKWUYMdlPLLTYqbl2n77Swwn5S8gw_Ieg,"Used it in the past and wasn't too happy with it. Tried it again, and now I have no idea why I didn't like it before. I especially love the integration of the to do /task list within the app. I use the Agenda view on the widget and couldn't be more pleased. As the title says, I love it! Several years later and still living it. Wouldn't think of changing it for anything. Rating dropped from 5 to 3 stars. Too many features removed with recent updates.",3,11,2.32.2,2019-01-31 22:37:06,"Hi, we certainly didn't remove any function. Is it maybe possible that the pro license got locked?",2019-02-01 10:34:30,newest,com.appgenix.bizcal +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"the widget keeps distorting itself. resize fixes it, but not for long. edit: monthly widget, nova launcher. Nova launcher has worled great for me trough several Android versions. I'm not going to the stock one. your widget was also not working in android 8+nova. I upgraded a few days ago.",3,0,2.32.2,2019-01-30 10:13:05,"We know for a fact, that Nova has various issues. Nonetheless we will test it once more to make 100% sure. Please send you device information ( help & feedback - send feedback).",2019-01-30 10:35:19,newest,com.appgenix.bizcal +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I love BC1 and BTasks, but am disappointed that BC2 will not bring my tasks from BT and the new integrated BT syncs only to Google tasks but no longer my Toodle-Do account. Deal breaker for me! Why would you break the functionality with your own BTasks app???",3,0,,2019-01-29 02:51:58,Currently it is only possible to sync tasks with Google. We hope to implement our own functionality which would help us to sync tasks with other providers in the future.,2019-01-15 12:00:42,newest,com.appgenix.bizcal +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Not so great! Add birthdays and they disappear as soon as I save. Used to love it, now looking for another love.",3,0,2.32.2,2019-01-24 18:58:10,"Hi, are the accounts for birthdays activated in calendars & task lists -> birthdays? Does the app have the contacts permission granted?",2019-01-25 11:51:08,newest,com.appgenix.bizcal +Aaron Misner,https://lh3.googleusercontent.com/-9RUAOa5OVWk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNZ-v59i2qEqoHrkxBFCT-lf9adew/photo.jpg,"I have been using this app for years, but I am thinking of trying a different app. The issue that I have, is that doing seemingly simple tasks is overly complicated. For example I just want to make a personal and a work task list that is local to my phone. Doing so has proven very complex and often I will create a task only to realize it has defaulted to my gmail account rather than the local list I intended. As a user it's frustrating, the reason I use this app is to streamline organization.",3,0,2.32.2,2019-01-19 17:38:44,"Hi, do you choose a correct list, to which a task should be saved? What is your standard list set in the settings - standards... - tasks - list?",2019-01-22 12:05:58,newest,com.appgenix.bizcal +W.D. Mulholland,https://lh3.googleusercontent.com/-Et0U16VXQms/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOYOZqLH11YaG4W-5J3NvGC7JfWuA/photo.jpg,"It WAS really great until I bought my Samsung S9 (was using an S6 prior), and when I transferred the Business Calendar program to the S9 the calendar's Search Function no longer worked. I ask you, how useful is a ""business cakendar"" without a ""Search Function?""",3,2,2.32.2,2019-01-19 05:49:19,"Hi, this sounds unusual. Do you use search in view or the one in menu (see link below)? What happens precisely? Are all necessary calendars activated for preview? + +https://appgenix.uservoice.com/knowledgebase/articles/884718-search",2019-01-19 10:38:03,newest,com.appgenix.bizcal +My android account,https://lh3.googleusercontent.com/-bxQ80MJV5xM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMphatElm3CNsfuvos_SZ_xa4T8kw/photo.jpg,"Great app, easy to use and convenient. I love the vertical scrolling in the month view. But it's a shame that it doesn't implement the functionality that allows to share my calendar events such that only a 'busy' status is shown and not the event details (I use a nextcloud agenda and sync with davx5)",3,0,2.32.2,2019-01-17 17:19:03,"Hi, it is not possible in BC as BC doesn't sync any data. It should, however, be able to share the calendar from within the Nextcloud online calendar and sync it to your Android devices.",2019-01-18 16:15:02,newest,com.appgenix.bizcal +Jo Zh,https://lh3.googleusercontent.com/a-/AOh14GiCuBngHaNcGA8ks_BmAxMWsE6McfOmss4OlP3-jGw,Add seamless integration for office 365 accounts..,3,0,2.32.2,2019-01-14 14:57:03,"Please remember that BC doesn't have its own sync abilities and uses only those provided by Android. Did you set your account correctly up? +https://appgenix.uservoice.com/knowledgebase/articles/955654-i-see-my-outlook-events-in-the-outlook-app-but-no",2019-01-15 11:55:21,newest,com.appgenix.bizcal +Charles Fournier,https://lh3.googleusercontent.com/-bbthcbjeFAs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPEOjf_Mj_RUPDT-8nsmfXOhiothA/photo.jpg,would be nice to once you delete one thing that it would not ask if it's the series.,3,0,2.32.2,2019-01-09 03:24:45,"Hi, it is possible. Please take a look below: +https://appgenix.uservoice.com/knowledgebase/articles/359224-i-would-like-to-edit-or-delete-a-single-event-of-a",2019-01-09 10:41:11,newest,com.appgenix.bizcal +Mars L.,https://lh3.googleusercontent.com/a-/AOh14Gg072uxOZOF1rfiCgnxT6kfwwSvpYWqYOW41Yycqw,"smooth interface, but i didnt see where i can set a specific notification per schedule on my calender. it has one sound for all notifications in the calender.",3,0,2.32.2,2019-01-04 16:34:49,"Hi, you can do it in the calendars & task lists - pencil icon :)",2019-01-07 11:24:01,newest,com.appgenix.bizcal +Sophie Beckett,https://lh3.googleusercontent.com/a-/AOh14GgzfeaCUGJ90eqf4SdvrR4BN00uDox8gwgejp7tPg,Keeps either not loading the widget/app and also occasionally deletes random dates! Impractical! Dunno why this is so highly rated to be honest,3,2,2.32.2,2018-12-26 16:53:08,Which widget do your use? How do you add events? Do you always have a stable internet connection?,2018-12-28 17:17:43,newest,com.appgenix.bizcal +Nick Nack,https://lh3.googleusercontent.com/-TRdE5xmvcQ8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNQixG7hLv2nMbrBDJp5t4jeyUfIw/photo.jpg,"Displaying the ""Contacts"" calendar of every Google account cannot be deactivated in Calendar & Tasks list (it re-activates immediately).",3,3,2.32.2,2018-12-23 15:47:22,"H, is it possible that you have the calendars activated in the stock app?",2018-12-28 17:26:19,newest,com.appgenix.bizcal +",Jesus Carrasco",https://lh3.googleusercontent.com/a-/AOh14GhFZyjA-eQhSfDPEfTL-_Rt50FKUy34jhWI7QlH6w,Why can't you add an attachment?,3,0,,2018-12-23 14:29:30,"Hi, the function is not supported yet, but we are working on it.",2018-12-28 17:26:36,newest,com.appgenix.bizcal +Brian Vinson,https://lh3.googleusercontent.com/a-/AOh14GgpwTgLImRCGJQ1M38hJQLgAEYe7ix3UMKU1fZD7g,you have to select for a reminder! that should be standard!,3,0,2.32.1,2018-12-21 16:14:58,"It is, provided you set it up in the settings - standards for new events - events - reminder",2018-12-28 17:40:28,newest,com.appgenix.bizcal +J V,https://lh3.googleusercontent.com/a-/AOh14GjiMLYvuRCge_8mEpPOQ3h4-lGbq57oO49anpPMCqU,"This was the absolute best calendar app out there for anyone placing productivity at the top of the list. Downgrading because recently the location autofill function is not working very well. I've had to rely on other calendar apps to add appointment, meetings and events.",3,0,,2018-12-20 20:11:28,"Hi, please contact our support and we will tell you what to check/setup.",2018-12-21 11:21:51,newest,com.appgenix.bizcal +Scott Taylor,https://lh3.googleusercontent.com/-4DefxEtelFs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOrmMS2b_fFcN2EU2ETP1ijct2ZHg/photo.jpg,Very usable. Occasional technical freak outs. Some shortComings in navigability and manageability,3,0,2.32.1,2018-12-20 16:08:48,"Hi, what are the problems that you experience? Could you elaborate on that? Maybe we will be able to help?",2018-12-21 11:25:48,newest,com.appgenix.bizcal +Josh Barling,https://lh3.googleusercontent.com/a-/AOh14GgxVz26k8_l-hN9XXOdqI0werZmx-posnsLEAWP,the app looks great. alot of function. it wouldn't show me any shared calenders. fix that and this is a top app,3,0,,2018-12-20 14:28:13,"Hi, can you see those calendars in the stock calendar app preinstalled on your device? Please remember that BC doesn't have its own sync abilities and uses only those provided by Android.",2018-12-21 11:34:59,newest,com.appgenix.bizcal +Marin Muštra,https://lh3.googleusercontent.com/a-/AOh14GiytiaR3ezHRnpPmLRDRI6_WAhauVaYUKy2metKLg,"Would be nice if you could attach image (or some file) to task and event. Update: More than a year passed, still no progress on image/file attachment feature. Although app is getting certain amount of updates, feels like it's time to check out the competition.",3,0,2.32.1,2018-12-20 06:37:03,"Hi, we are still working one this feature. We know that the time has passed, but we had to make sure the feature works reliably and will not hurry to publish an unfinished functionality. I hope you can understand that.",2018-12-20 13:24:03,newest,com.appgenix.bizcal +A. D.,https://lh3.googleusercontent.com/-dQzrMJ6Bx1w/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMF9UDSXjxzOhzNLDbc0go9E3CotA/photo.jpg,Why so many tracking scripts? One or two should be enough. No I'm not a free user. Dark themes are underwhelming. Contrast not good enough in them.,3,0,2.31.3,2018-12-19 02:52:53,"Hi, the scripts are used for the personalized ads only in the free version. Because the pro is activated in the free app the library remains, but it will not be initialized at all e.i. no infos are sent. + +As for the themes have you already tried changing the colors of the app?",2018-12-19 16:04:43,newest,com.appgenix.bizcal +Mislav Komerički,https://lh3.googleusercontent.com/a-/AOh14GjTvCaHJ9QAAyo0EIjCmeKKpjg7cWRgan42xYccIg,"EDIT: just switched to s new phone. In the process I lost reminders and recurrence for my tasks! I have to set it up all over again! That's awfull. :/ Next to that, there are some minor bugs that developer is not willing to fix.",3,8,2.31.3,2018-12-09 15:42:06,"Hi, do you sync your tasks? If so your problem is caused by the sync limitation of Google Tasks and not by BC. Please note that GT doesn't support the categories and that is also why it is not syncing them across devices.",2018-12-10 12:47:16,newest,com.appgenix.bizcal +Ellen Smolko,https://lh3.googleusercontent.com/a-/AOh14GgrsAYZ-1u1eDf4crnWHrJ5ekKYn53lV17dnGDBCw,The current release doesn't sync appoinments i make in the app to my Google calendar. It only copies the online calendar events to the app.,3,0,2.31.3,2018-12-09 06:51:45,"Does the stock calendar app have the same problem? If so, it might be a general sync problem and it could help to remove and re-add the account for sync in your Android OS Settings - Accounts & Sync. + +Please remember that BC doesn't have its own sync abilities and uses only those provided by Android.",2018-12-10 12:50:14,newest,com.appgenix.bizcal +Stefan Froehlich,https://lh3.googleusercontent.com/a-/AOh14GhCm1xkjqlrZaSWOR47Y7Xi4YQlqNO5xgIdss8Gaw,"Nice calendar app. Using it with several active sync calendars. However, intermittendly it happens that some or all events show up twice. Only solution is to remove the account and recreate it. It's annoying when you have more than one calendar account. We have four...",3,0,2.31.3,2018-11-27 09:54:08,"Does your stock calendar have the same issue? + +Please remember that BC doesn't have its own sync abilities and uses only those provided by Android. Therefore it cannot be responsible for any sync issues you may have on the device.",2018-11-28 13:55:02,newest,com.appgenix.bizcal +Alan Baumgart,https://lh3.googleusercontent.com/-BuCsLQpSGzs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJND4mDzxIfMXt3WratDIZ1cClhPMQ/photo.jpg,"Functional, not beautiful. Nothing particularly advantageous compared to other calendar apps.",3,0,2.31.3,2018-11-24 17:23:56,"Hi, have you already tried changing the theme and background colors? This way you can adjust the app to your liking.",2018-11-26 12:50:25,newest,com.appgenix.bizcal +Will W,https://lh3.googleusercontent.com/-unA_HWqt3R8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMgC2ngitT9cat8AtgjeKSbnRKJ2A/photo.jpg,"I paid for this app, now they have forced ads on me? I would like a refund",3,0,2.31.3,2018-11-20 17:23:17,"Hi, in the pro version there are absolutely no ads. Are you sure the pro was correctly unlocked? Have you received the confirmation from Play Store?",2018-11-21 08:42:40,newest,com.appgenix.bizcal +Amanda Outman,https://lh3.googleusercontent.com/a-/AOh14GjZqIcPzAhuNCLn3hIVoVZ9CPbMcN39vYNSZdZgLW8,"I love the widgets for this app but there are some synching quirks that drive me nuts ?!!? Not sure if it's the app or the stock Google calendar but whichever it is, it's not a good combination !",3,0,2.31.3,2018-11-15 18:57:59,"Hi, what are the problems that you experience'? Can you contact our support and we will try to help you solve the issues?",2018-11-16 12:30:45,newest,com.appgenix.bizcal +Regina Allanby,https://lh3.googleusercontent.com/-Tq-l6D4n2hY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNrf_Bkq3F1Lco6upAJw3iwlzT2UA/photo.jpg,Would love the calender to automatically fill in details of invitations and interested or going to an event,3,0,2.31.3,2018-11-12 11:12:13,"Hi, what do you mean precisely by that? Facebook sync? Could you elaborate?",2018-11-12 17:42:53,newest,com.appgenix.bizcal +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,I really like the app but there is one feature that is to do but which syncs with Microsoft account use the Microsoft to do list because it sync very well with my laptop and also because it has the black theme. I would also prefer to have business calender on the web,3,0,,2018-11-10 06:07:05,"Currently Business Calendar is only available for Android devices. +We consider developing a desktop version, but at the moment we don't have solid plans. + +Right now the only possibility to view and edit your tasks/events online is to synchronize them with for example Google/Outlook and do it in th Google Web Calendar/Outlook online.",2018-11-12 10:50:08,newest,com.appgenix.bizcal +Violet Lara,https://lh3.googleusercontent.com/a-/AOh14GhzOAkP8Nelzglj5FOnxIhEB0pJl-X3MdwwnFx21A,You should have the choice to swipe left and right for different months and just up and down Also change the word title event colors on a particular day to make it stand out.,3,1,2.31.3,2018-11-08 19:58:49,"Hi, the both swipes are available in the Month view. When you swipe vertically you go to previous next months. When you swipe horizontally over the day, you will open the multi-day view with the selected days. As for the title which view do you refer to? Can you send a screenshots?",2018-11-09 10:12:41,newest,com.appgenix.bizcal +ainsfield.infant School,https://lh3.googleusercontent.com/a-/AOh14Gh_VSWUq2tqrLv4ZA6_YEH9F-OTPwSjQ1B3kOM6iQ,Still testing,3,0,2.31.3,2018-11-07 03:01:00,If you have any questions don't hesitate to our Knowledge Base: https://appgenix.uservoice.com/knowledgebase,2018-11-07 09:57:33,newest,com.appgenix.bizcal +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Not happy having flashing ads at the bottom of the calendar, very distracting",3,0,2.31.2,2018-11-06 08:58:17,"Hi, please consider that the ads are necessary to be able to further maintain and develop the free version of the app. The pro version is completely ad free",2018-11-06 09:50:55,newest,com.appgenix.bizcal +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"pretty cool.. its features are much better than the previous version. However, the widget shows up too many Google Play apps pop-up advertisements, which is sometimes really irritating and takes my time for schedule planning.. (I saw a review from the app developer.. maybe, that problem could have been coming from other sources like my phone or google play app itselft, or the like.. Sorry for the comment that I have left even when I was not sure.. I thought that way because a lot of popups have ben shown when I was using this app.. Sometimes Gallery or Photo app on my phone (my phone is cheap but compact) even sometimes show up ad.. maybe that could be the real cause of the problem..)",3,1,2.31.3,2018-11-04 11:21:04,"Hi, the behavior is for sure not caused by BC. Even in the free version of the app there are no popup reminders not it is possible to open the photo apps.",2018-11-05 10:16:06,newest,com.appgenix.bizcal +Sylvan Agustin,https://lh3.googleusercontent.com/-Kb8k3Xng2l4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNRIEAEOwLjHVkuFspcxyW2i2qsBg/photo.jpg,"This app could have been the best, I uninstalled it due to the widget error, after restarting the phone it doesn't load. I liked it but if it doesn't perform well on my need ""widget month calendar"" it's a nah.",3,0,,2018-11-03 16:15:12,What is your launcher? Have you tested other launchers as well?,2018-11-05 10:27:27,newest,com.appgenix.bizcal +R. Taylor,https://lh3.googleusercontent.com/a-/AOh14GigF8BnS7N8ZoHq3gL0OvmJR7Isb0tbrHcCCPBjnQ,Cool platform,3,0,2.31.3,2018-11-02 13:24:23,Thank for the positive feedback. Nonetheless you rated the app with 3 stars. Are there maybe any problems we could help you with?,2018-11-05 10:28:19,newest,com.appgenix.bizcal +edsdame,https://lh3.googleusercontent.com/a-/AOh14GhGg0avi-KZkHUGk-LtHhvme1pSAqHslNxcyt9cBQ,"Can't put a recurring ""every x weeks on a certain day"" not to Monday. No matter what I set and save, no matter if I try to modify one, it is always only Monday. If I choose two days, the second can be any other day. Please fix this. Also, I can't seem to be able to modify a recurring ""every 2nd day of month"" tipe of event chain.",3,3,2.31.3,2018-11-02 05:41:22,"Hi, which repetition rule do you use? Both options are available, you just need to set the repetition rule correctly. Please contact our support and we will tell you how to do it.",2018-11-02 13:23:10,newest,com.appgenix.bizcal +John Medders,https://lh3.googleusercontent.com/a-/AOh14GiwGEkMCWNsoNbpnaV0jm3LQRmTE75VAShOu4945w,Really like this calendar app and would recommend to other users. Though it really does need SMS support for sending automatic reminders to event attendees. By that I mean I would like to be able to create an event and add an attendee. When the event reminder comes round I would want the invited attendee to be sent a SMS text message reminding them in advance of the event. That functionality would make it a 5 star app for me.,3,12,2.31.3,2018-10-25 21:27:20,"Hi, you can already do with with the link contact function: +https://appgenix.uservoice.com/knowledgebase/articles/880713-link-private-contact +The attendee function is based on email accounts and the information is send per email. Please see here: https://appgenix.uservoice.com/knowledgebase/articles/429996-using-the-create-edit-view",2018-10-26 09:10:12,newest,com.appgenix.bizcal +Hardeep Singh,https://lh3.googleusercontent.com/a-/AOh14GjfE6RoOLzmRq05NyPCDRYVI_vZFLwVsTO4G7G6,"The widget in one line mode could shorten the time spans so they don't take as much space. Also it doesn't seem to sync well between multiple phones with tasks. *10/22/2018 edit* Not sure how else to respond to the dev but it's task syncing not calendar syncing that's the issue. *10/23/2018 edit* both devices have task syncs active, and are just the main google account",3,0,2.31.2,2018-10-24 06:18:48,"Hi, have you tried re-logging in with the account fro task sync? Please make sure to back the non-synced data up before you do it.",2018-10-23 10:21:39,newest,com.appgenix.bizcal +Adrian,https://lh3.googleusercontent.com/-A9Q-0bFoFuQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPHbmr15ygeLIDh2tovc0GjjtCqTw/photo.jpg,"I like this app, because it fits well in my daily routines and offers very many settings, especially regarding appearance. It has some basic design flaws and misses some easy opportunities, but all in all it is a valuable application for my personal time management.",4,2,2.37.9,2020-03-22 14:28:34,,,most_relevant,com.appgenix.bizcal +Rob Zerr,https://lh3.googleusercontent.com/--FKfqKpE3qU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNbw8k9cLdm1kil3U9aBLo0zRngXw/photo.jpg,"Was my goto calendar for years. Easy, intuitive, configurable. It's issue for me is using the Android calendar sync vice directly syncing with Google. I need to have access to historical and distant future events. If the developers can change the sync option, I'd come back in a heartbeat and rate it a 5! **Just noticed reply ... Yes I did try this work around and others from my research. Did not work unfortunately. Still unusable for me. Sorry.",4,4,2.37.3,2020-01-18 16:51:34,"Hi, have you already tried this workaround? + +https://appgenix.uservoice.com/knowledgebase/articles/903366-i-am-not-able-to-see-past-and-future-events-in-bc2",2019-01-04 13:00:43,most_relevant,com.appgenix.bizcal +Tango Magico,https://lh3.googleusercontent.com/a-/AOh14Gg57ldrO9y52nwUjwGT4G0AN9fbA-CKVvn-Jx3o2Q,"It's user-friendly and can be personalised very efficiently, but I am currently having issues with it overlapping with the built-in Google calendar. It didn't use to. I keep that for personal use and this one for business, obviously. But now they both sync and show the same things, whichever calendar I select, so I cannot use them differently. I hope there is a way around this, otherwise I will have to download a replacement.",4,5,2.37.9,2020-02-03 12:28:06,"Consider that BC, Google and your stock calendar use the same calendar storage on your device. This means they show the same data and it is not possible to use them separately. This is the standard Android behavior. For that reason we built Favorite Bar and calendar categories in BC, which give your the possibility to quickly toggle the calendars.",2020-02-04 12:18:14,most_relevant,com.appgenix.bizcal +Aaron Leung,https://lh3.googleusercontent.com/a-/AOh14Gj-sSBL8HQLEPy7w9UfRCxDOcUndZXs5gm7nMef5A,"Have been using the old Pro version on all my previous devices for years and liked it very much. Just started to use this new one not long ago. It has a more contemporary design, simplified and streamlined options, but the change in drag n drop in weekly view costs it a star.",4,5,2.37.9,2020-03-25 01:38:55,"Hi, the drag and drop is integrated in BC 2: https://appgenix.uservoice.com/knowledgebase/articles/880773-drag-drop +Did you verify all the system settings already? If the app cannot run in the background, because the system is blocking it, it may take a longer while until is actualized. FYI:https://dontkillmyapp.com/xiaomi",2020-03-12 08:57:27,most_relevant,com.appgenix.bizcal +Zach Hall,https://lh3.googleusercontent.com/a-/AOh14GgOYfl-bQ11BeEhxrUAN_plRcxhWlOK0VmmgAY1QQ,"I like this app quite a bit. It has more useful features compared to the normal Samsung calendar app. It does not, however, play well with Google. In that I can't ask Google what my agenda is and have it pull info from this app. Lame. Hence 4 stars only. Not sure if that's a Google thing or a thing for this app. Otherwise I like it a lot.",4,9,2.37.9,2020-03-03 15:39:02,"Hi, we have absolutely no influence on the text format in the Play Console. The link must have automatically be deactivated. Please contact our support directly and you will receive all information about how your Android device works.",2020-03-03 11:10:26,most_relevant,com.appgenix.bizcal +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I have been using the PRO version for several years now. It has many nice features and sophisticated calendar widget with many customization options. Sadly, lately there have been problems with task synchronization. As I mostly use tasks/todos for organizing and use multiple devices, this is a big issue for me. While developers are responsive and say it have fixed the problem it still persists at least for me.",4,1,2.37.4,2020-01-20 05:09:12,,,most_relevant,com.appgenix.bizcal +Gergely Ó.,https://lh3.googleusercontent.com/a-/AOh14GjvzO0yulgtYEapVqu6N_bPghtWbLH4pJs7v7MAsw,"Dear Team! I've been using this app since ages and I'm mostly satisfied but with Android 10 I lost the pop-up notification feature in the app. How can I restore it? Without pop-up notifications, only 4 stars. 😔 Thanks in advance! Reaction for the developer's comment: Even if I click on the notification in the status bar, it doesn't open pop-up but the event itself. And anyhow, pop-up notification is crucial for me, otherwise I simply miss the notifications from the calendar. Any ETA? 😔",4,2,2.37.7,2020-01-28 12:19:58,"Android 10 devices don’t allow to open popups when an app isn’t actively used. That is why we can’t show the reminder popups automatically anymore. + +If you have multiple reminders in the status bar, you can click on them to manually open the popup. + +We are sorry for the inconveniences but this is beyond our control!",2020-01-28 12:07:55,most_relevant,com.appgenix.bizcal +Peter Hammerton,https://lh3.googleusercontent.com/-42CS3cOYT6k/AAAAAAAAAAI/AAAAAAAAAEU/AAKWJJMxVGmX8b2JrlRIgSbEaEOU5GuiRA/photo.jpg,"One or two minor hiccups when inserting advance appointments which resulted in a difficulty with getting the diary back to 'todays' date. I had to turn the phone on and off in order to correct this. Also had problems with the app widget failing to download after the phone has been turned on. Other than those issues the diary has been great. I would love to have more options to customise the appearance of the app, eg background or page colour options only work when you insert an appointment.",4,9,2.37.9,2020-03-06 06:41:41,,,most_relevant,com.appgenix.bizcal +Scott Lee,https://lh3.googleusercontent.com/a-/AOh14Gj0KmQQeUkPux8h-xIII7p6V85_Cgk2TWceh4Y6CoQ,"I really love this Calender App. Its pretty overwhelming at first but give it a few tweaks and boom, it wonderful. My only complaint is that I can't add it to my family library. Please allow me to do this and I'll rasie my review to 5/5 stars. Overall.. I would recommend this!",4,0,2.37.4,2020-01-17 19:29:09,,,most_relevant,com.appgenix.bizcal +Corey S,https://lh3.googleusercontent.com/a-/AOh14Gh4GYeGVOIUeZyThXVHBxAXUxxOp3ktfeWHO79O2m0,its a good calendar! . Definitely bettwr then most and if they keep up Ill continue to use it. They also are constantly improving the app I'm having difficulties getting it to open on the correct day I'm sure it's just a setting I can't figure out the app keeps opening on a day for days from the current day,4,2,2.37.9,2020-02-24 05:53:18,"Hi, what are the problems with event editing, that you experience? + +The attachments will be added in the future.",2018-12-19 13:27:32,most_relevant,com.appgenix.bizcal +Steve Easley,https://lh3.googleusercontent.com/-Jw5wx5dyaNE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPsxycL6xBCnx_PqHwBOKlExkSz-Q/photo.jpg,"I especially like the fact that Business Calendar 2 works with Akruto Sync to synchronize my calendar and contacts between PC and Android phone, without putting anything on the cloud. Occasionally, Business Calendar 2 and Akruto Sync will duplicate many calendar events, making work for me to delete the duplicates.",4,0,2.37.4,2020-01-18 15:10:19,,,most_relevant,com.appgenix.bizcal +Bob Soames,https://lh3.googleusercontent.com/-X6QlGQlmhL4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOE0uNJDCVeURGjXy-2GCy9lyYCBw/photo.jpg,A capable calendar. My main grumble is that it notifies me of calendar events after they have passed. Sometimes a day or so later. Even more annoying is Google notifying me of events when I don't use its calendar. The calendar would be better if the developers included a facility to stop Google reading my calendar entries.,4,0,2.37.5,2020-01-21 22:08:59,,,most_relevant,com.appgenix.bizcal +Robert & Elena,https://lh3.googleusercontent.com/-0SAkZvlDWqw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPVErraO0SXQpwncqZHkRNuRxP3Xg/photo.jpg,"Have been using this now for over a year, after trying a few. It is absolutely the best. All depends what you need it to do but it has great options and flexibility. Works just fine, I do have a slow to load glitch on the widget on the phone. Other than that it's great",4,0,2.37.9,2020-02-08 12:51:49,,,most_relevant,com.appgenix.bizcal +Jennifer V Mendoza,https://lh3.googleusercontent.com/a-/AOh14GgTLClsLsSVWf9O50gzaKrx1cDq3bBdgPb6M_NZmdg,"Their widgets had gotten better since my last review. I really appreciate the calendar with the tasks on the side! If there was a morning ""your day today"" or ""plan your day today"" alert in the morning, that would make it even better! I went to Any.do for that, but their calendar and sync to my waze app was off so I came back lol",4,0,2.37.9,2020-02-24 17:55:04,,,most_relevant,com.appgenix.bizcal +David A.,https://lh3.googleusercontent.com/-5Gp-elKOdik/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOxjaleWAyf7-0_fw4AocWsvKPMRw/photo.jpg,Go overall application. I wish it was easier to make changes in already established recurring appointments and it would be nice to have a refresh button. Everything else works really well.,4,0,2.37.9,2020-03-17 21:02:03,,,most_relevant,com.appgenix.bizcal +Miquel Herrera,https://lh3.googleusercontent.com/a-/AOh14GjXnPC2WTmWQG-uF-R2ofgrUKxqfqSeJ496eT13fg,Very good... Just one point. When listing coming up tasks it would be good to have bands of background semi transparent color to highlight today's events and next 3 days events for example to be distinguished from far future events. All in one list with no distinction tends to be overlooked,4,0,2.37.9,2020-02-21 10:30:52,,,most_relevant,com.appgenix.bizcal +Thomas Deluca III,https://lh3.googleusercontent.com/-ppKwqdWz1w4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMxOcarsrio68ti0eWCVT9mvTwkew/photo.jpg,"Is working as described. Could offer deleatable holiday date/names, with drag/drop rescheduleling... a query window where user could use a ""window of time"" (such as ""3:30pm to 8:30pm"" , 6 days a week (S-MTWTF), with ""30 minute travle time"") and locate new appointment opening automatically. It has been a useful app so far.",4,0,2.37.3,2020-01-20 14:40:28,,,most_relevant,com.appgenix.bizcal +G the Juggler - Gábor Ivanicskó,https://lh3.googleusercontent.com/a-/AOh14GgA1C7kXMGz7158rmxRdnwl_qqBxa7jFqnOubLU1w,If you can get it on a good deal or already own the CB1 Pro (although one needs to install both app in order to get the pro fearures) than it's a no brainer. Well almost as it still can't sync google reminders into it's own task section which is a shame.,4,0,2.37.4,2020-01-19 21:55:52,,,most_relevant,com.appgenix.bizcal +Kurt Bredeson,https://lh3.googleusercontent.com/a-/AOh14GiNqqzldsAJ_Vk7g8-JilldUZkwp53DpFiFwcFGjA,Ads have changed from a small bar at the bottom to a full page screen that you could close to a full screen video that you can't close until you watch the whole thing.,4,0,2.37.9,2020-03-11 17:40:13,,,most_relevant,com.appgenix.bizcal +Tao Lv,https://lh3.googleusercontent.com/a-/AOh14GgDNhcGZzCOvj0YMzamSpX_dk982RdUGGTyxd6qtA,I've been using this amazing app for years and I read the Chinese Lunar Calendar into the app recently. What troubles me is that how to add an event into the lunar calendar and let the event repeat at the same time on lunar date every year?Thank you.,4,2,2.37.3,2020-01-12 02:10:43,,,most_relevant,com.appgenix.bizcal +Carol Labedz,https://lh3.googleusercontent.com/a-/AOh14GgMiLxeyHBXA1-CngnTgOLZzTsMlvXZLbVy_bs_ZFA,"Was a great app until android screwed up the notifications :( or else it would have received five stars! But I no longer get notices when I need them, so I might have to find another solution.",4,0,2.37.4,2020-01-17 20:32:03,,,most_relevant,com.appgenix.bizcal +David Matthews,https://lh3.googleusercontent.com/-PWYRi-y50Gw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMz5Tea0xDEr8aJBJ0rTpTBW71QBg/photo.jpg,Find this a great app. Full diary views. To do lists and appointments can be on home screen. I have it on both my tablet and phone. Only problem I find is that sometimes it stop syncing.,4,0,2.37.5,2020-01-23 08:48:09,Please remember that BC doesn't have its own sync abilities and uses only those provided by Android. Therefore it cannot be responsible for any sync issues you may have on the device. In such situations it could help to remove and re-add the account for sync in your Android OS Settings - Accounts & Sync.,2020-01-23 09:57:28,most_relevant,com.appgenix.bizcal +Robert Baird,https://lh3.googleusercontent.com/-_OG1Nhn1x6I/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMwTDfZsPGNGgrhDwDOnjgHq7WCPw/photo.jpg,"It's great, the only issue I'm having is when I snooze something and it then occurs at the same time as another event they appear to get grouped together and I have to snooze or dismiss them both.",4,0,2.37.9,2020-02-10 16:14:59,,,most_relevant,com.appgenix.bizcal +Ondřej Strnadel,https://lh3.googleusercontent.com/a-/AOh14GhUrrAowLZ2Ablf38pYwg7lxDWkTs2hw_aXVykYbQ,Great app but for some time I am not able to create an event from the widget. I have even paid for the app hoping it will resolve itself but this feature still isn't working properly.,4,0,2.37.9,2020-02-02 12:52:53,,,most_relevant,com.appgenix.bizcal +Andreas Druinski,https://lh3.googleusercontent.com/a-/AOh14GioU0HUwfKOhMCXYm9RIQchKlpz5H9pr52Ylrhuq5M,The app is good. I am using the pro version since years. It works well with Google calendar. Now I want to use my Outlook calendar as well. But I can not find the possibility to add an Outlook calendar there. Do you have any suggestions for it?,4,0,2.37.9,2020-03-01 21:06:47,,,most_relevant,com.appgenix.bizcal +Azmi Shah,https://lh3.googleusercontent.com/a-/AOh14GjULK93ZUmC3_IQoZoM6Cw_eU9thZlNx_VvEOastm4,My primary app for all my calendar needs. It works well. The pro version makes my life easier. Ild however give it a 5 star if i could put photos up directly into the calendar instead of loading it up as a link,4,0,2.37.7,2020-01-29 16:50:06,,,most_relevant,com.appgenix.bizcal +Hadrian Augustyn,https://lh3.googleusercontent.com/a-/AOh14Gg9X-XcT-LggqkaSL5wWMtL7TaZfesnmhGzOt9dLCU,"If only the authors would fix the issue with the wrong person displayed after clicking on the birthday box, I would consider paying for the premium version",4,0,2.37.9,2020-03-29 08:09:56,,,most_relevant,com.appgenix.bizcal +Shannon Hudgins,https://lh3.googleusercontent.com/a-/AOh14GhuQNdtvt3AcMqxOS-GdTCnLzNX_SVZQAF_9iWa,Love this app. It makes viewing all my Google calendars in one apot easy! My only issue is entering locations because I live in a rural area and it recommends places in large cities all the time.,4,0,2.37.7,2020-01-30 11:19:13,,,most_relevant,com.appgenix.bizcal +Barbara Blinco,https://lh3.googleusercontent.com/-jUFUczcXPAk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP7iYpYy0wfg6s8025yjYGbJDuAcA/photo.jpg,"A good way to manage my busy schedule, I particularly like having a separate task bar... but would so like to be able to delete or adjust one of todays events without deleting/changing all upcoming ones.",4,0,2.37.4,2020-01-18 06:44:38,,,most_relevant,com.appgenix.bizcal +Jed Chamberlain,https://lh3.googleusercontent.com/a-/AOh14GhxZ0zXuFd6CpRMg7LgeufZjPM1wDlnL9D4ryXucQ,I paid for business calendar pro but had problems with the app not working right a year and a half ago. downloaded and tried this one and never went back. it works no issues for me,4,0,2.37.4,2020-01-18 09:48:08,,,most_relevant,com.appgenix.bizcal +Andrew Kinsey,https://lh3.googleusercontent.com/a-/AOh14GjqEF7iyxuzO2Nh9RdFXcx1ZyQ1wVGVaebexg1NHw,"Good functionality and integration with Gmail, alerts work as they should. Have used it for nearly 6 months with no problems.",4,0,2.37.4,2020-01-20 07:27:10,,,most_relevant,com.appgenix.bizcal +John Hall,https://lh3.googleusercontent.com/-Tfh-By1_hSo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPFucXYX_eFxDfaRs7rPRIz3Qi2iQ/photo.jpg,"Simple interface, clear display, not explored advanced features -- does the job for me.",4,0,2.37.9,2020-03-26 19:12:00,,,most_relevant,com.appgenix.bizcal +Wazza R,https://lh3.googleusercontent.com/-eF2gUDS2JfA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOsSGdQj8crX6igQwW_L7L0q8tabw/photo.jpg,Tried several of this type. Best of bunch for me. After last upgrade widget date not automatically rolling over to next day.,4,0,2.37.9,2020-03-11 02:08:51,,,most_relevant,com.appgenix.bizcal +Julie Brown,https://lh3.googleusercontent.com/-A9NjOAcZRFE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNxBcE5Co7KoYhMgR2r8oRV3RRgug/photo.jpg,"I needed a calendar that would extend my schedule to infinity and with multiple rotation scenarios for a variety of store visits. It does that great. Is it possible to simplify moving events (which actually are my store visits) to other days within the same week or month? It wud be great if you could just drag the store you missed to another day and it would only change that single event, not the rest in the rotation. Thanks.",4,0,2.37.4,2020-01-21 03:44:25,"Have you tried using the drag and drop function for that purpose? +https://appgenix.uservoice.com/knowledgebase/articles/880773-drag-drop",2020-01-21 09:07:21,most_relevant,com.appgenix.bizcal +Daisy-may Ticehurst,https://lh3.googleusercontent.com/a-/AOh14GjFK2mlcudccY2udOF5DaHzv8ZpfzNJw521b1ctWQ,"Amazing app, helps me organise different tasks and events with colour codes. Wish there was a notes page and a timetable so I could keep everything in one place!",4,0,2.37.7,2020-01-26 10:08:41,,,most_relevant,com.appgenix.bizcal +Kim Robertson,https://lh3.googleusercontent.com/-6-9hrsJBSFw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN_MSNEYDVDxpiSXL0PvntMvCKfTg/photo.jpg,I have tied a few calenders. This one is good for multiple accounts. Easy to turn them off and on. Its quite clear on a phone screen,4,0,2.37.9,2020-02-28 13:36:43,,,most_relevant,com.appgenix.bizcal +Okalani Hola,https://lh3.googleusercontent.com/a-/AOh14GijIUAF_64avOrRr7iVleHKSDuVW6wk1rp298IU,I really love how i can see my task list and calendar side by side. The only reason why im not giving it a 5 is because i would really love a desktop version to use when im on my laptop.,4,0,2.37.9,2020-03-06 10:12:55,,,most_relevant,com.appgenix.bizcal +Bogdan Irimia,https://lh3.googleusercontent.com/a-/AOh14GiXVmHbe3k68mbYjNXEkQKkxy4QtwBS_ePwcp3eHv8,"Very easy to use. However syncing with Google Calendar is slow for edits and deletes, and this is the reason for not placing a 5 star rating.",4,0,2.37.4,2020-01-18 05:34:41,,,most_relevant,com.appgenix.bizcal +Helma Betts,https://lh3.googleusercontent.com/a-/AOh14GgbzWA50EajSMjmvY7vy5tg6Ay-mfGKp4BfEIToig,Very reliable but not great at retaining future appointments over one year. They seem to disappear!,4,0,2.37.9,2020-03-13 19:50:01,"Hi, please taka a look here: https://appgenix.uservoice.com/knowledgebase/articles/903366-i-am-not-able-to-see-past-and-future-events-in-bc",2020-03-18 09:05:13,most_relevant,com.appgenix.bizcal +Paul Russell,https://lh3.googleusercontent.com/a-/AOh14GhxGyWFTiHutaq5Ml5T5OJUszoSvr4LkbXr8SAx,This product does everything that I need for it to do and all that it says that it will do. It is easy and friendly to use and I enjoy it greatly and truly do rely on it daily,4,0,2.37.4,2020-01-20 04:12:04,,,most_relevant,com.appgenix.bizcal +Gary Clark,https://lh3.googleusercontent.com/a-/AOh14GizRURilXHpaYgX5dPXaLpWHP6i6ztDsFlidEpvuA,Nice format views and options. My only suggestion is to improve the options that can be assigned when creating a new event.,4,0,2.37.9,2020-02-27 18:34:35,"Hi, have you tried using templates already? You can create a template event and set it as default for new events. See here: https://appgenix.uservoice.com/knowledgebase/articles/870639-templates",2020-02-28 09:40:05,most_relevant,com.appgenix.bizcal +Karl Restall,https://lh3.googleusercontent.com/a-/AOh14GiyiOdaTJO2mh9GQXBfRZ5tE8CNI7aMWxSsPJrEzQ,"Very good, been using for a few years now. The synch function is temperamental lately, perhaps an update changed something.",4,0,2.37.5,2020-01-23 13:09:47,,,most_relevant,com.appgenix.bizcal +Nosh Johnson,https://lh3.googleusercontent.com/a-/AOh14Gj2HpNVdRj8ZwGUUVt7sn5Vf0neQ9ZsVmngCSj8GA,"Good tool to manage one or more calendars in one view. Connects to gmail, contacts, phone, google drive and more",4,0,2.37.9,2020-03-30 21:54:48,,,most_relevant,com.appgenix.bizcal +Brian Gilbert,https://lh3.googleusercontent.com/a-/AOh14GgzY3rWCQ3eWfHHnQl-wptkhCQLs9w29_11Q6G5tA,It just works. Nice tight layout. Combines Google & Exchange/Activesync well. Wish I could jump ahead faster than 1 mo at a time.,4,0,2.37.4,2020-01-18 23:50:02,,,most_relevant,com.appgenix.bizcal +Mirian Giorgidze,https://lh3.googleusercontent.com/a-/AOh14GjXZuAIkeRm6vN-brKLfnngWQUFeV576sHygAs5pYg,I use free version and its useful for everyday tasks. 4 stars because there are too many ads.,4,0,2.37.9,2020-02-22 09:39:03,,,most_relevant,com.appgenix.bizcal +Yumi Bae,https://lh3.googleusercontent.com/a-/AOh14Gg8CeeABVaWoINe83d41gi31sLkJ54h2wjqnO5y,Do you have any plan to make desktop view? I am using pro and pretty happy except that part. Getting more info for schedules and it would be amazing if it provides desktop view. A bit inconvenient as a one who is relying on this app a lot.,4,0,2.37.9,2020-02-26 09:34:02,,,most_relevant,com.appgenix.bizcal +Lorie Allion,https://lh3.googleusercontent.com/-SKacfXFkS0s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMueYIEWB8uJg6EWN5AfCzX2Oxc8w/photo.jpg,I used to really love this app. Too many ads for 5 stars now - but I upstill like the way it works.,4,0,2.37.9,2020-03-02 02:02:42,,,most_relevant,com.appgenix.bizcal +Tina Martineau,https://lh3.googleusercontent.com/a-/AOh14GhKmjQiriHFgBn6VoxPN8A4tJBmelYXQHv1Sutp,Overall good and works well. Syncs with google calendar and is a little easier to work with.,4,0,2.37.5,2020-01-22 06:49:58,,,most_relevant,com.appgenix.bizcal +L James,https://lh3.googleusercontent.com/-qubH8kFqmqk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMEdrOZqKjqX1VXd9xtdoTNdsz_gw/photo.jpg,"Great app. Had a quirk pop up last year, but historically best user interface, synced well, and wonderful functionality!",4,0,2.37.5,2020-01-24 04:45:33,,,most_relevant,com.appgenix.bizcal +Mike Kessler Realtor,https://lh3.googleusercontent.com/a-/AOh14GiGMKmY7TZznUIVHr8oNJVOAogrk62KKXAIAgfb,Yes this is a great app. I like all the different variations and things I can tailor to my own needs.,4,0,2.37.5,2020-01-21 16:59:44,,,most_relevant,com.appgenix.bizcal +Dan P,https://lh3.googleusercontent.com/a-/AOh14Gi4u_-kS10Z0wj9VZ2YW3leKP4cY3lllyUrlMWu,I wish there was a task manager. Only reason for 1 star drop. Otherwise this app is working great for me.,4,0,2.37.5,2020-01-22 03:09:31,,,most_relevant,com.appgenix.bizcal +Justin Cram,https://lh3.googleusercontent.com/a-/AOh14Gi4SyeDkwLEzge7Q75r4BET0a0FmVGjOTuSUNfSTiI,some reason just recently the app uninstalled itself or somehow or another it got uninstalled and I haven't been able to receive any updates or any calendar events for the last couple weeks,4,0,2.37.7,2020-01-30 04:27:29,,,most_relevant,com.appgenix.bizcal +AL Hi,https://lh3.googleusercontent.com/a-/AOh14Ghcm8bMlG6qTEP15L6-8RM_Pin5n_bLz1h4c7bC,Love the way it can be easily zoomed for both size and number of days.,4,0,2.37.9,2020-03-05 08:46:20,,,most_relevant,com.appgenix.bizcal +Paws LM,https://lh3.googleusercontent.com/a-/AOh14GiZvqLpfNfjoMFEAw12aJ-p2hRAs2ARSCjj1aCm,Clear Concisive Calendar. Like the sharing capabilities. Haven't had any issues.,4,0,2.37.4,2020-01-19 22:20:20,,,most_relevant,com.appgenix.bizcal +Olga Caliplip-Rivera,https://lh3.googleusercontent.com/a-/AOh14GhUf-Huc2DsicTVqReBI7rXGmx7cr891JQ7dSB64g,"Hi Team, I paid for pro version but ended up rebooting my phone. Now, it is asking me to pay again. How can I get my pro access again? I paid for it on March 16, 2020.",4,0,2.37.9,2020-03-30 07:24:52,"Hi, please take a look here: https://appgenix.uservoice.com/knowledgebase/articles/908211-i-paid-for-the-app-but-i-lost-the-pro-features",2020-03-30 09:20:56,most_relevant,com.appgenix.bizcal +Ruslan N,https://lh3.googleusercontent.com/a-/AOh14GhyN6prInSnYK97GFqzfuvQplrCYVEIU4T7c7FvBw,"Why can I see (and create) task lists from only one account? I have 3 google accounts on my phone, only one of them are in the tasks list",4,0,2.37.7,2020-01-30 06:50:11,,,most_relevant,com.appgenix.bizcal +Howard Monnier,https://lh3.googleusercontent.com/a-/AOh14GimMaKzG7h1gsch_V1iQjxWb2MS-1i83QEMKm1Cwg,Have difficulty trying to set multiple appts for the same time on different days... Too complicated! Just want to input what days of the week i want the appt for.,4,0,2.37.7,2020-01-30 01:28:55,,,most_relevant,com.appgenix.bizcal +Andrew King,https://lh3.googleusercontent.com/a-/AOh14GiJ0LqoexDMeZm80xryI24ioaDYKZY6FEyCg-3QVA,Been using it for ages. Improvements keep coming. Still waiting for an app to master the 1 year overview.,4,0,2.37.4,2020-01-19 15:12:04,,,most_relevant,com.appgenix.bizcal +Keyboard Mama,https://lh3.googleusercontent.com/a-/AOh14GgTzTy3GURZV0tJNcaofJrTnNVFcFi9plwkhQr3,No issues so far...integrates nicely with all the software I use.,4,0,2.37.9,2020-02-16 04:13:42,,,most_relevant,com.appgenix.bizcal +catherine fisher,https://lh3.googleusercontent.com/-a5Yv9L6NWdE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN3XLCDYfoznmHblJSwErWdWwPWKA/photo.jpg,I like the interface. My only problem is awkward birthday calendar.,4,0,2.37.4,2020-01-21 13:47:13,,,most_relevant,com.appgenix.bizcal +Brian Odom,https://lh3.googleusercontent.com/-Xo7_ci9ZMtc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOVAGvYX41q_XKpvtPj3-IjOIjArg/photo.jpg,Great app. Would have been a 5 if had more color options.......,4,0,2.37.4,2020-01-18 21:19:53,,,most_relevant,com.appgenix.bizcal +Іван Жук,https://lh3.googleusercontent.com/a-/AOh14GjF3ABCUTEgS7mMOfRviSOaCoxud0xk3IHk31R-,"Just don't give 5 stars when not using most function, but those functions I use- totally satisfy my needs.",4,0,2.37.9,2020-02-13 13:08:08,,,most_relevant,com.appgenix.bizcal +the Dame,https://lh3.googleusercontent.com/a-/AOh14Gi8nwJ4556NFFJyydoF0RhR_jbADkJe--0Kpn3iSA,Just wish the app would sync so I can use it on my new phone! Excellent otherwise. Thank you!!!,4,0,2.37.9,2020-04-01 23:52:54,"Hi, it is possible. Did you back you data correctly up? + +See here: https://appgenix.uservoice.com/knowledgebase/articles/904029-what-steps-should-i-take-when-switching-resetting",2020-04-02 11:34:22,most_relevant,com.appgenix.bizcal +Greg Giorno,https://lh3.googleusercontent.com/a-/AOh14GgCZ_yAl5lf_K2qFFX6zSS4k_BQGmYcJYMvux5GQg,Perfect for my needs. I just wish it was also for Apple so I can use it across many platforms.,4,0,2.37.4,2020-01-18 16:16:51,,,most_relevant,com.appgenix.bizcal +Steve Crook,https://lh3.googleusercontent.com/a-/AOh14GgjHGtD-wvrPPG7WCvkSeT50dT54YisnUcl23Bg,"Very good, if a little hard to navigate. Would recommend.",4,0,2.37.6,2020-01-25 10:49:08,,,most_relevant,com.appgenix.bizcal +David Švorc,https://lh3.googleusercontent.com/a-/AOh14Gh46317mF-3yRYrHzVS4V0j2KWrXLWICvFVb7016Kk,"App is really great! Too frequent updates, in last week 3 updates..",4,0,2.37.8,2020-01-31 08:43:10,Is it something negative? :) It shows the app is actualized and it is being maintained.,2020-01-27 11:41:08,most_relevant,com.appgenix.bizcal +craig morrison,https://lh3.googleusercontent.com/a-/AOh14GjadVFmFL9blPXi5mo4lbqsG-TyCKtgSB2a1oe8,"Great app, has a few bugs merging calanders and loosing input but otherwise excellent",4,0,2.37.4,2020-01-22 00:01:40,,,most_relevant,com.appgenix.bizcal +Abdullah Zahed,https://lh3.googleusercontent.com/a-/AOh14GjcIoS7KZaJzWD9g4ry-Kb3XQOIzf_vTNIUyBpH9w,"One Star less because I can't find the windows version. Otherwise, it is the best calendar.",4,0,2.37.4,2020-01-19 05:34:00,,,most_relevant,com.appgenix.bizcal +Randy Becker,https://lh3.googleusercontent.com/a-/AOh14GgU1PItOZILmdcrXUOZuUFlC9CLbj1rTC9GdtKk8w,"Needs more vibrant colors, perfect everywhere else.",4,0,2.37.9,2020-02-07 18:40:00,,,most_relevant,com.appgenix.bizcal +Lanzio Uriani,https://lh3.googleusercontent.com/a-/AOh14GjpgSoixD02wz3JD0B_0Z-qjeE9LuN9UZja_3G6tZg,Google assistant reminders do not populate ...will this be addressed soon ?,4,1,2.37.7,2020-01-29 12:28:08,,,most_relevant,com.appgenix.bizcal +Theophil Mertens,https://lh3.googleusercontent.com/-cltQRSD688U/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPQHn3ApuRjkxl3aSVgaLBOD3EeWA/photo.jpg,Very good. Sometimes aggressive advertisement.,4,0,2.37.9,2020-03-05 11:55:09,,,most_relevant,com.appgenix.bizcal +Mark Cox,https://lh3.googleusercontent.com/a-/AOh14Gh85QKMkLe2zYxjEZ1oUvOBZBmxJaTEk1YRLRYgJA,Great app does everything I need with multiple accounts.,4,0,2.37.3,2020-01-13 14:22:35,,,most_relevant,com.appgenix.bizcal +Charles Harris,https://lh3.googleusercontent.com/a-/AOh14GiIyfs2JkrkPWPgJZkIrq2B7DTEHfyFdpz2YpYrsw,Great app but the widget freezes alot.,4,0,2.37.9,2020-04-01 23:22:28,"Hi, which widget do you use? Have you tried rebooting? Which launcher do you use? Have you maybe also tested different ones?",2018-11-14 18:46:00,most_relevant,com.appgenix.bizcal +deborah leong,https://lh3.googleusercontent.com/-kKfFpPzh7qM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO9WiMnTt-eQ0v78YeFh9UOGbT_Dg/photo.jpg,Good app. Looses my long term appointments now and then.,4,0,2.37.7,2020-01-28 18:03:48,,,most_relevant,com.appgenix.bizcal +Paul Ar,https://lh3.googleusercontent.com/-NWAVWmURr0I/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO8TXACeDJrqrMCv6vBhaFXNz2CQQ/photo.jpg,Great calendar app. Easy to use.,4,0,2.37.9,2020-03-19 09:44:48,,,most_relevant,com.appgenix.bizcal +Don Mebrano,https://lh3.googleusercontent.com/a-/AOh14GjDmehYvjvyo9tcijmhlJGCQUJAHVT6-BP8Y79FPw,Keeps all meetings organized. Great app!,4,0,2.37.3,2020-01-23 00:49:29,,,most_relevant,com.appgenix.bizcal +Tim H,https://lh3.googleusercontent.com/a-/AOh14Ggb_JnqJLHNRMYXSXUj8XEDfUq_CbRBupXEY7bofQ,"Great app, the best time setting interface of anything. Only feature I don't like is if you change the start time of an event it proportionally changes the end time so you have to change the end back to where it was and if you change it enough to span the midnight hour now you have to change the days too.",4,3,2.37.2,2020-01-07 06:48:11,,,most_relevant,com.appgenix.bizcal +Frank Parisi,https://lh3.googleusercontent.com/a-/AOh14GitpcT82W2_FR__BCSHkpKBjlcEgWCWGYpkZi_hnA,Great app but voice quality sometimes poor,4,0,2.37.9,2020-02-23 03:42:26,,,most_relevant,com.appgenix.bizcal +TuanTin Tan,https://lh3.googleusercontent.com/-gcUwR-THQm0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJObGH0b29EnuF074pfNcpoEf2UcjA/photo.jpg,I find it's useful and easy to check.,4,0,2.37.9,2020-02-01 03:18:17,,,most_relevant,com.appgenix.bizcal +muzaffar ilyas,https://lh3.googleusercontent.com/-h27g-xaEIVM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMnmFEs35MOwaEo23_xgcqKL1yWpA/photo.jpg,I like this apps. But I would like it better if it can show event description.,4,0,2.37.3,2020-01-14 18:39:28,,,most_relevant,com.appgenix.bizcal +Biancoverde Biancoverde,https://lh3.googleusercontent.com/a-/AOh14Gi_jbLS9lfsYzBxuBZknh4PTb15UX_HXuM5lV7E,"Good but, too many ads..",4,0,2.37.9,2020-02-27 06:23:40,"The ad appears only every 18 hours! It means it is 2/day, if you're unlucky. Otherwise you can use the app without any further disturbance. Please note, that this free version needs to be developed and maintained on the daily basis. This requires a lot of time and work. The ads help us maintain the software.",2020-02-26 10:37:24,most_relevant,com.appgenix.bizcal +Steve J.,https://lh3.googleusercontent.com/a-/AOh14GimqhG-55PLSKTV4VIeUZe3VobXj3kjkwFUJHtpgw,"I'm not sure, but I keep getting these little hidden files in download folder but I believe they're from the calendar. I haven't checked since the update. But I do use this app every day especially for the widgets and the customization. You can get lost in it, but I'd rather have the option than not.",4,0,2.37.2,2020-01-27 21:56:01,,,most_relevant,com.appgenix.bizcal +Morris J,https://lh3.googleusercontent.com/-6KZ_g2x583U/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOsABoOuc5sQoXzS5pK4ehtY-ocog/photo.jpg,"Love it, some pay features are annoying",4,0,2.37.9,2020-02-14 03:44:56,,,most_relevant,com.appgenix.bizcal +Jim Hermiller,https://lh3.googleusercontent.com/-PK03KYEXM2s/AAAAAAAAAAI/AAAAAAAAHxQ/AAKWJJNWsQrz7TkQMXpOUVfBFQRhHqF4ag/photo.jpg,"I've been using the pro version for four years and loved it until recent year-end. During the holidays, daytime sync with Google Tasks stopped. When I wake each morning, I find that many or even most tasks have synced, but can't force any more syncs for the rest of day. I've reset and reinstalled the app without success. With the holidays over, I need to resolve this and get back to work, and find that I can download other competing apps that work great. Please fix.",4,4,2.37.2,2020-01-05 17:35:49,,,most_relevant,com.appgenix.bizcal +Ana Davis,https://lh3.googleusercontent.com/a-/AOh14GiqZPZfnY1KOdYUhH4qqcD3JsRCxWb50yBQPKsp8w,So far so good. Easy sync with Google calendars. However I can't tell if the to do lists can sync with other programs like wunderlist or the voice assistants like Google or Alexa...,4,0,2.37.2,2020-01-06 22:02:39,,,most_relevant,com.appgenix.bizcal +Geoffrey McIntosh,https://lh3.googleusercontent.com/-DlvONYRh1lw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNuB4HQb9VXD9pbaqRbRBfxTswWxA/photo.jpg,I have no problems with the app so it must be working.,4,0,2.37.4,2020-01-20 19:45:20,,,most_relevant,com.appgenix.bizcal +avtar ubbi,https://lh3.googleusercontent.com/a-/AOh14GibDDfWoZTWXsBsVVNBAQLyNNxBbLR14q37fq6N280,Love this app! The only thing that is missing for me is the ability to long click on a day in any view and be able to give it a bespoke colour so I know that there is something important I need to be aware of on that date. If that was there it would be 5 stars,4,3,2.37.0,2019-12-20 07:45:06,,,most_relevant,com.appgenix.bizcal +Shiloh Harmitt,https://lh3.googleusercontent.com/a-/AOh14GgvV-q1qvo9ZDicCRxGhSVMolR1khYqYMjnoaEQLA,"Offers much more flexibility and I'm enjoying the new updates. The one thing I would like (for 5 star rating) is the ability to strike-through appointments that are cancelled, which was possible in the Palm Pilot and similar to the ""completed"" tasks that once you have ticked them off it will strike-through the item.",4,24,2.37.0,2019-12-28 01:02:22,,,most_relevant,com.appgenix.bizcal +me too,https://lh3.googleusercontent.com/-bLvHlVzTccI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP2RcJyR7aZ8owPAgR_hLi6xVUwBg/photo.jpg,Good calendar but short on extras,4,0,2.37.4,2020-01-20 00:25:12,,,most_relevant,com.appgenix.bizcal +Bruce Ringrose,https://lh3.googleusercontent.com/-zUkk2i--4nQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNmAJLntE6rpBULJjF_WLVSnWbv3A/photo.jpg,Very useful and functional.,4,0,2.37.9,2020-02-19 04:04:24,,,most_relevant,com.appgenix.bizcal +Paul Hamilton,https://lh3.googleusercontent.com/a-/AOh14GhSz7VwSTHyZUxbgyHRYfExPLYQcoup1IWX1f7p5A,Thought one drive would be included in the cloud list.,4,0,2.37.9,2020-03-07 21:04:24,,,most_relevant,com.appgenix.bizcal +Serhiy Dovbnya,https://lh3.googleusercontent.com/a-/AOh14GiI-hvYGrL62Ln9nVkcm5BCJIJQzjkCf8g_sNLKylY,"In this last update there is a bug: in a widget I enter the event, and then I press the top left corner arrow to go into the main app - it just exits. UPDATE: The latest update doesn't fix this",4,0,2.37.1,2019-12-24 16:43:42,,,most_relevant,com.appgenix.bizcal +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Very good calendar. Syncs well easy to use. Just wish it had grouping option so I can tell what sort of appointment I have at a glance. Apart from that very good,4,0,2.37.0,2019-12-19 13:57:12,,,most_relevant,com.appgenix.bizcal +Nicholas Glynos,https://lh3.googleusercontent.com/-idgbZ4kyFsE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOPRVe8XyoetlkSun5RZcN6Sk_PIQ/photo.jpg,Working Excellent and it is very helpful,4,0,2.37.4,2020-01-20 14:16:16,,,most_relevant,com.appgenix.bizcal +Cera G,https://lh3.googleusercontent.com/-PKW8XBf3ffw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN61AJF9KvnkESmjM685SvMCW0stA/photo.jpg,Great calendar! Love you can use different colours for entries on the same day. Wish i could use colour to shade the background of different days tho! Can use symbols & emojis too.,4,0,2.37.2,2020-01-01 21:53:41,,,most_relevant,com.appgenix.bizcal +K K,https://lh3.googleusercontent.com/-5GyjcRp6-Rk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNTJJYVR43vEqk_LbAvr3OJpzYcsg/photo.jpg,"Excellent calendar, worth the upgrade!",4,0,2.37.7,2020-01-28 00:41:14,,,most_relevant,com.appgenix.bizcal +Michael Wolsey,https://lh3.googleusercontent.com/-tMxrdSgdMRw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPm_KN262XQ2dTZzr28JqZNHnhX-g/photo.jpg,"This really helps me to stay organized with my appointments, birthdays and other important dates.",4,0,2.37.2,2020-01-12 05:43:02,,,most_relevant,com.appgenix.bizcal +Richard Wong,https://lh3.googleusercontent.com/a-/AOh14GhANjJQCE6cm8I1UfwRMzHJeQALVDVEHgn51Ot6CQ,Good apps to sync with my Google Calendar. The only problem is that it couldn't sync Google Reminder.,4,0,2.37.0,2019-12-26 20:25:58,,,most_relevant,com.appgenix.bizcal +unambiguous,https://lh3.googleusercontent.com/a-/AOh14GjhnOZJtcsUH77bW0ddwoi250uLTQKlPsyP9DIX,Occasional lags are annoying.,4,0,2.37.4,2020-01-20 12:25:48,,,most_relevant,com.appgenix.bizcal +Yasser Soliman,https://lh3.googleusercontent.com/-7LeJcFZebBA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOYsEfJUMHOtLqkjBovLy9sZRcGxg/photo.jpg,Powerful app. Great features.,4,0,2.37.4,2020-01-19 23:44:07,,,most_relevant,com.appgenix.bizcal +Lorne Tuplin,https://lh3.googleusercontent.com/a-/AOh14GhdR3RslYQly982mhCi6r2gPAMZDpNVw7vhGNeIMA,Was using contacts + but ran out of space with an upgraded version so without warning it stopped saving contacts. Poor idea!!! Found Business Call 2 pro & am still discovering new features. Amazing app!,4,0,2.37.9,2020-04-05 23:07:21,,,newest,com.appgenix.bizcal +Allen Anderson,https://lh3.googleusercontent.com/-C78UhTgSMf0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN7I8JPsfDNaqgkWLV29VeFiXGG6w/photo.jpg,So far it has worked ok for me /,4,0,2.37.9,2020-04-04 22:21:27,,,newest,com.appgenix.bizcal +Olajide Fashae,https://lh3.googleusercontent.com/a-/AOh14GgfOHMWtUTccVR6EvVN4SWWK_KrM_xg3RX7F9bEZg,Great.,4,0,2.37.9,2020-04-03 06:40:28,,,newest,com.appgenix.bizcal +mark danner,https://lh3.googleusercontent.com/-mUibdhwUlHs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMNrfkZteKAkZQGEwuDBjjpv6TXEQ/photo.jpg,Good app,4,0,2.37.9,2020-04-02 20:09:24,,,newest,com.appgenix.bizcal +the Dame,https://lh3.googleusercontent.com/a-/AOh14Gi8nwJ4556NFFJyydoF0RhR_jbADkJe--0Kpn3iSA,Just wish the app would sync so I can use it on my new phone! Excellent otherwise. Thank you!!!,4,0,2.37.9,2020-04-01 23:52:54,"Hi, it is possible. Did you back you data correctly up? + +See here: https://appgenix.uservoice.com/knowledgebase/articles/904029-what-steps-should-i-take-when-switching-resetting",2020-04-02 11:34:22,newest,com.appgenix.bizcal +Charles Harris,https://lh3.googleusercontent.com/a-/AOh14GiIyfs2JkrkPWPgJZkIrq2B7DTEHfyFdpz2YpYrsw,Great app but the widget freezes alot.,4,0,2.37.9,2020-04-01 23:22:28,"Hi, which widget do you use? Have you tried rebooting? Which launcher do you use? Have you maybe also tested different ones?",2018-11-14 18:46:00,newest,com.appgenix.bizcal +Blaine Masson,https://lh3.googleusercontent.com/a-/AOh14GjnNPGj1JyNQ4F9gDwMezioAKzi_2yqPTmXd_Gxyg,The best option for a calendar and calendar widget. Functionally it is great. Widgets are great as well. I wish the widgets would pick up the system font so everything on my screen was uniform.,4,0,2.37.9,2020-04-01 12:57:27,,,newest,com.appgenix.bizcal +Micah Grube,https://lh3.googleusercontent.com/a-/AOh14GjwI9lN_eFkV-Ujk4THchn6y9kWfIgaSCu-9Xw,Pretty good overall.,4,0,,2020-04-01 00:08:09,,,newest,com.appgenix.bizcal +Nosh Johnson,https://lh3.googleusercontent.com/a-/AOh14Gj2HpNVdRj8ZwGUUVt7sn5Vf0neQ9ZsVmngCSj8GA,"Good tool to manage one or more calendars in one view. Connects to gmail, contacts, phone, google drive and more",4,0,2.37.9,2020-03-30 21:54:48,,,newest,com.appgenix.bizcal +Olga Caliplip-Rivera,https://lh3.googleusercontent.com/a-/AOh14GhUf-Huc2DsicTVqReBI7rXGmx7cr891JQ7dSB64g,"Hi Team, I paid for pro version but ended up rebooting my phone. Now, it is asking me to pay again. How can I get my pro access again? I paid for it on March 16, 2020.",4,0,2.37.9,2020-03-30 07:24:52,"Hi, please take a look here: https://appgenix.uservoice.com/knowledgebase/articles/908211-i-paid-for-the-app-but-i-lost-the-pro-features",2020-03-30 09:20:56,newest,com.appgenix.bizcal +Hadrian Augustyn,https://lh3.googleusercontent.com/a-/AOh14Gg9X-XcT-LggqkaSL5wWMtL7TaZfesnmhGzOt9dLCU,"If only the authors would fix the issue with the wrong person displayed after clicking on the birthday box, I would consider paying for the premium version",4,0,2.37.9,2020-03-29 08:09:56,,,newest,com.appgenix.bizcal +John Hall,https://lh3.googleusercontent.com/-Tfh-By1_hSo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPFucXYX_eFxDfaRs7rPRIz3Qi2iQ/photo.jpg,"Simple interface, clear display, not explored advanced features -- does the job for me.",4,0,2.37.9,2020-03-26 19:12:00,,,newest,com.appgenix.bizcal +Jijnasu Vidyarthi,https://lh3.googleusercontent.com/-HCvw8vNqCTY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNy7w3S2L01bItmStwqiHRRw4t83w/photo.jpg,Good,4,0,2.37.9,2020-03-25 03:51:49,,,newest,com.appgenix.bizcal +Aaron Leung,https://lh3.googleusercontent.com/a-/AOh14Gj-sSBL8HQLEPy7w9UfRCxDOcUndZXs5gm7nMef5A,"Have been using the old Pro version on all my previous devices for years and liked it very much. Just started to use this new one not long ago. It has a more contemporary design, simplified and streamlined options, but the change in drag n drop in weekly view costs it a star.",4,5,2.37.9,2020-03-25 01:38:55,"Hi, the drag and drop is integrated in BC 2: https://appgenix.uservoice.com/knowledgebase/articles/880773-drag-drop +Did you verify all the system settings already? If the app cannot run in the background, because the system is blocking it, it may take a longer while until is actualized. FYI:https://dontkillmyapp.com/xiaomi",2020-03-12 08:57:27,newest,com.appgenix.bizcal +Adrian,https://lh3.googleusercontent.com/-A9Q-0bFoFuQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPHbmr15ygeLIDh2tovc0GjjtCqTw/photo.jpg,"I like this app, because it fits well in my daily routines and offers very many settings, especially regarding appearance. It has some basic design flaws and misses some easy opportunities, but all in all it is a valuable application for my personal time management.",4,2,2.37.9,2020-03-22 14:28:34,,,newest,com.appgenix.bizcal +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Works just great,4,0,2.37.9,2020-03-21 02:33:44,,,newest,com.appgenix.bizcal +Paul Ar,https://lh3.googleusercontent.com/-NWAVWmURr0I/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO8TXACeDJrqrMCv6vBhaFXNz2CQQ/photo.jpg,Great calendar app. Easy to use.,4,0,2.37.9,2020-03-19 09:44:48,,,newest,com.appgenix.bizcal +inbar hasson,https://lh3.googleusercontent.com/a-/AOh14GgeS_RSxc281mszzyPq4JRrLdaanTXDnDrzlaFT_w,"Amazing calander but lately there are too mamy adds. A lot more than before, still willing to deal with it though",4,0,2.37.9,2020-03-18 11:41:51,,,newest,com.appgenix.bizcal +David A.,https://lh3.googleusercontent.com/-5Gp-elKOdik/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOxjaleWAyf7-0_fw4AocWsvKPMRw/photo.jpg,Go overall application. I wish it was easier to make changes in already established recurring appointments and it would be nice to have a refresh button. Everything else works really well.,4,0,2.37.9,2020-03-17 21:02:03,,,newest,com.appgenix.bizcal +Chris Phelan,https://lh3.googleusercontent.com/-t2rGE7uIlng/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPB8Q03goIBhnNFqmX56UqA7sC6ZQ/photo.jpg,So far so good,4,0,2.37.9,2020-03-16 23:16:09,,,newest,com.appgenix.bizcal +Helma Betts,https://lh3.googleusercontent.com/a-/AOh14GgbzWA50EajSMjmvY7vy5tg6Ay-mfGKp4BfEIToig,Very reliable but not great at retaining future appointments over one year. They seem to disappear!,4,0,2.37.9,2020-03-13 19:50:01,"Hi, please taka a look here: https://appgenix.uservoice.com/knowledgebase/articles/903366-i-am-not-able-to-see-past-and-future-events-in-bc",2020-03-18 09:05:13,newest,com.appgenix.bizcal +Todd Welti,https://lh3.googleusercontent.com/a-/AOh14GicJumTqFmu_eZ2LOHgavW_tF2joVdNTMKcKbef,"Excellent so far, I've been using it for several years. One thing always is an issue though, I can never consistently figure out how to ""sleep"" my notifications if they end up on the quick setting drop down menu. It seems like it is always wanting to open the event up rather then give me the choice to sleep for various periods of time. I use the calendar this way a lot so it is a problem.",4,0,2.37.9,2020-03-11 21:28:19,,,newest,com.appgenix.bizcal +Kurt Bredeson,https://lh3.googleusercontent.com/a-/AOh14GiNqqzldsAJ_Vk7g8-JilldUZkwp53DpFiFwcFGjA,Ads have changed from a small bar at the bottom to a full page screen that you could close to a full screen video that you can't close until you watch the whole thing.,4,0,2.37.9,2020-03-11 17:40:13,,,newest,com.appgenix.bizcal +Wazza R,https://lh3.googleusercontent.com/-eF2gUDS2JfA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOsSGdQj8crX6igQwW_L7L0q8tabw/photo.jpg,Tried several of this type. Best of bunch for me. After last upgrade widget date not automatically rolling over to next day.,4,0,2.37.9,2020-03-11 02:08:51,,,newest,com.appgenix.bizcal +Paul Hamilton,https://lh3.googleusercontent.com/a-/AOh14GhSz7VwSTHyZUxbgyHRYfExPLYQcoup1IWX1f7p5A,Thought one drive would be included in the cloud list.,4,0,2.37.9,2020-03-07 21:04:24,,,newest,com.appgenix.bizcal +Len Altamura,https://lh3.googleusercontent.com/a-/AOh14GjJQhS70-bDNg8svHc6wHk4TwNQQ0q9DBVzu32B,Long time user across 4 locations.,4,0,2.37.9,2020-03-06 15:11:59,,,newest,com.appgenix.bizcal +Okalani Hola,https://lh3.googleusercontent.com/a-/AOh14GijIUAF_64avOrRr7iVleHKSDuVW6wk1rp298IU,I really love how i can see my task list and calendar side by side. The only reason why im not giving it a 5 is because i would really love a desktop version to use when im on my laptop.,4,0,2.37.9,2020-03-06 10:12:55,,,newest,com.appgenix.bizcal +Peter Hammerton,https://lh3.googleusercontent.com/-42CS3cOYT6k/AAAAAAAAAAI/AAAAAAAAAEU/AAKWJJMxVGmX8b2JrlRIgSbEaEOU5GuiRA/photo.jpg,"One or two minor hiccups when inserting advance appointments which resulted in a difficulty with getting the diary back to 'todays' date. I had to turn the phone on and off in order to correct this. Also had problems with the app widget failing to download after the phone has been turned on. Other than those issues the diary has been great. I would love to have more options to customise the appearance of the app, eg background or page colour options only work when you insert an appointment.",4,9,2.37.9,2020-03-06 06:41:41,,,newest,com.appgenix.bizcal +Theophil Mertens,https://lh3.googleusercontent.com/-cltQRSD688U/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPQHn3ApuRjkxl3aSVgaLBOD3EeWA/photo.jpg,Very good. Sometimes aggressive advertisement.,4,0,2.37.9,2020-03-05 11:55:09,,,newest,com.appgenix.bizcal +AL Hi,https://lh3.googleusercontent.com/a-/AOh14Ghcm8bMlG6qTEP15L6-8RM_Pin5n_bLz1h4c7bC,Love the way it can be easily zoomed for both size and number of days.,4,0,2.37.9,2020-03-05 08:46:20,,,newest,com.appgenix.bizcal +Stephen Sheen,https://lh3.googleusercontent.com/a-/AOh14GgPLzig2FOnIuLcEsWPcxt_be9siZHvRJDT4RrFfjY,Regular user since 2years 5-mar-20 : what can be done to ensure Outlook Calendar always syncs? It never seems to work more than a few days... After which i have to manually sync to keep it upto date!! This is a big bummer as business calendars are mostly on Outlook across majority corporations!,4,0,2.37.9,2020-03-05 03:36:30,,,newest,com.appgenix.bizcal +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Been using it for years, and now reducing to four stars. The calendar side is great, best out there. But the task side is under-designed and buggy. I've reporting a bug for years, and they've never fixed it.",4,0,2.37.9,2020-03-04 23:54:14,,,newest,com.appgenix.bizcal +Zach Hall,https://lh3.googleusercontent.com/a-/AOh14GgOYfl-bQ11BeEhxrUAN_plRcxhWlOK0VmmgAY1QQ,"I like this app quite a bit. It has more useful features compared to the normal Samsung calendar app. It does not, however, play well with Google. In that I can't ask Google what my agenda is and have it pull info from this app. Lame. Hence 4 stars only. Not sure if that's a Google thing or a thing for this app. Otherwise I like it a lot.",4,9,2.37.9,2020-03-03 15:39:02,"Hi, we have absolutely no influence on the text format in the Play Console. The link must have automatically be deactivated. Please contact our support directly and you will receive all information about how your Android device works.",2020-03-03 11:10:26,newest,com.appgenix.bizcal +Lorie Allion,https://lh3.googleusercontent.com/-SKacfXFkS0s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMueYIEWB8uJg6EWN5AfCzX2Oxc8w/photo.jpg,I used to really love this app. Too many ads for 5 stars now - but I upstill like the way it works.,4,0,2.37.9,2020-03-02 02:02:42,,,newest,com.appgenix.bizcal +Andreas Druinski,https://lh3.googleusercontent.com/a-/AOh14GioU0HUwfKOhMCXYm9RIQchKlpz5H9pr52Ylrhuq5M,The app is good. I am using the pro version since years. It works well with Google calendar. Now I want to use my Outlook calendar as well. But I can not find the possibility to add an Outlook calendar there. Do you have any suggestions for it?,4,0,2.37.9,2020-03-01 21:06:47,,,newest,com.appgenix.bizcal +Dr. Heisecke,https://lh3.googleusercontent.com/a-/AOh14GiPLPRacnTZke2vItIF3lXucvcyHslhj6S6AnNGeoc,I like the usability and design a lot. Unfortunately it has to be synced with your normal calender which is a deal breaker for me. I wanted to seperate work from my private life to keep a work life balance. It's sadly not possible with this app.,4,0,,2020-02-29 11:09:34,,,newest,com.appgenix.bizcal +Kim Robertson,https://lh3.googleusercontent.com/-6-9hrsJBSFw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN_MSNEYDVDxpiSXL0PvntMvCKfTg/photo.jpg,I have tied a few calenders. This one is good for multiple accounts. Easy to turn them off and on. Its quite clear on a phone screen,4,0,2.37.9,2020-02-28 13:36:43,,,newest,com.appgenix.bizcal +Gary Clark,https://lh3.googleusercontent.com/a-/AOh14GizRURilXHpaYgX5dPXaLpWHP6i6ztDsFlidEpvuA,Nice format views and options. My only suggestion is to improve the options that can be assigned when creating a new event.,4,0,2.37.9,2020-02-27 18:34:35,"Hi, have you tried using templates already? You can create a template event and set it as default for new events. See here: https://appgenix.uservoice.com/knowledgebase/articles/870639-templates",2020-02-28 09:40:05,newest,com.appgenix.bizcal +Biancoverde Biancoverde,https://lh3.googleusercontent.com/a-/AOh14Gi_jbLS9lfsYzBxuBZknh4PTb15UX_HXuM5lV7E,"Good but, too many ads..",4,0,2.37.9,2020-02-27 06:23:40,"The ad appears only every 18 hours! It means it is 2/day, if you're unlucky. Otherwise you can use the app without any further disturbance. Please note, that this free version needs to be developed and maintained on the daily basis. This requires a lot of time and work. The ads help us maintain the software.",2020-02-26 10:37:24,newest,com.appgenix.bizcal +Gene Laks,https://lh3.googleusercontent.com/-gEaG65JMRDE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOpwY9gcg2aUD1Q3EBTJVDsNKS2bw/photo.jpg,Still enjoying this app after all these years,4,0,2.37.9,2020-02-26 19:54:20,,,newest,com.appgenix.bizcal +Yumi Bae,https://lh3.googleusercontent.com/a-/AOh14Gg8CeeABVaWoINe83d41gi31sLkJ54h2wjqnO5y,Do you have any plan to make desktop view? I am using pro and pretty happy except that part. Getting more info for schedules and it would be amazing if it provides desktop view. A bit inconvenient as a one who is relying on this app a lot.,4,0,2.37.9,2020-02-26 09:34:02,,,newest,com.appgenix.bizcal +Jennifer V Mendoza,https://lh3.googleusercontent.com/a-/AOh14GgTLClsLsSVWf9O50gzaKrx1cDq3bBdgPb6M_NZmdg,"Their widgets had gotten better since my last review. I really appreciate the calendar with the tasks on the side! If there was a morning ""your day today"" or ""plan your day today"" alert in the morning, that would make it even better! I went to Any.do for that, but their calendar and sync to my waze app was off so I came back lol",4,0,2.37.9,2020-02-24 17:55:04,,,newest,com.appgenix.bizcal +Tomi Helin,https://lh3.googleusercontent.com/-UF992OSqxtU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNEJyPzbXg4m9hPr_0UsYg3fwxEAQ/photo.jpg,"It works, me like. Bought the Pro ver.",4,0,2.37.9,2020-02-24 13:46:48,,,newest,com.appgenix.bizcal +PMR CMCVellore,https://lh3.googleusercontent.com/a-/AOh14Gh2aArNoZe2o9u9KrS--1R2aDYNIz7oVbbUzK9H4Q,Great calendar - bought the pro version for the previous version - just annoying to have to purchase again - otherwise would definitely buy the pro version!,4,0,,2020-02-24 09:15:23,"Hi, you don't need to buy pro. The pro functions in BC 2 are unlocked for you completely for free as long as you keep the old pro app installed.",2020-02-24 09:38:23,newest,com.appgenix.bizcal +Corey S,https://lh3.googleusercontent.com/a-/AOh14Gh4GYeGVOIUeZyThXVHBxAXUxxOp3ktfeWHO79O2m0,its a good calendar! . Definitely bettwr then most and if they keep up Ill continue to use it. They also are constantly improving the app I'm having difficulties getting it to open on the correct day I'm sure it's just a setting I can't figure out the app keeps opening on a day for days from the current day,4,2,2.37.9,2020-02-24 05:53:18,"Hi, what are the problems with event editing, that you experience? + +The attachments will be added in the future.",2018-12-19 13:27:32,newest,com.appgenix.bizcal +David Farningham,https://lh3.googleusercontent.com/-QJYFst1T_cI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOkcVXun2cw6esZ8QAsSmHXACV6SQ/photo.jpg,"Works well, nice interface",4,0,2.37.9,2020-02-23 14:29:28,,,newest,com.appgenix.bizcal +Frank Parisi,https://lh3.googleusercontent.com/a-/AOh14GitpcT82W2_FR__BCSHkpKBjlcEgWCWGYpkZi_hnA,Great app but voice quality sometimes poor,4,0,2.37.9,2020-02-23 03:42:26,,,newest,com.appgenix.bizcal +Mirian Giorgidze,https://lh3.googleusercontent.com/a-/AOh14GjXZuAIkeRm6vN-brKLfnngWQUFeV576sHygAs5pYg,I use free version and its useful for everyday tasks. 4 stars because there are too many ads.,4,0,2.37.9,2020-02-22 09:39:03,,,newest,com.appgenix.bizcal +King Daniel,https://lh3.googleusercontent.com/-t7KeedAGi-g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM9nFHSTTs86ly_z2ilUp3ykTFV_Q/photo.jpg,Not the best but better than others,4,0,2.37.5,2020-02-21 17:58:32,,,newest,com.appgenix.bizcal +whipped creamm,https://lh3.googleusercontent.com/-q0l0vYYWmJ4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPgAA80fAPGe6JO7aOJM6CVRXqspw/photo.jpg,How do i add my agenda on the widget,4,0,2.37.9,2020-02-21 14:59:11,,,newest,com.appgenix.bizcal +Asesh Mandal,https://lh3.googleusercontent.com/a-/AOh14Gi9iuw3AvD-hS3QnIGhFxyszy-dRSEe1No28tkTkg,Very good calendar.,4,0,2.37.9,2020-02-21 13:43:59,,,newest,com.appgenix.bizcal +Miquel Herrera,https://lh3.googleusercontent.com/a-/AOh14GjXnPC2WTmWQG-uF-R2ofgrUKxqfqSeJ496eT13fg,Very good... Just one point. When listing coming up tasks it would be good to have bands of background semi transparent color to highlight today's events and next 3 days events for example to be distinguished from far future events. All in one list with no distinction tends to be overlooked,4,0,2.37.9,2020-02-21 10:30:52,,,newest,com.appgenix.bizcal +Bruce Ringrose,https://lh3.googleusercontent.com/-zUkk2i--4nQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNmAJLntE6rpBULJjF_WLVSnWbv3A/photo.jpg,Very useful and functional.,4,0,2.37.9,2020-02-19 04:04:24,,,newest,com.appgenix.bizcal +Asmar Madyun,https://lh3.googleusercontent.com/a-/AOh14GiNr_MPsVJmnh8Ongdmt5sY4O2t8EIMMrYyrTOnzw,Very good. Productivity booster,4,0,,2020-02-18 10:45:17,,,newest,com.appgenix.bizcal +Isaac Muyiwa-Ojo,https://lh3.googleusercontent.com/a-/AOh14GjypZOTSAaFE8SrOhk7BlwXwc0T5yXE-j3V5UXNzw,Very useful calendar for people in business and even for busy individuals.,4,0,2.37.9,2020-02-18 10:02:58,,,newest,com.appgenix.bizcal +Evan Papadopoulos,https://lh3.googleusercontent.com/-CHNd9_u2IMg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNJcOLJ6b4JksZMJe3sPjJsUJRczg/photo.jpg,Very nice application!,4,0,2.37.9,2020-02-17 09:15:29,,,newest,com.appgenix.bizcal +Andres Soto,https://lh3.googleusercontent.com/-rRkVhtOx-YY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM-rff_lI0BeL1-InHl91ybOS-NTw/photo.jpg,I like it so far,4,0,2.37.9,2020-02-16 19:46:26,,,newest,com.appgenix.bizcal +Keyboard Mama,https://lh3.googleusercontent.com/a-/AOh14GgTzTy3GURZV0tJNcaofJrTnNVFcFi9plwkhQr3,No issues so far...integrates nicely with all the software I use.,4,0,2.37.9,2020-02-16 04:13:42,,,newest,com.appgenix.bizcal +Tami Zhou,https://lh3.googleusercontent.com/a-/AOh14Gj6AviV3Fen2y3Xjfs8JOzMYBX2JN9LcS425sotTA,I luv it. Only downside is the adverts. But the app is awesome.,4,0,,2020-02-14 12:56:14,,,newest,com.appgenix.bizcal +Broderick Bryant,https://lh3.googleusercontent.com/-8G5sm3Tcqx4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMK0ld7NBiBcTtY9JzDTg2bcOw-PQ/photo.jpg,All good,4,0,2.37.9,2020-02-14 08:45:11,,,newest,com.appgenix.bizcal +Morris J,https://lh3.googleusercontent.com/-6KZ_g2x583U/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOsABoOuc5sQoXzS5pK4ehtY-ocog/photo.jpg,"Love it, some pay features are annoying",4,0,2.37.9,2020-02-14 03:44:56,,,newest,com.appgenix.bizcal +James Porter,https://lh3.googleusercontent.com/-pnlLPSLY5WQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO5EqxyEjEMEMN8yGsYW7SB18odIQ/photo.jpg,"Nice clean app, good functionality.",4,0,2.37.9,2020-02-14 02:06:17,,,newest,com.appgenix.bizcal +S. Lwere,https://lh3.googleusercontent.com/a-/AOh14Gj9p2YRUHwgqk_y838j7FucW0P5ksfolEf7dgImzw,So useful,4,0,2.37.9,2020-02-13 20:12:08,,,newest,com.appgenix.bizcal +Іван Жук,https://lh3.googleusercontent.com/a-/AOh14GjF3ABCUTEgS7mMOfRviSOaCoxud0xk3IHk31R-,"Just don't give 5 stars when not using most function, but those functions I use- totally satisfy my needs.",4,0,2.37.9,2020-02-13 13:08:08,,,newest,com.appgenix.bizcal +Robert Baird,https://lh3.googleusercontent.com/-_OG1Nhn1x6I/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMwTDfZsPGNGgrhDwDOnjgHq7WCPw/photo.jpg,"It's great, the only issue I'm having is when I snooze something and it then occurs at the same time as another event they appear to get grouped together and I have to snooze or dismiss them both.",4,0,2.37.9,2020-02-10 16:14:59,,,newest,com.appgenix.bizcal +Lee Goldman,https://lh3.googleusercontent.com/a-/AOh14GgTdlJ6pJOBFqIyMIJ945pKW4tWwHEFXI2MqStW,"Love it overall, but I had the worst time trying to get it to sync initially. I ended up installing the Google calendar app in order to get my Chromebook to sync on schedule, and then BC2 worked just fine (must have been the Chromebook?)",4,0,,2020-02-09 14:03:21,,,newest,com.appgenix.bizcal +Robert & Elena,https://lh3.googleusercontent.com/-0SAkZvlDWqw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPVErraO0SXQpwncqZHkRNuRxP3Xg/photo.jpg,"Have been using this now for over a year, after trying a few. It is absolutely the best. All depends what you need it to do but it has great options and flexibility. Works just fine, I do have a slow to load glitch on the widget on the phone. Other than that it's great",4,0,2.37.9,2020-02-08 12:51:49,,,newest,com.appgenix.bizcal +Randy Becker,https://lh3.googleusercontent.com/a-/AOh14GgU1PItOZILmdcrXUOZuUFlC9CLbj1rTC9GdtKk8w,"Needs more vibrant colors, perfect everywhere else.",4,0,2.37.9,2020-02-07 18:40:00,,,newest,com.appgenix.bizcal +Donald W. Cole,https://lh3.googleusercontent.com/a-/AOh14GiG__hUJbo51kiOwi6_lm6gLnaU2RvKIythwAyOnw,Great calendar,4,0,2.37.9,2020-02-04 16:25:31,,,newest,com.appgenix.bizcal +Tango Magico,https://lh3.googleusercontent.com/a-/AOh14Gg57ldrO9y52nwUjwGT4G0AN9fbA-CKVvn-Jx3o2Q,"It's user-friendly and can be personalised very efficiently, but I am currently having issues with it overlapping with the built-in Google calendar. It didn't use to. I keep that for personal use and this one for business, obviously. But now they both sync and show the same things, whichever calendar I select, so I cannot use them differently. I hope there is a way around this, otherwise I will have to download a replacement.",4,5,2.37.9,2020-02-03 12:28:06,"Consider that BC, Google and your stock calendar use the same calendar storage on your device. This means they show the same data and it is not possible to use them separately. This is the standard Android behavior. For that reason we built Favorite Bar and calendar categories in BC, which give your the possibility to quickly toggle the calendars.",2020-02-04 12:18:14,newest,com.appgenix.bizcal +Ondřej Strnadel,https://lh3.googleusercontent.com/a-/AOh14GhUrrAowLZ2Ablf38pYwg7lxDWkTs2hw_aXVykYbQ,Great app but for some time I am not able to create an event from the widget. I have even paid for the app hoping it will resolve itself but this feature still isn't working properly.,4,0,2.37.9,2020-02-02 12:52:53,,,newest,com.appgenix.bizcal +TuanTin Tan,https://lh3.googleusercontent.com/-gcUwR-THQm0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJObGH0b29EnuF074pfNcpoEf2UcjA/photo.jpg,I find it's useful and easy to check.,4,0,2.37.9,2020-02-01 03:18:17,,,newest,com.appgenix.bizcal +tamara marshall,https://lh3.googleusercontent.com/a-/AOh14Ghv9wdjl_pTpLUVevZX-TcGkK0XUkmae95zDwy0,love it,4,0,2.37.7,2020-01-31 17:54:37,,,newest,com.appgenix.bizcal +David Švorc,https://lh3.googleusercontent.com/a-/AOh14Gh46317mF-3yRYrHzVS4V0j2KWrXLWICvFVb7016Kk,"App is really great! Too frequent updates, in last week 3 updates..",4,0,2.37.8,2020-01-31 08:43:10,Is it something negative? :) It shows the app is actualized and it is being maintained.,2020-01-27 11:41:08,newest,com.appgenix.bizcal +mohd tamizee,https://lh3.googleusercontent.com/a-/AOh14GgYZXgpSMlM1G8HGnG72crqZh38W6LB8LCngHZGBA,Supervb & smart,4,0,2.37.7,2020-01-31 01:01:38,,,newest,com.appgenix.bizcal +Laurel Fitzhugh,https://lh3.googleusercontent.com/a-/AOh14GggayRZmM8GBKNtnVlxP6S79ARev88Y3lmGh1vFOg,"Tons of features, and the features I need and want. However it often doesn't show my information, each line just says ""loading..."". It seems that most of the time they will eventually load. All the permissions are good....",4,0,,2020-01-30 19:38:33,,,newest,com.appgenix.bizcal +Shannon Hudgins,https://lh3.googleusercontent.com/a-/AOh14GhuQNdtvt3AcMqxOS-GdTCnLzNX_SVZQAF_9iWa,Love this app. It makes viewing all my Google calendars in one apot easy! My only issue is entering locations because I live in a rural area and it recommends places in large cities all the time.,4,0,2.37.7,2020-01-30 11:19:13,,,newest,com.appgenix.bizcal +Ruslan N,https://lh3.googleusercontent.com/a-/AOh14GhyN6prInSnYK97GFqzfuvQplrCYVEIU4T7c7FvBw,"Why can I see (and create) task lists from only one account? I have 3 google accounts on my phone, only one of them are in the tasks list",4,0,2.37.7,2020-01-30 06:50:11,,,newest,com.appgenix.bizcal +Justin Cram,https://lh3.googleusercontent.com/a-/AOh14Gi4SyeDkwLEzge7Q75r4BET0a0FmVGjOTuSUNfSTiI,some reason just recently the app uninstalled itself or somehow or another it got uninstalled and I haven't been able to receive any updates or any calendar events for the last couple weeks,4,0,2.37.7,2020-01-30 04:27:29,,,newest,com.appgenix.bizcal +Howard Monnier,https://lh3.googleusercontent.com/a-/AOh14GimMaKzG7h1gsch_V1iQjxWb2MS-1i83QEMKm1Cwg,Have difficulty trying to set multiple appts for the same time on different days... Too complicated! Just want to input what days of the week i want the appt for.,4,0,2.37.7,2020-01-30 01:28:55,,,newest,com.appgenix.bizcal +Antonio Sánchez,https://lh3.googleusercontent.com/a-/AOh14GjhausZSISl2QA6NKJJaQYjtyPyXGTN16mXDWUhfA,I like this app. It's very useful.,4,0,2.37.7,2020-01-29 22:00:15,,,newest,com.appgenix.bizcal +Azmi Shah,https://lh3.googleusercontent.com/a-/AOh14GjULK93ZUmC3_IQoZoM6Cw_eU9thZlNx_VvEOastm4,My primary app for all my calendar needs. It works well. The pro version makes my life easier. Ild however give it a 5 star if i could put photos up directly into the calendar instead of loading it up as a link,4,0,2.37.7,2020-01-29 16:50:06,,,newest,com.appgenix.bizcal +Lanzio Uriani,https://lh3.googleusercontent.com/a-/AOh14GjpgSoixD02wz3JD0B_0Z-qjeE9LuN9UZja_3G6tZg,Google assistant reminders do not populate ...will this be addressed soon ?,4,1,2.37.7,2020-01-29 12:28:08,,,newest,com.appgenix.bizcal +deborah leong,https://lh3.googleusercontent.com/-kKfFpPzh7qM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO9WiMnTt-eQ0v78YeFh9UOGbT_Dg/photo.jpg,Good app. Looses my long term appointments now and then.,4,0,2.37.7,2020-01-28 18:03:48,,,newest,com.appgenix.bizcal +Gergely Ó.,https://lh3.googleusercontent.com/a-/AOh14GjvzO0yulgtYEapVqu6N_bPghtWbLH4pJs7v7MAsw,"Dear Team! I've been using this app since ages and I'm mostly satisfied but with Android 10 I lost the pop-up notification feature in the app. How can I restore it? Without pop-up notifications, only 4 stars. 😔 Thanks in advance! Reaction for the developer's comment: Even if I click on the notification in the status bar, it doesn't open pop-up but the event itself. And anyhow, pop-up notification is crucial for me, otherwise I simply miss the notifications from the calendar. Any ETA? 😔",4,2,2.37.7,2020-01-28 12:19:58,"Android 10 devices don’t allow to open popups when an app isn’t actively used. That is why we can’t show the reminder popups automatically anymore. + +If you have multiple reminders in the status bar, you can click on them to manually open the popup. + +We are sorry for the inconveniences but this is beyond our control!",2020-01-28 12:07:55,newest,com.appgenix.bizcal +K K,https://lh3.googleusercontent.com/-5GyjcRp6-Rk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNTJJYVR43vEqk_LbAvr3OJpzYcsg/photo.jpg,"Excellent calendar, worth the upgrade!",4,0,2.37.7,2020-01-28 00:41:14,,,newest,com.appgenix.bizcal +Sharing HOMEO,https://lh3.googleusercontent.com/a-/AOh14Gijg80-F6QLaA5TxR5m7LMFdRCkm82XKQqy--enoA,"When I have open appointment and switch to different task, lost all unsaved changes. Missing me that open appointment is not listed in taskmanager as running task.",4,0,2.37.7,2020-01-27 23:14:27,,,newest,com.appgenix.bizcal +Steve J.,https://lh3.googleusercontent.com/a-/AOh14GimqhG-55PLSKTV4VIeUZe3VobXj3kjkwFUJHtpgw,"I'm not sure, but I keep getting these little hidden files in download folder but I believe they're from the calendar. I haven't checked since the update. But I do use this app every day especially for the widgets and the customization. You can get lost in it, but I'd rather have the option than not.",4,0,2.37.2,2020-01-27 21:56:01,,,newest,com.appgenix.bizcal +Cougar Upton,https://lh3.googleusercontent.com/a-/AOh14GhANZq2Q5viCn5ZbWDlJYkFfOC4Ujay-YGBMoRoOw,Does everything it says it does. I use it on my phone and my tablet for 5 years now. Wish I there was a desktop edition to sync with it. And would be nice if there were saved searches. Seems like that would be easy to implement and so helpful for the users!,4,0,2.37.7,2020-01-27 08:30:13,,,newest,com.appgenix.bizcal +Charlene Riddle,https://lh3.googleusercontent.com/a-/AOh14GihZTgNQqhXeF65xXh7Fyp--9jVXOfB8nF6zK64zA,Good,4,0,2.37.7,2020-01-27 06:19:11,,,newest,com.appgenix.bizcal +Daisy-may Ticehurst,https://lh3.googleusercontent.com/a-/AOh14GjFK2mlcudccY2udOF5DaHzv8ZpfzNJw521b1ctWQ,"Amazing app, helps me organise different tasks and events with colour codes. Wish there was a notes page and a timetable so I could keep everything in one place!",4,0,2.37.7,2020-01-26 10:08:41,,,newest,com.appgenix.bizcal +Steve Crook,https://lh3.googleusercontent.com/a-/AOh14GgjHGtD-wvrPPG7WCvkSeT50dT54YisnUcl23Bg,"Very good, if a little hard to navigate. Would recommend.",4,0,2.37.6,2020-01-25 10:49:08,,,newest,com.appgenix.bizcal +L James,https://lh3.googleusercontent.com/-qubH8kFqmqk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMEdrOZqKjqX1VXd9xtdoTNdsz_gw/photo.jpg,"Great app. Had a quirk pop up last year, but historically best user interface, synced well, and wonderful functionality!",4,0,2.37.5,2020-01-24 04:45:33,,,newest,com.appgenix.bizcal +Karl Restall,https://lh3.googleusercontent.com/a-/AOh14GiyiOdaTJO2mh9GQXBfRZ5tE8CNI7aMWxSsPJrEzQ,"Very good, been using for a few years now. The synch function is temperamental lately, perhaps an update changed something.",4,0,2.37.5,2020-01-23 13:09:47,,,newest,com.appgenix.bizcal +David Matthews,https://lh3.googleusercontent.com/-PWYRi-y50Gw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMz5Tea0xDEr8aJBJ0rTpTBW71QBg/photo.jpg,Find this a great app. Full diary views. To do lists and appointments can be on home screen. I have it on both my tablet and phone. Only problem I find is that sometimes it stop syncing.,4,0,2.37.5,2020-01-23 08:48:09,Please remember that BC doesn't have its own sync abilities and uses only those provided by Android. Therefore it cannot be responsible for any sync issues you may have on the device. In such situations it could help to remove and re-add the account for sync in your Android OS Settings - Accounts & Sync.,2020-01-23 09:57:28,newest,com.appgenix.bizcal +Don Mebrano,https://lh3.googleusercontent.com/a-/AOh14GjDmehYvjvyo9tcijmhlJGCQUJAHVT6-BP8Y79FPw,Keeps all meetings organized. Great app!,4,0,2.37.3,2020-01-23 00:49:29,,,newest,com.appgenix.bizcal +Katrina Hooker,https://lh3.googleusercontent.com/a-/AOh14GgjIIm336uUTAiVjOrU6CdXJdwBwzQrTNajvr4ecQ,Nice app,4,0,2.37.5,2020-01-22 13:15:11,,,newest,com.appgenix.bizcal +Tina Martineau,https://lh3.googleusercontent.com/a-/AOh14GhKmjQiriHFgBn6VoxPN8A4tJBmelYXQHv1Sutp,Overall good and works well. Syncs with google calendar and is a little easier to work with.,4,0,2.37.5,2020-01-22 06:49:58,,,newest,com.appgenix.bizcal +Виктория Богомолова,https://lh3.googleusercontent.com/a-/AOh14GjvCcCXsTAGcG9IO-FgwD5s1cxbWClrzs9aZLEIXA,Синхронизация не работает,4,0,2.37.5,2020-01-22 04:54:47,,,newest,com.appgenix.bizcal +Dan P,https://lh3.googleusercontent.com/a-/AOh14Gi4u_-kS10Z0wj9VZ2YW3leKP4cY3lllyUrlMWu,I wish there was a task manager. Only reason for 1 star drop. Otherwise this app is working great for me.,4,0,2.37.5,2020-01-22 03:09:31,,,newest,com.appgenix.bizcal +J A,https://lh3.googleusercontent.com/-ET8317oSEuA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM8awKgL3u--Vluv3N17LMx2jmp7A/photo.jpg,"This calendar application is fantastic and it is very easy to use. The best thing about it is that you can set multiple events and reminders. It's great that it has up to 5 reminders that you can set, for an event that you've made. There's also a custom setting for setting reminders to any specific time of your choosing. I'm also glad that it doesn't have autocorrect. There are convenient weekly monthly and yearly views to choose from. Great calendar application! I highly recommended it!",5,5,2.37.9,2020-03-10 16:00:58,,,most_relevant,com.appgenix.bizcal +Ben Crawford,https://lh3.googleusercontent.com/a-/AOh14GiehEj9YEkiz0U_U3wKcRFg7ntzr_CghdKeiRB-WA,"Brilliant app. Would be great if attachments were supported too, but this is the best calendar app by a mile for my many calendars. Also - if you don't like ads, buy the bloody thing! Developers aren't charities, and i'm fairly sure you wouldnt do your job for nothing! Don't be cheap dudes.",5,0,2.37.9,2020-03-09 19:47:46,,,most_relevant,com.appgenix.bizcal +Shereen Martin,https://lh3.googleusercontent.com/-K3jevFKTooc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMfwRXrEy1kD1d6VmbK2VsxEdVmkg/photo.jpg,"Everything is ideally pinpointed. There is instant access to tabbed features. It is a smooth and seamless system for organizing at a glance significant business network dates, meetings, holidays. It is a good tool for accessing daily activity reminders. I highly recommend this portal.",5,0,2.37.9,2020-03-12 14:50:29,,,most_relevant,com.appgenix.bizcal +Kim Radtke,https://lh3.googleusercontent.com/a-/AOh14Gifw_P-1XY-ZWEf5WpgDWEFeHXgZcCs8Fip3wbrJw,"I've tried other calendars, and I just love the layout. If only the widget layout can be changed when first opened. But it shows everything I need very easily. I can share my calendar with other people. I can change the colors. Another recommendation is to gain more colors for the appointments. :) Overall, super happy. Will not be choosing another calendar!",5,3,2.37.3,2020-01-13 14:49:37,,,most_relevant,com.appgenix.bizcal +Vivekanand Gupta,https://lh3.googleusercontent.com/a-/AOh14GgScBMHJuVWg9cv67uw3B8xctf9NytCfQu4yVhtiQ,"It has been six months since my purchase of pro version of this app and I am writing this review as gratitude to the developers. Though, many of my favorite features have been added to default Google calender app, this one still is my default. The diversity and configurability of widgets has been of particular help to me in managing my personal and professional tasks. Another feature that I had used extensively is feature of repeated tasks, that have helped me in forming few good habits.",5,1,2.37.9,2020-03-15 15:32:47,,,most_relevant,com.appgenix.bizcal +Kaylee Gallisdorfer,https://lh3.googleusercontent.com/a-/AOh14Gji4eG2BznfxFHQS4dHHWMm4rDEqdQfFtayDiy-iw,"I don't often buy apps above the basic level, but Business Calendar (and now Business Calendar 2) has helped me keep track of appointments so well for so long that I did. I've now had premium for almost a year & still thoroughly enjoy the added functionality & appreciate that the app is fully functional (albeit with some added time required in some cases) at the free level. Thanks for such a great app, & please make this app for iPhone too so my partner & I can use the same calendar app!",5,3,2.37.9,2020-03-05 20:35:58,,,most_relevant,com.appgenix.bizcal +Ednarb Neam,https://lh3.googleusercontent.com/-bHL2fZXHrVk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJONGbaDtAyW-ygHsABZi3uJsjxhKg/photo.jpg,"I truly, literally, honestly would not be able to keep track of my life without this app. I have seven calendars and a task list synced to my device. I'm able to color code each calendar and appointments within those calendars, plus add emojis if I need an appointment to ""pop."" The android widget is fantastic (mine is set as my home screen so I always see what's coming up). Cannot recommend this app more highly. I would give 50 stars if the option was available.",5,0,2.37.4,2020-01-19 18:22:11,,,most_relevant,com.appgenix.bizcal +Matthew Higgo,https://lh3.googleusercontent.com/a-/AOh14GjwH_iQn-tBZ6GSnIGc7nJwawAnyrBmkKjIC2iKlA,"I have come to absolutely love this app! I have used it's beautiful widget playform on my last two or three devices for years! It is such an easy and awesome way for me to bring all my calendar scheduling together. There was an initial learning curve to it at the start, but once I got the hang of it it became so quick and easy!!! 😸 Amazing app guys! Glad I bought it.",5,26,2.37.4,2020-01-20 05:48:13,,,most_relevant,com.appgenix.bizcal +W. Norman,https://lh3.googleusercontent.com/-_KwvCRVY0fY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPVHkTSrjdtL1fs3tX-P-jhpNlysQ/photo.jpg,"Review Update: the scheduling function I wanted has been included at some point in the past (which I did not know as I stopped looking for it long ago.) So... I am now pleased and revising my rating! Original Review: This app is good but I do not understand why they do not create a way to make a recurring (annual) event for, say, the 3rd Thursday in July. One can only create recurring events on the same DATE weekly, monthly, annually. That is not how many events are scheduled in the real world.",5,1,2.37.9,2020-02-12 16:20:38,"Hi, you can do it using the monthly repetition. Just set it to repeat ""every 12 months""",2020-02-12 10:34:53,most_relevant,com.appgenix.bizcal +Kelli Knight,https://lh3.googleusercontent.com/a-/AOh14GiyoOm1oiYOy_jXm6kD8G1tX8FphlOj_GbQapJz9Q,"I have used the app for many years and loved it. Within the last several months, it no longer syncs seamlessly with my Google calendar. Specifically, organizing tasks has become very gitchy. If you are looking for a calendar app and don't mind it not syncing with your Google calendar on your desktop then it's a great app. Unfortunately I'd really like it to sync.",5,11,2.37.5,2020-01-20 19:23:05,Please remember that BC doesn't have its own sync abilities and uses only those provided by Android. Therefore it cannot be responsible for any sync issues you may have on the device. It might be a general sync problem and it could help to remove and re-add the account for sync in your Android OS Settings - Accounts & Sync.,2019-01-10 10:12:45,most_relevant,com.appgenix.bizcal +Alan Miller,https://lh3.googleusercontent.com/a-/AOh14GhaEx8f32L8t_T2rvF8K9Lkeirs0NpwOZ5iTkMB_A,"The simple customization of which calendars are showing with bars at the bottom of the screen is handy, and the widget with a customized compact agenda has been part of my home screens for years. The previous and current versions are 2 of the best app purchases I've made and certainly the most regularly used along with Nine. This shows my Nine (Exchange) calendars with no problems.",5,4,2.37.3,2020-01-15 20:59:00,,,most_relevant,com.appgenix.bizcal +Bob Larimer,https://lh3.googleusercontent.com/a-/AOh14GgWjZxxgIKJIXWVpl2udAVi68abk8DKIQxiQTHIhg,"Great app, been using it for years. Have been using the paid version for a long time and expect to be so for the foreseeable future. It has great syncing capabilities with my online calendar and all my other devices plus it allows me to share individual events to an individual or a group and the repeating events Works in every situation I can think of",5,12,2.37.4,2020-01-18 19:41:24,,,most_relevant,com.appgenix.bizcal +Aleth A. Gayosa,https://lh3.googleusercontent.com/a-/AOh14GgQuSiUotAhfJfIkOgkPhjEg2dutpVH-XAnzHmL-Q,"I've tried different calendar apps for a few years now and this is the one that I have decided to keep for the longest time. The monthly view is very neat, event creation offers a lot of option, and colors are easy om the eyes, too.",5,0,2.37.9,2020-03-28 13:42:52,,,most_relevant,com.appgenix.bizcal +Sagewind 7,https://lh3.googleusercontent.com/a-/AOh14Ghr9lGY5R7UxtzRo4g2k0YDkveNAmpRbFxa0wctWA,"Outstanding. I have relied on this app for years. The customization of the design colours for the calendar widget is a massive pro, as it keeps with my phone's aesthetics. The learning curve is a little steep in some cases, but the capabilities and look are worth it. With multiple reminder notifications, ability to include emojis, different colour options for calendar entries and design layout & much more, this is an indispensable app in my arsenal. Added colour options would be my one request.",5,24,2.37.5,2020-01-22 15:36:12,,,most_relevant,com.appgenix.bizcal +eq6222,https://lh3.googleusercontent.com/a-/AOh14GidxYhfexZrNt_Udw_TWUJE6eHHoBUEutKbHYX9,"Just upgraded to Android 10. Re-evaluating. So far so good. Though pop ups are gone due to Android 10 architecture, I don't miss them. Reminders are now handled through the Android Notifications platform. Thankfully, the multiple reminders feature still works; I personally think this is the most important feature that makes this app better than stock calendar apps and even MS Outlook.",5,15,2.37.9,2020-03-01 15:57:42,"Hi, this sounds unusual. Do you actually dismiss or snooze reminders? Can you send us your widget settings as well as you device information from BC 2 - help & feedback - send feedback, so that we could test it?",2020-01-06 09:22:45,most_relevant,com.appgenix.bizcal +Khrys V,https://lh3.googleusercontent.com/a-/AOh14GhIuWhA1pZ9lai6fH-2Dh8eR7E8dFSvnv5lbCCd-g,"Nice app if you have tons of calendars from different accounts and still want to be able to see a selected subset of them. A bit annoying with the pro version advertisement as of recently. Please, let add a feature to remove the tasks panel, I don't use it and can't resize it. It takes 1/3 of the day view.",5,0,2.37.8,2020-02-04 10:07:21,,,most_relevant,com.appgenix.bizcal +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,I searched for quite some time to find a calendar app that my wife and I could share. Business Calendar is an excellent solution. We have it installed on our phones and tablets and all are in sync. No more asking what she is doing today. Thanks BC team.,5,0,2.37.9,2020-03-16 14:24:20,,,most_relevant,com.appgenix.bizcal +Aiden,https://lh3.googleusercontent.com/a-/AOh14GgI6bWKgiWqX6fdQ3qgYckwYk3vgaX8q2QUM6rhD38,"Listen, this is a great tool. Take the time to learn how to use it. It will do great things for you. If you are like me and value your time, productivity, and efficiency... Use this app. As an android user, I keep my agenda view along with all my tasks and lists as a widget to the left of my home screen. I keep my calendar view to the right. Quick, clean, efficient.",5,2,2.37.4,2020-01-18 06:48:56,,,most_relevant,com.appgenix.bizcal +rachel flam,https://lh3.googleusercontent.com/a-/AOh14GgzineMqTxmUfjqjXHgPYytLQ36dmQA50mctoj_vQc,Took me soooooo long to find a calendar app where the reminders actually pop up OVER what I'm don't and bother me! I've been using this app for about a year now and it's a true life saver. I run a business and have 7 kids. I have between 10-20 reminders every day. This app truly works amazingly - not like others that failed to remind me and I was screwing things up all the time! Loooooove business calendar!,5,0,2.37.4,2020-01-18 00:55:54,,,most_relevant,com.appgenix.bizcal +Sayoojya Saju,https://lh3.googleusercontent.com/a-/AOh14GjQCevKaam83p0bGdIDdn0eYTE4eLQ4wPRvBr5Ngu4,"Integrative calendar! I've been using this for a few years now. It combines multiple accounts, syncs fast, and the widgets are really flexible. One suggestion to the Devs is putting in an automatic ""Do Not Disturb"" option so you can be certain your phone won't ring during an event.",5,1,2.37.4,2020-01-19 01:15:57,,,most_relevant,com.appgenix.bizcal +Henry Lee,https://lh3.googleusercontent.com/a-/AOh14Gi72QOrHA0UakORfccGtsG3BRcOfis7ZLa3lVjjrA,"Just realized that my purchase license is back -- it's Premium again now. Thank You very much and I do appreciate it. So, Dev., you deserve my 5 stars rating back. • This lovely App gets better and better on every update and runs flawlessly in Android 10. Now I can reuse it for my daily assistance. Again, a Big Thank! 🍷🙂👍🏻",5,34,2.37.9,2020-03-10 13:59:53,,,most_relevant,com.appgenix.bizcal +Crusty Collins,https://lh3.googleusercontent.com/a-/AOh14GjhK0e8Q8Ldw8nwLLBgCjsWIkTSH_HtuOfa7f6mig,"For years I didn't like digital calendars. They didn't offer me the overview I liked of physical calendars and notebooks. I was very sceptical of digital ones and their cumbersome features and options - writing something down with a pen seemed sooo much quicker and more direct. Then I saw a friend using Business Calendar and immediately I was intuitively drawn to its good overview of events, simple access to features and quick but precise 'taking a note'/'making an entry'.",5,1,2.37.5,2020-01-23 08:51:52,,,most_relevant,com.appgenix.bizcal +SHAUNA,https://lh3.googleusercontent.com/a-/AOh14GiXo4airb_zevZ4f_aV_PDTdEdCsbS9e1sHul-atk8,awesome Not awesome. Just got a new phone. Doesn't trasnfer most of my events and tasks!!!! This has to improve. I love this app enough to take my tune to recreate my events BUT if this isn't fixed by the time I need a new phone.... bye bye Business Calendar. .... and I think I even PAID for the upgraded version! I see red!,5,0,2.37.9,2020-03-13 04:54:53,,,most_relevant,com.appgenix.bizcal +Matthias McDevitt,https://lh3.googleusercontent.com/a-/AOh14GhX7-hdgRvW00-spLNTuBbmXAjvxSw_MwlDVnrJcw,"The best. Extremely easy toggle view/hide of your different calendars direct from the month view, ability to create new Google calendars (which you can't do on standard Google calendar), exceptional customization so the app/widget can always match your phones theme, etc etc. Took me about an hour to decide 100% that I will purchase pro, if for no other reason than to say thanks, but the features and look are amazing",5,7,2.37.7,2020-01-26 15:40:34,,,most_relevant,com.appgenix.bizcal +Pedro K,https://lh3.googleusercontent.com/-KEuafA6qjrQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJObbrx3gAzS2vwsl-9d4JCta4cI7g/photo.jpg,"the last update is great. but I find the search function needs to improve, I prefer like the old BCPro, or like the samsung stock calendar. I use very often the search funtion, and when I need it I have to go to the samsung stock app. I prefer that in search all events with the key words should be displayed instant, not needing to ask for past of future years... that would make this app really 5 stars thanks",5,1,2.37.9,2020-02-18 09:41:41,,,most_relevant,com.appgenix.bizcal +Alixander Court,https://lh3.googleusercontent.com/a-/AOh14GiBd8e17YHY-dkRNhqPz7sCj56OK8JVjF4wDd_kR8Y,Literally used this app for the last 4 years. Love it. It does way more than any of the calendar apps on the market. I would recommend to any one. Secret feature: you can privately link contacts to tasks and appointments so you can easily have their info on hand.,5,0,2.37.5,2020-01-27 15:43:55,,,most_relevant,com.appgenix.bizcal +David Booth,https://lh3.googleusercontent.com/a-/AOh14Gi-ZIaHPH2k994jhyxf6ScNAE2Ggl0rx3sijvmR-kI,Excellent interface with a variety of easy to use options. I like the clear colourful month view with enough written information on screen to see what each day has recorded without having to tap on each individual day to view information. Much better than other calendars I've tried.,5,0,2.37.4,2020-01-20 08:22:04,,,most_relevant,com.appgenix.bizcal +Andrew Hinkens,https://lh3.googleusercontent.com/-l6SsnJqp0ss/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP8m2VU2WHDhdISZDLYDpllNC-quw/photo.jpg,"Literally the only app I found where the ""today"" widget shows only what is happening... today. Every other one will show the next couple of tasks, even if they're weeks out. Didn't know that was a ludicrously ridiculous request... but apparently it is, so thank you.",5,0,2.37.5,2020-01-22 22:20:30,,,most_relevant,com.appgenix.bizcal +ima jenn,https://lh3.googleusercontent.com/a-/AOh14GhCQlygbqmtkHQ-4HeKK-ESVf6pOsEFmlEPzRseVg,"I've used this app since it first came out. I've not seen Any errors or bugs. It is very, very easy to use, syncs with google calendar flawlessly (and has more info and can be used offline)! I've used it to synch with friends google calender.",5,0,2.37.4,2020-01-19 15:22:16,,,most_relevant,com.appgenix.bizcal +Ciaran Whelan,https://lh3.googleusercontent.com/a-/AOh14GiZDrRPLBqEfCMvwAKa9orwbXFaDGVYryH4emcvRgA,"Actually a very handy app to use for agenda views. However what I would love to see is an option to have the agenda filter on the widget. Not a complaint, more just a suggestion for improvement.",5,0,2.37.9,2020-03-11 10:39:20,,,most_relevant,com.appgenix.bizcal +stephen lampard,https://lh3.googleusercontent.com/-cF5C5mRnJlw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOpfiEngEyWVvXqIE8plr4vpvRG1Q/photo.jpg,I like this business calender as I can colour code the information I enter on a daily basis it makes it easy to check back on my enters and also notifications for up coming events I also like the way it learns form my input and offers suggestions I probably don't use it to its full potential but it caters for my needs and I am grateful that I use it thank you,5,0,2.37.4,2020-01-19 03:43:35,,,most_relevant,com.appgenix.bizcal +David Hovsepyan,https://lh3.googleusercontent.com/-gk0mwKNAVsI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNY81Igc6kJqHP6gvTOeUJ_WraIgA/photo.jpg,"Amazing app. Very helpful in planning your business. Very nice feature that you can add something and put it on repeat (every day, every month, certain day...) Highly recommend, it will help to make you business and life more easy.",5,0,2.37.9,2020-02-27 10:20:49,,,most_relevant,com.appgenix.bizcal +Andreas Moritz,https://lh3.googleusercontent.com/a-/AOh14Gheg5tB12q-CDnYMqIASMoVQCioUpyb2g_iLaaDHA,"Rarely taking the time to write a review but on this one it's absolutely worth it. Was looking for a calendar app that has some powerfull widgets to bring anything you need straight to the Homescreen and it just nails it. -Straight forward, no nonsense user experience -propper column calendar with tasks IN ONE widget -slick, highly customisable design -Syncs instantly It's been a straight up game changer for me so far and went premium - thanks a lot developing and maintaining this app!",5,8,2.37.9,2020-02-12 09:50:30,,,most_relevant,com.appgenix.bizcal +Sally-Ann Curtis,https://lh3.googleusercontent.com/-8dWNbJNYQ0U/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO2IEp4IwArn6mPpn1knnvZx0xYyA/photo.jpg,"Very easy to use. I have the free version. Connects with my Google calendar and I share with my partner. I do have to manually sync through, as it doesn't update automatically very well. Overall, very happy with this app.",5,0,2.37.4,2020-01-19 10:30:07,,,most_relevant,com.appgenix.bizcal +Rufes Stephen,https://lh3.googleusercontent.com/-hqVgqTwjImI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPs6RYcwUEvGORtcxSnloilVVDtNA/photo.jpg,Absolutely love the app. First ever 5 star 🌟 rating and we'll deserved. I was looking for a widget that gave me the weekly schedule and this was spot on. No issues whatsoever so far and the UI is user-friendly too. 10/10 would recommend,5,0,2.37.6,2020-01-25 06:01:03,,,most_relevant,com.appgenix.bizcal +Kristen J Lloyd,https://lh3.googleusercontent.com/a-/AOh14GiI_mPrYm5FWY7b8R30mHb_-4Zsu0T4nvcmUuWL30I,"Love this app!! The template feature for take and events saves me do much time. I also love the ability to view calendars and groups on the fly, as well as zoom in and out to view a customized number of days. Great app.",5,0,2.37.9,2020-03-06 00:30:31,,,most_relevant,com.appgenix.bizcal +E Agota Rakoczi,https://lh3.googleusercontent.com/a-/AOh14Gjasd6Non0FivindkEXW1d-uAFCjjCjj77pzKlasQ,"I have this app for 3+ years and still think it is a great app. I bought the full version after some time but the free version is great too. Easy, initiative, visually pleasing and reliable.",5,0,2.37.9,2020-03-07 12:22:31,,,most_relevant,com.appgenix.bizcal +utkace,https://lh3.googleusercontent.com/a-/AOh14GjVsHyHFdfEPnAe1FUny4JJA0kaYwsLcdKjCflyrQ,"The app does not allow to switch from monthly view to agenda with one touch only. I have to slide the page, find agenda in the list and then can switch. Google calendar does this only by touching the top of the page. Can you make this happen in the next update?",5,0,2.37.4,2020-01-18 14:17:15,,,most_relevant,com.appgenix.bizcal +Iris Z,https://lh3.googleusercontent.com/-zT1eu3p2a80/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMAB6uipDG4-j9Gx03D-Ge8EuochA/photo.jpg,"I am a project support officer and administrator, calendars are one of my main tools every day. And business calendar is definitely my favourite one. Neat visualisation of all information required when you juggle multiple calendars. Let's you add, move, sync, colour code. No functionality issues ever.",5,2,2.37.9,2020-02-03 20:58:11,,,most_relevant,com.appgenix.bizcal +Brian Knight,https://lh3.googleusercontent.com/-L_9mjiqmFDQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOLlgsklFokKv8LfcsNk9daUA3FUQ/photo.jpg,"Have had this app for sometime and find it does everything I need both as a retail manager and my home life. Able to customize to suit individual needs, no hesitation in recommending.",5,0,2.37.9,2020-03-20 21:05:21,,,most_relevant,com.appgenix.bizcal +Philip Carringer,https://lh3.googleusercontent.com/-FLpL7eJKVFQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMX5lxTaS1RLRtJdRyk3LPmSu7A2A/photo.jpg,"Great calendar for how I want my information displayed. Tried most of the calendar apps and this one was the only one I immediately liked and did not really need to ""learn"". For reference I use Thunderbird as my computer email application.",5,0,2.37.4,2020-01-19 04:29:24,,,most_relevant,com.appgenix.bizcal +Stan Gruel,https://lh3.googleusercontent.com/a-/AOh14Gi48OcKGRE-aCZ8u9XzFTAvGpQEAp_o1Qfd4gWEIg,"Coupled with sectograph (just the best widget for me) and in sync with the different calendars I need, this is the perfect app. The customization and simple look makes everything clear. If there was a desktop app as well I'd get it too.",5,0,2.37.4,2020-01-19 09:10:16,,,most_relevant,com.appgenix.bizcal +Ben Davis,https://lh3.googleusercontent.com/-eCrssBICjAA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM-e6W_0yIOKizfEhCfumoQOuv3Zw/photo.jpg,App worked well for me from the start- but it took a while to learn how to utilize many of the features. My close friends chide me because I add so much to my calendar - but the ability to add reminders keeps me on track.,5,1,2.37.5,2020-01-22 15:58:25,,,most_relevant,com.appgenix.bizcal +Thyra Sinisalo,https://lh3.googleusercontent.com/a-/AOh14GjctU1ZsJKlJbZPN7RXD9SMeKJ-zcwZapA5wm48,I chose this calendar for its widgets which are the best among all the apps I tried. This combined with fine controls are the reasons I haven't looked back for several years now.,5,0,2.37.9,2020-03-29 18:28:07,,,most_relevant,com.appgenix.bizcal +Bebe Robinson,https://lh3.googleusercontent.com/a-/AOh14GjqSiqZWM5odeFUmy6wAc40_yV0cywWxzgOv411nA,"Amazing app! I love that you can slide from one day to several days as you please. Very user friendly, pretty colors and no bugs. Also, adding an event is simple and fast. Kudos to the developers.",5,0,2.37.9,2020-02-08 06:25:18,,,most_relevant,com.appgenix.bizcal +Matt Holloway,https://lh3.googleusercontent.com/a-/AOh14Gjskc9ZI-XttrJdBEslFDmmuhWo6R3XMDR-69qD3g,"Love this app, would love to have the ability to have a desktop version that sync'd with my phone. Maybe add this ability to permium users? Overall very pleased with this app. keeps a busy schduled organized, especially where multiple calendars are involved.",5,0,2.37.3,2020-01-19 18:06:41,,,most_relevant,com.appgenix.bizcal +John C,https://lh3.googleusercontent.com/-_KB9voQ8xp8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOBXshDH-G2Xio0BrxmgvGK1_rr_Q/photo.jpg,"Great app. Love everything about it, especially the multi select option. Would love to see the task/tool bar at the bottom rather than the top, it would make one hand operation a lot easier.",5,0,2.37.9,2020-02-27 21:25:06,,,most_relevant,com.appgenix.bizcal +FAMILY MAN,https://lh3.googleusercontent.com/a-/AOh14GhqjvVpZLIvACNGMrjHz3GNxZjbNEffijNOYoqD5hc,"This is a great calendar app and it also connect to your other Calendar apps, like your Google, Microsoft, Samsung and so on. Keeping you in touch with every calendar that you have on your phone.",5,0,2.37.9,2020-03-01 21:08:41,,,most_relevant,com.appgenix.bizcal +Akin ASA,https://lh3.googleusercontent.com/a-/AOh14GjRmo1M2CxoQW9HS2hXxs-1p1F5Oh48-JXmwv1w5Q,This is a superb organisational app! It met.my.needs when I was hunting around to replace another to do app that failed with an upgrade. I would recommend this to anyone.,5,0,2.37.9,2020-04-03 13:02:14,,,most_relevant,com.appgenix.bizcal +Philip Carwin,https://lh3.googleusercontent.com/a-/AOh14GiT_TvNR8dWFDa-RuEasPHcWP4uvlp8u6d_CT26kA,"I've had this app for over 3 years, and paid a very small price for it, and I couldn't be happier. Quick setup, reminders the way you want them, and easy on the eyes when you change colors to your liking.",5,1,2.37.7,2020-01-28 00:38:30,,,most_relevant,com.appgenix.bizcal +Anton L.,https://lh3.googleusercontent.com/-Li4QTggtzlk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOgMAlWXdAB5Y8SwqPx9buLkGcuXg/photo.jpg,"Very nice agenda widget. Also supports basic ICS import, saved me a couple of times. Had some problems deleting tasks, but might have been a glitch of my phone. But the look is great, one of the best out there",5,0,2.37.9,2020-03-02 04:17:35,,,most_relevant,com.appgenix.bizcal +ko be,https://lh3.googleusercontent.com/-zcR0-Lsk73A/AAAAAAAAAAI/AAAAAAAAAXI/AAKWJJOVg80NN_JU7qlbz6WP1Vs8O3syXg/photo.jpg,That's a great app. I have suggestion which would make this app perfect for me. Make option to delay all today's events for 1h (or any other period of time) great anyway,5,0,2.37.9,2020-03-20 09:27:09,,,most_relevant,com.appgenix.bizcal +Sant R.,https://lh3.googleusercontent.com/-JQpOP-0W3k4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOSlUef2VBfsU4kp8oRa5702zKaqA/photo.jpg,"Best calendar app ive ever used. Has a lot of preferences to suite your needs. But I would like to suggest if possible, for the all day events to be able to change their order sequence. That would be awesome!",5,0,2.37.9,2020-02-26 20:33:14,,,most_relevant,com.appgenix.bizcal +Joe Hobbs,https://lh3.googleusercontent.com/-nLAhhJbzmfY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO8ogS67bXIR6Vit45OSVbsH4-V2Q/photo.jpg,LOVE THIS APP. I use this to consolidate multiple work and personal calendars in one view. I love the ability to manage appearance and notifications for each independently - super helpful in maintain work-life boundaries.,5,0,2.37.9,2020-02-24 15:54:59,,,most_relevant,com.appgenix.bizcal +Mohammad Zeeshan,https://lh3.googleusercontent.com/a-/AOh14GhX_86Zg9p5DSmub1TTyEKwbGJHCFPfEdHJm1H-Zw,Very helpful to have reminders and important details at your fingertips. I wish there was a way to have it synch with an app or program on your computer.,5,0,2.37.9,2020-04-03 00:55:06,,,most_relevant,com.appgenix.bizcal +Peter Killey,https://lh3.googleusercontent.com/a-/AOh14GhtPp09EHVpmU4w5GxVRUjlbwel8-7Ntxd6O0vMRw,"I love this App, just a question for future thought, the native Samsung Calendar app (S8) when you tap a day you can easily swipe left or right via a box to easily show what appointments you have, any chance for someday a L/R on Business Calendar??",5,0,2.37.9,2020-02-15 19:37:15,,,most_relevant,com.appgenix.bizcal +Logan French,https://lh3.googleusercontent.com/-1UlckXy66f4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMZ2ft2TnATLQm3K9ld1wPvRi7qEw/photo.jpg,I love the ability to combine calendars and task lists. It is very customizable and easy to use. I would love an option to have it on my computer as well and be able to sync them together. There are many widgets and they are very customizable as well.,5,0,2.37.5,2020-01-25 16:06:23,,,most_relevant,com.appgenix.bizcal +Andreas Putlitz,https://lh3.googleusercontent.com/a-/AOh14GiR05vT3zDahJ7knMzum9EjwyAIISjVMam7asQgwA,"Intuitive, fast, easy. Only my custom colors get messed up every once in a while between B.C. and Google, but I don't know who's fault that is.",5,1,2.37.4,2020-01-18 15:15:45,,,most_relevant,com.appgenix.bizcal +Victor Hastings,https://lh3.googleusercontent.com/-S-TWKJTfp_Q/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN6cPuycgTasmpKels8gzKdPtyiEQ/photo.jpg,Absolutely essential to my law practice! Full featured yet extremely intuitive to use. Syncs perfectly with Google Calendar. One of my earliest & smartest app purchases as soon as I took the Android plunge.,5,0,2.37.4,2020-01-20 05:26:56,,,most_relevant,com.appgenix.bizcal +Jereme Grisenti,https://lh3.googleusercontent.com/-wuaLL9byplo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPwi65G30f6YEOP0xoxJfDxmbZpmw/photo.jpg,"I have had this app for years now. It is the best calendar app I have used. I like how well it integrates with contacts, and how I am now able to attach files. Definitely makes my life easier.",5,0,2.37.9,2020-02-20 13:26:47,,,most_relevant,com.appgenix.bizcal +John Schrock,https://lh3.googleusercontent.com/-tR5lhckGs5s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOn1CmL5SLucxTboVMKciK22d5nJg/photo.jpg,I have used for 3 or so years. It has served me well. So far. :). So far it is one of very few apps that has never crashed...( The so far is Murphy's law),5,0,2.37.9,2020-02-24 21:51:19,,,most_relevant,com.appgenix.bizcal +Joy Flick,https://lh3.googleusercontent.com/-OkUQ4AywRVg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMbMzsFltIyI6sU5gLjiw_Ax45FvA/photo.jpg,LOVE this calendar!! I don't know how I remembered anything I had to do before!! The notifications are SO helpful as you can dismiss or snooze for 5 minutes to days! Highly recommend!!,5,0,2.37.4,2020-01-19 13:54:22,,,most_relevant,com.appgenix.bizcal +Britney Menconi,https://lh3.googleusercontent.com/a-/AOh14GikVfORL4yROYB-fzxlZlq8eFCy_lvxq1OCMpxu,Works great. Looks great. Excellent features. Everything I need in a calendar widget. I don't actually use the app,5,0,2.37.9,2020-03-11 10:00:09,,,most_relevant,com.appgenix.bizcal +Jim Swanson,https://lh3.googleusercontent.com/-mTitu-U4ZrY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM85xBisuLZw-Iy_RcDXpRBZhpFjw/photo.jpg,"Love this app. Been using it for a few years. I have my personal, business, and family calendars all in one view. The widget is great for quickly viewing my agenda.",5,0,2.37.4,2020-01-18 16:52:19,,,most_relevant,com.appgenix.bizcal +Ahmed Siyah,https://lh3.googleusercontent.com/a-/AOh14Gj-e2h-8hiPYFFT8iNSxsOsVPM52bdZ5m0L1BBfQw,Good set of features. Works well. Only wish I could display tasks or reminders on the Calendar without a time duration.,5,0,2.37.9,2020-03-22 03:26:00,,,most_relevant,com.appgenix.bizcal +John Mitchell,https://lh3.googleusercontent.com/a-/AOh14GhlmCeKbrIReGuNQOxvoZF_rkFiaZwXDBCLJN54eg,Excellent! Very versatile. I like being able to set multiple reminders and the location.,5,0,2.37.9,2020-03-25 18:02:01,,,most_relevant,com.appgenix.bizcal +David Alves,https://lh3.googleusercontent.com/a-/AOh14GjhX8gCJY6N6296-KA4dna_wDkeftmOk_-ihG021Q,I've been using the app for more than a year and it's a real thing! Very functional and customizable in many different ways. I simply can't use another calendar app since I started using it,5,1,2.37.4,2020-01-20 02:11:44,,,most_relevant,com.appgenix.bizcal +Alan Smith,https://lh3.googleusercontent.com/-o-JlDYAkvT8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNb2I881-LtpezAswMmDDMegstUmA/photo.jpg,"The best to-do and calendar combined app I have come across, and worth the fee. Have looked at many on Android and iOS, and this is the only one that does what I want.",5,0,2.37.9,2020-02-02 10:20:22,,,most_relevant,com.appgenix.bizcal +Ryuujin Willy,https://lh3.googleusercontent.com/a-/AOh14GhcXai9FkWzklv1cZItT1VwiAgIah_22mBmay1Rbw,Best app for calendars. It's complete in almost every way possible. Made my calendar app for life because of the customization power you have!,5,0,2.37.9,2020-03-11 08:47:26,,,most_relevant,com.appgenix.bizcal +Jeremy Steven Looney,https://lh3.googleusercontent.com/-Jv2SuKwyUJQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNuEApodfGC93A5pSXz5ppUjDWDlQ/photo.jpg,Great Calendar and planning app. Easy to use and get the job done. Well worth the extra money for the Pro version. I enjoy the extra theme's. I recommend this over Google Calendar.,5,1,2.37.4,2020-01-17 18:26:27,,,most_relevant,com.appgenix.bizcal +Joe Dane,https://lh3.googleusercontent.com/a-/AOh14GgLYlnp_0RLl3ezce6v816uRwbKNJwpVVRh4ZB9,"Integrates Google calendar well, has a clean interface and easy to add one time and recurring events. I've tried many and keep coming back to Business Calendar.",5,0,2.37.4,2020-01-19 04:15:00,,,most_relevant,com.appgenix.bizcal +Syed Rashid Mehmood,https://lh3.googleusercontent.com/a-/AOh14GhRR9o8buzf4IkyKLFU68dfJFmD1O_JIFsab-U0,Coming from 7 years of windows phone usage. I was desperately looking for a widget to show daily agenda on home screen. This is the far better one,5,0,2.37.9,2020-03-07 03:27:32,,,most_relevant,com.appgenix.bizcal +Michelle Davis,https://lh3.googleusercontent.com/-tny3wHyP1BI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNGvdWOLBK83ZKfK_UMV6tZlZLsbg/photo.jpg,Best planner ever bought the pro edition...it's easy to use and has many convenient functions like tracking overdue tasks.,5,0,2.37.9,2020-03-27 14:43:50,,,most_relevant,com.appgenix.bizcal +Anna,https://lh3.googleusercontent.com/a-/AOh14Ght49obYRU9Vy5emBhErmeu3OnnXflWWbozsgs71A,"I spent a long time looking at and trying different calendar apps, and this was the only one I could find that had the functionality that I wanted. I haven't looked back since! I highly recommend it.",5,0,2.37.4,2020-01-20 01:42:28,,,most_relevant,com.appgenix.bizcal +Kim Brand,https://lh3.googleusercontent.com/a-/AOh14GjH_rhNAbPa2cA7ccw8rjqJ98AeGTYWnsxToPUPPw,Very good UI. I really like the way it lets me manage views and multi task with my email. I paid for the pro version.,5,1,2.37.4,2020-01-18 13:57:11,,,most_relevant,com.appgenix.bizcal +Kris Anderson,https://lh3.googleusercontent.com/-D5EoyuXhJlY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNj9jiooTSLAgqqHW5RL2FwNlgaLQ/photo.jpg,Been very happy with this app. I love the widget and calendar view that show the names of the events in calendar view. Very helpful!,5,0,2.37.4,2020-01-19 13:08:37,,,most_relevant,com.appgenix.bizcal +Roman K,https://lh3.googleusercontent.com/-VuHUmyeJNFk/AAAAAAAAAAI/AAAAAAAAAIo/AAKWJJPoRdci-8w495rXjgJjb85OBas_Pg/photo.jpg,Very pleased with the product! I do however have one suggestion: possibility to pick location directly from the maps would be nice.,5,0,2.37.7,2020-01-27 17:46:19,,,most_relevant,com.appgenix.bizcal +Julie Ramsey,https://lh3.googleusercontent.com/a-/AOh14GiSGRbEPyIAlxDazK5peHdw2m3cu0jPQuIVgOZUPE8,I love the ease of use to advance options. I get to tailor the appearance and easily create reminder template for future use.,5,0,2.37.9,2020-02-08 19:31:25,,,most_relevant,com.appgenix.bizcal +Michael Edmondson,https://lh3.googleusercontent.com/a-/AOh14GiJG-0x9yxEgBo1U_TR1KCsA_WS0gy_aP_k9ut-0w,"Excellent app, have it synced with about 8 calendars so I can get everything in one place. It works - I wish everything in the App world worked so well.",5,0,2.37.5,2020-01-20 20:48:52,,,most_relevant,com.appgenix.bizcal +Eric Ohlin,https://lh3.googleusercontent.com/a-/AOh14GgfWdB4VlF62jbVdY12UvPN58gUBSf4xpJH8JmQEg,This calendar app is amazing! It can do so many things the other calendar apps can't huge and rich feature set. Very reliable. 10 stars!,5,0,2.37.4,2020-01-18 17:58:01,,,most_relevant,com.appgenix.bizcal +Marta Demarest,https://lh3.googleusercontent.com/a-/AOh14Gj0u3_U8cRJB9WHQdE9-MD7fjqnJ4XTlSFXUcoK,"Paid for pro since I use this app almost exclusively. All my other calendars are integrated into it. I use it daily for events, tasks, and reminders.",5,0,2.37.4,2020-01-18 21:22:54,,,most_relevant,com.appgenix.bizcal +Brenden Heinitz,https://lh3.googleusercontent.com/a-/AOh14GhjRF8h34FuMFLfndKT-AUgX0cDVvT0dk0M_YiRyRw,I have been using this calendar for years and have decided to upgrade partially to support the developers and partially for the additional functionality. I have no intention on ever switching my calendar application,5,0,2.37.4,2020-01-19 18:45:20,,,most_relevant,com.appgenix.bizcal +Tatjana M.,https://lh3.googleusercontent.com/a-/AOh14Gg8aOuvUfkSfJlh-v0bFsReecWtCskQoYOnt2l6,Fantastic app! It has so many options to adjust. I love the widget on phone screen. My husband has started to use it as well. Thank you!,5,0,2.37.5,2020-01-24 08:39:26,,,most_relevant,com.appgenix.bizcal +Michael Brumback,https://lh3.googleusercontent.com/a-/AOh14Gjt-Ny_bwxE7_Nabi_lqvY1vlcoFAOv5OqKva3Z7A,Love it! Works very well and isn't inundated with ads. I don't mind an ad here and there and this app has it perfected,5,0,2.37.9,2020-02-27 01:12:13,,,most_relevant,com.appgenix.bizcal +Michelle Döring,https://lh3.googleusercontent.com/a-/AOh14GhETBLQPOQNIUUJcv4TNqJMRwIaF6tf30BTxsIf,"Really nice overview, like the colors and how adjustable it is. Won't consider any other calendar app",5,0,2.37.9,2020-03-08 10:03:25,,,most_relevant,com.appgenix.bizcal +A Black,https://lh3.googleusercontent.com/a-/AOh14GiMVKJ5hVPaI8Z_lizaars3DUGZAwC3Hxc2P1Namw,"It doesn't crash, OFTEN, great interface, and easy to create an event and/or task list. Don't change a thing.",5,0,2.37.9,2020-02-02 14:01:35,,,most_relevant,com.appgenix.bizcal +Uly Martebelim,https://lh3.googleusercontent.com/a-/AOh14GiUpwa-1J5J2m4SEhXkR3NgmmNEKK-Ij7eX9KtP,"Thankyou! Exactly what I needed! A wish to developers: please add option to make Local Task List appearing 1st by default when creating new event, and not the calendar",5,0,2.37.9,2020-03-06 20:28:13,,,most_relevant,com.appgenix.bizcal +Erik Arneson,https://lh3.googleusercontent.com/a-/AOh14GiMuvwrfDLe0H7n9AQ4CstBXfijSkw9KWyDmlNGgg,I've been using this as a replacement for the default calendar for years. I love it. Very full featured.,5,0,2.37.9,2020-03-20 20:24:45,,,most_relevant,com.appgenix.bizcal +Lee Craig,https://lh3.googleusercontent.com/-SkN9STfizO8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOpSkc2q0msLd8-Q4AvUEELGW6PHw/photo.jpg,I have gone between this and the google calendar app. I like this because it expands the features that are missing in google calendar,5,0,2.37.9,2020-03-27 04:34:23,,,most_relevant,com.appgenix.bizcal +Stacy Haight,https://lh3.googleusercontent.com/a-/AOh14GgWXStdzmL9KIkU4YDMxjAOK7Bp1WHJi3gtn_z_MQ,Love it. I wish there was a reminder option for when things ended as well. I think there used to be. Or maybe that was another app.,5,0,2.37.4,2020-01-18 17:54:15,,,most_relevant,com.appgenix.bizcal +Paul Chapman,https://lh3.googleusercontent.com/-fGWLLdfoQhA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOoqT_yB4p7nUwVfkyL35ceAQbTTg/photo.jpg,brilliant. I love this app. My life is so easy now. Update I've just bought the app after using it free for 6 months. I'm a driving instructor and my life has become so simple. I love this app,5,0,2.37.8,2020-01-30 20:25:29,,,most_relevant,com.appgenix.bizcal +David Kidd,https://lh3.googleusercontent.com/a-/AOh14Gi8RyGFbNuPXGrKCJQHzk2QPjiVr5wYMKUyjE8GSO4,The only calendar app I have used for several years. I occasionally check on Google Cal and others but none have reached the same of features and presentation.,5,0,2.37.9,2020-02-08 16:08:46,,,most_relevant,com.appgenix.bizcal +Bego Moreno,https://lh3.googleusercontent.com/a-/AOh14GgubhQaTT2sQKw3CzeUUaoMg_XnonExWn3qLUzTzA,"Very easy to use. Does the job well. Has all the fields i need, and links to maps, alarms, searches..",5,0,2.37.9,2020-02-27 21:53:27,,,most_relevant,com.appgenix.bizcal +Codrut Bordeanu,https://lh3.googleusercontent.com/a-/AOh14GibvNao_rpwuu8hg4mj-9nN4w4AbG8E68XqrxkpdA,"The most customizable calendar app, well worth the premium money, but even the free version surpassed many other apps in terms of functionality.",5,0,2.37.9,2020-03-01 17:37:09,,,most_relevant,com.appgenix.bizcal +Adrian J Thornton,https://lh3.googleusercontent.com/a-/AOh14GjTj0TQ4_Ooi2ALzBjkSIqOzyT41EriRhTddRnTkeQ,"Simply an excellent App in every way, hassle-free and very easy to use...!",5,0,2.37.9,2020-03-18 11:42:41,,,most_relevant,com.appgenix.bizcal +Gardengirl 47,https://lh3.googleusercontent.com/-WMYFg7cybFM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMGkuXBccKdvnqAENl18nDWMsppAA/photo.jpg,I've only used the free version and have been very pleased. It's easy to add and repeat events. No glitches.,5,0,2.37.5,2020-01-24 12:23:26,,,most_relevant,com.appgenix.bizcal +Marvin Parks,https://lh3.googleusercontent.com/-jN0IAeGSdNk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMiEcEOba9ct9xQx3z4GWP737XENw/photo.jpg,Works very well on android phones. Does not have a steep learning curve.,5,0,2.37.9,2020-03-23 19:39:19,,,most_relevant,com.appgenix.bizcal +Stuart Vander,https://lh3.googleusercontent.com/a-/AOh14GgwhyBe1R1bCcotvBUdBluwiM8LuRbbelbNMdjl4g,This app does a great job of cleaning up the Google Calendar and making it more user-friendly. I use it all the time for my business.,5,0,2.37.9,2020-03-19 12:50:36,,,most_relevant,com.appgenix.bizcal +Samantha Nowell,https://lh3.googleusercontent.com/a-/AOh14GhonNuucXJZJXhd47IirhXBXqrymO9o6n9q_22MKw,"Excellent features, sync with google calendar and easy for multiple users. Reminder feature excellent. Makes remote organisation of diaries a breeze.",5,0,2.37.4,2020-01-18 07:43:40,,,most_relevant,com.appgenix.bizcal +rose may,https://lh3.googleusercontent.com/-1el_QDYiwro/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPD1No5TY_xcgIQU4bPXwGxxoC-Mw/photo.jpg,"fabulous, best calendar app out there, so easy to sort all your appts and the various ways to view make it super simple to stay organized.",5,0,2.37.7,2020-01-30 15:37:01,,,most_relevant,com.appgenix.bizcal +Gregory Peterson,https://lh3.googleusercontent.com/-CRCqBH6zAgw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMd2au13ltynOcPnA4wjZ-REDzW5A/photo.jpg,Excellent app. It has everything I need to manage my time.,5,0,2.37.9,2020-04-06 14:39:55,,,newest,com.appgenix.bizcal +Billy Carter,https://lh3.googleusercontent.com/-H6WhwD2GvQU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMk8y-81Ior0G7znHFk5qJmg6lYMQ/photo.jpg,Like the help it gives :),5,0,2.37.9,2020-04-06 13:21:48,,,newest,com.appgenix.bizcal +Moto Dube,https://lh3.googleusercontent.com/-U1FeeUODpCg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP3Av5OrId6qXXgJanV_1ENls4Wzg/photo.jpg,Great experience,5,0,,2020-04-06 09:15:24,,,newest,com.appgenix.bizcal +R Hol,https://lh3.googleusercontent.com/-rDvxgz2E3J4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO0j8ivCO0zI8IOFWkB4rEeE1e6Qg/photo.jpg,Great App. Use it daily. Very useful,5,0,2.37.9,2020-04-06 04:17:16,,,newest,com.appgenix.bizcal +Fatou Conteh,https://lh3.googleusercontent.com/-60vCae8dW2E/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMfkevEr7weiy599w37BgpsdAReRA/photo.jpg,"Easy to use, previous entry can be access at any point",5,0,2.37.9,2020-04-05 09:37:19,,,newest,com.appgenix.bizcal +yanir boutboul,https://lh3.googleusercontent.com/a-/AOh14Ggrbwju4oJtf1zHWY5olh_zvlwOkgCN_yDk8EljBg,Best app. Using it for 2 years now and its perfect for me,5,0,2.37.9,2020-04-05 07:40:19,,,newest,com.appgenix.bizcal +Vincent Domingo,https://lh3.googleusercontent.com/-hKxX89sqWNE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPKBSPv513LwZG5REHl2bZ2SipzOw/photo.jpg,I have never come across an app like this before. Everything felt so thought out. This definitely helped me organize my work a lot.,5,0,,2020-04-04 12:51:31,,,newest,com.appgenix.bizcal +Keith Hoffman,https://lh3.googleusercontent.com/-REa6RJ15Q50/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPfgdux6Y5o1gv0xqNXTyg3R5G9GA/photo.jpg,Good,5,0,2.37.9,2020-04-03 20:04:16,,,newest,com.appgenix.bizcal +Akin ASA,https://lh3.googleusercontent.com/a-/AOh14GjRmo1M2CxoQW9HS2hXxs-1p1F5Oh48-JXmwv1w5Q,This is a superb organisational app! It met.my.needs when I was hunting around to replace another to do app that failed with an upgrade. I would recommend this to anyone.,5,0,2.37.9,2020-04-03 13:02:14,,,newest,com.appgenix.bizcal +Mohammad Zeeshan,https://lh3.googleusercontent.com/a-/AOh14GhX_86Zg9p5DSmub1TTyEKwbGJHCFPfEdHJm1H-Zw,Very helpful to have reminders and important details at your fingertips. I wish there was a way to have it synch with an app or program on your computer.,5,0,2.37.9,2020-04-03 00:55:06,,,newest,com.appgenix.bizcal +Ry,https://lh3.googleusercontent.com/-c2ng1D1wC8M/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJONv8J18XvD2ymnZ8tTju6WSMjWfw/photo.jpg,Great calendar,5,0,2.37.9,2020-04-02 18:26:33,,,newest,com.appgenix.bizcal +David Underdown,https://lh3.googleusercontent.com/-y0wqnWeqsMA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPwvLC000rmUPl1OeN7YDcA5h81_g/photo.jpg,Great app. 1st one I load when I get a new phone.,5,0,2.37.9,2020-04-02 14:28:25,,,newest,com.appgenix.bizcal +Puga Sharaz Wangi,https://lh3.googleusercontent.com/a-/AOh14Gi0xoCeow_vq9BSwCnUOluQ3q-g3VzR5riBjGi85A,Really help me to organize my schedule ❤,5,0,2.37.9,2020-04-02 08:28:00,,,newest,com.appgenix.bizcal +Valentía López,https://lh3.googleusercontent.com/-oqoythHFTMk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO1Y__gJGOktVbRSfuUGxWwR2HEpg/photo.jpg,Great,5,0,2.37.9,2020-04-02 04:05:21,,,newest,com.appgenix.bizcal +Sergio Dominguez Cobo,https://lh3.googleusercontent.com/a-/AOh14GhwEukVnPANCDg8b3bV4pQHb0QFhDyEU3LPAzfTSg,Very quickly,5,0,2.37.9,2020-04-02 03:21:41,,,newest,com.appgenix.bizcal +Paul Michel,https://lh3.googleusercontent.com/-3azRLAi1kNc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP9gE-J7b84ErjJQbTaj2kBg5pNyg/photo.jpg,luv it,5,0,2.37.9,2020-04-02 01:27:21,,,newest,com.appgenix.bizcal +Essam Elhosseiny,https://lh3.googleusercontent.com/a-/AOh14GhMLy-K1TvCa9uDrf15kj_cPnI009YxMlnTrmXd,Nice,5,0,2.37.9,2020-04-02 00:18:20,,,newest,com.appgenix.bizcal +Joseph Molloy,https://lh3.googleusercontent.com/-sqNcUOjpL54/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMR687RbdUDl5beqdeUUbpgWtKCDQ/photo.jpg,"SIMPLE, WORKS, AND ITS RELIABLE.",5,0,2.37.9,2020-04-01 14:23:32,,,newest,com.appgenix.bizcal +Yvon St Georges,https://lh3.googleusercontent.com/-LHLYcFKS1A0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPN1r9lAm9oo392aW7HX685jB7yzw/photo.jpg,Awesome to use,5,0,2.37.9,2020-04-01 10:52:24,,,newest,com.appgenix.bizcal +Steve Tharp,https://lh3.googleusercontent.com/-R6C3NiEUvYk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMvn5A0j8nlMZfVPOIHStB6G-zosg/photo.jpg,Very useful and and easy to use,5,0,2.37.9,2020-03-31 14:07:23,,,newest,com.appgenix.bizcal +Div -,https://lh3.googleusercontent.com/a-/AOh14GjFjaOjfLhhn3EBHhlqVMmbSeeE9GqymxvifTCs9g,Great for reminders!,5,0,2.37.9,2020-03-31 05:08:03,,,newest,com.appgenix.bizcal +Helen Saraiva,https://lh3.googleusercontent.com/-KH5J9TmOYXY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOJaTn3Lrim3hjKuoeDN4b-hQJbZQ/photo.jpg,Awesome,5,0,2.37.9,2020-03-31 00:35:53,,,newest,com.appgenix.bizcal +Thyra Sinisalo,https://lh3.googleusercontent.com/a-/AOh14GjctU1ZsJKlJbZPN7RXD9SMeKJ-zcwZapA5wm48,I chose this calendar for its widgets which are the best among all the apps I tried. This combined with fine controls are the reasons I haven't looked back for several years now.,5,0,2.37.9,2020-03-29 18:28:07,,,newest,com.appgenix.bizcal +Ken Adams,https://lh3.googleusercontent.com/a-/AOh14GiEG7o7VvlYXYIexLF30RvBiVhUavDfoDGM3ccE,Very good,5,0,2.37.9,2020-03-29 09:07:35,,,newest,com.appgenix.bizcal +Nithin Antony D'Costa,https://lh3.googleusercontent.com/a-/AOh14Gh0u08NXdm_sBC0WbAVFZBFkmtSOmrivPC1davzIA,The application is as I wanted it.,5,0,2.37.9,2020-03-29 03:57:13,,,newest,com.appgenix.bizcal +Alex Le,https://lh3.googleusercontent.com/-rPkV4gnZC_g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMvlUdQQsdx4sYZBKMb1q7UJiAi-w/photo.jpg,Complete with usable widgets,5,0,2.37.9,2020-03-29 01:32:08,,,newest,com.appgenix.bizcal +A. Ellison,https://lh3.googleusercontent.com/-_4CIQ7jtZk0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM2cI1uxIz1l2yE7dCCt6eL6KOOcg/photo.jpg,"Useful, and easy!",5,0,2.37.9,2020-03-28 19:03:54,,,newest,com.appgenix.bizcal +Aleth A. Gayosa,https://lh3.googleusercontent.com/a-/AOh14GgQuSiUotAhfJfIkOgkPhjEg2dutpVH-XAnzHmL-Q,"I've tried different calendar apps for a few years now and this is the one that I have decided to keep for the longest time. The monthly view is very neat, event creation offers a lot of option, and colors are easy om the eyes, too.",5,0,2.37.9,2020-03-28 13:42:52,,,newest,com.appgenix.bizcal +StreeTOpuS production. Chaine Officielle.,https://lh3.googleusercontent.com/-4Wvx0ekh6JU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMNLUQnRlLlUwO4Sz6s4UsPmZgzMQ/photo.jpg,Very good!,5,0,2.37.9,2020-03-28 13:36:52,,,newest,com.appgenix.bizcal +Sunil Bhavsar,https://lh3.googleusercontent.com/a-/AOh14Gg9SY8dgwOJq2ZB9W2VDNDGsLvrsVoLML-n3xlh9w,Surp,5,0,2.37.9,2020-03-28 10:37:10,,,newest,com.appgenix.bizcal +M G,https://lh3.googleusercontent.com/-PMJaoKt61Qs/AAAAAAAAAAI/AAAAAAAAGR8/AAKWJJMloTaDhXKD-h9W89hAnei61TtxJg/photo.jpg,Best calendar app I've come across.,5,0,2.37.9,2020-03-28 06:03:49,,,newest,com.appgenix.bizcal +Michelle Davis,https://lh3.googleusercontent.com/-tny3wHyP1BI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNGvdWOLBK83ZKfK_UMV6tZlZLsbg/photo.jpg,Best planner ever bought the pro edition...it's easy to use and has many convenient functions like tracking overdue tasks.,5,0,2.37.9,2020-03-27 14:43:50,,,newest,com.appgenix.bizcal +Erin J L8in,https://lh3.googleusercontent.com/-WP71r5mIjrk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNHCgonRGPmeNbuwxMRRKYFQoeLlw/photo.jpg,Make my day to day that much easier.😁,5,0,2.37.9,2020-03-27 13:03:18,,,newest,com.appgenix.bizcal +Timothy Lee,https://lh3.googleusercontent.com/a-/AOh14GiBhidE2toZbxpY2vo3oSd5Sc_8errDVtpcYl3OWQ,Great,5,0,2.37.9,2020-03-27 06:44:46,,,newest,com.appgenix.bizcal +Lee Craig,https://lh3.googleusercontent.com/-SkN9STfizO8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOpSkc2q0msLd8-Q4AvUEELGW6PHw/photo.jpg,I have gone between this and the google calendar app. I like this because it expands the features that are missing in google calendar,5,0,2.37.9,2020-03-27 04:34:23,,,newest,com.appgenix.bizcal +Hassan Finge,https://lh3.googleusercontent.com/a-/AOh14Gi-LIrIJhmUrqWBd7bTQrhu229QgrLOxQBWA5bT_A,Excellent app ! Good developper response ! Thanks !,5,1,2.37.9,2020-03-26 21:31:52,,,newest,com.appgenix.bizcal +Tee Kiat Siong,https://lh3.googleusercontent.com/a-/AOh14GiD1C2mgsp1ykpblKD8dBO7IIqFL24mmKokz0gZXg,Best ever calendar I used!,5,0,2.37.9,2020-03-26 08:45:17,,,newest,com.appgenix.bizcal +Pk Axtell,https://lh3.googleusercontent.com/-BS7MRNiBfuw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN1QMVKJ7Oe5AxatYyofh5LMl_zoA/photo.jpg,Easy to use for a big family,5,0,2.37.9,2020-03-26 04:35:32,,,newest,com.appgenix.bizcal +John Mitchell,https://lh3.googleusercontent.com/a-/AOh14GhlmCeKbrIReGuNQOxvoZF_rkFiaZwXDBCLJN54eg,Excellent! Very versatile. I like being able to set multiple reminders and the location.,5,0,2.37.9,2020-03-25 18:02:01,,,newest,com.appgenix.bizcal +Jan Hilt,https://lh3.googleusercontent.com/a-/AOh14GisWCEs0pYTfPDif_3Rq-3x_zXV9BlNMf7M1y1B0g,"Very effective and user friendy. Got it connected to my Gmail, Outlook en work environment.",5,0,2.37.9,2020-03-25 09:59:29,,,newest,com.appgenix.bizcal +g lismore,https://lh3.googleusercontent.com/a-/AOh14GiXv1MBPy57B7eGj8RUHm2ffgtWNfnJo1In_bK8rQ,Best calendar app. Used BC for a few years now and occasionally retried other calendar apps. Found this is still best one out there by far.,5,0,2.37.9,2020-03-25 08:53:19,,,newest,com.appgenix.bizcal +Joe Jumpen,https://lh3.googleusercontent.com/-vkg6frGAaJA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOhTkjp5ZgHnAssCCyTa_BQ9AUixQ/photo.jpg,Versital customizable alert settings.,5,0,2.37.9,2020-03-24 22:01:24,,,newest,com.appgenix.bizcal +Ian Rodbourn,https://lh3.googleusercontent.com/-qhxCzInk4e8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPhxq0-HAh3e8kkrGhMAU1aCZ1UEQ/photo.jpg,I've yet to find a better calendar,5,0,2.37.9,2020-03-24 11:47:45,,,newest,com.appgenix.bizcal +Jaffer Kermalli,https://lh3.googleusercontent.com/a-/AOh14GjgFoNjFWxk9NP1dVcLSp0O7qFKLxi5hNi20gEeCQ,Love it,5,0,2.37.9,2020-03-23 20:25:15,,,newest,com.appgenix.bizcal +Manal Sualim,https://lh3.googleusercontent.com/-fwgx33jXWpY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNGAMCYzzBUOUR3l3aPRZyj4_63GQ/photo.jpg,Good,5,0,2.37.9,2020-03-23 20:22:14,,,newest,com.appgenix.bizcal +Marvin Parks,https://lh3.googleusercontent.com/-jN0IAeGSdNk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMiEcEOba9ct9xQx3z4GWP737XENw/photo.jpg,Works very well on android phones. Does not have a steep learning curve.,5,0,2.37.9,2020-03-23 19:39:19,,,newest,com.appgenix.bizcal +Vernon Thomas,https://lh3.googleusercontent.com/a-/AOh14GgWFd-R03dIJjNWhbM570dOmOr9p0VIV-YMDGQt,Great,5,0,2.37.9,2020-03-23 19:18:26,,,newest,com.appgenix.bizcal +Bryan Cook,https://lh3.googleusercontent.com/a-/AOh14GifdU2j1OIxq5wxdNiNFESdPk0sd3LwD7WmKXKQvw,"This is a great app for my needs, I've got one issue, but not sure how to explain. It's when I look at my daily events, and click on the day, I can't get it to disappear, so I close the app.",5,0,,2020-03-23 17:24:45,,,newest,com.appgenix.bizcal +Jessica Villegas,https://lh3.googleusercontent.com/a-/AOh14GiQqIGMvQlfyv6eyU2GOsuTeFNuXj768KSagugWKg,Easy to use,5,0,2.37.9,2020-03-23 14:44:11,,,newest,com.appgenix.bizcal +Michael Weaver,https://lh3.googleusercontent.com/-rDxGz41y6wg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMu7d_x8FlXvveZ0cXyGMhCSG_IYQ/photo.jpg,Excellent software. I was a long time user of business calendar pro. The font is a bit compressed but shows more information. Very well done. Please keep up the good efforts.,5,0,,2020-03-23 13:53:04,,,newest,com.appgenix.bizcal +Michael Jones,https://lh3.googleusercontent.com/a-/AOh14GivlCm8qRTAalyPYkpOiLSkKTdi92j14bMxEzuVAw,First class calendar,5,0,2.37.9,2020-03-22 13:21:23,,,newest,com.appgenix.bizcal +Emmanuel Devera,https://lh3.googleusercontent.com/a-/AOh14GjQ2qUdUsag_n3MWhYvghxXWWmmvC-Pc-YXtbZS,Great. Have no issues. Recommend to all.,5,0,2.37.9,2020-03-22 08:26:46,,,newest,com.appgenix.bizcal +Ahmed Siyah,https://lh3.googleusercontent.com/a-/AOh14Gj-e2h-8hiPYFFT8iNSxsOsVPM52bdZ5m0L1BBfQw,Good set of features. Works well. Only wish I could display tasks or reminders on the Calendar without a time duration.,5,0,2.37.9,2020-03-22 03:26:00,,,newest,com.appgenix.bizcal +Gregory Riley,https://lh3.googleusercontent.com/-UWdHx5mgjcI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOTN0ul0eaKYzncFkZi4or7eA-pVg/photo.jpg,Helpful app.,5,1,2.37.9,2020-03-21 21:44:01,,,newest,com.appgenix.bizcal +Glenn Davis,https://lh3.googleusercontent.com/-9baMREJwU2E/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMO5-pZnNhoTbleHaqoGr3doQ5diw/photo.jpg,The best calendar ever. I like the way that tasks are included.,5,0,2.37.9,2020-03-21 16:37:04,,,newest,com.appgenix.bizcal +M.A. Motley,https://lh3.googleusercontent.com/-de7eVsXgf8E/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMYfaAsLomotFvgZw62vNF-eK3O8w/photo.jpg,Well pleased with this app.,5,0,2.37.9,2020-03-21 16:09:45,,,newest,com.appgenix.bizcal +Владислав Разгуляев,https://lh3.googleusercontent.com/a-/AOh14GhTmrWx89wDRP6jFIrwA7it3NIbc_Q8RR-xe6C1,Хорошее приложение которое реально помогает в жизни. Нисколько не жалею о покупке платной версии. Спасибо разработчикам!,5,1,2.37.9,2020-03-21 10:35:40,"Hi, you can delete them. Please see here: https://appgenix.uservoice.com/knowledgebase/articles/870639-templates +As for the emoticons there is over 600 of them, so it is a bit more than a few :) Feel however free to post your emoticon suggestions in our user forum.",2019-04-05 10:59:33,newest,com.appgenix.bizcal +George Vinas,https://lh3.googleusercontent.com/-6z_cHY5lQDM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPm57CBUgivkFiFeP20TcAiE2Kj1A/photo.jpg,The best,5,0,2.37.9,2020-03-21 07:57:39,,,newest,com.appgenix.bizcal +hshsurf,https://lh3.googleusercontent.com/a-/AOh14GgaXM7vwoShHhEN0JiXbwnM3RtMdUNjDizN0PlE,Works great!,5,0,2.37.9,2020-03-21 05:03:17,,,newest,com.appgenix.bizcal +Sumit Kumar,https://lh3.googleusercontent.com/-L-BTXUFiyag/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOKg2iNb1WFcBku5s6fmCo0FSXnRA/photo.jpg,It is good aap for making daily routine chart..it help us for work and remind important,5,0,2.37.9,2020-03-21 04:44:51,,,newest,com.appgenix.bizcal +Alasdair Ong,https://lh3.googleusercontent.com/a-/AOh14GiuvMCVwEZ-28_pydmpYZi1bB9ypcL_jTuJdrK7vYk,Every customisable feature you could think of,5,0,2.37.9,2020-03-21 00:27:37,,,newest,com.appgenix.bizcal +Brian Knight,https://lh3.googleusercontent.com/-L_9mjiqmFDQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOLlgsklFokKv8LfcsNk9daUA3FUQ/photo.jpg,"Have had this app for sometime and find it does everything I need both as a retail manager and my home life. Able to customize to suit individual needs, no hesitation in recommending.",5,0,2.37.9,2020-03-20 21:05:21,,,newest,com.appgenix.bizcal +Erik Arneson,https://lh3.googleusercontent.com/a-/AOh14GiMuvwrfDLe0H7n9AQ4CstBXfijSkw9KWyDmlNGgg,I've been using this as a replacement for the default calendar for years. I love it. Very full featured.,5,0,2.37.9,2020-03-20 20:24:45,,,newest,com.appgenix.bizcal +Tomas Kjaer,https://lh3.googleusercontent.com/a-/AOh14GjU6N2qEP8XbuLS_K2mpa71TggJI06Vw-z899iT,Great,5,1,2.37.9,2020-03-20 20:21:22,,,newest,com.appgenix.bizcal +Andreas Madsen,https://lh3.googleusercontent.com/-nTRzZdldbbY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNKTenNfBlKr2wPGSL6RkQarY1fcQ/photo.jpg,"Excellent application, best Calendar I've tried.",5,0,2.37.9,2020-03-20 19:51:30,,,newest,com.appgenix.bizcal +Andrej D,https://lh3.googleusercontent.com/-cJnQDbQoi1Y/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNlaKdTSxsuWByS6GuyKj5oFaB1fQ/photo.jpg,Love the calendar.,5,1,2.37.9,2020-03-20 12:47:22,"Hi, you can change the picker style in in settings - create & edit. When it comes to favorite bar it is scrollable. Additionally you can group your calendars and save space: https://appgenix.uservoice.com/knowledgebase/articles/943993-calendar-groups-categories",2019-07-23 09:59:25,newest,com.appgenix.bizcal +Terri Wishon,https://lh3.googleusercontent.com/-oIh3nWzXJ9U/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNBFN0IS9PSHgSGnPKiLxnZYhlVzQ/photo.jpg,This app meshes well with my Google calendar.,5,0,2.37.9,2020-03-20 12:01:11,,,newest,com.appgenix.bizcal +Heather Gill,https://lh3.googleusercontent.com/a-/AOh14Ghi8jrwzCqeZ331cJPfXBz5p76NGjHO-6flQMHt5g,Fab,5,0,2.37.9,2020-03-20 11:50:15,,,newest,com.appgenix.bizcal +ko be,https://lh3.googleusercontent.com/-zcR0-Lsk73A/AAAAAAAAAAI/AAAAAAAAAXI/AAKWJJOVg80NN_JU7qlbz6WP1Vs8O3syXg/photo.jpg,That's a great app. I have suggestion which would make this app perfect for me. Make option to delay all today's events for 1h (or any other period of time) great anyway,5,0,2.37.9,2020-03-20 09:27:09,,,newest,com.appgenix.bizcal +Gina,https://lh3.googleusercontent.com/-JTmpLA1kzms/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPZ-IZwjtfZ0Tzl5TrLqeWGU7vD3A/photo.jpg,It works great,5,0,2.37.9,2020-03-20 03:23:31,,,newest,com.appgenix.bizcal +AJ Jensen,https://lh3.googleusercontent.com/-NR3p4gbuQZ4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN17vq43dEFCl5nXYMIkAO7BjOEQg/photo.jpg,Very happy with the features of this app,5,0,2.37.9,2020-03-20 03:02:05,,,newest,com.appgenix.bizcal +Cheryl Thomson,https://lh3.googleusercontent.com/-AcstP-QkECM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMlaLXIlqpBn2j5SwAHbfpFl_1nQQ/photo.jpg,Great calendar,5,0,2.37.9,2020-03-19 21:43:10,,,newest,com.appgenix.bizcal +Noel LeChasseur,https://lh3.googleusercontent.com/a-/AOh14Gip1A6_lO3IsrfPuLwWR9hpeCtrElUQNJNpGhhtyA,Excellent calendar I use it regularly.,5,0,2.37.9,2020-03-19 14:01:40,,,newest,com.appgenix.bizcal +Michael French,https://lh3.googleusercontent.com/-RQTrPcvp7ls/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNdy6m8bpoYLj0kEXIzMKsU9fLiWg/photo.jpg,Excellent calendar app. The best.,5,0,,2020-03-19 13:07:23,,,newest,com.appgenix.bizcal +Stuart Vander,https://lh3.googleusercontent.com/a-/AOh14GgwhyBe1R1bCcotvBUdBluwiM8LuRbbelbNMdjl4g,This app does a great job of cleaning up the Google Calendar and making it more user-friendly. I use it all the time for my business.,5,0,2.37.9,2020-03-19 12:50:36,,,newest,com.appgenix.bizcal +Nicholas Wilson,https://lh3.googleusercontent.com/-S4F2I3FGTa8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPrTPYY-jhSWPpSghTzxKxEAOg1gQ/photo.jpg,A user friendly app,5,0,2.37.9,2020-03-19 10:45:55,,,newest,com.appgenix.bizcal +Steph C,https://lh3.googleusercontent.com/-xsNwlvHXcCY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO-BDnJr1fnrRQVOHutp_1AY1BuKw/photo.jpg,"Love this calendar, it has so many options to customize, the widgets are awesome too",5,0,2.37.9,2020-03-19 06:24:19,,,newest,com.appgenix.bizcal +Василий Чемодуров,https://lh3.googleusercontent.com/a-/AOh14GjUhGB-QVSzh1JzsrLbodCRMNBDRRW8CowmZEDO,The best Mobile business calendar ever!,5,0,2.37.9,2020-03-19 03:57:33,,,newest,com.appgenix.bizcal +Lionel Lehmann,https://lh3.googleusercontent.com/a-/AOh14GicROHkk7KTh4qbJlPhOrlWiOwUOC5YzSNSo9sqeA,Just the best calender app. Been using it for years now and has all the features I need. Edit: Still the best!,5,0,2.37.9,2020-03-18 22:01:53,,,newest,com.appgenix.bizcal +professor shelia,https://lh3.googleusercontent.com/-l5flrg_DbmY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNNY5ulVdvWKq7b-c-Jk_zol2TMmw/photo.jpg,Its great!,5,0,2.37.9,2020-03-18 19:44:54,,,newest,com.appgenix.bizcal +Chrystopher Thompson,https://lh3.googleusercontent.com/a-/AOh14GjaV2ycmaGARCQQ0UJuvzzDPYXUA5f_MqS2fS8r,I've been using the app for years and can't think of any improvements.,5,0,2.37.9,2020-03-18 18:09:58,,,newest,com.appgenix.bizcal +Adrian J Thornton,https://lh3.googleusercontent.com/a-/AOh14GjTj0TQ4_Ooi2ALzBjkSIqOzyT41EriRhTddRnTkeQ,"Simply an excellent App in every way, hassle-free and very easy to use...!",5,0,2.37.9,2020-03-18 11:42:41,,,newest,com.appgenix.bizcal +Peter and Margaret Thomson,https://lh3.googleusercontent.com/-TN92Hf_xua4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM4jPYyUESIVE4RvPJIHGgeBujtmg/photo.jpg,"Generally stable, very few issues and does all I need",5,0,2.37.9,2020-03-18 09:55:33,,,newest,com.appgenix.bizcal +Qunetin Robinson,https://lh3.googleusercontent.com/--n0MJTGUrhc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPaNrVWPhPSVOK8IkBSX5Qs329ReQ/photo.jpg,Great app. Synks well with all my calendars.,5,0,2.37.9,2020-03-17 14:06:25,,,newest,com.appgenix.bizcal +Vicki Clearman,https://lh3.googleusercontent.com/-XIsne9VEAzE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOihEh2AQZ0ADNfw50ieJVJQtIu4w/photo.jpg,Love it just need to use it more often,5,0,2.37.9,2020-03-17 13:48:41,,,newest,com.appgenix.bizcal +Luann Burton,https://lh3.googleusercontent.com/a-/AOh14Gj7lc7XK598WiG1E02chvAQ0uV9WF7lBNQx4TlU,This calendar does everything I need it to do. I've enjoyed this app on my Galaxy S7 phone. Now I have an S10. Content will not sync. Is there an S10 version I don't know about? Thanks for your help.,5,1,2.37.9,2020-03-17 05:49:23,,,newest,com.appgenix.bizcal +ChefBoyRD54,https://lh3.googleusercontent.com/a-/AOh14GjYD3yWIGoQHgrEi6Z3IFIoaCYPWVsKrJJ7hNOfTQ,Nice to be able to turn certain calendars on or off.,5,0,2.37.9,2020-03-17 03:39:11,,,newest,com.appgenix.bizcal +Salezx SS,https://lh3.googleusercontent.com/-Q25Se0BGWXM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO7g4_fh-2X3MJbdJ8GzDnMbmLptw/photo.jpg,Now it works,5,0,2.37.9,2020-03-16 15:11:48,It is already possible to use the Drag& Drop function in BC. Please refer here: https://appgenix.uservoice.com/knowledgebase/articles/880773-drag-drop,2018-01-22 11:59:46,newest,com.appgenix.bizcal +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,I searched for quite some time to find a calendar app that my wife and I could share. Business Calendar is an excellent solution. We have it installed on our phones and tablets and all are in sync. No more asking what she is doing today. Thanks BC team.,5,0,2.37.9,2020-03-16 14:24:20,,,newest,com.appgenix.bizcal +l LaChelle Rininger,https://lh3.googleusercontent.com/a-/AOh14GgrwkcL68ssUPQKacbuRDeftUSaH7U_CRp3v6tT,Works good for what I need.,5,0,2.37.9,2020-03-16 12:08:53,,,newest,com.appgenix.bizcal +Abbiday Cornelius,https://lh3.googleusercontent.com/a-/AOh14Gjb0cHAGngxzAFDJ7wkeIV1dIDVChN7BErSAUZqVw,Very useful app. Colourful too,5,0,2.37.9,2020-03-16 09:35:43,,,newest,com.appgenix.bizcal +Panos Papadopoulos,https://lh3.googleusercontent.com/a-/AOh14Gh2fQAybili0WxtL1bOsocIdC3HCL7G-25MRX3dvQ,Love it. User-friendly and intuitive.,5,0,2.37.9,2020-03-16 07:31:27,,,newest,com.appgenix.bizcal +Danny Mullins,https://lh3.googleusercontent.com/a-/AOh14Gh6-kw2lVtabTdmppIWJq5efdqN6lF7LYqx6ErRhw,Like it a lot. Easy to use. Easy to edit events ... Great variety of views. Daily calendar for me.,5,0,2.37.9,2020-03-15 20:19:56,,,newest,com.appgenix.bizcal +Neal Stone,https://lh3.googleusercontent.com/a-/AOh14GhLbPdEAPk8QInZ-QUa6XkO557CHFpO_xfW8c4K4Q,Beautiful. Large text and easy to use . Well done!!!,5,0,2.37.9,2020-03-15 19:17:47,,,newest,com.appgenix.bizcal +Anthony Kirchner,https://lh3.googleusercontent.com/-hHsL-bgpPEE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNlT4lOOesnFr6-ieBrO2TfI3WKlQ/photo.jpg,Intelligent intuitive design! This is how I would have designed one for myself.,5,0,2.37.9,2020-03-15 18:09:47,,,newest,com.appgenix.bizcal +Dan Mayers,https://lh3.googleusercontent.com/a-/AOh14GgjLGo389zJtqh0yXHJhqHA90Id9GUD3mbRAmN55g,"Still using the app, still happy with it.",5,0,2.37.9,2020-03-15 16:08:22,,,newest,com.appgenix.bizcal +Vivekanand Gupta,https://lh3.googleusercontent.com/a-/AOh14GgScBMHJuVWg9cv67uw3B8xctf9NytCfQu4yVhtiQ,"It has been six months since my purchase of pro version of this app and I am writing this review as gratitude to the developers. Though, many of my favorite features have been added to default Google calender app, this one still is my default. The diversity and configurability of widgets has been of particular help to me in managing my personal and professional tasks. Another feature that I had used extensively is feature of repeated tasks, that have helped me in forming few good habits.",5,1,2.37.9,2020-03-15 15:32:47,,,newest,com.appgenix.bizcal +Christina Tabet,https://lh3.googleusercontent.com/-q_tLhnVgP-Y/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPcZY0bkTnnYo0CYOgEUptw3oZtZg/photo.jpg,Great app.,5,0,2.37.9,2020-03-15 09:57:17,,,newest,com.appgenix.bizcal +Giuliano Carraro,https://lh3.googleusercontent.com/a-/AOh14Ghiz94Xs2SvqgnQ0EXn8193LqRZDtCRQ-jRVP8k8g,"If you want to organize your day/week, this is the app for you.",5,0,2.37.9,2020-03-14 13:22:59,,,newest,com.appgenix.bizcal +Atsunori Ito,https://lh3.googleusercontent.com/a-/AOh14Gi_veHZQnF_NrlrvSzTntG_aKHPrwyalUs3TFjt,I love the drag and drop feature,5,0,2.37.9,2020-03-14 00:47:44,,,newest,com.appgenix.bizcal +Eric Karie,https://lh3.googleusercontent.com/a-/AOh14GgYcjnhx77g3vjPNApQ5stiHEuQP40aKk1x9P0Our4,The reason I am giving this 1 star is because of its unreliability! I purchased this app for my android phone and my Mac desktop. It is very frustrating that the same app on my Mac IS NOT updating with my phone!!! This app is absolutely useless to me when I cannot see events that I have put in in real time even after I refreshing the app. Very disappointing! And kinda pissed off that I paid good money for this app!,1,27,4.7.1,2020-02-03 17:33:05,,,most_relevant,com.appxy.planner +Lori Tedrick,https://lh3.googleusercontent.com/-DVrWUmgtGi8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPGUiABXcaihi8sFaV_Lb7_A4EJlw/photo.jpg,Cannot get it to work on my Huawei P20. I have tried 3 times and cannot get it to sign in. It looks like it works fine on my iPad because I can sign up and get in but on my phone I am unable to do either. I needed something that I could use on both devices but am unable to get into in ob my phone,1,11,4.7.1,2020-02-01 22:11:12,,,most_relevant,com.appxy.planner +Danielle Nelson,https://lh3.googleusercontent.com/a-/AOh14GigNTXGSj7ljpo46gjQPCrFr6lATqB8OJ7AjYa8,I loaded the app on to my Amazon Fire. It will only display horizontally and I dont have the export option even though I have the Premium subscription. I can't export my Task list either.,1,10,4.7.1,2020-01-16 19:27:50,,,most_relevant,com.appxy.planner +Carol Casey,https://lh3.googleusercontent.com/a-/AOh14GgafQt5FvY513yQ7i9ovQod-XbXkW0Fq9sodZ_RcQ,"Extremely Disappointed. I had been a faithful user of this app and loved it. Then all of sudden everything changed. There is no cloud support. The tabs option is gone. There is no interface with established tasks list. I have tried and tried to use. I contacted support and they replied that due to streamlining the app it has a completely new appearance. I had uninstalled this app, however I felt I needed to write thos review. After I finish this, uninstalling this app. Useless to me.",1,1,4.7,2020-02-11 17:28:42,,,most_relevant,com.appxy.planner +Michelle Garrecht,https://lh3.googleusercontent.com/-p1GGZnrs4Ho/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMQOARUfSpawSIIgMjW6te1I_nzEQ/photo.jpg,"I use to love this app. It is the perfect organizer with great features. However for the last month+ it barely opens. I am lucky if it will actually open twice a day. The app will say not responding, opens to a black page, or doesn't do anything but freeze my phone momentarily. My life is saved into this app so I am so frustrated!!",1,0,,2020-01-12 23:52:55,,,most_relevant,com.appxy.planner +MV C,https://lh3.googleusercontent.com/a-/AOh14GjZsL8K_b3tFr_TLYLFetGxYZTCVaul9_OSfL_c,NOTE TO SELF::: The demo version of this app is totally useless - so there is no way of knowing if this product will be able to meet my needs BEFORE paying for the premium version. I'll find another way to get my needs met. I'm sure there are other products available for free that would do the same things. Since I'm not allowed to testdrive all the bells and whistles - I am passing this app over. No thanks. UNINSTALLING.,1,3,,2019-11-10 20:59:51,,,most_relevant,com.appxy.planner +Alma Worden,https://lh3.googleusercontent.com/-cPOd7QC7-JI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPb7lgxQE0bHcaUNsKIp0xmR5PHOA/photo.jpg,"Too many ads, and it doesn't automatically save your work. Also, everytime I exit, and reopen it, it brings me to a different page than I was on.",1,0,4.7,2020-01-31 01:03:55,,,most_relevant,com.appxy.planner +Kynzie Alvarez,https://lh3.googleusercontent.com/a-/AOh14GiVh9dsGa37n5kgrm90qpmJ267y-LPy4G76Tnq2,I was really excited about this app but when I went to create an account it did not work. I tried logging in with my google account but it still didn't work. I am very disappointed,1,1,4.7,2020-01-29 23:34:47,,,most_relevant,com.appxy.planner +Chantal Breedt,https://lh3.googleusercontent.com/-LYSvjKUPd0U/AAAAAAAAAAI/AAAAAAAADK4/AAKWJJMLWWxPd4hEGLznxiwUT47UlXI_8g/photo.jpg,Doesn't look like the pictures at all. Exact same layout as your phone's calendar. Now new settings etc. Waste of time app.,1,1,4.7,2020-02-19 08:22:05,,,most_relevant,com.appxy.planner +Katherine Tyson,https://lh3.googleusercontent.com/a-/AOh14GgvVkeySDTt1iGgDYFhk8iBYwQSPgISMIiJzAUR1w,"This app used to be great. Now it is garbage. A few months ago it started doubling a few tasks - no problem, I just delete the extras. Now I get 5 to 10 copies of every task I delete. It is worthless. I can't forget the wait times to open the app, up to 8 minutes of staring at a black screen. Oh, and the fact that in the past week or two it started giving me ads even though I have been using the paid version for years already. I let them know a couple weeks ago and got no response.",1,14,4.5.4,2019-01-31 00:52:24,,,most_relevant,com.appxy.planner +Caroline Collins,https://lh3.googleusercontent.com/a-/AOh14GiA9fPA3jod6HQjnQXWB9uCmuI7BhPHV8vCs4FH,"I liked this app, even paid for it, but uninstalled it today due to weird behavior. I see two other reviews here with a similar problem. The app will periodically launch itself, but it's just a black screen, and it creates a copy of my home screen - looks the same but frozen until I hit the close button, then the copy scrolls away and I can again use my phone. Just odd.",1,8,,2019-05-09 23:31:13,,,most_relevant,com.appxy.planner +Joseph Durborow,https://lh3.googleusercontent.com/-VJ9L_5vYtV4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMZrvhraGFAV5WbXaOMsFUS3Do-9A/photo.jpg,"I have used this app for years. I have always paid for the premium version. At first, it was my favorite app, but it has gotten steadily worse. Now it is very glitchy. It closes randomly and typically takes up to three minutes to open which is very embarrassing when I'm trying to set an appointment with a customer. It also randomly unchecks completed tasks and reverts to older versions of my schedule. The developers are uncaring and blame my phone (Note 8). I'm looking for a new app.",1,17,4.5.7,2019-07-03 12:19:29,,,most_relevant,com.appxy.planner +Jody Olson,https://lh3.googleusercontent.com/-wUVEz5AsPH8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOPyiaiOOYbZ81KcrzW62wWaqnm7A/photo.jpg,"I tried adding the pro for $7.99 because I thought you could set daily reminders by just marking repeat daily it doesn't do that or any of the things I was hoping for, I have had it less than 24 hours and would like a refund, I have sent emails asking for help and haven't received anything back so I just want my money back and this app gone!",1,2,4.4.1,2018-11-03 08:41:41,,,most_relevant,com.appxy.planner +Tammy Bradley,https://lh3.googleusercontent.com/a-/AOh14GgaQ3sWbydwYwiN7G2e3XCam9Ds8ebWq8_04BPIoA,"I have had this app for 2 years and absolutely loved it, after an update it would cut on automatically and freeze my phone. I would have to hit the open apps and close it before I could do anything with my phone. I have emailed and explained what it was doing, and I get am email wanting more explanation, so I did. several days later I get an email that wants a video showing. I don't think this will get fixed i paid for the pro version and i will not renew",1,32,4.5.7,2019-04-28 01:42:50,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,I thought upgrading and paying the $8 fee would allow me to use all of the functions of this app. It does not. I Haven't been able to sync any of my devices . Absolutely will not let me add an event. This was a waste of time and money. If I can't add my schedule on my lap top version then there's no point to this app. Plus there's no support or anyone to contact to help trouble shoot or credit me back .,1,14,4.5.4,2019-01-04 18:03:32,,,most_relevant,com.appxy.planner +Hailey Fox,https://lh3.googleusercontent.com/a-/AOh14Gjv2MxO80K9U37_yb1i2mRsB-WYfXMjHOj3eVIxvw,the app opens it self up whenever it wants to display an ad but the screen remains the same but i cant press anything. so it just opens up in the background all day long to display ads and make money when im not even using the app. this feature is ridiculous and it started happening every 5 minutes as opposed to every now and then so i just deleted the app.,1,3,4.5.4,2019-07-06 16:40:36,,,most_relevant,com.appxy.planner +Tammy B,https://lh3.googleusercontent.com/a-/AOh14Gjj9m3wjaDTcP_0jT2p3WP5EhcWxS1XSkmf00GomQ,Got a new phone and app now won't allow me to hit sign in button. Customer service is very slow to respond to help. Love the app for last 2 / 3 yrs but not being able to use now is not worth my $$$ paid for it & to think it just renewed,1,41,4.7,2019-10-09 00:18:55,,,most_relevant,com.appxy.planner +B&J Rootbeer,https://lh3.googleusercontent.com/a-/AOh14GinXjNfkeOZFOihPDu_klJZK3_XM_oSYtqxOS5k,"In order to actually use the app as a planner, you have to pay money. Very misleading and dissapointing.",1,1,,2020-01-12 23:58:56,,,most_relevant,com.appxy.planner +Smitten Kitten25,https://lh3.googleusercontent.com/-VqIPwvMgMg8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNNIoKZ5DAv7GMTu8xE9Xp9SiZ6ew/photo.jpg,It won't allow you to create an account with e-mail address and password. Why give you the option but then doesn't work when you use it. If not resolved within a week uninstalling app.,1,16,4.7,2019-10-12 01:04:07,,,most_relevant,com.appxy.planner +Rita Kelly,https://lh3.googleusercontent.com/a-/AOh14Gi5zXOvCBx4k6y5BNXQUvE8yh12Pvq_dD2yNsJTGg,This basically is just a purple version of Google calendar. It has the almost exact same layout as Google calendar without any extra features. I wanted to use this as planner for school seperate from my calendar but there was no way to have it not sync with Google. Don't bother getting this app just use calendar directly.,1,1,,2018-10-04 19:46:47,,,most_relevant,com.appxy.planner +Jealousy Snell,https://lh3.googleusercontent.com/a-/AOh14GiSOFgaFhfUfcfTYtTd2Naz56WXIpPUNly892h4anI,"Was great at first, but a new bug makes it so that every time I unlock my phone i have to press the “home” button twice to be able to use my phone at all. I know that it is this app causing the problem as when I click on the recently used apps tab after the bug occurs, this app is always the only one shown. I will have to uninstall now because of this.",1,42,4.5.7,2019-07-07 09:19:22,,,most_relevant,com.appxy.planner +Jake Yt,https://lh3.googleusercontent.com/a-/AOh14GiVKYDmxX006n3UnB4Cd2tKG0pRJkVzQXeg13UW,"Lmao this app is so bad. Setting events is a pain, time zones don't work, the from time and to time of an event don't work. If you trust this app for your planning. I'm sure you'd go mad because of missing important meetings due to wrong time setting. Just use Microsoft Outlook etc and pay for it. This one is a waste of time",1,2,,2019-10-17 12:08:10,,,most_relevant,com.appxy.planner +T G,https://lh3.googleusercontent.com/a-/AOh14GhF9JUZ3J7VeYcxMIBP2Hpqc2kTN1YUawrb6Gc,don't bother with this planner app. there are lots of other apps that do the same thing. this app has intrusive ads thats pop up at random. if you close the app and open a different app planner pro will open a pop up on the new app your using. seriously don't even bother with this BS,1,28,4.5.4,2018-12-11 13:25:47,,,most_relevant,com.appxy.planner +Jennifer Hutchison,https://lh3.googleusercontent.com/a-/AOh14GjcNAhIXfotSh7hBZxNtEFVfpv6dcQ57oClZGuq3Yo,Can't sign in. And there are reviews from October saying the same. So... No improvement over months of having the same issue.,1,0,,2019-12-09 22:26:18,,,most_relevant,com.appxy.planner +Peter Smith,https://lh3.googleusercontent.com/-PHo6YomkqTE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOccj1__Mf15TyhNoRJ3hh8yGiSAg/photo.jpg,Doesn't work offline. requires internet and information. So not personal as it is over the internet. Sorry did not get past first screen requiring sign up... UNINSTALLED.,1,42,4.7,2019-12-23 13:58:26,,,most_relevant,com.appxy.planner +Strwbry M,https://lh3.googleusercontent.com/a-/AOh14Gh4QBI0dcOou3E3cqtmWniFqkVL_tZQ_rCG20fqow,This app is not worth the $6 a year. Poorly developed with several glitches.,1,1,4.7,2020-01-03 17:37:47,,,most_relevant,com.appxy.planner +Jayme Yeager,https://lh3.googleusercontent.com/a-/AOh14Gh8EItqcX-SRETy-oKysVy4BEhXKB1iGlthWjo8NQ,Could not get the app to save event time properly. All I wanted was to put a due date between 11:50 p.m. and 11:59 p.m. on a certain day. WOULD NOT do it. The app kept automatically changing my times. That's annoying enough for me to ditch it and move on.,1,2,,2019-01-19 17:54:47,,,most_relevant,com.appxy.planner +SERENE .I,https://lh3.googleusercontent.com/a-/AOh14Gi5zdeS6BHpmtdzRILo5kdY2l3HcdzmzM81E9dN,"could be better. pls fix the 'repeat' setting where i could accually pick the exact date and time. for example i have to study during mondays, tuesdays and fridays at 8 pm. the app isn't very specific about it deeming it useless to me. hoping for a better update.",1,2,4.5.7,2019-07-16 17:10:41,,,most_relevant,com.appxy.planner +Rina Guerra,https://lh3.googleusercontent.com/a-/AOh14GgIsIiQVL-aGthxLnBl20u8cHk92Tjcwz7vsEKJcQ,I can't get a refund and the app doesn't work. Google play is zero help and I can't reach a developer! I've been robbed.,1,1,4.7,2020-01-21 20:25:23,,,most_relevant,com.appxy.planner +Arbiang Gizelle,https://lh3.googleusercontent.com/a-/AOh14GizQHCU5jN1g4Tm9_fN1oeqqI6KYLdQVAqjob8EFw,"I have been using this for more than a year now, it was great, this is where i jot down notes on my classes and meetings, but this new update may have a bug i cant access it even with the correct pin i have entered Pls fix this issue, thanks",1,3,4.5.1,2018-11-04 21:40:02,,,most_relevant,com.appxy.planner +Heather Leyva,https://lh3.googleusercontent.com/a-/AOh14GjQp4jC2w-MAsvDANHI8nnNux0_Wjd_F9J4B8bZBw,App became unusable with 11/06/18 update. Now the app takes 30-45 to open up after I click it and then I'm get an annoying ad that plays that I can't close for another 5-10 seconds. I'll be finding a new calendar app.,1,7,4.5.2,2018-11-08 19:49:20,,,most_relevant,com.appxy.planner +Tiffany Lytle,https://lh3.googleusercontent.com/-dpbasGqwjBY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNFGQL9nuB55pP56qfxrrLKrpL2lg/photo.jpg,"This app sucks if you dont have the Pro version. I only had for a few min and couldn't do more than add a task. I tried to add an event, and wanted to sync chromebook to cell but it wouldn't let me.",1,37,4.5.4,2018-11-29 19:29:41,,,most_relevant,com.appxy.planner +Helen Meyrick,https://lh3.googleusercontent.com/a-/AOh14Gga1ZClGqoeS0qsi0Oj4RtfLry0d0HF1HwhGIpH,This is a great planner but I'm really annoyed that having previously paid for the Pro version I am now expected to pay an annual fee!!!,1,12,4.5.7,2019-05-19 07:22:30,,,most_relevant,com.appxy.planner +Amber Randall,https://lh3.googleusercontent.com/-yoLOfd7nfPY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMCHLFpcQ17jMkdMSq6wlNexRkyjA/photo.jpg,ANNOYED paid for this years ago PAID full version and used it and recommended it! Now I am asked to pay YEARLY to remove ads! what joke! I paid for full add free version already and there is nothing new to justify the yearly purchase...,1,173,4.5.7,2019-04-27 23:34:21,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,I received a notice from planner pro this morning when I went to schedule some appts. it notifies me I cannot use the app until payment received. iI checked my bank and payment was made on 01/26/2019. I will be cancelling as unable to use.,1,4,4.5.4,2019-01-28 17:34:26,,,most_relevant,com.appxy.planner +Princess Abayan,https://lh3.googleusercontent.com/a-/AOh14Gg9xgyp8nkmOd3A9WHCseCoNJvbQvZZAChKkO7OLw,I would give 5 if bug is fixed. It automatically opens showing black and unresponsive app pop up when it is not actually opened. Please fix. This is for Samsung S10e.,1,7,4.5.7,2019-05-20 08:30:47,,,most_relevant,com.appxy.planner +Sandy Kochenower,https://lh3.googleusercontent.com/a-/AOh14GgGY-u5PP08TclwugRq_V8K11WUvEhD82QTaxmNjw,Will not accept passcode after today's update. Have been a paid user for some time and NEED my info back. Please fix and I will update my review. Useless to me until resolved.,1,7,4.5.1,2018-11-01 15:47:08,,,most_relevant,com.appxy.planner +Mr Inoa,https://lh3.googleusercontent.com/a-/AOh14Gi2VQhvLE6rayanXE--urU8KtLZQFBGDru_0-Ge5g,Infested with ads now. Downloaded to specifically view one calendar and set it so but it automatically syncs my Samsung and gmail calendars automatically every time I open it.,1,2,4.5.1,2018-11-12 18:18:12,,,most_relevant,com.appxy.planner +Scarlet Weltz,https://lh3.googleusercontent.com/a-/AOh14GiddSogypbi3QjNzTTzrgMNLtTsPt-W606wRuelSA,it's simple enough to set up a task or event..but not once has it reminded me as set to. so looking for one that will.,1,1,,2019-03-21 07:43:37,,,most_relevant,com.appxy.planner +Thabo S,https://lh3.googleusercontent.com/a-/AOh14GiThCDIXb0jr4KiqQX794_Gz_OZT35Y9wChQ1Eq-w,NOVEMBER updates broke a lot of functionalities. Please fix guys. - choosing alert notification sounds - ability to close off tasks on notification bar - lost full purchase info,1,5,4.5.1,2018-11-05 08:17:10,,,most_relevant,com.appxy.planner +Kelli Currie,https://lh3.googleusercontent.com/a-/AOh14GgYL8hf-1FUITxY8A7VNkNjVuBTPpLHAroRsj_kig,Does not integrate well across multiple cross-platform devices; more upsetting to discover this after paying for the app.,1,1,4.5.4,2018-11-29 22:59:32,,,most_relevant,com.appxy.planner +Federico Alcala,https://lh3.googleusercontent.com/a-/AOh14GiqhLPZdgywIZGrRBMXbP9aD7m5DhHpIBPmrEAvVA,This app launches itself with an invisible overlay over my home screen. That is EXTREMELY suspect behavior and therefore uninstalling.,1,7,4.5.5,2019-04-25 19:41:08,,,most_relevant,com.appxy.planner +Amal Mohan,https://lh3.googleusercontent.com/a-/AOh14Giy4ITmdP9anQirERXti5H3lfXe3-npdqiM5cD1448,Shows annoying full screen ads that pop up from time to time!,1,2,4.5.4,2018-12-29 18:54:53,,,most_relevant,com.appxy.planner +Oswin Anderson,https://lh3.googleusercontent.com/-Q0k_fTIyrSs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNUjsubiArcCO4Zhqi5k49cduz6og/photo.jpg,"Rollback, right after editing.. pls fix this!",1,0,4.7,2020-01-28 17:52:00,,,most_relevant,com.appxy.planner +Breanna Brown,https://lh3.googleusercontent.com/a-/AOh14Gioar9qtFCPn_mD8doEEVWuBj8dwDn57jlTRPv2fQ,"I liked it at first, even paid for it too but now it won't sync across my devices so I need to find something else that will",1,1,4.4.1,2018-09-13 20:38:49,,,most_relevant,com.appxy.planner +Artem D,https://lh3.googleusercontent.com/a-/AOh14GgeESrvM-lGCgYJ2js1yi7qvk_fJZ5gI2E_ha5Q,Amazingly useful app with horrible glitches every week when all checked tasks become undone and overdue and default calendar changed by itself.,1,2,4.5.4,2019-01-18 13:20:43,,,most_relevant,com.appxy.planner +b sh,https://lh3.googleusercontent.com/-AElx2H1CGqw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMfrRs3MzjFFjUL6cAPCYT8xn5r8Q/photo.jpg,Closing and crashing when adding tasks and project. Support answering but doesn't help.,1,0,4.3.7,2019-10-01 15:59:31,,,most_relevant,com.appxy.planner +Andi,https://lh3.googleusercontent.com/-8C4YxWDCutA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMAMuALqZ1k_Bwfjaunr7UL8itFLg/photo.jpg,Can't get account created. Tried linking facebook and straight account creation... will not let me progress past sign in page.,1,0,,2019-01-22 16:50:21,,,most_relevant,com.appxy.planner +Khairi Azlie,https://lh3.googleusercontent.com/a-/AOh14GjxqPMDfsGdlVRzUMKdkRxF1_DjUoNjDRVNlJFj,Please fixed it. Why i can't login my passcode. Damnly. Alot of doc i ve save inside,1,1,4.5.1,2018-11-05 12:33:55,,,most_relevant,com.appxy.planner +Najlae Saab,https://lh3.googleusercontent.com/-5MIKw5k95Bs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOZ1xj6ByiAZHDRfztYuBDSwLMrBQ/photo.jpg,I cannot even create an account I fill in what's needed and I'm pressing the button and it's not working some1 help.,1,2,4.5.7,2019-06-04 10:06:59,,,most_relevant,com.appxy.planner +Iza Maljevac,https://lh3.googleusercontent.com/-1Jk3WV20QTM/AAAAAAAAAAI/AAAAAAAACdQ/AAKWJJPAsGnFulZEGHtJEO1FXT8grj4XVA/photo.jpg,I can't get new password. It sends message: email is not available.,1,3,4.5.5,2019-04-22 20:27:43,,,most_relevant,com.appxy.planner +Cristy Nored,https://lh3.googleusercontent.com/-0RmhKVk22jQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP4TDWOBSDBAFF88_6l115jM3XFEg/photo.jpg,"over basic, definitely not worth 200 per year. pictures shown are not what the app looks like.",1,5,4.5.7,2019-07-08 17:49:44,,,most_relevant,com.appxy.planner +Nova Rodriguez,https://lh3.googleusercontent.com/-BTB696YNgyo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOZmdDGAVyi_oN9vilTTwQMj88Mkg/photo.jpg,"Suddenly not displaying all other calendars. And after reinstalling, app won't open.",1,17,4.6,2019-08-29 05:22:07,,,most_relevant,com.appxy.planner +Gary R. Gravley,https://lh3.googleusercontent.com/a-/AOh14GgZNzGjonGaje1CuWkj77ossE9mYum0YZxrYsIv,"when opening a sub-task from any view, the sub-task window does not even show the main list/task it is from",1,0,4.5.4,2019-02-13 02:45:40,,,most_relevant,com.appxy.planner +fyreman blanchard,https://lh3.googleusercontent.com/-7Ctz-AxxKYM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNPfb_CuBmkVEoby_66CYrqv-Q9WA/photo.jpg,"Closes everytime I try to add a note, event or anything else since last update",1,6,4.6,2019-09-03 19:24:49,,,most_relevant,com.appxy.planner +Susan Smythe,https://lh3.googleusercontent.com/-YP7nbHjfSBs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMEGEF7gb2Pd_s7pMW7q4HN_3lNTg/photo.jpg,took $ before the renewal date. have not recieved my refund and canceled on the due date.,1,1,,2019-06-30 10:35:04,,,most_relevant,com.appxy.planner +Black Diamond Drywall Ltd.,https://lh3.googleusercontent.com/a-/AOh14GgfYdjfMV9215M6waOTZJlYGQ0x7ztWDrFgECZq,uninstalled once i realized there are ads and it wipes your current Google calendar.,1,0,4.5.4,2018-12-31 03:23:05,,,most_relevant,com.appxy.planner +Jim,https://lh3.googleusercontent.com/a-/AOh14GhIXYAbfJV94OnDqgc8g36eBmg1JMMh_XZQh3Zbaw,well I just got it and attempted to.create an account and after unfilled out the info it would not submit it. what gives,1,0,4.5.7,2019-08-12 03:18:24,,,most_relevant,com.appxy.planner +Kelly Porter,https://lh3.googleusercontent.com/-oMqoJcJuJyo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPF6O0JcbEXrZ1YKzHa6ibIKw1iAA/photo.jpg,I couldn't even make an account. It wont work,1,0,,2020-02-14 08:11:17,,,most_relevant,com.appxy.planner +Elliott,https://lh3.googleusercontent.com/a-/AOh14Gg0Mn-fglhCNj1byJWHoTcIxsQ_v8eKnQGSnUsZj6E,"purchased the plus version and now with the update to pro, I no longer have my premium features.",1,3,4.5.8,2019-06-27 05:47:31,,,most_relevant,com.appxy.planner +Saucer QUEEN,https://lh3.googleusercontent.com/a-/AOh14GjFPqeMA3IWuh7204buWhCbMm46uZjkq7Uig8XT1w,"Doesn't update changes live or correctly, even. Was a waste of money for some basic app.",1,1,,2019-07-02 14:33:00,,,most_relevant,com.appxy.planner +michael newcombe,https://lh3.googleusercontent.com/a-/AOh14Gj0HQitkawE2FPheRkqu0KeXokXa_qdPtC_JcaECA,Cannot log in on other devices.,1,0,4.5.4,2019-01-30 20:02:36,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"uninstalled, it interferes with my normal Google calendar.",1,2,4.5.4,2018-12-18 20:54:21,,,most_relevant,com.appxy.planner +Stephanie Nichol,https://lh3.googleusercontent.com/a-/AOh14GgKHbX-gfzP-iljrQviKU7kJ1v7KcUUA1OF6iWo8w,Couldn't even create a log in.,1,0,,2019-11-25 06:15:45,,,most_relevant,com.appxy.planner +tmntlover 349,https://lh3.googleusercontent.com/a-/AOh14Gj_AMwrJ_WQVoObbrWEwZ-L9L15xxW5_HIqAkDR4g,"I lost all of my notes, and it wouldn't accept my passcode to get in any more so I deleted it and installed it again, then logged in and all of my stuff was gone. Please help, I need it back.",1,5,4.5.2,2018-11-11 03:33:17,,,most_relevant,com.appxy.planner +Lindsay Mulligan,https://lh3.googleusercontent.com/-wNiUQaUc7IQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOFvHAK7-xott37BIISXkmvTwxuHw/photo.jpg,The app does not work after last nights update,1,2,4.6,2019-08-29 10:11:54,,,most_relevant,com.appxy.planner +Fish4Him Entertainment,https://lh3.googleusercontent.com/a-/AOh14GjWsj3Empsk4R_lr23WfhI0w0JAZnifwFKYXSs32g,It says you are downloading the pro version which is a complete lie.,1,0,4.4.1,2018-10-15 23:46:56,,,most_relevant,com.appxy.planner +Finding Discipline,https://lh3.googleusercontent.com/a-/AOh14GgsfPqtpYEvc5zRZNz0tlIsIhZWNDonY7I0l3v1Sg,Completed tasks continue to reappear,1,1,4.7,2019-11-04 17:32:31,,,most_relevant,com.appxy.planner +Anon ymous,https://lh3.googleusercontent.com/a-/AOh14Gja-XIa8f3Tiw6SydXnPWCvGdcqXwcpXt5yVQ556Q,Why does this basic app need access to my contacts and refuse to work without? Give me a break you filthy parasites.,1,5,4.7,2019-10-02 03:52:41,,,most_relevant,com.appxy.planner +Sarah Simmons,https://lh3.googleusercontent.com/a-/AOh14GjwuWrX681-2WBhLITitPIKDVRAImvYcGgjYZT-,I see no difference in this and Google calendar,1,0,,2020-02-13 15:04:43,,,most_relevant,com.appxy.planner +gresham ellie,https://lh3.googleusercontent.com/-6wqg5hpJ9jk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMcgCzxABmEm1jZGCRum12y2F1tUg/photo.jpg,App has stopped opening,1,2,4.6,2019-08-29 07:33:56,,,most_relevant,com.appxy.planner +Makenzie Martinez,https://lh3.googleusercontent.com/-y8YVFbjFZbQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNBmpacHAkIQ7V_aTEPZtk1Qi57Pg/photo.jpg,I couldn't even log in,1,0,,2019-12-22 22:42:57,,,most_relevant,com.appxy.planner +Partho Protim,https://lh3.googleusercontent.com/a-/AOh14GgX0HHfIKzTh-vIoDWosB15bBMvOidBh4SFKi3HAg,1 star for obligatory signup using Google /fb/twitter.,1,0,4.7,2020-01-01 10:56:32,,,most_relevant,com.appxy.planner +Tabitha McGee,https://lh3.googleusercontent.com/-_RmtE9ZXFq8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMShymdYiiUAkb2N7E1qjA2b-waSA/photo.jpg,Would not let me create a log in.,1,0,,2020-01-06 17:29:04,,,most_relevant,com.appxy.planner +Mike Ricker,https://lh3.googleusercontent.com/a-/AOh14Gg2IqvzBjLTxbF-m6W8RzYKehWzGm3aOKBC_TqWiA,Want use only not sharing,1,1,4.5.4,2018-12-15 01:41:18,,,most_relevant,com.appxy.planner +Jamie Swanson,https://lh3.googleusercontent.com/-Qi4Lkxz-vnk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOlhqC4YSRxxmId2ZCWctbSUn9VwA/photo.jpg,"Nope,all i ever wanted was to keep track of my stuff durring winter break,and no im an eight year old,and i have to enter an email,please god no god save this app",1,0,4.7,2019-12-20 21:34:37,,,most_relevant,com.appxy.planner +Gary Lekay,https://lh3.googleusercontent.com/-G5c7HbFeEo4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN8pq3ezKLNbr0qrxGNACwNApsoEQ/photo.jpg,Cannot access the app,1,1,4.4.1,2018-11-04 19:44:05,,,most_relevant,com.appxy.planner +John Weston,https://lh3.googleusercontent.com/-vnUdnNsCVLM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNXB7DAJ8JolrGQvecue_be7Ia9Aw/photo.jpg,Too complicated when putting on data. I'll stay with my diary.,1,0,,2019-09-03 19:55:33,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Won't even let me make a new account. Unusable.,1,0,4.5.4,2019-01-23 00:44:48,,,most_relevant,com.appxy.planner +Chris Lyttle,https://lh3.googleusercontent.com/-PkowBrzHNf8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPAaVSroatk8DZiWpDNl_pPK9RQUA/photo.jpg,wouldnt let me make an regular account without linking something to it.,1,0,4.5.7,2019-08-14 21:59:23,,,most_relevant,com.appxy.planner +Jake Majors,https://lh3.googleusercontent.com/-n9IoNVSaRCI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMuP30OQbSYj59S7-piQ-maIvyWRw/photo.jpg,Trash dont waste ur time unless u want to pay for the things that should b free,1,0,,2019-12-06 22:19:35,,,most_relevant,com.appxy.planner +Richard Davis,https://lh3.googleusercontent.com/-HT1vLxEqc7Q/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPUBbLIzWmElrcmLBrAI_41DpTicA/photo.jpg,"This is just a re-skinned Samsung calendar, don't waste your time",1,0,,2019-09-02 23:58:05,,,most_relevant,com.appxy.planner +Kamie Michaels,https://lh3.googleusercontent.com/a-/AOh14Gg1sPzE0KTXxbh3Y-Q-OMfukH1DpnLkugMZehN9vA,Who puts ads on a calendar?! Y'all that desperate for money smh.,1,0,4.5.4,2018-12-05 14:18:18,,,most_relevant,com.appxy.planner +Oli Baltensperger,https://lh3.googleusercontent.com/a-/AOh14GgbtBS0AXpJfV9mC7SxJFKvppVdDWr_3shLtnY19w,This app deleted my whole google calender,1,1,,2018-12-13 13:28:46,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,cant use if i dont allow permission for contacts? dumb,1,1,4.5.4,2019-02-06 06:26:49,,,most_relevant,com.appxy.planner +Elegance on any Budget,https://lh3.googleusercontent.com/a-/AOh14GgXbnl3b3SB3j8S_o2dNxmlxmzlm6Yh9RHybHpG2g,I don't care for the dashboard,1,0,,2019-12-01 20:07:58,,,most_relevant,com.appxy.planner +Ruth Araya,https://lh3.googleusercontent.com/-J-aaJXLAr7E/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNVoPdtFeMr1CeFuiMXmPI35dxRqA/photo.jpg,will not be using ever again.,1,0,,2019-06-21 12:45:32,,,most_relevant,com.appxy.planner +Gary Pearce,https://lh3.googleusercontent.com/-jNDMjqql5yc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN0FegnY_O1ePMtZYCy7QLEsD0o4g/photo.jpg,Piece of poo,1,0,,2019-11-19 04:56:15,,,most_relevant,com.appxy.planner +Myeesha Pasovio,https://lh3.googleusercontent.com/a-/AOh14Gj3b08jlLzFN0I7CDmpzxOl0p7iCp1fWRCYh1fV,Not as advertised,1,0,4.6,2019-09-04 20:59:44,,,most_relevant,com.appxy.planner +Ditti The Doll,https://lh3.googleusercontent.com/a-/AOh14GjuqVKJ0jHakQlgkcJQc1Yr1gK_NlwJIp4NIKJq,Lousy app,1,0,4.7.1,2020-01-18 04:28:11,,,most_relevant,com.appxy.planner +Kevin White,https://lh3.googleusercontent.com/a-/AOh14GjzUcnYjHvY7tUWsiJuyCXym6L5FAG69xhY6nVsgg,"So disappointing!!! I used to love this app bit over the last few months it is Sooooooo glitchy! I just spent an hour deleting and checking off tasks from my to do list and everytime I think Im done, they show back up in triplicate!! Everything I changed IS STILL THERE AFTER AN HOUR!!! DOES THAT SOUND LIKE A GOOD TIME MANAGEMENT PROGRAM????? AND NO WAY TO CONTACT SUPPORT BECAUSE WHEN I TRY TO GET TO THE MENU IT SHOWS A BLACK SCREEN!!!!!",1,1,4.7,2019-12-08 02:10:41,,,most_relevant,com.appxy.planner +PEWnitive DAMNage,https://lh3.googleusercontent.com/a-/AOh14Gj4tSQDR2u0qwcUBQ19ZG9ln-dYgtc9uo7SM0_1,"I loved this app, but until they get rid of the yearly charge after making us buy it to begin with I'll keep this at a 1. I did previously have this as 5 star, but I can't stand companies doing stuff like this.",1,0,4.5.7,2019-06-02 21:27:30,,,most_relevant,com.appxy.planner +Dylan Staniforth,https://lh3.googleusercontent.com/a-/AOh14GjoM8CilqG9T3IXYqrpLslhpczLjKb1dCZ_ryTK,",infoo",1,0,4.5.6,2019-04-25 00:27:48,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,i hate it😠,1,0,4.5.4,2019-01-05 20:04:00,,,most_relevant,com.appxy.planner +Tara Nowotny,https://lh3.googleusercontent.com/-XgpcFJbiSIQ/AAAAAAAAAAI/AAAAAAAAChc/AAKWJJOr5EbfE9bCSpVRkMnl_JvUDddvoA/photo.jpg,"Started my account with outlook and went to put it on my phone apparently +forgot password so hit forgot password and it said I didn't have an account +so I went back to my tablet and it told me the same thing. I even put a pin +in my phone and the pin was right, but it had deleted everything all the +same and told me again I didn't have an account after making another new +one. This app would be great if it didn't delete everything all the time. I +would have recommended it before all this happened but not any more",1,20,4.4.1,2018-08-08 20:59:22,,,most_relevant,com.appxy.planner +Joe Laing,https://lh3.googleusercontent.com/a-/AOh14GjchQkw8spncg5XGn-OjlH4CCPwkw4OJDL6UH7bYw,"A negative experience. I wasn't using it and forgot about it until it was renewing. I didn't port it over to a new phone and it seems you can't cancel the app except through the app. This means I would have to install it on my new phone, give it permission to access my information, then cancel the subscription and uninstall it. Other apps on my phone with subscriptions I can cancel through Google Play. Apparently not this one.",1,10,4.4.1,2018-09-04 17:01:59,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Don't bother unless you pay them($7.99yr) they don't offer a +trial(suspicious) and you get NO access to features without paying. Too +many other apps just like this that are much cheaper and let you TRY the +pay version before paying.",1,25,4.4.1,2018-05-19 12:55:19,,,most_relevant,com.appxy.planner +Daniel Moore,https://lh3.googleusercontent.com/a-/AOh14GhAXOchin8Yr5uku083rWirZ7BeyNWf73-zc_VQgA,Absolutely terrible customer service. They refused after several years to fix the 9.7 tablet aspect ratio. For a paying customer this is absolutely poor customer service has never work properly once don't buy those that run away,1,6,4.4.1,2018-09-12 19:10:41,,,most_relevant,com.appxy.planner +Jaitee Spencer-Partlow,https://lh3.googleusercontent.com/a-/AOh14GgSNeCllFwxai3dshIDjgb1DUumPhbOGj9UQ_HQ,"I wanted a calendar app to keep track of business appointments separate +from my personal appointments; however, this app automatically synced with +my other calendar, combining all appointments. I have reached out to them +for assistance but recieved no help. Very disappointed.",1,7,4.4.1,2018-05-13 03:59:09,,,most_relevant,com.appxy.planner +Michael Wisenbach,https://lh3.googleusercontent.com/a-/AOh14GgLcGhwnuczaKdRZOv3mAhqyYCbWfwOlwoeVfZDcg,"Used the trial but it consistently asks for a pin to open it. I have no pin +for it. I have installed and uninstalled it multiple times with the same +result. If the free version doesn't work, I won't be spending money on a +full version!",1,3,4.4.1,2018-06-30 18:54:53,,,most_relevant,com.appxy.planner +Chantal Breedt,https://lh3.googleusercontent.com/-LYSvjKUPd0U/AAAAAAAAAAI/AAAAAAAADK4/AAKWJJMLWWxPd4hEGLznxiwUT47UlXI_8g/photo.jpg,Doesn't look like the pictures at all. Exact same layout as your phone's calendar. Now new settings etc. Waste of time app.,1,1,4.7,2020-02-19 08:22:05,,,newest,com.appxy.planner +Kelly Porter,https://lh3.googleusercontent.com/-oMqoJcJuJyo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPF6O0JcbEXrZ1YKzHa6ibIKw1iAA/photo.jpg,I couldn't even make an account. It wont work,1,0,,2020-02-14 08:11:17,,,newest,com.appxy.planner +Sarah Simmons,https://lh3.googleusercontent.com/a-/AOh14GjwuWrX681-2WBhLITitPIKDVRAImvYcGgjYZT-,I see no difference in this and Google calendar,1,0,,2020-02-13 15:04:43,,,newest,com.appxy.planner +Carol Casey,https://lh3.googleusercontent.com/a-/AOh14GgafQt5FvY513yQ7i9ovQod-XbXkW0Fq9sodZ_RcQ,"Extremely Disappointed. I had been a faithful user of this app and loved it. Then all of sudden everything changed. There is no cloud support. The tabs option is gone. There is no interface with established tasks list. I have tried and tried to use. I contacted support and they replied that due to streamlining the app it has a completely new appearance. I had uninstalled this app, however I felt I needed to write thos review. After I finish this, uninstalling this app. Useless to me.",1,1,4.7,2020-02-11 17:28:42,,,newest,com.appxy.planner +Eric Karie,https://lh3.googleusercontent.com/a-/AOh14GgYcjnhx77g3vjPNApQ5stiHEuQP40aKk1x9P0Our4,The reason I am giving this 1 star is because of its unreliability! I purchased this app for my android phone and my Mac desktop. It is very frustrating that the same app on my Mac IS NOT updating with my phone!!! This app is absolutely useless to me when I cannot see events that I have put in in real time even after I refreshing the app. Very disappointing! And kinda pissed off that I paid good money for this app!,1,27,4.7.1,2020-02-03 17:33:05,,,newest,com.appxy.planner +Lori Tedrick,https://lh3.googleusercontent.com/-DVrWUmgtGi8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPGUiABXcaihi8sFaV_Lb7_A4EJlw/photo.jpg,Cannot get it to work on my Huawei P20. I have tried 3 times and cannot get it to sign in. It looks like it works fine on my iPad because I can sign up and get in but on my phone I am unable to do either. I needed something that I could use on both devices but am unable to get into in ob my phone,1,11,4.7.1,2020-02-01 22:11:12,,,newest,com.appxy.planner +Alma Worden,https://lh3.googleusercontent.com/-cPOd7QC7-JI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPb7lgxQE0bHcaUNsKIp0xmR5PHOA/photo.jpg,"Too many ads, and it doesn't automatically save your work. Also, everytime I exit, and reopen it, it brings me to a different page than I was on.",1,0,4.7,2020-01-31 01:03:55,,,newest,com.appxy.planner +Kynzie Alvarez,https://lh3.googleusercontent.com/a-/AOh14GiVh9dsGa37n5kgrm90qpmJ267y-LPy4G76Tnq2,I was really excited about this app but when I went to create an account it did not work. I tried logging in with my google account but it still didn't work. I am very disappointed,1,1,4.7,2020-01-29 23:34:47,,,newest,com.appxy.planner +Oswin Anderson,https://lh3.googleusercontent.com/-Q0k_fTIyrSs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNUjsubiArcCO4Zhqi5k49cduz6og/photo.jpg,"Rollback, right after editing.. pls fix this!",1,0,4.7,2020-01-28 17:52:00,,,newest,com.appxy.planner +Rina Guerra,https://lh3.googleusercontent.com/a-/AOh14GgIsIiQVL-aGthxLnBl20u8cHk92Tjcwz7vsEKJcQ,I can't get a refund and the app doesn't work. Google play is zero help and I can't reach a developer! I've been robbed.,1,1,4.7,2020-01-21 20:25:23,,,newest,com.appxy.planner +Ditti The Doll,https://lh3.googleusercontent.com/a-/AOh14GjuqVKJ0jHakQlgkcJQc1Yr1gK_NlwJIp4NIKJq,Lousy app,1,0,4.7.1,2020-01-18 04:28:11,,,newest,com.appxy.planner +Danielle Nelson,https://lh3.googleusercontent.com/a-/AOh14GigNTXGSj7ljpo46gjQPCrFr6lATqB8OJ7AjYa8,I loaded the app on to my Amazon Fire. It will only display horizontally and I dont have the export option even though I have the Premium subscription. I can't export my Task list either.,1,10,4.7.1,2020-01-16 19:27:50,,,newest,com.appxy.planner +B&J Rootbeer,https://lh3.googleusercontent.com/a-/AOh14GinXjNfkeOZFOihPDu_klJZK3_XM_oSYtqxOS5k,"In order to actually use the app as a planner, you have to pay money. Very misleading and dissapointing.",1,1,,2020-01-12 23:58:56,,,newest,com.appxy.planner +Michelle Garrecht,https://lh3.googleusercontent.com/-p1GGZnrs4Ho/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMQOARUfSpawSIIgMjW6te1I_nzEQ/photo.jpg,"I use to love this app. It is the perfect organizer with great features. However for the last month+ it barely opens. I am lucky if it will actually open twice a day. The app will say not responding, opens to a black page, or doesn't do anything but freeze my phone momentarily. My life is saved into this app so I am so frustrated!!",1,0,,2020-01-12 23:52:55,,,newest,com.appxy.planner +Tabitha McGee,https://lh3.googleusercontent.com/-_RmtE9ZXFq8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMShymdYiiUAkb2N7E1qjA2b-waSA/photo.jpg,Would not let me create a log in.,1,0,,2020-01-06 17:29:04,,,newest,com.appxy.planner +Strwbry M,https://lh3.googleusercontent.com/a-/AOh14Gh4QBI0dcOou3E3cqtmWniFqkVL_tZQ_rCG20fqow,This app is not worth the $6 a year. Poorly developed with several glitches.,1,1,4.7,2020-01-03 17:37:47,,,newest,com.appxy.planner +Partho Protim,https://lh3.googleusercontent.com/a-/AOh14GgX0HHfIKzTh-vIoDWosB15bBMvOidBh4SFKi3HAg,1 star for obligatory signup using Google /fb/twitter.,1,0,4.7,2020-01-01 10:56:32,,,newest,com.appxy.planner +Peter Smith,https://lh3.googleusercontent.com/-PHo6YomkqTE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOccj1__Mf15TyhNoRJ3hh8yGiSAg/photo.jpg,Doesn't work offline. requires internet and information. So not personal as it is over the internet. Sorry did not get past first screen requiring sign up... UNINSTALLED.,1,42,4.7,2019-12-23 13:58:26,,,newest,com.appxy.planner +Makenzie Martinez,https://lh3.googleusercontent.com/-y8YVFbjFZbQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNBmpacHAkIQ7V_aTEPZtk1Qi57Pg/photo.jpg,I couldn't even log in,1,0,,2019-12-22 22:42:57,,,newest,com.appxy.planner +Jamie Swanson,https://lh3.googleusercontent.com/-Qi4Lkxz-vnk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOlhqC4YSRxxmId2ZCWctbSUn9VwA/photo.jpg,"Nope,all i ever wanted was to keep track of my stuff durring winter break,and no im an eight year old,and i have to enter an email,please god no god save this app",1,0,4.7,2019-12-20 21:34:37,,,newest,com.appxy.planner +Jennifer Hutchison,https://lh3.googleusercontent.com/a-/AOh14GjcNAhIXfotSh7hBZxNtEFVfpv6dcQ57oClZGuq3Yo,Can't sign in. And there are reviews from October saying the same. So... No improvement over months of having the same issue.,1,0,,2019-12-09 22:26:18,,,newest,com.appxy.planner +Kevin White,https://lh3.googleusercontent.com/a-/AOh14GjzUcnYjHvY7tUWsiJuyCXym6L5FAG69xhY6nVsgg,"So disappointing!!! I used to love this app bit over the last few months it is Sooooooo glitchy! I just spent an hour deleting and checking off tasks from my to do list and everytime I think Im done, they show back up in triplicate!! Everything I changed IS STILL THERE AFTER AN HOUR!!! DOES THAT SOUND LIKE A GOOD TIME MANAGEMENT PROGRAM????? AND NO WAY TO CONTACT SUPPORT BECAUSE WHEN I TRY TO GET TO THE MENU IT SHOWS A BLACK SCREEN!!!!!",1,1,4.7,2019-12-08 02:10:41,,,newest,com.appxy.planner +Jake Majors,https://lh3.googleusercontent.com/-n9IoNVSaRCI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMuP30OQbSYj59S7-piQ-maIvyWRw/photo.jpg,Trash dont waste ur time unless u want to pay for the things that should b free,1,0,,2019-12-06 22:19:35,,,newest,com.appxy.planner +Elegance on any Budget,https://lh3.googleusercontent.com/a-/AOh14GgXbnl3b3SB3j8S_o2dNxmlxmzlm6Yh9RHybHpG2g,I don't care for the dashboard,1,0,,2019-12-01 20:07:58,,,newest,com.appxy.planner +Stephanie Nichol,https://lh3.googleusercontent.com/a-/AOh14GgKHbX-gfzP-iljrQviKU7kJ1v7KcUUA1OF6iWo8w,Couldn't even create a log in.,1,0,,2019-11-25 06:15:45,,,newest,com.appxy.planner +Gary Pearce,https://lh3.googleusercontent.com/-jNDMjqql5yc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN0FegnY_O1ePMtZYCy7QLEsD0o4g/photo.jpg,Piece of poo,1,0,,2019-11-19 04:56:15,,,newest,com.appxy.planner +MV C,https://lh3.googleusercontent.com/a-/AOh14GjZsL8K_b3tFr_TLYLFetGxYZTCVaul9_OSfL_c,NOTE TO SELF::: The demo version of this app is totally useless - so there is no way of knowing if this product will be able to meet my needs BEFORE paying for the premium version. I'll find another way to get my needs met. I'm sure there are other products available for free that would do the same things. Since I'm not allowed to testdrive all the bells and whistles - I am passing this app over. No thanks. UNINSTALLING.,1,3,,2019-11-10 20:59:51,,,newest,com.appxy.planner +Finding Discipline,https://lh3.googleusercontent.com/a-/AOh14GgsfPqtpYEvc5zRZNz0tlIsIhZWNDonY7I0l3v1Sg,Completed tasks continue to reappear,1,1,4.7,2019-11-04 17:32:31,,,newest,com.appxy.planner +Jake Yt,https://lh3.googleusercontent.com/a-/AOh14GiVKYDmxX006n3UnB4Cd2tKG0pRJkVzQXeg13UW,"Lmao this app is so bad. Setting events is a pain, time zones don't work, the from time and to time of an event don't work. If you trust this app for your planning. I'm sure you'd go mad because of missing important meetings due to wrong time setting. Just use Microsoft Outlook etc and pay for it. This one is a waste of time",1,2,,2019-10-17 12:08:10,,,newest,com.appxy.planner +Smitten Kitten25,https://lh3.googleusercontent.com/-VqIPwvMgMg8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNNIoKZ5DAv7GMTu8xE9Xp9SiZ6ew/photo.jpg,It won't allow you to create an account with e-mail address and password. Why give you the option but then doesn't work when you use it. If not resolved within a week uninstalling app.,1,16,4.7,2019-10-12 01:04:07,,,newest,com.appxy.planner +Tammy B,https://lh3.googleusercontent.com/a-/AOh14Gjj9m3wjaDTcP_0jT2p3WP5EhcWxS1XSkmf00GomQ,Got a new phone and app now won't allow me to hit sign in button. Customer service is very slow to respond to help. Love the app for last 2 / 3 yrs but not being able to use now is not worth my $$$ paid for it & to think it just renewed,1,41,4.7,2019-10-09 00:18:55,,,newest,com.appxy.planner +Anon ymous,https://lh3.googleusercontent.com/a-/AOh14Gja-XIa8f3Tiw6SydXnPWCvGdcqXwcpXt5yVQ556Q,Why does this basic app need access to my contacts and refuse to work without? Give me a break you filthy parasites.,1,5,4.7,2019-10-02 03:52:41,,,newest,com.appxy.planner +b sh,https://lh3.googleusercontent.com/-AElx2H1CGqw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMfrRs3MzjFFjUL6cAPCYT8xn5r8Q/photo.jpg,Closing and crashing when adding tasks and project. Support answering but doesn't help.,1,0,4.3.7,2019-10-01 15:59:31,,,newest,com.appxy.planner +Myeesha Pasovio,https://lh3.googleusercontent.com/a-/AOh14Gj3b08jlLzFN0I7CDmpzxOl0p7iCp1fWRCYh1fV,Not as advertised,1,0,4.6,2019-09-04 20:59:44,,,newest,com.appxy.planner +John Weston,https://lh3.googleusercontent.com/-vnUdnNsCVLM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNXB7DAJ8JolrGQvecue_be7Ia9Aw/photo.jpg,Too complicated when putting on data. I'll stay with my diary.,1,0,,2019-09-03 19:55:33,,,newest,com.appxy.planner +fyreman blanchard,https://lh3.googleusercontent.com/-7Ctz-AxxKYM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNPfb_CuBmkVEoby_66CYrqv-Q9WA/photo.jpg,"Closes everytime I try to add a note, event or anything else since last update",1,6,4.6,2019-09-03 19:24:49,,,newest,com.appxy.planner +Richard Davis,https://lh3.googleusercontent.com/-HT1vLxEqc7Q/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPUBbLIzWmElrcmLBrAI_41DpTicA/photo.jpg,"This is just a re-skinned Samsung calendar, don't waste your time",1,0,,2019-09-02 23:58:05,,,newest,com.appxy.planner +Lindsay Mulligan,https://lh3.googleusercontent.com/-wNiUQaUc7IQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOFvHAK7-xott37BIISXkmvTwxuHw/photo.jpg,The app does not work after last nights update,1,2,4.6,2019-08-29 10:11:54,,,newest,com.appxy.planner +gresham ellie,https://lh3.googleusercontent.com/-6wqg5hpJ9jk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMcgCzxABmEm1jZGCRum12y2F1tUg/photo.jpg,App has stopped opening,1,2,4.6,2019-08-29 07:33:56,,,newest,com.appxy.planner +Nova Rodriguez,https://lh3.googleusercontent.com/-BTB696YNgyo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOZmdDGAVyi_oN9vilTTwQMj88Mkg/photo.jpg,"Suddenly not displaying all other calendars. And after reinstalling, app won't open.",1,17,4.6,2019-08-29 05:22:07,,,newest,com.appxy.planner +Chris Lyttle,https://lh3.googleusercontent.com/-PkowBrzHNf8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPAaVSroatk8DZiWpDNl_pPK9RQUA/photo.jpg,wouldnt let me make an regular account without linking something to it.,1,0,4.5.7,2019-08-14 21:59:23,,,newest,com.appxy.planner +Jim,https://lh3.googleusercontent.com/a-/AOh14GhIXYAbfJV94OnDqgc8g36eBmg1JMMh_XZQh3Zbaw,well I just got it and attempted to.create an account and after unfilled out the info it would not submit it. what gives,1,0,4.5.7,2019-08-12 03:18:24,,,newest,com.appxy.planner +SERENE .I,https://lh3.googleusercontent.com/a-/AOh14Gi5zdeS6BHpmtdzRILo5kdY2l3HcdzmzM81E9dN,"could be better. pls fix the 'repeat' setting where i could accually pick the exact date and time. for example i have to study during mondays, tuesdays and fridays at 8 pm. the app isn't very specific about it deeming it useless to me. hoping for a better update.",1,2,4.5.7,2019-07-16 17:10:41,,,newest,com.appxy.planner +Cristy Nored,https://lh3.googleusercontent.com/-0RmhKVk22jQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP4TDWOBSDBAFF88_6l115jM3XFEg/photo.jpg,"over basic, definitely not worth 200 per year. pictures shown are not what the app looks like.",1,5,4.5.7,2019-07-08 17:49:44,,,newest,com.appxy.planner +Jealousy Snell,https://lh3.googleusercontent.com/a-/AOh14GiSOFgaFhfUfcfTYtTd2Naz56WXIpPUNly892h4anI,"Was great at first, but a new bug makes it so that every time I unlock my phone i have to press the “home” button twice to be able to use my phone at all. I know that it is this app causing the problem as when I click on the recently used apps tab after the bug occurs, this app is always the only one shown. I will have to uninstall now because of this.",1,42,4.5.7,2019-07-07 09:19:22,,,newest,com.appxy.planner +Hailey Fox,https://lh3.googleusercontent.com/a-/AOh14Gjv2MxO80K9U37_yb1i2mRsB-WYfXMjHOj3eVIxvw,the app opens it self up whenever it wants to display an ad but the screen remains the same but i cant press anything. so it just opens up in the background all day long to display ads and make money when im not even using the app. this feature is ridiculous and it started happening every 5 minutes as opposed to every now and then so i just deleted the app.,1,3,4.5.4,2019-07-06 16:40:36,,,newest,com.appxy.planner +Joseph Durborow,https://lh3.googleusercontent.com/-VJ9L_5vYtV4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMZrvhraGFAV5WbXaOMsFUS3Do-9A/photo.jpg,"I have used this app for years. I have always paid for the premium version. At first, it was my favorite app, but it has gotten steadily worse. Now it is very glitchy. It closes randomly and typically takes up to three minutes to open which is very embarrassing when I'm trying to set an appointment with a customer. It also randomly unchecks completed tasks and reverts to older versions of my schedule. The developers are uncaring and blame my phone (Note 8). I'm looking for a new app.",1,17,4.5.7,2019-07-03 12:19:29,,,newest,com.appxy.planner +Saucer QUEEN,https://lh3.googleusercontent.com/a-/AOh14GjFPqeMA3IWuh7204buWhCbMm46uZjkq7Uig8XT1w,"Doesn't update changes live or correctly, even. Was a waste of money for some basic app.",1,1,,2019-07-02 14:33:00,,,newest,com.appxy.planner +Susan Smythe,https://lh3.googleusercontent.com/-YP7nbHjfSBs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMEGEF7gb2Pd_s7pMW7q4HN_3lNTg/photo.jpg,took $ before the renewal date. have not recieved my refund and canceled on the due date.,1,1,,2019-06-30 10:35:04,,,newest,com.appxy.planner +Elliott,https://lh3.googleusercontent.com/a-/AOh14Gg0Mn-fglhCNj1byJWHoTcIxsQ_v8eKnQGSnUsZj6E,"purchased the plus version and now with the update to pro, I no longer have my premium features.",1,3,4.5.8,2019-06-27 05:47:31,,,newest,com.appxy.planner +Ruth Araya,https://lh3.googleusercontent.com/-J-aaJXLAr7E/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNVoPdtFeMr1CeFuiMXmPI35dxRqA/photo.jpg,will not be using ever again.,1,0,,2019-06-21 12:45:32,,,newest,com.appxy.planner +Najlae Saab,https://lh3.googleusercontent.com/-5MIKw5k95Bs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOZ1xj6ByiAZHDRfztYuBDSwLMrBQ/photo.jpg,I cannot even create an account I fill in what's needed and I'm pressing the button and it's not working some1 help.,1,2,4.5.7,2019-06-04 10:06:59,,,newest,com.appxy.planner +PEWnitive DAMNage,https://lh3.googleusercontent.com/a-/AOh14Gj4tSQDR2u0qwcUBQ19ZG9ln-dYgtc9uo7SM0_1,"I loved this app, but until they get rid of the yearly charge after making us buy it to begin with I'll keep this at a 1. I did previously have this as 5 star, but I can't stand companies doing stuff like this.",1,0,4.5.7,2019-06-02 21:27:30,,,newest,com.appxy.planner +Leigh Eureka,https://lh3.googleusercontent.com/--BQjdPDrD2I/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMArF441V_h-2UkXowzI3DmI5s4GQ/photo.jpg,not great.....,1,0,,2019-05-26 04:47:06,,,newest,com.appxy.planner +Princess Abayan,https://lh3.googleusercontent.com/a-/AOh14Gg9xgyp8nkmOd3A9WHCseCoNJvbQvZZAChKkO7OLw,I would give 5 if bug is fixed. It automatically opens showing black and unresponsive app pop up when it is not actually opened. Please fix. This is for Samsung S10e.,1,7,4.5.7,2019-05-20 08:30:47,,,newest,com.appxy.planner +Helen Meyrick,https://lh3.googleusercontent.com/a-/AOh14Gga1ZClGqoeS0qsi0Oj4RtfLry0d0HF1HwhGIpH,This is a great planner but I'm really annoyed that having previously paid for the Pro version I am now expected to pay an annual fee!!!,1,12,4.5.7,2019-05-19 07:22:30,,,newest,com.appxy.planner +Caroline Collins,https://lh3.googleusercontent.com/a-/AOh14GiA9fPA3jod6HQjnQXWB9uCmuI7BhPHV8vCs4FH,"I liked this app, even paid for it, but uninstalled it today due to weird behavior. I see two other reviews here with a similar problem. The app will periodically launch itself, but it's just a black screen, and it creates a copy of my home screen - looks the same but frozen until I hit the close button, then the copy scrolls away and I can again use my phone. Just odd.",1,8,,2019-05-09 23:31:13,,,newest,com.appxy.planner +Tammy Bradley,https://lh3.googleusercontent.com/a-/AOh14GgaQ3sWbydwYwiN7G2e3XCam9Ds8ebWq8_04BPIoA,"I have had this app for 2 years and absolutely loved it, after an update it would cut on automatically and freeze my phone. I would have to hit the open apps and close it before I could do anything with my phone. I have emailed and explained what it was doing, and I get am email wanting more explanation, so I did. several days later I get an email that wants a video showing. I don't think this will get fixed i paid for the pro version and i will not renew",1,32,4.5.7,2019-04-28 01:42:50,,,newest,com.appxy.planner +Amber Randall,https://lh3.googleusercontent.com/-yoLOfd7nfPY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMCHLFpcQ17jMkdMSq6wlNexRkyjA/photo.jpg,ANNOYED paid for this years ago PAID full version and used it and recommended it! Now I am asked to pay YEARLY to remove ads! what joke! I paid for full add free version already and there is nothing new to justify the yearly purchase...,1,173,4.5.7,2019-04-27 23:34:21,,,newest,com.appxy.planner +Federico Alcala,https://lh3.googleusercontent.com/a-/AOh14GiqhLPZdgywIZGrRBMXbP9aD7m5DhHpIBPmrEAvVA,This app launches itself with an invisible overlay over my home screen. That is EXTREMELY suspect behavior and therefore uninstalling.,1,7,4.5.5,2019-04-25 19:41:08,,,newest,com.appxy.planner +Dylan Staniforth,https://lh3.googleusercontent.com/a-/AOh14GjoM8CilqG9T3IXYqrpLslhpczLjKb1dCZ_ryTK,",infoo",1,0,4.5.6,2019-04-25 00:27:48,,,newest,com.appxy.planner +Iza Maljevac,https://lh3.googleusercontent.com/-1Jk3WV20QTM/AAAAAAAAAAI/AAAAAAAACdQ/AAKWJJPAsGnFulZEGHtJEO1FXT8grj4XVA/photo.jpg,I can't get new password. It sends message: email is not available.,1,3,4.5.5,2019-04-22 20:27:43,,,newest,com.appxy.planner +Scarlet Weltz,https://lh3.googleusercontent.com/a-/AOh14GiddSogypbi3QjNzTTzrgMNLtTsPt-W606wRuelSA,it's simple enough to set up a task or event..but not once has it reminded me as set to. so looking for one that will.,1,1,,2019-03-21 07:43:37,,,newest,com.appxy.planner +Gary R. Gravley,https://lh3.googleusercontent.com/a-/AOh14GgZNzGjonGaje1CuWkj77ossE9mYum0YZxrYsIv,"when opening a sub-task from any view, the sub-task window does not even show the main list/task it is from",1,0,4.5.4,2019-02-13 02:45:40,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,cant use if i dont allow permission for contacts? dumb,1,1,4.5.4,2019-02-06 06:26:49,,,newest,com.appxy.planner +Katherine Tyson,https://lh3.googleusercontent.com/a-/AOh14GgvVkeySDTt1iGgDYFhk8iBYwQSPgISMIiJzAUR1w,"This app used to be great. Now it is garbage. A few months ago it started doubling a few tasks - no problem, I just delete the extras. Now I get 5 to 10 copies of every task I delete. It is worthless. I can't forget the wait times to open the app, up to 8 minutes of staring at a black screen. Oh, and the fact that in the past week or two it started giving me ads even though I have been using the paid version for years already. I let them know a couple weeks ago and got no response.",1,14,4.5.4,2019-01-31 00:52:24,,,newest,com.appxy.planner +michael newcombe,https://lh3.googleusercontent.com/a-/AOh14Gj0HQitkawE2FPheRkqu0KeXokXa_qdPtC_JcaECA,Cannot log in on other devices.,1,0,4.5.4,2019-01-30 20:02:36,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,I received a notice from planner pro this morning when I went to schedule some appts. it notifies me I cannot use the app until payment received. iI checked my bank and payment was made on 01/26/2019. I will be cancelling as unable to use.,1,4,4.5.4,2019-01-28 17:34:26,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Won't even let me make a new account. Unusable.,1,0,4.5.4,2019-01-23 00:44:48,,,newest,com.appxy.planner +Andi,https://lh3.googleusercontent.com/-8C4YxWDCutA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMAMuALqZ1k_Bwfjaunr7UL8itFLg/photo.jpg,Can't get account created. Tried linking facebook and straight account creation... will not let me progress past sign in page.,1,0,,2019-01-22 16:50:21,,,newest,com.appxy.planner +Jayme Yeager,https://lh3.googleusercontent.com/a-/AOh14Gh8EItqcX-SRETy-oKysVy4BEhXKB1iGlthWjo8NQ,Could not get the app to save event time properly. All I wanted was to put a due date between 11:50 p.m. and 11:59 p.m. on a certain day. WOULD NOT do it. The app kept automatically changing my times. That's annoying enough for me to ditch it and move on.,1,2,,2019-01-19 17:54:47,,,newest,com.appxy.planner +Artem D,https://lh3.googleusercontent.com/a-/AOh14GgeESrvM-lGCgYJ2js1yi7qvk_fJZ5gI2E_ha5Q,Amazingly useful app with horrible glitches every week when all checked tasks become undone and overdue and default calendar changed by itself.,1,2,4.5.4,2019-01-18 13:20:43,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,i hate it😠,1,0,4.5.4,2019-01-05 20:04:00,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,I thought upgrading and paying the $8 fee would allow me to use all of the functions of this app. It does not. I Haven't been able to sync any of my devices . Absolutely will not let me add an event. This was a waste of time and money. If I can't add my schedule on my lap top version then there's no point to this app. Plus there's no support or anyone to contact to help trouble shoot or credit me back .,1,14,4.5.4,2019-01-04 18:03:32,,,newest,com.appxy.planner +Black Diamond Drywall Ltd.,https://lh3.googleusercontent.com/a-/AOh14GgfYdjfMV9215M6waOTZJlYGQ0x7ztWDrFgECZq,uninstalled once i realized there are ads and it wipes your current Google calendar.,1,0,4.5.4,2018-12-31 03:23:05,,,newest,com.appxy.planner +Amal Mohan,https://lh3.googleusercontent.com/a-/AOh14Giy4ITmdP9anQirERXti5H3lfXe3-npdqiM5cD1448,Shows annoying full screen ads that pop up from time to time!,1,2,4.5.4,2018-12-29 18:54:53,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"uninstalled, it interferes with my normal Google calendar.",1,2,4.5.4,2018-12-18 20:54:21,,,newest,com.appxy.planner +Mike Ricker,https://lh3.googleusercontent.com/a-/AOh14Gg2IqvzBjLTxbF-m6W8RzYKehWzGm3aOKBC_TqWiA,Want use only not sharing,1,1,4.5.4,2018-12-15 01:41:18,,,newest,com.appxy.planner +Oli Baltensperger,https://lh3.googleusercontent.com/a-/AOh14GgbtBS0AXpJfV9mC7SxJFKvppVdDWr_3shLtnY19w,This app deleted my whole google calender,1,1,,2018-12-13 13:28:46,,,newest,com.appxy.planner +T G,https://lh3.googleusercontent.com/a-/AOh14GhF9JUZ3J7VeYcxMIBP2Hpqc2kTN1YUawrb6Gc,don't bother with this planner app. there are lots of other apps that do the same thing. this app has intrusive ads thats pop up at random. if you close the app and open a different app planner pro will open a pop up on the new app your using. seriously don't even bother with this BS,1,28,4.5.4,2018-12-11 13:25:47,,,newest,com.appxy.planner +Kamie Michaels,https://lh3.googleusercontent.com/a-/AOh14Gg1sPzE0KTXxbh3Y-Q-OMfukH1DpnLkugMZehN9vA,Who puts ads on a calendar?! Y'all that desperate for money smh.,1,0,4.5.4,2018-12-05 14:18:18,,,newest,com.appxy.planner +Kelli Currie,https://lh3.googleusercontent.com/a-/AOh14GgYL8hf-1FUITxY8A7VNkNjVuBTPpLHAroRsj_kig,Does not integrate well across multiple cross-platform devices; more upsetting to discover this after paying for the app.,1,1,4.5.4,2018-11-29 22:59:32,,,newest,com.appxy.planner +Tiffany Lytle,https://lh3.googleusercontent.com/-dpbasGqwjBY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNFGQL9nuB55pP56qfxrrLKrpL2lg/photo.jpg,"This app sucks if you dont have the Pro version. I only had for a few min and couldn't do more than add a task. I tried to add an event, and wanted to sync chromebook to cell but it wouldn't let me.",1,37,4.5.4,2018-11-29 19:29:41,,,newest,com.appxy.planner +Mr Inoa,https://lh3.googleusercontent.com/a-/AOh14Gi2VQhvLE6rayanXE--urU8KtLZQFBGDru_0-Ge5g,Infested with ads now. Downloaded to specifically view one calendar and set it so but it automatically syncs my Samsung and gmail calendars automatically every time I open it.,1,2,4.5.1,2018-11-12 18:18:12,,,newest,com.appxy.planner +tmntlover 349,https://lh3.googleusercontent.com/a-/AOh14Gj_AMwrJ_WQVoObbrWEwZ-L9L15xxW5_HIqAkDR4g,"I lost all of my notes, and it wouldn't accept my passcode to get in any more so I deleted it and installed it again, then logged in and all of my stuff was gone. Please help, I need it back.",1,5,4.5.2,2018-11-11 03:33:17,,,newest,com.appxy.planner +Heather Leyva,https://lh3.googleusercontent.com/a-/AOh14GjQp4jC2w-MAsvDANHI8nnNux0_Wjd_F9J4B8bZBw,App became unusable with 11/06/18 update. Now the app takes 30-45 to open up after I click it and then I'm get an annoying ad that plays that I can't close for another 5-10 seconds. I'll be finding a new calendar app.,1,7,4.5.2,2018-11-08 19:49:20,,,newest,com.appxy.planner +Khairi Azlie,https://lh3.googleusercontent.com/a-/AOh14GjxqPMDfsGdlVRzUMKdkRxF1_DjUoNjDRVNlJFj,Please fixed it. Why i can't login my passcode. Damnly. Alot of doc i ve save inside,1,1,4.5.1,2018-11-05 12:33:55,,,newest,com.appxy.planner +Thabo S,https://lh3.googleusercontent.com/a-/AOh14GiThCDIXb0jr4KiqQX794_Gz_OZT35Y9wChQ1Eq-w,NOVEMBER updates broke a lot of functionalities. Please fix guys. - choosing alert notification sounds - ability to close off tasks on notification bar - lost full purchase info,1,5,4.5.1,2018-11-05 08:17:10,,,newest,com.appxy.planner +Arbiang Gizelle,https://lh3.googleusercontent.com/a-/AOh14GizQHCU5jN1g4Tm9_fN1oeqqI6KYLdQVAqjob8EFw,"I have been using this for more than a year now, it was great, this is where i jot down notes on my classes and meetings, but this new update may have a bug i cant access it even with the correct pin i have entered Pls fix this issue, thanks",1,3,4.5.1,2018-11-04 21:40:02,,,newest,com.appxy.planner +Gary Lekay,https://lh3.googleusercontent.com/-G5c7HbFeEo4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN8pq3ezKLNbr0qrxGNACwNApsoEQ/photo.jpg,Cannot access the app,1,1,4.4.1,2018-11-04 19:44:05,,,newest,com.appxy.planner +Jody Olson,https://lh3.googleusercontent.com/-wUVEz5AsPH8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOPyiaiOOYbZ81KcrzW62wWaqnm7A/photo.jpg,"I tried adding the pro for $7.99 because I thought you could set daily reminders by just marking repeat daily it doesn't do that or any of the things I was hoping for, I have had it less than 24 hours and would like a refund, I have sent emails asking for help and haven't received anything back so I just want my money back and this app gone!",1,2,4.4.1,2018-11-03 08:41:41,,,newest,com.appxy.planner +Sandy Kochenower,https://lh3.googleusercontent.com/a-/AOh14GgGY-u5PP08TclwugRq_V8K11WUvEhD82QTaxmNjw,Will not accept passcode after today's update. Have been a paid user for some time and NEED my info back. Please fix and I will update my review. Useless to me until resolved.,1,7,4.5.1,2018-11-01 15:47:08,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,No,1,0,4.4.1,2018-10-21 12:35:32,,,newest,com.appxy.planner +Fish4Him Entertainment,https://lh3.googleusercontent.com/a-/AOh14GjWsj3Empsk4R_lr23WfhI0w0JAZnifwFKYXSs32g,It says you are downloading the pro version which is a complete lie.,1,0,4.4.1,2018-10-15 23:46:56,,,newest,com.appxy.planner +Rita Kelly,https://lh3.googleusercontent.com/a-/AOh14Gi5zXOvCBx4k6y5BNXQUvE8yh12Pvq_dD2yNsJTGg,This basically is just a purple version of Google calendar. It has the almost exact same layout as Google calendar without any extra features. I wanted to use this as planner for school seperate from my calendar but there was no way to have it not sync with Google. Don't bother getting this app just use calendar directly.,1,1,,2018-10-04 19:46:47,,,newest,com.appxy.planner +Breanna Brown,https://lh3.googleusercontent.com/a-/AOh14Gioar9qtFCPn_mD8doEEVWuBj8dwDn57jlTRPv2fQ,"I liked it at first, even paid for it too but now it won't sync across my devices so I need to find something else that will",1,1,4.4.1,2018-09-13 20:38:49,,,newest,com.appxy.planner +Daniel Moore,https://lh3.googleusercontent.com/a-/AOh14GhAXOchin8Yr5uku083rWirZ7BeyNWf73-zc_VQgA,Absolutely terrible customer service. They refused after several years to fix the 9.7 tablet aspect ratio. For a paying customer this is absolutely poor customer service has never work properly once don't buy those that run away,1,6,4.4.1,2018-09-12 19:10:41,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Could not even create a account,1,0,4.4.1,2018-09-08 21:31:38,,,newest,com.appxy.planner +Joe Laing,https://lh3.googleusercontent.com/a-/AOh14GjchQkw8spncg5XGn-OjlH4CCPwkw4OJDL6UH7bYw,"A negative experience. I wasn't using it and forgot about it until it was renewing. I didn't port it over to a new phone and it seems you can't cancel the app except through the app. This means I would have to install it on my new phone, give it permission to access my information, then cancel the subscription and uninstall it. Other apps on my phone with subscriptions I can cancel through Google Play. Apparently not this one.",1,10,4.4.1,2018-09-04 17:01:59,,,newest,com.appxy.planner +Tara Nowotny,https://lh3.googleusercontent.com/-XgpcFJbiSIQ/AAAAAAAAAAI/AAAAAAAAChc/AAKWJJOr5EbfE9bCSpVRkMnl_JvUDddvoA/photo.jpg,"Started my account with outlook and went to put it on my phone apparently +forgot password so hit forgot password and it said I didn't have an account +so I went back to my tablet and it told me the same thing. I even put a pin +in my phone and the pin was right, but it had deleted everything all the +same and told me again I didn't have an account after making another new +one. This app would be great if it didn't delete everything all the time. I +would have recommended it before all this happened but not any more",1,20,4.4.1,2018-08-08 20:59:22,,,newest,com.appxy.planner +Magical Universe,https://lh3.googleusercontent.com/a-/AOh14GiMO8nB-sLkNdQTgmU-Ak6OA6-Tat6pstWpuiF3nE8,"It's useful but it doesn't fully sync the events, tasks, and notes between devices. It's a huge inconvenience. Besides that I still love the app.",2,3,4.7.1,2020-02-12 00:57:58,,,most_relevant,com.appxy.planner +JH Daniels,https://lh3.googleusercontent.com/a-/AOh14GivQuhwBt4fn88_WXWNd-Rg8Ja3uTy_CMGeUUNUbA,Nice looking app albeit does not seem to sync with Google calendar and not cross platform. Certainly cannot do $15/yr.,2,9,4.7.2,2020-03-16 13:34:14,,,most_relevant,com.appxy.planner +Actual Tooth,https://lh3.googleusercontent.com/-7hA2yTQSIf4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNDYcsWgOHi2pa6lPG4DVyYphbFhg/photo.jpg,"The interface is great and I love it overall; however, I'm giving it two Stars because it won't synchronize between my Samsung phone and Ipad, despite being the same account information for each. I emailed their support like about this, and they asked for my login info, but I never heard anything back. This is a huge inconvenience because I put a LOT into the version on my iPad, and I dont, and wont, do it twice for the same application. Once this is fixed I'll happily increase the rating.",2,69,4.5.4,2019-01-18 16:55:34,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I have been using this for a while and found it to suit my needs well. I wanted something where I could see trasks and appointments in a daily view. This accomplished that goal in an easy to read and navigate format. However, there must have been a recent update that has made the ads ridiculously invasive to the point that I no longer want to use this app. I think I will start checking on alternate options.",2,33,4.5.4,2018-12-12 15:59:15,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I loved this planner for several years with no issues. All of a sudden I can't launch the app or create/edit an event without getting a noisy, intrusive pop-up ads. I will be looking for a new option, possibly even just my stock calendar.",2,5,4.5.4,2018-12-17 03:54:21,,,most_relevant,com.appxy.planner +Melissa Moldrup,https://lh3.googleusercontent.com/a-/AOh14GhjcARWGdfA6vAkGHG51i06P-VyKDPVini9sYiA3y0,This is literally just another calendar app. Misleading calling it a planner. Smh. It's not even a good calendar. If you're hunting for a good planning app keep looking because this is definitely not it!!!,2,1,,2020-01-12 18:12:19,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,I was told to install Planner Pro instead of Planner Plus (which was what I already used) in order for my cell phone & iPad to sync. I have had at least 5 emails back & forth with the contact person but I still can't get my calendars linked using my email address as instructed. I guess I will have to go back to my Google calendar. I love the Planner Plus but need a calendar that syncs to both my cell and iPad.,2,1,,2019-02-04 01:59:48,,,most_relevant,com.appxy.planner +Brea Gacy,https://lh3.googleusercontent.com/-fq5eqRqEyyU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOuRiyBcqjM7ynqfF2l29k0Jeh4tA/photo.jpg,"Eh. it's mediocre and really doesn't do anything your calendar app on your phone doesn't already do. I liked using the month widget until it just decided, on Jan 29, that the month of February no loger existed. I tried to look ahead to the month of Feb to see a preview from the widget but it kept going fron Jan to March. The only way to view Feb in the widget was to change the date to Feb in my phone. just went back to my phone's calendar app. Uninstalling.",2,7,4.5.4,2019-01-30 05:40:53,,,most_relevant,com.appxy.planner +Vittamar Akbin,https://lh3.googleusercontent.com/a-/AOh14GgE9E4Bdw3LSIhtS6-rWRzK0uiJHJChdRQvRBAE,"suddenly with ads and paid content disappeared, synchronization has some issues",2,0,,2020-02-28 10:19:07,,,most_relevant,com.appxy.planner +Marlene,https://lh3.googleusercontent.com/a-/AOh14Ggr2qsjSdCkyiHBE0VC_Y93m7yA0VVUeGcnHRIk7Q,"Free Version does not allow you to view all your events in the monthly view. I only see colored dots that indicate an event is scheduled. I would like to see the event names. I contacted support, but sadly did not get a response.",2,4,4.5.1,2018-11-03 22:12:02,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,I would love it if my calendar would sync across by devices. And my tasks & notes synced. Its disappointing because I enjoy the simplicity of the format; its user friendly. But iy doesn't work for me since I can't sync all devices.,2,1,4.5.4,2018-12-31 18:18:12,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,i think I could really like this app. except I upgraded to paid and still have ads and the search function does not search notes. It will be hard to find info saved in notes if you cant search...,2,15,4.5.5,2019-03-23 03:37:45,,,most_relevant,com.appxy.planner +Brenda McGlothin,https://lh3.googleusercontent.com/-wysT6ZNVSwo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNY5bkQlsLNotp8LtLBBJVogXs2rQ/photo.jpg,Loved this app until I updated updated it. Gibberish on every day now. It is terrible. Like this on my phone and tablet!!!!! How do I fix. I depend on this planner!!!!!!!!!!!!!!!,2,1,4.5.7,2019-08-09 13:35:30,,,most_relevant,com.appxy.planner +DaWe Vi,https://lh3.googleusercontent.com/a-/AOh14Ghs0VVAFDekWSWkt25a9SYKTI-r-w7RDMsBs08U0w,"DO NOT PAY FOR UPGRADE!! If you upgrade it just messes the app up. I have to manually change days every morning now. If it weren't for that, it'd be great. Please fix.",2,0,,2019-02-22 11:32:25,,,most_relevant,com.appxy.planner +A'ishah Fresses,https://lh3.googleusercontent.com/-P3zxKADUfVw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMppWEiHFPGHQe_F5mTyYipTOnTww/photo.jpg,Please fix the widget. It doesn't automatically update the day. It always shows yesterdays' date. Constantly having to remove and install widget.,2,11,4.5.5,2019-04-01 12:45:55,,,most_relevant,com.appxy.planner +Kyle Schanz,https://lh3.googleusercontent.com/a-/AOh14GhP_9LKN9JcQ9LywM7Mf3tcGKz35w9cDu9Ori5t,it used to be a good app until they added the latest update which includes ridiculously annoying ads and frequent crashes.,2,0,4.5.4,2019-04-21 19:11:13,,,most_relevant,com.appxy.planner +Christi B,https://lh3.googleusercontent.com/a-/AOh14Gh8ZA4Lz74VSdqO7W59xmu9Ov2qTjhW2fzK6XvO,"Not very intuitive. I couldn't find a way to switch between week, day, or month views.",2,0,,2019-08-02 14:56:54,,,most_relevant,com.appxy.planner +Binod Shukla,https://lh3.googleusercontent.com/a-/AOh14GiWDXpiahLGC_-dZu5CfIaX4DdWATCK8tpTdjolXQ,after reinstall data not recover while take backup Google Drive,2,0,4.5.4,2019-01-20 08:32:31,,,most_relevant,com.appxy.planner +Roger J Sanchez,https://lh3.googleusercontent.com/-qM71lj48ojc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNO6UawoxqQEjpPR5grbHX0jxFU0Q/photo.jpg,"Ver y often the application does not open, you sen question and ask what is happening, and you get No replied,, Roger J Sanchez from Miami",2,4,4.6,2019-08-29 04:18:46,,,most_relevant,com.appxy.planner +Jonathon Bittner,https://lh3.googleusercontent.com/-cH2BATROC9Q/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOSHrSjGrhficimbVO6_sz7ZZ_O4g/photo.jpg,It's Google calendar with different color scheme,2,0,,2019-10-26 05:07:17,,,most_relevant,com.appxy.planner +J J,https://lh3.googleusercontent.com/-wR5d_ydGvII/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMpM4RmCcPrx4MiceilQPryqOf_hg/photo.jpg,Pain. Ya have to create an account to access,2,0,,2018-10-17 22:56:43,,,most_relevant,com.appxy.planner +Emma Harlow,https://lh3.googleusercontent.com/a-/AOh14Gg38odIJVlnSBkzBm50iXkPOdu6UEuP2wXSG1ZprQ,notifications stopped working then it deleted all my tasks,2,0,4.5.7,2019-07-05 07:22:47,,,most_relevant,com.appxy.planner +Beatrix Bell,https://lh3.googleusercontent.com/a-/AOh14GhDlGcTcR6qoy-MFLJ_hMdSN2mutRg5TpiMYKuV6A,"It is doing a strange black screen thing, and randomly opens by itself (other reviews have mentioned this) and I suspect it is making my phone crash. My phone is crashing several times a day, when I remove the app it stops crashing. I hope there is a fix for this. It works just fine on my tablet, but not my phone. It's a great app due to its simplicity. I switched to another planner app today and will be requesting a refund.",2,4,4.5.7,2019-05-14 15:19:10,,,most_relevant,com.appxy.planner +Rachel Fryberger,https://lh3.googleusercontent.com/-kAP-zqn3xvM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNgB0W6VRo5lmRtdo_GD-9w4ueFuQ/photo.jpg,"I made several repeating tasks that are supposed to be repeated weekly by the day of the week. They seem to just multiply and now the same 4 tasks will show up 3 times each on a single day. I can't edit the original repeating ones, I can only delete them individually on the day they show up several times. This is VERY annoying. This app was a waste of my money. I paid for the ability to make repeating tasks. I'm very disappointed.",2,60,4.4.1,2018-04-04 17:31:47,,,most_relevant,com.appxy.planner +Cheryl Parker,https://lh3.googleusercontent.com/a-/AOh14Ggx4SxldFa5RqBQATGuTckL2ayH3M68CYLZemRP,"Was fine until the last couple of days when the layout turned squirrelly on my Android tablet. Seems okay on my smart phone. Still, I will not purchase full version unless the version for my tablet goes back to matching the screen layout on my cell.",2,22,4.4.1,2018-03-29 02:34:04,,,most_relevant,com.appxy.planner +Sarah K.,https://lh3.googleusercontent.com/a-/AOh14GjzMhwIGLi17WNxoukKMU20379UKDYciJkZo6aAJw,"I've had this app for a few years, and it worked well until the last several months - it's gotten increasingly buggy and will do things like ""forget"" you checked off tasks as completed and re-list them as incomplete between closing and re-opening the app. It also had been freezing more and more frequently, to the point where that happens at least once a day, and now I can't even load certain screens. Because of this, I will not be renewing my subscription this year and will be using another app.",2,3,4.4.1,2018-07-28 16:50:13,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Uninstalled when I saw the app wanted me to pay a subscription fee as ransom for my data, I never will.",2,21,4.4.1,2018-03-26 01:21:37,,,most_relevant,com.appxy.planner +Josh & Shelly Keller,https://lh3.googleusercontent.com/-J2lcw7W6hik/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOCqfGB1PXuLTOzQI6KoO-XU1J6Hg/photo.jpg,"This app was AMAZING when I first started using it. Now it duplicates tasks +too much. I have about 20 of the same task for each day and it takes +forever for me to delete the extra tasks.",2,2,4.4.1,2018-05-30 13:34:04,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I paid for the subscription but can not use the recurring function. I tried +to make a task for monthly use and it does not show up on the other months +ahead.",2,2,4.4.1,2018-06-21 06:20:14,,,most_relevant,com.appxy.planner +Savannah Brown,https://lh3.googleusercontent.com/a-/AOh14GhNS1CMKVkhBjtjrv6aiEBGnSSUHA2D_LZ46qA2Eg,"This app sucks its slow and they make you pay to make checklists which is +ridiculous",2,1,4.4.1,2018-08-03 18:18:33,,,most_relevant,com.appxy.planner +gabe r,https://lh3.googleusercontent.com/-HnlVJs55U-8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOE4-EUODtzNdOMFtqs-Oh5JkbRYg/photo.jpg,"Won't let me use/access weekly view unless I pay $7.99 for the year. What a +crock. I'll find another app 👋",2,1,4.4.1,2018-06-28 23:51:50,,,most_relevant,com.appxy.planner +Nightcore Queen,https://lh3.googleusercontent.com/a-/AOh14Ggcbf6WSBG2Z1jZqL_JnjyULFtpUt_LQoRXgyYO,"Not what I was looking for, I saw there was a time it would remind me I +thought it would work but non of them did so that sucked",2,0,4.4.1,2018-07-13 05:53:02,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,It sucks🖕🖕,2,0,4.4.1,2018-09-28 10:21:18,,,most_relevant,com.appxy.planner +Shanum Fatima,https://lh3.googleusercontent.com/-28R23MmJqvc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPjD0Zoqr-P7IVjboJ-yAhZUCGsow/photo.jpg,I set weekly view in settings and for few days the app worked fine but today i tried to go back to months view and i tried to access settings but when i try to do that the app closes,2,2,4.4,2018-03-21 07:10:06,,,most_relevant,com.appxy.planner +K. Morawski,https://lh3.googleusercontent.com/a-/AOh14Gi-opcg0FFS_jFsMo-rMj52W6ydnvv9mZMJm2oCfw,"Widget is buggy - a task marked as completed in the app is displayed as overdue, and trying to tick it off in the widget takes me into edit mode. The proper app, when reopened, shows a blank inbox and revisiting the screen is required to populate it again. Poor punctuation (eg. ""28 Sep , 2017” - why the space before the comma) is not that big a deal, but also adds to the app not feeling very ""pro"".",2,97,4.3.7,2017-10-17 17:06:19,,,most_relevant,com.appxy.planner +kate,https://lh3.googleusercontent.com/a-/AOh14GiIbsee4wJLcyW04qy5LXsE6I5FYFEUyZ987NMV5Q,"i ws kinda disappointed because i really loved the user interface of the app and how smooth it flows from one set up to another. however, i have to uninstall and install it back up several time because it will not accept the 4digit password i have set it up with. i had to do it like 10 times :/ but still like the app tho. i hope that bug will be fixed sooner.",2,11,4.3.7,2017-11-24 05:47:40,,,most_relevant,com.appxy.planner +Matsuko Friedland,https://lh3.googleusercontent.com/-YYLo9t0B3Oc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOjxrPbyQAQ6I2uZw6gp9BgKjxo3w/photo.jpg,"I really wanted to like this app, but it's just too buggy. Sometimes I open the app and it doesn't have the icons to switch views. Also the 12-hour formatting is really flawed. And the priority scale seems way too complex. High, medium, low should be enough for most people.",2,7,4.3.7,2017-12-22 07:18:27,,,most_relevant,com.appxy.planner +Tasha,https://lh3.googleusercontent.com/a-/AOh14GhT7S8kdq7olo6cWDMcWiwoXp-Kzva7qnZEkzdTng,"I tried to explore it a little after downloading, I want something that will show me everything planned on the day I have notes on rather than me having to search if I do, i tend to forget due to busy schedules. I want automatic pop up, I'll keep playing with it, but so far dislike",2,119,4.3.7,2017-04-23 13:00:00,,,most_relevant,com.appxy.planner +Djade Dennis,https://lh3.googleusercontent.com/-8tbcLs8phdo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOsBYx5mdjRldpGX565ICP0kC5oEg/photo.jpg,Didn't get past not being able to use it in portrait mode. I think I should be able to choose whether I need widespread view as in a spreadsheet or a portrait view to view a page of writing and this does not give me the option. I may end up using it this is only the second app that I have tried for organizing by used to be hand & ink written notebooks.,2,4,4.3.7,2018-01-07 00:53:46,,,most_relevant,com.appxy.planner +Kirstianna Fanning,https://lh3.googleusercontent.com/-8kVe2ybML0U/AAAAAAAAAAI/AAAAAAAABec/AAKWJJM8lTPGY8FCVx-ov1qrviKuYAFYlw/photo.jpg,The app is great for the schedule but the tasks needs work . I should be able to schedule something to repeat every day but it doesn't allow for that option. And it doesn't always register the repeats. Had to pay for the yearly subscription to find out it doesnt even work. Stick with the free version. Least youre not wasting your money. Will have to try something else for my tasks. And the developer doesn't care.,2,2,4.3.7,2018-01-22 03:12:50,,,most_relevant,com.appxy.planner +Eric Pratt,https://lh3.googleusercontent.com/a-/AOh14GigO_nKd1oyTuL1b9tUkMx2LyhiHXDyCItJY4JWZQ,"I think the free version of the app has some good capabilities, but lacks some functionality that I desire; functionality that I'm not sure exists in the paid version due to the lack of support for the product. I was unable to find where I could go to ask questions. Thus the 2 star rating",2,107,4.3.7,2017-03-27 04:38:55,,,most_relevant,com.appxy.planner +Michelle Rinna,https://lh3.googleusercontent.com/a-/AOh14GiZMU3SxBGuyzhop6elIFw8M4FruSF3fk2er5k0AQ,"Well, based on the description of this app and what I understood I would receive has not, lived up to its description. I hope the bugs will be worked out. I emailed for help more than 24 hours ago and have not received any response thus far. It would be helpful to have a help and/or FAQ section to refer to. After only one day of using the app, I have encountered the following: 1. From calendar screen, + button does not give option for Project (only Event, Task, or Note). I have the upgraded version. 2. Settings, General, Start with... is set for Day View, but shows month instead. 3. Help & Feedback only gives option to email for help. No option to search for help. 4. When deleting an item in a series comma I do not get the option to just delete the one occurrence. Am I doing something wrong? Is there any help that I can expect to receive? I paid $4.99 for the upgraded version, and I am not at all happy. Busy people with crazy schedules need a reliable app.",2,42,4.3.7,2017-03-29 03:42:08,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"App is very buggy ! Week view is completely unusable - shows some events twice, and some not at all. Also, it would be nice if there was an option, in month view, to see the names of the events without having to click on every day individually. Fix this and you'll get 5 stars, but without that (especially week view!) the app is useless.",2,0,4.3.7,2017-10-30 07:32:17,,,most_relevant,com.appxy.planner +Judy Snyder,https://lh3.googleusercontent.com/a-/AOh14GgCyNIacaU6go-zGMzx0u-FPpHYY3ji5FfN3x80,I do not use it so I want to cancel the subscription but am unable. Jorte had unsubscribe within opening page. Unable to sign in.,2,9,4.3.7,2017-05-30 22:56:57,,,most_relevant,com.appxy.planner +Jessica Salmonson,https://lh3.googleusercontent.com/a-/AOh14GjK2BXowma0vVzPcSUWtUlqq0FegzgltJ2loXtp,"I don't want make an account before trying out the app! Give us a week trial before making us sign up, please.",2,0,4.3.7,2018-01-29 07:57:53,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"With so many free calendar apps out there, there's just nothing in the free version of this one to make you choose it. The only feature that might set it apart from the competition is the project feature, but you have to pay to use it. Sure, you have the notes feature, but there are ways to accomplish the same thing in pretty much any other calendar, so I just can't see the point. Rather than pay for an upgrade to an app that's just ho-hum (the view isn't even very customizable), I'll be uninstalling.",2,0,4.3.7,2018-02-18 15:31:47,,,most_relevant,com.appxy.planner +hailey g.,https://lh3.googleusercontent.com/a-/AOh14Ghhk2xbDKxP_FEfeGs7aFn2LuSg2XDE6lnRYZk,It doesn't work well as a calander or any type of memo for me. I also didn't like the type of layout design they made it didn't fit with what the purpose of this app was said to do,2,25,4.3.7,2017-03-26 12:32:55,,,most_relevant,com.appxy.planner +Kevin Oehlerts,https://lh3.googleusercontent.com/-2UkuWpEtmfY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMRC2whagJGogEugwDNds-5tQXROQ/photo.jpg,I have questions that i would like to have answered and i have emailed numerous times with no reponse back. They say dont write negative reponses to this app without contacting us first. I did email for answers but no one will answer my questions. My questions are not bad for this app but the people behind this app are terrible business people. So this could be a great app but service is terrible. Which instead of getting 4 or 5 stars im giving 2 should be 1 but app is good the ones behind the app are bad just want to take peoples money and then laugh at us by not helping,2,1,4.3.7,2018-01-16 19:59:25,,,most_relevant,com.appxy.planner +Angelica Aronson,https://lh3.googleusercontent.com/-1_BQEVS6hzs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP5TcuF06QDR837OcfgZdm_3wRgAQ/photo.jpg,The app worked fine for awhile but all the events I added were simply gone this morning. This was a frustrating experience.,2,3,4.3.7,2017-08-30 16:41:01,,,most_relevant,com.appxy.planner +Holly Jahangiri,https://lh3.googleusercontent.com/a-/AOh14Gh8i1XVHBTvxmPRDBMf7rTUFMiPi9jmbTsFQsI51Ks,"Doesn't sync reliably, and that's one of the most critical features for a calendar app.",2,10,4.3.7,2017-06-25 17:30:57,,,most_relevant,com.appxy.planner +Rachel Szonyi,https://lh3.googleusercontent.com/-WPO0wPXRLLw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMpSm5oqh8PkQNM8JQN2-bUdOCyTA/photo.jpg,i cant set my times for events bc theres no am/pm option. it keeps changing my time not allowing me to put the right thing..annoying,2,2,4.3.7,2017-07-21 15:47:53,,,most_relevant,com.appxy.planner +Alix Tobias,https://lh3.googleusercontent.com/-qYLBp3_h62U/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMWr_vFvF0S-COLzy5mkzSApJmmBA/photo.jpg,"Used to love this app, but after the update it's dumb and no longer useful.",2,16,4.3.7,2017-03-25 11:36:34,,,most_relevant,com.appxy.planner +Hans Katzenmeier,https://lh3.googleusercontent.com/a-/AOh14GgYJsAyQND6hjvzm7yIqApoo5js8zYBxhBDZ4ChJNo,"This app is a pretty good one, but on my Galaxy Note, it stopped allowing me to check off tasks for some reason. I paid for the pro version before this happened unfortunately.",2,0,4.3.7,2017-12-03 02:20:51,,,most_relevant,com.appxy.planner +Elexus T,https://lh3.googleusercontent.com/a-/AOh14Gj-rN0c6lJhopeyNNs9ECMQpgNFbNH6A0YUY5fJcA,"I like the app, but for the past day I haven't got any notifications.",2,0,4.3.7,2017-09-16 15:18:50,,,most_relevant,com.appxy.planner +Becca Adams,https://lh3.googleusercontent.com/a-/AOh14Gjz-oeojB77CQzerBApxn8SXaV4-bqkdpyJb-Ngzw,This app is not good if you don't buy the subscription.,2,0,4.3.7,2017-09-05 12:18:11,,,most_relevant,com.appxy.planner +Stephen Wong,https://lh3.googleusercontent.com/a-/AOh14Gjqpw6ci-_Y8RsoVoWHJKEk4zhbHtrPLW2l3Ejuqg,When my phone is in tablet mode (android 7) the app will not display in portrait mode. It defaults to landscape mode. Pls fix and I'll change my review.,2,0,4.3.7,2018-02-28 05:26:46,,,most_relevant,com.appxy.planner +Connie G. Settle,https://lh3.googleusercontent.com/-mwxtnEImqhQ/AAAAAAAAAAI/AAAAAAAAALA/AAKWJJNGQxfAd7AQk9fGeKDGe2YjDIRcgw/photo.jpg,Isn't Thanksgiving and Christmas considered a holiday??? Am I wrong???,2,1,4.3.7,2017-10-19 00:04:34,,,most_relevant,com.appxy.planner +Aiman Ariffin,https://lh3.googleusercontent.com/a-/AOh14GgvVGrjUvq1I2MBV8XcbGSaOtDPco8pw42I2bAa,I just installed this app and it's always on landscape view. Please fix this soon. Thank you!,2,0,4.3.7,2018-03-11 03:00:51,,,most_relevant,com.appxy.planner +S Reyes,https://lh3.googleusercontent.com/-EtzBUNIaD6M/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMl8jJ_v15sehLhrTPBR7kBLkj91w/photo.jpg,Ads. Just too many.,2,0,4.3.7,2018-01-03 00:10:21,,,most_relevant,com.appxy.planner +Nikitia Ramruthan,https://lh3.googleusercontent.com/a-/AOh14Gj20gTkj0j56L_-y_32h_NspNl4uXRf_DfMOaEZfA,The app does not sync with my Google calendar and there is no sync option or refresh option. Meetings etc are not shown and I have to go back to the Google calendar or acalender to make sure I don't miss anything. Events made on my tablet do not show on my phone. Please fix this. It's such a great app if it just worked.,2,14,4.3.6,2017-03-16 08:16:04,,,most_relevant,com.appxy.planner +Jia Hui Chan,https://lh3.googleusercontent.com/a-/AOh14GhOOjRltaoVGV0B7JHQnX5ZwfIc7Ef7X4UqCM3mDQ,Unable to create an account despite using email or social media account. Can't even start trying out the app,2,11,4.3.4,2017-02-02 02:35:13,,,most_relevant,com.appxy.planner +Branka Miočević Kovačević,https://lh3.googleusercontent.com/a-/AOh14Gj5Fs3UyZRgerXLI2WNTSGly6gAaE7oSMmB2k4Fhw,It would be a 5* review if it weren't yearly payment. Put it a one time payment and I'll be the first one to buy it. This really ruined it for me.,2,4,4.3.4,2017-02-27 20:58:25,,,most_relevant,com.appxy.planner +D Gild,https://lh3.googleusercontent.com/a-/AOh14GgbWNCN1S--xH3jTzHWf5aeVdkuiyikWfv_AXEloxs,Its still asking me in an ad on the app to upgrade. Not cool!,2,22,4.3.4,2016-12-29 16:25:51,,,most_relevant,com.appxy.planner +JP Beaufort,https://lh3.googleusercontent.com/a-/AOh14GhJdCEG5pYlLr9_MpDrO-ShN5-o42zzqlHHvRRkVg,Wish I can repeat sirten things without spending money every year,2,30,4.3.4,2016-12-23 08:18:45,,,most_relevant,com.appxy.planner +Chandice Cook,https://lh3.googleusercontent.com/-s_RFePucXGg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMTr6cRkCGKpaL6zydDW1Xa0FUGiA/photo.jpg,You want me to pay $5 for the full version so I can set a task to repeat? My phone's planner does that for free.,2,8,4.3.4,2017-01-23 05:23:48,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,This thing is terrible I couldn't do anything I wanted,2,5,4.3.4,2017-01-24 23:23:10,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"ট্যাবে হরাইজন্টাল, ফোনে ভার্টিকাল। ফলে ট্যাবে লিখতে অসুবিধা হচ্ছে। এবং লগ ইন করতে হয় যেকোন অ্যাকাউন্টে।",2,11,4.3.4,2016-12-25 12:42:33,,,most_relevant,com.appxy.planner +Alessandro Power,https://lh3.googleusercontent.com/a-/AOh14Ghw3IYAiCbrzDYt2lLob-cCg7X5l0_Nj2VmdyjyiQ,Task notifications have stopped working.,2,4,4.3.4,2017-01-11 16:23:48,,,most_relevant,com.appxy.planner +Etienne Filho,https://lh3.googleusercontent.com/a-/AOh14Gh11GL96tAvB8eBBmWaMw15qfodfhDDeuyWMFZdDg,If you want to start a project you have to pay 4.99 a year.,2,1,4.3.4,2017-02-11 15:52:10,,,most_relevant,com.appxy.planner +Somerandomguy,https://lh3.googleusercontent.com/-sjhWs9ktCjc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNUlBkaJsjxVxsYpCT_9hyHUDfk7w/photo.jpg,"Used to be good until last update, now I can't login to see any of my tasks, appointments, or notes. Edit: Now works since newest update, but I have lost all previous tasks and notes. Very disappointed.",2,46,4.3.3,2016-11-14 19:07:31,,,most_relevant,com.appxy.planner +Stephanie Xan,https://lh3.googleusercontent.com/a-/AOh14GiSWBaFKTDIqCER_SzkWvkw7lYPZWqIStqfjdV9UZk,Doesn't sync with Google calendar. The one thing it's supposed to do and it failed.,2,7,4.3.3,2016-11-23 20:37:42,,,most_relevant,com.appxy.planner +Katerina Orfanou,https://lh3.googleusercontent.com/a-/AOh14GhwW4KBoWUECOOYBct5jHcSMC6fgxQF2g9_YPC8gg,"This app was everything I needed, I loved it. But after thenlast update I cannot log in to my account so I cannot see my daily schedule. Will not trust it again and I have already unistalled it. I need an organizing app which I can trust. Fortunately all the events were synced to my google calendar but notes and tasks didnt.. So I dont know if I am forgeting something that is pending now.",2,42,4.3.2,2016-10-28 07:40:22,,,most_relevant,com.appxy.planner +Colleen Thilges,https://lh3.googleusercontent.com/-Q0NWgYt8SFE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOdDAgMwb9jwCILpcGpnkCX4jqB9w/photo.jpg,Have used app for about 4 months now I can't get back into it. Keeps asking to sign in or create account won't let me do either. Time to dump it!,2,3,4.3.2,2016-10-31 15:16:15,,,most_relevant,com.appxy.planner +Jourdan Clark,https://lh3.googleusercontent.com/a-/AOh14GgzOICyOF9HDHFR2J2begCKTmrl5QnfyfHGZgRTpA,"I logged in with Facebook. I upgraded to the pro version. Checked the planner a day later and had to log in again. Now it says to upgrade to the pro version again and if I click it, Play says I'm already subscribed to it.",2,1,4.3.2,2016-10-27 20:58:29,,,most_relevant,com.appxy.planner +ranganatha c,https://lh3.googleusercontent.com/a-/AOh14GjEhgYeBAqjNewq4HOTZQ9CtzqR8WVOXet55a62Gw,What happened to all those data i had.. not able to log also,2,1,4.3.2,2016-11-01 09:27:47,,,most_relevant,com.appxy.planner +Sharialene,https://lh3.googleusercontent.com/-tzLNORXJjGA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM7fDwbzmGY5lOGcYOq8Pyas9XH8w/photo.jpg,At first I really liked it because all the systems are functioning well in my phone.. but when I used this in the tab... the notifications wont even turn !! I sm really pissed by this and I hope you fix this ASAP,2,18,4.3.0,2016-10-16 09:33:24,,,most_relevant,com.appxy.planner +Tina Rideout,https://lh3.googleusercontent.com/-pg0R4r_SspE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOhe_gC7QNSPx7zzCUHZ3T8AuGxiA/photo.jpg,I put an event in and it doubles everyday. Fix the glitches this is a great app otherwise.,2,4,4.3.0,2016-10-18 15:30:31,,,most_relevant,com.appxy.planner +Srinivas Mundrathi,https://lh3.googleusercontent.com/-mWyG-jyJSug/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM-KCISVsKybPLYoYdhaJe5KG1u1A/photo.jpg,Was a great app...but could not login..since last month so...bye bye planner pro,2,1,4.3.0,2016-10-30 05:15:52,,,most_relevant,com.appxy.planner +Malek A,https://lh3.googleusercontent.com/a-/AOh14GhAZ8MHx7brCH6OkXJme9OMLnIC0QwLBEyVvFlCqg,"I really did not like the fact that when I set an exact time for stuff, I can not sort to according to that, so If i want to plan my day, 10 am i have to do a, 11 am i have to do b, i can not sort it by time",2,16,4.2.2,2016-09-15 08:18:00,,,most_relevant,com.appxy.planner +Tyler Ruden,https://lh3.googleusercontent.com/a-/AOh14GgrsIL2c1zMpBpL4RiYJA99-SBPxVj7tvc9oCUIKQ,"The free version comes with ads, and normally I would be okay with that except that it decides to interrupt you seemingly every minute to ""buy the full version now."" When planning your day, you might have to schedule time to exit out of the constant ad pop-ups.",2,1,4.2.2,2016-09-21 19:00:58,,,most_relevant,com.appxy.planner +Ferline Carl Pineda,https://lh3.googleusercontent.com/a-/AOh14GhoWpgSfsjOdT6yAGJQgDjOXuIpIfvsyyJ9kbtbvjI,"It was great before, but lately it sends notifications whenever it likes. It doesn't notify according to schedule anymore. And now, it doesn't notify at all.",2,2,4.2.2,2016-09-24 22:48:06,,,most_relevant,com.appxy.planner +Kris,https://lh3.googleusercontent.com/a-/AOh14GiNGbMLhw61PKxoZpuyp7WY6Bt_E_cXnwXQrI9-3mU,Keeps telling me my email is invalid when it's a normal Gmail.. Won't let me sign up,2,1,4.2.2,2016-09-27 15:21:49,,,most_relevant,com.appxy.planner +SimplyLauren,https://lh3.googleusercontent.com/a-/AOh14GgNfy9wrdBJGtyKRvZ8ACwAIB8VTqaXK1_Yepe6Qg,I went on thinking it was easy to put in reminders and stuff but it isn't.You have to buy the full version,2,2,4.2.2,2016-09-27 11:11:01,,,most_relevant,com.appxy.planner +Farmaan Ali,https://lh3.googleusercontent.com/a-/AOh14GiZExK7R6b52YYkpx7NKHoSbL9URAI6jiwtLiG8YfM,Doesn't go to portrait,2,1,4.2.2,2016-09-21 05:34:56,,,most_relevant,com.appxy.planner +kathryn reuter,https://lh3.googleusercontent.com/a-/AOh14Gjt8NSCeU70tHOd83KUmtvLN8BRMmzjzqXpqlNM,Would not load,2,1,4.2.2,2016-10-02 20:52:03,,,most_relevant,com.appxy.planner +Stacey Pratt,https://lh3.googleusercontent.com/-1zwtqQo7Fyg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO0jEJgzLDFauMpKJEdf8C1k4ZViA/photo.jpg,Paid for the pro version and itbdoesn't seem to be working properly. Appointments are not showing and sometimes double books. Contacted support. Took several days to get back to me and was still not helpful. App is glitchy. Will not be renewing the subscription and going back to the old pencil and paper appointment tracking method. I cannot run my business with a faulty appointment app. Very disappointing.,2,8,4.2.1,2016-09-06 17:10:04,,,most_relevant,com.appxy.planner +Paul Harris,https://lh3.googleusercontent.com/a-/AOh14GiCtOBsnL1Yh5AXqcntCem-uAdKe2Sj0TgtnfyK3A,"Norton Antivirus reported this as a malicious App, and recommended I uninstall. After paying for the pro version I felt it was very lacking. No portrait mode on tablet, no day mode on phone, no way to adjust the length of a meeting beyond that of the default meeting settings.",2,7,4.2.1,2016-09-04 15:19:45,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I was pretty pleased with the layout and the weekly view on the paid version, but then I started encountering problems. First of all, I used fb to sign up and I logged out of the app, and I can no longer sign in. It stays loading indefinitely. Also, on the weekly view it showed the incorrect name for the day and kept changing it. It also changed notifications randomly.",2,0,4.2.1,2016-09-06 17:48:11,,,most_relevant,com.appxy.planner +Daniel Southard,https://lh3.googleusercontent.com/-2gboVI_figw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNaMgVZ6I1U6n4H7LGF_b7ACxPrtA/photo.jpg,Has potential but you gotta pay,2,0,4.2.1,2016-09-07 18:24:12,,,most_relevant,com.appxy.planner +H AL,https://lh3.googleusercontent.com/a-/AOh14GhQ0I6sYP59wuVGVyFBX1iZFBF5hj0EGTALWJlTsQ,"The single FranklinCovey planner feature available is the Task ABC123 priorities system, but oddly the Task status system is missing. No more FC system functionality. As of the rest it's a very conventional PIM suite with a little of CRM salt & pepper.",2,9,4.2.0,2017-04-02 15:52:53,,,most_relevant,com.appxy.planner +Matthew Hill,https://lh3.googleusercontent.com/a-/AOh14Ggcg0qFUsvxI11qig14n620bAl7-IerHwLDgp7PBlY,"The UI is not attractive, to begin with. Text overlap and the fact that the only screen orientation available is landscape immediately turned me off to the app. The layout is not bad and puts all the information right in front of you but it looks as if it was built for Windows 98. I certainly was not willing to pay for the full version when the free version was so flawed. I can find better free apps with more functionality than the paid version of this one. It needs some work.",2,33,4.1.1,2016-07-30 05:42:53,,,most_relevant,com.appxy.planner +ashy smith,https://lh3.googleusercontent.com/a-/AOh14GhagX_VtQKLKPekIfA7MtjFK5AiiHRPnDsDz5cDx8A,I already had bought the full version and now I have to pay again which is whatever. But furthermore my calendar is missing most of the appointments and recurring events that I had before. I just upgraded my phone to the htc10 from the lg g5 and I have none of my important calendar events now.,2,4,4.1.1,2016-07-22 07:02:05,"Please contact us at planner.a@appxy.com, we'll help to fix your issue.",2016-08-02 09:28:36,most_relevant,com.appxy.planner +Misty Sullivan,https://lh3.googleusercontent.com/a-/AOh14GjMy1ZqhjnFNXxIeX4Qi5FaWcQGIOzQN7FRe-16cA,"This app worked well at first, but it kept altering my entries no matter how many times I changed them. Not sure if it's a problem just with syncing accounts.",2,6,4.1.1,2016-08-15 01:54:49,,,most_relevant,com.appxy.planner +Steve Peach,https://lh3.googleusercontent.com/a-/AOh14Gjj1L2J3mqC5yXenQnbobRLaY1PqAukQ4AP9d9C7g,Suddenly need a subscription? After I had paid for a full version? And some of my calendars no longer work with the app?? Not impressed.,2,21,4.1.1,2016-07-17 20:56:59,"Dear Steven, please contact us at planner.a@appxy.com, we'll help to fix your issue.",2016-07-18 10:49:35,most_relevant,com.appxy.planner +Chad Allen,https://lh3.googleusercontent.com/a-/AOh14GjalW4DzU4ICJXiytMyLVWaQLP8CY--dcE4hBDZpw,"It does not give me the ability to NOT use 24-hr time format. I'm not in the military or a factory so I prefer regular time format. Doesn't matter how many times I uncheck the 24-hr setting, it sticks. Fix that and I'll rate higher and maybe even purchase a yr subscription.",2,2,4.0.1,2016-06-04 02:01:41,,,most_relevant,com.appxy.planner +Timothy Ethan,https://lh3.googleusercontent.com/a-/AOh14GgV8vFHPLpTkmsLBCj97o1qhvZz8nQQMsou88tOfwQ,I found this difficult to use due to navigation. Love the home screen but its impossible to get back to it. Also the nonstop full screen ad to buy the app yearly is so annoying that alone makes it unusable. If you make my free experience terrible why would I want to pay you???,2,6,4.0.1,2016-06-21 03:12:45,,,most_relevant,com.appxy.planner +Jessy Hummel,https://lh3.googleusercontent.com/a-/AOh14Gg4FNSJlHdUbGSMtEuJ09zaET5QMC9lAwXoSocY,"It's supposed to be able to go on multiple devices yet, when I downloaded to my phone after putting it on my tablet it just keeps saying loading. After I spent a lot of time setting it up and plugging in all my appointments for the next month it's a huge disapointment. Should I get fixed I will change rating to a 5-star",2,1,4.0.1,2016-06-20 20:55:30,,,most_relevant,com.appxy.planner +Steven Martin,https://lh3.googleusercontent.com/a-/AOh14Gi7O2gNF_U9F4V-73R0ev1bcJSFZ4Qn387w5rJ4Bw,"I loved this app when I tried the free version, the side tabs and all. It felt like a planner. Then I open it up and it must've updated because the looks changed, no side tabs. So I paid for the pro version to get more out of it. Nothing has changes, I go to landscape view and it won't scroll. It's glitch to. I have paid the $4.99 and it keeps telling me to upgrade. I've already paid!!! I emailed you guys and still haven't heard any support a week later. So my advice to you all, keep your $5.",2,35,4.0.1,2016-04-25 01:16:05,,,most_relevant,com.appxy.planner +Michelle Aldridge,https://lh3.googleusercontent.com/a-/AOh14GiVZTILsx5fJzJfN8Km1iENuZNCsDxg9Ku2G76EJ8U,I did like it until you updated and took the good features away. Lame!!,2,2,4.0.1,2016-05-07 01:01:38,,,most_relevant,com.appxy.planner +Prakash Kadirvelu,https://lh3.googleusercontent.com/-enLXhZkFNc8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOifWiuLF3FEQgc5JUj1IJTA7ATHQ/photo.jpg,Changes and cancellations do not get updated on the widget. Secondly it is not possible to scroll between months easily,2,7,4.0.1,2016-04-29 14:24:39,,,most_relevant,com.appxy.planner +JH Daniels,https://lh3.googleusercontent.com/a-/AOh14GivQuhwBt4fn88_WXWNd-Rg8Ja3uTy_CMGeUUNUbA,Nice looking app albeit does not seem to sync with Google calendar and not cross platform. Certainly cannot do $15/yr.,2,9,4.7.2,2020-03-16 13:34:14,,,newest,com.appxy.planner +Vittamar Akbin,https://lh3.googleusercontent.com/a-/AOh14GgE9E4Bdw3LSIhtS6-rWRzK0uiJHJChdRQvRBAE,"suddenly with ads and paid content disappeared, synchronization has some issues",2,0,,2020-02-28 10:19:07,,,newest,com.appxy.planner +Magical Universe,https://lh3.googleusercontent.com/a-/AOh14GiMO8nB-sLkNdQTgmU-Ak6OA6-Tat6pstWpuiF3nE8,"It's useful but it doesn't fully sync the events, tasks, and notes between devices. It's a huge inconvenience. Besides that I still love the app.",2,3,4.7.1,2020-02-12 00:57:58,,,newest,com.appxy.planner +Melissa Moldrup,https://lh3.googleusercontent.com/a-/AOh14GhjcARWGdfA6vAkGHG51i06P-VyKDPVini9sYiA3y0,This is literally just another calendar app. Misleading calling it a planner. Smh. It's not even a good calendar. If you're hunting for a good planning app keep looking because this is definitely not it!!!,2,1,,2020-01-12 18:12:19,,,newest,com.appxy.planner +Jonathon Bittner,https://lh3.googleusercontent.com/-cH2BATROC9Q/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOSHrSjGrhficimbVO6_sz7ZZ_O4g/photo.jpg,It's Google calendar with different color scheme,2,0,,2019-10-26 05:07:17,,,newest,com.appxy.planner +Roger J Sanchez,https://lh3.googleusercontent.com/-qM71lj48ojc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNO6UawoxqQEjpPR5grbHX0jxFU0Q/photo.jpg,"Ver y often the application does not open, you sen question and ask what is happening, and you get No replied,, Roger J Sanchez from Miami",2,4,4.6,2019-08-29 04:18:46,,,newest,com.appxy.planner +Brenda McGlothin,https://lh3.googleusercontent.com/-wysT6ZNVSwo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNY5bkQlsLNotp8LtLBBJVogXs2rQ/photo.jpg,Loved this app until I updated updated it. Gibberish on every day now. It is terrible. Like this on my phone and tablet!!!!! How do I fix. I depend on this planner!!!!!!!!!!!!!!!,2,1,4.5.7,2019-08-09 13:35:30,,,newest,com.appxy.planner +Christi B,https://lh3.googleusercontent.com/a-/AOh14Gh8ZA4Lz74VSdqO7W59xmu9Ov2qTjhW2fzK6XvO,"Not very intuitive. I couldn't find a way to switch between week, day, or month views.",2,0,,2019-08-02 14:56:54,,,newest,com.appxy.planner +Emma Harlow,https://lh3.googleusercontent.com/a-/AOh14Gg38odIJVlnSBkzBm50iXkPOdu6UEuP2wXSG1ZprQ,notifications stopped working then it deleted all my tasks,2,0,4.5.7,2019-07-05 07:22:47,,,newest,com.appxy.planner +Beatrix Bell,https://lh3.googleusercontent.com/a-/AOh14GhDlGcTcR6qoy-MFLJ_hMdSN2mutRg5TpiMYKuV6A,"It is doing a strange black screen thing, and randomly opens by itself (other reviews have mentioned this) and I suspect it is making my phone crash. My phone is crashing several times a day, when I remove the app it stops crashing. I hope there is a fix for this. It works just fine on my tablet, but not my phone. It's a great app due to its simplicity. I switched to another planner app today and will be requesting a refund.",2,4,4.5.7,2019-05-14 15:19:10,,,newest,com.appxy.planner +Kyle Schanz,https://lh3.googleusercontent.com/a-/AOh14GhP_9LKN9JcQ9LywM7Mf3tcGKz35w9cDu9Ori5t,it used to be a good app until they added the latest update which includes ridiculously annoying ads and frequent crashes.,2,0,4.5.4,2019-04-21 19:11:13,,,newest,com.appxy.planner +A'ishah Fresses,https://lh3.googleusercontent.com/-P3zxKADUfVw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMppWEiHFPGHQe_F5mTyYipTOnTww/photo.jpg,Please fix the widget. It doesn't automatically update the day. It always shows yesterdays' date. Constantly having to remove and install widget.,2,11,4.5.5,2019-04-01 12:45:55,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,i think I could really like this app. except I upgraded to paid and still have ads and the search function does not search notes. It will be hard to find info saved in notes if you cant search...,2,15,4.5.5,2019-03-23 03:37:45,,,newest,com.appxy.planner +DaWe Vi,https://lh3.googleusercontent.com/a-/AOh14Ghs0VVAFDekWSWkt25a9SYKTI-r-w7RDMsBs08U0w,"DO NOT PAY FOR UPGRADE!! If you upgrade it just messes the app up. I have to manually change days every morning now. If it weren't for that, it'd be great. Please fix.",2,0,,2019-02-22 11:32:25,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,I was told to install Planner Pro instead of Planner Plus (which was what I already used) in order for my cell phone & iPad to sync. I have had at least 5 emails back & forth with the contact person but I still can't get my calendars linked using my email address as instructed. I guess I will have to go back to my Google calendar. I love the Planner Plus but need a calendar that syncs to both my cell and iPad.,2,1,,2019-02-04 01:59:48,,,newest,com.appxy.planner +Brea Gacy,https://lh3.googleusercontent.com/-fq5eqRqEyyU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOuRiyBcqjM7ynqfF2l29k0Jeh4tA/photo.jpg,"Eh. it's mediocre and really doesn't do anything your calendar app on your phone doesn't already do. I liked using the month widget until it just decided, on Jan 29, that the month of February no loger existed. I tried to look ahead to the month of Feb to see a preview from the widget but it kept going fron Jan to March. The only way to view Feb in the widget was to change the date to Feb in my phone. just went back to my phone's calendar app. Uninstalling.",2,7,4.5.4,2019-01-30 05:40:53,,,newest,com.appxy.planner +Binod Shukla,https://lh3.googleusercontent.com/a-/AOh14GiWDXpiahLGC_-dZu5CfIaX4DdWATCK8tpTdjolXQ,after reinstall data not recover while take backup Google Drive,2,0,4.5.4,2019-01-20 08:32:31,,,newest,com.appxy.planner +Actual Tooth,https://lh3.googleusercontent.com/-7hA2yTQSIf4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNDYcsWgOHi2pa6lPG4DVyYphbFhg/photo.jpg,"The interface is great and I love it overall; however, I'm giving it two Stars because it won't synchronize between my Samsung phone and Ipad, despite being the same account information for each. I emailed their support like about this, and they asked for my login info, but I never heard anything back. This is a huge inconvenience because I put a LOT into the version on my iPad, and I dont, and wont, do it twice for the same application. Once this is fixed I'll happily increase the rating.",2,69,4.5.4,2019-01-18 16:55:34,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,I would love it if my calendar would sync across by devices. And my tasks & notes synced. Its disappointing because I enjoy the simplicity of the format; its user friendly. But iy doesn't work for me since I can't sync all devices.,2,1,4.5.4,2018-12-31 18:18:12,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I loved this planner for several years with no issues. All of a sudden I can't launch the app or create/edit an event without getting a noisy, intrusive pop-up ads. I will be looking for a new option, possibly even just my stock calendar.",2,5,4.5.4,2018-12-17 03:54:21,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I have been using this for a while and found it to suit my needs well. I wanted something where I could see trasks and appointments in a daily view. This accomplished that goal in an easy to read and navigate format. However, there must have been a recent update that has made the ads ridiculously invasive to the point that I no longer want to use this app. I think I will start checking on alternate options.",2,33,4.5.4,2018-12-12 15:59:15,,,newest,com.appxy.planner +Marlene,https://lh3.googleusercontent.com/a-/AOh14Ggr2qsjSdCkyiHBE0VC_Y93m7yA0VVUeGcnHRIk7Q,"Free Version does not allow you to view all your events in the monthly view. I only see colored dots that indicate an event is scheduled. I would like to see the event names. I contacted support, but sadly did not get a response.",2,4,4.5.1,2018-11-03 22:12:02,,,newest,com.appxy.planner +J J,https://lh3.googleusercontent.com/-wR5d_ydGvII/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMpM4RmCcPrx4MiceilQPryqOf_hg/photo.jpg,Pain. Ya have to create an account to access,2,0,,2018-10-17 22:56:43,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,It sucks🖕🖕,2,0,4.4.1,2018-09-28 10:21:18,,,newest,com.appxy.planner +Savannah Brown,https://lh3.googleusercontent.com/a-/AOh14GhNS1CMKVkhBjtjrv6aiEBGnSSUHA2D_LZ46qA2Eg,"This app sucks its slow and they make you pay to make checklists which is +ridiculous",2,1,4.4.1,2018-08-03 18:18:33,,,newest,com.appxy.planner +Sarah K.,https://lh3.googleusercontent.com/a-/AOh14GjzMhwIGLi17WNxoukKMU20379UKDYciJkZo6aAJw,"I've had this app for a few years, and it worked well until the last several months - it's gotten increasingly buggy and will do things like ""forget"" you checked off tasks as completed and re-list them as incomplete between closing and re-opening the app. It also had been freezing more and more frequently, to the point where that happens at least once a day, and now I can't even load certain screens. Because of this, I will not be renewing my subscription this year and will be using another app.",2,3,4.4.1,2018-07-28 16:50:13,,,newest,com.appxy.planner +Nightcore Queen,https://lh3.googleusercontent.com/a-/AOh14Ggcbf6WSBG2Z1jZqL_JnjyULFtpUt_LQoRXgyYO,"Not what I was looking for, I saw there was a time it would remind me I +thought it would work but non of them did so that sucked",2,0,4.4.1,2018-07-13 05:53:02,,,newest,com.appxy.planner +Victoria Lang,https://lh3.googleusercontent.com/a-/AOh14Gg55W8p2npZn5j1oWwM2wubFWx5Cyl0DBhALIq6,"Loved it...until the projects feature was going to cost me a yearly fee. +Honestly, I wanted to try it and see if it works for me so you lost me when +you made the features I wanted cost.",2,0,,2018-07-09 12:37:50,,,newest,com.appxy.planner +gabe r,https://lh3.googleusercontent.com/-HnlVJs55U-8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOE4-EUODtzNdOMFtqs-Oh5JkbRYg/photo.jpg,"Won't let me use/access weekly view unless I pay $7.99 for the year. What a +crock. I'll find another app 👋",2,1,4.4.1,2018-06-28 23:51:50,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I paid for the subscription but can not use the recurring function. I tried +to make a task for monthly use and it does not show up on the other months +ahead.",2,2,4.4.1,2018-06-21 06:20:14,,,newest,com.appxy.planner +Josh & Shelly Keller,https://lh3.googleusercontent.com/-J2lcw7W6hik/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOCqfGB1PXuLTOzQI6KoO-XU1J6Hg/photo.jpg,"This app was AMAZING when I first started using it. Now it duplicates tasks +too much. I have about 20 of the same task for each day and it takes +forever for me to delete the extra tasks.",2,2,4.4.1,2018-05-30 13:34:04,,,newest,com.appxy.planner +Rachel Fryberger,https://lh3.googleusercontent.com/-kAP-zqn3xvM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNgB0W6VRo5lmRtdo_GD-9w4ueFuQ/photo.jpg,"I made several repeating tasks that are supposed to be repeated weekly by the day of the week. They seem to just multiply and now the same 4 tasks will show up 3 times each on a single day. I can't edit the original repeating ones, I can only delete them individually on the day they show up several times. This is VERY annoying. This app was a waste of my money. I paid for the ability to make repeating tasks. I'm very disappointed.",2,60,4.4.1,2018-04-04 17:31:47,,,newest,com.appxy.planner +Cheryl Parker,https://lh3.googleusercontent.com/a-/AOh14Ggx4SxldFa5RqBQATGuTckL2ayH3M68CYLZemRP,"Was fine until the last couple of days when the layout turned squirrelly on my Android tablet. Seems okay on my smart phone. Still, I will not purchase full version unless the version for my tablet goes back to matching the screen layout on my cell.",2,22,4.4.1,2018-03-29 02:34:04,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Uninstalled when I saw the app wanted me to pay a subscription fee as ransom for my data, I never will.",2,21,4.4.1,2018-03-26 01:21:37,,,newest,com.appxy.planner +Shanum Fatima,https://lh3.googleusercontent.com/-28R23MmJqvc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPjD0Zoqr-P7IVjboJ-yAhZUCGsow/photo.jpg,I set weekly view in settings and for few days the app worked fine but today i tried to go back to months view and i tried to access settings but when i try to do that the app closes,2,2,4.4,2018-03-21 07:10:06,,,newest,com.appxy.planner +Aiman Ariffin,https://lh3.googleusercontent.com/a-/AOh14GgvVGrjUvq1I2MBV8XcbGSaOtDPco8pw42I2bAa,I just installed this app and it's always on landscape view. Please fix this soon. Thank you!,2,0,4.3.7,2018-03-11 03:00:51,,,newest,com.appxy.planner +Patrick Callahan,https://lh3.googleusercontent.com/a-/AOh14GixTFLFggev4tVx7KWke38BB9exupzIrVasyUNSqQk,It's just a skin for Google calendar.,2,0,,2018-03-03 16:55:24,,,newest,com.appxy.planner +Stephen Wong,https://lh3.googleusercontent.com/a-/AOh14Gjqpw6ci-_Y8RsoVoWHJKEk4zhbHtrPLW2l3Ejuqg,When my phone is in tablet mode (android 7) the app will not display in portrait mode. It defaults to landscape mode. Pls fix and I'll change my review.,2,0,4.3.7,2018-02-28 05:26:46,,,newest,com.appxy.planner +Monica Curtis,https://lh3.googleusercontent.com/-kJ7Czr2fqdw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMqonBk51qzit-HM5wSJQoxHs9mhg/photo.jpg,It's ok. The free version does the same thing your calender does on your phone.,2,0,,2018-02-25 21:41:54,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"With so many free calendar apps out there, there's just nothing in the free version of this one to make you choose it. The only feature that might set it apart from the competition is the project feature, but you have to pay to use it. Sure, you have the notes feature, but there are ways to accomplish the same thing in pretty much any other calendar, so I just can't see the point. Rather than pay for an upgrade to an app that's just ho-hum (the view isn't even very customizable), I'll be uninstalling.",2,0,4.3.7,2018-02-18 15:31:47,,,newest,com.appxy.planner +Jessica Salmonson,https://lh3.googleusercontent.com/a-/AOh14GjK2BXowma0vVzPcSUWtUlqq0FegzgltJ2loXtp,"I don't want make an account before trying out the app! Give us a week trial before making us sign up, please.",2,0,4.3.7,2018-01-29 07:57:53,,,newest,com.appxy.planner +Kevin o,https://lh3.googleusercontent.com/-0gkGqjIYQxA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOV7ymCLrvgR3hB6K1aU0V2T05Xzw/photo.jpg,Would like questions answered I email my questions for answers & I give my contact info for almost two months now but no one contacts me. This is very disappointing especially when I bought this app. Very poor for business kevin,2,0,,2018-01-22 22:01:26,,,newest,com.appxy.planner +Kirstianna Fanning,https://lh3.googleusercontent.com/-8kVe2ybML0U/AAAAAAAAAAI/AAAAAAAABec/AAKWJJM8lTPGY8FCVx-ov1qrviKuYAFYlw/photo.jpg,The app is great for the schedule but the tasks needs work . I should be able to schedule something to repeat every day but it doesn't allow for that option. And it doesn't always register the repeats. Had to pay for the yearly subscription to find out it doesnt even work. Stick with the free version. Least youre not wasting your money. Will have to try something else for my tasks. And the developer doesn't care.,2,2,4.3.7,2018-01-22 03:12:50,,,newest,com.appxy.planner +Kevin Oehlerts,https://lh3.googleusercontent.com/-2UkuWpEtmfY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMRC2whagJGogEugwDNds-5tQXROQ/photo.jpg,I have questions that i would like to have answered and i have emailed numerous times with no reponse back. They say dont write negative reponses to this app without contacting us first. I did email for answers but no one will answer my questions. My questions are not bad for this app but the people behind this app are terrible business people. So this could be a great app but service is terrible. Which instead of getting 4 or 5 stars im giving 2 should be 1 but app is good the ones behind the app are bad just want to take peoples money and then laugh at us by not helping,2,1,4.3.7,2018-01-16 19:59:25,,,newest,com.appxy.planner +Djade Dennis,https://lh3.googleusercontent.com/-8tbcLs8phdo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOsBYx5mdjRldpGX565ICP0kC5oEg/photo.jpg,Didn't get past not being able to use it in portrait mode. I think I should be able to choose whether I need widespread view as in a spreadsheet or a portrait view to view a page of writing and this does not give me the option. I may end up using it this is only the second app that I have tried for organizing by used to be hand & ink written notebooks.,2,4,4.3.7,2018-01-07 00:53:46,,,newest,com.appxy.planner +S Reyes,https://lh3.googleusercontent.com/-EtzBUNIaD6M/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMl8jJ_v15sehLhrTPBR7kBLkj91w/photo.jpg,Ads. Just too many.,2,0,4.3.7,2018-01-03 00:10:21,,,newest,com.appxy.planner +Matsuko Friedland,https://lh3.googleusercontent.com/-YYLo9t0B3Oc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOjxrPbyQAQ6I2uZw6gp9BgKjxo3w/photo.jpg,"I really wanted to like this app, but it's just too buggy. Sometimes I open the app and it doesn't have the icons to switch views. Also the 12-hour formatting is really flawed. And the priority scale seems way too complex. High, medium, low should be enough for most people.",2,7,4.3.7,2017-12-22 07:18:27,,,newest,com.appxy.planner +Hans Katzenmeier,https://lh3.googleusercontent.com/a-/AOh14GgYJsAyQND6hjvzm7yIqApoo5js8zYBxhBDZ4ChJNo,"This app is a pretty good one, but on my Galaxy Note, it stopped allowing me to check off tasks for some reason. I paid for the pro version before this happened unfortunately.",2,0,4.3.7,2017-12-03 02:20:51,,,newest,com.appxy.planner +kate,https://lh3.googleusercontent.com/a-/AOh14GiIbsee4wJLcyW04qy5LXsE6I5FYFEUyZ987NMV5Q,"i ws kinda disappointed because i really loved the user interface of the app and how smooth it flows from one set up to another. however, i have to uninstall and install it back up several time because it will not accept the 4digit password i have set it up with. i had to do it like 10 times :/ but still like the app tho. i hope that bug will be fixed sooner.",2,11,4.3.7,2017-11-24 05:47:40,,,newest,com.appxy.planner +Paul Basson,https://lh3.googleusercontent.com/-E1FeavuBy6A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPVHgErT1Zlv4EbEXWugY1dOgKlQw/photo.jpg,UI atrocious! Nothing fits.,2,0,,2017-11-08 21:48:53,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"App is very buggy ! Week view is completely unusable - shows some events twice, and some not at all. Also, it would be nice if there was an option, in month view, to see the names of the events without having to click on every day individually. Fix this and you'll get 5 stars, but without that (especially week view!) the app is useless.",2,0,4.3.7,2017-10-30 07:32:17,,,newest,com.appxy.planner +Connie G. Settle,https://lh3.googleusercontent.com/-mwxtnEImqhQ/AAAAAAAAAAI/AAAAAAAAALA/AAKWJJNGQxfAd7AQk9fGeKDGe2YjDIRcgw/photo.jpg,Isn't Thanksgiving and Christmas considered a holiday??? Am I wrong???,2,1,4.3.7,2017-10-19 00:04:34,,,newest,com.appxy.planner +K. Morawski,https://lh3.googleusercontent.com/a-/AOh14Gi-opcg0FFS_jFsMo-rMj52W6ydnvv9mZMJm2oCfw,"Widget is buggy - a task marked as completed in the app is displayed as overdue, and trying to tick it off in the widget takes me into edit mode. The proper app, when reopened, shows a blank inbox and revisiting the screen is required to populate it again. Poor punctuation (eg. ""28 Sep , 2017” - why the space before the comma) is not that big a deal, but also adds to the app not feeling very ""pro"".",2,97,4.3.7,2017-10-17 17:06:19,,,newest,com.appxy.planner +Elexus T,https://lh3.googleusercontent.com/a-/AOh14Gj-rN0c6lJhopeyNNs9ECMQpgNFbNH6A0YUY5fJcA,"I like the app, but for the past day I haven't got any notifications.",2,0,4.3.7,2017-09-16 15:18:50,,,newest,com.appxy.planner +Becca Adams,https://lh3.googleusercontent.com/a-/AOh14Gjz-oeojB77CQzerBApxn8SXaV4-bqkdpyJb-Ngzw,This app is not good if you don't buy the subscription.,2,0,4.3.7,2017-09-05 12:18:11,,,newest,com.appxy.planner +Angelica Aronson,https://lh3.googleusercontent.com/-1_BQEVS6hzs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP5TcuF06QDR837OcfgZdm_3wRgAQ/photo.jpg,The app worked fine for awhile but all the events I added were simply gone this morning. This was a frustrating experience.,2,3,4.3.7,2017-08-30 16:41:01,,,newest,com.appxy.planner +Romko VK,https://lh3.googleusercontent.com/-WJ6E5byW0qQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNd4hWnGIflLZHKk6UHnx9GutwVSQ/photo.jpg,I got locked out of my planner. After entering my paascode the app said that the passcode was wrong. It was not wrong. I suspected a system glitch and contacted the developer on June 17th of this year. I haven't received any response yet. I found my way around this problem by this time. I will not renew my subscription anymore. I will look for another app developer with a better customer service.,2,1,,2017-08-08 22:26:26,,,newest,com.appxy.planner +Gayathri,https://lh3.googleusercontent.com/a-/AOh14GijvO3M8TMw_m2gIufovnGsBEFW7t0GQ81JZYU-aA,Why this require this much personal details?,2,0,,2017-07-23 18:10:29,,,newest,com.appxy.planner +Rachel Szonyi,https://lh3.googleusercontent.com/-WPO0wPXRLLw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMpSm5oqh8PkQNM8JQN2-bUdOCyTA/photo.jpg,i cant set my times for events bc theres no am/pm option. it keeps changing my time not allowing me to put the right thing..annoying,2,2,4.3.7,2017-07-21 15:47:53,,,newest,com.appxy.planner +Rhea Paniesin,https://lh3.googleusercontent.com/a-/AOh14GjHjdQ5N8hRtd_u4nW92rb3Yv2_UfgU3oV9SwFn,I paid for the pro version because the color coding in the free version didn't work properly. Come to find out that the pro version doesn't have daily tabs for tasks and notes as the free version does. But the paid version does color code. Gaining that feature isn't worth losing the other two. I feel robbed.,2,0,,2017-07-10 20:03:53,,,newest,com.appxy.planner +Zoey Garcia,https://lh3.googleusercontent.com/a-/AOh14Gjhvq63N6mJCxeCS7ubx6-SO5hVjZ2FV_nKnX4e,It wouldn't let me in,2,0,,2017-06-28 02:44:28,,,newest,com.appxy.planner +Holly Jahangiri,https://lh3.googleusercontent.com/a-/AOh14Gh8i1XVHBTvxmPRDBMf7rTUFMiPi9jmbTsFQsI51Ks,"Doesn't sync reliably, and that's one of the most critical features for a calendar app.",2,10,4.3.7,2017-06-25 17:30:57,,,newest,com.appxy.planner +Taylor Laviera,https://lh3.googleusercontent.com/-EDfqrGkH4-k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN9E4gt7j0vVDGhbvfPCbvHL7bP8w/photo.jpg,"It was decent at first, but it stops working completely when I wanted to put a custom time reminder, and it did not sync with my Google calendar. I ended up deleting it :/",2,0,,2017-06-02 21:18:49,,,newest,com.appxy.planner +Ritvik P,https://lh3.googleusercontent.com/a-/AOh14Ggb3pSRyKu65Z644iS9MCASNNG35V_i1zfgCdau3g,"This app is not free for even a trial, so how am I going to buy it.",2,0,,2017-06-02 01:53:33,,,newest,com.appxy.planner +Judy Snyder,https://lh3.googleusercontent.com/a-/AOh14GgCyNIacaU6go-zGMzx0u-FPpHYY3ji5FfN3x80,I do not use it so I want to cancel the subscription but am unable. Jorte had unsubscribe within opening page. Unable to sign in.,2,9,4.3.7,2017-05-30 22:56:57,,,newest,com.appxy.planner +Nicole,https://lh3.googleusercontent.com/a-/AOh14Ggir9prj-oS-kLYGplNrVIDpBy3A2qYpLwPQydBWA,Passcode feature is messed up and locked me out. Had to uninstall. Yr,2,0,,2017-05-26 13:36:48,,,newest,com.appxy.planner +Tasha,https://lh3.googleusercontent.com/a-/AOh14GhT7S8kdq7olo6cWDMcWiwoXp-Kzva7qnZEkzdTng,"I tried to explore it a little after downloading, I want something that will show me everything planned on the day I have notes on rather than me having to search if I do, i tend to forget due to busy schedules. I want automatic pop up, I'll keep playing with it, but so far dislike",2,119,4.3.7,2017-04-23 13:00:00,,,newest,com.appxy.planner +H AL,https://lh3.googleusercontent.com/a-/AOh14GhQ0I6sYP59wuVGVyFBX1iZFBF5hj0EGTALWJlTsQ,"The single FranklinCovey planner feature available is the Task ABC123 priorities system, but oddly the Task status system is missing. No more FC system functionality. As of the rest it's a very conventional PIM suite with a little of CRM salt & pepper.",2,9,4.2.0,2017-04-02 15:52:53,,,newest,com.appxy.planner +Michelle Rinna,https://lh3.googleusercontent.com/a-/AOh14GiZMU3SxBGuyzhop6elIFw8M4FruSF3fk2er5k0AQ,"Well, based on the description of this app and what I understood I would receive has not, lived up to its description. I hope the bugs will be worked out. I emailed for help more than 24 hours ago and have not received any response thus far. It would be helpful to have a help and/or FAQ section to refer to. After only one day of using the app, I have encountered the following: 1. From calendar screen, + button does not give option for Project (only Event, Task, or Note). I have the upgraded version. 2. Settings, General, Start with... is set for Day View, but shows month instead. 3. Help & Feedback only gives option to email for help. No option to search for help. 4. When deleting an item in a series comma I do not get the option to just delete the one occurrence. Am I doing something wrong? Is there any help that I can expect to receive? I paid $4.99 for the upgraded version, and I am not at all happy. Busy people with crazy schedules need a reliable app.",2,42,4.3.7,2017-03-29 03:42:08,,,newest,com.appxy.planner +Eric Pratt,https://lh3.googleusercontent.com/a-/AOh14GigO_nKd1oyTuL1b9tUkMx2LyhiHXDyCItJY4JWZQ,"I think the free version of the app has some good capabilities, but lacks some functionality that I desire; functionality that I'm not sure exists in the paid version due to the lack of support for the product. I was unable to find where I could go to ask questions. Thus the 2 star rating",2,107,4.3.7,2017-03-27 04:38:55,,,newest,com.appxy.planner +hailey g.,https://lh3.googleusercontent.com/a-/AOh14Ghhk2xbDKxP_FEfeGs7aFn2LuSg2XDE6lnRYZk,It doesn't work well as a calander or any type of memo for me. I also didn't like the type of layout design they made it didn't fit with what the purpose of this app was said to do,2,25,4.3.7,2017-03-26 12:32:55,,,newest,com.appxy.planner +Alix Tobias,https://lh3.googleusercontent.com/-qYLBp3_h62U/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMWr_vFvF0S-COLzy5mkzSApJmmBA/photo.jpg,"Used to love this app, but after the update it's dumb and no longer useful.",2,16,4.3.7,2017-03-25 11:36:34,,,newest,com.appxy.planner +Nikitia Ramruthan,https://lh3.googleusercontent.com/a-/AOh14Gj20gTkj0j56L_-y_32h_NspNl4uXRf_DfMOaEZfA,The app does not sync with my Google calendar and there is no sync option or refresh option. Meetings etc are not shown and I have to go back to the Google calendar or acalender to make sure I don't miss anything. Events made on my tablet do not show on my phone. Please fix this. It's such a great app if it just worked.,2,14,4.3.6,2017-03-16 08:16:04,,,newest,com.appxy.planner +Branka Miočević Kovačević,https://lh3.googleusercontent.com/a-/AOh14Gj5Fs3UyZRgerXLI2WNTSGly6gAaE7oSMmB2k4Fhw,It would be a 5* review if it weren't yearly payment. Put it a one time payment and I'll be the first one to buy it. This really ruined it for me.,2,4,4.3.4,2017-02-27 20:58:25,,,newest,com.appxy.planner +Keith McBride,https://lh3.googleusercontent.com/-TPf6C13FhLU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNz8C0H-4Z6HBcSPRhR1Baq5J3Sxg/photo.jpg,Free app is crippled version of paid app costs $4.99 a year.,2,1,,2017-02-13 14:07:34,,,newest,com.appxy.planner +Etienne Filho,https://lh3.googleusercontent.com/a-/AOh14Gh11GL96tAvB8eBBmWaMw15qfodfhDDeuyWMFZdDg,If you want to start a project you have to pay 4.99 a year.,2,1,4.3.4,2017-02-11 15:52:10,,,newest,com.appxy.planner +Angel Garcia,https://lh3.googleusercontent.com/a-/AOh14Ghyt-pwMvvpdHntptH9AgGymqFKCuAXP3Yf2J_0,"I try signing up, logging in, even with Facebook and still won't even let me in",2,0,3.2.3,2017-02-07 17:52:58,,,newest,com.appxy.planner +Jia Hui Chan,https://lh3.googleusercontent.com/a-/AOh14GhOOjRltaoVGV0B7JHQnX5ZwfIc7Ef7X4UqCM3mDQ,Unable to create an account despite using email or social media account. Can't even start trying out the app,2,11,4.3.4,2017-02-02 02:35:13,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,This thing is terrible I couldn't do anything I wanted,2,5,4.3.4,2017-01-24 23:23:10,,,newest,com.appxy.planner +Chandice Cook,https://lh3.googleusercontent.com/-s_RFePucXGg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMTr6cRkCGKpaL6zydDW1Xa0FUGiA/photo.jpg,You want me to pay $5 for the full version so I can set a task to repeat? My phone's planner does that for free.,2,8,4.3.4,2017-01-23 05:23:48,,,newest,com.appxy.planner +Mazzie Thurgoland,https://lh3.googleusercontent.com/-0-uCI5tUCQw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOFEZu_UIXPCrhTP9IWgBnZ793QcQ/photo.jpg,It has deleted all of my entries planned for today. I am going to try a new app.,2,0,3.2.3,2017-01-15 20:40:59,,,newest,com.appxy.planner +Alessandro Power,https://lh3.googleusercontent.com/a-/AOh14Ghw3IYAiCbrzDYt2lLob-cCg7X5l0_Nj2VmdyjyiQ,Task notifications have stopped working.,2,4,4.3.4,2017-01-11 16:23:48,,,newest,com.appxy.planner +D Gild,https://lh3.googleusercontent.com/a-/AOh14GgbWNCN1S--xH3jTzHWf5aeVdkuiyikWfv_AXEloxs,Its still asking me in an ad on the app to upgrade. Not cool!,2,22,4.3.4,2016-12-29 16:25:51,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"ট্যাবে হরাইজন্টাল, ফোনে ভার্টিকাল। ফলে ট্যাবে লিখতে অসুবিধা হচ্ছে। এবং লগ ইন করতে হয় যেকোন অ্যাকাউন্টে।",2,11,4.3.4,2016-12-25 12:42:33,,,newest,com.appxy.planner +JP Beaufort,https://lh3.googleusercontent.com/a-/AOh14GhJdCEG5pYlLr9_MpDrO-ShN5-o42zzqlHHvRRkVg,Wish I can repeat sirten things without spending money every year,2,30,4.3.4,2016-12-23 08:18:45,,,newest,com.appxy.planner +B. Blue Marble,https://lh3.googleusercontent.com/a-/AOh14GhTHXWDJd8u3TzvyzmYUjIo82ccnGhdbCj40QAy_A,"I installed because of the option to synch tasks, but that is one of the features that unlocks for $4.99/yr. No issues paying it if I liked the feature, but with no chance to try out the one reason I download the app, I uninstalled immediately.",2,0,,2016-12-21 05:11:03,,,newest,com.appxy.planner +Tyler Meers,https://lh3.googleusercontent.com/a-/AOh14GiauHFQTZSu7q-o5jKd93z2l3e7db2AoVPStWRtEqY,"Very easy to pull me in I should have stopped, but hindsight is always 20/20. My friends and people who are interested in Google Apps for integrated coordination of tasks, meetings, whatever, but what really gets my blood boiling and made me downgraded from 3 stars to 2 Stars is the deadweight loss of not being able to either donate the rest of the subscription Source Capital investment that is just raining still if someone makes to make a donation. Is that I'm still sitting here with this deadweight loss.",2,0,,2016-12-14 21:33:40,,,newest,com.appxy.planner +Shelley Ritchie,https://lh3.googleusercontent.com/-u_-Wdz8pNkU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMopfqvSBTEh42aWFgEuNOWcjQSYQ/photo.jpg,Its okay,2,2,,2016-12-03 08:44:52,,,newest,com.appxy.planner +Stephanie Xan,https://lh3.googleusercontent.com/a-/AOh14GiSWBaFKTDIqCER_SzkWvkw7lYPZWqIStqfjdV9UZk,Doesn't sync with Google calendar. The one thing it's supposed to do and it failed.,2,7,4.3.3,2016-11-23 20:37:42,,,newest,com.appxy.planner +Somerandomguy,https://lh3.googleusercontent.com/-sjhWs9ktCjc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNUlBkaJsjxVxsYpCT_9hyHUDfk7w/photo.jpg,"Used to be good until last update, now I can't login to see any of my tasks, appointments, or notes. Edit: Now works since newest update, but I have lost all previous tasks and notes. Very disappointed.",2,46,4.3.3,2016-11-14 19:07:31,,,newest,com.appxy.planner +Taylor Clements,https://lh3.googleusercontent.com/a-/AOh14GgFzsInFgt7Hgl63zg-kkuCBe8zRV-wU_hKMg-Q,Need full version for anything more than a calender,2,0,,2016-11-03 22:04:06,,,newest,com.appxy.planner +ranganatha c,https://lh3.googleusercontent.com/a-/AOh14GjEhgYeBAqjNewq4HOTZQ9CtzqR8WVOXet55a62Gw,What happened to all those data i had.. not able to log also,2,1,4.3.2,2016-11-01 09:27:47,,,newest,com.appxy.planner +Colleen Thilges,https://lh3.googleusercontent.com/-Q0NWgYt8SFE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOdDAgMwb9jwCILpcGpnkCX4jqB9w/photo.jpg,Have used app for about 4 months now I can't get back into it. Keeps asking to sign in or create account won't let me do either. Time to dump it!,2,3,4.3.2,2016-10-31 15:16:15,,,newest,com.appxy.planner +Srinivas Mundrathi,https://lh3.googleusercontent.com/-mWyG-jyJSug/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM-KCISVsKybPLYoYdhaJe5KG1u1A/photo.jpg,Was a great app...but could not login..since last month so...bye bye planner pro,2,1,4.3.0,2016-10-30 05:15:52,,,newest,com.appxy.planner +vii Zing,https://lh3.googleusercontent.com/a-/AOh14GgaxhVG9oURpsPEAy8-xyFfD5HuCoEgGVxkVpHIyA,"It was working ok for a couple of months, then would not let me sign in. Funny thing is I don't remember signing out! I would simply hit the icon on my android and it would just be there. Sure looks like it works for others.",2,0,,2016-10-28 16:11:54,,,newest,com.appxy.planner +Katerina Orfanou,https://lh3.googleusercontent.com/a-/AOh14GhwW4KBoWUECOOYBct5jHcSMC6fgxQF2g9_YPC8gg,"This app was everything I needed, I loved it. But after thenlast update I cannot log in to my account so I cannot see my daily schedule. Will not trust it again and I have already unistalled it. I need an organizing app which I can trust. Fortunately all the events were synced to my google calendar but notes and tasks didnt.. So I dont know if I am forgeting something that is pending now.",2,42,4.3.2,2016-10-28 07:40:22,,,newest,com.appxy.planner +Jourdan Clark,https://lh3.googleusercontent.com/a-/AOh14GgzOICyOF9HDHFR2J2begCKTmrl5QnfyfHGZgRTpA,"I logged in with Facebook. I upgraded to the pro version. Checked the planner a day later and had to log in again. Now it says to upgrade to the pro version again and if I click it, Play says I'm already subscribed to it.",2,1,4.3.2,2016-10-27 20:58:29,,,newest,com.appxy.planner +F Travel,https://lh3.googleusercontent.com/-_nZpTlKoNK8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPlDHZ-MkLJ_QjcwYIzf8EytNz-jg/photo.jpg,"Every time the company upgrades the app or make any changes, subscribers can't access the calendar. Sign in page has many issues.",2,0,,2016-10-27 16:09:44,,,newest,com.appxy.planner +Tina Rideout,https://lh3.googleusercontent.com/-pg0R4r_SspE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOhe_gC7QNSPx7zzCUHZ3T8AuGxiA/photo.jpg,I put an event in and it doubles everyday. Fix the glitches this is a great app otherwise.,2,4,4.3.0,2016-10-18 15:30:31,,,newest,com.appxy.planner +Sharialene,https://lh3.googleusercontent.com/-tzLNORXJjGA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJM7fDwbzmGY5lOGcYOq8Pyas9XH8w/photo.jpg,At first I really liked it because all the systems are functioning well in my phone.. but when I used this in the tab... the notifications wont even turn !! I sm really pissed by this and I hope you fix this ASAP,2,18,4.3.0,2016-10-16 09:33:24,,,newest,com.appxy.planner +Jennita Wagner,https://lh3.googleusercontent.com/a-/AOh14Ggoxq1WnUkRaGnxyHZQm4b9JJ_UBigYHz66qkrwAQ,"I would give this app 5 stars but I am beyond frustrated with how slow it is to open. I pay the subscription for premium, and I love all the options in the app. But it literally takes 5 to 10 minutes for the app to open, unless there is a notification in my notification bar that I can open the app with. This would be annoying even with a free app, but to pay for a slow app that takes ages to open is ridiculous. In the 2 or 3 years that I've used it this has never been fixed with any upgrade.",3,21,4.7.1,2020-01-16 14:27:45,,,most_relevant,com.appxy.planner +Becky Fehr,https://lh3.googleusercontent.com/a-/AOh14Ghu4FILM-AXmKwjvvLPdKv-I0Qn7obU61n8ZJB2CQ,Really like the app. However it is multiplying my tasks on a daily basis and i cant delete them as fast as they appear... frustraring not using it right now,3,7,4.7.2,2020-03-21 17:54:00,,,most_relevant,com.appxy.planner +Sharisse Moore,https://lh3.googleusercontent.com/-XWbC8RqWapw/AAAAAAAAAAI/AAAAAAAAAN8/AAKWJJN5IQeSqSBng9bpXctV20JZ7ZIOtQ/photo.jpg,Good app. However the notification has stopped working.,3,0,4.7.2,2020-03-15 14:36:42,,,most_relevant,com.appxy.planner +Shea Dalziel,https://lh3.googleusercontent.com/a-/AOh14Gi7cl6LDivna3eaPLvz_uIu1i49yrEBlYkM2Yccag,"The app design looks nice, and has good features. This is a functional planner app. I can access the week view in the free version (though a prompt to upgrade to premium pops up), but tasks cannot be set as recurring in the free version. This is a main feature I'm looking for in a planner app. Also, the look of the app cannot be customized- stuck forever with that purple at the top of the screen. There are other free apps that include these things.",3,0,,2020-01-18 19:19:26,,,most_relevant,com.appxy.planner +Stephanie Cervi,https://lh3.googleusercontent.com/a-/AOh14Gg8CDkvO7ysktTQSjTlGU9Mt9ja6wSua9N59gasgA,"This is hands down the best personal planning app I've ever come across. That being said, it's basically unusable on Android. The view jumps to the top of the day's task list at random, making it easy to accidentally check off the wrong task. It takes minutes to load anything when you try to access the rest of the app through the back arrow at the top left. And, on occasion, tasks will duplicate themselves multiple times with different parameters. I use it on my iPad with no trouble at all.",3,12,4.7,2019-10-10 14:28:54,,,most_relevant,com.appxy.planner +Parshva Shah,https://lh3.googleusercontent.com/a-/AOh14Gh9J_IcnP5nLWifwsKNp2bd5Z8b2C3WgxXTYWyaAfQ,"There's a visible lag when scrolling left or right in day view, even in high end phones. Going back from a task edit screen without making any changes also asks (shows popup) whether you wish to save or discard changes, that popup is irritating. Otherwise an effective and the point app. Cheers!",3,2,4.4.1,2018-09-26 15:44:05,,,most_relevant,com.appxy.planner +Alex Ianta,https://lh3.googleusercontent.com/-rXFCOtyt_qU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO-og9b3S-ApwP5dHJjFe5GyEXbIg/photo.jpg,"I like how it allows me to set any number of reminders, minutes/hours/days/weeks in advance either by push notification or email. But many little bugs pepper this app. The calendar view will bug out and not map to the selected month from time to time. The location field tries to be smart by giving you a 'maps like' autocomplete, but this is annoying when you just want 'gym'. For some reason the first letter of an event name isn't registered by autocorrect, so 'Event' turns to 'venting'.",3,1,4.5.7,2019-07-18 13:53:31,,,most_relevant,com.appxy.planner +Katelyn Pauls,https://lh3.googleusercontent.com/-gne2pJSrLL8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPEDfuxevVfFx-2tnQ8jar3N4awMg/photo.jpg,"I have the app on my phone and my iPad and they do not communicate. Everything that I input on my phone, I have to re-input on my iPad. I'm signed into the same account on both. It would be nice if they would communicate. Also, I don't understand why the computer app is available separately and for a much more expensive price...",3,12,4.5.4,2018-11-13 18:26:30,,,most_relevant,com.appxy.planner +Nurul Shahida,https://lh3.googleusercontent.com/-S8jyVTvi42U/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNYy4MzFXni4hqGwL30-mjvzTJN6g/photo.jpg,Bought the planner pro.... Love the app... The down side is that the app did not sync... i have 2 device handphone and tablet both android... i have to update both device twice instead of once... Would give 4 or 5 star if it can sync between both device. i have some suggestion... maybe can input some bill tracker and some cute icon or pill tracker/ hydration icon.,3,3,4.5.5,2019-04-14 14:00:06,,,most_relevant,com.appxy.planner +Jeremy Evans,https://lh3.googleusercontent.com/a-/AOh14Gid2XGnulGLHSls_MnoeqyuWfdkz1FhhjEMehyLy2s,"I love this app, it's the only one that looks and feels like the old Franklin planner, however; since the latest update I have a banner ad on the bottom of the screen with Google ads and I am a paid pro user. This is extremely annoying. If they don't remove this, I'm leaving.",3,84,4.5.5,2019-03-24 15:37:31,,,most_relevant,com.appxy.planner +katie dangelo,https://lh3.googleusercontent.com/-tghW1pc0C1g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN2AOkA9u_Myejf_W2KMX2qGVSFRg/photo.jpg,"I need more time with your app. I'm looking for an organizing app to meet the needs of me and my gaming community to be able to cross schedule events share valuable information w/aarach. while I know that was never your vision I am impressed with the very easy to use ui, but have not figured out if u can share projects notes calandars ECT. I cam see your app meeting a very large need in a community the desperately needs an easy way to collaborate. adding a group's feature to cross plan 5 stars",3,6,4.5.7,2019-05-11 21:39:01,,,most_relevant,com.appxy.planner +Harold Duncan,https://lh3.googleusercontent.com/-LkGdyNjVBSU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMa9SKfN0MPRWJQctFGMBok2JBvdw/photo.jpg,like the concept but tech support cannot get rid of ads and popups. tried over several months but they are gone a short while then return. the response lag and language issues are frustrating. this changed my review and I removed the app,3,3,4.5.4,2019-04-04 15:00:01,,,most_relevant,com.appxy.planner +Christy Smith,https://lh3.googleusercontent.com/a-/AOh14GirTvlu-zEVeWmLN5ysjXRH5dgkNYjRcFknAqemmw,"Great app! Intuitive navigation, easy to use. Nice integration with other apps. What's up with the lavender color designation?! I didn't think that lavender would look turquoise.",3,0,4.5.7,2019-07-28 16:33:30,,,most_relevant,com.appxy.planner +Lois Ray,https://lh3.googleusercontent.com/a-/AOh14GgV3brw2cl2vgFEasxG2YsC0E76irghRnOKwB_O,"useful app, interface are easy to use, would be better if you could add search function, so we dont have to comb thru everything to find what we are looking for.",3,4,4.5.8,2019-07-19 23:39:39,,,most_relevant,com.appxy.planner +Joan,https://lh3.googleusercontent.com/a-/AOh14GivrpxiC1fwxLaakiyCYCZd0MpZkTOM1kyqV4v1GQ,I like this app but the ads are getting aggravating. Especially the Trump ads. I'd prefer not to see him on my phone. Thank you very much,3,0,4.5.4,2019-03-15 00:44:27,,,most_relevant,com.appxy.planner +Joane Fostanes,https://lh3.googleusercontent.com/a-/AOh14GgMcUnlesIlxeNpJoXG4ECq1k4A7tM0AC3VWa8Z,It's actually good but it doesn't have a feature where your task appears on your lockscreen that will remind you everytime you forgot something to do.,3,2,4.5.7,2019-07-03 06:04:35,,,most_relevant,com.appxy.planner +Adam Laughton,https://lh3.googleusercontent.com/a-/AOh14Gg7lm7OHN3xhKY1HgQ-G94le3CiGjyikGmhGMGX,Landscape mode only? Big problem. Cant make it portrait on my kindle fire 8,3,0,4.5.4,2019-04-12 08:34:57,,,most_relevant,com.appxy.planner +Dan Kubus,https://lh3.googleusercontent.com/-xnNEMqzt5N0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNOKxQmu0rn8VnHR072eIVWQyhw6w/photo.jpg,"I found this app to be redundant, since I already have a calendar on my phone, and Planner Pro does little else.",3,0,,2019-02-21 14:23:36,,,most_relevant,com.appxy.planner +Jethro Ong,https://lh3.googleusercontent.com/a-/AOh14GgCzRD0fjfaU7DA_ixNvGfQw3VC_E16D2T6w92WI90,"App is extremely useful just that the ""search"" feature doesn't cover all the notes in the app",3,3,4.7,2019-09-27 08:25:57,,,most_relevant,com.appxy.planner +vanessa tan,https://lh3.googleusercontent.com/a-/AOh14Gga6Ge8z0KLX0jcgliyCTb6oFy0fkFI0hRf1g1QAA,"there are ads even though there wasnt any label of ""contains ads"" in this app description",3,1,4.5.4,2019-02-21 04:39:32,,,most_relevant,com.appxy.planner +jessica lynn,https://lh3.googleusercontent.com/a-/AOh14GgpUG67FNeXaEC5KPOA6xCAvyXoNxR9XsJ0VBV50A,"Like everything about the app except, my events kept disappearing. I would enter an event and one would disappear.",3,0,,2018-11-29 17:37:52,,,most_relevant,com.appxy.planner +Rachel,https://lh3.googleusercontent.com/a-/AOh14GhSuK7Y6Fgvp5vW2S_gFgkD1vKMZdMk8sUTw59CRQ,why won't my homescreen widget display all day events? this makes it really difficult to use,3,0,4.5.4,2019-04-05 19:32:50,,,most_relevant,com.appxy.planner +jody louie,https://lh3.googleusercontent.com/a-/AOh14GgieZqPnbSeUaWSIdRxN3kStZmR2r-jFjZod3zV,does not update tasks in widget automatically,3,3,4.5.7,2019-05-20 20:51:50,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,it works it just hard,3,0,4.5.4,2019-02-08 05:10:12,,,most_relevant,com.appxy.planner +D.R. Williams,https://lh3.googleusercontent.com/a-/AOh14Ghg3dLIMXfc0wHplNqQNFC1pPvQWY6Kjzr10b4oJg,"Not able to sync with Outlook. Cannot create goals with a goal tracker, or +export calendar events, tasks, or notes, and only accessible through phone +and tablet. Much improvements needed for such a high subscription rate.",3,9,4.4.1,2018-07-15 10:48:36,,,most_relevant,com.appxy.planner +Shelley Callus,https://lh3.googleusercontent.com/a-/AOh14GiSKc6Ofvxm9LgwUu_jh1etX_VOlvpIpQxVaDlZyA,"It's good but since we always have more than 1 thing to do we write three +or more things to do and when we go to priorities ex:C1 A4 B2 etc; we +wouldn't know which to do so we suggest you have more of those .Thanks.",3,1,4.4.1,2018-07-07 19:16:52,,,most_relevant,com.appxy.planner +Dean Yencer,https://lh3.googleusercontent.com/a-/AOh14Gi5qs6BPCnxkSOfGQRTBLi8Skq4UKBEqPbG9bRSMQ,"Would be awesome except when I put start in weekly view in the settings, I can no longer access monthly view or change the settings ...",3,5,4.4,2018-03-20 12:17:36,,,most_relevant,com.appxy.planner +DRxEW,https://lh3.googleusercontent.com/a-/AOh14GijNEVfCJ8YXoQUY4fQ672T3lg10g7Lz4d9tRZoPw,"Been using for a while now. Getting buggy, needs update",3,2,4.4,2018-03-20 18:56:25,,,most_relevant,com.appxy.planner +Deanna Wedell,https://lh3.googleusercontent.com/a-/AOh14Ggnca3piz82g9jLJIjHTvsSnWqIo5jovwSNRSf2lQ,"I like this app very much, because it's fairly easy to use and it allows for actual ring tones to be used; not just notification tones). However, my biggest issues are that I cannot receive any notifications from the planner if the event was created on my phone's calendar (I'm assuming this is the issue since only half, or less than half, of my total events and tasks do not sound). It also will not sound when I have reminders set for many different times. It's original default reminder is 15 minutes before the event time, but I changed it to be on time and then I would make other reminders if need be. It will only sound at 15 minutes before the event time, no matter what I tell it to do.",3,398,4.3.7,2017-03-30 04:55:02,,,most_relevant,com.appxy.planner +Nhung Nhung,https://lh3.googleusercontent.com/a-/AOh14GgsD-c1a_CEUZf10RHBjN_rv7TECZG3iTA4RmWB,"I downloaded this app on my tablet long time ago (full version) and recently also downloaded it on my phone as I don't bring my tablet with me all the time. I only use the ""task"" function, because my calendar events do not sync properly (I haven't fpnd the sync button on my phone...) and another not so funny thing for me: I am using the same account for both devices, BUT I can't use the full version on my phone (I get a message that I need to buy it (???)...) that's why I need to use my tablet (with the full version on it) if I want to add something.",3,3,4.3.7,2018-01-09 00:09:31,,,most_relevant,com.appxy.planner +Melissa Cummins,https://lh3.googleusercontent.com/-Y7eIal1nbFg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNK8HvVUFSVgrZOlyh53d1JvuMpgQ/photo.jpg,"Love the app and bought the full version in February, but recently it quit syncing between my phone and my tablet. I emailed support about the issue on June 2. The tasks are syncing now, but calendar items still are not syncing. Wish they would fix the issue!",3,25,4.3.7,2017-06-11 13:50:13,,,most_relevant,com.appxy.planner +Michael Mathias,https://lh3.googleusercontent.com/a-/AOh14GiQTqBCXckEZfukUBRG1G3QskqhvchVpWDavXPj7XE,"Forever Landscape? Why can't I ever get this app to rotate to portrait mode? It's never been able to do this, even after downloading it on other phones. Way too annoying to have to deal with for me to deem it a useful app, at least for me.",3,3,4.3.7,2017-08-18 15:10:40,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Great app, but it keeps deleting the events (birthdays, etc.) that I put in it! I've never had this problem before, please do something! This is my go-to calendar app, and I'd hate to have to find a different one!",3,1,4.3.7,2017-12-05 11:54:31,,,most_relevant,com.appxy.planner +Jon Cheek,https://lh3.googleusercontent.com/-GSPvzjOM2uY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPiCxAwvdStNvD-lf4i0brTFNP9jA/photo.jpg,"Nice layout, but it will not sync repaired events between my tablet and phone. I contacted tech support but they were unresponsive and not helpful. I do not recommend.",3,4,4.3.7,2017-08-27 20:12:02,,,most_relevant,com.appxy.planner +Jeremy Davis,https://lh3.googleusercontent.com/-6UJ47wN0p9g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMFxYRgjRAOq9hH787G0uRwakZR9g/photo.jpg,"Task repeat options are garbage. For basic things it's ok, but don't expect more than that.",3,5,4.3.7,2017-05-30 04:14:22,,,most_relevant,com.appxy.planner +Suzana Hajder,https://lh3.googleusercontent.com/a-/AOh14GgopUR07NIIdmhYJYi3_KkmjITomCCwQiAkWB7lSw,"Overall great organization tool, however recent updates make the application only usable in horizontal view which is extremely annoying and quite an inconvenience",3,4,4.3.7,2017-07-03 18:49:41,,,most_relevant,com.appxy.planner +William Boyd,https://lh3.googleusercontent.com/-wJ0HweSBxKo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNO_mT8nw-sixtARWqpkhfHQZH2AQ/photo.jpg,This app is easy to use but my biggest issue is that when i add notes or check off tasks when off line they dont save,3,5,4.3.7,2017-06-01 15:59:56,,,most_relevant,com.appxy.planner +Kerra Henderson,https://lh3.googleusercontent.com/-Kynt7UJ7euM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOM_jzzT54pWBy0K2dP417rqnfhWg/photo.jpg,I liked the app well enough to pay for it so I could get my recurring items in order with it but when I set a task as recurring it only shows up on the day that I started with.,3,9,4.3.7,2017-04-25 04:26:47,,,most_relevant,com.appxy.planner +Kennadi Quinn,https://lh3.googleusercontent.com/a-/AOh14Gh-x2lbFskIuCFcRybknm1qh8ttYRkS1qd07Uod6Q,"I like it but when I put my pass code in to access it, I goes through but then it says your password has been changed please sign in, but I have to hit the back button on my phone to ignore it so it doesn't make me sign in again, but when I do hit OK for it to let me sign in again, my password isn't there, it's still locked but I don't know the password.",3,0,4.3.7,2017-10-05 17:10:57,,,most_relevant,com.appxy.planner +pirah sikandar,https://lh3.googleusercontent.com/a-/AOh14GgOmEx9MMJgh-QHsODcRR0EAJ7dpTbwvNdFG-Ou9yY,"Plz help, it says m typing wrong passcode, it is not opening with my old passcode",3,2,4.3.7,2017-09-23 12:52:37,,,most_relevant,com.appxy.planner +D Wolf,https://lh3.googleusercontent.com/-lrwil1w2mv0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPcIX5y_QBHBurPue4mkTbHBwH3yA/photo.jpg,It worked great to start with but now I'm not getting task notifications and some of my events are not showing up on my calendar widget,3,6,4.3.7,2017-04-20 22:13:54,,,most_relevant,com.appxy.planner +Ad Astro,https://lh3.googleusercontent.com/--gpRjd49wNo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPPu2hUvnF7ZHnaKqTFCfyssKj6Ug/photo.jpg,"Guys, excellent app. Bad financial model. Prepared to pay. Reluctant about subscription model. Unfortunately, Uninstall.",3,0,4.3.7,2017-11-18 14:46:39,,,most_relevant,com.appxy.planner +Chris Scholten,https://lh3.googleusercontent.com/a-/AOh14GgB2m9g4dORhK4xbeCb8etAra3JdEm_UqPs3SBkbw,"I love this app, but it sucks that I can only use it on my phone. I'd give it a 5 if I could a) use a desktop version of the app as well; b) sync tasks with Wunderlist; and c ) sync reminders from Google Calendar as tasks on Planner Pro.",3,0,4.3.7,2017-12-12 16:31:21,,,most_relevant,com.appxy.planner +Mahipal Suna,https://lh3.googleusercontent.com/a-/AOh14GgKpCn_uDrNbB78J1gcIwq22ykT04lD9c8XoswJPQ,"The aap good but not some updates are required, such as - In notes section add photo upload option, Add Journal Option,",3,1,4.3.7,2017-09-06 05:45:36,,,most_relevant,com.appxy.planner +Alfirus Ahmad,https://lh3.googleusercontent.com/a-/AOh14Ggm-6R-_-sLro1NwmzJCbC1owOPZbOnMMmFJlYK_z8,"It have future if they make Notes can be organize by category, Tasks can create sub task and fix bug when Samsung Dex enabled",3,1,4.3.7,2018-01-09 00:48:28,,,most_relevant,com.appxy.planner +Salline Shukor,https://lh3.googleusercontent.com/a-/AOh14GhpiSHt3icUAr0rPlvO0uiF5OxsSDzITC3ZOfEW2Q,"I'll like it more if I can the way I view this apps, difficult for me to type in landscape position",3,1,4.3.7,2017-10-05 04:51:25,,,most_relevant,com.appxy.planner +Irene Yashina,https://lh3.googleusercontent.com/a-/AOh14Gg_lNbxOfv9twxJxceGhlTelrLxxYJamFMAK7Kzsjg,So so. I expected the ability to attach files to notes and a lot more flexibility with format.,3,1,4.3.7,2017-09-28 05:11:45,,,most_relevant,com.appxy.planner +Riani Tania,https://lh3.googleusercontent.com/a-/AOh14GjIebAADdYB6ywWOkYJqasWaklVusJ6yt93RKFkJg,The event didnt sync to my other device,3,3,4.3.7,2017-06-27 03:46:29,,,most_relevant,com.appxy.planner +Shelley Wilson,https://lh3.googleusercontent.com/a-/AOh14GjgMp-8kz40oZ1OpNw9rYP3flQf9RRGy6Y67U-NH_8,Just downloaded this app.....not sure what I think of it at the moment.....cant seem to find where you can use colours like the pictures,3,0,4.3.7,2017-11-01 13:54:30,,,most_relevant,com.appxy.planner +Jill Cox,https://lh3.googleusercontent.com/a-/AOh14GgTt_9R9Qm0-f-s6pJypgkuAUnBMAcIPJSDHIhNHQ,It says I changed my password and now can't get in calendar what can I do to fix problems,3,0,4.3.7,2017-10-29 17:41:30,,,most_relevant,com.appxy.planner +Neva Castillo Coronel,https://lh3.googleusercontent.com/a-/AOh14GgppunXB-MRrFns27QmKVLASAFfVvahiEXkjkuwmA,Loved it except that it wouldn't save and show me all of my events,3,0,4.3.7,2017-11-07 02:12:25,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"It's fairly easy to use, however the alarm doesn't work",3,0,4.3.7,2017-07-28 15:24:29,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,it's a nice app. it make my life displined,3,0,4.3.7,2018-05-06 01:44:29,,,most_relevant,com.appxy.planner +Mike MacDonald,https://lh3.googleusercontent.com/a-/AOh14GjAmK8mksZfYsJ_f2QXTvGsSMQgyM0qhEnDpWwt,"I'm using this app for work for Due Diligence. When I first installed the app I was sure I could ""search"" my notes for key words now I can't. Am I doing something wrong or is that function not available on this app?",3,11,4.3.6,2017-03-15 11:45:15,,,most_relevant,com.appxy.planner +Kyal Lanum,https://lh3.googleusercontent.com/a-/AOh14GjVj4dbQmt3wqEsJzRs2QSH36fl7c4NSaN3LgLj,Good app that I can use for putting all my appointments in. One problem is that the notifications I set to make sure it reminds me don't go off at all. (I have a Droid Turbo 2). If you guys could fix that. I will change to 5 stars.,3,47,4.3.6,2017-03-05 20:43:37,,,most_relevant,com.appxy.planner +Rana Samh,https://lh3.googleusercontent.com/--PrMrzWXXVs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNTHMmWQ7t4ZreSRxt9Oh_4OBbAsg/photo.jpg,"Hello developers, can you please help? I put a passcode on the app and now it won't let me access the calender. It keeps telling me that my passcode is incorrect when I know I put it in correctly. Please fix this",3,25,4.3.6,2017-03-04 11:09:44,,,most_relevant,com.appxy.planner +Ria Smith,https://lh3.googleusercontent.com/-_JPs8fHZ_m8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOe6DlKyx7ZDCWes_larAH_K3DdAQ/photo.jpg,How can i take the notes i have made and copy them over to my laptop. I have looked to see where the notes save to but can't seem to find them anywhere. Please help me,3,6,4.3.6,2017-03-09 08:47:57,,,most_relevant,com.appxy.planner +Alexander Karavasilis,https://lh3.googleusercontent.com/a-/AOh14GgUgFyBaXw4S8Sk_HbG2TkLD8cy-apyr7eUHpRrcg,It does not have the ending time of an event,3,5,4.3.6,2017-03-10 19:07:26,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"No matter what I do, even setting 'no notifications' when creating event or task; they continually pop up. Not happy with this feature.",3,5,4.3.5,2017-03-02 20:33:44,,,most_relevant,com.appxy.planner +L S,https://lh3.googleusercontent.com/-2eWyjSxPNhY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNTwFaUYYcWbaQd5Lr_DzbxrBT26Q/photo.jpg,It doesn't work well for repeated scheduling of regular tasks. I have tried selecting every week or every 7 days and repeat either does not work at all or shows up only for the same day monthly not weekly.,3,10,4.3.4,2017-01-28 15:32:47,,,most_relevant,com.appxy.planner +Cheri Caggia,https://lh3.googleusercontent.com/a-/AOh14Gj-zdpHUT9EGr44a5VU6yxhp8bcLJFMwl7pRZtIN8I,"I love the app EXCEPT that the widget does not remember customizations (such as default calendar, not using 24 hour time). If this could be more flexible and keep the settings of the apps I would definitely rate five stars. It's helped save time having multiple uses for one app but I need the widget compatibility",3,1,4.3.4,2017-02-20 12:40:10,,,most_relevant,com.appxy.planner +Lyda Wells,https://lh3.googleusercontent.com/a-/AOh14Gi8BEtzDXbdzsOLBM5JX-OCAgI4XBQCU0Qh68haj_c,I love it so far but is it usable over multiple devices? I am currently using it on my tablet and downloaded the app to my phone but when I try to sign in it says it can't find my email address.,3,1,4.3.4,2017-01-25 03:30:26,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,The app no longer notifies me of my tasks!!! Please fix,3,1,4.3.4,2017-02-06 18:40:06,,,most_relevant,com.appxy.planner +Daniel Philip,https://lh3.googleusercontent.com/a-/AOh14GhScD4Qz8JgahonRLloaiCi09i_eNul6bVi2RXaeQ,Try,3,4,4.3.4,2017-01-23 06:38:20,,,most_relevant,com.appxy.planner +griffin harrel,https://lh3.googleusercontent.com/-VDaJnCVZttI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNwofYRVzluFMtfOejBzfFhrj4Lsw/photo.jpg,"I purchased the paid version and I'm sort of disappointed. Every time I enter a task it adds the first letter of the first word over again so I have to change it each time (i.e. it will autocorrect to EEvery instead of Every). It is also kind of laggy. It could be a great app, but not as is.",3,75,4.3.3,2016-11-22 19:05:10,,,most_relevant,com.appxy.planner +J J,https://lh3.googleusercontent.com/a-/AOh14Gj0jbnqF5l773lcE3qa1aKa1Hhh_r3Jtc8e3hci,"I had several recurring events to keep track of my week, but after the update, they disappeared.",3,7,4.3.3,2016-12-04 17:39:38,,,most_relevant,com.appxy.planner +who knows,https://lh3.googleusercontent.com/a-/AOh14GhgC3HztB6E0NwQ0m1NLhgUWzNTQBLkNkNbFzTZVVo,Not being able to view my list of things to do or to get.,3,2,4.3.3,2016-12-21 00:30:25,,,most_relevant,com.appxy.planner +CA Goldlash,https://lh3.googleusercontent.com/a-/AOh14Gi75FeMrFIzBOVEj6i80XvEArzA6iqVh_2vk_CY_qI,This planner app is pretty clear and simple. I have the paid version and it works OK except today they had a glitch and I lost everything even when I reinstalled. It was just so screwed up! So if you don't mind losing all of your work when they update... I guess it's survivable.,3,6,4.3.2,2016-10-28 20:17:21,,,most_relevant,com.appxy.planner +Kate,https://lh3.googleusercontent.com/a-/AOh14GiUiZ5Qa5XTKaC8bv9a33-XnAxMKM3PkkHyKFy-Bkw,"it's really unresponsive. I have to tap 3 times so something opens or to check a box or anything.. too bad, I really liked it but this is too annoying.",3,3,4.3.2,2016-11-05 19:20:47,,,most_relevant,com.appxy.planner +Renae Jones,https://lh3.googleusercontent.com/a-/AOh14GgKf8tQirEHZwLYIZH4EmfdduN6K7U8oZSCy86lCw,The app is making me sign in to an account but won't let me sign in. Frustrated!,3,3,4.3.2,2016-10-31 07:06:56,,,most_relevant,com.appxy.planner +Tamara Luckinbill,https://lh3.googleusercontent.com/a-/AOh14GjWvKWs5AMPBgsVLmLP8joBsuEMf1jLTPJeTL-O1g,Troublesome widget organization. When I tap a date it opens app to date previously open not new date needed. Very time consuming and creates booking mistakes when not careful.,3,9,4.3.1,2016-10-24 17:12:39,,,most_relevant,com.appxy.planner +Leo Moneymaker,https://lh3.googleusercontent.com/a-/AOh14Gj2kEpk-T-G8K8XWxAkFudryWe1CclFSZYITinIfak,Add ability to have a dark theme.,3,4,4.3.1,2016-10-26 06:12:43,,,most_relevant,com.appxy.planner +Gabriela Moekoe,https://lh3.googleusercontent.com/a-/AOh14GhQt-txd5nVKbdZaBgeAVger_eMpOEudKmJ2vYvnRs,"Love it, but it has some major flaws: (1) Can't personalize THEME. (2) Can't configurate WIDGETS' toolbars & what details are displayed. (3) The widget's size is too wide—max 4x?. Would love it if it were more flexible. (4) You cannot sort the notes on one day to be listed in ALPHABETICAL order on the Day widget; it will always be sorted by time. (5) The app malfunctions when you place two widgets on the home screen. (6) App stops working a lot for seemingly no reason.",3,1,4.3.0,2016-10-23 06:56:55,,,most_relevant,com.appxy.planner +No Sleep Transport,https://lh3.googleusercontent.com/-ycmu1rC31O8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNXn4XOYDtXIU5CD48WFKl075iUhQ/photo.jpg,Can't make calls from the app by clicking on the phone number like Google calendar,3,6,4.3.0,2016-10-16 23:15:23,,,most_relevant,com.appxy.planner +Kelly Carter,https://lh3.googleusercontent.com/a-/AOh14GjfNsjVMqVNY22makJIQBlVpfsdUrfutkCJfTJqCA,"This application was exactly what I needed when I first started to use it. Now there are a handful or problems- events are appearing twice, events get deleted or not appearing at all after being saved, deleting one event and the reoccurring events get deleted, and not appearing on the selected reoccurring days. Very annoying.",3,40,4.2.2,2016-09-22 18:40:17,,,most_relevant,com.appxy.planner +Ashley Sutton,https://lh3.googleusercontent.com/a-/AOh14GiTWXVkk95BEp2vR-ADBB9Q9yd4JGgaDxP73bXx,"I just got the app, but I can barely use it because every time I click on something it redirects me to a page that asks me to upgrade for $4.99/yr. If it would just let me use the free version I might actually like it.",3,15,4.2.2,2016-09-27 02:27:02,,,most_relevant,com.appxy.planner +Justin Norton,https://lh3.googleusercontent.com/a-/AOh14Gi7DskYceStXuz7CaUPRaFQBIr12K6fpokGwR4K,"The app would be nice and work well if it wasnt for this 1 issue but its a pretty big issue as far as daily planners go...It only shows half of a clock or calender in the create event/task subscreen meaning i can not select any times that would fall on the right hand side of the clock or I can not select a ""due by"" date for tasks because the right side of the calender is missing...I would already own the full version if it wasnt for this problem",3,1,4.2.2,2016-10-10 04:36:30,,,most_relevant,com.appxy.planner +Lily Bernabel,https://lh3.googleusercontent.com/a-/AOh14Gg_RsU7kgGo1_dddEI1vLxJUN6c2ILZQ4LKE_2ezA,"Pro Version and it still won't handle the recurring tasks smoothly. Please fix it, I've restarted my phone several times and still nothing.",3,2,4.2.2,2016-10-10 22:34:08,,,most_relevant,com.appxy.planner +Sheyomi Awuley,https://lh3.googleusercontent.com/-C94kvYedL5E/AAAAAAAAAAI/AAAAAAAAB4M/AAKWJJO2x0PmO6UrlaBC3az1rmgCy9fgNQ/photo.jpg,"Not a bad app pretty good, got a few things organized with it.",3,5,4.2.2,2016-09-11 02:03:12,,,most_relevant,com.appxy.planner +Sougata Das,https://lh3.googleusercontent.com/a-/AOh14Ggkxl0MnEgtPNR0XJtnUNIebJykF_f7V83H-tqR0Q,Crashing a lot after update,3,1,4.2.2,2016-10-06 16:37:38,,,most_relevant,com.appxy.planner +Stevian Setiawan,https://lh3.googleusercontent.com/-blw8k6GH_sA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMvI4-nOkpz8SqFvzBg3J71x0do_A/photo.jpg,Fix the widget bugs please,3,1,4.2.2,2016-09-16 17:24:06,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Any chance of getting a widget for the calendar?????,3,3,4.2.2,2016-09-14 13:23:07,,,most_relevant,com.appxy.planner +Kelly Taylor,https://lh3.googleusercontent.com/a-/AOh14GiTG4NIv9biwNpV9T7luhEjrxqZo5untjsVSj7lZ0Y,It's alright.,3,2,4.2.2,2016-09-12 04:16:05,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Уууу,3,3,4.2.2,2016-09-28 14:11:56,,,most_relevant,com.appxy.planner +Ernesto Guadarrama,https://lh3.googleusercontent.com/a-/AOh14Gg61_lPj6MV2cRvrbN07fjEC8b5bf-T3ZKASqOKdg,Overall good. A search feature would be great for notes. Thanks,3,8,4.2.0,2016-08-28 22:50:26,,,most_relevant,com.appxy.planner +Tracy Foster,https://lh3.googleusercontent.com/a-/AOh14GiSuLlZHfipHtvBw14sDiq2_H851M07EF4GrlG3w6k,"Trying to sync my calendar with both my phone and tablet, and any notes and/or tasks are not syncing between my devices. Having to duplicate these items is very frustrating.",3,2,4.1.1,2016-07-18 20:15:33,,,most_relevant,com.appxy.planner +Meriam Jaziri,https://lh3.googleusercontent.com/a-/AOh14Gi_UNr7adWASa773Q6LkdjGCHb4vdbS4PHc9fooPg,Have to go premium to have more features.,3,1,4.1.1,2016-08-10 20:38:27,,,most_relevant,com.appxy.planner +Joseph Deji,https://lh3.googleusercontent.com/a-/AOh14Gg8GexfD-NQMsNBVetIGPvEyNOQLyEV-WEydPhxxw,Enjoyed it's use while it lasted. Uninstalled now.,3,0,4.1.1,2016-10-18 22:41:49,,,most_relevant,com.appxy.planner +Avreghly Barra,https://lh3.googleusercontent.com/a-/AOh14GgNYf0HQ63r4xGYqW2lpwZNywviTmZ0W-CtYCyRww,"Why did you show the checkboxes in widget when you can't even check/uncheck it via the widget? Its just so frustrating to go to the app just to check a list. Other than that, this app is good.",3,0,4.0.1,2016-06-29 23:06:41,,,most_relevant,com.appxy.planner +Tomer Sadot,https://lh3.googleusercontent.com/a-/AOh14GinoHOD8MgaBi4wrQXi127USaeDfcqy-eFCEr8f,I use it mainly for its widgets. ONE THING THOUGH: please fix the widgets so that the they show the current date and don't stay put on the previous day unless manually changed.,3,22,4.0.1,2016-06-07 06:33:54,,,most_relevant,com.appxy.planner +Trent Cox,https://lh3.googleusercontent.com/-NbM0b_mJB9U/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNkAUx8l5fEDxXXk5sbDuyYIPVd0w/photo.jpg,"It is an OK app as far as personal entries are concerned and the connected functions of name, time and place. Can not count on it to keep you informed about set Calender Events though as they are set default in 2014. Mothers Day was on the 8th; 2nd Sunday in May this year; not Wednesday the 11th. They can thank my wife for keeping me informed. It is a scheduling app and if the default events are wrong as well as uneditable how confusing will your scheduling be? Keep an accurate calendar handy.",3,1,4.0.1,2016-05-12 11:36:06,,,most_relevant,com.appxy.planner +Jolie Chua,https://lh3.googleusercontent.com/a-/AOh14GhBVifu5taj4UjnoZr9pyxxXjSKXlRGo7Fkuc13,"Love this planner. But whenever I use the repeat function, I cant just edit 1 event. I have to edit the rest of the events that are linked together too. Would be great if I'm able to edit jus 1 event even when im using the repeat function. Would also be great if there's a copy and paste of events function! Would make things really easier! 😊",3,1,4.0.1,2016-05-04 10:21:00,,,most_relevant,com.appxy.planner +Lisa Kelly,https://lh3.googleusercontent.com/-n9-cRdX_9t8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPRS8nuTqJh888fluasAiF6OhKlDA/photo.jpg,"A bit disappointed, bought a new phone and re-download ed the app, would not bring my calander in from my old phone and asking me to repay for the full version.",3,11,4.0.1,2016-05-22 22:33:39,,,most_relevant,com.appxy.planner +Catherine Kelly,https://lh3.googleusercontent.com/-Xe-gW1qmVJc/AAAAAAAAAAI/AAAAAAAAACo/AAKWJJPo__rZ8S6F-TVMg6Rht2g3_sz4HQ/photo.jpg,It doesnt update between your calanders. I need a planner that stays up to date with my calendar changes. This is not it. Waste of money.,3,0,4.0.1,2016-05-17 05:43:10,,,most_relevant,com.appxy.planner +Satya Ananda,https://lh3.googleusercontent.com/a-/AOh14GiyRm3ijRzsx_M0RkelfsPYzlCHYjO3WkH44nX4Pec,Why would I pay money to have recurring events in a planner. I think I'll stick with my default calander app,3,2,4.0.1,2016-05-11 21:02:40,,,most_relevant,com.appxy.planner +Huda Denizci,https://lh3.googleusercontent.com/-fVYEKbyFd6g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNcLtgaeIQTWJ0hCmVltaDNn09jqg/photo.jpg,"Needs to give you the option of adding pictures when note taking. If it had this option would be excellent, otherwise not a bad app.",3,7,4.0.1,2016-06-15 05:23:03,,,most_relevant,com.appxy.planner +Mary Jobeth Salan,https://lh3.googleusercontent.com/-0w71krEbGyc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP2mbYiY2fWiW2SHJPmfiCCclSSjQ/photo.jpg,The only thing not working is the reminder.. I'm using Huawei Mate8.. Can somebody help me how?,3,0,4.0.1,2016-07-08 01:04:07,,,most_relevant,com.appxy.planner +Cheol-Hoon Park,https://lh3.googleusercontent.com/-375IqfKPC_M/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO0imJftKuJjWRA-Xc548DfHe5qBg/photo.jpg,I love it. But too expensive.,3,0,4.0.1,2016-07-10 06:47:48,,,most_relevant,com.appxy.planner +Ashley Emery,https://lh3.googleusercontent.com/a-/AOh14Gj8QpSe75VzOaBfI6Dn9v8oSOpaEd7w1tm4rUTh,"But I miss the hourly blocks, made it easy to Sceduale my work hours.",3,0,4.0.1,2016-05-20 16:21:53,,,most_relevant,com.appxy.planner +STACEY BUTLER,https://lh3.googleusercontent.com/-xAt3R9I7mt0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPY47l6jv2mZkdcQnwEwIPf0PkfiA/photo.jpg,"Bills ,",3,0,4.0,2016-04-14 23:11:30,,,most_relevant,com.appxy.planner +PsyTie,https://lh3.googleusercontent.com/a-/AOh14Gjhsxs82fX7_4VsBLzscqGD6vgwqslk1xErPkg-iA,"Wouldn't it be great if this app had also alerts instead of just notifications? It's easy to miss a notofication. Also, why can't we edit a specific day for a repeated event, but we have to edit also all future events or nothing?",3,2,3.2.3,2016-03-14 12:44:13,,,most_relevant,com.appxy.planner +Rafi Chaudhury,https://lh3.googleusercontent.com/-D8gdamyTwiQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNDNRlyrbbxWs-_c3jBR4EZi9TM3Q/photo.jpg,"I prefer to use apps in portrait mode on my 7 inch phone/tablet (Huawei Mediapad X2, 1920*1200). When the keyboard pops up while adding a task, I can barely see what I'm typing because the screen height is greatly reduced in landscape.",3,1,3.2.3,2016-03-15 16:13:02,,,most_relevant,com.appxy.planner +Fatima A,https://lh3.googleusercontent.com/a-/AOh14GjV2DbhCQyaD3a348XvbWkAXpzs_g4juiqWpwYVTg,"if you can't add subtasks? everything else in the app is quite impressive except this, i added a project and it disappeared from my projects tab, and i couldn't add any subtasks to it.. so it is indistinguishable from a regular task.",3,108,3.2.3,2016-02-20 09:26:39,,,most_relevant,com.appxy.planner +Sonia Moskovitz-Legrain,https://lh3.googleusercontent.com/-4_iW57PEp-E/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO32Wmg2dTnspG-qxxIpBUxUUXglw/photo.jpg,I really liked it at first but it keeps turning on the alarm for my events even though I pressed no alarm I don't know how many times :(,3,0,3.2.3,2016-03-14 23:54:14,,,most_relevant,com.appxy.planner +Jairol Perez,https://lh3.googleusercontent.com/a-/AOh14GjDsD2VEsZYzo5GoMPk3SilyLK3OoY3rlgu3qz-,"Setting up late events (past 11pm) is literally impossible. Start and end times/days will shift randomly when I make a change to the other. Whenever I do manage to get both right, I get a ""Same time"" error even though clearly the start and end times are different.",3,0,3.2.3,2016-12-20 01:29:31,,,most_relevant,com.appxy.planner +Uwe Meissenheimer,https://lh3.googleusercontent.com/a-/AOh14Gih6bdjG_wpU3445l8d2s1oO1R1OwgMSe3V4qbxNQ,My calender does not sync with this app? How can I get it to work. It's great otherwise. How do I sync all my calenders with the he app?,3,19,3.2.3,2016-03-02 06:40:01,,,most_relevant,com.appxy.planner +Svetlana,https://lh3.googleusercontent.com/a-/AOh14GgNhVYr6XZnEIGCuuhKPRNTLvQrdJZynmMGf1XJHA,"Its pretty neat, but the feedback on the paid app is pretty poor...",3,2,3.2.3,2016-03-12 04:11:32,,,most_relevant,com.appxy.planner +Martin King,https://lh3.googleusercontent.com/a-/AOh14GhFX1s4k4arUUFPRmOC0Obo5RWaC8d9xfaNQR3BRA,"Could be better on Samsung S6, not showing reminders on screen, have to open the same as a diary....",3,2,3.2.3,2016-03-23 10:30:15,,,most_relevant,com.appxy.planner +sarah aspden,https://lh3.googleusercontent.com/a-/AOh14GiEIFylPG2__rPmJRbVpUWSl-v0o0VLt-68_MbC-w,Needs more features but I just started using it so I'll let u know specifics soon,3,1,3.2.3,2016-03-28 17:03:53,,,most_relevant,com.appxy.planner +T Barnett,https://lh3.googleusercontent.com/a-/AOh14Gg4LkV-2HqMpxvBP1QeGdJ6zA6Hi9MNP-9Hp3X9Yw,Font is too small. You have to open it up each time you want to glance at your appointments.,3,0,3.2.3,2016-04-08 19:46:02,,,most_relevant,com.appxy.planner +Michelle Brashears,https://lh3.googleusercontent.com/a-/AOh14GibmD0ahvRrz4gm7OnZpfpVg8b3n2j9FcL-PQp3tw,Just getting used to it but so far not bad,3,0,3.2.3,2016-05-23 04:49:29,,,most_relevant,com.appxy.planner +Dave Mackinder,https://lh3.googleusercontent.com/-zK1iqcCcFn0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOn152okO6Xphwtfy-LUs_KUCtbPw/photo.jpg,Hodtf coder jbikhkhkm kvukb,3,0,3.2.3,2016-04-07 10:19:35,,,most_relevant,com.appxy.planner +Jessica DeVera,https://lh3.googleusercontent.com/a-/AOh14Ggc0x_mWVXE5PxyLyyhBMba10ShTVFl66c_xpBNrtA,Will update down the road,3,0,3.2.3,2016-03-01 13:58:20,,,most_relevant,com.appxy.planner +Joy Bird,https://lh3.googleusercontent.com/a-/AOh14GjCNYcOzgUA3eoSKiOuYBZ9iSGPv4RwQdBTVcC120g,don't have option for Windows surface pro,3,0,3.2.3,2016-04-22 17:48:21,,,most_relevant,com.appxy.planner +Ganon Dorf,https://lh3.googleusercontent.com/a-/AOh14GgjzqntPjfF1liaRWOxI32c63wNbs9NLhmGBxdC,Sometimes quits as it starts,3,0,3.2.3,2016-03-28 20:24:53,,,most_relevant,com.appxy.planner +crystal scale,https://lh3.googleusercontent.com/-U_TP-w3VIpg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNDDkNpzoz4xys8NQGB1Gd_zsFJuQ/photo.jpg,"It's OK, but it needs more features",3,0,3.2.3,2016-04-05 23:30:48,,,most_relevant,com.appxy.planner +Donna Morgan,https://lh3.googleusercontent.com/a-/AOh14GiJzxgCp2qciWd8AFILphl03Yn5xkuC6qIrk_56IA,Nice app.,3,0,3.2.3,2016-03-30 16:41:07,,,most_relevant,com.appxy.planner +kalevii tap,https://lh3.googleusercontent.com/a-/AOh14Gh6CAWyRdRx8ueDbjnOndIR_q4E3CsVsBhSOVn_,"When I goto monthly view press the date the event is on, the previous date shows up. Sometimes I am able to scroll forward to the date I am looking for,but mostly not. ( for example I scroll April 24th and April 23rd shows up). I like the design of the app,would like to see yearly view. I also can't see Events I posted unless I rotate the phone. But it works for tasks and notes tabs fine?",3,3,3.2.2,2016-02-08 22:02:19,,,most_relevant,com.appxy.planner +Kimo Kuhns,https://lh3.googleusercontent.com/a-/AOh14GgtvnIDDD7K2SvhFrTmfqsD63qEKkqb4wdUde_w,"The only problem I have come across so far is, the day calendar does not change automatically. In order to get the current date on the day calendar is to go to the month calendar and select today's date. That said, the program and UI is better than the pre-installed calendar program.",3,1,3.2.2,2016-01-13 13:33:53,,,most_relevant,com.appxy.planner +Robert Rossana,https://lh3.googleusercontent.com/a-/AOh14GgmCZQZleWYtiz2bqTuYEIYISm43oKomDcqX5CzyA,I am running this app on a Droid Turbo with stock Lollipop installed. The app has a very nice layout but unfortunately I find it to be very buggy. It is impossible to create an event that includes Monday and the app can't import recurring events from Google calendar. I have reported these to the developers and hope the app is cleaned up soon.,3,0,3.2.2,2016-01-22 00:22:47,,,most_relevant,com.appxy.planner +Solehan Imran,https://lh3.googleusercontent.com/a-/AOh14GhG5B2rWvn5KqDh4aE-GS62PVllr1zy1VtkNN4Cdg,Everytime I wanted to swap between month /day it lags so much.. If only it was smooth then I am very excited with the app.. I am using lenovo a7-3000,3,1,3.2.2,2016-01-27 15:48:08,,,most_relevant,com.appxy.planner +Anna Lewis,https://lh3.googleusercontent.com/a-/AOh14GjNCIYRNNbqmoLQ-o--paUoOUA9mOpWuGGA3x4ujk0,"It's not syncing right with my gmail. My recurring events are all messed up but, are right on my gmail..... Deciding whether to keep it or not.",3,0,3.2.2,2016-02-04 05:26:16,,,most_relevant,com.appxy.planner +Susan Kuehnl,https://lh3.googleusercontent.com/-eMCCZQ87BzM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNKqi8ZTwvAYBkqKh1x3Qn9Dze7iA/photo.jpg,"When I'm entering birthdays, I have to enter on the day after, or it shows up the day before!! I have one birthday permanently hooked to a holiday, and I can't edit it. Fix this, PLEASE.",3,0,3.2.2,2016-02-02 15:39:03,,,most_relevant,com.appxy.planner +シャーレットレビー,https://lh3.googleusercontent.com/a-/AOh14GhtYgBTsmdZzu44P3ETsJVD298TVxtzbmk2G8HlxA,At times it doesn't even buzz or come up on my phone that I had a task to complete. I'm not sure if this is just my phone though.,3,2,3.2.2,2016-01-28 00:46:47,,,most_relevant,com.appxy.planner +Leah Liddiard,https://lh3.googleusercontent.com/-rof1K2CHfWU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOXDobAHk0Uoo6lJAEUrdBtBje-Jg/photo.jpg,"ive downloaded all the calendar apps out there, and i like this one the most...HOWEVER, it needs to show the text on the widget not just a dot... such a bummer because i thought i found the one.. please fix this... youre so close to being the goto app for calenders for the switch off of the stock android calender... eagerly awaiting the update... 5 stars and a great review once you do it!",3,2,3.2.2,2016-02-04 17:48:31,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Quite good, but the week widget is, imho, absolutely wrong - the order of the weekdays should be first vertical then horisontal, i.e. Tuesday UNDER Monday, NOT to the right!",3,124,3.2.2,2016-01-20 06:00:39,,,most_relevant,com.appxy.planner +Not Yours,https://lh3.googleusercontent.com/a-/AOh14GiymE4cfJ_PqLJv0sws2iZIMoUISGUEu1fM_KFK,I have appointments on the internal calendar that don't show on here. This includes new ones and ones I made months ago. No point in using this if I have to check another app to find all of my appointments.,3,1,3.2.2,2016-02-01 19:30:00,,,most_relevant,com.appxy.planner +Carrie J,https://lh3.googleusercontent.com/a-/AOh14GjOMWfWf0SFYNOl8tQWqMKRHJUyL0OS0mXRHWE0Sw,"Cannot see events on calender, only dots. Need prettier colors/themes for women.",3,2,3.2.2,2016-01-31 17:25:29,,,most_relevant,com.appxy.planner +Misti Wiedmann,https://lh3.googleusercontent.com/-xGf4PFWF3zk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP2EQuGu5BAF66N4yNsIW0FHT_iSQ/photo.jpg,Widget stopped showing the correct day which makes it pretty much useless which sucks because it was the easiest way to use the app for me..PLEASE FIX!!!!!!!!!!!!!!!,3,1,3.2.2,2016-02-10 06:06:25,,,most_relevant,com.appxy.planner +Jessica Hipolito,https://lh3.googleusercontent.com/-1YQcBnV2K2Y/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOLpf-GaMMRvDRGMjn_lF-gi-YQjQ/photo.jpg,By how clean & sleek it is. Only efficient and pretty planner out there! But the task widget doesnt update at all :(((((,3,1,3.2.2,2016-01-15 04:29:42,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"It's useful, but the recurring task feature is a pain in the free version.",3,1,3.2.2,2016-01-30 13:03:12,,,most_relevant,com.appxy.planner +Samirkant Shah,https://lh3.googleusercontent.com/a-/AOh14GhcxPY7SkzHS4nZbHe-bITK4ULu9mn1A78BxKSbPQ,Yes at first attempt it look user friendly. I am pleased! ! Good App,3,0,3.2.2,2016-02-03 12:41:30,,,most_relevant,com.appxy.planner +Josie Breasbois,https://lh3.googleusercontent.com/a-/AOh14GiAtJ4rAhAU-yghFDjDCenOurd-Gv62jQ0kallYzQ,how do you email your tasks on it how do you sync it with the Google Calendar,3,0,3.2.2,2016-02-09 22:24:18,,,most_relevant,com.appxy.planner +Haresh S. Dhanpath,https://lh3.googleusercontent.com/-HEynrEWGsIA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMAfQFPUx4GAF2XqdEbQmyadNA27g/photo.jpg,Notes and tasks are appearing twice,3,0,3.2.2,2016-01-31 23:00:52,,,most_relevant,com.appxy.planner +Peggytoh Toh,https://lh3.googleusercontent.com/-i8mzL7DIX5U/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNi6TNkkuXH2orIFK-qWkpdQhAcXw/photo.jpg,hvn try,3,0,3.2.2,2016-02-15 01:52:34,,,most_relevant,com.appxy.planner +Daniela Reyes,https://lh3.googleusercontent.com/a-/AOh14GjHcx3_oOK8PXZq6Kfj3KU_P-DbGkHtuvx5ddKc1w,Good,3,0,3.2.2,2016-02-19 04:45:35,,,most_relevant,com.appxy.planner +Kabelo Mofokeng,https://lh3.googleusercontent.com/-z-dRc9SXKQA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNBVssTroBZlpmnTZ4yS6iRvoY7og/photo.jpg,Not bad,3,0,3.2.2,2016-03-16 15:51:45,,,most_relevant,com.appxy.planner +Camille Wyffels,https://lh3.googleusercontent.com/a-/AOh14GilEGZfqtDrSmc1uRqMHQ4f4LZZVSlRepnu3bUJ9A,"I like the layout and it looks promising but I have at least 20 Google subcalendars so I can color code things and keep them separate and it can, at best, display part of 1. No Google tasks show up at all. I could be doing something wrong but there are very few options. And, everytime I go to the app, it reverts to the wrong Google account on my tab.",3,0,3.2.1,2016-01-11 02:48:11,,,most_relevant,com.appxy.planner +Ebony Sealey,https://lh3.googleusercontent.com/a-/AOh14GhtSiM_8IknJMlB2I3O1nGSGWYTqpAxDXk_gE44yg,I haven't been using this very long and it's not as user friendly as the Calender that came on my last phone. I wish instead of dots you can just see what you have entered for that day immediately without tapping on that day. Otherwise it is easy to use and functional.,3,0,3.2.1,2016-01-04 15:00:00,,,most_relevant,com.appxy.planner +Jo Harris,https://lh3.googleusercontent.com/-kbRKgNpuiAc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPuv0fhEPvP3xS78PD_jVuQV_-MVA/photo.jpg,Planner isnt saving all day events. You can see an event is there in month view but when you open that day the event does not show.,3,0,3.2.1,2016-01-10 08:31:48,,,most_relevant,com.appxy.planner +Vinny Lieb,https://lh3.googleusercontent.com/-CsJhvXN7I5M/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP4uhiHKc1PeacJ5chS6yutFPqfww/photo.jpg,"I wanted this for my tablet, and like the features, like tasks, a calendar etc, but I'm disappointed. It is locked on landscape position instead of allowing it to rotate to portrait position. If they fixed that one detail it would be a winner for me",3,4,3.2.1,2016-01-03 21:16:04,,,most_relevant,com.appxy.planner +Dany Lee,https://lh3.googleusercontent.com/a-/AOh14GgHZCex3eZ5dL_f_IeyfNIBbUi6CqOY1GDWNP_vhYM,Still lags on my Kitkat version,3,0,3.2,2015-12-26 22:21:15,,,most_relevant,com.appxy.planner +Caroline Busuttil,https://lh3.googleusercontent.com/-8ibWwW133og/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOVjnjz1Kd1X24M_wc-UPSeL4eoBA/photo.jpg,Only events sync....would have to uninstall,3,0,3.2,2015-12-24 11:47:32,,,most_relevant,com.appxy.planner +Arnold Maravilla,https://lh3.googleusercontent.com/-D4ffMX-QRZs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP9ix-cjwPjhYNEGA3ZwLAZOxhDUg/photo.jpg,"app has kept organization relatively simple the past several weeks.. i have no prob giving this 5☆, except having issue on my tablet viewing monthly calendar (off-center).. i find myself going back & forth btwn tablet & phone.. if this is a settings issue that can be resolved, pls advise.. overall, i think the app could help many out there..",3,1,3.1.1,2015-12-13 21:28:32,,,most_relevant,com.appxy.planner +Angela P.,https://lh3.googleusercontent.com/a-/AOh14GiAoODu0pmpNp28hgh_SCf-wvxBB4Lw4wUM5NX3-Q,"It works great, I love the simplicity and ease of use. But there seems to be a glitch; there are dots on days where I have no events or tasks listed. I can't get rid of them, and they are not linked to my Google calender, either. :(",3,0,3.1.1,2015-08-26 18:59:33,,,most_relevant,com.appxy.planner +Cyrus Smith,https://lh3.googleusercontent.com/a-/AOh14Ggy9DiYYQCa8s5r1a7Kl33-Ua0IXw2fP93UJLV8,"It takes me about 2-3 seconds to switch between Events and Tasks tabs. Can you make it faster somehow? P.S. App is great, just what I need - schedule and to-do list in one!",3,0,3.1.1,2015-12-02 00:00:59,,,most_relevant,com.appxy.planner +Fayne Ng,https://lh3.googleusercontent.com/-qi5Moy-no5k/AAAAAAAAAAI/AAAAAAAAAEA/AAKWJJPSyRRtBpwmbXmoDc6lEA_kgMrxLQ/photo.jpg,"I wanted to try out and see how it suits me, but when I was adjusting the start and end of the day, it appears that the end of the day is not beyond 2400. Ppl like me who sleep in the middle of the morning bcos of work tends to end work like 2 or 3am. Especially across different timezones. If that's fixed, I would be glad to pay for the app.",3,0,3.1.1,2015-10-19 04:33:26,,,most_relevant,com.appxy.planner +Rea Arbuthnot,https://lh3.googleusercontent.com/-HDR7mqb5qno/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPEDPwsZ4W3OMgd1O52n1DcA9SATg/photo.jpg,"Beautiful app... l LOVE the functionality and look...however, it won't sync with my Android phone. (l use it on my Samsung Galaxy 10.1 ) Unfortunately, this shortcoming really affects me, since l now have to enter everything twice: once on my tablet, then again on my phone.",3,18,3.1.1,2015-09-22 22:31:46,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I currently use wunderlist to organize all my tasks. It would be nice to have integration with their software because G tasks is so bare bones. Also, because of the limitations of the free software, I can't tell if the full version would integrate into my workflow because this app prohibits use of projects.",3,0,3.1.1,2015-11-18 18:45:26,,,most_relevant,com.appxy.planner +Syn Challenger,https://lh3.googleusercontent.com/a-/AOh14GhIM6GLjHbngxQ2EQMvu7WHeUof20LOYL6MpUNnZA,"I like this app actually purchased the plus version, but I'm haven't seen any notifications. The purpose of using a scheduling app is to receive reminders of your appts or pending tasks.",3,2,3.1.1,2015-09-18 12:33:47,,,most_relevant,com.appxy.planner +Michele Lindsey,https://lh3.googleusercontent.com/-5nDrI8uPT8s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJML4GiQl0mUDMtHuxl0TWTT-8wHSg/photo.jpg,"I like this app. Always wanted a planner. Only problem is when I try to click on the tabs on the side its very sensitive. Takes me forever to click it, it disappears.",3,0,3.1.1,2015-09-13 03:39:06,,,most_relevant,com.appxy.planner +Grandpa Chet,https://lh3.googleusercontent.com/a-/AOh14GiP3rj5koB_ahvyYBTA68-KijmFKzwB6AJ_WViDuA,"Needed: Sync tasks. Color code events. And for goodness' sake, speed up! This is extremely slow.",3,0,3.1.1,2016-11-16 20:30:13,,,most_relevant,com.appxy.planner +Jean F.,https://lh3.googleusercontent.com/-E7btZSJ5r78/AAAAAAAAAAI/AAAAAAAAAR0/AAKWJJPY_8h6K1D6YVfTZjyeP3CNRTdsVQ/photo.jpg,"The app is great for organizing and planning, however the constantly crashing gets old really fast. Please fix this. Otherwise the app would be perfect!",3,6,3.1.1,2015-08-11 02:22:18,,,most_relevant,com.appxy.planner +A Ball,https://lh3.googleusercontent.com/-nQPUx06rE_M/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOKrVgkh0fhiZ-C2bRiMjHwORdO8Q/photo.jpg,"This app seemed to have almost everything I needed for task listing; I like that it allows you to mark tasks as ""in progress"", and have subtasks, etc. but I missed a very important meeting because it didn't synch from my Google Calendar even though I had refreshed multiple times. I wouldn't rely on this as your only planner, have another app for your calendar also.",3,0,3.1.1,2015-09-22 15:11:51,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Overnight events (ie 8pm-4am) show up as All Day events in the calendar. If they are repeating, then two All Day events are shown. Need to fix this ASAP!",3,1,3.1.1,2015-07-29 16:01:08,,,most_relevant,com.appxy.planner +Alice Darkplace,https://lh3.googleusercontent.com/-M6sIV-tTKUI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNuEVql16QaiE_o7oUQMuf2HH79mg/photo.jpg,"It could be absolutely great... Except my widget is blank when it shouldn't be and my notifications don't work. However, I love this app and think a lot of hard work went into it",3,1,3.1.1,2015-09-12 08:22:40,,,most_relevant,com.appxy.planner +Nathan Mc Laughlin,https://lh3.googleusercontent.com/-36Xuf_HjbJ4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMgUFcYkXIFH04Z_sMPapulm6rsVw/photo.jpg,Great app for the most part. Would be nice if each project a person could list goals till completion as well as being able to have a separate tasks list. One for home versus one for work.,3,0,3.1.1,2015-12-06 20:02:00,,,most_relevant,com.appxy.planner +Maria-Eleni Fortsaki,https://lh3.googleusercontent.com/a-/AOh14Gh0vBuaOyQU4P-4mGL-whcVsSIacn1FBLh9EYZUAw,For me it's hard to use it and time taker,3,0,3.1.1,2015-10-25 19:28:16,,,most_relevant,com.appxy.planner +Joann Bogacki,https://lh3.googleusercontent.com/a-/AOh14GiWA_J6elmkdIg4SCbk2EwGEDCAkw5ZLxC_RXZXkg,"Really like this app, keeps crashing... Fix that, 5*",3,1,3.1.1,2015-08-25 01:50:46,,,most_relevant,com.appxy.planner +troy olson,https://lh3.googleusercontent.com/a-/AOh14Gixj33WmExNiR8IHvsavlx9uCiTXN0EhhzhOEFlLaI,"need ui refresh though, widgets need to show text on a month view, theming... etc",3,0,3.1.1,2015-10-06 18:08:03,,,most_relevant,com.appxy.planner +Gifted Vocals,https://lh3.googleusercontent.com/a-/AOh14GgApyerWg0Ps5VhE5MDecfvUqmlWHqfKZQ1KQ3jYA,"Nice planner but you shouldn't have to pay to have ""week""view. I may not purchase now.",3,0,3.1.1,2015-08-22 08:19:49,,,most_relevant,com.appxy.planner +Genevieve Johnson,https://lh3.googleusercontent.com/a-/AOh14GinZ7y_k4dPw8OUV58i3l7LxLC_ndO09rBLbayuwA,"I wish it would sync, so I could use it on all devices",3,0,3.1.1,2015-12-14 04:00:57,,,most_relevant,com.appxy.planner +Jamie Torry,https://lh3.googleusercontent.com/a-/AOh14Gg3bCXFKCeKQhe7-UQhvotA-t9uixTTVdWX8CJHNg,It's OK for now havent really done much with the app yet,3,0,3.1.1,2015-10-29 02:34:37,,,most_relevant,com.appxy.planner +Beth Meneses,https://lh3.googleusercontent.com/a-/AOh14GitxOaBLFgeQouZ4PmiH_KzKHFLjOILnLQTKlH3lw,Kinda complicated. Still not used to it. I love the widgets though.,3,0,3.1.1,2015-12-18 06:56:41,,,most_relevant,com.appxy.planner +Rahul,https://lh3.googleusercontent.com/-w7Vt_xRXlao/AAAAAAAAAAI/AAAAAAAAUWU/AAKWJJMAIxMyMg7Yb7dh6ZvXyQ-YYXaJnw/photo.jpg,Carry forward of task is amazing strength of the app. Liked it !!,3,0,3.1.1,2015-12-16 03:05:33,,,most_relevant,com.appxy.planner +Avant Garde,https://lh3.googleusercontent.com/-F9QtgLSuzO0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMJXb1Z5k4O8TaMRSvccT1XGyCKhQ/photo.jpg,Alarms are singular and not like an alarm clock...,3,0,3.1.1,2015-11-15 20:08:19,,,most_relevant,com.appxy.planner +Dexter,https://lh3.googleusercontent.com/a-/AOh14Ghi3z4T5ytAC0oMnkf5Jj0sOpQHCUsI8WzH5kybRQ,Does not sync with google,3,0,3.1.1,2015-09-24 23:54:54,,,most_relevant,com.appxy.planner +Nick Allen,https://lh3.googleusercontent.com/a-/AOh14GiGhnXd_OYsXRx9poWQ3Xqkk0YH3LTPqBzAezCf,It does the job,3,0,3.1.1,2015-09-29 10:36:30,,,most_relevant,com.appxy.planner +Kate Stone,https://lh3.googleusercontent.com/-KeOe-2qjQ94/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOLh-jCPBwhNInmZXye3YbltXpEnA/photo.jpg,I try to write somthing and it exits,3,0,3.1.1,2015-08-09 04:15:22,,,most_relevant,com.appxy.planner +Erin Twernbold,https://lh3.googleusercontent.com/-VWhf9-JLW7U/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO3KOFAi9i9VcTVhypInCLUmnCxow/photo.jpg,It is a fine app!,3,0,3.1.1,2015-12-05 17:52:11,,,most_relevant,com.appxy.planner +Govind Sewing,https://lh3.googleusercontent.com/-vO_RzGlQQts/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPO2DcnMF-2q-vppeNK_DEFZliCwg/photo.jpg,Govind,3,0,3.1.1,2015-10-01 05:03:20,,,most_relevant,com.appxy.planner +Mazhar Ahmad,https://lh3.googleusercontent.com/-SyIJaNDaJk4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNxefYMiFcQj5cQT4jfa2NuvgtVEA/photo.jpg,Nice App,3,0,3.1.1,2015-08-31 14:43:53,,,most_relevant,com.appxy.planner +Yasir Ali,https://lh3.googleusercontent.com/a-/AOh14Ggy190ww960oqU-Rg6AIS7SJxh_i5OavIobj43Lug,Good app,3,0,3.1.1,2015-12-05 07:10:04,,,most_relevant,com.appxy.planner +Ajay Singh,https://lh3.googleusercontent.com/a-/AOh14GhIR3gwhWASfsmbjUcxfXzY7mNiMkYgpYgJRGFajQ,"Please use the app the widget, and see for yourself if ur comfortable with it. Compare it with s planner.",3,1,3.1,2015-07-25 10:46:50,,,most_relevant,com.appxy.planner +Mary Jo Gonzalez,https://lh3.googleusercontent.com/a-/AOh14GgYhzfoRCvhWAsTHcfqgj9_oQZOEYLw0P5XNIszDw,"I love this would be 5 stars, but i have a few complaints. First off, i like that it syncs with google calendar. I wish that it would sync with Svoice too. That away i can see my tasks list and notes for the day using svoice. Also it would be nice if i dont complete a task for that day that instead of having to delete it, i could move it to another day. Those would be some great features. Thanks",3,2,3.0.1,2015-06-27 00:22:07,,,most_relevant,com.appxy.planner +Lynne H,https://lh3.googleusercontent.com/-7p62V_GIP7k/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMTeszscta6mu9P9wx0hJQWVt4S6w/photo.jpg,Nice app but it keeps crashing on my Samsung Galaxy S6. Also reminders don't pop up well when phone is locked or offer good snooze options. Going to have to uninstall if crashing not fixed,3,0,3.0.1,2015-06-12 16:37:58,,,most_relevant,com.appxy.planner +Rpm,https://lh3.googleusercontent.com/a-/AOh14GjdfbdBoLGgjn2hCBA8CdfZW1-6N6NyfWGKb-go8A,Only 24hr option? no 12. Would be cool if you could color code the circles in the calendar date to that calendar that has an event for that day.,3,0,3.0.1,2015-06-13 04:21:00,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I don't know why, but it doesn't open...i click on it then i wait and at the end it notifies that the app has stopped.",3,1,3.0,2015-04-26 22:08:49,,,most_relevant,com.appxy.planner +Rocco G Nazzaro,https://lh3.googleusercontent.com/a-/AOh14GgF-NhFPi98HPPqgvoWE5iiH7DS3pjSO8JfnRLxNQ,Needs a setting to repeat the task,3,0,3.0,2015-05-01 01:33:52,,,most_relevant,com.appxy.planner +Bruno de Souza Reinaldo,https://lh3.googleusercontent.com/a-/AOh14GhBz5q1FOWF05qc8t7ArVTmWkT2z0kH08MyEKgg0A,You need to improve the responsiveness to the touch.,3,0,3.0,2015-04-16 13:50:31,,,most_relevant,com.appxy.planner +Brenda Boyer Knoll,https://lh3.googleusercontent.com/a-/AOh14GhjTtJ5alQz1amZ4QVryFNrEnK9SX7dBn0zEVpjnZM,"This planner has a beautiful UI but lacks the ability to sync tasks.... anywhere! Plus the tasks need to be able to mark as completed from the widget. IN any case, I use my planner to keep track of it all, I may lose my phone, then what? I won't know what to do out where to go. Tasks need to sync, and not with purple planner, with Google.",3,1,2.4,2015-02-07 16:43:45,,,most_relevant,com.appxy.planner +Carlton Wing,https://lh3.googleusercontent.com/-GI1FB6gxQMA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOrtu5iFO0inbscBM8ASSYyWcX4TQ/photo.jpg,"This could be the best planner app out there. But there are some questions I've not had answered (because inquiries to the developer were unanswered) such as... can tasks be set to repeat IE, daily, weekly, etc. Maybe that is in the paid version, I don't know. The tasks are separated and I'm not sure I can see all of them at the same time. I'd also like to know if it can sync between Android (Note 4) and iPad. For now I am using Opus Domini on iOS, but it is unavailable on Android. Still searching",3,0,2.4,2015-03-28 06:45:22,,,most_relevant,com.appxy.planner +Shelley Huelskamp,https://lh3.googleusercontent.com/-qhUasrF5Tmc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPjSTteMbFmPccRvPsPI-ZmwOcLrQ/photo.jpg,"I love this app enough that I purchased the upgrade, but it is not syncing my Samsung devices to my Dropbox account. Would be 5 stars if it did!",3,0,2.4,2015-03-17 03:03:54,,,most_relevant,com.appxy.planner +Tessa Neill,https://lh3.googleusercontent.com/a-/AOh14GgNtWPC5cx6UuPLYz7QCGWG0ED5WV0h4Uf2H0SgrdE,"this app is well designed but until I can share or delegate individual tasks, I won't buy pro or even use the free. Please add this! It needs to sync with Google tasks too.",3,0,2.4,2015-02-12 17:14:42,,,most_relevant,com.appxy.planner +Jesse Bitzer,https://lh3.googleusercontent.com/a-/AOh14GibJHuBU-MA8hnlff6G2UYaj7Bliunt7laswUmdi1c,"Seems pretty good, but would like to know if there is a way to toggle between 12/24 hour time.",3,0,2.4,2015-02-08 22:08:30,,,most_relevant,com.appxy.planner +Pete Rodriguez,https://lh3.googleusercontent.com/a-/AOh14GhGN0NrXmAOz27FAA6RW9LiIqk2ryl4Ltge-bLd1A,"Need to be able to repeat tasks. If it had that, I'd be my new calendar.",3,0,2.4,2015-03-23 23:55:08,,,most_relevant,com.appxy.planner +Averil Harder,https://lh3.googleusercontent.com/a-/AOh14GhWCThHyxRir3oIpeJ2EpTlMAPTlVoEFzUIXrqhTA,"Love the idea of the app but it's missing a key feature that I need in order to use it. Undated tasks should have the option of showing up every day (under tasks from the calendar/day view) until completed. If that isn't possible, at least a ""view all"" tasks function would be helpful.",3,3,2.3.2,2015-01-01 23:23:13,,,most_relevant,com.appxy.planner +Steven Jabak,https://lh3.googleusercontent.com/a-/AOh14GiZEzNGW3FUIPkYoxe_ordhpzU66CARNT69Nuk,Good,3,0,2.3.2,2015-01-13 21:17:11,,,most_relevant,com.appxy.planner +afmcite2002,https://lh3.googleusercontent.com/-K_eRZDw_eFo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP6THJcbfIOsURJfXXZDp95R1xAUA/photo.jpg,Just OK,3,0,2.2,2014-12-07 01:55:08,,,most_relevant,com.appxy.planner +Zekai Tahir,https://lh3.googleusercontent.com/a-/AOh14Ggqj7_K77BaOPe7fwKEPG_90fhu_BQYSD1_5jf3lA,Requesting for a dark Interface and when will the Google task integration come???,3,0,2.1,2014-09-28 00:48:38,,,most_relevant,com.appxy.planner +Eric,https://lh3.googleusercontent.com/-STcVfx0o8ZQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPz_emlR_mYBLYPIIsPn8T8QDLV5g/photo.jpg,the reviews are sending a clear message to you. Act on them. I think the last update has messed everyone up. If you don't act;you're sending a message back:ie. you meant to mess everyone up by locking them out,3,2,,2016-10-30 09:31:30,,,most_relevant,com.appxy.planner +L Warville,https://lh3.googleusercontent.com/a-/AOh14Gjri8zGTZuI7MJoHVfVJ8kcFGmdCGOePG05yLd7Iw,I input my appointments and it does not ring loud enough or pop up to let me know that i have an appt. I have the paid version. Am i doing something wrong. IF my appt is at 11:00 do i have to input at 12:00 to get it to ring before 11: screwy lewy. I will change my comments and rating once i get this resolved.,3,0,,2016-02-25 17:37:33,,,most_relevant,com.appxy.planner +Michaela Lubbers,https://lh3.googleusercontent.com/a-/AOh14GgLALqA55t7FI_jx0XTaMpe0GAElMN7_bOJUvFsyg,"There's nothing wrong with this app, although it could be slightly better, but.... It's just like Google Calendar. In fact, it's integrated with Google Calendar, and all your events show up in GC. Even the selections of colors in association to events and how you input information is the same. If you're an android user, go ahead and just use the built in Google calendar, if not your Samsung/HTC/whatever one. I have near stock android, so I get Google. Same difference, really.",3,0,,2016-08-30 18:02:31,,,most_relevant,com.appxy.planner +Anne Lee,https://lh3.googleusercontent.com/-5ZS1YMXDWY0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN7kHktZwIVfEzbDMJI7vBQh8W1Iw/photo.jpg,"I used to love the app... Until I needed to synchronise to see my tasks to another device, then I found out syncing simply won't work and uninstalling/reinstalling didn't solve the issue.",3,0,,2016-08-22 06:40:58,,,most_relevant,com.appxy.planner +Kirsten Shanklin,https://lh3.googleusercontent.com/-VDytq9CBIaM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOaa3KMZzIwigDtW312JxZmomLnlA/photo.jpg,"Didn't realize this synced to my outlook calendar, started deleting work stuff and deleted two important appointments from my work calender. I'm screwed on those, was planning on using this for personal use only.",3,0,,2018-02-13 21:19:46,,,most_relevant,com.appxy.planner +Billy Ace,https://lh3.googleusercontent.com/-IV8qvbedvf4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNPP9oIyZOiLyPOtc7EJZNxfEFC1w/photo.jpg,I bought the allegedly better version it worked for about a month. I had all my scheduled stuff about 6 months and all of a sudden the disappeared which sucks.,3,0,,2016-03-15 20:08:54,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"When i tried putting inmy class scheduel they kept vanishing when I add notes to a specific date. It might work fine if you don't need many events, but it's a pain if you have a lot to keep track of",3,0,,2018-01-16 23:52:34,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,I would stick to this if only the event preview text is not cropped.,3,0,,2015-07-06 12:23:18,,,most_relevant,com.appxy.planner +John Bejo,https://lh3.googleusercontent.com/a-/AOh14Gg6zfhtahgAUzzFxRP3Hs5tlSjvC6yYQwl71IOJSQk,"I bought this because it has a really design and features, but I to uninstall it because it's slow loading. It's lagging.",3,0,,2016-08-17 22:47:49,,,most_relevant,com.appxy.planner +Ashley Flores,https://lh3.googleusercontent.com/a-/AOh14GgBWQE20wnIQaevscDxJT06wy_e7sfsQ6m0OjMzLw,I started playing with it and it freezes often and I don't like how my notes have to be on that day and not just by themselves.,3,0,,2016-01-18 17:19:04,,,most_relevant,com.appxy.planner +Becky Fehr,https://lh3.googleusercontent.com/a-/AOh14Ghu4FILM-AXmKwjvvLPdKv-I0Qn7obU61n8ZJB2CQ,Really like the app. However it is multiplying my tasks on a daily basis and i cant delete them as fast as they appear... frustraring not using it right now,3,7,4.7.2,2020-03-21 17:54:00,,,newest,com.appxy.planner +Sharisse Moore,https://lh3.googleusercontent.com/-XWbC8RqWapw/AAAAAAAAAAI/AAAAAAAAAN8/AAKWJJN5IQeSqSBng9bpXctV20JZ7ZIOtQ/photo.jpg,Good app. However the notification has stopped working.,3,0,4.7.2,2020-03-15 14:36:42,,,newest,com.appxy.planner +Shea Dalziel,https://lh3.googleusercontent.com/a-/AOh14Gi7cl6LDivna3eaPLvz_uIu1i49yrEBlYkM2Yccag,"The app design looks nice, and has good features. This is a functional planner app. I can access the week view in the free version (though a prompt to upgrade to premium pops up), but tasks cannot be set as recurring in the free version. This is a main feature I'm looking for in a planner app. Also, the look of the app cannot be customized- stuck forever with that purple at the top of the screen. There are other free apps that include these things.",3,0,,2020-01-18 19:19:26,,,newest,com.appxy.planner +Jennita Wagner,https://lh3.googleusercontent.com/a-/AOh14Ggoxq1WnUkRaGnxyHZQm4b9JJ_UBigYHz66qkrwAQ,"I would give this app 5 stars but I am beyond frustrated with how slow it is to open. I pay the subscription for premium, and I love all the options in the app. But it literally takes 5 to 10 minutes for the app to open, unless there is a notification in my notification bar that I can open the app with. This would be annoying even with a free app, but to pay for a slow app that takes ages to open is ridiculous. In the 2 or 3 years that I've used it this has never been fixed with any upgrade.",3,21,4.7.1,2020-01-16 14:27:45,,,newest,com.appxy.planner +Grace Mungai,https://lh3.googleusercontent.com/-9hGcfvm3W_s/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNfWk7s3uqi5w651ogC69ccR7yQTA/photo.jpg,G O O D,3,0,,2019-10-14 19:26:41,,,newest,com.appxy.planner +Stephanie Cervi,https://lh3.googleusercontent.com/a-/AOh14Gg8CDkvO7ysktTQSjTlGU9Mt9ja6wSua9N59gasgA,"This is hands down the best personal planning app I've ever come across. That being said, it's basically unusable on Android. The view jumps to the top of the day's task list at random, making it easy to accidentally check off the wrong task. It takes minutes to load anything when you try to access the rest of the app through the back arrow at the top left. And, on occasion, tasks will duplicate themselves multiple times with different parameters. I use it on my iPad with no trouble at all.",3,12,4.7,2019-10-10 14:28:54,,,newest,com.appxy.planner +Jethro Ong,https://lh3.googleusercontent.com/a-/AOh14GgCzRD0fjfaU7DA_ixNvGfQw3VC_E16D2T6w92WI90,"App is extremely useful just that the ""search"" feature doesn't cover all the notes in the app",3,3,4.7,2019-09-27 08:25:57,,,newest,com.appxy.planner +Christy Smith,https://lh3.googleusercontent.com/a-/AOh14GirTvlu-zEVeWmLN5ysjXRH5dgkNYjRcFknAqemmw,"Great app! Intuitive navigation, easy to use. Nice integration with other apps. What's up with the lavender color designation?! I didn't think that lavender would look turquoise.",3,0,4.5.7,2019-07-28 16:33:30,,,newest,com.appxy.planner +Lois Ray,https://lh3.googleusercontent.com/a-/AOh14GgV3brw2cl2vgFEasxG2YsC0E76irghRnOKwB_O,"useful app, interface are easy to use, would be better if you could add search function, so we dont have to comb thru everything to find what we are looking for.",3,4,4.5.8,2019-07-19 23:39:39,,,newest,com.appxy.planner +Alex Ianta,https://lh3.googleusercontent.com/-rXFCOtyt_qU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO-og9b3S-ApwP5dHJjFe5GyEXbIg/photo.jpg,"I like how it allows me to set any number of reminders, minutes/hours/days/weeks in advance either by push notification or email. But many little bugs pepper this app. The calendar view will bug out and not map to the selected month from time to time. The location field tries to be smart by giving you a 'maps like' autocomplete, but this is annoying when you just want 'gym'. For some reason the first letter of an event name isn't registered by autocorrect, so 'Event' turns to 'venting'.",3,1,4.5.7,2019-07-18 13:53:31,,,newest,com.appxy.planner +Joane Fostanes,https://lh3.googleusercontent.com/a-/AOh14GgMcUnlesIlxeNpJoXG4ECq1k4A7tM0AC3VWa8Z,It's actually good but it doesn't have a feature where your task appears on your lockscreen that will remind you everytime you forgot something to do.,3,2,4.5.7,2019-07-03 06:04:35,,,newest,com.appxy.planner +jody louie,https://lh3.googleusercontent.com/a-/AOh14GgieZqPnbSeUaWSIdRxN3kStZmR2r-jFjZod3zV,does not update tasks in widget automatically,3,3,4.5.7,2019-05-20 20:51:50,,,newest,com.appxy.planner +katie dangelo,https://lh3.googleusercontent.com/-tghW1pc0C1g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN2AOkA9u_Myejf_W2KMX2qGVSFRg/photo.jpg,"I need more time with your app. I'm looking for an organizing app to meet the needs of me and my gaming community to be able to cross schedule events share valuable information w/aarach. while I know that was never your vision I am impressed with the very easy to use ui, but have not figured out if u can share projects notes calandars ECT. I cam see your app meeting a very large need in a community the desperately needs an easy way to collaborate. adding a group's feature to cross plan 5 stars",3,6,4.5.7,2019-05-11 21:39:01,,,newest,com.appxy.planner +Nurul Shahida,https://lh3.googleusercontent.com/-S8jyVTvi42U/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNYy4MzFXni4hqGwL30-mjvzTJN6g/photo.jpg,Bought the planner pro.... Love the app... The down side is that the app did not sync... i have 2 device handphone and tablet both android... i have to update both device twice instead of once... Would give 4 or 5 star if it can sync between both device. i have some suggestion... maybe can input some bill tracker and some cute icon or pill tracker/ hydration icon.,3,3,4.5.5,2019-04-14 14:00:06,,,newest,com.appxy.planner +Adam Laughton,https://lh3.googleusercontent.com/a-/AOh14Gg7lm7OHN3xhKY1HgQ-G94le3CiGjyikGmhGMGX,Landscape mode only? Big problem. Cant make it portrait on my kindle fire 8,3,0,4.5.4,2019-04-12 08:34:57,,,newest,com.appxy.planner +Rachel,https://lh3.googleusercontent.com/a-/AOh14GhSuK7Y6Fgvp5vW2S_gFgkD1vKMZdMk8sUTw59CRQ,why won't my homescreen widget display all day events? this makes it really difficult to use,3,0,4.5.4,2019-04-05 19:32:50,,,newest,com.appxy.planner +Harold Duncan,https://lh3.googleusercontent.com/-LkGdyNjVBSU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMa9SKfN0MPRWJQctFGMBok2JBvdw/photo.jpg,like the concept but tech support cannot get rid of ads and popups. tried over several months but they are gone a short while then return. the response lag and language issues are frustrating. this changed my review and I removed the app,3,3,4.5.4,2019-04-04 15:00:01,,,newest,com.appxy.planner +Jeremy Evans,https://lh3.googleusercontent.com/a-/AOh14Gid2XGnulGLHSls_MnoeqyuWfdkz1FhhjEMehyLy2s,"I love this app, it's the only one that looks and feels like the old Franklin planner, however; since the latest update I have a banner ad on the bottom of the screen with Google ads and I am a paid pro user. This is extremely annoying. If they don't remove this, I'm leaving.",3,84,4.5.5,2019-03-24 15:37:31,,,newest,com.appxy.planner +Joan,https://lh3.googleusercontent.com/a-/AOh14GivrpxiC1fwxLaakiyCYCZd0MpZkTOM1kyqV4v1GQ,I like this app but the ads are getting aggravating. Especially the Trump ads. I'd prefer not to see him on my phone. Thank you very much,3,0,4.5.4,2019-03-15 00:44:27,,,newest,com.appxy.planner +Dan Kubus,https://lh3.googleusercontent.com/-xnNEMqzt5N0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNOKxQmu0rn8VnHR072eIVWQyhw6w/photo.jpg,"I found this app to be redundant, since I already have a calendar on my phone, and Planner Pro does little else.",3,0,,2019-02-21 14:23:36,,,newest,com.appxy.planner +vanessa tan,https://lh3.googleusercontent.com/a-/AOh14Gga6Ge8z0KLX0jcgliyCTb6oFy0fkFI0hRf1g1QAA,"there are ads even though there wasnt any label of ""contains ads"" in this app description",3,1,4.5.4,2019-02-21 04:39:32,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,it works it just hard,3,0,4.5.4,2019-02-08 05:10:12,,,newest,com.appxy.planner +jessica lynn,https://lh3.googleusercontent.com/a-/AOh14GgpUG67FNeXaEC5KPOA6xCAvyXoNxR9XsJ0VBV50A,"Like everything about the app except, my events kept disappearing. I would enter an event and one would disappear.",3,0,,2018-11-29 17:37:52,,,newest,com.appxy.planner +Katelyn Pauls,https://lh3.googleusercontent.com/-gne2pJSrLL8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPEDfuxevVfFx-2tnQ8jar3N4awMg/photo.jpg,"I have the app on my phone and my iPad and they do not communicate. Everything that I input on my phone, I have to re-input on my iPad. I'm signed into the same account on both. It would be nice if they would communicate. Also, I don't understand why the computer app is available separately and for a much more expensive price...",3,12,4.5.4,2018-11-13 18:26:30,,,newest,com.appxy.planner +Parshva Shah,https://lh3.googleusercontent.com/a-/AOh14Gh9J_IcnP5nLWifwsKNp2bd5Z8b2C3WgxXTYWyaAfQ,"There's a visible lag when scrolling left or right in day view, even in high end phones. Going back from a task edit screen without making any changes also asks (shows popup) whether you wish to save or discard changes, that popup is irritating. Otherwise an effective and the point app. Cheers!",3,2,4.4.1,2018-09-26 15:44:05,,,newest,com.appxy.planner +sikander masood,https://lh3.googleusercontent.com/-2B5NW4VUxSQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPDc0_k5UU9gqOz7OFjYwrkgKHK8w/photo.jpg,Good,3,0,,2018-08-02 06:20:40,,,newest,com.appxy.planner +D.R. Williams,https://lh3.googleusercontent.com/a-/AOh14Ghg3dLIMXfc0wHplNqQNFC1pPvQWY6Kjzr10b4oJg,"Not able to sync with Outlook. Cannot create goals with a goal tracker, or +export calendar events, tasks, or notes, and only accessible through phone +and tablet. Much improvements needed for such a high subscription rate.",3,9,4.4.1,2018-07-15 10:48:36,,,newest,com.appxy.planner +Shelley Callus,https://lh3.googleusercontent.com/a-/AOh14GiSKc6Ofvxm9LgwUu_jh1etX_VOlvpIpQxVaDlZyA,"It's good but since we always have more than 1 thing to do we write three +or more things to do and when we go to priorities ex:C1 A4 B2 etc; we +wouldn't know which to do so we suggest you have more of those .Thanks.",3,1,4.4.1,2018-07-07 19:16:52,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,it's a nice app. it make my life displined,3,0,4.3.7,2018-05-06 01:44:29,,,newest,com.appxy.planner +DRxEW,https://lh3.googleusercontent.com/a-/AOh14GijNEVfCJ8YXoQUY4fQ672T3lg10g7Lz4d9tRZoPw,"Been using for a while now. Getting buggy, needs update",3,2,4.4,2018-03-20 18:56:25,,,newest,com.appxy.planner +Dean Yencer,https://lh3.googleusercontent.com/a-/AOh14Gi5qs6BPCnxkSOfGQRTBLi8Skq4UKBEqPbG9bRSMQ,"Would be awesome except when I put start in weekly view in the settings, I can no longer access monthly view or change the settings ...",3,5,4.4,2018-03-20 12:17:36,,,newest,com.appxy.planner +Kirsten Shanklin,https://lh3.googleusercontent.com/-VDytq9CBIaM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOaa3KMZzIwigDtW312JxZmomLnlA/photo.jpg,"Didn't realize this synced to my outlook calendar, started deleting work stuff and deleted two important appointments from my work calender. I'm screwed on those, was planning on using this for personal use only.",3,0,,2018-02-13 21:19:46,,,newest,com.appxy.planner +Komalpreet Dhaliwal,https://lh3.googleusercontent.com/-JtNsW_KzzWc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNeBRYrfieeA4HLLNQQOz96-b2fLw/photo.jpg,NYC,3,0,,2018-02-13 14:59:02,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"When i tried putting inmy class scheduel they kept vanishing when I add notes to a specific date. It might work fine if you don't need many events, but it's a pain if you have a lot to keep track of",3,0,,2018-01-16 23:52:34,,,newest,com.appxy.planner +Alfirus Ahmad,https://lh3.googleusercontent.com/a-/AOh14Ggm-6R-_-sLro1NwmzJCbC1owOPZbOnMMmFJlYK_z8,"It have future if they make Notes can be organize by category, Tasks can create sub task and fix bug when Samsung Dex enabled",3,1,4.3.7,2018-01-09 00:48:28,,,newest,com.appxy.planner +Nhung Nhung,https://lh3.googleusercontent.com/a-/AOh14GgsD-c1a_CEUZf10RHBjN_rv7TECZG3iTA4RmWB,"I downloaded this app on my tablet long time ago (full version) and recently also downloaded it on my phone as I don't bring my tablet with me all the time. I only use the ""task"" function, because my calendar events do not sync properly (I haven't fpnd the sync button on my phone...) and another not so funny thing for me: I am using the same account for both devices, BUT I can't use the full version on my phone (I get a message that I need to buy it (???)...) that's why I need to use my tablet (with the full version on it) if I want to add something.",3,3,4.3.7,2018-01-09 00:09:31,,,newest,com.appxy.planner +Chris Scholten,https://lh3.googleusercontent.com/a-/AOh14GgB2m9g4dORhK4xbeCb8etAra3JdEm_UqPs3SBkbw,"I love this app, but it sucks that I can only use it on my phone. I'd give it a 5 if I could a) use a desktop version of the app as well; b) sync tasks with Wunderlist; and c ) sync reminders from Google Calendar as tasks on Planner Pro.",3,0,4.3.7,2017-12-12 16:31:21,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Great app, but it keeps deleting the events (birthdays, etc.) that I put in it! I've never had this problem before, please do something! This is my go-to calendar app, and I'd hate to have to find a different one!",3,1,4.3.7,2017-12-05 11:54:31,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Won't do recurring tasks. Does not connect to Gtasks as shown in the cover photo. Hasn't been updated in a long time,3,0,,2017-11-23 17:40:53,,,newest,com.appxy.planner +Ayevbosa Zabayo,https://lh3.googleusercontent.com/-CQQXUuXMT-Q/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN5cETSJczGR0VAyCb8jlMjS6RSTA/photo.jpg,It is ok,3,0,,2017-11-21 16:49:57,,,newest,com.appxy.planner +Ad Astro,https://lh3.googleusercontent.com/--gpRjd49wNo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPPu2hUvnF7ZHnaKqTFCfyssKj6Ug/photo.jpg,"Guys, excellent app. Bad financial model. Prepared to pay. Reluctant about subscription model. Unfortunately, Uninstall.",3,0,4.3.7,2017-11-18 14:46:39,,,newest,com.appxy.planner +ibrahim hussaini,https://lh3.googleusercontent.com/-B0KqMKg0p1A/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNp3mcbPBPO2G6ZRXZob0IfMKx1iw/photo.jpg,Cant wait to try it,3,0,,2017-11-11 22:53:05,,,newest,com.appxy.planner +Neva Castillo Coronel,https://lh3.googleusercontent.com/a-/AOh14GgppunXB-MRrFns27QmKVLASAFfVvahiEXkjkuwmA,Loved it except that it wouldn't save and show me all of my events,3,0,4.3.7,2017-11-07 02:12:25,,,newest,com.appxy.planner +Shelley Wilson,https://lh3.googleusercontent.com/a-/AOh14GjgMp-8kz40oZ1OpNw9rYP3flQf9RRGy6Y67U-NH_8,Just downloaded this app.....not sure what I think of it at the moment.....cant seem to find where you can use colours like the pictures,3,0,4.3.7,2017-11-01 13:54:30,,,newest,com.appxy.planner +Jill Cox,https://lh3.googleusercontent.com/a-/AOh14GgTt_9R9Qm0-f-s6pJypgkuAUnBMAcIPJSDHIhNHQ,It says I changed my password and now can't get in calendar what can I do to fix problems,3,0,4.3.7,2017-10-29 17:41:30,,,newest,com.appxy.planner +Kennadi Quinn,https://lh3.googleusercontent.com/a-/AOh14Gh-x2lbFskIuCFcRybknm1qh8ttYRkS1qd07Uod6Q,"I like it but when I put my pass code in to access it, I goes through but then it says your password has been changed please sign in, but I have to hit the back button on my phone to ignore it so it doesn't make me sign in again, but when I do hit OK for it to let me sign in again, my password isn't there, it's still locked but I don't know the password.",3,0,4.3.7,2017-10-05 17:10:57,,,newest,com.appxy.planner +Salline Shukor,https://lh3.googleusercontent.com/a-/AOh14GhpiSHt3icUAr0rPlvO0uiF5OxsSDzITC3ZOfEW2Q,"I'll like it more if I can the way I view this apps, difficult for me to type in landscape position",3,1,4.3.7,2017-10-05 04:51:25,,,newest,com.appxy.planner +Irene Yashina,https://lh3.googleusercontent.com/a-/AOh14Gg_lNbxOfv9twxJxceGhlTelrLxxYJamFMAK7Kzsjg,So so. I expected the ability to attach files to notes and a lot more flexibility with format.,3,1,4.3.7,2017-09-28 05:11:45,,,newest,com.appxy.planner +pirah sikandar,https://lh3.googleusercontent.com/a-/AOh14GgOmEx9MMJgh-QHsODcRR0EAJ7dpTbwvNdFG-Ou9yY,"Plz help, it says m typing wrong passcode, it is not opening with my old passcode",3,2,4.3.7,2017-09-23 12:52:37,,,newest,com.appxy.planner +Mahipal Suna,https://lh3.googleusercontent.com/a-/AOh14GgKpCn_uDrNbB78J1gcIwq22ykT04lD9c8XoswJPQ,"The aap good but not some updates are required, such as - In notes section add photo upload option, Add Journal Option,",3,1,4.3.7,2017-09-06 05:45:36,,,newest,com.appxy.planner +Jon Cheek,https://lh3.googleusercontent.com/-GSPvzjOM2uY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPiCxAwvdStNvD-lf4i0brTFNP9jA/photo.jpg,"Nice layout, but it will not sync repaired events between my tablet and phone. I contacted tech support but they were unresponsive and not helpful. I do not recommend.",3,4,4.3.7,2017-08-27 20:12:02,,,newest,com.appxy.planner +Michael Mathias,https://lh3.googleusercontent.com/a-/AOh14GiQTqBCXckEZfukUBRG1G3QskqhvchVpWDavXPj7XE,"Forever Landscape? Why can't I ever get this app to rotate to portrait mode? It's never been able to do this, even after downloading it on other phones. Way too annoying to have to deal with for me to deem it a useful app, at least for me.",3,3,4.3.7,2017-08-18 15:10:40,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"It's fairly easy to use, however the alarm doesn't work",3,0,4.3.7,2017-07-28 15:24:29,,,newest,com.appxy.planner +Suzana Hajder,https://lh3.googleusercontent.com/a-/AOh14GgopUR07NIIdmhYJYi3_KkmjITomCCwQiAkWB7lSw,"Overall great organization tool, however recent updates make the application only usable in horizontal view which is extremely annoying and quite an inconvenience",3,4,4.3.7,2017-07-03 18:49:41,,,newest,com.appxy.planner +Riani Tania,https://lh3.googleusercontent.com/a-/AOh14GjIebAADdYB6ywWOkYJqasWaklVusJ6yt93RKFkJg,The event didnt sync to my other device,3,3,4.3.7,2017-06-27 03:46:29,,,newest,com.appxy.planner +Melissa Cummins,https://lh3.googleusercontent.com/-Y7eIal1nbFg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNK8HvVUFSVgrZOlyh53d1JvuMpgQ/photo.jpg,"Love the app and bought the full version in February, but recently it quit syncing between my phone and my tablet. I emailed support about the issue on June 2. The tasks are syncing now, but calendar items still are not syncing. Wish they would fix the issue!",3,25,4.3.7,2017-06-11 13:50:13,,,newest,com.appxy.planner +Siri Sri,https://lh3.googleusercontent.com/a-/AOh14GjQS--_YKZXoTZyuEMFlgYcWaPw3GFGDTeUSiW2amQ,Good,3,0,,2017-06-03 19:01:40,,,newest,com.appxy.planner +William Boyd,https://lh3.googleusercontent.com/-wJ0HweSBxKo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNO_mT8nw-sixtARWqpkhfHQZH2AQ/photo.jpg,This app is easy to use but my biggest issue is that when i add notes or check off tasks when off line they dont save,3,5,4.3.7,2017-06-01 15:59:56,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I liked the app and it looked like it had a good set of features, but I didn't like the $4.99/year recurring subscription fee.",3,0,,2017-05-31 12:27:05,,,newest,com.appxy.planner +Jeremy Davis,https://lh3.googleusercontent.com/-6UJ47wN0p9g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMFxYRgjRAOq9hH787G0uRwakZR9g/photo.jpg,"Task repeat options are garbage. For basic things it's ok, but don't expect more than that.",3,5,4.3.7,2017-05-30 04:14:22,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,helpful but not too much,3,0,,2017-05-22 07:04:00,,,newest,com.appxy.planner +Kerra Henderson,https://lh3.googleusercontent.com/-Kynt7UJ7euM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOM_jzzT54pWBy0K2dP417rqnfhWg/photo.jpg,I liked the app well enough to pay for it so I could get my recurring items in order with it but when I set a task as recurring it only shows up on the day that I started with.,3,9,4.3.7,2017-04-25 04:26:47,,,newest,com.appxy.planner +Julia K,https://lh3.googleusercontent.com/a-/AOh14GixgBkF0W6cEYFl8qNA9U1jhQPsOMtMyCSy7F9Ehg,Great :),3,0,,2017-04-25 00:55:08,,,newest,com.appxy.planner +D Wolf,https://lh3.googleusercontent.com/-lrwil1w2mv0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPcIX5y_QBHBurPue4mkTbHBwH3yA/photo.jpg,It worked great to start with but now I'm not getting task notifications and some of my events are not showing up on my calendar widget,3,6,4.3.7,2017-04-20 22:13:54,,,newest,com.appxy.planner +Deanna Wedell,https://lh3.googleusercontent.com/a-/AOh14Ggnca3piz82g9jLJIjHTvsSnWqIo5jovwSNRSf2lQ,"I like this app very much, because it's fairly easy to use and it allows for actual ring tones to be used; not just notification tones). However, my biggest issues are that I cannot receive any notifications from the planner if the event was created on my phone's calendar (I'm assuming this is the issue since only half, or less than half, of my total events and tasks do not sound). It also will not sound when I have reminders set for many different times. It's original default reminder is 15 minutes before the event time, but I changed it to be on time and then I would make other reminders if need be. It will only sound at 15 minutes before the event time, no matter what I tell it to do.",3,398,4.3.7,2017-03-30 04:55:02,,,newest,com.appxy.planner +Mike MacDonald,https://lh3.googleusercontent.com/a-/AOh14GjAmK8mksZfYsJ_f2QXTvGsSMQgyM0qhEnDpWwt,"I'm using this app for work for Due Diligence. When I first installed the app I was sure I could ""search"" my notes for key words now I can't. Am I doing something wrong or is that function not available on this app?",3,11,4.3.6,2017-03-15 11:45:15,,,newest,com.appxy.planner +Alexander Karavasilis,https://lh3.googleusercontent.com/a-/AOh14GgUgFyBaXw4S8Sk_HbG2TkLD8cy-apyr7eUHpRrcg,It does not have the ending time of an event,3,5,4.3.6,2017-03-10 19:07:26,,,newest,com.appxy.planner +Ria Smith,https://lh3.googleusercontent.com/-_JPs8fHZ_m8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOe6DlKyx7ZDCWes_larAH_K3DdAQ/photo.jpg,How can i take the notes i have made and copy them over to my laptop. I have looked to see where the notes save to but can't seem to find them anywhere. Please help me,3,6,4.3.6,2017-03-09 08:47:57,,,newest,com.appxy.planner +Codey Dauch,https://lh3.googleusercontent.com/a-/AOh14GiE_9L0eEgCade3tcGLzY8tGmUuNiD8lOqup2uOjBY,"Whenever I open it i have to turn my phone sideways because it's locked in horizontal, even after I turn on auto rotate",3,1,,2017-03-08 13:28:31,,,newest,com.appxy.planner +Kyal Lanum,https://lh3.googleusercontent.com/a-/AOh14GjVj4dbQmt3wqEsJzRs2QSH36fl7c4NSaN3LgLj,Good app that I can use for putting all my appointments in. One problem is that the notifications I set to make sure it reminds me don't go off at all. (I have a Droid Turbo 2). If you guys could fix that. I will change to 5 stars.,3,47,4.3.6,2017-03-05 20:43:37,,,newest,com.appxy.planner +Rana Samh,https://lh3.googleusercontent.com/--PrMrzWXXVs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNTHMmWQ7t4ZreSRxt9Oh_4OBbAsg/photo.jpg,"Hello developers, can you please help? I put a passcode on the app and now it won't let me access the calender. It keeps telling me that my passcode is incorrect when I know I put it in correctly. Please fix this",3,25,4.3.6,2017-03-04 11:09:44,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"No matter what I do, even setting 'no notifications' when creating event or task; they continually pop up. Not happy with this feature.",3,5,4.3.5,2017-03-02 20:33:44,,,newest,com.appxy.planner +s a,https://lh3.googleusercontent.com/a-/AOh14Gg8sxzDmfJliaj4lEkQ5rr3-0tGm1sZEktUGVAj,A good app overall but the new version no longer shows the duration of events which is extremely annoying and a deal breaker for me.,3,0,,2017-02-27 12:58:00,,,newest,com.appxy.planner +Cheri Caggia,https://lh3.googleusercontent.com/a-/AOh14Gj-zdpHUT9EGr44a5VU6yxhp8bcLJFMwl7pRZtIN8I,"I love the app EXCEPT that the widget does not remember customizations (such as default calendar, not using 24 hour time). If this could be more flexible and keep the settings of the apps I would definitely rate five stars. It's helped save time having multiple uses for one app but I need the widget compatibility",3,1,4.3.4,2017-02-20 12:40:10,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,The app no longer notifies me of my tasks!!! Please fix,3,1,4.3.4,2017-02-06 18:40:06,,,newest,com.appxy.planner +L S,https://lh3.googleusercontent.com/-2eWyjSxPNhY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNTwFaUYYcWbaQd5Lr_DzbxrBT26Q/photo.jpg,It doesn't work well for repeated scheduling of regular tasks. I have tried selecting every week or every 7 days and repeat either does not work at all or shows up only for the same day monthly not weekly.,3,10,4.3.4,2017-01-28 15:32:47,,,newest,com.appxy.planner +Lyda Wells,https://lh3.googleusercontent.com/a-/AOh14Gi8BEtzDXbdzsOLBM5JX-OCAgI4XBQCU0Qh68haj_c,I love it so far but is it usable over multiple devices? I am currently using it on my tablet and downloaded the app to my phone but when I try to sign in it says it can't find my email address.,3,1,4.3.4,2017-01-25 03:30:26,,,newest,com.appxy.planner +Daniel Philip,https://lh3.googleusercontent.com/a-/AOh14GhScD4Qz8JgahonRLloaiCi09i_eNul6bVi2RXaeQ,Try,3,4,4.3.4,2017-01-23 06:38:20,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Its ok,3,0,,2017-01-10 23:50:24,,,newest,com.appxy.planner +who knows,https://lh3.googleusercontent.com/a-/AOh14GhgC3HztB6E0NwQ0m1NLhgUWzNTQBLkNkNbFzTZVVo,Not being able to view my list of things to do or to get.,3,2,4.3.3,2016-12-21 00:30:25,,,newest,com.appxy.planner +Jairol Perez,https://lh3.googleusercontent.com/a-/AOh14GjDsD2VEsZYzo5GoMPk3SilyLK3OoY3rlgu3qz-,"Setting up late events (past 11pm) is literally impossible. Start and end times/days will shift randomly when I make a change to the other. Whenever I do manage to get both right, I get a ""Same time"" error even though clearly the start and end times are different.",3,0,3.2.3,2016-12-20 01:29:31,,,newest,com.appxy.planner +J J,https://lh3.googleusercontent.com/a-/AOh14Gj0jbnqF5l773lcE3qa1aKa1Hhh_r3Jtc8e3hci,"I had several recurring events to keep track of my week, but after the update, they disappeared.",3,7,4.3.3,2016-12-04 17:39:38,,,newest,com.appxy.planner +Johanna St. Pierre,https://lh3.googleusercontent.com/a-/AOh14GhwaigA7GaPPHA6ZURCoWXNKnLCLPMsd6ZbivJElg,"Good design, but it's not exactly free if you have to pay for basic features, like reoccurring events.",3,0,,2016-11-28 19:56:26,,,newest,com.appxy.planner +griffin harrel,https://lh3.googleusercontent.com/-VDaJnCVZttI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNwofYRVzluFMtfOejBzfFhrj4Lsw/photo.jpg,"I purchased the paid version and I'm sort of disappointed. Every time I enter a task it adds the first letter of the first word over again so I have to change it each time (i.e. it will autocorrect to EEvery instead of Every). It is also kind of laggy. It could be a great app, but not as is.",3,75,4.3.3,2016-11-22 19:05:10,,,newest,com.appxy.planner +Hana,https://lh3.googleusercontent.com/a-/AOh14GjZdMOTxLZMPicK4sKsTik3z7QrTu-pmeJF6EztA70,"I suggest you add a ""deadline"" button instead of just tasks and events.. Personally that's the only reason I dont use it.. Is the classifications aren't enough..",3,0,,2016-11-20 17:27:47,,,newest,com.appxy.planner +Grandpa Chet,https://lh3.googleusercontent.com/a-/AOh14GiP3rj5koB_ahvyYBTA68-KijmFKzwB6AJ_WViDuA,"Needed: Sync tasks. Color code events. And for goodness' sake, speed up! This is extremely slow.",3,0,3.1.1,2016-11-16 20:30:13,,,newest,com.appxy.planner +Kate,https://lh3.googleusercontent.com/a-/AOh14GiUiZ5Qa5XTKaC8bv9a33-XnAxMKM3PkkHyKFy-Bkw,"it's really unresponsive. I have to tap 3 times so something opens or to check a box or anything.. too bad, I really liked it but this is too annoying.",3,3,4.3.2,2016-11-05 19:20:47,,,newest,com.appxy.planner +Renae Jones,https://lh3.googleusercontent.com/a-/AOh14GgKf8tQirEHZwLYIZH4EmfdduN6K7U8oZSCy86lCw,The app is making me sign in to an account but won't let me sign in. Frustrated!,3,3,4.3.2,2016-10-31 07:06:56,,,newest,com.appxy.planner +Eric,https://lh3.googleusercontent.com/-STcVfx0o8ZQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPz_emlR_mYBLYPIIsPn8T8QDLV5g/photo.jpg,the reviews are sending a clear message to you. Act on them. I think the last update has messed everyone up. If you don't act;you're sending a message back:ie. you meant to mess everyone up by locking them out,3,2,,2016-10-30 09:31:30,,,newest,com.appxy.planner +CA Goldlash,https://lh3.googleusercontent.com/a-/AOh14Gi75FeMrFIzBOVEj6i80XvEArzA6iqVh_2vk_CY_qI,This planner app is pretty clear and simple. I have the paid version and it works OK except today they had a glitch and I lost everything even when I reinstalled. It was just so screwed up! So if you don't mind losing all of your work when they update... I guess it's survivable.,3,6,4.3.2,2016-10-28 20:17:21,,,newest,com.appxy.planner +Leo Moneymaker,https://lh3.googleusercontent.com/a-/AOh14Gj2kEpk-T-G8K8XWxAkFudryWe1CclFSZYITinIfak,Add ability to have a dark theme.,3,4,4.3.1,2016-10-26 06:12:43,,,newest,com.appxy.planner +Tamara Luckinbill,https://lh3.googleusercontent.com/a-/AOh14GjWvKWs5AMPBgsVLmLP8joBsuEMf1jLTPJeTL-O1g,Troublesome widget organization. When I tap a date it opens app to date previously open not new date needed. Very time consuming and creates booking mistakes when not careful.,3,9,4.3.1,2016-10-24 17:12:39,,,newest,com.appxy.planner +Gabriela Moekoe,https://lh3.googleusercontent.com/a-/AOh14GhQt-txd5nVKbdZaBgeAVger_eMpOEudKmJ2vYvnRs,"Love it, but it has some major flaws: (1) Can't personalize THEME. (2) Can't configurate WIDGETS' toolbars & what details are displayed. (3) The widget's size is too wide—max 4x?. Would love it if it were more flexible. (4) You cannot sort the notes on one day to be listed in ALPHABETICAL order on the Day widget; it will always be sorted by time. (5) The app malfunctions when you place two widgets on the home screen. (6) App stops working a lot for seemingly no reason.",3,1,4.3.0,2016-10-23 06:56:55,,,newest,com.appxy.planner +Joseph Deji,https://lh3.googleusercontent.com/a-/AOh14Gg8GexfD-NQMsNBVetIGPvEyNOQLyEV-WEydPhxxw,Enjoyed it's use while it lasted. Uninstalled now.,3,0,4.1.1,2016-10-18 22:41:49,,,newest,com.appxy.planner +No Sleep Transport,https://lh3.googleusercontent.com/-ycmu1rC31O8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNXn4XOYDtXIU5CD48WFKl075iUhQ/photo.jpg,Can't make calls from the app by clicking on the phone number like Google calendar,3,6,4.3.0,2016-10-16 23:15:23,,,newest,com.appxy.planner +Lily Bernabel,https://lh3.googleusercontent.com/a-/AOh14Gg_RsU7kgGo1_dddEI1vLxJUN6c2ILZQ4LKE_2ezA,"Pro Version and it still won't handle the recurring tasks smoothly. Please fix it, I've restarted my phone several times and still nothing.",3,2,4.2.2,2016-10-10 22:34:08,,,newest,com.appxy.planner +Justin Norton,https://lh3.googleusercontent.com/a-/AOh14Gi7DskYceStXuz7CaUPRaFQBIr12K6fpokGwR4K,"The app would be nice and work well if it wasnt for this 1 issue but its a pretty big issue as far as daily planners go...It only shows half of a clock or calender in the create event/task subscreen meaning i can not select any times that would fall on the right hand side of the clock or I can not select a ""due by"" date for tasks because the right side of the calender is missing...I would already own the full version if it wasnt for this problem",3,1,4.2.2,2016-10-10 04:36:30,,,newest,com.appxy.planner +Sougata Das,https://lh3.googleusercontent.com/a-/AOh14Ggkxl0MnEgtPNR0XJtnUNIebJykF_f7V83H-tqR0Q,Crashing a lot after update,3,1,4.2.2,2016-10-06 16:37:38,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Уууу,3,3,4.2.2,2016-09-28 14:11:56,,,newest,com.appxy.planner +Ashley Sutton,https://lh3.googleusercontent.com/a-/AOh14GiTWXVkk95BEp2vR-ADBB9Q9yd4JGgaDxP73bXx,"I just got the app, but I can barely use it because every time I click on something it redirects me to a page that asks me to upgrade for $4.99/yr. If it would just let me use the free version I might actually like it.",3,15,4.2.2,2016-09-27 02:27:02,,,newest,com.appxy.planner +Kelly Carter,https://lh3.googleusercontent.com/a-/AOh14GjfNsjVMqVNY22makJIQBlVpfsdUrfutkCJfTJqCA,"This application was exactly what I needed when I first started to use it. Now there are a handful or problems- events are appearing twice, events get deleted or not appearing at all after being saved, deleting one event and the reoccurring events get deleted, and not appearing on the selected reoccurring days. Very annoying.",3,40,4.2.2,2016-09-22 18:40:17,,,newest,com.appxy.planner +Stevian Setiawan,https://lh3.googleusercontent.com/-blw8k6GH_sA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMvI4-nOkpz8SqFvzBg3J71x0do_A/photo.jpg,Fix the widget bugs please,3,1,4.2.2,2016-09-16 17:24:06,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Any chance of getting a widget for the calendar?????,3,3,4.2.2,2016-09-14 13:23:07,,,newest,com.appxy.planner +Kelly Taylor,https://lh3.googleusercontent.com/a-/AOh14GiTG4NIv9biwNpV9T7luhEjrxqZo5untjsVSj7lZ0Y,It's alright.,3,2,4.2.2,2016-09-12 04:16:05,,,newest,com.appxy.planner +Sheyomi Awuley,https://lh3.googleusercontent.com/-C94kvYedL5E/AAAAAAAAAAI/AAAAAAAAB4M/AAKWJJO2x0PmO6UrlaBC3az1rmgCy9fgNQ/photo.jpg,"Not a bad app pretty good, got a few things organized with it.",3,5,4.2.2,2016-09-11 02:03:12,,,newest,com.appxy.planner +Michaela Lubbers,https://lh3.googleusercontent.com/a-/AOh14GgLALqA55t7FI_jx0XTaMpe0GAElMN7_bOJUvFsyg,"There's nothing wrong with this app, although it could be slightly better, but.... It's just like Google Calendar. In fact, it's integrated with Google Calendar, and all your events show up in GC. Even the selections of colors in association to events and how you input information is the same. If you're an android user, go ahead and just use the built in Google calendar, if not your Samsung/HTC/whatever one. I have near stock android, so I get Google. Same difference, really.",3,0,,2016-08-30 18:02:31,,,newest,com.appxy.planner +Ernesto Guadarrama,https://lh3.googleusercontent.com/a-/AOh14Gg61_lPj6MV2cRvrbN07fjEC8b5bf-T3ZKASqOKdg,Overall good. A search feature would be great for notes. Thanks,3,8,4.2.0,2016-08-28 22:50:26,,,newest,com.appxy.planner +Anne Lee,https://lh3.googleusercontent.com/-5ZS1YMXDWY0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN7kHktZwIVfEzbDMJI7vBQh8W1Iw/photo.jpg,"I used to love the app... Until I needed to synchronise to see my tasks to another device, then I found out syncing simply won't work and uninstalling/reinstalling didn't solve the issue.",3,0,,2016-08-22 06:40:58,,,newest,com.appxy.planner +John Bejo,https://lh3.googleusercontent.com/a-/AOh14Gg6zfhtahgAUzzFxRP3Hs5tlSjvC6yYQwl71IOJSQk,"I bought this because it has a really design and features, but I to uninstall it because it's slow loading. It's lagging.",3,0,,2016-08-17 22:47:49,,,newest,com.appxy.planner +Meriam Jaziri,https://lh3.googleusercontent.com/a-/AOh14Gi_UNr7adWASa773Q6LkdjGCHb4vdbS4PHc9fooPg,Have to go premium to have more features.,3,1,4.1.1,2016-08-10 20:38:27,,,newest,com.appxy.planner +Tracy Foster,https://lh3.googleusercontent.com/a-/AOh14GiSuLlZHfipHtvBw14sDiq2_H851M07EF4GrlG3w6k,"Trying to sync my calendar with both my phone and tablet, and any notes and/or tasks are not syncing between my devices. Having to duplicate these items is very frustrating.",3,2,4.1.1,2016-07-18 20:15:33,,,newest,com.appxy.planner +Miranda Gorman,https://lh3.googleusercontent.com/-U8aCJ-netkQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOe-oN6wY0jNrIGuP_CTRcbCKVKOQ/photo.jpg,It was ok,3,0,,2016-07-18 13:42:22,,,newest,com.appxy.planner +Cheol-Hoon Park,https://lh3.googleusercontent.com/-375IqfKPC_M/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO0imJftKuJjWRA-Xc548DfHe5qBg/photo.jpg,I love it. But too expensive.,3,0,4.0.1,2016-07-10 06:47:48,,,newest,com.appxy.planner +Mary Jobeth Salan,https://lh3.googleusercontent.com/-0w71krEbGyc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP2mbYiY2fWiW2SHJPmfiCCclSSjQ/photo.jpg,The only thing not working is the reminder.. I'm using Huawei Mate8.. Can somebody help me how?,3,0,4.0.1,2016-07-08 01:04:07,,,newest,com.appxy.planner +Avreghly Barra,https://lh3.googleusercontent.com/a-/AOh14GgNYf0HQ63r4xGYqW2lpwZNywviTmZ0W-CtYCyRww,"Why did you show the checkboxes in widget when you can't even check/uncheck it via the widget? Its just so frustrating to go to the app just to check a list. Other than that, this app is good.",3,0,4.0.1,2016-06-29 23:06:41,,,newest,com.appxy.planner +Huda Denizci,https://lh3.googleusercontent.com/-fVYEKbyFd6g/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNcLtgaeIQTWJ0hCmVltaDNn09jqg/photo.jpg,"Needs to give you the option of adding pictures when note taking. If it had this option would be excellent, otherwise not a bad app.",3,7,4.0.1,2016-06-15 05:23:03,,,newest,com.appxy.planner +Tomer Sadot,https://lh3.googleusercontent.com/a-/AOh14GinoHOD8MgaBi4wrQXi127USaeDfcqy-eFCEr8f,I use it mainly for its widgets. ONE THING THOUGH: please fix the widgets so that the they show the current date and don't stay put on the previous day unless manually changed.,3,22,4.0.1,2016-06-07 06:33:54,,,newest,com.appxy.planner +Michelle Brashears,https://lh3.googleusercontent.com/a-/AOh14GibmD0ahvRrz4gm7OnZpfpVg8b3n2j9FcL-PQp3tw,Just getting used to it but so far not bad,3,0,3.2.3,2016-05-23 04:49:29,,,newest,com.appxy.planner +Lisa Kelly,https://lh3.googleusercontent.com/-n9-cRdX_9t8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPRS8nuTqJh888fluasAiF6OhKlDA/photo.jpg,"A bit disappointed, bought a new phone and re-download ed the app, would not bring my calander in from my old phone and asking me to repay for the full version.",3,11,4.0.1,2016-05-22 22:33:39,,,newest,com.appxy.planner +Ashley Emery,https://lh3.googleusercontent.com/a-/AOh14Gj8QpSe75VzOaBfI6Dn9v8oSOpaEd7w1tm4rUTh,"But I miss the hourly blocks, made it easy to Sceduale my work hours.",3,0,4.0.1,2016-05-20 16:21:53,,,newest,com.appxy.planner +Catherine Kelly,https://lh3.googleusercontent.com/-Xe-gW1qmVJc/AAAAAAAAAAI/AAAAAAAAACo/AAKWJJPo__rZ8S6F-TVMg6Rht2g3_sz4HQ/photo.jpg,It doesnt update between your calanders. I need a planner that stays up to date with my calendar changes. This is not it. Waste of money.,3,0,4.0.1,2016-05-17 05:43:10,,,newest,com.appxy.planner +Trent Cox,https://lh3.googleusercontent.com/-NbM0b_mJB9U/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNkAUx8l5fEDxXXk5sbDuyYIPVd0w/photo.jpg,"It is an OK app as far as personal entries are concerned and the connected functions of name, time and place. Can not count on it to keep you informed about set Calender Events though as they are set default in 2014. Mothers Day was on the 8th; 2nd Sunday in May this year; not Wednesday the 11th. They can thank my wife for keeping me informed. It is a scheduling app and if the default events are wrong as well as uneditable how confusing will your scheduling be? Keep an accurate calendar handy.",3,1,4.0.1,2016-05-12 11:36:06,,,newest,com.appxy.planner +Satya Ananda,https://lh3.googleusercontent.com/a-/AOh14GiyRm3ijRzsx_M0RkelfsPYzlCHYjO3WkH44nX4Pec,Why would I pay money to have recurring events in a planner. I think I'll stick with my default calander app,3,2,4.0.1,2016-05-11 21:02:40,,,newest,com.appxy.planner +Jolie Chua,https://lh3.googleusercontent.com/a-/AOh14GhBVifu5taj4UjnoZr9pyxxXjSKXlRGo7Fkuc13,"Love this planner. But whenever I use the repeat function, I cant just edit 1 event. I have to edit the rest of the events that are linked together too. Would be great if I'm able to edit jus 1 event even when im using the repeat function. Would also be great if there's a copy and paste of events function! Would make things really easier! 😊",3,1,4.0.1,2016-05-04 10:21:00,,,newest,com.appxy.planner +Venky .b,https://lh3.googleusercontent.com/a-/AOh14GidRRCoMbn677STtd-X_vkWbUtQ6AjTq4R9yeRg_g,nice,3,0,,2016-04-24 14:41:25,,,newest,com.appxy.planner +Kelly Hayes,https://lh3.googleusercontent.com/-V3H_Hw81ITM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNyfNy7tlkZq1OXlCxwG3fIauuZ2Q/photo.jpg,Good integration with other calanders but not easy to read at a glance,3,0,,2016-04-22 22:54:38,,,newest,com.appxy.planner +Joy Bird,https://lh3.googleusercontent.com/a-/AOh14GjCNYcOzgUA3eoSKiOuYBZ9iSGPv4RwQdBTVcC120g,don't have option for Windows surface pro,3,0,3.2.3,2016-04-22 17:48:21,,,newest,com.appxy.planner +STACEY BUTLER,https://lh3.googleusercontent.com/-xAt3R9I7mt0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPY47l6jv2mZkdcQnwEwIPf0PkfiA/photo.jpg,"Bills ,",3,0,4.0,2016-04-14 23:11:30,,,newest,com.appxy.planner +T Barnett,https://lh3.googleusercontent.com/a-/AOh14Gg4LkV-2HqMpxvBP1QeGdJ6zA6Hi9MNP-9Hp3X9Yw,Font is too small. You have to open it up each time you want to glance at your appointments.,3,0,3.2.3,2016-04-08 19:46:02,,,newest,com.appxy.planner +Dave Mackinder,https://lh3.googleusercontent.com/-zK1iqcCcFn0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOn152okO6Xphwtfy-LUs_KUCtbPw/photo.jpg,Hodtf coder jbikhkhkm kvukb,3,0,3.2.3,2016-04-07 10:19:35,,,newest,com.appxy.planner +crystal scale,https://lh3.googleusercontent.com/-U_TP-w3VIpg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNDDkNpzoz4xys8NQGB1Gd_zsFJuQ/photo.jpg,"It's OK, but it needs more features",3,0,3.2.3,2016-04-05 23:30:48,,,newest,com.appxy.planner +Donna Morgan,https://lh3.googleusercontent.com/a-/AOh14GiJzxgCp2qciWd8AFILphl03Yn5xkuC6qIrk_56IA,Nice app.,3,0,3.2.3,2016-03-30 16:41:07,,,newest,com.appxy.planner +Ganon Dorf,https://lh3.googleusercontent.com/a-/AOh14GgjzqntPjfF1liaRWOxI32c63wNbs9NLhmGBxdC,Sometimes quits as it starts,3,0,3.2.3,2016-03-28 20:24:53,,,newest,com.appxy.planner +sarah aspden,https://lh3.googleusercontent.com/a-/AOh14GiEIFylPG2__rPmJRbVpUWSl-v0o0VLt-68_MbC-w,Needs more features but I just started using it so I'll let u know specifics soon,3,1,3.2.3,2016-03-28 17:03:53,,,newest,com.appxy.planner +Martin King,https://lh3.googleusercontent.com/a-/AOh14GhFX1s4k4arUUFPRmOC0Obo5RWaC8d9xfaNQR3BRA,"Could be better on Samsung S6, not showing reminders on screen, have to open the same as a diary....",3,2,3.2.3,2016-03-23 10:30:15,,,newest,com.appxy.planner +Kabelo Mofokeng,https://lh3.googleusercontent.com/-z-dRc9SXKQA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNBVssTroBZlpmnTZ4yS6iRvoY7og/photo.jpg,Not bad,3,0,3.2.2,2016-03-16 15:51:45,,,newest,com.appxy.planner +Billy Ace,https://lh3.googleusercontent.com/-IV8qvbedvf4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNPP9oIyZOiLyPOtc7EJZNxfEFC1w/photo.jpg,I bought the allegedly better version it worked for about a month. I had all my scheduled stuff about 6 months and all of a sudden the disappeared which sucks.,3,0,,2016-03-15 20:08:54,,,newest,com.appxy.planner +Rafi Chaudhury,https://lh3.googleusercontent.com/-D8gdamyTwiQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNDNRlyrbbxWs-_c3jBR4EZi9TM3Q/photo.jpg,"I prefer to use apps in portrait mode on my 7 inch phone/tablet (Huawei Mediapad X2, 1920*1200). When the keyboard pops up while adding a task, I can barely see what I'm typing because the screen height is greatly reduced in landscape.",3,1,3.2.3,2016-03-15 16:13:02,,,newest,com.appxy.planner +Sonia Moskovitz-Legrain,https://lh3.googleusercontent.com/-4_iW57PEp-E/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO32Wmg2dTnspG-qxxIpBUxUUXglw/photo.jpg,I really liked it at first but it keeps turning on the alarm for my events even though I pressed no alarm I don't know how many times :(,3,0,3.2.3,2016-03-14 23:54:14,,,newest,com.appxy.planner +PsyTie,https://lh3.googleusercontent.com/a-/AOh14Gjhsxs82fX7_4VsBLzscqGD6vgwqslk1xErPkg-iA,"Wouldn't it be great if this app had also alerts instead of just notifications? It's easy to miss a notofication. Also, why can't we edit a specific day for a repeated event, but we have to edit also all future events or nothing?",3,2,3.2.3,2016-03-14 12:44:13,,,newest,com.appxy.planner +Svetlana,https://lh3.googleusercontent.com/a-/AOh14GgNhVYr6XZnEIGCuuhKPRNTLvQrdJZynmMGf1XJHA,"Its pretty neat, but the feedback on the paid app is pretty poor...",3,2,3.2.3,2016-03-12 04:11:32,,,newest,com.appxy.planner +Uwe Meissenheimer,https://lh3.googleusercontent.com/a-/AOh14Gih6bdjG_wpU3445l8d2s1oO1R1OwgMSe3V4qbxNQ,My calender does not sync with this app? How can I get it to work. It's great otherwise. How do I sync all my calenders with the he app?,3,19,3.2.3,2016-03-02 06:40:01,,,newest,com.appxy.planner +Jessica DeVera,https://lh3.googleusercontent.com/a-/AOh14Ggc0x_mWVXE5PxyLyyhBMba10ShTVFl66c_xpBNrtA,Will update down the road,3,0,3.2.3,2016-03-01 13:58:20,,,newest,com.appxy.planner +Frances Antonacci,https://lh3.googleusercontent.com/a-/AOh14GgHW3o8qVkwMdnpKcN2vNfJVxCT-PhY0X2Wd2j_6Q,"I cannot givey opinion, because I cant install the app.",3,0,,2016-02-29 16:50:24,,,newest,com.appxy.planner +L Warville,https://lh3.googleusercontent.com/a-/AOh14Gjri8zGTZuI7MJoHVfVJ8kcFGmdCGOePG05yLd7Iw,I input my appointments and it does not ring loud enough or pop up to let me know that i have an appt. I have the paid version. Am i doing something wrong. IF my appt is at 11:00 do i have to input at 12:00 to get it to ring before 11: screwy lewy. I will change my comments and rating once i get this resolved.,3,0,,2016-02-25 17:37:33,,,newest,com.appxy.planner +Fatima A,https://lh3.googleusercontent.com/a-/AOh14GjV2DbhCQyaD3a348XvbWkAXpzs_g4juiqWpwYVTg,"if you can't add subtasks? everything else in the app is quite impressive except this, i added a project and it disappeared from my projects tab, and i couldn't add any subtasks to it.. so it is indistinguishable from a regular task.",3,108,3.2.3,2016-02-20 09:26:39,,,newest,com.appxy.planner +Ania Andrzejewska,https://lh3.googleusercontent.com/-qgJLK7TukY0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMT9EUW2S_XRXoAb2_0v6ECSOrBYw/photo.jpg,Because it takes aiges to download😂😂😂,3,0,,2016-02-19 19:49:37,,,newest,com.appxy.planner +Daniela Reyes,https://lh3.googleusercontent.com/a-/AOh14GjHcx3_oOK8PXZq6Kfj3KU_P-DbGkHtuvx5ddKc1w,Good,3,0,3.2.2,2016-02-19 04:45:35,,,newest,com.appxy.planner +Amir jan,https://lh3.googleusercontent.com/a-/AOh14GjqQYvIvze0sQhdpSKDPIQedLh7MAaocuBSSK0y,I newly use hope it Will be good,3,0,,2016-02-17 20:15:11,,,newest,com.appxy.planner +Peggytoh Toh,https://lh3.googleusercontent.com/-i8mzL7DIX5U/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNi6TNkkuXH2orIFK-qWkpdQhAcXw/photo.jpg,hvn try,3,0,3.2.2,2016-02-15 01:52:34,,,newest,com.appxy.planner +Drew S,https://lh3.googleusercontent.com/a-/AOh14GiiwyEMTNpcxX6YWSwz-0jxUsqnvIcFKp6six-4-w,It's a great app don't get me wrong but it's a kind of over complicate things with certain widgets and etc.,3,0,,2016-02-11 03:32:46,,,newest,com.appxy.planner +Misti Wiedmann,https://lh3.googleusercontent.com/-xGf4PFWF3zk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP2EQuGu5BAF66N4yNsIW0FHT_iSQ/photo.jpg,Widget stopped showing the correct day which makes it pretty much useless which sucks because it was the easiest way to use the app for me..PLEASE FIX!!!!!!!!!!!!!!!,3,1,3.2.2,2016-02-10 06:06:25,,,newest,com.appxy.planner +Josie Breasbois,https://lh3.googleusercontent.com/a-/AOh14GiAtJ4rAhAU-yghFDjDCenOurd-Gv62jQ0kallYzQ,how do you email your tasks on it how do you sync it with the Google Calendar,3,0,3.2.2,2016-02-09 22:24:18,,,newest,com.appxy.planner +kalevii tap,https://lh3.googleusercontent.com/a-/AOh14Gh6CAWyRdRx8ueDbjnOndIR_q4E3CsVsBhSOVn_,"When I goto monthly view press the date the event is on, the previous date shows up. Sometimes I am able to scroll forward to the date I am looking for,but mostly not. ( for example I scroll April 24th and April 23rd shows up). I like the design of the app,would like to see yearly view. I also can't see Events I posted unless I rotate the phone. But it works for tasks and notes tabs fine?",3,3,3.2.2,2016-02-08 22:02:19,,,newest,com.appxy.planner +Leah Liddiard,https://lh3.googleusercontent.com/-rof1K2CHfWU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOXDobAHk0Uoo6lJAEUrdBtBje-Jg/photo.jpg,"ive downloaded all the calendar apps out there, and i like this one the most...HOWEVER, it needs to show the text on the widget not just a dot... such a bummer because i thought i found the one.. please fix this... youre so close to being the goto app for calenders for the switch off of the stock android calender... eagerly awaiting the update... 5 stars and a great review once you do it!",3,2,3.2.2,2016-02-04 17:48:31,,,newest,com.appxy.planner +Anna Lewis,https://lh3.googleusercontent.com/a-/AOh14GjNCIYRNNbqmoLQ-o--paUoOUA9mOpWuGGA3x4ujk0,"It's not syncing right with my gmail. My recurring events are all messed up but, are right on my gmail..... Deciding whether to keep it or not.",3,0,3.2.2,2016-02-04 05:26:16,,,newest,com.appxy.planner +Samirkant Shah,https://lh3.googleusercontent.com/a-/AOh14GhcxPY7SkzHS4nZbHe-bITK4ULu9mn1A78BxKSbPQ,Yes at first attempt it look user friendly. I am pleased! ! Good App,3,0,3.2.2,2016-02-03 12:41:30,,,newest,com.appxy.planner +Susan Kuehnl,https://lh3.googleusercontent.com/-eMCCZQ87BzM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNKqi8ZTwvAYBkqKh1x3Qn9Dze7iA/photo.jpg,"When I'm entering birthdays, I have to enter on the day after, or it shows up the day before!! I have one birthday permanently hooked to a holiday, and I can't edit it. Fix this, PLEASE.",3,0,3.2.2,2016-02-02 15:39:03,,,newest,com.appxy.planner +Not Yours,https://lh3.googleusercontent.com/a-/AOh14GiymE4cfJ_PqLJv0sws2iZIMoUISGUEu1fM_KFK,I have appointments on the internal calendar that don't show on here. This includes new ones and ones I made months ago. No point in using this if I have to check another app to find all of my appointments.,3,1,3.2.2,2016-02-01 19:30:00,,,newest,com.appxy.planner +Haresh S. Dhanpath,https://lh3.googleusercontent.com/-HEynrEWGsIA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMAfQFPUx4GAF2XqdEbQmyadNA27g/photo.jpg,Notes and tasks are appearing twice,3,0,3.2.2,2016-01-31 23:00:52,,,newest,com.appxy.planner +Carrie J,https://lh3.googleusercontent.com/a-/AOh14GjOMWfWf0SFYNOl8tQWqMKRHJUyL0OS0mXRHWE0Sw,"Cannot see events on calender, only dots. Need prettier colors/themes for women.",3,2,3.2.2,2016-01-31 17:25:29,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"It's useful, but the recurring task feature is a pain in the free version.",3,1,3.2.2,2016-01-30 13:03:12,,,newest,com.appxy.planner +シャーレットレビー,https://lh3.googleusercontent.com/a-/AOh14GhtYgBTsmdZzu44P3ETsJVD298TVxtzbmk2G8HlxA,At times it doesn't even buzz or come up on my phone that I had a task to complete. I'm not sure if this is just my phone though.,3,2,3.2.2,2016-01-28 00:46:47,,,newest,com.appxy.planner +Solehan Imran,https://lh3.googleusercontent.com/a-/AOh14GhG5B2rWvn5KqDh4aE-GS62PVllr1zy1VtkNN4Cdg,Everytime I wanted to swap between month /day it lags so much.. If only it was smooth then I am very excited with the app.. I am using lenovo a7-3000,3,1,3.2.2,2016-01-27 15:48:08,,,newest,com.appxy.planner +Robert Rossana,https://lh3.googleusercontent.com/a-/AOh14GgmCZQZleWYtiz2bqTuYEIYISm43oKomDcqX5CzyA,I am running this app on a Droid Turbo with stock Lollipop installed. The app has a very nice layout but unfortunately I find it to be very buggy. It is impossible to create an event that includes Monday and the app can't import recurring events from Google calendar. I have reported these to the developers and hope the app is cleaned up soon.,3,0,3.2.2,2016-01-22 00:22:47,,,newest,com.appxy.planner +Kirsty Convery,https://lh3.googleusercontent.com/a-/AOh14GiJau-NsZzenYC_CQn0KilaSghFEcwMXJYXCwiI,"Good layout, unfortunately doesn't sync with office 365.",3,0,,2016-01-20 23:08:24,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Quite good, but the week widget is, imho, absolutely wrong - the order of the weekdays should be first vertical then horisontal, i.e. Tuesday UNDER Monday, NOT to the right!",3,124,3.2.2,2016-01-20 06:00:39,,,newest,com.appxy.planner +Kartik Jain,https://lh3.googleusercontent.com/a-/AOh14GgZvibAZ3-53JQ1ZSydzRbMOt0uGIyZexuF7FpYs04,App is good but no task sync between devices is a big let down,3,0,,2016-01-19 16:14:42,,,newest,com.appxy.planner +Ashley Flores,https://lh3.googleusercontent.com/a-/AOh14GgBWQE20wnIQaevscDxJT06wy_e7sfsQ6m0OjMzLw,I started playing with it and it freezes often and I don't like how my notes have to be on that day and not just by themselves.,3,0,,2016-01-18 17:19:04,,,newest,com.appxy.planner +Rita Jain,https://lh3.googleusercontent.com/-NsVOUbvL7hM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOVLGIaUmCSK2bL8996TrB8jbDScQ/photo.jpg,Its good,3,0,,2016-01-17 03:00:52,,,newest,com.appxy.planner +Jessica Hipolito,https://lh3.googleusercontent.com/-1YQcBnV2K2Y/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOLpf-GaMMRvDRGMjn_lF-gi-YQjQ/photo.jpg,By how clean & sleek it is. Only efficient and pretty planner out there! But the task widget doesnt update at all :(((((,3,1,3.2.2,2016-01-15 04:29:42,,,newest,com.appxy.planner +Kimo Kuhns,https://lh3.googleusercontent.com/a-/AOh14GgtvnIDDD7K2SvhFrTmfqsD63qEKkqb4wdUde_w,"The only problem I have come across so far is, the day calendar does not change automatically. In order to get the current date on the day calendar is to go to the month calendar and select today's date. That said, the program and UI is better than the pre-installed calendar program.",3,1,3.2.2,2016-01-13 13:33:53,,,newest,com.appxy.planner +Camille Wyffels,https://lh3.googleusercontent.com/a-/AOh14GilEGZfqtDrSmc1uRqMHQ4f4LZZVSlRepnu3bUJ9A,"I like the layout and it looks promising but I have at least 20 Google subcalendars so I can color code things and keep them separate and it can, at best, display part of 1. No Google tasks show up at all. I could be doing something wrong but there are very few options. And, everytime I go to the app, it reverts to the wrong Google account on my tab.",3,0,3.2.1,2016-01-11 02:48:11,,,newest,com.appxy.planner +Jo Harris,https://lh3.googleusercontent.com/-kbRKgNpuiAc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPuv0fhEPvP3xS78PD_jVuQV_-MVA/photo.jpg,Planner isnt saving all day events. You can see an event is there in month view but when you open that day the event does not show.,3,0,3.2.1,2016-01-10 08:31:48,,,newest,com.appxy.planner +Besmir Germizi,https://lh3.googleusercontent.com/a-/AOh14Gg6rLeYct-aIOCddPcnkfnHqS-fLOFFzX6o-P9zGg,Nice,3,0,,2016-01-07 21:55:27,,,newest,com.appxy.planner +Ebony Sealey,https://lh3.googleusercontent.com/a-/AOh14GhtSiM_8IknJMlB2I3O1nGSGWYTqpAxDXk_gE44yg,I haven't been using this very long and it's not as user friendly as the Calender that came on my last phone. I wish instead of dots you can just see what you have entered for that day immediately without tapping on that day. Otherwise it is easy to use and functional.,3,0,3.2.1,2016-01-04 15:00:00,,,newest,com.appxy.planner +Vinny Lieb,https://lh3.googleusercontent.com/-CsJhvXN7I5M/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP4uhiHKc1PeacJ5chS6yutFPqfww/photo.jpg,"I wanted this for my tablet, and like the features, like tasks, a calendar etc, but I'm disappointed. It is locked on landscape position instead of allowing it to rotate to portrait position. If they fixed that one detail it would be a winner for me",3,4,3.2.1,2016-01-03 21:16:04,,,newest,com.appxy.planner +ARYA K RAMESH,https://lh3.googleusercontent.com/a-/AOh14Gg98bFB898GlUcOJK9JmgZJTAORPuNmzWjEk1u1lg,Not bad I liked it,3,0,,2015-12-30 14:12:34,,,newest,com.appxy.planner +Dany Lee,https://lh3.googleusercontent.com/a-/AOh14GgHZCex3eZ5dL_f_IeyfNIBbUi6CqOY1GDWNP_vhYM,Still lags on my Kitkat version,3,0,3.2,2015-12-26 22:21:15,,,newest,com.appxy.planner +Caroline Busuttil,https://lh3.googleusercontent.com/-8ibWwW133og/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOVjnjz1Kd1X24M_wc-UPSeL4eoBA/photo.jpg,Only events sync....would have to uninstall,3,0,3.2,2015-12-24 11:47:32,,,newest,com.appxy.planner +Beth Meneses,https://lh3.googleusercontent.com/a-/AOh14GitxOaBLFgeQouZ4PmiH_KzKHFLjOILnLQTKlH3lw,Kinda complicated. Still not used to it. I love the widgets though.,3,0,3.1.1,2015-12-18 06:56:41,,,newest,com.appxy.planner +Rahul,https://lh3.googleusercontent.com/-w7Vt_xRXlao/AAAAAAAAAAI/AAAAAAAAUWU/AAKWJJMAIxMyMg7Yb7dh6ZvXyQ-YYXaJnw/photo.jpg,Carry forward of task is amazing strength of the app. Liked it !!,3,0,3.1.1,2015-12-16 03:05:33,,,newest,com.appxy.planner +Genevieve Johnson,https://lh3.googleusercontent.com/a-/AOh14GinZ7y_k4dPw8OUV58i3l7LxLC_ndO09rBLbayuwA,"I wish it would sync, so I could use it on all devices",3,0,3.1.1,2015-12-14 04:00:57,,,newest,com.appxy.planner +Arnold Maravilla,https://lh3.googleusercontent.com/-D4ffMX-QRZs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP9ix-cjwPjhYNEGA3ZwLAZOxhDUg/photo.jpg,"app has kept organization relatively simple the past several weeks.. i have no prob giving this 5☆, except having issue on my tablet viewing monthly calendar (off-center).. i find myself going back & forth btwn tablet & phone.. if this is a settings issue that can be resolved, pls advise.. overall, i think the app could help many out there..",3,1,3.1.1,2015-12-13 21:28:32,,,newest,com.appxy.planner +Nathan Mc Laughlin,https://lh3.googleusercontent.com/-36Xuf_HjbJ4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMgUFcYkXIFH04Z_sMPapulm6rsVw/photo.jpg,Great app for the most part. Would be nice if each project a person could list goals till completion as well as being able to have a separate tasks list. One for home versus one for work.,3,0,3.1.1,2015-12-06 20:02:00,,,newest,com.appxy.planner +Erin Twernbold,https://lh3.googleusercontent.com/-VWhf9-JLW7U/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO3KOFAi9i9VcTVhypInCLUmnCxow/photo.jpg,It is a fine app!,3,0,3.1.1,2015-12-05 17:52:11,,,newest,com.appxy.planner +Yasir Ali,https://lh3.googleusercontent.com/a-/AOh14Ggy190ww960oqU-Rg6AIS7SJxh_i5OavIobj43Lug,Good app,3,0,3.1.1,2015-12-05 07:10:04,,,newest,com.appxy.planner +Cyrus Smith,https://lh3.googleusercontent.com/a-/AOh14Ggy9DiYYQCa8s5r1a7Kl33-Ua0IXw2fP93UJLV8,"It takes me about 2-3 seconds to switch between Events and Tasks tabs. Can you make it faster somehow? P.S. App is great, just what I need - schedule and to-do list in one!",3,0,3.1.1,2015-12-02 00:00:59,,,newest,com.appxy.planner +Hamied Rza Sanie,https://lh3.googleusercontent.com/a-/AOh14GigehW2WhATB_4untPj26RtOxpxm5psAF6Eu3Y1Vw,Good,3,0,,2015-11-22 02:58:20,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I currently use wunderlist to organize all my tasks. It would be nice to have integration with their software because G tasks is so bare bones. Also, because of the limitations of the free software, I can't tell if the full version would integrate into my workflow because this app prohibits use of projects.",3,0,3.1.1,2015-11-18 18:45:26,,,newest,com.appxy.planner +Avant Garde,https://lh3.googleusercontent.com/-F9QtgLSuzO0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMJXb1Z5k4O8TaMRSvccT1XGyCKhQ/photo.jpg,Alarms are singular and not like an alarm clock...,3,0,3.1.1,2015-11-15 20:08:19,,,newest,com.appxy.planner +Jamie Torry,https://lh3.googleusercontent.com/a-/AOh14Gg3bCXFKCeKQhe7-UQhvotA-t9uixTTVdWX8CJHNg,It's OK for now havent really done much with the app yet,3,0,3.1.1,2015-10-29 02:34:37,,,newest,com.appxy.planner +Melique Alexander,https://lh3.googleusercontent.com/-EPuuwJXy9Kw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNKhnaSOFsn8ZBdJWBDzLpUOicpZg/photo.jpg,Booooooooooooooooooooooooooooooooo,3,0,,2015-10-25 19:59:31,,,newest,com.appxy.planner +Maria-Eleni Fortsaki,https://lh3.googleusercontent.com/a-/AOh14Gh0vBuaOyQU4P-4mGL-whcVsSIacn1FBLh9EYZUAw,For me it's hard to use it and time taker,3,0,3.1.1,2015-10-25 19:28:16,,,newest,com.appxy.planner +Fayne Ng,https://lh3.googleusercontent.com/-qi5Moy-no5k/AAAAAAAAAAI/AAAAAAAAAEA/AAKWJJPSyRRtBpwmbXmoDc6lEA_kgMrxLQ/photo.jpg,"I wanted to try out and see how it suits me, but when I was adjusting the start and end of the day, it appears that the end of the day is not beyond 2400. Ppl like me who sleep in the middle of the morning bcos of work tends to end work like 2 or 3am. Especially across different timezones. If that's fixed, I would be glad to pay for the app.",3,0,3.1.1,2015-10-19 04:33:26,,,newest,com.appxy.planner +troy olson,https://lh3.googleusercontent.com/a-/AOh14Gixj33WmExNiR8IHvsavlx9uCiTXN0EhhzhOEFlLaI,"need ui refresh though, widgets need to show text on a month view, theming... etc",3,0,3.1.1,2015-10-06 18:08:03,,,newest,com.appxy.planner +Govind Sewing,https://lh3.googleusercontent.com/-vO_RzGlQQts/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPO2DcnMF-2q-vppeNK_DEFZliCwg/photo.jpg,Govind,3,0,3.1.1,2015-10-01 05:03:20,,,newest,com.appxy.planner +Nick Allen,https://lh3.googleusercontent.com/a-/AOh14GiGhnXd_OYsXRx9poWQ3Xqkk0YH3LTPqBzAezCf,It does the job,3,0,3.1.1,2015-09-29 10:36:30,,,newest,com.appxy.planner +Dexter,https://lh3.googleusercontent.com/a-/AOh14Ghi3z4T5ytAC0oMnkf5Jj0sOpQHCUsI8WzH5kybRQ,Does not sync with google,3,0,3.1.1,2015-09-24 23:54:54,,,newest,com.appxy.planner +Rea Arbuthnot,https://lh3.googleusercontent.com/-HDR7mqb5qno/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPEDPwsZ4W3OMgd1O52n1DcA9SATg/photo.jpg,"Beautiful app... l LOVE the functionality and look...however, it won't sync with my Android phone. (l use it on my Samsung Galaxy 10.1 ) Unfortunately, this shortcoming really affects me, since l now have to enter everything twice: once on my tablet, then again on my phone.",3,18,3.1.1,2015-09-22 22:31:46,,,newest,com.appxy.planner +Myrleia Diaz,https://lh3.googleusercontent.com/a-/AOh14GgIjcvxpd7oEJydZbP8UlM-9beVXMoRiu6wHzXNSg,I love that the app interface is so easy to use. The reason I don't give it 5 stars is because you can't export notes. It would be ideal if that could be done.,4,5,4.7.2,2020-03-17 19:47:03,,,most_relevant,com.appxy.planner +Jennifer Lam Lee Chin,https://lh3.googleusercontent.com/-4zGvACFHt64/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMb8YQGNnFqVAlA9y0D60OeXd1law/photo.jpg,"I'm using 2 calenders and 1 To Do planner not including this. All has their pros and functions I want, yet they're different in style. This is one of the best. I just love using the week view seeing at one shot, time of events laid out in planner, including notes on that day with pics uploaded if needed. It sync with my AnyDo planner which has a calender. But I just love how I can use this a bit differently for scheduling. Best if only it has a daily mood tracker added in the notes function.",4,66,4.7,2019-12-31 13:57:44,,,most_relevant,com.appxy.planner +Yoel Oz,https://lh3.googleusercontent.com/-uVBvpcGewFY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP07g-SXz2crbM9EtB83xpc5mpofw/photo.jpg,"I had a problem with upgrading to Premium. They were quick with their response and fixed the problem right away. It's a good app for those familiar with the Franklin Covey system, and syncs well across devices.",4,29,4.7,2019-11-18 08:04:43,,,most_relevant,com.appxy.planner +elaine,https://lh3.googleusercontent.com/a-/AOh14Ggfpm7V1dj-RAZ37HzKEh0TJfuNNvmYVn8p9d14bA,Great app. I would rate it a 5 but there's an error where my completed tasks becomes unchecked constantly causing it to keep on becoming an unfinished task and it's annoying.,4,4,4.7,2019-11-18 12:33:55,,,most_relevant,com.appxy.planner +nili,https://lh3.googleusercontent.com/a-/AOh14Gjdto294CajS3mB_eUjgLpCJDtXEOLoWWxL6TLuUKs,Great app and the only flaw I see is that you can't yet export your data. Please make it so you can export data to something like pdf or something so I can save my entries forever,4,3,4.5.4,2019-03-02 17:52:28,,,most_relevant,com.appxy.planner +VeRonica Brunson,https://lh3.googleusercontent.com/-ovyB_WI3DL0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPYx6T6ImXnALVe_5dFtqdaxwyT1Q/photo.jpg,"I love this app! I have the pro version and the layout is very clean and organized. However, only 4 stars because it does not work on multiple devices.",4,0,4.5.4,2018-12-21 03:55:05,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I do like the straight forwardness of this system it does what it says on the tin, needs to keep developing but in the theme it's in if it gets to clever like some systems it will loss it's position",4,9,4.5.4,2018-11-13 21:22:03,,,most_relevant,com.appxy.planner +BJ Tiew,https://lh3.googleusercontent.com/a-/AOh14GjFLK2wTfQS2Ly6RTfv5LVpTOjmBcpMp8IonTqr7w,so far the best planner app i ever come across. room for improvement i.e. to be accessible on PC as if some other app does.,4,1,4.5.4,2019-02-14 16:29:52,,,most_relevant,com.appxy.planner +Dale DeCoursey,https://lh3.googleusercontent.com/-2SEEeoqIkoM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMk09cOXhqmjkvVwhN69glaIhpkdw/photo.jpg,It is what I have looked for for some time. I wish it could sync'd across multiple devices.,4,0,4.5.4,2018-12-05 03:34:27,,,most_relevant,com.appxy.planner +Justina Urbietyte,https://lh3.googleusercontent.com/a-/AOh14GgXVkeFpU7DVSt4PHscCi9I_-GClB-6jgAiBkk03A,I wish I could create notes without having to select a date. Otherwise so far so nice 🤓,4,0,4.5.4,2018-12-05 02:21:35,,,most_relevant,com.appxy.planner +hanaa ibrahim,https://lh3.googleusercontent.com/-5Cm16BXGozQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMop1DVaYvJW9n-eEjpwGIu_UOf3A/photo.jpg,Very easy to use. Have all I need,4,0,4.4.1,2018-10-09 15:06:15,,,most_relevant,com.appxy.planner +sasthadas .k,https://lh3.googleusercontent.com/a-/AOh14Gi8jM7qsnKklWxpdYFF2mSy7EvDzoq6Iojrjo-yMA,Better to have a search option for notes,4,0,4.5.1,2018-11-05 18:14:50,,,most_relevant,com.appxy.planner +Dustin Waters,https://lh3.googleusercontent.com/a-/AOh14GiL-b-dAIoPaOVYMxkCjMh-Gqc2XoWqwYmuCmYCVw,"This is the only app that does what it does and I love the functionality. The only problem is the app is quite buggy and I haven't seen or noticed any updates in years. Would also be nice if there was a website to go with it. I am finally giving up and moving to day by day which leverages google calendar and google tasks. If google would just incorporate tasks into its calendar better, that would do it all.",4,1,4.7,2019-12-30 21:23:05,,,most_relevant,com.appxy.planner +md kabir,https://lh3.googleusercontent.com/a-/AOh14GhtlrW4lJ2MgudoYB8icaGNqX-IXwAiw1a8rDw9Fw,Good,4,0,4.7,2019-10-30 10:21:42,,,most_relevant,com.appxy.planner +Michelle Oladehin,https://lh3.googleusercontent.com/a-/AOh14GhmvcHoq-iUtt3ko3iJXPaOT5a2IORbCOKboqp4-Q,"After purchasing the Pro Version and having used this calendar app for almost 2 to 3 years now, I have grown to truly love it. It mimicks as close to the Franklin Covey Planner's to any app out there I have found and this is what has drawn me to it. I am increasing my rating to 4 stars, because I have really had time to utilize all aspects of this calendar and I love that it will sink with my Google calendar and other calendars. I love this app, I only wish it could print.",4,1,4.5.7,2019-08-06 17:52:01,,,most_relevant,com.appxy.planner +Dr Ashok Ranjan,https://lh3.googleusercontent.com/a-/AOh14Ggt3IyAv3G9dovwdiJU9zT7e3XBxKiuxT7M786xMpU,osm osm osm osm,4,0,4.5.7,2019-05-03 10:00:53,,,most_relevant,com.appxy.planner +cc Rose,https://lh3.googleusercontent.com/a-/AOh14Gh62PLbRYIDt6Jgd4xsMmSkBneUN-GL8SSDKJV3eg,great app,4,0,4.5.7,2019-05-19 09:22:17,,,most_relevant,com.appxy.planner +Colin Hammock,https://lh3.googleusercontent.com/-X0hUa_p0vkU/AAAAAAAAAAI/AAAAAAAAAfA/AAKWJJNySdDNOzMHv4mpxo94MHPWmBhRGA/photo.jpg,"Events sometimes take a while to show up on the day you selected for them, other times a certain day will not be selectable. choosing midnight as an ending time for an event doesn't seem to work.",4,0,4.5.4,2019-02-01 17:02:23,,,most_relevant,com.appxy.planner +Antonina Fourman,https://lh3.googleusercontent.com/-avh_VEAFB1c/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOREW8ffSu8P75ocT950VO0lzRXWQ/photo.jpg,"Cool app, seems to have all I need at this point. My only 2c would be that +the widget weekly view should have the option to see the 7 days ahead +rather than the current week; if it's a Friday, I don't really care what I +did on Monday, I wanna know what's happening next Monday",4,52,4.4.1,2018-05-02 03:32:09,,,most_relevant,com.appxy.planner +Andrea Heath,https://lh3.googleusercontent.com/-hOHRmlk2a8Y/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP3kn7wH5txvE8domS44dKnrkqUQA/photo.jpg,Just installed and am liking it so far. I do wish there was a way to disable the quotes and better utilize that space to see more of my actual calendar. Also sub tasks would be very useful. With those changes I might actually be able to downsize the apps I use.,4,18,4.4.1,2018-04-10 18:26:44,,,most_relevant,com.appxy.planner +Married2aGamer,https://lh3.googleusercontent.com/a-/AOh14Gj6RJdk2x4CSDmRBvvKNCGYiThawkEhOdQK8EiBP6E,"I would love this app so much more if part of the calendar wasn't obscured. +I don't mind the week number or anything, I just wish I could see both it +and the bottom of the calendar clearly.",4,1,4.4.1,2018-07-29 13:54:26,,,most_relevant,com.appxy.planner +Tamara Jade,https://lh3.googleusercontent.com/-RqWS8FzaFUI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNzYu12U0Zpbyq0mC3q1yuRWuO__g/photo.jpg,"This app would be so much more useful to me if I could order tasks by time! +Hope you guys can fix this thank you! Great app good job",4,1,4.4.1,2018-05-14 23:39:33,,,most_relevant,com.appxy.planner +Jeff Kipe,https://lh3.googleusercontent.com/a-/AOh14GiKmy286qjeLHLUKUTsWBVfbzCg0-dTMwJ0xioc5w,Haven't found how to sync between two devices yet!,4,9,4.4.1,2018-03-26 11:15:11,,,most_relevant,com.appxy.planner +Anet Canillas,https://lh3.googleusercontent.com/a-/AOh14GiGpjZXXANKSvPZMWF-uDCk7YHsesKUMnxrVwMn,"I don't quite get the categories for tasks, I hope there is an option to +hide it or remove it.",4,3,4.4.1,2018-06-09 20:12:20,,,most_relevant,com.appxy.planner +Angie Sam,https://lh3.googleusercontent.com/a-/AOh14GgToofnKSMq7B6xODggTwLxFDsuhwt-stm11_Bf,"Just a couple of things .... I don't like the fact that the reminders show +up multiple times and I wish it had a to do list but other than that ... +But other than that so far so good",4,0,4.4.1,2018-04-29 15:54:55,,,most_relevant,com.appxy.planner +Wael Ali,https://lh3.googleusercontent.com/a-/AOh14GhLhh2p1s-qVZCIH8Md6CY9VCMJYQ48QoW7mWk1Mg,I just need notification tone more than these and much more long,4,2,4.4.1,2018-04-09 22:44:54,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Good job,4,1,4.4,2018-03-22 16:34:01,,,most_relevant,com.appxy.planner +Shirley Smart,https://lh3.googleusercontent.com/-mm-lweJuuqo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNRi1meSrTCs8Q2kBmHe9TLlUlfsQ/photo.jpg,"I really like this app - its a lovely interface, simple to use and very useful to have both tasks and notes with the calendar. Is there any possibility of adding a folder/tag/category function to the notes? It would be so helpful - I make notes on a varietu of things as I go along, and its really useful to be able to store them by day, but it would also be great to be able to sort them by tags or folders. Anyway - just a suggestion. Otherwise a lovely app. Thanks :-)",4,340,4.3.7,2017-07-30 20:45:52,,,most_relevant,com.appxy.planner +Ian Schoenrock,https://lh3.googleusercontent.com/a-/AOh14GjET2AnJJdIujViIGpk6Pvu9-EGQFE6-wAP2S3tzg,A great app. I just downloaded it and I already love it. The only issue here is slight ui bugs. November 2017 gets covered up by the tabs at the top and on the day section the date runs into the calender layout. Again great app but those errors make the app look less professional. I would recommend rescaling the fragments so they fit better on the page as well as the toolbar. Definitely am recommending to friends though,4,92,4.3.7,2017-10-10 01:34:51,,,most_relevant,com.appxy.planner +Paul Z,https://lh3.googleusercontent.com/a-/AOh14Gh9g-jYEbn6tFM41gysRNNjcwTlaQMdQ_nfbptP,"Almost perfect. The only changes that would be helpful is a quicker way to switch from the week view to the task list. And i would like to see my tasks as a list by default instead of clicking on the task categories. Also I wish that you had a rollover option for tasks, I have yet to find an app that had this: basically I wish when I create a task I could choose if the task carries forward to the next day if not completed or not.",4,13,4.3.7,2017-07-17 18:31:20,,,most_relevant,com.appxy.planner +SH JAZZ,https://lh3.googleusercontent.com/a-/AOh14GiWJsMXqMtR4J93Nc6pGqnhbL0la_NZHpDCJX_oLw,I really like this app and ised to love it until there was an update that was stopping me from using it without upgrading. If i had to pay a one time purchase thats one thing but an annual fee?? Give me a break. $5 for a planner app is reasonable if you use it all of the time but not every year. Yall are greedy.,4,31,4.3.7,2017-05-23 17:34:51,,,most_relevant,com.appxy.planner +Keith Meco Piquero,https://lh3.googleusercontent.com/a-/AOh14GgGXcoKyz1NxMvOZT2xbflahCEfH2nCQm0qDH6z,The essence and notion of this application is not just to define activities from day to day basis but to remind us that its really not about perfection... Its about progress... This application teaches us not just to address holistically in our commitment and time management but also push drastically at the same time our attitude towards commitments.. Senior Project Engineer here... It really helps alot... Thank you.,4,9,4.3.7,2017-08-08 05:34:08,,,most_relevant,com.appxy.planner +heather cox,https://lh3.googleusercontent.com/a-/AOh14GhP1QjPAU_xUw0L2FQfTDqJ2nP63oXMgGUxzaCbs2s,I just downloaded this. The free version was definitely useful but I went ahead and got the paid version because I wanted to use the repetitive tasks and weekly planner as well. I definitely think this will be worth the purchase.,4,11,4.3.7,2017-05-27 15:53:33,,,most_relevant,com.appxy.planner +Michelle Ahmed,https://lh3.googleusercontent.com/-RT2GoMOJcOI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMyAlq4XDyVXSDGKqWpNrv1_7iefA/photo.jpg,"Great App, but would be good if you could edit tasks after you've written them. Also would be good if it could have, a daily 'things to do list'on.calendar ,which could be ticked off alongside projects /tasks.",4,0,4.3.7,2017-11-06 07:26:20,,,most_relevant,com.appxy.planner +louis lim,https://lh3.googleusercontent.com/-uKt760pr3ZA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMk-tJh3nHSyjjO4deHjy4SoyfxbQ/photo.jpg,"This app is great! But i have some suggestions that would even better improve the quality of using the app. for example, something like being able to edit the tasks widgets to show 'due soon' instead of just tasks for that day for even better planning.",4,11,4.3.7,2017-05-03 22:43:50,,,most_relevant,com.appxy.planner +Amelia Ali,https://lh3.googleusercontent.com/a-/AOh14GjESX939VjzzTZhXrOwPVagXtZ6GBEJBQSY_06l5BI,"Great app! Help, I unfortunately forgot my password (I was very sure it's correct but I'm not sure why it says it's wrong). Is there anything that can be done about it?",4,15,4.3.7,2017-04-20 15:34:56,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Things were going great until I switched to a new phone .I can't find out how to sync my tasks and events to the new phone. I installed the app in my new phone and logged in, but the data is not there . I see that the events comes from the Google calendar, and I may be able to do something about that - but how do I sync the tasks ? Pls help.",4,0,4.3.7,2018-03-16 04:12:25,,,most_relevant,com.appxy.planner +Srijaa Datta,https://lh3.googleusercontent.com/a-/AOh14GgD3zDceLoW2p6Hfi1XaBep7K-g0FStzHrruHUZnQ,"Awesome app! It helps me a lot to organize my life, work and other stuffs. The features are really amazing! Would recommend this to my friends and colleagues.",4,4,4.3.7,2017-07-30 15:12:58,,,most_relevant,com.appxy.planner +Deanna's Creative Mess,https://lh3.googleusercontent.com/a-/AOh14GhDxWTb8oHqizyh64VZJzBcxCggtoFcEqIR8GzMQQ,"I went a got the full subscription and I really like it so far, but I wish you could download it for your PC as well.",4,2,4.3.7,2017-06-02 18:14:41,,,most_relevant,com.appxy.planner +Cin,https://lh3.googleusercontent.com/a-/AOh14Gh97eODoRXCXbN-ZDOVXNMGL8RNM5FUdX4uA9CtKA,This app is great but maybe let us tick task we completed from widget as it's annoying the app will opened up when I pressed the box to tick what I've completed everytime,4,0,4.3.7,2017-09-05 04:59:57,,,most_relevant,com.appxy.planner +J Young,https://lh3.googleusercontent.com/a-/AOh14GhzES9LgaYza_x3CjoOv6JHieDDgv22-9PDQ81KMw,"I really like this app for the most part, but I really don't like how the month view in-app and on the widget don't actually list out what you have on that day, just colored dots. Would really like to be able to have this since I paid for the Pro version, please consider!",4,0,4.3.7,2018-01-16 19:06:26,,,most_relevant,com.appxy.planner +Gaurav Gawri,https://lh3.googleusercontent.com/a-/AOh14GhQe9GTnfLoLI0Im_tHvlNiEgyoPDeFkbcpkYfYfw,I think that feature of changing theme should be addef and apart from that there should also be a option for showing task on thr facr of calender itselg,4,1,4.3.7,2017-09-01 12:23:43,,,most_relevant,com.appxy.planner +Susan Copple,https://lh3.googleusercontent.com/a-/AOh14GhIZoBvx6U5eBEkgcIYqudge2SbupJPpTv2LqJ2pA,I would like to be able to import my contacts to it. I would give 5 stars for that,4,5,4.3.7,2017-08-09 15:41:15,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Great user interface. Easy to use. Syncing with Google calendar is a huge advantage. From To-do lists to events you can schedule anything.,4,0,4.3.7,2018-03-04 17:40:07,,,most_relevant,com.appxy.planner +Tami DeJong,https://lh3.googleusercontent.com/a-/AOh14GiOGDcpqhBxvGXtQPGkx5gx7bbP_VPm8lkjrTtgyg,I love this app. I have always been a Franklin Covey planner gal and this is similar to the paper planner. Great search function.,4,0,4.3.7,2018-02-12 18:04:42,,,most_relevant,com.appxy.planner +Vineet Deshmukh,https://lh3.googleusercontent.com/-K7nfKa3umj8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJONhiXw99VpY_GjiiUBOh72CAI0MA/photo.jpg,The perfect planner..Only thing missing is that Remimder is not working..,4,0,4.3.7,2017-09-14 08:09:44,,,most_relevant,com.appxy.planner +Chocyo Belle,https://lh3.googleusercontent.com/-6XsynvjoH1Q/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPZg3DL9bd7fzwNkT8g15bn0Arwzg/photo.jpg,Could you kindly add a weekly timetable-looking kind of view?,4,0,4.3.7,2018-01-06 11:00:57,,,most_relevant,com.appxy.planner +Paulline Jane Reyes,https://lh3.googleusercontent.com/a-/AOh14GjRFs6pZ1yr04lkY2a_BueVzY1tUJc8SfO-PM7bWg,Add alarms to notification in events or tasks and allow to add ringtone on it. Love it,4,0,4.3.7,2017-10-30 13:29:36,,,most_relevant,com.appxy.planner +Bella Jane Ignacio,https://lh3.googleusercontent.com/a-/AOh14Gj6dQKZ62cA2hlN_7KhjZ_W_r5MCWphghFdMo2BcA,Nice apps. But need to re download the full version.,4,0,4.3.7,2017-12-08 15:16:47,,,most_relevant,com.appxy.planner +Baig Sahib,https://lh3.googleusercontent.com/a-/AOh14GiAmix29srhx028WGdbf3VF-CLsXswBOBVvyStARw,Ok,4,0,4.3.7,2017-09-17 18:39:20,,,most_relevant,com.appxy.planner +MIROSLAV RAUS,https://lh3.googleusercontent.com/a-/AOh14Gh0m2Gc1Bq8VTM2Rh1JKJ5euDI95T7sroGaAEKVzA,Good enaught,4,0,4.3.7,2017-09-26 14:12:40,,,most_relevant,com.appxy.planner +Brandon Turner,https://lh3.googleusercontent.com/a-/AOh14Ggimct-k28dYMz7Te_komXqOgWky5Cb4XcFGH4E5g,Great Tool,4,0,4.3.7,2018-01-28 02:17:37,,,most_relevant,com.appxy.planner +Jerry Storrs,https://lh3.googleusercontent.com/a-/AOh14GiWHUSRKri8OttSb7Bweeixyn9BnKXcg6NUwWvO,Greatly improved comment from me. MUCH better than a year ago. Most updated lead to improvement. Wish the ' want an annual subscription.,4,5,4.3.6,2017-03-10 07:10:33,,,most_relevant,com.appxy.planner +x Kxdo,https://lh3.googleusercontent.com/a-/AOh14GhqHYS7uubQaZ6ta-eOQuCghy6cyl8fRhAQJ300NQ,It's 👍,4,7,4.3.6,2017-03-07 06:49:35,,,most_relevant,com.appxy.planner +Sam Eskridge,https://lh3.googleusercontent.com/-5znh4XUbvWY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOsfBoHT4-VnyYzUgjZ5AqiN2mR8A/photo.jpg,Almost all the functionality of the Franklin Planner. This is a great app!,4,6,4.3.5,2017-03-02 02:33:35,,,most_relevant,com.appxy.planner +Milan Utvic,https://lh3.googleusercontent.com/a-/AOh14GiFwUiRvFcxjyALVXOTyGc4WN4WXRzNEshkgdrl0qs,"This is the app which I use for almost a year. There is one issue I have faced recently. Namely, some tasks and events do not synchronize on multiple devices where I installed the app. I'm using this app on my Android smartphone, as well as on iPad. I would be very pleased if you fix it.",4,1,4.3.4,2017-03-15 20:58:32,,,most_relevant,com.appxy.planner +Nicky ZH,https://lh3.googleusercontent.com/a-/AOh14Gg4SuQFiX1yyAbapeJcNz5O8_fdQ58MLY7YxdlJzA,Nice app. But can update a function such as we can add in an attachment(like photo) into the task or etc will be better,4,62,4.3.4,2016-12-22 14:01:38,,,most_relevant,com.appxy.planner +Elliott Pew,https://lh3.googleusercontent.com/a-/AOh14GipBGTOI0_d_AHYebKeuuOH1DfkRBtd_ajsmDLeKA,Works great most of the time however crashes when making my display size small. Google pixel. Recurring error.,4,105,4.3.4,2016-12-26 03:46:17,,,most_relevant,com.appxy.planner +Traci Stockstill,https://lh3.googleusercontent.com/a-/AOh14Gj74tUK7IGnNgeOCyy3Lz9pAdyFtxHu93knc4s6Lw,"Would have given it 5 stars, but it doesn't seem to want to rotate when using my tablet.",4,35,4.3.4,2016-12-21 16:06:00,,,most_relevant,com.appxy.planner +Vivianne Sutherland,https://lh3.googleusercontent.com/a-/AOh14GhHAhgQvDcgwShkYz0HlmLCGpcCn0vSAJnHlQN4ig,"I like this app. It has a lot of the features I use all in one place. However, even though it lists all my Google calendars, I can't figure out how to do anything with them. I have projects spread over a dozen calendars but I can't seem to add anything to any of them.",4,1,4.3.4,2018-01-08 18:36:05,,,most_relevant,com.appxy.planner +Tony Braddock,https://lh3.googleusercontent.com/a-/AOh14GigCVOuicUoMrvNi-FKUEDG_TF8JbDZJRf2Xqd-Wg,Awesome app. Wish had auto sort feature of priority task like Franklin planner use to have.,4,14,4.3.4,2016-12-30 09:57:01,,,most_relevant,com.appxy.planner +Godfrey Vaughn,https://lh3.googleusercontent.com/a-/AOh14GiF5tEWYYu_CpiZXfYz4TolVjkBnPKi3VChUbOoaA,"This is a simple app, that gives me the capability of creating a to-do list, set event on my calendar and take notes...",4,1,4.3.4,2017-02-09 05:21:53,,,most_relevant,com.appxy.planner +Andrew W,https://lh3.googleusercontent.com/-p5OhF-mju0E/AAAAAAAAAAI/AAAAAAAAAFc/AAKWJJOIR8KDSVkLnIDGt9yecRAK_YFing/photo.jpg,The calendar reminders can be very shotty but the overall app is very useful,4,3,4.3.4,2017-02-13 15:32:03,,,most_relevant,com.appxy.planner +Urte Krukonyte,https://lh3.googleusercontent.com/-ViETY-cU8w8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOVXkZw_KTD0hb5la9XIniubfTkmw/photo.jpg,It's a really great app,4,4,4.3.4,2017-02-06 13:41:30,,,most_relevant,com.appxy.planner +Jacob Monday,https://lh3.googleusercontent.com/-GBNLHEg9SwY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMPmIWYWLc3gPWBa3uMf1OEvBETmA/photo.jpg,Cool,4,1,4.3.4,2017-02-01 06:40:05,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"This is the best planning app I ever tried. However, I subscribed to the ads-free version but I'm still getting a message telling me to subscribe to unlock the extra features. I also get the same message whenever I rotate the phone to landscape mode. Actually, the button that advertises for the full version did not go away even after buying it.",4,6,4.3.3,2016-12-06 07:52:03,,,most_relevant,com.appxy.planner +Ken Gray,https://lh3.googleusercontent.com/a-/AOh14GiRE4dGrjzLnSw9wQRsZ2bcwLlvbCh9pvv6IbbNdw,"Very Helpful, The Best Yet !",4,4,4.3.3,2016-11-25 17:01:51,,,most_relevant,com.appxy.planner +EonianDreamer,https://lh3.googleusercontent.com/a-/AOh14GgYr-ZTq0yhncBnG8gwo5t9GcsEB5nmvBMZrFP8cA,"I like the app, very helpful for lots of things, however I've lost my account twice. I've had to uninstall it and recreate my account. Very good otherwise tho",4,1,4.3.2,2016-11-05 16:04:23,,,most_relevant,com.appxy.planner +Angela Twomey,https://lh3.googleusercontent.com/a-/AOh14GhzoBnoQoQBcqGfqOHbI9R0Bno7lXpTpVR_xLDSEQ,I loved this app. Worked so great I purchased it. Now it has logged me out and says I don't exist.,4,2,4.3.2,2016-10-28 01:32:11,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Nicely presented app. Efficient. Colourful.,4,1,4.3.2,2016-11-01 19:27:44,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,I don't know. It works good and I like that you can add notes to the task that is very helpful. I just kind of would like to have a better weekly view. But all in all it gets the job done.,4,1,4.2.2,2016-10-14 02:38:19,,,most_relevant,com.appxy.planner +Annisa Rachmantya,https://lh3.googleusercontent.com/-QYgrHGvLpCg/AAAAAAAAAAI/AAAAAAAABCo/AAKWJJNfUTu63O-Zsh9S_KbROEeC5nUWSw/photo.jpg,"I love this app and has been using it for more than a year, but lately it has bugs which changes the days when i opened it per-days. Please fix it",4,23,4.2.2,2016-09-13 03:36:59,,,most_relevant,com.appxy.planner +Fred Stratton Jr.,https://lh3.googleusercontent.com/a-/AOh14GiwteFOFXluvxLca7n5qbZKYnxemJgYWa2azFawiA,Like it a little even bought the pro version. But when I went to the website trying to find out how do you back up your data in the event something happens to your phone.,4,4,4.2.2,2016-09-19 04:26:25,,,most_relevant,com.appxy.planner +Susie Cox,https://lh3.googleusercontent.com/a-/AOh14GiC7FHW9baQ-Js5D8M0m6gfcJfcbBigWckDCrzs3g,"I just installed this gem of an app this morning, and love its ease of use. However, there is a minor problem...the date in big numbers on the left is one day behind the monthly calendar.",4,4,4.2.1,2016-09-06 16:58:15,,,most_relevant,com.appxy.planner +Roxanne Joyner,https://lh3.googleusercontent.com/-av3Ax_yxsEw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN6Yy_VbOUmOLWdjajez_BsRG-qUw/photo.jpg,Great app and easy to use. Would be great if there was a no date option on notes for like shopping lists ect. That aren't just for the day.,4,2,4.2.0,2016-08-30 13:01:17,,,most_relevant,com.appxy.planner +Soyoung Kwon,https://lh3.googleusercontent.com/-iepf5Rbe5ZY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOC_YqZUjU9Kv_6zDPdBMVkL8WrSw/photo.jpg,"It's generally good, but screen rotation doesn't work. so, I can't use this app upside down in Galaxy Tab10. If this problem isn't solved, I won't pay for the next year. It would be great if this problem is solved!",4,0,4.1.1,2016-08-30 07:56:12,,,most_relevant,com.appxy.planner +Basma Sherif,https://lh3.googleusercontent.com/a-/AOh14Gj4DdjjZG084Gf4qHK_7Wr7-426v5MKsollsSuqD8Q,Good for studying,4,1,4.1.1,2016-07-21 04:22:40,,,most_relevant,com.appxy.planner +Jibak Chakma,https://lh3.googleusercontent.com/a-/AOh14GjiUS2yHclYyjJWv90km5E0kZtEPH0UaxBArO2N,it is helpful.,4,1,4.1.1,2016-08-13 16:57:05,,,most_relevant,com.appxy.planner +Grace Earnhart,https://lh3.googleusercontent.com/a-/AOh14GiTR_hrIgxBqEX_sd4VlDmDYlMtAoDV0Eu6x9BmGA,Haven't been using this app for long but it seems great so far. I LOVE that incompleted tasks roll over to the current day. I just wish you could attach attach photos or files to your notes. That would make this a 5-star review.,4,9,4.1,2016-07-13 20:15:19,,,most_relevant,com.appxy.planner +Monica Sohorca,https://lh3.googleusercontent.com/a-/AOh14GghM5fPSs1I0cu7rVh3P8QgsVsxfsSyJKs1iQCO-T0,"A today button would be helpful in the week view widget, so that you don't have to scroll back. And also the possibility to add more accounts. Are these features available in the pro version? Maybe the possibility to try it for a short period of time...",4,0,4.0.1,2016-07-06 07:03:00,,,most_relevant,com.appxy.planner +Natosha Fair,https://lh3.googleusercontent.com/-5x_uSIW865M/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOLxI6xjI33maqrHxUUjTn_hfdODA/photo.jpg,"I am the most unorganized person ever, and this app has helped me a lot. I constantly put down when my projects, tests, etc are due. I even include my days off on it. I also love that you can not down little notes with this app as well.",4,1,4.0.1,2016-04-27 13:22:44,,,most_relevant,com.appxy.planner +Kah Hwee Gan,https://lh3.googleusercontent.com/a-/AOh14GiRToIRAQFCjh4y0x3yEfmR_mCyBVlUClWlBjBYAGU,It was very useful for me to plan my days until the latest update which the widget shows the wrong day and I am unable switch the day..,4,2,4.0.1,2016-05-01 13:17:57,,,most_relevant,com.appxy.planner +Mateusz Hadryś,https://lh3.googleusercontent.com/-SvHUdYKovgw/AAAAAAAAAAI/AAAAAAAAAIY/AAKWJJOZE0EuU9C2AWQ5wq8K0_-6W80ECA/photo.jpg,Why on earth when I'm on one day and create a task it schedules it for the day before that by default? just why?,4,6,4.0.1,2016-05-31 22:09:28,,,most_relevant,com.appxy.planner +reuby benson,https://lh3.googleusercontent.com/a-/AOh14GirXkAiWi1f8KtwhhXiQWahDWy2mPWC5BuUFCAmdA,This is a great planner app. Only thing missing is the ability to rotate into portrait or even rotate 180 degrees.,4,1,4.0.1,2017-04-19 18:42:34,,,most_relevant,com.appxy.planner +Gene Lucio,https://lh3.googleusercontent.com/-g_jfvc38jTM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN0peqKxgEKYKzfGcER-1hXHNKsIQ/photo.jpg,Would love to be able to customize the app more. Need to add a dark theme and also add an agenda view.,4,1,4.0.1,2016-07-06 18:03:03,,,most_relevant,com.appxy.planner +juliet,https://lh3.googleusercontent.com/a-/AOh14GjH95Y8GkFPI2PMublXZSn_UOWOm0xvv4765Ak35g,User friendly and plenty of bells and whistles. ; ),4,1,4.0.1,2016-04-26 18:50:42,,,most_relevant,com.appxy.planner +em d,https://lh3.googleusercontent.com/-NRkaI7i3UAE/AAAAAAAAAAI/AAAAAAAAAz8/AAKWJJMYw67zVFFpyZ5ncY5CuwWkt4Nizg/photo.jpg,Good Features n Easy to Use,4,1,4.0.1,2016-06-13 23:11:05,,,most_relevant,com.appxy.planner +Tito Clement,https://lh3.googleusercontent.com/a-/AOh14GgioFatrvTNw7eWmDbLxrHhas72WFhUL-TVzGU-YQ,This is what I have been finding ...,4,0,4.0.1,2016-06-07 04:40:33,,,most_relevant,com.appxy.planner +Eugene Wong,https://lh3.googleusercontent.com/a-/AOh14GiuIseoAOAjD6ukWcDEiBr-dUyIfR5dEdQOrcZ0HlY,I liked it but is there a widget for the app?,4,0,4.0.1,2016-07-05 08:58:31,,,most_relevant,com.appxy.planner +utkarsh agarwal,https://lh3.googleusercontent.com/a-/AOh14GhhVM3Jc92sS5Sjw_guec1wVFky1wwdlILgqIfBTUk,Gud for organised businessman,4,0,4.0.1,2016-07-05 06:26:50,,,most_relevant,com.appxy.planner +Yuvraj Pillay,https://lh3.googleusercontent.com/-driTVabA_5M/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPSvU6FukF2MIVvZq_IzRoIgqSQIQ/photo.jpg,Can you add time in notes also like events,4,0,4.0,2016-04-19 14:04:22,,,most_relevant,com.appxy.planner +Naxlin Everthaine,https://lh3.googleusercontent.com/-lKaPPnXx0Ww/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMcWjer4URIQZArpIcljTqLzjF0gg/photo.jpg,"Each of the features acts like it should. Only two things kept this from five stars: 1 - the reminder is set by default to 15 min and there is no easy way to turn that off or set it to another time. 2 - the events are colorless, making them less at-a-glance for looking up your plans for the day. Other than those two things, I've got no complaints.",4,0,3.2.3,2016-03-07 06:38:03,,,most_relevant,com.appxy.planner +Cheryl Lynn,https://lh3.googleusercontent.com/a-/AOh14GhYaP0v9qKUT7hqvJb-dvqGhGgaLIazVPe-zAcE,I am very pleased with this planner. It synchronizes easily with my Google calendars and allows me to stay on my phone and computer with only one entry. The free version does not include search and I have not found to make use of the various to do tabs as well schedule recurring events so I am going to try the paid version and see it meets the rest of my scheduling needs.,4,1,3.2.3,2016-03-11 14:57:02,,,most_relevant,com.appxy.planner +Arleth Salinas,https://lh3.googleusercontent.com/a-/AOh14GiAbtyE_CXQ0HKso5AFRn2vRmDjyGGM786lnmBSylw,This application is very useful in helping keep me organized and paced. The only suggestion I'd make is on the interface. When checking off my tasks for the day the add new task button is in the way of pressing the cross off button. It's a bit annoying but I love this app.,4,6,3.2.3,2016-04-30 00:58:01,,,most_relevant,com.appxy.planner +Luis Unzueta,https://lh3.googleusercontent.com/-R1MyQohwf6Q/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNffoR2NCJe_ICDfDkceds47rDv0Q/photo.jpg,Of all the planner apps I've used this has been the best one. I really love the widget. A few extras I wish I had but for the free version not bad. The biggest thing that bugs me is the force use of military time in the widget,4,48,3.2.3,2016-03-07 07:06:37,,,most_relevant,com.appxy.planner +Derrick Adkison,https://lh3.googleusercontent.com/a-/AOh14GiarCNaBh2es5aBvKe7JioDbcbv3OhPWzyRMt5CVw,Only thing I don't like is that when creating a recurring event the date doesn't show on the monthly view until you scroll over to the actual week of the event it would be a lot better if I could see those dates on the monthly view without having to scroll fix please for 5 star rating,4,0,3.2.3,2016-04-13 10:14:12,,,most_relevant,com.appxy.planner +Jordan Gardner,https://lh3.googleusercontent.com/a-/AOh14GigJKst0bJvqNiyzw102EV2zCeDgyLVngA0-hUutg,"I like this app and use it on my Android phone and iOS iPad. It's easy to use, don't need to buy anything, and is clear. I don't love how some tasks are harder to remember and the reminder isn't how I expected, but it's a good app.",4,0,3.2.3,2016-07-18 02:16:16,,,most_relevant,com.appxy.planner +Danielle Turner - LifeVantage Distributor,https://lh3.googleusercontent.com/a-/AOh14GjQl7mqSwCCfWt32h5PYw7NG1cO50usfo1n5fqzERY,"Love this app!!! 😄 Only thing that bothers me is that when I put repeat on events, it only works sometimes. So just make sure it actually fills in the reoccurring days that you choose.",4,0,3.2.3,2016-03-21 16:51:58,,,most_relevant,com.appxy.planner +Perina Mucalo,https://lh3.googleusercontent.com/a-/AOh14GhhI0AWrhuVR_h8Lw951orRhwQJVJEqLbhQT09h,I haven't had any problems with it so far. Just wish it had a tutorial so I can get the most from it without buying it,4,1,3.2.3,2016-03-01 04:15:34,,,most_relevant,com.appxy.planner +V J,https://lh3.googleusercontent.com/a-/AOh14GgeAoq8BY2CGkXb-cWouTJU0zAE9qPPbKUPyrkfGg,If only the calender icons cld stop piling up on the phobe task bar everytime one is due. So if I created 5 events to go off in an hr I'll have 5 icons piled up on my fone. It's not needed. Or at least put an option so people cld disable it if they don't want it.,4,3,3.2.3,2017-02-02 07:43:40,,,most_relevant,com.appxy.planner +Myrleia Diaz,https://lh3.googleusercontent.com/a-/AOh14GgIjcvxpd7oEJydZbP8UlM-9beVXMoRiu6wHzXNSg,I love that the app interface is so easy to use. The reason I don't give it 5 stars is because you can't export notes. It would be ideal if that could be done.,4,5,4.7.2,2020-03-17 19:47:03,,,newest,com.appxy.planner +Jennifer Lam Lee Chin,https://lh3.googleusercontent.com/-4zGvACFHt64/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMb8YQGNnFqVAlA9y0D60OeXd1law/photo.jpg,"I'm using 2 calenders and 1 To Do planner not including this. All has their pros and functions I want, yet they're different in style. This is one of the best. I just love using the week view seeing at one shot, time of events laid out in planner, including notes on that day with pics uploaded if needed. It sync with my AnyDo planner which has a calender. But I just love how I can use this a bit differently for scheduling. Best if only it has a daily mood tracker added in the notes function.",4,66,4.7,2019-12-31 13:57:44,,,newest,com.appxy.planner +Dustin Waters,https://lh3.googleusercontent.com/a-/AOh14GiL-b-dAIoPaOVYMxkCjMh-Gqc2XoWqwYmuCmYCVw,"This is the only app that does what it does and I love the functionality. The only problem is the app is quite buggy and I haven't seen or noticed any updates in years. Would also be nice if there was a website to go with it. I am finally giving up and moving to day by day which leverages google calendar and google tasks. If google would just incorporate tasks into its calendar better, that would do it all.",4,1,4.7,2019-12-30 21:23:05,,,newest,com.appxy.planner +elaine,https://lh3.googleusercontent.com/a-/AOh14Ggfpm7V1dj-RAZ37HzKEh0TJfuNNvmYVn8p9d14bA,Great app. I would rate it a 5 but there's an error where my completed tasks becomes unchecked constantly causing it to keep on becoming an unfinished task and it's annoying.,4,4,4.7,2019-11-18 12:33:55,,,newest,com.appxy.planner +Yoel Oz,https://lh3.googleusercontent.com/-uVBvpcGewFY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP07g-SXz2crbM9EtB83xpc5mpofw/photo.jpg,"I had a problem with upgrading to Premium. They were quick with their response and fixed the problem right away. It's a good app for those familiar with the Franklin Covey system, and syncs well across devices.",4,29,4.7,2019-11-18 08:04:43,,,newest,com.appxy.planner +md kabir,https://lh3.googleusercontent.com/a-/AOh14GhtlrW4lJ2MgudoYB8icaGNqX-IXwAiw1a8rDw9Fw,Good,4,0,4.7,2019-10-30 10:21:42,,,newest,com.appxy.planner +Michelle Oladehin,https://lh3.googleusercontent.com/a-/AOh14GhmvcHoq-iUtt3ko3iJXPaOT5a2IORbCOKboqp4-Q,"After purchasing the Pro Version and having used this calendar app for almost 2 to 3 years now, I have grown to truly love it. It mimicks as close to the Franklin Covey Planner's to any app out there I have found and this is what has drawn me to it. I am increasing my rating to 4 stars, because I have really had time to utilize all aspects of this calendar and I love that it will sink with my Google calendar and other calendars. I love this app, I only wish it could print.",4,1,4.5.7,2019-08-06 17:52:01,,,newest,com.appxy.planner +cc Rose,https://lh3.googleusercontent.com/a-/AOh14Gh62PLbRYIDt6Jgd4xsMmSkBneUN-GL8SSDKJV3eg,great app,4,0,4.5.7,2019-05-19 09:22:17,,,newest,com.appxy.planner +Dr Ashok Ranjan,https://lh3.googleusercontent.com/a-/AOh14Ggt3IyAv3G9dovwdiJU9zT7e3XBxKiuxT7M786xMpU,osm osm osm osm,4,0,4.5.7,2019-05-03 10:00:53,,,newest,com.appxy.planner +nili,https://lh3.googleusercontent.com/a-/AOh14Gjdto294CajS3mB_eUjgLpCJDtXEOLoWWxL6TLuUKs,Great app and the only flaw I see is that you can't yet export your data. Please make it so you can export data to something like pdf or something so I can save my entries forever,4,3,4.5.4,2019-03-02 17:52:28,,,newest,com.appxy.planner +BJ Tiew,https://lh3.googleusercontent.com/a-/AOh14GjFLK2wTfQS2Ly6RTfv5LVpTOjmBcpMp8IonTqr7w,so far the best planner app i ever come across. room for improvement i.e. to be accessible on PC as if some other app does.,4,1,4.5.4,2019-02-14 16:29:52,,,newest,com.appxy.planner +Colin Hammock,https://lh3.googleusercontent.com/-X0hUa_p0vkU/AAAAAAAAAAI/AAAAAAAAAfA/AAKWJJNySdDNOzMHv4mpxo94MHPWmBhRGA/photo.jpg,"Events sometimes take a while to show up on the day you selected for them, other times a certain day will not be selectable. choosing midnight as an ending time for an event doesn't seem to work.",4,0,4.5.4,2019-02-01 17:02:23,,,newest,com.appxy.planner +VeRonica Brunson,https://lh3.googleusercontent.com/-ovyB_WI3DL0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPYx6T6ImXnALVe_5dFtqdaxwyT1Q/photo.jpg,"I love this app! I have the pro version and the layout is very clean and organized. However, only 4 stars because it does not work on multiple devices.",4,0,4.5.4,2018-12-21 03:55:05,,,newest,com.appxy.planner +Dale DeCoursey,https://lh3.googleusercontent.com/-2SEEeoqIkoM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMk09cOXhqmjkvVwhN69glaIhpkdw/photo.jpg,It is what I have looked for for some time. I wish it could sync'd across multiple devices.,4,0,4.5.4,2018-12-05 03:34:27,,,newest,com.appxy.planner +Justina Urbietyte,https://lh3.googleusercontent.com/a-/AOh14GgXVkeFpU7DVSt4PHscCi9I_-GClB-6jgAiBkk03A,I wish I could create notes without having to select a date. Otherwise so far so nice 🤓,4,0,4.5.4,2018-12-05 02:21:35,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I do like the straight forwardness of this system it does what it says on the tin, needs to keep developing but in the theme it's in if it gets to clever like some systems it will loss it's position",4,9,4.5.4,2018-11-13 21:22:03,,,newest,com.appxy.planner +sasthadas .k,https://lh3.googleusercontent.com/a-/AOh14Gi8jM7qsnKklWxpdYFF2mSy7EvDzoq6Iojrjo-yMA,Better to have a search option for notes,4,0,4.5.1,2018-11-05 18:14:50,,,newest,com.appxy.planner +hanaa ibrahim,https://lh3.googleusercontent.com/-5Cm16BXGozQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMop1DVaYvJW9n-eEjpwGIu_UOf3A/photo.jpg,Very easy to use. Have all I need,4,0,4.4.1,2018-10-09 15:06:15,,,newest,com.appxy.planner +Married2aGamer,https://lh3.googleusercontent.com/a-/AOh14Gj6RJdk2x4CSDmRBvvKNCGYiThawkEhOdQK8EiBP6E,"I would love this app so much more if part of the calendar wasn't obscured. +I don't mind the week number or anything, I just wish I could see both it +and the bottom of the calendar clearly.",4,1,4.4.1,2018-07-29 13:54:26,,,newest,com.appxy.planner +yara Jabber,https://lh3.googleusercontent.com/a-/AOh14GhlH8j9tyIbhrcyHWFp99SBJDG3tHAIfXbyHl6FcA,It takes time burpt good but it keeps getting out like you can't login,4,0,,2018-07-11 08:36:57,,,newest,com.appxy.planner +Anet Canillas,https://lh3.googleusercontent.com/a-/AOh14GiGpjZXXANKSvPZMWF-uDCk7YHsesKUMnxrVwMn,"I don't quite get the categories for tasks, I hope there is an option to +hide it or remove it.",4,3,4.4.1,2018-06-09 20:12:20,,,newest,com.appxy.planner +Tamara Jade,https://lh3.googleusercontent.com/-RqWS8FzaFUI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNzYu12U0Zpbyq0mC3q1yuRWuO__g/photo.jpg,"This app would be so much more useful to me if I could order tasks by time! +Hope you guys can fix this thank you! Great app good job",4,1,4.4.1,2018-05-14 23:39:33,,,newest,com.appxy.planner +Antonina Fourman,https://lh3.googleusercontent.com/-avh_VEAFB1c/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOREW8ffSu8P75ocT950VO0lzRXWQ/photo.jpg,"Cool app, seems to have all I need at this point. My only 2c would be that +the widget weekly view should have the option to see the 7 days ahead +rather than the current week; if it's a Friday, I don't really care what I +did on Monday, I wanna know what's happening next Monday",4,52,4.4.1,2018-05-02 03:32:09,,,newest,com.appxy.planner +Angie Sam,https://lh3.googleusercontent.com/a-/AOh14GgToofnKSMq7B6xODggTwLxFDsuhwt-stm11_Bf,"Just a couple of things .... I don't like the fact that the reminders show +up multiple times and I wish it had a to do list but other than that ... +But other than that so far so good",4,0,4.4.1,2018-04-29 15:54:55,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Great,4,0,,2018-04-18 00:46:35,,,newest,com.appxy.planner +Andrea Heath,https://lh3.googleusercontent.com/-hOHRmlk2a8Y/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP3kn7wH5txvE8domS44dKnrkqUQA/photo.jpg,Just installed and am liking it so far. I do wish there was a way to disable the quotes and better utilize that space to see more of my actual calendar. Also sub tasks would be very useful. With those changes I might actually be able to downsize the apps I use.,4,18,4.4.1,2018-04-10 18:26:44,,,newest,com.appxy.planner +Wael Ali,https://lh3.googleusercontent.com/a-/AOh14GhLhh2p1s-qVZCIH8Md6CY9VCMJYQ48QoW7mWk1Mg,I just need notification tone more than these and much more long,4,2,4.4.1,2018-04-09 22:44:54,,,newest,com.appxy.planner +Gem Marcelo,https://lh3.googleusercontent.com/a-/AOh14GjhIIFNCwqloWkpm5g7ky-RxcqbS5MNcLJcWOmTtA,Seems like there is a bug when trying to sync my notes to my dropbox account. Would give you 5 stars if fixed.,4,0,,2018-04-08 12:08:22,,,newest,com.appxy.planner +Jeff Kipe,https://lh3.googleusercontent.com/a-/AOh14GiKmy286qjeLHLUKUTsWBVfbzCg0-dTMwJ0xioc5w,Haven't found how to sync between two devices yet!,4,9,4.4.1,2018-03-26 11:15:11,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Good job,4,1,4.4,2018-03-22 16:34:01,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Things were going great until I switched to a new phone .I can't find out how to sync my tasks and events to the new phone. I installed the app in my new phone and logged in, but the data is not there . I see that the events comes from the Google calendar, and I may be able to do something about that - but how do I sync the tasks ? Pls help.",4,0,4.3.7,2018-03-16 04:12:25,,,newest,com.appxy.planner +Dennis Muyonga,https://lh3.googleusercontent.com/a-/AOh14Gh28pKKW7W6M2as133TjZVR-EzaCSpzeU_D0dtzZA,Awesome,4,0,,2018-03-15 19:39:07,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Great user interface. Easy to use. Syncing with Google calendar is a huge advantage. From To-do lists to events you can schedule anything.,4,0,4.3.7,2018-03-04 17:40:07,,,newest,com.appxy.planner +Tami DeJong,https://lh3.googleusercontent.com/a-/AOh14GiOGDcpqhBxvGXtQPGkx5gx7bbP_VPm8lkjrTtgyg,I love this app. I have always been a Franklin Covey planner gal and this is similar to the paper planner. Great search function.,4,0,4.3.7,2018-02-12 18:04:42,,,newest,com.appxy.planner +Brandon Turner,https://lh3.googleusercontent.com/a-/AOh14Ggimct-k28dYMz7Te_komXqOgWky5Cb4XcFGH4E5g,Great Tool,4,0,4.3.7,2018-01-28 02:17:37,,,newest,com.appxy.planner +J Young,https://lh3.googleusercontent.com/a-/AOh14GhzES9LgaYza_x3CjoOv6JHieDDgv22-9PDQ81KMw,"I really like this app for the most part, but I really don't like how the month view in-app and on the widget don't actually list out what you have on that day, just colored dots. Would really like to be able to have this since I paid for the Pro version, please consider!",4,0,4.3.7,2018-01-16 19:06:26,,,newest,com.appxy.planner +Vivianne Sutherland,https://lh3.googleusercontent.com/a-/AOh14GhHAhgQvDcgwShkYz0HlmLCGpcCn0vSAJnHlQN4ig,"I like this app. It has a lot of the features I use all in one place. However, even though it lists all my Google calendars, I can't figure out how to do anything with them. I have projects spread over a dozen calendars but I can't seem to add anything to any of them.",4,1,4.3.4,2018-01-08 18:36:05,,,newest,com.appxy.planner +Elina Sommer,https://lh3.googleusercontent.com/a-/AOh14GjFJIqY0HsNXzEjggP_NNeDO3mBR-jrSAgnXeWS9w,ItS pretty good.,4,0,,2018-01-06 17:16:23,,,newest,com.appxy.planner +Chocyo Belle,https://lh3.googleusercontent.com/-6XsynvjoH1Q/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPZg3DL9bd7fzwNkT8g15bn0Arwzg/photo.jpg,Could you kindly add a weekly timetable-looking kind of view?,4,0,4.3.7,2018-01-06 11:00:57,,,newest,com.appxy.planner +Bella Jane Ignacio,https://lh3.googleusercontent.com/a-/AOh14Gj6dQKZ62cA2hlN_7KhjZ_W_r5MCWphghFdMo2BcA,Nice apps. But need to re download the full version.,4,0,4.3.7,2017-12-08 15:16:47,,,newest,com.appxy.planner +Michelle Ahmed,https://lh3.googleusercontent.com/-RT2GoMOJcOI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMyAlq4XDyVXSDGKqWpNrv1_7iefA/photo.jpg,"Great App, but would be good if you could edit tasks after you've written them. Also would be good if it could have, a daily 'things to do list'on.calendar ,which could be ticked off alongside projects /tasks.",4,0,4.3.7,2017-11-06 07:26:20,,,newest,com.appxy.planner +Pavel Hivrenko,https://lh3.googleusercontent.com/a-/AOh14Ghotv7H6Q-incOkMg7KhnbaMjA3BknRxVB5WBfA,Overall a good app but I would also like the option of switching from landscape view.,4,0,,2017-10-31 17:11:45,,,newest,com.appxy.planner +Paulline Jane Reyes,https://lh3.googleusercontent.com/a-/AOh14GjRFs6pZ1yr04lkY2a_BueVzY1tUJc8SfO-PM7bWg,Add alarms to notification in events or tasks and allow to add ringtone on it. Love it,4,0,4.3.7,2017-10-30 13:29:36,,,newest,com.appxy.planner +IT The Singhasari,https://lh3.googleusercontent.com/a-/AOh14GgubAvDOOnXKLX_lrcrlRsSlr6YzLnk3ghzczhdwQ,"Great Very usefull, please add fitur search to find an old note",4,0,,2017-10-21 10:51:39,,,newest,com.appxy.planner +Ian Schoenrock,https://lh3.googleusercontent.com/a-/AOh14GjET2AnJJdIujViIGpk6Pvu9-EGQFE6-wAP2S3tzg,A great app. I just downloaded it and I already love it. The only issue here is slight ui bugs. November 2017 gets covered up by the tabs at the top and on the day section the date runs into the calender layout. Again great app but those errors make the app look less professional. I would recommend rescaling the fragments so they fit better on the page as well as the toolbar. Definitely am recommending to friends though,4,92,4.3.7,2017-10-10 01:34:51,,,newest,com.appxy.planner +MIROSLAV RAUS,https://lh3.googleusercontent.com/a-/AOh14Gh0m2Gc1Bq8VTM2Rh1JKJ5euDI95T7sroGaAEKVzA,Good enaught,4,0,4.3.7,2017-09-26 14:12:40,,,newest,com.appxy.planner +Baig Sahib,https://lh3.googleusercontent.com/a-/AOh14GiAmix29srhx028WGdbf3VF-CLsXswBOBVvyStARw,Ok,4,0,4.3.7,2017-09-17 18:39:20,,,newest,com.appxy.planner +Vineet Deshmukh,https://lh3.googleusercontent.com/-K7nfKa3umj8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJONhiXw99VpY_GjiiUBOh72CAI0MA/photo.jpg,The perfect planner..Only thing missing is that Remimder is not working..,4,0,4.3.7,2017-09-14 08:09:44,,,newest,com.appxy.planner +Cin,https://lh3.googleusercontent.com/a-/AOh14Gh97eODoRXCXbN-ZDOVXNMGL8RNM5FUdX4uA9CtKA,This app is great but maybe let us tick task we completed from widget as it's annoying the app will opened up when I pressed the box to tick what I've completed everytime,4,0,4.3.7,2017-09-05 04:59:57,,,newest,com.appxy.planner +Gaurav Gawri,https://lh3.googleusercontent.com/a-/AOh14GhQe9GTnfLoLI0Im_tHvlNiEgyoPDeFkbcpkYfYfw,I think that feature of changing theme should be addef and apart from that there should also be a option for showing task on thr facr of calender itselg,4,1,4.3.7,2017-09-01 12:23:43,,,newest,com.appxy.planner +Susan Copple,https://lh3.googleusercontent.com/a-/AOh14GhIZoBvx6U5eBEkgcIYqudge2SbupJPpTv2LqJ2pA,I would like to be able to import my contacts to it. I would give 5 stars for that,4,5,4.3.7,2017-08-09 15:41:15,,,newest,com.appxy.planner +Keith Meco Piquero,https://lh3.googleusercontent.com/a-/AOh14GgGXcoKyz1NxMvOZT2xbflahCEfH2nCQm0qDH6z,The essence and notion of this application is not just to define activities from day to day basis but to remind us that its really not about perfection... Its about progress... This application teaches us not just to address holistically in our commitment and time management but also push drastically at the same time our attitude towards commitments.. Senior Project Engineer here... It really helps alot... Thank you.,4,9,4.3.7,2017-08-08 05:34:08,,,newest,com.appxy.planner +Shirley Smart,https://lh3.googleusercontent.com/-mm-lweJuuqo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNRi1meSrTCs8Q2kBmHe9TLlUlfsQ/photo.jpg,"I really like this app - its a lovely interface, simple to use and very useful to have both tasks and notes with the calendar. Is there any possibility of adding a folder/tag/category function to the notes? It would be so helpful - I make notes on a varietu of things as I go along, and its really useful to be able to store them by day, but it would also be great to be able to sort them by tags or folders. Anyway - just a suggestion. Otherwise a lovely app. Thanks :-)",4,340,4.3.7,2017-07-30 20:45:52,,,newest,com.appxy.planner +Srijaa Datta,https://lh3.googleusercontent.com/a-/AOh14GgD3zDceLoW2p6Hfi1XaBep7K-g0FStzHrruHUZnQ,"Awesome app! It helps me a lot to organize my life, work and other stuffs. The features are really amazing! Would recommend this to my friends and colleagues.",4,4,4.3.7,2017-07-30 15:12:58,,,newest,com.appxy.planner +Paul Z,https://lh3.googleusercontent.com/a-/AOh14Gh9g-jYEbn6tFM41gysRNNjcwTlaQMdQ_nfbptP,"Almost perfect. The only changes that would be helpful is a quicker way to switch from the week view to the task list. And i would like to see my tasks as a list by default instead of clicking on the task categories. Also I wish that you had a rollover option for tasks, I have yet to find an app that had this: basically I wish when I create a task I could choose if the task carries forward to the next day if not completed or not.",4,13,4.3.7,2017-07-17 18:31:20,,,newest,com.appxy.planner +Jada Justice,https://lh3.googleusercontent.com/-75vRu7Bvlh4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJP5oHKhYjG63-Q8voz-fRjCZ-GadQ/photo.jpg,I like it,4,2,,2017-06-27 02:08:08,,,newest,com.appxy.planner +Deanna's Creative Mess,https://lh3.googleusercontent.com/a-/AOh14GhDxWTb8oHqizyh64VZJzBcxCggtoFcEqIR8GzMQQ,"I went a got the full subscription and I really like it so far, but I wish you could download it for your PC as well.",4,2,4.3.7,2017-06-02 18:14:41,,,newest,com.appxy.planner +Amanda Taylor,https://lh3.googleusercontent.com/a-/AOh14GhtIoSFFRmAos8oaEFhzGcy3KgVEKBSSyDNXMh1,It's cool,4,0,,2017-06-02 03:20:48,,,newest,com.appxy.planner +heather cox,https://lh3.googleusercontent.com/a-/AOh14GhP1QjPAU_xUw0L2FQfTDqJ2nP63oXMgGUxzaCbs2s,I just downloaded this. The free version was definitely useful but I went ahead and got the paid version because I wanted to use the repetitive tasks and weekly planner as well. I definitely think this will be worth the purchase.,4,11,4.3.7,2017-05-27 15:53:33,,,newest,com.appxy.planner +SH JAZZ,https://lh3.googleusercontent.com/a-/AOh14GiWJsMXqMtR4J93Nc6pGqnhbL0la_NZHpDCJX_oLw,I really like this app and ised to love it until there was an update that was stopping me from using it without upgrading. If i had to pay a one time purchase thats one thing but an annual fee?? Give me a break. $5 for a planner app is reasonable if you use it all of the time but not every year. Yall are greedy.,4,31,4.3.7,2017-05-23 17:34:51,,,newest,com.appxy.planner +louis lim,https://lh3.googleusercontent.com/-uKt760pr3ZA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMk-tJh3nHSyjjO4deHjy4SoyfxbQ/photo.jpg,"This app is great! But i have some suggestions that would even better improve the quality of using the app. for example, something like being able to edit the tasks widgets to show 'due soon' instead of just tasks for that day for even better planning.",4,11,4.3.7,2017-05-03 22:43:50,,,newest,com.appxy.planner +Amelia Ali,https://lh3.googleusercontent.com/a-/AOh14GjESX939VjzzTZhXrOwPVagXtZ6GBEJBQSY_06l5BI,"Great app! Help, I unfortunately forgot my password (I was very sure it's correct but I'm not sure why it says it's wrong). Is there anything that can be done about it?",4,15,4.3.7,2017-04-20 15:34:56,,,newest,com.appxy.planner +reuby benson,https://lh3.googleusercontent.com/a-/AOh14GirXkAiWi1f8KtwhhXiQWahDWy2mPWC5BuUFCAmdA,This is a great planner app. Only thing missing is the ability to rotate into portrait or even rotate 180 degrees.,4,1,4.0.1,2017-04-19 18:42:34,,,newest,com.appxy.planner +Marlon Bradshaw,https://lh3.googleusercontent.com/-cIJi7kIiNr0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPQvgJ_UkT-6hk1QRr2aGogPx_e-Q/photo.jpg,The app was working fine until I removed Google Now. Now the widgets will not show on home page.,4,0,,2017-04-02 13:39:39,,,newest,com.appxy.planner +praveen m prasad,https://lh3.googleusercontent.com/a-/AOh14GhFywutmr31Bsn2Z1ksO4qk9svV28ezWAf_JfgFrA,planned not bad,4,0,,2017-03-29 08:25:46,,,newest,com.appxy.planner +Milan Utvic,https://lh3.googleusercontent.com/a-/AOh14GiFwUiRvFcxjyALVXOTyGc4WN4WXRzNEshkgdrl0qs,"This is the app which I use for almost a year. There is one issue I have faced recently. Namely, some tasks and events do not synchronize on multiple devices where I installed the app. I'm using this app on my Android smartphone, as well as on iPad. I would be very pleased if you fix it.",4,1,4.3.4,2017-03-15 20:58:32,,,newest,com.appxy.planner +Jerry Storrs,https://lh3.googleusercontent.com/a-/AOh14GiWHUSRKri8OttSb7Bweeixyn9BnKXcg6NUwWvO,Greatly improved comment from me. MUCH better than a year ago. Most updated lead to improvement. Wish the ' want an annual subscription.,4,5,4.3.6,2017-03-10 07:10:33,,,newest,com.appxy.planner +x Kxdo,https://lh3.googleusercontent.com/a-/AOh14GhqHYS7uubQaZ6ta-eOQuCghy6cyl8fRhAQJ300NQ,It's 👍,4,7,4.3.6,2017-03-07 06:49:35,,,newest,com.appxy.planner +Sam Eskridge,https://lh3.googleusercontent.com/-5znh4XUbvWY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOsfBoHT4-VnyYzUgjZ5AqiN2mR8A/photo.jpg,Almost all the functionality of the Franklin Planner. This is a great app!,4,6,4.3.5,2017-03-02 02:33:35,,,newest,com.appxy.planner +Andrew W,https://lh3.googleusercontent.com/-p5OhF-mju0E/AAAAAAAAAAI/AAAAAAAAAFc/AAKWJJOIR8KDSVkLnIDGt9yecRAK_YFing/photo.jpg,The calendar reminders can be very shotty but the overall app is very useful,4,3,4.3.4,2017-02-13 15:32:03,,,newest,com.appxy.planner +Godfrey Vaughn,https://lh3.googleusercontent.com/a-/AOh14GiF5tEWYYu_CpiZXfYz4TolVjkBnPKi3VChUbOoaA,"This is a simple app, that gives me the capability of creating a to-do list, set event on my calendar and take notes...",4,1,4.3.4,2017-02-09 05:21:53,,,newest,com.appxy.planner +Urte Krukonyte,https://lh3.googleusercontent.com/-ViETY-cU8w8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOVXkZw_KTD0hb5la9XIniubfTkmw/photo.jpg,It's a really great app,4,4,4.3.4,2017-02-06 13:41:30,,,newest,com.appxy.planner +V J,https://lh3.googleusercontent.com/a-/AOh14GgeAoq8BY2CGkXb-cWouTJU0zAE9qPPbKUPyrkfGg,If only the calender icons cld stop piling up on the phobe task bar everytime one is due. So if I created 5 events to go off in an hr I'll have 5 icons piled up on my fone. It's not needed. Or at least put an option so people cld disable it if they don't want it.,4,3,3.2.3,2017-02-02 07:43:40,,,newest,com.appxy.planner +Jacob Monday,https://lh3.googleusercontent.com/-GBNLHEg9SwY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMPmIWYWLc3gPWBa3uMf1OEvBETmA/photo.jpg,Cool,4,1,4.3.4,2017-02-01 06:40:05,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,This planner pro is very nice and better for you time schedule,4,1,,2017-01-15 16:20:17,,,newest,com.appxy.planner +Tony Braddock,https://lh3.googleusercontent.com/a-/AOh14GigCVOuicUoMrvNi-FKUEDG_TF8JbDZJRf2Xqd-Wg,Awesome app. Wish had auto sort feature of priority task like Franklin planner use to have.,4,14,4.3.4,2016-12-30 09:57:01,,,newest,com.appxy.planner +Elliott Pew,https://lh3.googleusercontent.com/a-/AOh14GipBGTOI0_d_AHYebKeuuOH1DfkRBtd_ajsmDLeKA,Works great most of the time however crashes when making my display size small. Google pixel. Recurring error.,4,105,4.3.4,2016-12-26 03:46:17,,,newest,com.appxy.planner +Nicky ZH,https://lh3.googleusercontent.com/a-/AOh14Gg4SuQFiX1yyAbapeJcNz5O8_fdQ58MLY7YxdlJzA,Nice app. But can update a function such as we can add in an attachment(like photo) into the task or etc will be better,4,62,4.3.4,2016-12-22 14:01:38,,,newest,com.appxy.planner +Traci Stockstill,https://lh3.googleusercontent.com/a-/AOh14Gj74tUK7IGnNgeOCyy3Lz9pAdyFtxHu93knc4s6Lw,"Would have given it 5 stars, but it doesn't seem to want to rotate when using my tablet.",4,35,4.3.4,2016-12-21 16:06:00,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"This is the best planning app I ever tried. However, I subscribed to the ads-free version but I'm still getting a message telling me to subscribe to unlock the extra features. I also get the same message whenever I rotate the phone to landscape mode. Actually, the button that advertises for the full version did not go away even after buying it.",4,6,4.3.3,2016-12-06 07:52:03,,,newest,com.appxy.planner +Ken Gray,https://lh3.googleusercontent.com/a-/AOh14GiRE4dGrjzLnSw9wQRsZ2bcwLlvbCh9pvv6IbbNdw,"Very Helpful, The Best Yet !",4,4,4.3.3,2016-11-25 17:01:51,,,newest,com.appxy.planner +EonianDreamer,https://lh3.googleusercontent.com/a-/AOh14GgYr-ZTq0yhncBnG8gwo5t9GcsEB5nmvBMZrFP8cA,"I like the app, very helpful for lots of things, however I've lost my account twice. I've had to uninstall it and recreate my account. Very good otherwise tho",4,1,4.3.2,2016-11-05 16:04:23,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Nicely presented app. Efficient. Colourful.,4,1,4.3.2,2016-11-01 19:27:44,,,newest,com.appxy.planner +Angela Twomey,https://lh3.googleusercontent.com/a-/AOh14GhzoBnoQoQBcqGfqOHbI9R0Bno7lXpTpVR_xLDSEQ,I loved this app. Worked so great I purchased it. Now it has logged me out and says I don't exist.,4,2,4.3.2,2016-10-28 01:32:11,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,I don't know. It works good and I like that you can add notes to the task that is very helpful. I just kind of would like to have a better weekly view. But all in all it gets the job done.,4,1,4.2.2,2016-10-14 02:38:19,,,newest,com.appxy.planner +Fred Stratton Jr.,https://lh3.googleusercontent.com/a-/AOh14GiwteFOFXluvxLca7n5qbZKYnxemJgYWa2azFawiA,Like it a little even bought the pro version. But when I went to the website trying to find out how do you back up your data in the event something happens to your phone.,4,4,4.2.2,2016-09-19 04:26:25,,,newest,com.appxy.planner +Annisa Rachmantya,https://lh3.googleusercontent.com/-QYgrHGvLpCg/AAAAAAAAAAI/AAAAAAAABCo/AAKWJJNfUTu63O-Zsh9S_KbROEeC5nUWSw/photo.jpg,"I love this app and has been using it for more than a year, but lately it has bugs which changes the days when i opened it per-days. Please fix it",4,23,4.2.2,2016-09-13 03:36:59,,,newest,com.appxy.planner +Kait A,https://lh3.googleusercontent.com/-z1_Dne9VSDQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNLqK7u__BkA50nydUxzpQ_Qd5nyQ/photo.jpg,"It's a nice planner, I just prefer a different layout. I also don't care for the color.",4,0,,2016-09-07 22:03:40,,,newest,com.appxy.planner +Susie Cox,https://lh3.googleusercontent.com/a-/AOh14GiC7FHW9baQ-Js5D8M0m6gfcJfcbBigWckDCrzs3g,"I just installed this gem of an app this morning, and love its ease of use. However, there is a minor problem...the date in big numbers on the left is one day behind the monthly calendar.",4,4,4.2.1,2016-09-06 16:58:15,,,newest,com.appxy.planner +Roxanne Joyner,https://lh3.googleusercontent.com/-av3Ax_yxsEw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN6Yy_VbOUmOLWdjajez_BsRG-qUw/photo.jpg,Great app and easy to use. Would be great if there was a no date option on notes for like shopping lists ect. That aren't just for the day.,4,2,4.2.0,2016-08-30 13:01:17,,,newest,com.appxy.planner +Soyoung Kwon,https://lh3.googleusercontent.com/-iepf5Rbe5ZY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOC_YqZUjU9Kv_6zDPdBMVkL8WrSw/photo.jpg,"It's generally good, but screen rotation doesn't work. so, I can't use this app upside down in Galaxy Tab10. If this problem isn't solved, I won't pay for the next year. It would be great if this problem is solved!",4,0,4.1.1,2016-08-30 07:56:12,,,newest,com.appxy.planner +Jibak Chakma,https://lh3.googleusercontent.com/a-/AOh14GjiUS2yHclYyjJWv90km5E0kZtEPH0UaxBArO2N,it is helpful.,4,1,4.1.1,2016-08-13 16:57:05,,,newest,com.appxy.planner +Victor Li,https://lh3.googleusercontent.com/a-/AOh14GjMXzagJEp-pyO1NtU2tjpt27pX3Q4mysP0l6oV,"Love the layout, and automatic carryover of tasks to next day. One problem: I have installed Planner Pro on my iPad and my Android phone. The calendar events and tasks cannot be synced between my two devices. Very frustrated. Please add this sync feature soon.",4,0,,2016-08-05 21:16:48,,,newest,com.appxy.planner +Elizabeth Mitchell,https://lh3.googleusercontent.com/-_yRuYqQ8gv0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPJ0zMX85S1QNG7fgEJZVN5K-0HlA/photo.jpg,However there are a few bugs. Every so often one of my recurring tasks will appear twice on one day and I have to delete it. The synchronization with drop box isn't good enough to use on two devices. I would be useful if you could choose 'third Sunday of every month' for recurring tasks,4,0,,2016-07-26 11:39:19,,,newest,com.appxy.planner +Basma Sherif,https://lh3.googleusercontent.com/a-/AOh14Gj4DdjjZG084Gf4qHK_7Wr7-426v5MKsollsSuqD8Q,Good for studying,4,1,4.1.1,2016-07-21 04:22:40,,,newest,com.appxy.planner +Jordan Gardner,https://lh3.googleusercontent.com/a-/AOh14GigJKst0bJvqNiyzw102EV2zCeDgyLVngA0-hUutg,"I like this app and use it on my Android phone and iOS iPad. It's easy to use, don't need to buy anything, and is clear. I don't love how some tasks are harder to remember and the reminder isn't how I expected, but it's a good app.",4,0,3.2.3,2016-07-18 02:16:16,,,newest,com.appxy.planner +Grace Earnhart,https://lh3.googleusercontent.com/a-/AOh14GiTR_hrIgxBqEX_sd4VlDmDYlMtAoDV0Eu6x9BmGA,Haven't been using this app for long but it seems great so far. I LOVE that incompleted tasks roll over to the current day. I just wish you could attach attach photos or files to your notes. That would make this a 5-star review.,4,9,4.1,2016-07-13 20:15:19,,,newest,com.appxy.planner +Gene Lucio,https://lh3.googleusercontent.com/-g_jfvc38jTM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN0peqKxgEKYKzfGcER-1hXHNKsIQ/photo.jpg,Would love to be able to customize the app more. Need to add a dark theme and also add an agenda view.,4,1,4.0.1,2016-07-06 18:03:03,,,newest,com.appxy.planner +Monica Sohorca,https://lh3.googleusercontent.com/a-/AOh14GghM5fPSs1I0cu7rVh3P8QgsVsxfsSyJKs1iQCO-T0,"A today button would be helpful in the week view widget, so that you don't have to scroll back. And also the possibility to add more accounts. Are these features available in the pro version? Maybe the possibility to try it for a short period of time...",4,0,4.0.1,2016-07-06 07:03:00,,,newest,com.appxy.planner +Eugene Wong,https://lh3.googleusercontent.com/a-/AOh14GiuIseoAOAjD6ukWcDEiBr-dUyIfR5dEdQOrcZ0HlY,I liked it but is there a widget for the app?,4,0,4.0.1,2016-07-05 08:58:31,,,newest,com.appxy.planner +Masoud Dibayi,https://lh3.googleusercontent.com/a-/AOh14GgFa7OVRyeqE7ShtybZRW6OanU7c9h02zc4hN74,It was the best Just one thing is not good😑 That is not hard I need to reorder by finger rapid and soft Like wunderlist and others... (I don't wanna to go in task and change priority 🤦‍♂️ It's so hard to imagine 🤔that work was what?.. ) You are great ! Thank you.,5,0,4.7,2020-03-15 07:41:32,,,most_relevant,com.appxy.planner +Bob Thompson,https://lh3.googleusercontent.com/a-/AOh14GjhWCzqDfV_63Tl8sJh8fPCdrl2z6tBzIFc2mAbow,"You win, take my money. I have been using this app for many years and never bought the upgrade. I recently upgraded to the S10, and between Bixby, Google, and many planning apps, I just couldn't separate myself from this one. I simply have not found an app that's easier to add and complete tasks. Also the task widget is just hands down better than every other one out there. So fine, if you want to add fullscreen ads (and have the audacity to include sound) then take my money you can have it.",5,3,4.5.4,2019-03-27 01:47:14,,,most_relevant,com.appxy.planner +Rocky Ji,https://lh3.googleusercontent.com/-hq0hhXMDfnE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMvKlEnrv4D88o2bdENkPWQsU_6HQ/photo.jpg,"I have never seen a more beautifully designed calendar+planner app. Easy on eyes, strikes a great balance between functionality and simplicity (Google and Microsoft calendar apps should take inspiration from this) and ... just great. When I start earning I'm definitely going to buy this app just to show gratitude :)",5,14,4.5.4,2019-04-21 01:40:18,,,most_relevant,com.appxy.planner +Noah Carrico,https://lh3.googleusercontent.com/a-/AOh14Gj0BpDxNm3BemmjnytgIz_Cz7GuqxbND9UnFTvw0g,"This is the best planing app I could find on the play store. It syncs with my Google calendar enabling it to be an all inclusive planner, but also has lots of personal orginazational abilities. I am very impressed with this planner and would recommend it to anyone who likes to be very well planned.",5,97,4.6,2019-08-30 13:11:45,,,most_relevant,com.appxy.planner +stella plaku,https://lh3.googleusercontent.com/a-/AOh14GjBg7e6FlrqjdkoMustTZXWzAXRECgkZuUHBUtJBQ,"Amazing work done for this app. I have looked for a long time for an app which was fast, well developed and really easy to use. Keep this way always!",5,3,4.5.4,2018-11-21 08:43:17,,,most_relevant,com.appxy.planner +Journey of Light,https://lh3.googleusercontent.com/-mUv_AMd9bg8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPkTW4aLN33WBQJLpqF0pLMCar_qw/photo.jpg,"Best planner out there! I love the ability to take notes, journal, track projects, schedule events and to-dos all in one place. Excellent!!!",5,4,4.5.4,2019-08-31 17:55:42,,,most_relevant,com.appxy.planner +Tia Lenev,https://lh3.googleusercontent.com/a-/AOh14GiNjlaZHQWd_aOIcdlfZeYMkNQ870rzR82TVrx0bQ,"Amazing app, meets requirements, and even excels them. Well done on this app, and notifications, notes and reminders are all taken care if and safely delivered to you on time. ❤",5,0,,2018-10-15 14:19:34,,,most_relevant,com.appxy.planner +Bill Edwards,https://lh3.googleusercontent.com/a-/AOh14GgVs1mukA5i478VZFvLSXRtwrvfL4VNneY3Jjvs1Q,"Great support, ads were displayed, dev had it fixed in a day. Thank you, and great product. it's the closest thing to a Franklin Planner I have found.",5,79,4.5.7,2019-06-05 12:19:49,,,most_relevant,com.appxy.planner +Gaijin Bonsai,https://lh3.googleusercontent.com/-KfTsossKry0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNz0hmHkJP6L7XzCMoWZogsA32Yyg/photo.jpg,This is by far the best overall organizer app I have found. My only complaint would be the lack of multi tiered tasks.,5,0,,2019-04-23 21:34:26,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Helps me to organize my day when I don't have my physical planner at hand held me to remember important and vidal tasks that help sort out my family and daily routines while allowing to add onto my busy schedules throughout the week also able to sort out the important tasks by colour coordination . Thank you for the opportunity to have a great planner at my 👆 fingertips,5,19,4.5.4,2018-11-15 05:07:19,,,most_relevant,com.appxy.planner +Mildred Olima,https://lh3.googleusercontent.com/a-/AOh14Gjp4-gh6Vki6nvhXRAU4_daLoEK8H0HIYR_Z-zfVw,"I really like the planner, it helps me achieve my tasks, goals & have an avenue to scribe my ideas down. Double thumbs up!",5,0,4.5.4,2018-12-20 18:43:09,,,most_relevant,com.appxy.planner +Emma Stebbins,https://lh3.googleusercontent.com/-oCj6g6kQTSg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOgIWiDT4Z-87Zktme52iH6Dc7lBQ/photo.jpg,Would pay for this if there were even more additions and updates. Absolutely love it and wish they would develop it even further,5,0,4.5.4,2018-12-05 23:29:26,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I Like the clear & unclutter look, everything is organized..wished i could export it without having to pay extra.",5,0,4.5.3,2018-11-13 15:57:00,,,most_relevant,com.appxy.planner +Brenda Isbell,https://lh3.googleusercontent.com/-j_pxg16XHLw/AAAAAAAAAAI/AAAAAAAAAhM/AAKWJJPGjbZPVLgUMhj1QpiZDFYR8LurTA/photo.jpg,I've used planner pro for 5 years or more now. Couldn't do without it.,5,4,4.7,2019-09-26 16:49:11,,,most_relevant,com.appxy.planner +Caroline Wipf,https://lh3.googleusercontent.com/a-/AOh14Gii8pltyfg5BKOzpLz1g8h9V51PP3Isv5zVcyFLAQ,This aponit the best. I think it's great. I love how you can set tasks and reminders.,5,2,4.5.7,2019-08-03 23:24:35,,,most_relevant,com.appxy.planner +Jeferson Pabunan,https://lh3.googleusercontent.com/a-/AOh14GhLRhMHVymMS9QBsdDAp-pZVja4jBnmGloorbW02w,very nice app. i frequently used it since 2014. until now.,5,0,,2019-07-29 12:13:37,,,most_relevant,com.appxy.planner +Pamela T,https://lh3.googleusercontent.com/a-/AOh14GiNV-PjLpqdjarhd1pPzD48FkLx7WrRWgxjCfMK,Love this app! Just wish I could use it on my surface pro as well as my phone.,5,0,,2018-10-19 16:46:34,,,most_relevant,com.appxy.planner +The Book writers,https://lh3.googleusercontent.com/a-/AOh14Gh5EoBxB1V5PKNZm-y5fbJQzgDHkcvR9lLT8n3-bg,Handy for me when I need to plan out everything that needs to be done. 😊👍,5,0,,2018-10-18 16:44:58,,,most_relevant,com.appxy.planner +Timothy Samunyai,https://lh3.googleusercontent.com/a-/AOh14GgnrpufDmGRiK_UnnVH8bkkID5jr5HEMGm591FL,Keeps me organised very happy with would be even better if it had functions to support Dsylexia sufferes.,5,0,4.5.2,2018-11-11 03:42:38,,,most_relevant,com.appxy.planner +Kaliph Allah,https://lh3.googleusercontent.com/a-/AOh14GgPwFgDUgjrKQIt1fYGViVOk_IX8MuZRqLVh3OpVA,Very easy to use,5,0,,2018-09-25 14:38:46,,,most_relevant,com.appxy.planner +amirbadang,https://lh3.googleusercontent.com/-CM2FcrUoE_o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOukqv92sOJgWZKZONxOCdL_bpFWw/photo.jpg,Very useful apps. You must try it,5,0,4.5.4,2018-12-11 10:19:43,,,most_relevant,com.appxy.planner +Howard Richard Allen,https://lh3.googleusercontent.com/a-/AOh14GhL-18YwXUCJSEo4bRhe2bo_6pIe5w3qJ1PT-6DTw,Love great date keeper,5,0,4.7.2,2020-03-16 01:53:59,,,most_relevant,com.appxy.planner +Ashton Elizabeth Oliver,https://lh3.googleusercontent.com/a-/AOh14Gj0p5Y1dt6hJSeC6FFh-P58EWaFgpbWdDdaj6Om,This app is super helpful! 10/10,5,4,4.5.8,2019-07-03 16:51:52,,,most_relevant,com.appxy.planner +Winning Formula Ganesha!,https://lh3.googleusercontent.com/a-/AOh14GitqlD12GbmjULqWUOUQUkxRtH5syTd6tfpP_PaTg,its ok But we can not undestad repeated task shedule,5,0,4.5.4,2019-01-07 14:50:35,,,most_relevant,com.appxy.planner +Cs Sanwal,https://lh3.googleusercontent.com/a-/AOh14GiNV8fBQnnFDnXYNd-3B2lC8fYu5teof5pwPNQdIUM,user friendly. nice.,5,0,4.5.4,2019-01-26 03:55:31,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,My favorite planner 🙂,5,1,4.7,2019-11-05 14:43:48,,,most_relevant,com.appxy.planner +Mirella Lopez,https://lh3.googleusercontent.com/a-/AOh14GiSExbBe5LffYIFf4WVgmr0BjeGtGKf_HWwBFXw6A,I love it help me organiza my plans,5,0,4.4.1,2018-09-12 21:16:41,,,most_relevant,com.appxy.planner +For Only You,https://lh3.googleusercontent.com/-Zbo8WGiEzLk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNmVjG1ujOlnFeMcQWFzSJ3SoAjUQ/photo.jpg,Great for stalking,5,0,,2019-12-08 20:10:24,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,I love this app,5,0,,2018-09-15 00:42:14,,,most_relevant,com.appxy.planner +Andres Santillan,https://lh3.googleusercontent.com/-qU7t2vP2Ki4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPMAhSSG-rwv9lxlOS6bWcm6xEB8g/photo.jpg,It's a good app.,5,0,4.0.1,2018-10-23 01:11:20,,,most_relevant,com.appxy.planner +Lori Carpenter,https://lh3.googleusercontent.com/-AlkUhi25ghs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMSakLejUgqXT7hfaHn8LY-MamBlg/photo.jpg,it is so good,5,0,,2019-03-30 04:38:20,,,most_relevant,com.appxy.planner +Niresh Ramsoroop,https://lh3.googleusercontent.com/-Lry-TyKhqTM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPvblLbUASYR3FJhTaAq-YMyKSkaQ/photo.jpg,"Great , use it daily . Quick and easy when i'm in a hurry. Would be nice to have a vehicle checklists ...etc",5,0,4.7.2,2020-04-05 07:48:36,,,most_relevant,com.appxy.planner +Jamie Davies,https://lh3.googleusercontent.com/-YkJRMz-X_Ho/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOBkl0oRwoW9c46XrndKy5upJg6nA/photo.jpg,Xxx,5,2,4.7.1,2020-02-16 13:21:21,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Good simple screen, best I've seen for a while. Also brings together Calendar, Tasks and Notes.",5,1,4.7,2019-10-04 21:26:27,,,most_relevant,com.appxy.planner +Marcel Hicks,https://lh3.googleusercontent.com/-CuVu3wVOmXg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMhtjkZx7Kid5T9PykfWvbs9NuAmw/photo.jpg,Great app,5,1,4.7,2019-11-19 03:17:33,,,most_relevant,com.appxy.planner +Julie Graham,https://lh3.googleusercontent.com/a-/AOh14GjnjQgCnqQLrVspVnH1Scp7Db_zI6fPPYzxn2f_,Brilliant,5,1,4.7,2019-10-15 00:35:46,,,most_relevant,com.appxy.planner +Edwin Quinonez,https://lh3.googleusercontent.com/a-/AOh14GjwYO9lkRsiCaSkX2U7uub1m3KT-J3QXLiDQY1Qog,Excellent,5,0,4.6,2019-08-29 23:05:57,,,most_relevant,com.appxy.planner +Iman Talaei,https://lh3.googleusercontent.com/a-/AOh14GisDJmvQeCmV3TQ07BxEwggi13jjahk-FlVyevjWA,Very useful,5,0,4.5.7,2019-09-07 05:09:47,,,most_relevant,com.appxy.planner +MM VIdeography,https://lh3.googleusercontent.com/a-/AOh14GiBm_UyWj6E48LRa3-n-sya0KEcv3tLZ7w-wO6h6A,vb,5,0,4.5.4,2019-02-25 03:09:18,,,most_relevant,com.appxy.planner +Joe Vela,https://lh3.googleusercontent.com/-Tg-j5YZIUTc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPAZDU5jJTPd5T7jiaI4tFE_IMF9Q/photo.jpg,excellent app.,5,0,4.5.4,2019-03-06 11:12:50,,,most_relevant,com.appxy.planner +subscribe four n0 reason plase,https://lh3.googleusercontent.com/a-/AOh14GhikRsrP4ARCNzSx0iBiFwOBQANOSF-FFTZZEVrqQ,Sooow good,5,0,4.5.4,2018-11-25 19:49:13,,,most_relevant,com.appxy.planner +ራማ ፖሮዳክሽን,https://lh3.googleusercontent.com/a-/AOh14GjQe0fuBqjR-2J2fPDkh1C6ImGXMEpdkdYovois,good app,5,0,4.5.4,2019-04-07 13:26:48,,,most_relevant,com.appxy.planner +MUTHURAJA N,https://lh3.googleusercontent.com/a-/AOh14Gj7-QcUBysBiBIrhbNb5_stLr7n1JzlN9a7S2a0,good,5,0,4.5.4,2019-07-18 17:36:39,,,most_relevant,com.appxy.planner +Vic Sassone,https://lh3.googleusercontent.com/a-/AOh14Ggp8j9a6xGy49uxfs8JrSu6JoD9snzuPoK0EuT_fw,"I have long been an advocate of the Stephen Covey 7 Habits Weekly Planner +approach. This is the first app I've found that gives me the capability I +need to do that well. I use the ""projects"" section to set up my ""roles and +goals,"" and then transfer them to my weekly calendar. My only wish is that +the tablet and phone app worked with their desktop app; it does not, as far +as I can tell.",5,2,4.4.1,2018-06-21 13:20:44,,,most_relevant,com.appxy.planner +Ana Beatriz Delavia Thomasi,https://lh3.googleusercontent.com/a-/AOh14Gj-ROz3gWv7eEEJVIUrUn-XjmWU0CIdUnL0BU5T,"Hi, I love this app and have been using it for a while now (it is the only +one that have calendar and to-do fit togheter), the only thing that I would +add for my needs is the possibility to share with others our activities. +Even in the paid version seems to not have this feature. Are you guys +planning to add it on?",5,2,4.4.1,2018-06-04 17:08:47,,,most_relevant,com.appxy.planner +D a y a n e,https://lh3.googleusercontent.com/a-/AOh14GiPzcIRgzgStlR12JwLbcFUc-U2cOAtFI-mytjCZa0,"I like using this app, helps me write when I most need it and has helped me +use it whenever i can't explain or Express myself. So thank you 🌿❤",5,0,4.4.1,2018-06-25 07:38:10,,,most_relevant,com.appxy.planner +Susan Matthews,https://lh3.googleusercontent.com/a-/AOh14GjF6uhQcGWqc9JHAdqd_tXWU0p9ZV31vXIt_--g,Needs A Recipe Section And Separate Lists For Different Members Of Family.,5,2,4.4.1,2018-04-02 02:31:50,,,most_relevant,com.appxy.planner +Ivana Pisanjuk,https://lh3.googleusercontent.com/a-/AOh14GhF3MtZdkoWBneQkm7A6_4j4Gwql_9jCiX7bua-Gp0,"It's very optimised for everyday notifications, notes, list making and planning in general. The widget is quite handy, offering a preview of all the day of the week and tasks and events you have written down! My recommendation.",5,0,4.4.1,2018-04-13 09:13:17,,,most_relevant,com.appxy.planner +Tasha Cid-Pita Wilson,https://lh3.googleusercontent.com/a-/AOh14GgqmWrufF_uE_bq4vJnnIEJKseKnoYkeV-2xL59yw,"This calendar is lovely to use. Minimalist, asthetically pleasing and +exactly the functions (and view options) I was looking for. Love it!",5,0,4.4.1,2018-04-20 06:03:47,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,It is a great app and it helps me keep my schoolwork on time,5,2,4.4.1,2018-04-10 04:39:05,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I love this app, it combined of my calendars and keeps me on task.",5,1,4.4.1,2018-06-13 19:57:16,,,most_relevant,com.appxy.planner +Makayla Click,https://lh3.googleusercontent.com/-uvuJPFzgqUg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOlR12H26k3SjV0tPnmLuXTSIXe1g/photo.jpg,A great way to set reminders for birthdays or any type of event,5,1,4.4.1,2018-04-21 01:28:40,,,most_relevant,com.appxy.planner +Suj Lee,https://lh3.googleusercontent.com/-Ho2dcqnVHbU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOy00AaZD2P2mYCcKCFxd4-zm7kkA/photo.jpg,Hope there'll be a tab for Events,5,1,4.4.1,2018-04-14 22:56:46,,,most_relevant,com.appxy.planner +daphnyanne,https://lh3.googleusercontent.com/a-/AOh14GgoPa2K45D488XlukD99JjtV6mZEL90sIOBFOPbfg,I'll try this one,5,0,4.4.1,2018-07-09 10:17:58,,,most_relevant,com.appxy.planner +Kunal Singh,https://lh3.googleusercontent.com/a-/AOh14Gjt6dSIqBmlIlzr8Cbss2MNQHvI_ywf6RMdfUf37SE,Exactly what I was looking for... Needs improvement in terms of features.,5,0,4.4.1,2018-06-02 08:36:44,,,most_relevant,com.appxy.planner +salim mohammed,https://lh3.googleusercontent.com/-E2f5FVAgJGc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPmgoHFBpRBiRxv1_rMxvD1IJo1VA/photo.jpg,This is what I was looking for..thanks guys,5,0,4.4.1,2018-04-14 08:35:36,,,most_relevant,com.appxy.planner +Jillian Bowden,https://lh3.googleusercontent.com/-X3YFuu-vqGQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOUO8irDhjtudh8Sp6bI_RCuT-SQA/photo.jpg,Easy to use and easy to keep organized!,5,0,4.4.1,2018-08-16 21:52:08,,,most_relevant,com.appxy.planner +snipehunterue506,https://lh3.googleusercontent.com/-lwlgwP9SebY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPTyWyA0WkWilFe2pwR3RIvLV8uHg/photo.jpg,It was so easy to use,5,0,4.4.1,2018-03-28 10:39:36,,,most_relevant,com.appxy.planner +Casandra Douglas,https://lh3.googleusercontent.com/a-/AOh14GiiIpdc2rZp8Plz33a3fcApT29zHc9hcLYoBotfgg,Awesome creativity!,5,0,4.4.1,2018-08-30 22:08:42,,,most_relevant,com.appxy.planner +Carlos Picarra,https://lh3.googleusercontent.com/a-/AOh14Gj5sR-enKvV5_tPwWUI420xm08kaYKHCQxKmJYlLQ,Reached to my satisfaction,5,0,4.4.1,2018-05-04 20:39:17,,,most_relevant,com.appxy.planner +charity peters,https://lh3.googleusercontent.com/-VMuQgUBdfxo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOUXIP8e8FdsTuI05SjDBD5UJ_b8w/photo.jpg,"House,👩🏾",5,0,4.4.1,2018-05-01 17:43:54,,,most_relevant,com.appxy.planner +Jaylu,https://lh3.googleusercontent.com/a-/AOh14GiB8IN2V2oHBefqKm0bEJkIs1TienIu1ti5MGAURw,Like,5,0,4.4.1,2018-09-25 12:28:08,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Awesome,5,1,4.4.1,2018-04-21 13:44:38,,,most_relevant,com.appxy.planner +ram kinhale,https://lh3.googleusercontent.com/-_o5YYWONXxg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMfv0uR9lKqGiIM98utTjwgXfsTug/photo.jpg,good,5,0,4.4.1,2019-03-10 03:37:03,,,most_relevant,com.appxy.planner +Kevin Lapham,https://lh3.googleusercontent.com/a-/AOh14Gg_7c1c0XH4cfV1_UBdceq-RMtXJ2P0kW_77b-mBw,Great,5,0,4.4.1,2018-03-28 16:17:55,,,most_relevant,com.appxy.planner +Mjay M,https://lh3.googleusercontent.com/a-/AOh14GhlGdl4naYfrIYzcUrPmtI8gDrxsb-mk5UhUhOH,"Great integration on Google Apps, especially Calendar. Attachs pictures, allows you to prioritize. Great to have. My friends have been asking, ""How do you Remember everything""? It's ProPlanner.",5,1,4.4.1,2018-03-22 13:03:49,,,most_relevant,com.appxy.planner +Doug Helm,https://lh3.googleusercontent.com/-7fvyOI9Syww/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNG0TMD3q1t8RuoPAbOUmawkV_gGg/photo.jpg,great to help organize,5,1,4.4.1,2018-03-23 22:42:35,,,most_relevant,com.appxy.planner +Lynae Edmunds,https://lh3.googleusercontent.com/a-/AOh14GjCg-bXT8MLJM6vy7JDyG2fQRi39D_5sgrYptSXxA,"I'm obsessed with this app. I LOVE that you can make separate checklists for different types of tasks. I love having the ability to categorize my tasks/chores so I don't end up getting overwhelmed by the long list. Not only that, but you can sort your lists by due date, priority, or in alphabetical order and set tasks to repeat on certain days of the week instead of every so many days. The widgets are gorgeous and it's so easy to use the checklists without opening the app. I've never been so on top of things. Oh AND the calendar links to Google so I don't ever have to worry about losing or transferring events. This app is exactly what I've been looking for. I'm so glad I finally found it!!",5,254,4.3.7,2017-08-06 17:19:33,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"The planner pro is very helpful and works as it mentioned. Addition of a black background will makes the app more attractive Other issue i encountered is when ever set a passcode the app log out automatically showing a dialouge box that your password has been changed , and when i try to log in using password on next screen it prompt for passcode and the app don't open with Correct passcode.so now i set passcode and password same so now the app works fine.",5,100,4.3.7,2017-04-09 06:43:49,,,most_relevant,com.appxy.planner +Andrew Orr,https://lh3.googleusercontent.com/-pxK4IZK7jlw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJN0Py_fsarqw7u2cAXa01o-daiO6Q/photo.jpg,Is there any way to link the planner with your laptop? If my phone breaks or is lost will I lose everything in the planner?,5,18,4.3.7,2017-05-07 10:09:28,,,most_relevant,com.appxy.planner +Beth Evers,https://lh3.googleusercontent.com/-Yihpvxfmod8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNFZ53WEEml8Fwfs5h2m5bqGLSXww/photo.jpg,I really find this very useful and easy to use. Very user friendly. Only problem is there is no way to delete all completed tasks...it has to be done one by one. Any chance of fixing that?,5,0,4.3.7,2018-02-04 17:12:24,,,most_relevant,com.appxy.planner +Saumya Roy,https://lh3.googleusercontent.com/-AENNi_QobmQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMwQKHUQsgQ527qwqZSDdo6V03kiQ/photo.jpg,"Best app to keep me up to date. Helps me remember all my tasks along with their due dates. I tried many apps to help me remember my tasks( as my memory is a bit weak), but I must say that this app has best helped me. I just loved it.",5,0,4.3.7,2018-01-06 10:58:31,,,most_relevant,com.appxy.planner +Melody Garcia,https://lh3.googleusercontent.com/-qW0t_-L8WJE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJORT1vK4ih3xtKsLTHTayjzQS2tsA/photo.jpg,"In love with this app! I use it everyday, all the time. I have bad memory, so this app always helps me at keeping track of things!",5,2,4.3.7,2017-09-03 03:08:46,,,most_relevant,com.appxy.planner +Daniel Sergilov,https://lh3.googleusercontent.com/a-/AOh14GhR-S5ugvAabPc-IGZjlpwNs6yR2KNJmuRnJgnDIg,Absolutely amazing. The only planner app I can actually successfully use. I'm really bad with these and my brain seems to like this one's straightforward interface.,5,1,4.3.7,2017-09-23 22:23:14,,,most_relevant,com.appxy.planner +David McCumber,https://lh3.googleusercontent.com/a-/AOh14GimKSPRQru3UiO-LN4SlmNmJ_OUAJO8GeQMUhZNWQ,Almost perfect. Simple to use. I like that you can add tasks for each day. However you don't get the week view on the free version. Annoying!,5,20,4.3.7,2017-03-28 13:31:00,,,most_relevant,com.appxy.planner +Ahmed elsalamouni,https://lh3.googleusercontent.com/-9QSxVUhCoDI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOKLqlbVHblVcTmXv9WXVVx1TyS5w/photo.jpg,Really amazing and helped me sooo much just i hope that it can be sharable by more than one person for group planning one line and it will be world organizer or making groups ... thanx for developers,5,6,4.3.7,2018-02-04 22:57:09,,,most_relevant,com.appxy.planner +Rey G,https://lh3.googleusercontent.com/-pODdaH2EQk8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJORH10vCkZh8rhMiYZWpznuL6Ux6w/photo.jpg,"This app is great! Love how it harnesses events,task, and notes all in one simple interface! I would love to see a Google chrome version! Wouldn't suggest changing much, it would just be more convenient to plan everything out using a desktop or laptop rather than using a phone or tablet. Also, the widget functions need some improvement. If possible it would be nice to see a daily widget with events tasks and notes for the day. Overall really like the app!",5,0,4.3.7,2018-01-26 06:14:44,,,most_relevant,com.appxy.planner +Riddah Shahed,https://lh3.googleusercontent.com/a-/AOh14Gj2lBDbFD74p3Wbn2bEHMWAHBHZbCeRvzQloeTlqg,This app is great. It keeps me on track with things i need to do! Works great for me and i dont have any major problems at all.,5,12,4.3.7,2017-04-12 12:24:39,,,most_relevant,com.appxy.planner +celeste,https://lh3.googleusercontent.com/-6lAl6oPtWGc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOm1AsGrsoanvys6xBBaYbkA2Zv0w/photo.jpg,I had heard good thing so I looked at it and it was so easy to store all of my plans due to the fact that I have such a busy week,5,7,4.3.7,2017-04-17 04:01:24,,,most_relevant,com.appxy.planner +Gurjit Dhaliwal,https://lh3.googleusercontent.com/a-/AOh14GiHRqt6uTiaSr36NHrmdakOU2wtu-kl53p3paiLfQ,I love the app! I am a big procrastinater and this makes me so much more organized! It tells me when to move on and doesn't waste my time! THANK YOU!!😊😊😊😁😁😁,5,0,4.3.7,2017-10-11 04:23:46,,,most_relevant,com.appxy.planner +*Determined 2Win*,https://lh3.googleusercontent.com/a-/AOh14GgxTlq-5ReH27S4cuHE9PW9dE6v8PnUHDHvMJjo,This is just what I was needing! I love it! Only one thing I'd change: please make the colored calendar dots larger!!! Thanks,5,1,4.3.7,2017-10-07 06:29:19,,,most_relevant,com.appxy.planner +Christie Valda,https://lh3.googleusercontent.com/a-/AOh14GjrPbh5-tFSzpdWBi8xnnsEhgAvhdtHrpnJdFWXtg,"This is awesome, my life is easily organised with this app, and I could look at everything and visualize in a whole calendar. :D",5,3,4.3.7,2017-07-23 19:14:02,,,most_relevant,com.appxy.planner +Eshmaa Shettyy,https://lh3.googleusercontent.com/a-/AOh14GhzY2WoFdL0uOXxtkck3JXK796VpLGN6wdoCiU4LWs,It's an amazing app. Does what it promises. Easy to use and a cool feature is it pushes due tasks to the next day which helps a lot.,5,9,4.3.7,2017-06-05 02:12:40,,,most_relevant,com.appxy.planner +Gretchen L. Taylor,https://lh3.googleusercontent.com/a-/AOh14Gi4F27C5Ayd4KkGplVOQfFX-ToylT0e2Fajoc6I7Q,Just installed and all of my events seamlessly transferred to this planner. If I could give 100 stars I would.,5,3,4.3.7,2017-06-27 17:36:16,,,most_relevant,com.appxy.planner +Nathan Mark,https://lh3.googleusercontent.com/-F3DoICdC6qs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPOCyweHtUGk21Sj7ighsM3bPHYUg/photo.jpg,"After trying about 6 other similar apps, I bought this one again. Had it for iPhone, now on Android. I like the option to prioritize my tasks.",5,1,4.3.7,2017-07-27 15:11:09,,,most_relevant,com.appxy.planner +Guadalupe Gonzales,https://lh3.googleusercontent.com/a-/AOh14Ggg55fRKzXer45GsI14bFwZ-CevT42svsu79xpF,Was able to get every thing done that I needed in a short simple manner thanks it worked for me!,5,2,4.3.7,2017-06-08 22:53:40,,,most_relevant,com.appxy.planner +Vern Eckel,https://lh3.googleusercontent.com/a-/AOh14Gj6x0mAR9DqtezjHcq3NjYcRmq1tXbz2_5qj7ji,Good app. I use it to daily to keep track of everything. It works well.,5,4,4.3.7,2017-06-05 04:36:23,,,most_relevant,com.appxy.planner +Third Bow,https://lh3.googleusercontent.com/a-/AOh14GjBT7P842Diz9PgdU-xaSud8RiabcC2Ws96P5Wg,Very helpful so i can remember what to do on that day!,5,10,4.3.7,2017-05-03 02:20:21,,,most_relevant,com.appxy.planner +Saw Nerdar,https://lh3.googleusercontent.com/a-/AOh14Gh9533es5kHRnufsmdGvqXnUdOHudBIziJRQit3Tw,Lovely. Just a question. Can we have a desktop version? Is there any plan?,5,2,4.3.7,2017-09-06 08:56:43,,,most_relevant,com.appxy.planner +Tharindu Sathischandra,https://lh3.googleusercontent.com/a-/AOh14GhrB2FFI1SQP9qAg7KIz50hWs57eWKTpVQGPJREDA,A great supportive tool for Google calendar. Love it!,5,4,4.3.7,2017-06-30 12:23:36,,,most_relevant,com.appxy.planner +Charlotte Harrisonsheffield,https://lh3.googleusercontent.com/a-/AOh14GhDdmdM9QYCJjMKhWox4jfA6ylkpMAR8A6xFVL82g,Dose what it says on the tin 🍂 It would be great if they could add a timetable page to it otherwise I think it's very useful.,5,0,4.3.7,2017-10-18 11:53:24,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Good features and easy to use. I hope I can see my tasks and events at the lock screen. Thanks.,5,1,4.3.7,2017-11-20 09:47:02,,,most_relevant,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,The next best thing to the Classic Planner.,5,9,4.3.7,2017-06-18 11:37:36,,,most_relevant,com.appxy.planner +alaa jaddou,https://lh3.googleusercontent.com/a-/AOh14GjgjQC4uOyjjCTSSsocvi0d1ngVboxVyl7T9nY9-Q,Very good tool to organize my days .. thank,5,5,4.3.7,2017-05-15 20:04:03,,,most_relevant,com.appxy.planner +The Bradshaw's,https://lh3.googleusercontent.com/a-/AOh14Gg7UETp7mY0JpX8O_0Jnb_dgLCtxMu_v9N7wpaqjw,"I love this. I use it all the time to keep track of client appointments, as well as keep notes of events. Extremely easy to use and set up. A+",5,0,4.3.7,2018-03-16 19:12:42,,,most_relevant,com.appxy.planner +Arvind Ramshetty,https://lh3.googleusercontent.com/a-/AOh14GiGUH4FwdBM0XwIu7cxihhktIUEQwtrdtgd7pTK,Allow notes and tasks sync to Google drive with date & time stamps.,5,5,4.3.7,2017-05-22 07:51:50,,,most_relevant,com.appxy.planner +Abhay Shah,https://lh3.googleusercontent.com/a-/AOh14GgMJCBZmRPY9_fotdyfDs25A3OR6QqBI5cNYtXs1g,Just the app I wanted! Perfect...,5,5,4.3.7,2017-07-16 17:21:03,,,most_relevant,com.appxy.planner +ka lam cheng,https://lh3.googleusercontent.com/-HKCBmWf02SY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJO9caXtB3gj8xV4VZEZMuQgOsG0fA/photo.jpg,"Overall it is a great app but i need to open the app everytime i need to check something, i hope this app makes a widget to fit in the home screen",5,0,4.3.7,2017-10-08 23:12:39,,,most_relevant,com.appxy.planner +Ysm Johan,https://lh3.googleusercontent.com/a-/AOh14GgmdbH7BXTsMj4uB13fRDfBa8g8l1gYcthR0OUS7yY,It sometimes crashes a lot!!,5,0,4.3.7,2018-02-15 10:45:22,,,most_relevant,com.appxy.planner +Kiana Coldrick,https://lh3.googleusercontent.com/a-/AOh14GgVRenbbhPjpEUajp9LXnvPxBqzHpT9RwD-uU723w,Really useful and easy to use. Would be great if you could attach pictures to the notes section,5,0,4.3.7,2018-02-28 11:32:16,,,most_relevant,com.appxy.planner +Niresh Ramsoroop,https://lh3.googleusercontent.com/-Lry-TyKhqTM/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPvblLbUASYR3FJhTaAq-YMyKSkaQ/photo.jpg,"Great , use it daily . Quick and easy when i'm in a hurry. Would be nice to have a vehicle checklists ...etc",5,0,4.7.2,2020-04-05 07:48:36,,,newest,com.appxy.planner +Howard Richard Allen,https://lh3.googleusercontent.com/a-/AOh14GhL-18YwXUCJSEo4bRhe2bo_6pIe5w3qJ1PT-6DTw,Love great date keeper,5,0,4.7.2,2020-03-16 01:53:59,,,newest,com.appxy.planner +Masoud Dibayi,https://lh3.googleusercontent.com/a-/AOh14GgFa7OVRyeqE7ShtybZRW6OanU7c9h02zc4hN74,It was the best Just one thing is not good😑 That is not hard I need to reorder by finger rapid and soft Like wunderlist and others... (I don't wanna to go in task and change priority 🤦‍♂️ It's so hard to imagine 🤔that work was what?.. ) You are great ! Thank you.,5,0,4.7,2020-03-15 07:41:32,,,newest,com.appxy.planner +Jamie Davies,https://lh3.googleusercontent.com/-YkJRMz-X_Ho/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOBkl0oRwoW9c46XrndKy5upJg6nA/photo.jpg,Xxx,5,2,4.7.1,2020-02-16 13:21:21,,,newest,com.appxy.planner +For Only You,https://lh3.googleusercontent.com/-Zbo8WGiEzLk/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNmVjG1ujOlnFeMcQWFzSJ3SoAjUQ/photo.jpg,Great for stalking,5,0,,2019-12-08 20:10:24,,,newest,com.appxy.planner +Marcel Hicks,https://lh3.googleusercontent.com/-CuVu3wVOmXg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMhtjkZx7Kid5T9PykfWvbs9NuAmw/photo.jpg,Great app,5,1,4.7,2019-11-19 03:17:33,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,My favorite planner 🙂,5,1,4.7,2019-11-05 14:43:48,,,newest,com.appxy.planner +Julie Graham,https://lh3.googleusercontent.com/a-/AOh14GjnjQgCnqQLrVspVnH1Scp7Db_zI6fPPYzxn2f_,Brilliant,5,1,4.7,2019-10-15 00:35:46,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"Good simple screen, best I've seen for a while. Also brings together Calendar, Tasks and Notes.",5,1,4.7,2019-10-04 21:26:27,,,newest,com.appxy.planner +Charity Peters,https://lh3.googleusercontent.com/-QWgftt0NMRw/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPj9G6QDZsk0ZKgBQqQvABiUUT6Pg/photo.jpg,My dày,5,0,,2019-09-28 16:06:46,,,newest,com.appxy.planner +Brenda Isbell,https://lh3.googleusercontent.com/-j_pxg16XHLw/AAAAAAAAAAI/AAAAAAAAAhM/AAKWJJPGjbZPVLgUMhj1QpiZDFYR8LurTA/photo.jpg,I've used planner pro for 5 years or more now. Couldn't do without it.,5,4,4.7,2019-09-26 16:49:11,,,newest,com.appxy.planner +Iman Talaei,https://lh3.googleusercontent.com/a-/AOh14GisDJmvQeCmV3TQ07BxEwggi13jjahk-FlVyevjWA,Very useful,5,0,4.5.7,2019-09-07 05:09:47,,,newest,com.appxy.planner +Journey of Light,https://lh3.googleusercontent.com/-mUv_AMd9bg8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPkTW4aLN33WBQJLpqF0pLMCar_qw/photo.jpg,"Best planner out there! I love the ability to take notes, journal, track projects, schedule events and to-dos all in one place. Excellent!!!",5,4,4.5.4,2019-08-31 17:55:42,,,newest,com.appxy.planner +Jeremey Evan Day,https://lh3.googleusercontent.com/a-/AOh14Ggekh9Okm3vByRVqIRnOKSnnCA2HW2GX7YQweeM5Q,Great job,5,0,,2019-08-31 15:20:38,,,newest,com.appxy.planner +Noah Carrico,https://lh3.googleusercontent.com/a-/AOh14Gj0BpDxNm3BemmjnytgIz_Cz7GuqxbND9UnFTvw0g,"This is the best planing app I could find on the play store. It syncs with my Google calendar enabling it to be an all inclusive planner, but also has lots of personal orginazational abilities. I am very impressed with this planner and would recommend it to anyone who likes to be very well planned.",5,97,4.6,2019-08-30 13:11:45,,,newest,com.appxy.planner +Edwin Quinonez,https://lh3.googleusercontent.com/a-/AOh14GjwYO9lkRsiCaSkX2U7uub1m3KT-J3QXLiDQY1Qog,Excellent,5,0,4.6,2019-08-29 23:05:57,,,newest,com.appxy.planner +Maegan Burger,https://lh3.googleusercontent.com/-UI2JBr0LaQc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPwUPufobKYVElVMoTYmxQF6-_3dw/photo.jpg,love it,5,0,,2019-08-10 20:29:55,,,newest,com.appxy.planner +Caroline Wipf,https://lh3.googleusercontent.com/a-/AOh14Gii8pltyfg5BKOzpLz1g8h9V51PP3Isv5zVcyFLAQ,This aponit the best. I think it's great. I love how you can set tasks and reminders.,5,2,4.5.7,2019-08-03 23:24:35,,,newest,com.appxy.planner +Jeferson Pabunan,https://lh3.googleusercontent.com/a-/AOh14GhLRhMHVymMS9QBsdDAp-pZVja4jBnmGloorbW02w,very nice app. i frequently used it since 2014. until now.,5,0,,2019-07-29 12:13:37,,,newest,com.appxy.planner +MUTHURAJA N,https://lh3.googleusercontent.com/a-/AOh14Gj7-QcUBysBiBIrhbNb5_stLr7n1JzlN9a7S2a0,good,5,0,4.5.4,2019-07-18 17:36:39,,,newest,com.appxy.planner +Ashton Elizabeth Oliver,https://lh3.googleusercontent.com/a-/AOh14Gj0p5Y1dt6hJSeC6FFh-P58EWaFgpbWdDdaj6Om,This app is super helpful! 10/10,5,4,4.5.8,2019-07-03 16:51:52,,,newest,com.appxy.planner +Bill Edwards,https://lh3.googleusercontent.com/a-/AOh14GgVs1mukA5i478VZFvLSXRtwrvfL4VNneY3Jjvs1Q,"Great support, ads were displayed, dev had it fixed in a day. Thank you, and great product. it's the closest thing to a Franklin Planner I have found.",5,79,4.5.7,2019-06-05 12:19:49,,,newest,com.appxy.planner +Jerry Raphy,https://lh3.googleusercontent.com/-iN98o92Loh8/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPE1NMKm5B3YSsqhZzm4GnatD98dA/photo.jpg,😍,5,0,,2019-06-02 18:35:11,,,newest,com.appxy.planner +Gaijin Bonsai,https://lh3.googleusercontent.com/-KfTsossKry0/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNz0hmHkJP6L7XzCMoWZogsA32Yyg/photo.jpg,This is by far the best overall organizer app I have found. My only complaint would be the lack of multi tiered tasks.,5,0,,2019-04-23 21:34:26,,,newest,com.appxy.planner +Rocky Ji,https://lh3.googleusercontent.com/-hq0hhXMDfnE/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMvKlEnrv4D88o2bdENkPWQsU_6HQ/photo.jpg,"I have never seen a more beautifully designed calendar+planner app. Easy on eyes, strikes a great balance between functionality and simplicity (Google and Microsoft calendar apps should take inspiration from this) and ... just great. When I start earning I'm definitely going to buy this app just to show gratitude :)",5,14,4.5.4,2019-04-21 01:40:18,,,newest,com.appxy.planner +ራማ ፖሮዳክሽን,https://lh3.googleusercontent.com/a-/AOh14GjQe0fuBqjR-2J2fPDkh1C6ImGXMEpdkdYovois,good app,5,0,4.5.4,2019-04-07 13:26:48,,,newest,com.appxy.planner +Lori Carpenter,https://lh3.googleusercontent.com/-AlkUhi25ghs/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMSakLejUgqXT7hfaHn8LY-MamBlg/photo.jpg,it is so good,5,0,,2019-03-30 04:38:20,,,newest,com.appxy.planner +Bob Thompson,https://lh3.googleusercontent.com/a-/AOh14GjhWCzqDfV_63Tl8sJh8fPCdrl2z6tBzIFc2mAbow,"You win, take my money. I have been using this app for many years and never bought the upgrade. I recently upgraded to the S10, and between Bixby, Google, and many planning apps, I just couldn't separate myself from this one. I simply have not found an app that's easier to add and complete tasks. Also the task widget is just hands down better than every other one out there. So fine, if you want to add fullscreen ads (and have the audacity to include sound) then take my money you can have it.",5,3,4.5.4,2019-03-27 01:47:14,,,newest,com.appxy.planner +ram kinhale,https://lh3.googleusercontent.com/-_o5YYWONXxg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJMfv0uR9lKqGiIM98utTjwgXfsTug/photo.jpg,good,5,0,4.4.1,2019-03-10 03:37:03,,,newest,com.appxy.planner +Joe Vela,https://lh3.googleusercontent.com/-Tg-j5YZIUTc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPAZDU5jJTPd5T7jiaI4tFE_IMF9Q/photo.jpg,excellent app.,5,0,4.5.4,2019-03-06 11:12:50,,,newest,com.appxy.planner +MM VIdeography,https://lh3.googleusercontent.com/a-/AOh14GiBm_UyWj6E48LRa3-n-sya0KEcv3tLZ7w-wO6h6A,vb,5,0,4.5.4,2019-02-25 03:09:18,,,newest,com.appxy.planner +Cs Sanwal,https://lh3.googleusercontent.com/a-/AOh14GiNV8fBQnnFDnXYNd-3B2lC8fYu5teof5pwPNQdIUM,user friendly. nice.,5,0,4.5.4,2019-01-26 03:55:31,,,newest,com.appxy.planner +Winning Formula Ganesha!,https://lh3.googleusercontent.com/a-/AOh14GitqlD12GbmjULqWUOUQUkxRtH5syTd6tfpP_PaTg,its ok But we can not undestad repeated task shedule,5,0,4.5.4,2019-01-07 14:50:35,,,newest,com.appxy.planner +Mildred Olima,https://lh3.googleusercontent.com/a-/AOh14Gjp4-gh6Vki6nvhXRAU4_daLoEK8H0HIYR_Z-zfVw,"I really like the planner, it helps me achieve my tasks, goals & have an avenue to scribe my ideas down. Double thumbs up!",5,0,4.5.4,2018-12-20 18:43:09,,,newest,com.appxy.planner +Roaring Grizzly Bear,https://lh3.googleusercontent.com/a-/AOh14Gjg82UNijzU94AuriVqEZJRbf9ggMM06c7Y1f7D_g,😁****😁,5,0,,2018-12-12 16:22:56,,,newest,com.appxy.planner +amirbadang,https://lh3.googleusercontent.com/-CM2FcrUoE_o/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOukqv92sOJgWZKZONxOCdL_bpFWw/photo.jpg,Very useful apps. You must try it,5,0,4.5.4,2018-12-11 10:19:43,,,newest,com.appxy.planner +Emma Stebbins,https://lh3.googleusercontent.com/-oCj6g6kQTSg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOgIWiDT4Z-87Zktme52iH6Dc7lBQ/photo.jpg,Would pay for this if there were even more additions and updates. Absolutely love it and wish they would develop it even further,5,0,4.5.4,2018-12-05 23:29:26,,,newest,com.appxy.planner +subscribe four n0 reason plase,https://lh3.googleusercontent.com/a-/AOh14GhikRsrP4ARCNzSx0iBiFwOBQANOSF-FFTZZEVrqQ,Sooow good,5,0,4.5.4,2018-11-25 19:49:13,,,newest,com.appxy.planner +stella plaku,https://lh3.googleusercontent.com/a-/AOh14GjBg7e6FlrqjdkoMustTZXWzAXRECgkZuUHBUtJBQ,"Amazing work done for this app. I have looked for a long time for an app which was fast, well developed and really easy to use. Keep this way always!",5,3,4.5.4,2018-11-21 08:43:17,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Helps me to organize my day when I don't have my physical planner at hand held me to remember important and vidal tasks that help sort out my family and daily routines while allowing to add onto my busy schedules throughout the week also able to sort out the important tasks by colour coordination . Thank you for the opportunity to have a great planner at my 👆 fingertips,5,19,4.5.4,2018-11-15 05:07:19,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I Like the clear & unclutter look, everything is organized..wished i could export it without having to pay extra.",5,0,4.5.3,2018-11-13 15:57:00,,,newest,com.appxy.planner +Timothy Samunyai,https://lh3.googleusercontent.com/a-/AOh14GgnrpufDmGRiK_UnnVH8bkkID5jr5HEMGm591FL,Keeps me organised very happy with would be even better if it had functions to support Dsylexia sufferes.,5,0,4.5.2,2018-11-11 03:42:38,,,newest,com.appxy.planner +Andres Santillan,https://lh3.googleusercontent.com/-qU7t2vP2Ki4/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPMAhSSG-rwv9lxlOS6bWcm6xEB8g/photo.jpg,It's a good app.,5,0,4.0.1,2018-10-23 01:11:20,,,newest,com.appxy.planner +Pamela T,https://lh3.googleusercontent.com/a-/AOh14GiNV-PjLpqdjarhd1pPzD48FkLx7WrRWgxjCfMK,Love this app! Just wish I could use it on my surface pro as well as my phone.,5,0,,2018-10-19 16:46:34,,,newest,com.appxy.planner +The Book writers,https://lh3.googleusercontent.com/a-/AOh14Gh5EoBxB1V5PKNZm-y5fbJQzgDHkcvR9lLT8n3-bg,Handy for me when I need to plan out everything that needs to be done. 😊👍,5,0,,2018-10-18 16:44:58,,,newest,com.appxy.planner +Tia Lenev,https://lh3.googleusercontent.com/a-/AOh14GiNjlaZHQWd_aOIcdlfZeYMkNQ870rzR82TVrx0bQ,"Amazing app, meets requirements, and even excels them. Well done on this app, and notifications, notes and reminders are all taken care if and safely delivered to you on time. ❤",5,0,,2018-10-15 14:19:34,,,newest,com.appxy.planner +Kaliph Allah,https://lh3.googleusercontent.com/a-/AOh14GgPwFgDUgjrKQIt1fYGViVOk_IX8MuZRqLVh3OpVA,Very easy to use,5,0,,2018-09-25 14:38:46,,,newest,com.appxy.planner +Jaylu,https://lh3.googleusercontent.com/a-/AOh14GiB8IN2V2oHBefqKm0bEJkIs1TienIu1ti5MGAURw,Like,5,0,4.4.1,2018-09-25 12:28:08,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,I love this app,5,0,,2018-09-15 00:42:14,,,newest,com.appxy.planner +Mirella Lopez,https://lh3.googleusercontent.com/a-/AOh14GiSExbBe5LffYIFf4WVgmr0BjeGtGKf_HWwBFXw6A,I love it help me organiza my plans,5,0,4.4.1,2018-09-12 21:16:41,,,newest,com.appxy.planner +Casandra Douglas,https://lh3.googleusercontent.com/a-/AOh14GiiIpdc2rZp8Plz33a3fcApT29zHc9hcLYoBotfgg,Awesome creativity!,5,0,4.4.1,2018-08-30 22:08:42,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Love it found it,5,0,,2018-08-24 08:33:07,,,newest,com.appxy.planner +Jillian Bowden,https://lh3.googleusercontent.com/-X3YFuu-vqGQ/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOUO8irDhjtudh8Sp6bI_RCuT-SQA/photo.jpg,Easy to use and easy to keep organized!,5,0,4.4.1,2018-08-16 21:52:08,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,E u,5,0,,2018-08-06 15:45:25,,,newest,com.appxy.planner +daphnyanne,https://lh3.googleusercontent.com/a-/AOh14GgoPa2K45D488XlukD99JjtV6mZEL90sIOBFOPbfg,I'll try this one,5,0,4.4.1,2018-07-09 10:17:58,,,newest,com.appxy.planner +J.M.M. Allen,https://lh3.googleusercontent.com/a-/AOh14Gi0-mkXm9H_OiqsZqkoi8va12gxzjQjREbCj4DNJQ,Love it,5,0,,2018-07-08 01:56:05,,,newest,com.appxy.planner +D a y a n e,https://lh3.googleusercontent.com/a-/AOh14GiPzcIRgzgStlR12JwLbcFUc-U2cOAtFI-mytjCZa0,"I like using this app, helps me write when I most need it and has helped me +use it whenever i can't explain or Express myself. So thank you 🌿❤",5,0,4.4.1,2018-06-25 07:38:10,,,newest,com.appxy.planner +Vic Sassone,https://lh3.googleusercontent.com/a-/AOh14Ggp8j9a6xGy49uxfs8JrSu6JoD9snzuPoK0EuT_fw,"I have long been an advocate of the Stephen Covey 7 Habits Weekly Planner +approach. This is the first app I've found that gives me the capability I +need to do that well. I use the ""projects"" section to set up my ""roles and +goals,"" and then transfer them to my weekly calendar. My only wish is that +the tablet and phone app worked with their desktop app; it does not, as far +as I can tell.",5,2,4.4.1,2018-06-21 13:20:44,,,newest,com.appxy.planner +J G,https://lh3.googleusercontent.com/a-/AOh14GiyeHI9FdX8Ci9ChwaM3EjuioFo0r8AndGsj0Gv5g,Wow,5,0,,2018-06-18 11:13:50,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,"I love this app, it combined of my calendars and keeps me on task.",5,1,4.4.1,2018-06-13 19:57:16,,,newest,com.appxy.planner +Ana Beatriz Delavia Thomasi,https://lh3.googleusercontent.com/a-/AOh14Gj-ROz3gWv7eEEJVIUrUn-XjmWU0CIdUnL0BU5T,"Hi, I love this app and have been using it for a while now (it is the only +one that have calendar and to-do fit togheter), the only thing that I would +add for my needs is the possibility to share with others our activities. +Even in the paid version seems to not have this feature. Are you guys +planning to add it on?",5,2,4.4.1,2018-06-04 17:08:47,,,newest,com.appxy.planner +Kunal Singh,https://lh3.googleusercontent.com/a-/AOh14Gjt6dSIqBmlIlzr8Cbss2MNQHvI_ywf6RMdfUf37SE,Exactly what I was looking for... Needs improvement in terms of features.,5,0,4.4.1,2018-06-02 08:36:44,,,newest,com.appxy.planner +Carlos Picarra,https://lh3.googleusercontent.com/a-/AOh14Gj5sR-enKvV5_tPwWUI420xm08kaYKHCQxKmJYlLQ,Reached to my satisfaction,5,0,4.4.1,2018-05-04 20:39:17,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,osm app😋,5,0,,2018-05-04 08:52:31,,,newest,com.appxy.planner +charity peters,https://lh3.googleusercontent.com/-VMuQgUBdfxo/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOUXIP8e8FdsTuI05SjDBD5UJ_b8w/photo.jpg,"House,👩🏾",5,0,4.4.1,2018-05-01 17:43:54,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,It good,5,0,,2018-04-30 22:00:26,,,newest,com.appxy.planner +mizz ambernicole,https://lh3.googleusercontent.com/a-/AOh14Ggbz6-Yc9LpwMJNhr-oWoUJgbar2dkE0zRzxWRIB70,its nice easy to use but has lots of functions,5,0,,2018-04-24 05:23:38,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,Awesome,5,1,4.4.1,2018-04-21 13:44:38,,,newest,com.appxy.planner +Makayla Click,https://lh3.googleusercontent.com/-uvuJPFzgqUg/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOlR12H26k3SjV0tPnmLuXTSIXe1g/photo.jpg,A great way to set reminders for birthdays or any type of event,5,1,4.4.1,2018-04-21 01:28:40,,,newest,com.appxy.planner +Tasha Cid-Pita Wilson,https://lh3.googleusercontent.com/a-/AOh14GgqmWrufF_uE_bq4vJnnIEJKseKnoYkeV-2xL59yw,"This calendar is lovely to use. Minimalist, asthetically pleasing and +exactly the functions (and view options) I was looking for. Love it!",5,0,4.4.1,2018-04-20 06:03:47,,,newest,com.appxy.planner +Dominique Bussey,https://lh3.googleusercontent.com/a-/AOh14Gg252SZUMCfQmF5VkHzE6ttO6Ugk-279OrZJPvc1Q,Awesome,5,0,,2018-04-20 00:30:17,,,newest,com.appxy.planner +Hikaru,https://lh3.googleusercontent.com/a-/AOh14Gi5hEWZs4jP9MwZDODo3vE7nybn-sgL-Y5wQnqgQA,LOVE IT,5,0,,2018-04-18 02:31:41,,,newest,com.appxy.planner +Kaylynn Guthrie,https://lh3.googleusercontent.com/-mvYPZlHdpZA/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNCRd_MCu2vLM50RvfCbwh8SzjzpQ/photo.jpg,Wow amazing,5,0,,2018-04-15 03:23:32,,,newest,com.appxy.planner +Suj Lee,https://lh3.googleusercontent.com/-Ho2dcqnVHbU/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOy00AaZD2P2mYCcKCFxd4-zm7kkA/photo.jpg,Hope there'll be a tab for Events,5,1,4.4.1,2018-04-14 22:56:46,,,newest,com.appxy.planner +salim mohammed,https://lh3.googleusercontent.com/-E2f5FVAgJGc/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPmgoHFBpRBiRxv1_rMxvD1IJo1VA/photo.jpg,This is what I was looking for..thanks guys,5,0,4.4.1,2018-04-14 08:35:36,,,newest,com.appxy.planner +Ivana Pisanjuk,https://lh3.googleusercontent.com/a-/AOh14GhF3MtZdkoWBneQkm7A6_4j4Gwql_9jCiX7bua-Gp0,"It's very optimised for everyday notifications, notes, list making and planning in general. The widget is quite handy, offering a preview of all the day of the week and tasks and events you have written down! My recommendation.",5,0,4.4.1,2018-04-13 09:13:17,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,It is a great app and it helps me keep my schoolwork on time,5,2,4.4.1,2018-04-10 04:39:05,,,newest,com.appxy.planner +Sheran Ignatious,https://lh3.googleusercontent.com/a-/AOh14GiDpsWb65D7buXcvPXzAv4h7y5GXG7CgzDRdLwqaQ,Awesome,5,0,,2018-04-07 05:38:54,,,newest,com.appxy.planner +A Google user,https://lh3.googleusercontent.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g,So efficient,5,0,,2018-04-06 20:50:02,,,newest,com.appxy.planner +Susan Matthews,https://lh3.googleusercontent.com/a-/AOh14GjF6uhQcGWqc9JHAdqd_tXWU0p9ZV31vXIt_--g,Needs A Recipe Section And Separate Lists For Different Members Of Family.,5,2,4.4.1,2018-04-02 02:31:50,,,newest,com.appxy.planner +faith jones,https://lh3.googleusercontent.com/-Vm5z_EjH-Vk/AAAAAAAAAAI/AAAAAAAAABs/AAKWJJPo_MOMhX-TBZsCkttq995glkuggA/photo.jpg,Amazing!!!!,5,0,,2018-03-31 21:50:32,,,newest,com.appxy.planner +Taleah,https://lh3.googleusercontent.com/a-/AOh14Ghfbq5riwDFPisG2hHRqUCx6q3BX7kP-IksfoW-XQ,Love,5,0,,2018-03-31 01:57:37,,,newest,com.appxy.planner +Kevin Lapham,https://lh3.googleusercontent.com/a-/AOh14Gg_7c1c0XH4cfV1_UBdceq-RMtXJ2P0kW_77b-mBw,Great,5,0,4.4.1,2018-03-28 16:17:55,,,newest,com.appxy.planner +snipehunterue506,https://lh3.googleusercontent.com/-lwlgwP9SebY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJPTyWyA0WkWilFe2pwR3RIvLV8uHg/photo.jpg,It was so easy to use,5,0,4.4.1,2018-03-28 10:39:36,,,newest,com.appxy.planner +Doug Helm,https://lh3.googleusercontent.com/-7fvyOI9Syww/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNG0TMD3q1t8RuoPAbOUmawkV_gGg/photo.jpg,great to help organize,5,1,4.4.1,2018-03-23 22:42:35,,,newest,com.appxy.planner +Mjay M,https://lh3.googleusercontent.com/a-/AOh14GhlGdl4naYfrIYzcUrPmtI8gDrxsb-mk5UhUhOH,"Great integration on Google Apps, especially Calendar. Attachs pictures, allows you to prioritize. Great to have. My friends have been asking, ""How do you Remember everything""? It's ProPlanner.",5,1,4.4.1,2018-03-22 13:03:49,,,newest,com.appxy.planner +Phoemela Casalmer,https://lh3.googleusercontent.com/-z0PljdhBfWY/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJNoCudWAVFVMB9SxDH3bSbvwNyvsA/photo.jpg,It cool an usefull,5,0,,2018-03-22 13:00:37,,,newest,com.appxy.planner +The Bradshaw's,https://lh3.googleusercontent.com/a-/AOh14Gg7UETp7mY0JpX8O_0Jnb_dgLCtxMu_v9N7wpaqjw,"I love this. I use it all the time to keep track of client appointments, as well as keep notes of events. Extremely easy to use and set up. A+",5,0,4.3.7,2018-03-16 19:12:42,,,newest,com.appxy.planner +ramya vijayaraman,https://lh3.googleusercontent.com/a-/AOh14Gg8XWDaoCN4FA1o6BD8Nxz8feabtc7nOATgqoAyYA,Very good app I loved it like anything,5,0,,2018-03-05 03:46:02,,,newest,com.appxy.planner +Larry Chatman,https://lh3.googleusercontent.com/a-/AOh14GhtrsTClnfYpmCJDGbBQsa-MRw47dc3SzzJgehr,uxch shush,5,0,,2018-03-05 01:16:09,,,newest,com.appxy.planner +George Cornelius,https://lh3.googleusercontent.com/a-/AOh14GgL1CXr_Tb1nIRWPhZQeia18qzzQidxsgJ3gWry,Very good,5,0,4.3.7,2018-03-02 13:45:28,,,newest,com.appxy.planner +Barb Camps,https://lh3.googleusercontent.com/a-/AOh14Gh9-usj1EssbpHNYLvL-u4ttgY3VTJ_X6Ng1nsM3A,I really loved it. I'm more organized :3,5,0,4.3.7,2018-02-28 13:33:11,,,newest,com.appxy.planner +Kiana Coldrick,https://lh3.googleusercontent.com/a-/AOh14GgVRenbbhPjpEUajp9LXnvPxBqzHpT9RwD-uU723w,Really useful and easy to use. Would be great if you could attach pictures to the notes section,5,0,4.3.7,2018-02-28 11:32:16,,,newest,com.appxy.planner +Rameesa Nasrin,https://lh3.googleusercontent.com/a-/AOh14GhvoG0LPJwpz3fWCKkGKjK5E0GIj6f_uqEWagYa3g,Love this app.....helps in daily tasks....,5,0,4.3.7,2018-02-26 18:53:01,,,newest,com.appxy.planner +Ernestjr Dinsdale,https://lh3.googleusercontent.com/a-/AOh14Gjz9qCcI8NSr7ej9wGMqhH0WgxIiOspqhgN7WJZbg,It's a good planner app.,5,0,,2018-02-18 19:54:12,,,newest,com.appxy.planner +Tammy Kay,https://lh3.googleusercontent.com/a-/AOh14GhYPRDngpf9Xd9ocQFRg97h9uQWIcU1KMEbH-lxYQ,I believe that this is by far the best app with helping ppl keep track of a lot of daily task and reminders. It's easy to function understand & it syncs with my Google calendar which is an A+ in my book.,5,0,,2018-02-17 06:09:03,,,newest,com.appxy.planner +Ysm Johan,https://lh3.googleusercontent.com/a-/AOh14GgmdbH7BXTsMj4uB13fRDfBa8g8l1gYcthR0OUS7yY,It sometimes crashes a lot!!,5,0,4.3.7,2018-02-15 10:45:22,,,newest,com.appxy.planner +casey dearden,https://lh3.googleusercontent.com/a-/AOh14Gg2UR9OaDzNOKRhqwukjTvndnXv1LguZ14XZS7kOA,Works well for what I need,5,0,4.3.7,2018-02-09 18:40:37,,,newest,com.appxy.planner +Jerry G Tamate,https://lh3.googleusercontent.com/a-/AOh14GiTPveTVYDMeF2uNDfXq2NzIJ5FW81mH_MiN7Dy9Q,Love it.,5,0,,2018-02-06 12:36:17,,,newest,com.appxy.planner +Ahmed elsalamouni,https://lh3.googleusercontent.com/-9QSxVUhCoDI/AAAAAAAAAAI/AAAAAAAAAAA/AAKWJJOKLqlbVHblVcTmXv9WXVVx1TyS5w/photo.jpg,Really amazing and helped me sooo much just i hope that it can be sharable by more than one person for group planning one line and it will be world organizer or making groups ... thanx for developers,5,6,4.3.7,2018-02-04 22:57:09,,,newest,com.appxy.planner diff --git a/stock-analysis/project.ipynb b/stock-analysis/project.ipynb new file mode 100644 index 00000000..eebf1b61 --- /dev/null +++ b/stock-analysis/project.ipynb @@ -0,0 +1,486 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Stocks Analysis Demo" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "# Utils\n", + "import os\n", + "import json\n", + "import numpy as np\n", + "\n", + "# MLRun imports\n", + "from mlrun import mlconf\n", + "\n", + "\n", + "# Setup API Endpoint\n", + "mlconf.dbpath = 'http://mlrun-api:8080'" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Setup MLRun stocks project" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "from mlrun import new_project\n", + "\n", + "# update the dir and repo to reflect real locations \n", + "# the remote git repo must be initialized in GitHub\n", + "project_dir = os.path.abspath('./')\n", + "remote_git = 'https://github.com/mlrun/demos.git'\n", + "\n", + "# Create the project\n", + "project = new_project('stocks', project_dir, init_git=False)\n", + "\n", + "# We can update our project directory to the latest status by running\n", + "# newproj.pull()" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "# Define an artifact path to keep track of where our artifacts are going\n", + "ARTIFACT_PATH = os.path.join(os.path.abspath(project.context), 'artifacts')\n", + "mlconf.artifact_path = ARTIFACT_PATH" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Set functions to project\n", + "# project.set_function('code/00-train-sentiment-analysis-model.ipynb', name='bert_sentiment_classifier_trainer', kind='job')\n", + "project.set_function('code/bert_sentiment_classification.yaml', name='bert_sentiment_classifier_trainer')\n", + "project.set_function('code/01-read-stocks.ipynb', name='stocks_reader')\n", + "project.set_function('code/02-read-news.ipynb', name='news_reader')\n", + "project.set_function('code/03-stream-viewer.ipynb', name='stream_viewer')\n", + "project.set_function('hub://sentiment_analysis_serving', name='sentiment_analysis_server')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Download a pre-trained model (optional)\n", + "Since running the [training](training/bert_sentiment_classification.ipynb) part to achieve good results may take some time, we had already trained and uploaded a model to a public location. \n", + "You can easily download it by running the following cell:" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "File ‘/User/models/model.pt’ already there; not retrieving.\n", + "\n" + ] + } + ], + "source": [ + "# Run this to download the pre-trained model to your `models` directory\n", + "\n", + "import os\n", + "model_location = 'https://iguazio-sample-data.s3.amazonaws.com/models/model.pt'\n", + "saved_models_directory = os.path.join(os.path.abspath('../'), 'models')\n", + "\n", + "# Create paths\n", + "os.makedirs(saved_models_directory, exist_ok=1)\n", + "model_filepath = os.path.join(saved_models_directory, os.path.basename(model_location))\n", + "!wget -nc -P {saved_models_directory} {model_location} " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Deploy a Grafana Dashboard \n", + "To track the different stocks on a live dashboard we will use **Grafana**.
\n", + "We will use [Grafwiz](https://github.com/v3io/grafwiz) to define and deploy the dashboard directly from this notebook" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Datasource Iguazio already exists\n", + "Datasource Iguazio created successfully\n", + "Datasource stream-viewer already exists\n", + "Datasource stream-viewer created successfully\n", + "Dashboard stocks created successfully\n" + ] + } + ], + "source": [ + "from grafwiz import *\n", + "import v3io_frames as v3f\n", + "\n", + "def deploy_dashboard(grafana_url:str = 'http://grafana', \n", + " streamview_url:str = 'http://nuclio-stocks-stream-viewer:8080',\n", + " v3io_container:str = 'bigdata',\n", + " stocks_kv_table:str = 'stocks/stocks_kv',\n", + " stocks_tsdb_table:str = 'stocks/stocks_tsdb'):\n", + " # Create datasources\n", + " DataSource(name='Iguazio').deploy(grafana_url, use_auth=True)\n", + " DataSource(name='stream-viewer', frames_url=streamview_url).deploy(grafana_url, use_auth=False, overwrite=False)\n", + " \n", + " # Verify the KV table can be shown\n", + " client = v3f.Client('framesd:8081', container=v3io_container)\n", + " client.execute(backend='kv', table=stocks_kv_table, command='infer')\n", + " \n", + " # Create grafana dashboard\n", + " dash = Dashboard(\"stocks\", start='now-7d', dataSource='Iguazio')\n", + "\n", + " # Add a symbol combo box (template) with data from the stocks table\n", + " dash.template(name=\"SYMBOL\", label=\"Symbol\", query=\"fields=symbol;table=stocks/stocks_kv;backend=kv;container=bigdata\")\n", + "\n", + " # Create a table and log viewer in one row\n", + " tbl = Table('Current Stocks Value', span=12).source(table=stocks_kv_table,fields=['symbol','volume', 'price', 'sentiment', 'last_updated'],container=v3io_container)\n", + " dash.row([tbl])\n", + "\n", + " # Create 2 charts on the second row\n", + " metrics_row = [Graph(metric).series(table=stocks_tsdb_table, fields=[metric], filter='symbol==\"$SYMBOL\"',container=v3io_container) for metric in ['price','volume']]\n", + " metrics_row.append(Graph('sentiment').series(table=stocks_tsdb_table, fields=['sentiment'], filter='symbol==\"$SYMBOL\"', container=v3io_container))\n", + " dash.row(metrics_row)\n", + " \n", + " # Create log veiwer panel\n", + " log = Table('Articles Log', dataSource='stream-viewer', span=12)\n", + " dash.row([log])\n", + " \n", + " # Deploy to Grafana\n", + " return dash.deploy(grafana_url)\n", + "deploy_dashboard()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Create deployment workflow" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Overwriting code/workflow.py\n" + ] + } + ], + "source": [ + "%%writefile code/workflow.py\n", + "from kfp import dsl\n", + "from mlrun import mount_v3io, mlconf\n", + "import os\n", + "from nuclio.triggers import V3IOStreamTrigger, CronTrigger\n", + "\n", + "funcs = {}\n", + "\n", + "# Directories and Paths\n", + "projdir = os.path.join('/', 'User', 'stock-trading')\n", + "model_filepath = os.path.join(projdir, 'models', 'model.pt') # Previously saved model if downloaded\n", + "reviews_datafile = os.path.join(projdir, 'data', 'reviews.csv')\n", + "\n", + "# Performence limit\n", + "max_replicas = 1\n", + "\n", + "# Readers cron interval\n", + "readers_cron_interval = '300s'\n", + "\n", + "# Training GPU Allocation\n", + "training_gpus = 1\n", + "\n", + "\n", + "def init_functions(functions: dict, project=None, secrets=None):\n", + " for f in functions.values():\n", + " # Add V3IO Mount\n", + " f.apply(mount_v3io())\n", + " \n", + " # Always pull images to keep updates\n", + " f.spec.image_pull_policy = 'Always'\n", + " \n", + " # Define inference-stream related triggers\n", + " functions['sentiment_analysis_server'].add_model('bert_classifier_v1', model_filepath)\n", + " functions['sentiment_analysis_server'].spec.readiness_timeout = 500\n", + " functions['sentiment_analysis_server'].set_config('readinessTimeoutSeconds', 500)\n", + " \n", + " # Add triggers\n", + " functions['stocks_reader'].add_trigger('cron', CronTrigger(readers_cron_interval))\n", + " functions['news_reader'].add_trigger('cron', CronTrigger(readers_cron_interval))\n", + " \n", + " \n", + " # Set max replicas for resource limits\n", + " functions['sentiment_analysis_server'].spec.max_replicas = max_replicas\n", + " functions['news_reader'].spec.max_replicas = max_replicas\n", + " functions['stocks_reader'].spec.max_replicas = max_replicas\n", + " \n", + " # Add GPU for training\n", + " functions['bert_sentiment_classifier_trainer'].gpus(training_gpus)\n", + " \n", + "@dsl.pipeline(\n", + " name='Stocks demo deployer',\n", + " description='Up to RT Stocks ingestion and analysis'\n", + ")\n", + "def kfpipeline(\n", + " # General\n", + " V3IO_CONTAINER = 'bigdata',\n", + " STOCKS_TSDB_TABLE = 'stocks/stocks_tsdb',\n", + " STOCKS_KV_TABLE = 'stocks/stocks_kv',\n", + " STOCKS_STREAM = 'stocks/stocks_stream',\n", + " RUN_TRAINER = False,\n", + " \n", + " # Trainer\n", + " pretrained_model = 'bert-base-cased',\n", + " reviews_dataset = reviews_datafile,\n", + " models_dir = 'models',\n", + " model_filename = 'bert_sentiment_analysis_model.pt',\n", + " n_classes = 3,\n", + " MAX_LEN = 128,\n", + " BATCH_SIZE = 16,\n", + " EPOCHS = 2,\n", + " random_state = 42,\n", + " \n", + " # stocks reader\n", + " STOCK_LIST = ['GOOGL', 'MSFT', 'AMZN', 'AAPL', 'INTC'],\n", + " EXPRESSION_TEMPLATE = \"symbol='{symbol}';price={price};volume={volume};last_updated='{last_updated}'\",\n", + " \n", + " # Sentiment analysis server\n", + " model_name = 'bert_classifier_v1',\n", + " model_filepath = model_filepath # if not trained\n", + " \n", + " ):\n", + " \n", + " with dsl.Condition(RUN_TRAINER == True):\n", + " \n", + " trainer = funcs['bert_sentiment_classifier_trainer'].as_step(name='bert_sentiment_classifier_trainer',\n", + " params={'pretrained_model': pretrained_model,\n", + " 'EPOCHS': EPOCHS,\n", + " 'models_dir': models_dir,\n", + " 'model_filename': model_filename,\n", + " 'n_classes': n_classes,\n", + " 'MAX_LEN': MAX_LEN,\n", + " 'BATCH_SIZE': BATCH_SIZE,\n", + " 'EPOCHS': EPOCHS,\n", + " 'random_state': random_state},\n", + " inputs={'reviews_dataset': reviews_dataset},\n", + " outputs=['bert_sentiment_analysis_model'])\n", + " \n", + " sentiment_server = funcs['sentiment_analysis_server'].deploy_step(env={f'SERVING_MODEL_{model_name}': trainer.outputs['bert_sentiment_analysis_model']})\n", + " \n", + " news_reader = funcs['news_reader'].deploy_step(env={'V3IO_CONTAINER': V3IO_CONTAINER,\n", + " 'STOCKS_STREAM': STOCKS_STREAM,\n", + " 'STOCKS_TSDB_TABLE': STOCKS_TSDB_TABLE,\n", + " 'SENTIMENT_MODEL_ENDPOINT': sentiment_server.outputs['endpoint']})\n", + " \n", + " with dsl.Condition(RUN_TRAINER == False):\n", + " \n", + " sentiment_server = funcs['sentiment_analysis_server'].deploy_step(env={f'SERVING_MODEL_{model_name}': model_filepath})\n", + " \n", + " news_reader = funcs['news_reader'].deploy_step(env={'V3IO_CONTAINER': V3IO_CONTAINER,\n", + " 'STOCKS_STREAM': STOCKS_STREAM,\n", + " 'STOCKS_TSDB_TABLE': STOCKS_TSDB_TABLE,\n", + " 'SENTIMENT_MODEL_ENDPOINT': sentiment_server.outputs['endpoint']})\n", + " \n", + " stocks_reader = funcs['stocks_reader'].deploy_step(env={'STOCK_LIST': STOCK_LIST,\n", + " 'V3IO_CONTAINER': V3IO_CONTAINER,\n", + " 'STOCKS_TSDB_TABLE': STOCKS_TSDB_TABLE,\n", + " 'STOCKS_KV_TABLE': STOCKS_KV_TABLE,\n", + " 'EXPRESSION_TEMPLATE': EXPRESSION_TEMPLATE})\n", + " \n", + " stream_viewer = funcs['stream_viewer'].deploy_step(env={'V3IO_CONTAINER': V3IO_CONTAINER,\n", + " 'STOCKS_STREAM': STOCKS_STREAM}).after(news_reader)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Add workflow" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [], + "source": [ + "project.set_workflow('main', os.path.join(os.path.abspath(project.context), 'code', 'workflow.py'))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Save Project" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [], + "source": [ + "project.save(os.path.join(project.context, 'project.yaml'))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Run workflow" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "> 2020-10-19 13:54:54,985 [info] using in-cluster config.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/conda/lib/python3.7/site-packages/kfp/components/_data_passing.py:168: UserWarning: Missing type name was inferred as \"Boolean\" based on the value \"False\".\n", + " warnings.warn('Missing type name was inferred as \"{}\" based on the value \"{}\".'.format(type_name, str(value)))\n", + "/conda/lib/python3.7/site-packages/kfp/components/_data_passing.py:168: UserWarning: Missing type name was inferred as \"Integer\" based on the value \"3\".\n", + " warnings.warn('Missing type name was inferred as \"{}\" based on the value \"{}\".'.format(type_name, str(value)))\n", + "/conda/lib/python3.7/site-packages/kfp/components/_data_passing.py:168: UserWarning: Missing type name was inferred as \"Integer\" based on the value \"128\".\n", + " warnings.warn('Missing type name was inferred as \"{}\" based on the value \"{}\".'.format(type_name, str(value)))\n", + "/conda/lib/python3.7/site-packages/kfp/components/_data_passing.py:168: UserWarning: Missing type name was inferred as \"Integer\" based on the value \"16\".\n", + " warnings.warn('Missing type name was inferred as \"{}\" based on the value \"{}\".'.format(type_name, str(value)))\n", + "/conda/lib/python3.7/site-packages/kfp/components/_data_passing.py:168: UserWarning: Missing type name was inferred as \"Integer\" based on the value \"2\".\n", + " warnings.warn('Missing type name was inferred as \"{}\" based on the value \"{}\".'.format(type_name, str(value)))\n", + "/conda/lib/python3.7/site-packages/kfp/components/_data_passing.py:168: UserWarning: Missing type name was inferred as \"Integer\" based on the value \"42\".\n", + " warnings.warn('Missing type name was inferred as \"{}\" based on the value \"{}\".'.format(type_name, str(value)))\n", + "/conda/lib/python3.7/site-packages/kfp/components/_data_passing.py:168: UserWarning: Missing type name was inferred as \"JsonArray\" based on the value \"['GOOGL', 'MSFT', 'AMZN', 'AAPL', 'INTC']\".\n", + " warnings.warn('Missing type name was inferred as \"{}\" based on the value \"{}\".'.format(type_name, str(value)))\n" + ] + }, + { + "data": { + "text/html": [ + "Experiment link here" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "Run link here" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "> 2020-10-19 13:54:55,598 [info] Pipeline run id=5bb26366-a026-4301-afe4-8bdb9c4fc028, check UI or DB for progress\n" + ] + }, + { + "data": { + "text/plain": [ + "'5bb26366-a026-4301-afe4-8bdb9c4fc028'" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "project.run('main', arguments={'RUN_TRAINER': True}, artifact_path=ARTIFACT_PATH, dirty=True)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python [conda env:root] *", + "language": "python", + "name": "conda-root-py" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} \ No newline at end of file diff --git a/stock-analysis/project.yaml b/stock-analysis/project.yaml new file mode 100644 index 00000000..3d6c05fc --- /dev/null +++ b/stock-analysis/project.yaml @@ -0,0 +1,17 @@ +name: stocks +functions: +- url: code/bert_sentiment_classification.yaml + name: bert_sentiment_classifier_trainer +- url: code/01-read-stocks.ipynb + name: stocks_reader +- url: code/02-read-news.ipynb + name: news_reader +- url: code/03-stream-viewer.ipynb + name: stream_viewer +- url: hub://sentiment_analysis_serving + name: sentiment_analysis_server +workflows: +- name: main + path: /User/stock-trading/code/workflow.py +artifacts: [] +artifact_path: ''